[arch-commits] Commit in gimp-plugin-mathmap/repos (10 files)

2015-12-07 Thread Felix Yan
Date: Monday, December 7, 2015 @ 13:58:58
  Author: fyan
Revision: 149849

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  gimp-plugin-mathmap/repos/community-staging-i686/
  gimp-plugin-mathmap/repos/community-staging-i686/PKGBUILD
(from rev 149847, gimp-plugin-mathmap/trunk/PKGBUILD)
  gimp-plugin-mathmap/repos/community-staging-i686/fix_libnoise_build.patch
(from rev 149847, gimp-plugin-mathmap/trunk/fix_libnoise_build.patch)
  gimp-plugin-mathmap/repos/community-staging-i686/giflib-5.1.patch
(from rev 149847, gimp-plugin-mathmap/trunk/giflib-5.1.patch)
  gimp-plugin-mathmap/repos/community-staging-i686/libpng15.patch
(from rev 149847, gimp-plugin-mathmap/trunk/libpng15.patch)
  gimp-plugin-mathmap/repos/community-staging-x86_64/
  gimp-plugin-mathmap/repos/community-staging-x86_64/PKGBUILD
(from rev 149848, gimp-plugin-mathmap/trunk/PKGBUILD)
  gimp-plugin-mathmap/repos/community-staging-x86_64/fix_libnoise_build.patch
(from rev 149848, gimp-plugin-mathmap/trunk/fix_libnoise_build.patch)
  gimp-plugin-mathmap/repos/community-staging-x86_64/giflib-5.1.patch
(from rev 149848, gimp-plugin-mathmap/trunk/giflib-5.1.patch)
  gimp-plugin-mathmap/repos/community-staging-x86_64/libpng15.patch
(from rev 149848, gimp-plugin-mathmap/trunk/libpng15.patch)

---+
 community-staging-i686/PKGBUILD   |   43 +
 community-staging-i686/fix_libnoise_build.patch   |   12 +
 community-staging-i686/giflib-5.1.patch   |   21 ++
 community-staging-i686/libpng15.patch |  170 
 community-staging-x86_64/PKGBUILD |   43 +
 community-staging-x86_64/fix_libnoise_build.patch |   12 +
 community-staging-x86_64/giflib-5.1.patch |   21 ++
 community-staging-x86_64/libpng15.patch   |  170 
 8 files changed, 492 insertions(+)

Copied: gimp-plugin-mathmap/repos/community-staging-i686/PKGBUILD (from rev 
149847, gimp-plugin-mathmap/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-07 12:58:58 UTC (rev 149849)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+# Contributor: Geoffroy Carrier 
+# Contributor: Serge Gielkens 
+pkgname=gimp-plugin-mathmap
+pkgver=1.3.5
+pkgrel=6
+pkgdesc="A GIMP plug-in which allows distortion of images specified by 
mathematical formulae"
+arch=('i686' 'x86_64')
+url="http://www.complang.tuwien.ac.at/schani/mathmap/;
+license=('GPL')
+depends=('gimp' 'gsl' 'gtksourceview2' 'fftw' 'giflib')
+makedepends=('doxygen' 'unzip')
+provides=('gimp-mathmap')
+replaces=('gimp-mathmap')
+source=(http://www.complang.tuwien.ac.at/schani/mathmap/files/mathmap-${pkgver}.tar.gz
 \
+fix_libnoise_build.patch libpng15.patch giflib-5.1.patch)
+md5sums=('6ff66d070ea410dee1a27283d05b8beb'
+ 'eca40de0ba0e6b8d34b7d1f904bc3d18'
+ '9780d6354b7380b772c4616253ecee54'
+ 'a4dae904ede98ee8d3104bcfd285cec5')
+
+prepare() {
+  cd "$srcdir/mathmap-$pkgver"
+
+  # fix problem with building libnoise
+  patch -Np1 < "$srcdir"/fix_libnoise_build.patch
+  # fix for libpng 1.5
+  patch -Np1 < "$srcdir"/libpng15.patch
+  # fix for giflib 5.1
+  patch -Np1 < "$srcdir"/giflib-5.1.patch
+}
+
+build() {
+  cd "$srcdir/mathmap-$pkgver"
+
+  make
+}
+
+package() {
+  cd "$srcdir/mathmap-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Copied: 
gimp-plugin-mathmap/repos/community-staging-i686/fix_libnoise_build.patch (from 
rev 149847, gimp-plugin-mathmap/trunk/fix_libnoise_build.patch)
===
--- community-staging-i686/fix_libnoise_build.patch 
(rev 0)
+++ community-staging-i686/fix_libnoise_build.patch 2015-12-07 12:58:58 UTC 
(rev 149849)
@@ -0,0 +1,12 @@
+diff -rup mathmap-1.3.5/Makefile mathmap-1.3.5-fix//Makefile
+--- mathmap-1.3.5/Makefile 2009-08-23 13:56:14.0 +0200
 mathmap-1.3.5-fix//Makefile2010-11-11 16:48:13.308941852 +0100
+@@ -178,7 +178,7 @@ backends/lazy_creator.o : backends/lazy_
+   $(CXX) $(MATHMAP_CXXFLAGS) $(FORMATDEFS) -o $@ -c 
backends/lazy_creator.cpp
+ 
+ builtins/libnoise.o : builtins/libnoise.cpp builtins/libnoise.h
+-  $(CXX) $(MATHMAP_CXXFLAGS) -Ilibnoise/noise/include -o $@ -c 
builtins/libnoise.cpp
++  $(CXX) $(MATHMAP_CXXFLAGS) -Ilibnoise/noise/include 
-Ilibnoise/noise/src -o $@ -c builtins/libnoise.cpp
+ 
+ new_builtins.c opdefs.h opfuncs.h compiler_types.h llvm-ops.h : builtins.lisp 
ops.lisp
+   clisp builtins.lisp

Copied: gimp-plugin-mathmap/repos/community-staging-i686/giflib-5.1.patch (from 
rev 149847, gimp-plugin-mathmap/trunk/giflib-5.1.patch)

[arch-commits] Commit in gimp-plugin-mathmap/repos (10 files)

2014-05-29 Thread Lukas Jirkovsky
Date: Thursday, May 29, 2014 @ 11:39:10
  Author: stativ
Revision: 112067

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  gimp-plugin-mathmap/repos/community-staging-i686/
  gimp-plugin-mathmap/repos/community-staging-i686/PKGBUILD
(from rev 112066, gimp-plugin-mathmap/trunk/PKGBUILD)
  gimp-plugin-mathmap/repos/community-staging-i686/fix_libnoise_build.patch
(from rev 112066, gimp-plugin-mathmap/trunk/fix_libnoise_build.patch)
  gimp-plugin-mathmap/repos/community-staging-i686/giflib-5.1.patch
(from rev 112066, gimp-plugin-mathmap/trunk/giflib-5.1.patch)
  gimp-plugin-mathmap/repos/community-staging-i686/libpng15.patch
(from rev 112066, gimp-plugin-mathmap/trunk/libpng15.patch)
  gimp-plugin-mathmap/repos/community-staging-x86_64/
  gimp-plugin-mathmap/repos/community-staging-x86_64/PKGBUILD
(from rev 112066, gimp-plugin-mathmap/trunk/PKGBUILD)
  gimp-plugin-mathmap/repos/community-staging-x86_64/fix_libnoise_build.patch
(from rev 112066, gimp-plugin-mathmap/trunk/fix_libnoise_build.patch)
  gimp-plugin-mathmap/repos/community-staging-x86_64/giflib-5.1.patch
(from rev 112066, gimp-plugin-mathmap/trunk/giflib-5.1.patch)
  gimp-plugin-mathmap/repos/community-staging-x86_64/libpng15.patch
(from rev 112066, gimp-plugin-mathmap/trunk/libpng15.patch)

---+
 community-staging-i686/PKGBUILD   |   43 +
 community-staging-i686/fix_libnoise_build.patch   |   12 +
 community-staging-i686/giflib-5.1.patch   |   21 ++
 community-staging-i686/libpng15.patch |  170 
 community-staging-x86_64/PKGBUILD |   43 +
 community-staging-x86_64/fix_libnoise_build.patch |   12 +
 community-staging-x86_64/giflib-5.1.patch |   21 ++
 community-staging-x86_64/libpng15.patch   |  170 
 8 files changed, 492 insertions(+)

Copied: gimp-plugin-mathmap/repos/community-staging-i686/PKGBUILD (from rev 
112066, gimp-plugin-mathmap/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-05-29 09:39:10 UTC (rev 112067)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+# Contributor: Geoffroy Carrier geoffroy.carr...@aur.archlinux.org
+# Contributor: Serge Gielkens gielkens.se...@mumeli.org
+pkgname=gimp-plugin-mathmap
+pkgver=1.3.5
+pkgrel=5
+pkgdesc=A GIMP plug-in which allows distortion of images specified by 
mathematical formulae
+arch=('i686' 'x86_64')
+url=http://www.complang.tuwien.ac.at/schani/mathmap/;
+license=('GPL')
+depends=('gimp' 'gsl' 'gtksourceview2' 'fftw' 'giflib')
+makedepends=('doxygen' 'unzip')
+provides=('gimp-mathmap')
+replaces=('gimp-mathmap')
+source=(http://www.complang.tuwien.ac.at/schani/mathmap/files/mathmap-${pkgver}.tar.gz
 \
+fix_libnoise_build.patch libpng15.patch giflib-5.1.patch)
+md5sums=('6ff66d070ea410dee1a27283d05b8beb'
+ 'eca40de0ba0e6b8d34b7d1f904bc3d18'
+ '9780d6354b7380b772c4616253ecee54'
+ 'a4dae904ede98ee8d3104bcfd285cec5')
+
+prepare() {
+  cd $srcdir/mathmap-$pkgver
+
+  # fix problem with building libnoise
+  patch -Np1  $srcdir/fix_libnoise_build.patch
+  # fix for libpng 1.5
+  patch -Np1  $srcdir/libpng15.patch
+  # fix for giflib 5.1
+  patch -Np1  $srcdir/giflib-5.1.patch
+}
+
+build() {
+  cd $srcdir/mathmap-$pkgver
+
+  make
+}
+
+package() {
+  cd $srcdir/mathmap-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: 
gimp-plugin-mathmap/repos/community-staging-i686/fix_libnoise_build.patch (from 
rev 112066, gimp-plugin-mathmap/trunk/fix_libnoise_build.patch)
===
--- community-staging-i686/fix_libnoise_build.patch 
(rev 0)
+++ community-staging-i686/fix_libnoise_build.patch 2014-05-29 09:39:10 UTC 
(rev 112067)
@@ -0,0 +1,12 @@
+diff -rup mathmap-1.3.5/Makefile mathmap-1.3.5-fix//Makefile
+--- mathmap-1.3.5/Makefile 2009-08-23 13:56:14.0 +0200
 mathmap-1.3.5-fix//Makefile2010-11-11 16:48:13.308941852 +0100
+@@ -178,7 +178,7 @@ backends/lazy_creator.o : backends/lazy_
+   $(CXX) $(MATHMAP_CXXFLAGS) $(FORMATDEFS) -o $@ -c 
backends/lazy_creator.cpp
+ 
+ builtins/libnoise.o : builtins/libnoise.cpp builtins/libnoise.h
+-  $(CXX) $(MATHMAP_CXXFLAGS) -Ilibnoise/noise/include -o $@ -c 
builtins/libnoise.cpp
++  $(CXX) $(MATHMAP_CXXFLAGS) -Ilibnoise/noise/include 
-Ilibnoise/noise/src -o $@ -c builtins/libnoise.cpp
+ 
+ new_builtins.c opdefs.h opfuncs.h compiler_types.h llvm-ops.h : builtins.lisp 
ops.lisp
+   clisp builtins.lisp

Copied: gimp-plugin-mathmap/repos/community-staging-i686/giflib-5.1.patch (from 
rev 112066, gimp-plugin-mathmap/trunk/giflib-5.1.patch)

[arch-commits] Commit in gimp-plugin-mathmap/repos (10 files)

2013-07-30 Thread Bartłomiej Piotrowski
Date: Tuesday, July 30, 2013 @ 11:03:48
  Author: bpiotrowski
Revision: 94768

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  gimp-plugin-mathmap/repos/community-staging-i686/
  gimp-plugin-mathmap/repos/community-staging-i686/PKGBUILD
(from rev 94767, gimp-plugin-mathmap/trunk/PKGBUILD)
  gimp-plugin-mathmap/repos/community-staging-i686/fix_libnoise_build.patch
(from rev 94767, gimp-plugin-mathmap/trunk/fix_libnoise_build.patch)
  gimp-plugin-mathmap/repos/community-staging-i686/giflib-5.0.patch
(from rev 94767, gimp-plugin-mathmap/trunk/giflib-5.0.patch)
  gimp-plugin-mathmap/repos/community-staging-i686/libpng15.patch
(from rev 94767, gimp-plugin-mathmap/trunk/libpng15.patch)
  gimp-plugin-mathmap/repos/community-staging-x86_64/
  gimp-plugin-mathmap/repos/community-staging-x86_64/PKGBUILD
(from rev 94767, gimp-plugin-mathmap/trunk/PKGBUILD)
  gimp-plugin-mathmap/repos/community-staging-x86_64/fix_libnoise_build.patch
(from rev 94767, gimp-plugin-mathmap/trunk/fix_libnoise_build.patch)
  gimp-plugin-mathmap/repos/community-staging-x86_64/giflib-5.0.patch
(from rev 94767, gimp-plugin-mathmap/trunk/giflib-5.0.patch)
  gimp-plugin-mathmap/repos/community-staging-x86_64/libpng15.patch
(from rev 94767, gimp-plugin-mathmap/trunk/libpng15.patch)

---+
 community-staging-i686/PKGBUILD   |   39 
 community-staging-i686/fix_libnoise_build.patch   |   12 +
 community-staging-i686/giflib-5.0.patch   |   12 +
 community-staging-i686/libpng15.patch |  170 
 community-staging-x86_64/PKGBUILD |   39 
 community-staging-x86_64/fix_libnoise_build.patch |   12 +
 community-staging-x86_64/giflib-5.0.patch |   12 +
 community-staging-x86_64/libpng15.patch   |  170 
 8 files changed, 466 insertions(+)

Copied: gimp-plugin-mathmap/repos/community-staging-i686/PKGBUILD (from rev 
94767, gimp-plugin-mathmap/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-07-30 09:03:48 UTC (rev 94768)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+# Contributor: Geoffroy Carrier geoffroy.carr...@aur.archlinux.org
+# Contributor: Serge Gielkens gielkens.se...@mumeli.org
+pkgname=gimp-plugin-mathmap
+pkgver=1.3.5
+pkgrel=3
+pkgdesc=A GIMP plug-in which allows distortion of images specified by 
mathematical formulae
+arch=('i686' 'x86_64')
+url=http://www.complang.tuwien.ac.at/schani/mathmap/;
+license=('GPL')
+depends=('gimp' 'gsl' 'gtksourceview2' 'fftw' 'giflib')
+makedepends=('doxygen' 'unzip')
+provides=('gimp-mathmap')
+replaces=('gimp-mathmap')
+source=(http://www.complang.tuwien.ac.at/schani/mathmap/files/mathmap-${pkgver}.tar.gz
 \
+fix_libnoise_build.patch libpng15.patch giflib-5.0.patch)
+md5sums=('6ff66d070ea410dee1a27283d05b8beb'
+ 'eca40de0ba0e6b8d34b7d1f904bc3d18'
+ '9780d6354b7380b772c4616253ecee54'
+ '9cc8eb13526056d8f3d06cc3e984a719')
+
+build() {
+  cd $srcdir/mathmap-$pkgver
+
+  # fix problem with building libnoise
+  patch -Np1  $srcdir/fix_libnoise_build.patch
+  # fix for libpng 1.5
+  patch -Np1  $srcdir/libpng15.patch
+  # fix for giflib 5.0
+  patch -Np1  $srcdir/giflib-5.0.patch
+
+  make
+}
+
+package() {
+  cd $srcdir/mathmap-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: 
gimp-plugin-mathmap/repos/community-staging-i686/fix_libnoise_build.patch (from 
rev 94767, gimp-plugin-mathmap/trunk/fix_libnoise_build.patch)
===
--- community-staging-i686/fix_libnoise_build.patch 
(rev 0)
+++ community-staging-i686/fix_libnoise_build.patch 2013-07-30 09:03:48 UTC 
(rev 94768)
@@ -0,0 +1,12 @@
+diff -rup mathmap-1.3.5/Makefile mathmap-1.3.5-fix//Makefile
+--- mathmap-1.3.5/Makefile 2009-08-23 13:56:14.0 +0200
 mathmap-1.3.5-fix//Makefile2010-11-11 16:48:13.308941852 +0100
+@@ -178,7 +178,7 @@ backends/lazy_creator.o : backends/lazy_
+   $(CXX) $(MATHMAP_CXXFLAGS) $(FORMATDEFS) -o $@ -c 
backends/lazy_creator.cpp
+ 
+ builtins/libnoise.o : builtins/libnoise.cpp builtins/libnoise.h
+-  $(CXX) $(MATHMAP_CXXFLAGS) -Ilibnoise/noise/include -o $@ -c 
builtins/libnoise.cpp
++  $(CXX) $(MATHMAP_CXXFLAGS) -Ilibnoise/noise/include 
-Ilibnoise/noise/src -o $@ -c builtins/libnoise.cpp
+ 
+ new_builtins.c opdefs.h opfuncs.h compiler_types.h llvm-ops.h : builtins.lisp 
ops.lisp
+   clisp builtins.lisp

Copied: gimp-plugin-mathmap/repos/community-staging-i686/giflib-5.0.patch (from 
rev 94767, gimp-plugin-mathmap/trunk/giflib-5.0.patch)
===
--- community-staging-i686/giflib-5.0.patch