[arch-commits] Commit in gmic/repos (4 files)

2019-04-08 Thread Antonio Rojas via arch-commits
Date: Monday, April 8, 2019 @ 10:07:24
  Author: arojas
Revision: 450346

archrelease: copy trunk to community-staging-x86_64

Added:
  gmic/repos/community-staging-x86_64/
  gmic/repos/community-staging-x86_64/PKGBUILD
(from rev 450345, gmic/trunk/PKGBUILD)
  gmic/repos/community-staging-x86_64/gmic-opencv4.patch
(from rev 450345, gmic/trunk/gmic-opencv4.patch)
  gmic/repos/community-staging-x86_64/zart-opencv4.patch
(from rev 450345, gmic/trunk/zart-opencv4.patch)

+
 PKGBUILD   |   82 +++
 gmic-opencv4.patch |   12 +++
 zart-opencv4.patch |   39 
 3 files changed, 133 insertions(+)

Copied: gmic/repos/community-staging-x86_64/PKGBUILD (from rev 450345, 
gmic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-08 10:07:24 UTC (rev 450346)
@@ -0,0 +1,82 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+# Contributor: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=(gmic zart gimp-plugin-gmic krita-plugin-gmic)
+pkgver=2.5.5
+pkgrel=2
+arch=(x86_64)
+url="https://gmic.eu/";
+license=(custom:CeCILL)
+makedepends=(gimp qt5-base fftw openexr opencv eigen)
+source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz gmic-opencv4.patch 
zart-opencv4.patch)
+sha256sums=('46246a7f37740cfba22b6ee77f509a9e874cc70b7e1169ef195dcf8bb2b98d13'
+'c7ee3be4fb2ac4243537fd8344a5bbe46ebafa0cd66a6e5cb941bbdf718378ec'
+'182c6723708302a8cee92bfb45a40ff09b8903c649ce856d0d8cd10aab0ee39b')
+
+prepare() {
+  sed -e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' 
-i gmic-$pkgver/src/Makefile
+# fix overlinking
+  sed -e 's/pkg-config opencv --libs ||//' -e 
's/-lopencv_highgui/-lopencv_videoio/' \
+  -e 's/pkg-config opencv/pkg-config opencv4/' -i 
gmic-$pkgver/src/Makefile 
+# fix build with openCV 4.0
+  cd gmic-$pkgver/src
+  patch -p1 -i "$srcdir"/gmic-opencv4.patch
+  cd ../zart
+  patch -p1 -i "$srcdir"/zart-opencv4.patch
+}
+
+build() {
+  cd gmic-$pkgver
+  make -C src cli lib libc WGET=/bin/true
+
+  cd gmic-qt
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=none
+  make
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=gimp
+  make
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=krita
+  make  
+
+  cd ../zart
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on QMAKE_CXXFLAGS+=" 
-DOPENCV2_HEADERS"
+  make
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=(opencv fftw curl)
+  optdepends=('qt5-base: for the Qt UI')
+
+  cd gmic-$pkgver/src
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -r "$pkgdir"/usr/{bin/zart,lib/gimp,bin/gmic_krita_qt}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=(gmic qt5-base)
+
+  install -Dm755 gmic-$pkgver/zart/zart -t "$pkgdir"/usr/bin
+  install -Dm644 gmic-$pkgver/zart/Licence_CeCILL_V2-en.html -t 
"$pkgdir"/usr/share/licenses/$pkgname
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=(gimp gmic qt5-base)
+
+  install -Dm755 gmic-$pkgver/gmic-qt/gmic_gimp_qt 
"$pkgdir"/usr/lib/gimp/2.0/plug-ins/gmic_gimp
+  install -Dm644 gmic-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_krita-plugin-gmic() {
+  pkgdesc="Krita plugin for the G'MIC image processing framework"
+  depends=(krita gmic)
+
+  install -Dm755 gmic-$pkgver/gmic-qt/gmic_krita_qt -t "$pkgdir"/usr/bin/
+  install -Dm644 gmic-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: gmic/repos/community-staging-x86_64/gmic-opencv4.patch (from rev 
450345, gmic/trunk/gmic-opencv4.patch)
===
--- community-staging-x86_64/gmic-opencv4.patch (rev 0)
+++ community-staging-x86_64/gmic-opencv4.patch 2019-04-08 10:07:24 UTC (rev 
450346)
@@ -0,0 +1,12 @@
+diff --git a/CImg.h b/CImg.h
+index af63bcb..c7757fc 100644
+--- a/CImg.h
 b/CImg.h
+@@ -417,6 +417,7 @@
+ #endif
+ #include 
+ #include 
++#include 
+ #if CV_MAJOR_VERSION >=3
+ #define _cimg_fourcc cv::VideoWriter::fourcc
+ #else

Copied: gmic/repos/community-staging-x86_64/zart-opencv4.patch (from rev 
450345, gmic/trunk/zart-opencv4.patch)
===
--- community-staging-x86_64/zart-opencv4.patch (rev 0)
+++ community-staging-x86_64/zart-opencv4.patch 2019-04-08 10:07:24 UTC (rev 
450346)
@@ -0,0 +1,39 @@
+diff --git a/include/VideoFileSource.h b/include/VideoFileSource.h
+index 0fda14e..8c15178 100644
+--- a/include/VideoFileSource.h
+++

[arch-commits] Commit in gmic/repos (4 files)

2018-11-21 Thread Antonio Rojas via arch-commits
Date: Wednesday, November 21, 2018 @ 10:30:30
  Author: arojas
Revision: 409261

archrelease: copy trunk to community-staging-x86_64

Added:
  gmic/repos/community-staging-x86_64/
  gmic/repos/community-staging-x86_64/PKGBUILD
(from rev 409260, gmic/trunk/PKGBUILD)
  gmic/repos/community-staging-x86_64/gmic-opencv4.patch
(from rev 409260, gmic/trunk/gmic-opencv4.patch)
  gmic/repos/community-staging-x86_64/zart-opencv4.patch
(from rev 409260, gmic/trunk/zart-opencv4.patch)

+
 PKGBUILD   |   82 +++
 gmic-opencv4.patch |   14 
 zart-opencv4.patch |   39 
 3 files changed, 135 insertions(+)

Copied: gmic/repos/community-staging-x86_64/PKGBUILD (from rev 409260, 
gmic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-11-21 10:30:30 UTC (rev 409261)
@@ -0,0 +1,82 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+# Contributor: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=(gmic zart gimp-plugin-gmic krita-plugin-gmic)
+pkgver=2.4.1
+pkgrel=2
+arch=(x86_64)
+url="http://gmic.eu/";
+license=(custom:CeCILL)
+makedepends=(gimp qt5-base fftw openexr opencv git)
+source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz gmic-opencv4.patch 
zart-opencv4.patch)
+sha256sums=('446b465d2ff7314add634115f6bffecd136ad96759eb92f76c03f231f44188d6'
+'1ffb4f8952be152ba2956a50ff6c39b078e547a4d3386cc2f34549124aefbed3'
+'182c6723708302a8cee92bfb45a40ff09b8903c649ce856d0d8cd10aab0ee39b')
+
+prepare() {
+  sed -e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' 
-i gmic-$pkgver/src/Makefile
+# fix overlinking
+  sed -e 's/pkg-config opencv --libs ||//' -e 
's/-lopencv_highgui/-lopencv_videoio/' \
+  -e 's/pkg-config opencv/pkg-config opencv4/' -i 
gmic-$pkgver/src/Makefile 
+# fix build with openCV 4.0
+  cd gmic-$pkgver/src
+  patch -p1 -i "$srcdir"/gmic-opencv4.patch
+  cd ../zart
+  patch -p1 -i "$srcdir"/zart-opencv4.patch
+}
+
+build() {
+  cd gmic-$pkgver
+  make -C src cli lib libc WGET=/bin/true
+
+  cd gmic-qt
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=none
+  make
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=gimp
+  make
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=krita
+  make  
+
+  cd ../zart
+  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on QMAKE_CXXFLAGS+=" 
-DOPENCV2_HEADERS"
+  make
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=(opencv fftw curl)
+  optdepends=('qt5-base: for the Qt UI')
+
+  cd gmic-$pkgver/src
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -r "$pkgdir"/usr/{bin/zart,lib/gimp,bin/gmic_krita_qt}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=(gmic qt5-base)
+
+  install -Dm755 gmic-$pkgver/zart/zart -t "$pkgdir"/usr/bin
+  install -Dm644 gmic-$pkgver/zart/Licence_CeCILL_V2-en.html -t 
"$pkgdir"/usr/share/licenses/$pkgname
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=(gimp gmic qt5-base)
+
+  install -Dm755 gmic-$pkgver/gmic-qt/gmic_gimp_qt 
"$pkgdir"/usr/lib/gimp/2.0/plug-ins/gmic_gimp
+  install -Dm644 gmic-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_krita-plugin-gmic() {
+  pkgdesc="Krita plugin for the G'MIC image processing framework"
+  depends=(krita gmic)
+
+  install -Dm755 gmic-$pkgver/gmic-qt/gmic_krita_qt -t "$pkgdir"/usr/bin/
+  install -Dm644 gmic-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: gmic/repos/community-staging-x86_64/gmic-opencv4.patch (from rev 
409260, gmic/trunk/gmic-opencv4.patch)
===
--- community-staging-x86_64/gmic-opencv4.patch (rev 0)
+++ community-staging-x86_64/gmic-opencv4.patch 2018-11-21 10:30:30 UTC (rev 
409261)
@@ -0,0 +1,14 @@
+diff --git a/CImg.h b/CImg.h
+index af63bcb..c7757fc 100644
+--- a/CImg.h
 b/CImg.h
+@@ -414,8 +414,7 @@
+ #define _cimg_redefine_False
+ #endif
+ #include 
+-#include "cv.h"
+-#include "highgui.h"
++#include 
+ #endif
+ 
+ // Configure LibPNG support.

Copied: gmic/repos/community-staging-x86_64/zart-opencv4.patch (from rev 
409260, gmic/trunk/zart-opencv4.patch)
===
--- community-staging-x86_64/zart-opencv4.patch (rev 0)
+++ community-staging-x86_64/zart-opencv4.patch 2018-11-21 10:30:30 UTC (rev 
409261)
@@ -0,0 +1,39 @@
+diff --git a/include/VideoFileSource.h b/include/VideoFileSource.h
+index 0fda14e..8c15178 100644
+--- a/inc

[arch-commits] Commit in gmic/repos (4 files)

2017-10-10 Thread Antonio Rojas
Date: Wednesday, October 11, 2017 @ 06:25:23
  Author: arojas
Revision: 262320

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 262319, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 262319, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  174 
 community-i686/PKGBUILD   |   85 -
 community-x86_64/PKGBUILD |   85 -
 3 files changed, 174 insertions(+), 170 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-10-11 06:24:45 UTC (rev 262319)
+++ community-i686/PKGBUILD 2017-10-11 06:25:23 UTC (rev 262320)
@@ -1,85 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=2.0.4
-gmic_qt_ver=.204
-_commit=2afae7108fb45d6c88a0a0b0d8e220c6dddb6be1
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt5-base' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git' 
'hdf5')
-source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
-   "git://github.com/dtschump/gmic-community.git#commit=${_commit}"
-   
"gmic-qt-v$gmic_qt_ver.tar.gz::https://github.com/c-koi/gmic-qt/archive/v$gmic_qt_ver.tar.gz";)
-sha256sums=('d2f9cb362668b1905c62d57a6fb73c15974841961c58c250a568854c0e4c9e55'
-'SKIP'
-'cd4170adbe916802e8ced03b6e63dea5ba9bf26a1e29e01cebf07a4001d1a126')
-
-prepare() {
-  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
-  cd "${srcdir}/gmic"
-
-  ln -sf ../gmic-community/zart zart
-  ln -sf ../gmic-qt-v$gmic_qt_ver gmic-qt
-
-  sed -i -e 
's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-  sed -i -e 's|-Ofast|-O2 -fno-fast-math|g' \
-gmic-qt/gmic_qt.pro
-}
-
-build() {
-  cd "${srcdir}/gmic"
-
-#  unset CFLAGS
-#  unset CXXFLAGS
-#  export CPPFLAGS="-Wno-implicit-fallthrough -Wno-format-truncation 
-fno-fast-math"
-#  export QMAKE_CXXFLAGS="-fno-fast-math"
-#  export QMAKE_CPPFLAGS="-fno-fast-math"
-
-msg qweqeqwe
-
-  (cd zart && qmake -o Makefile zart.pro)
-
-msg asdasdasd
-
-  make -C src all WGET=/bin/true -j1
-
-msg zxczxczxc
-
-  make -C zart all WGET=/bin/true
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11" 
"hdf5" "curl")
-
-  cd "${srcdir}/gmic"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt5-base")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 zart/Licence_CeCILL_V2-en.html 
"${pkgdir}/usr/share/licenses/${pkgname}/Licence_CeCILL_V2-en.html"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw" "qt5-base" "curl")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 gmic-qt/gmic_gimp_qt 
"${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 gmic-qt/COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 262319, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-10-11 06:25:23 UTC (rev 262320)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart" "krita-plugin-gmic")
+pkgver=2.0.4
+gmic_qt_ver=.204
+_commit=2afae7108fb45d6c88a0a0b0d8e220c6dddb6be1
+pkgrel=2
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt5-base' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git' 
'hdf5')
+source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
+   "git://github.com/dtschump/gmic-community.git#commit=${_commit}"
+   
"gmic-qt-v$gmic_qt_ver.tar.gz::https://github.com/c-koi/gmic-qt/archive/v$gmic_qt_ver.tar.gz";)
+sha256sums=('d2f9cb362668b1905c62d57a6fb73c15974841961c58c250a568854c0e4c9e55'
+'SKIP'
+'cd4170adbe916802e8ced03b6e63dea5ba9bf26a1e29e01cebf07a4001d1a126')
+
+prepare() {
+  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
+  cd "${srcdir}/gmic"
+
+  ln -sf ../gmic-community/zart zart
+  ln -sf ../gmic-qt-v$gmic_qt_ver gmic-qt

[arch-commits] Commit in gmic/repos (4 files)

2017-09-27 Thread Sergej Pupykin
Date: Wednesday, September 27, 2017 @ 15:29:47
  Author: spupykin
Revision: 260698

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 260697, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 260697, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  170 
 community-i686/PKGBUILD   |   85 --
 community-x86_64/PKGBUILD |   85 --
 3 files changed, 170 insertions(+), 170 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-27 15:29:25 UTC (rev 260697)
+++ community-i686/PKGBUILD 2017-09-27 15:29:47 UTC (rev 260698)
@@ -1,85 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=2.0.3
-gmic_qt_ver=2.0.0
-_commit=ffc89e7f8a7491f35191fe7e5ffce531128d77ef
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt5-base' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git' 
'hdf5')
-source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
-   "git://github.com/dtschump/gmic-community.git#commit=${_commit}"
-   "https://github.com/c-koi/gmic-qt/archive/v$gmic_qt_ver.tar.gz";)
-sha256sums=('b1f65aba4aa76bdf6da1ad923018de6844f5b76f9974978b4b12be108f87261e'
-'SKIP'
-'286fc5be19f7ad63b9a20e22ed62064c4cc2bf5113caf59d835e6cd09d81b822')
-
-prepare() {
-  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
-  cd "${srcdir}/gmic"
-
-  ln -sf ../gmic-community/zart zart
-  ln -sf ../gmic-qt-$gmic_qt_ver gmic-qt
-
-  sed -i -e 
's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-  sed -i -e 's|-Ofast|-O2 -fno-fast-math|g' \
-gmic-qt/gmic_qt.pro
-}
-
-build() {
-  cd "${srcdir}/gmic"
-
-#  unset CFLAGS
-#  unset CXXFLAGS
-#  export CPPFLAGS="-Wno-implicit-fallthrough -Wno-format-truncation 
-fno-fast-math"
-#  export QMAKE_CXXFLAGS="-fno-fast-math"
-#  export QMAKE_CPPFLAGS="-fno-fast-math"
-
-msg qweqeqwe
-
-  (cd zart && qmake -o Makefile zart.pro)
-
-msg asdasdasd
-
-  make -C src all WGET=/bin/true -j1
-
-msg zxczxczxc
-
-  make -C zart all WGET=/bin/true
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11" 
"hdf5" "curl")
-
-  cd "${srcdir}/gmic"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt5-base")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 zart/Licence_CeCILL_V2-en.html 
"${pkgdir}/usr/share/licenses/${pkgname}/Licence_CeCILL_V2-en.html"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw" "qt5-base" "curl")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 gmic-qt/gmic_gimp_qt 
"${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 gmic-qt/COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 260697, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-27 15:29:47 UTC (rev 260698)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=2.0.4
+gmic_qt_ver=.204
+_commit=2afae7108fb45d6c88a0a0b0d8e220c6dddb6be1
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt5-base' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git' 
'hdf5')
+source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
+   "git://github.com/dtschump/gmic-community.git#commit=${_commit}"
+   
"gmic-qt-v$gmic_qt_ver.tar.gz::https://github.com/c-koi/gmic-qt/archive/v$gmic_qt_ver.tar.gz";)
+sha256sums=('d2f9cb362668b1905c62d57a6fb73c15974841961c58c250a568854c0e4c9e55'
+'SKIP'
+'cd4170adbe916802e8ced03b6e63dea5ba9bf26a1e29e01cebf07a4001d1a126')
+
+prepare() {
+  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
+  cd "${srcdir}/gmic"
+
+  ln -sf ../gmic-community/zart zart
+  ln -sf ../gmic-qt-v$gmic_qt_ver gmic-qt
+
+  sed -i -e 
's|/etc/bash_completion.d|/us

[arch-commits] Commit in gmic/repos (4 files)

2017-09-05 Thread Sergej Pupykin
Date: Tuesday, September 5, 2017 @ 13:39:50
  Author: spupykin
Revision: 255731

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 255730, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 255730, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  170 
 community-i686/PKGBUILD   |   79 
 community-x86_64/PKGBUILD |   79 
 3 files changed, 170 insertions(+), 158 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-05 13:39:23 UTC (rev 255730)
+++ community-i686/PKGBUILD 2017-09-05 13:39:50 UTC (rev 255731)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=2.0.2
-gmic_qt_ver=2.0.0
-_commit=ffc89e7f8a7491f35191fe7e5ffce531128d77ef
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt5-base' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git' 
'hdf5')
-source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
-   "git://github.com/dtschump/gmic-community.git#commit=${_commit}"
-   "https://github.com/c-koi/gmic-qt/archive/v$gmic_qt_ver.tar.gz";)
-sha256sums=('7da9f08d62a9d23fc8badbc7c819cf76f4a9ce3db763710268fdcb80d83ecfc6'
-'SKIP'
-'286fc5be19f7ad63b9a20e22ed62064c4cc2bf5113caf59d835e6cd09d81b822')
-
-prepare() {
-  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
-  cd "${srcdir}/gmic"
-
-  ln -sf ../gmic-community/zart zart
-  ln -sf ../gmic-qt-$gmic_qt_ver gmic-qt
-
-  sed -i -e 
's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-  sed -i -e 's|-Ofast|-O2 -fno-fast-math|g' \
-gmic-qt/gmic_qt.pro
-}
-
-build() {
-  cd "${srcdir}/gmic"
-
-  unset CFLAGS
-
-  unset CXXFLAGS
-  export CPPFLAGS="-Wno-implicit-fallthrough -Wno-format-truncation 
-fno-fast-math"
-
-  export QMAKE_CXXFLAGS="-fno-fast-math"
-  export QMAKE_CPPFLAGS="-fno-fast-math"
-
-  (cd zart && qmake -o Makefile zart.pro)
-  make -C src all WGET=/bin/true
-  make -C zart all WGET=/bin/true
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11" 
"hdf5" "curl")
-
-  cd "${srcdir}/gmic"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt5-base")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 zart/Licence_CeCILL_V2-en.html 
"${pkgdir}/usr/share/licenses/${pkgname}/Licence_CeCILL_V2-en.html"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw" "qt5-base" "curl")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 gmic-qt/gmic_gimp_qt 
"${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 gmic-qt/COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 255730, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-05 13:39:50 UTC (rev 255731)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=2.0.3
+gmic_qt_ver=2.0.0
+_commit=ffc89e7f8a7491f35191fe7e5ffce531128d77ef
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt5-base' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git' 
'hdf5')
+source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
+   "git://github.com/dtschump/gmic-community.git#commit=${_commit}"
+   "https://github.com/c-koi/gmic-qt/archive/v$gmic_qt_ver.tar.gz";)
+sha256sums=('b1f65aba4aa76bdf6da1ad923018de6844f5b76f9974978b4b12be108f87261e'
+'SKIP'
+'286fc5be19f7ad63b9a20e22ed62064c4cc2bf5113caf59d835e6cd09d81b822')
+
+prepare() {
+  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
+  cd "${srcdir}/gmic"
+
+  ln -sf ../gmic-community/zart zart
+  ln -sf ../gmic-qt-$gmic_qt_ver gmic-qt
+
+  sed -i -e 
's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+  sed -i -e 's|-Ofast|-O2 -fno-fast-m

[arch-commits] Commit in gmic/repos (4 files)

2017-09-04 Thread Sergej Pupykin
Date: Monday, September 4, 2017 @ 17:25:34
  Author: spupykin
Revision: 255675

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 255674, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 255674, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  158 
 community-i686/PKGBUILD   |   79 --
 community-x86_64/PKGBUILD |   79 --
 3 files changed, 158 insertions(+), 158 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-04 17:25:14 UTC (rev 255674)
+++ community-i686/PKGBUILD 2017-09-04 17:25:34 UTC (rev 255675)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=2.0.2
-gmic_qt_ver=2.0.0
-_commit=c43f88d9537c58be4eeac515282eec8096c4a797
-pkgrel=2
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt5-base' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git' 
'hdf5')
-source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
-   "git://github.com/dtschump/gmic-community.git#commit=${_commit}"
-   "https://github.com/c-koi/gmic-qt/archive/v$gmic_qt_ver.tar.gz";)
-sha256sums=('7da9f08d62a9d23fc8badbc7c819cf76f4a9ce3db763710268fdcb80d83ecfc6'
-'SKIP'
-'286fc5be19f7ad63b9a20e22ed62064c4cc2bf5113caf59d835e6cd09d81b822')
-
-prepare() {
-  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
-  cd "${srcdir}/gmic"
-
-  ln -sf ../gmic-community/zart zart
-  ln -sf ../gmic-qt-$gmic_qt_ver gmic-qt
-
-  sed -i -e 
's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-  sed -i -e 's|-Ofast|-O2 -fno-fast-math|g' \
-gmic-qt/gmic_qt.pro
-}
-
-build() {
-  cd "${srcdir}/gmic"
-
-  unset CFLAGS
-
-  unset CXXFLAGS
-  export CPPFLAGS="-Wno-implicit-fallthrough -Wno-format-truncation 
-fno-fast-math"
-
-  export QMAKE_CXXFLAGS="-fno-fast-math"
-  export QMAKE_CPPFLAGS="-fno-fast-math"
-
-  (cd zart && qmake -o Makefile zart.pro)
-  make -C src all WGET=/bin/true
-  make -C zart all WGET=/bin/true
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11" 
"hdf5" "curl")
-
-  cd "${srcdir}/gmic"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt5-base")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 zart/Licence_CeCILL_V2-en.html 
"${pkgdir}/usr/share/licenses/${pkgname}/Licence_CeCILL_V2-en.html"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw" "qt5-base" "curl")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 gmic-qt/gmic_gimp_qt 
"${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 gmic-qt/COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 255674, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-04 17:25:34 UTC (rev 255675)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=2.0.2
+gmic_qt_ver=2.0.0
+_commit=ffc89e7f8a7491f35191fe7e5ffce531128d77ef
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt5-base' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git' 
'hdf5')
+source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
+   "git://github.com/dtschump/gmic-community.git#commit=${_commit}"
+   "https://github.com/c-koi/gmic-qt/archive/v$gmic_qt_ver.tar.gz";)
+sha256sums=('7da9f08d62a9d23fc8badbc7c819cf76f4a9ce3db763710268fdcb80d83ecfc6'
+'SKIP'
+'286fc5be19f7ad63b9a20e22ed62064c4cc2bf5113caf59d835e6cd09d81b822')
+
+prepare() {
+  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
+  cd "${srcdir}/gmic"
+
+  ln -sf ../gmic-community/zart zart
+  ln -sf ../gmic-qt-$gmic_qt_ver gmic-qt
+
+  sed -i -e 
's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+  sed -i -e 's|-Ofast|-O2 -fno-fas

[arch-commits] Commit in gmic/repos (4 files)

2017-08-21 Thread Antonio Rojas
Date: Monday, August 21, 2017 @ 19:07:54
  Author: arojas
Revision: 252880

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

Added:
  gmic/repos/community-staging-i686/
  gmic/repos/community-staging-i686/PKGBUILD
(from rev 252879, gmic/trunk/PKGBUILD)
  gmic/repos/community-staging-x86_64/
  gmic/repos/community-staging-x86_64/PKGBUILD
(from rev 252879, gmic/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   79 
 community-staging-x86_64/PKGBUILD |   79 
 2 files changed, 158 insertions(+)

Copied: gmic/repos/community-staging-i686/PKGBUILD (from rev 252879, 
gmic/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-08-21 19:07:54 UTC (rev 252880)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=2.0.2
+gmic_qt_ver=2.0.0
+_commit=c43f88d9537c58be4eeac515282eec8096c4a797
+pkgrel=2
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt5-base' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git' 
'hdf5')
+source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
+   "git://github.com/dtschump/gmic-community.git#commit=${_commit}"
+   "https://github.com/c-koi/gmic-qt/archive/v$gmic_qt_ver.tar.gz";)
+sha256sums=('7da9f08d62a9d23fc8badbc7c819cf76f4a9ce3db763710268fdcb80d83ecfc6'
+'SKIP'
+'286fc5be19f7ad63b9a20e22ed62064c4cc2bf5113caf59d835e6cd09d81b822')
+
+prepare() {
+  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
+  cd "${srcdir}/gmic"
+
+  ln -sf ../gmic-community/zart zart
+  ln -sf ../gmic-qt-$gmic_qt_ver gmic-qt
+
+  sed -i -e 
's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+  sed -i -e 's|-Ofast|-O2 -fno-fast-math|g' \
+gmic-qt/gmic_qt.pro
+}
+
+build() {
+  cd "${srcdir}/gmic"
+
+  unset CFLAGS
+
+  unset CXXFLAGS
+  export CPPFLAGS="-Wno-implicit-fallthrough -Wno-format-truncation 
-fno-fast-math"
+
+  export QMAKE_CXXFLAGS="-fno-fast-math"
+  export QMAKE_CPPFLAGS="-fno-fast-math"
+
+  (cd zart && qmake -o Makefile zart.pro)
+  make -C src all WGET=/bin/true
+  make -C zart all WGET=/bin/true
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11" 
"hdf5" "curl")
+
+  cd "${srcdir}/gmic"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt5-base")
+
+  cd "${srcdir}/gmic"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 zart/Licence_CeCILL_V2-en.html 
"${pkgdir}/usr/share/licenses/${pkgname}/Licence_CeCILL_V2-en.html"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw" "qt5-base" "curl")
+
+  cd "${srcdir}/gmic"
+  install -Dm755 gmic-qt/gmic_gimp_qt 
"${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -Dm644 gmic-qt/COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: gmic/repos/community-staging-x86_64/PKGBUILD (from rev 252879, 
gmic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-08-21 19:07:54 UTC (rev 252880)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=2.0.2
+gmic_qt_ver=2.0.0
+_commit=c43f88d9537c58be4eeac515282eec8096c4a797
+pkgrel=2
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt5-base' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git' 
'hdf5')
+source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
+   "git://github.com/dtschump/gmic-community.git#commit=${_commit}"
+   "https://github.com/c-koi/gmic-qt/archive/v$gmic_qt_ver.tar.gz";)
+sha256sums=('7da9f08d62a9d23fc8badbc7c819cf76f4a9ce3db763710268fdcb80d83ecfc6'
+'SKIP'
+'286fc5be19f7ad63b9a20e22ed62064c4cc2bf5113caf59d835e6cd09d81b822')
+
+prepare() {
+  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
+  cd "${srcdir}/gmic"
+
+  ln -sf ../gmic-community/zart zart
+  ln -sf ../gmic-qt-$gmic_qt_ver gmic-qt
+
+  sed -i -e 
's|/etc/bash_completion.d|/usr/share/bash-completion/c

[arch-commits] Commit in gmic/repos (4 files)

2017-07-06 Thread Sergej Pupykin
Date: Thursday, July 6, 2017 @ 15:47:01
  Author: spupykin
Revision: 242563

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 242562, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 242562, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  158 
 community-i686/PKGBUILD   |   71 ---
 community-x86_64/PKGBUILD |   71 ---
 3 files changed, 158 insertions(+), 142 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-06 15:46:38 UTC (rev 242562)
+++ community-i686/PKGBUILD 2017-07-06 15:47:01 UTC (rev 242563)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=2.0.0
-_commit=440f068f665597aa10d8e01cc8b73cafdf0e4479
-pkgrel=2
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git' 'hdf5')
-source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
-   "git://github.com/dtschump/gmic-community.git#commit=${_commit}"
-   "gmic_stdlib.h-$pkgver::http://gmic.eu/gmic_stdlib.h";
-   
"CImg.h-$pkgver::https://github.com/dtschump/CImg/blob/master/CImg.h?raw=true";)
-sha256sums=('27c57f0ca630895a0dab5c0eff854f3133a29743267c4aa196dc2d1936463ca4'
-'SKIP'
-'5557eba6da03e8c1df2bb2f36644577245540b247e71b130b6aa03c45c87b8d9'
-'27d35b0c402897e270f74cbca7b90541cfe860b308b868f96b06fa372fdbd6be')
-
-prepare() {
-  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
-  cd "${srcdir}/gmic"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-  ln -sf ../gmic-community/zart zart
-
-  mkdir -p ../CImg
-  cp -L ../gmic_stdlib.h-$pkgver src/gmic_stdlib.h
-  cp -L ../CImg.h-$pkgver ../CImg/CImg.h
-}
-
-build() {
-  cd "${srcdir}/gmic"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all WGET=/bin/true
-  make -C zart all WGET=/bin/true
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11" 
"hdf5")
-
-  cd "${srcdir}/gmic"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 src/gmic_gimp_gtk 
"${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 242562, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-06 15:47:01 UTC (rev 242563)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=2.0.2
+gmic_qt_ver=2.0.0
+_commit=c43f88d9537c58be4eeac515282eec8096c4a797
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt5-base' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git' 
'hdf5')
+source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
+   "git://github.com/dtschump/gmic-community.git#commit=${_commit}"
+   "https://github.com/c-koi/gmic-qt/archive/v$gmic_qt_ver.tar.gz";)
+sha256sums=('7da9f08d62a9d23fc8badbc7c819cf76f4a9ce3db763710268fdcb80d83ecfc6'
+'SKIP'
+'286fc5be19f7ad63b9a20e22ed62064c4cc2bf5113caf59d835e6cd09d81b822')
+
+prepare() {
+  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
+  cd "${srcdir}/gmic"
+
+  ln -sf ../gmic-community/zart zart
+  ln -sf ../gmic-qt-$gmic_qt_ver gmic-qt
+
+  sed -i -e 
's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+  sed -i -e 's|-Ofast|-O2 -fno-fast-math|g' \
+gmic-qt/gmic_qt.pro
+}
+
+build() {
+  cd "${srcdir}/gmic"
+
+  unset CFLAGS
+
+  unset CXXFLAGS
+  exp

[arch-commits] Commit in gmic/repos (4 files)

2017-06-09 Thread Sergej Pupykin
Date: Friday, June 9, 2017 @ 10:33:11
  Author: spupykin
Revision: 235511

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 235510, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 235510, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  142 
 community-i686/PKGBUILD   |   71 --
 community-x86_64/PKGBUILD |   71 --
 3 files changed, 142 insertions(+), 142 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-06-09 10:32:53 UTC (rev 235510)
+++ community-i686/PKGBUILD 2017-06-09 10:33:11 UTC (rev 235511)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=2.0.0
-_commit=440f068f665597aa10d8e01cc8b73cafdf0e4479
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git')
-source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
-   "git://github.com/dtschump/gmic-community.git#commit=${_commit}"
-   "gmic_stdlib.h-$pkgver::http://gmic.eu/gmic_stdlib.h";
-   
"CImg.h-$pkgver::https://github.com/dtschump/CImg/blob/master/CImg.h?raw=true";)
-sha256sums=('27c57f0ca630895a0dab5c0eff854f3133a29743267c4aa196dc2d1936463ca4'
-'SKIP'
-'5557eba6da03e8c1df2bb2f36644577245540b247e71b130b6aa03c45c87b8d9'
-'27d35b0c402897e270f74cbca7b90541cfe860b308b868f96b06fa372fdbd6be')
-
-prepare() {
-  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
-  cd "${srcdir}/gmic"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-  ln -sf ../gmic-community/zart zart
-
-  mkdir -p ../CImg
-  cp -L ../gmic_stdlib.h-$pkgver src/gmic_stdlib.h
-  cp -L ../CImg.h-$pkgver ../CImg/CImg.h
-}
-
-build() {
-  cd "${srcdir}/gmic"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all WGET=/bin/true
-  make -C zart all WGET=/bin/true
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-
-  cd "${srcdir}/gmic"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 src/gmic_gimp_gtk 
"${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 235510, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-06-09 10:33:11 UTC (rev 235511)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=2.0.0
+_commit=440f068f665597aa10d8e01cc8b73cafdf0e4479
+pkgrel=2
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git' 'hdf5')
+source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
+   "git://github.com/dtschump/gmic-community.git#commit=${_commit}"
+   "gmic_stdlib.h-$pkgver::http://gmic.eu/gmic_stdlib.h";
+   
"CImg.h-$pkgver::https://github.com/dtschump/CImg/blob/master/CImg.h?raw=true";)
+sha256sums=('27c57f0ca630895a0dab5c0eff854f3133a29743267c4aa196dc2d1936463ca4'
+'SKIP'
+'5557eba6da03e8c1df2bb2f36644577245540b247e71b130b6aa03c45c87b8d9'
+'27d35b0c402897e270f74cbca7b90541cfe860b308b868f96b06fa372fdbd6be')
+
+prepare() {
+  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
+  cd "${srcdir}/gmic"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+  ln -sf ../gmic-community/zart zart
+
+  mkdir -p ../CImg
+  cp -

[arch-commits] Commit in gmic/repos (4 files)

2017-05-30 Thread Sergej Pupykin
Date: Tuesday, May 30, 2017 @ 12:13:55
  Author: spupykin
Revision: 231230

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 231229, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 231229, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  142 
 community-i686/PKGBUILD   |   65 
 community-x86_64/PKGBUILD |   65 
 3 files changed, 142 insertions(+), 130 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-30 12:13:32 UTC (rev 231229)
+++ community-i686/PKGBUILD 2017-05-30 12:13:55 UTC (rev 231230)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.7.9
-_commit=7c19f43888c714d18a13616ff805d246289f4786
-pkgrel=3
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git')
-source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
-   "git://github.com/dtschump/gmic-community.git#commit=${_commit}")
-sha256sums=('152f100eb139a5f6e5b3d1e43aaed34f2b3786f72f52724ebde5e5ccea2c7133'
-'SKIP')
-
-prepare() {
-  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
-  cd "${srcdir}/gmic"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-  ln -sf ../gmic-community/zart zart
-}
-
-build() {
-  cd "${srcdir}/gmic"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 231229, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-30 12:13:55 UTC (rev 231230)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=2.0.0
+_commit=440f068f665597aa10d8e01cc8b73cafdf0e4479
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git')
+source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
+   "git://github.com/dtschump/gmic-community.git#commit=${_commit}"
+   "gmic_stdlib.h-$pkgver::http://gmic.eu/gmic_stdlib.h";
+   
"CImg.h-$pkgver::https://github.com/dtschump/CImg/blob/master/CImg.h?raw=true";)
+sha256sums=('27c57f0ca630895a0dab5c0eff854f3133a29743267c4aa196dc2d1936463ca4'
+'SKIP'
+'5557eba6da03e8c1df2bb2f36644577245540b247e71b130b6aa03c45c87b8d9'
+'27d35b0c402897e270f74cbca7b90541cfe860b308b868f96b06fa372fdbd6be')
+
+prepare() {
+  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
+  cd "${srcdir}/gmic"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+  ln -sf ../gmic-community/zart zart
+
+  mkdir -p ../CImg
+  cp -L ../gmic_stdlib.h-$pkgver src/gmic_stdlib.h
+  cp -L ../CImg.h-$pkgver ../CImg/CImg.h
+}
+
+build() {
+  cd "${srcdir}/gmic"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all WGET=/bin/true
+  make -C zart all WGET=/bin/true
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "

[arch-commits] Commit in gmic/repos (4 files)

2017-01-30 Thread Antonio Rojas
Date: Monday, January 30, 2017 @ 22:27:38
  Author: arojas
Revision: 209573

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

Added:
  gmic/repos/community-staging-i686/
  gmic/repos/community-staging-i686/PKGBUILD
(from rev 209571, gmic/trunk/PKGBUILD)
  gmic/repos/community-staging-x86_64/
  gmic/repos/community-staging-x86_64/PKGBUILD
(from rev 209571, gmic/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   65 
 community-staging-x86_64/PKGBUILD |   65 
 2 files changed, 130 insertions(+)

Copied: gmic/repos/community-staging-i686/PKGBUILD (from rev 209571, 
gmic/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-30 22:27:38 UTC (rev 209573)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.7.9
+_commit=7c19f43888c714d18a13616ff805d246289f4786
+pkgrel=3
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git')
+source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
+   "git://github.com/dtschump/gmic-community.git#commit=${_commit}")
+sha256sums=('152f100eb139a5f6e5b3d1e43aaed34f2b3786f72f52724ebde5e5ccea2c7133'
+'SKIP')
+
+prepare() {
+  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
+  cd "${srcdir}/gmic"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+  ln -sf ../gmic-community/zart zart
+}
+
+build() {
+  cd "${srcdir}/gmic"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: gmic/repos/community-staging-x86_64/PKGBUILD (from rev 209571, 
gmic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-30 22:27:38 UTC (rev 209573)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.7.9
+_commit=7c19f43888c714d18a13616ff805d246289f4786
+pkgrel=3
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git')
+source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
+   "git://github.com/dtschump/gmic-community.git#commit=${_commit}")
+sha256sums=('152f100eb139a5f6e5b3d1e43aaed34f2b3786f72f52724ebde5e5ccea2c7133'
+'SKIP')
+
+prepare() {
+  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
+  cd "${srcdir}/gmic"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+  ln -sf ../gmic-community/zart zart
+}
+
+build() {
+  cd "${srcdir}/gmic"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"

[arch-commits] Commit in gmic/repos (4 files)

2016-11-21 Thread Sergej Pupykin
Date: Monday, November 21, 2016 @ 11:18:40
  Author: spupykin
Revision: 196432

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 196431, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 196431, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  130 
 community-i686/PKGBUILD   |   65 --
 community-x86_64/PKGBUILD |   65 --
 3 files changed, 130 insertions(+), 130 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-11-21 11:18:23 UTC (rev 196431)
+++ community-i686/PKGBUILD 2016-11-21 11:18:40 UTC (rev 196432)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.7.8
-_commit=7c19f43888c714d18a13616ff805d246289f4786
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git')
-source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";
-   "git://github.com/dtschump/gmic-community.git#commit=${_commit}")
-md5sums=('5ef4a069a303c1cab3df9884477936f9'
- 'SKIP')
-
-prepare() {
-  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
-  cd "${srcdir}/gmic"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-  ln -sf ../gmic-community/zart zart
-}
-
-build() {
-  cd "${srcdir}/gmic"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 196431, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-11-21 11:18:40 UTC (rev 196432)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.7.9
+_commit=7c19f43888c714d18a13616ff805d246289f4786
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git')
+source=("https://gmic.eu/files/source/gmic_$pkgver.tar.gz";
+   "git://github.com/dtschump/gmic-community.git#commit=${_commit}")
+sha256sums=('93d8eb70780328fa207cef8555c77f7e9e5399ff7d204dfcab145809c51e34e4'
+'SKIP')
+
+prepare() {
+  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
+  cd "${srcdir}/gmic"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+  ln -sf ../gmic-community/zart zart
+}
+
+build() {
+  cd "${srcdir}/gmic"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/z

[arch-commits] Commit in gmic/repos (4 files)

2016-10-31 Thread Sergej Pupykin
Date: Monday, October 31, 2016 @ 11:02:52
  Author: spupykin
Revision: 194136

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 194135, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 194135, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  130 
 community-i686/PKGBUILD   |   65 --
 community-x86_64/PKGBUILD |   65 --
 3 files changed, 130 insertions(+), 130 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-31 11:02:28 UTC (rev 194135)
+++ community-i686/PKGBUILD 2016-10-31 11:02:52 UTC (rev 194136)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.7.5
-_commit=cb34b9d1cb6125917905f82f8b2af8e2abacac7d
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git')
-source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";
-   "git://github.com/dtschump/gmic-community.git#commit=${_commit}")
-md5sums=('d7c8c979d1c31e627b5ec799c76966dc'
- 'SKIP')
-
-prepare() {
-  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
-  cd "${srcdir}/gmic"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-  ln -sf ../gmic-community/zart zart
-}
-
-build() {
-  cd "${srcdir}/gmic"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 194135, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-31 11:02:52 UTC (rev 194136)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.7.8
+_commit=7c19f43888c714d18a13616ff805d246289f4786
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";
+   "git://github.com/dtschump/gmic-community.git#commit=${_commit}")
+md5sums=('5ef4a069a303c1cab3df9884477936f9'
+ 'SKIP')
+
+prepare() {
+  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
+  cd "${srcdir}/gmic"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+  ln -sf ../gmic-community/zart zart
+}
+
+build() {
+  cd "${srcdir}/gmic"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir

[arch-commits] Commit in gmic/repos (4 files)

2016-09-05 Thread Sergej Pupykin
Date: Monday, September 5, 2016 @ 15:06:21
  Author: spupykin
Revision: 188590

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 188589, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 188589, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  130 
 community-i686/PKGBUILD   |   60 
 community-x86_64/PKGBUILD |   60 
 3 files changed, 130 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-05 15:05:57 UTC (rev 188589)
+++ community-i686/PKGBUILD 2016-09-05 15:06:21 UTC (rev 188590)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.7.2
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
-md5sums=('93ca12905081f1b6004ce8f2e8ddcc8f')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 188589, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-05 15:06:21 UTC (rev 188590)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.7.5
+_commit=cb34b9d1cb6125917905f82f8b2af8e2abacac7d
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2' 'git')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";
+   "git://github.com/dtschump/gmic-community.git#commit=${_commit}")
+md5sums=('d7c8c979d1c31e627b5ec799c76966dc'
+ 'SKIP')
+
+prepare() {
+  mv "${srcdir}/gmic-${pkgver}" "${srcdir}/gmic"
+  cd "${srcdir}/gmic"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+  ln -sf ../gmic-community/zart zart
+}
+
+build() {
+  cd "${srcdir}/gmic"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replac

[arch-commits] Commit in gmic/repos (4 files)

2016-06-03 Thread Sergej Pupykin
Date: Friday, June 3, 2016 @ 13:21:35
  Author: spupykin
Revision: 177813

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 177812, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 177812, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-03 11:21:15 UTC (rev 177812)
+++ community-i686/PKGBUILD 2016-06-03 11:21:35 UTC (rev 177813)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.7.1
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
-md5sums=('86e381b680a6558ac3d62fc2f3b052d0')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 177812, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-03 11:21:35 UTC (rev 177813)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.7.2
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('93ca12905081f1b6004ce8f2e8ddcc8f')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -Dm644 COPY

[arch-commits] Commit in gmic/repos (4 files)

2016-05-08 Thread Sergej Pupykin
Date: Monday, May 9, 2016 @ 00:42:23
  Author: spupykin
Revision: 174378

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 174377, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 174377, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-08 22:42:04 UTC (rev 174377)
+++ community-i686/PKGBUILD 2016-05-08 22:42:23 UTC (rev 174378)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.7.0
-pkgrel=2
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
-md5sums=('63e9a9d5d8d752318b69b14f2e198273')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 174377, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-08 22:42:23 UTC (rev 174378)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.7.1
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('86e381b680a6558ac3d62fc2f3b052d0')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -Dm644 COPYI

[arch-commits] Commit in gmic/repos (4 files)

2016-03-29 Thread Sergej Pupykin
Date: Tuesday, March 29, 2016 @ 18:06:18
  Author: spupykin
Revision: 168804

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

Added:
  gmic/repos/community-testing-i686/PKGBUILD
(from rev 168803, gmic/trunk/PKGBUILD)
  gmic/repos/community-testing-x86_64/PKGBUILD
(from rev 168803, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-testing-i686/PKGBUILD
  gmic/repos/community-testing-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-testing-i686/PKGBUILD   |   60 --
 community-testing-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2016-03-29 16:06:01 UTC (rev 168803)
+++ community-testing-i686/PKGBUILD 2016-03-29 16:06:18 UTC (rev 168804)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.9
-pkgrel=2
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
-md5sums=('67fde5ee5eb40846d39844eb3f8d35fe')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-testing-i686/PKGBUILD (from rev 168803, 
gmic/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-03-29 16:06:18 UTC (rev 168804)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.7.0
+pkgrel=2
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('63e9a9d5d8d752318b69b14f2e198273')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmi

[arch-commits] Commit in gmic/repos (4 files)

2016-03-29 Thread Sergej Pupykin
Date: Tuesday, March 29, 2016 @ 17:28:18
  Author: spupykin
Revision: 168780

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 168779, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 168779, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-29 15:27:59 UTC (rev 168779)
+++ community-i686/PKGBUILD 2016-03-29 15:28:18 UTC (rev 168780)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.9
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
-md5sums=('67fde5ee5eb40846d39844eb3f8d35fe')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 168779, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-29 15:28:18 UTC (rev 168780)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.7.0
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('63e9a9d5d8d752318b69b14f2e198273')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -Dm644 C

[arch-commits] Commit in gmic/repos (4 files)

2016-03-10 Thread Bartłomiej Piotrowski
Date: Friday, March 11, 2016 @ 08:07:21
  Author: bpiotrowski
Revision: 166026

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

Added:
  gmic/repos/community-staging-i686/
  gmic/repos/community-staging-i686/PKGBUILD
(from rev 166025, gmic/trunk/PKGBUILD)
  gmic/repos/community-staging-x86_64/
  gmic/repos/community-staging-x86_64/PKGBUILD
(from rev 166025, gmic/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   60 
 community-staging-x86_64/PKGBUILD |   60 
 2 files changed, 120 insertions(+)

Copied: gmic/repos/community-staging-i686/PKGBUILD (from rev 166025, 
gmic/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 07:07:21 UTC (rev 166026)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.9
+pkgrel=2
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('67fde5ee5eb40846d39844eb3f8d35fe')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: gmic/repos/community-staging-x86_64/PKGBUILD (from rev 166025, 
gmic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 07:07:21 UTC (rev 166026)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.9
+pkgrel=2
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('67fde5ee5eb40846d39844eb3f8d35fe')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gm

[arch-commits] Commit in gmic/repos (4 files)

2016-02-21 Thread Sergej Pupykin
Date: Sunday, February 21, 2016 @ 22:30:32
  Author: spupykin
Revision: 163101

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 163100, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 163100, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-21 21:30:05 UTC (rev 163100)
+++ community-i686/PKGBUILD 2016-02-21 21:30:32 UTC (rev 163101)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.8
-pkgrel=2
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
-md5sums=('feaebd099235ab760899f2597f5e5508')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 163100, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-21 21:30:32 UTC (rev 163101)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.9
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('67fde5ee5eb40846d39844eb3f8d35fe')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -Dm644

[arch-commits] Commit in gmic/repos (4 files)

2015-12-08 Thread Felix Yan
Date: Tuesday, December 8, 2015 @ 14:51:15
  Author: fyan
Revision: 150326

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

Added:
  gmic/repos/community-staging-i686/PKGBUILD
(from rev 150325, gmic/trunk/PKGBUILD)
  gmic/repos/community-staging-x86_64/PKGBUILD
(from rev 150325, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-staging-i686/PKGBUILD
  gmic/repos/community-staging-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-staging-i686/PKGBUILD   |   60 --
 community-staging-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-12-08 13:50:44 UTC (rev 150325)
+++ community-staging-i686/PKGBUILD 2015-12-08 13:51:15 UTC (rev 150326)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.7
-pkgrel=2
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
-md5sums=('744fe03a742804bb377340553cb0fecc')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-staging-i686/PKGBUILD (from rev 150325, 
gmic/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-08 13:51:15 UTC (rev 150326)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.8
+pkgrel=2
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('feaebd099235ab760899f2597f5e5508')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-

[arch-commits] Commit in gmic/repos (4 files)

2015-12-08 Thread Sergej Pupykin
Date: Tuesday, December 8, 2015 @ 13:39:56
  Author: spupykin
Revision: 150297

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 150296, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 150296, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-08 12:39:30 UTC (rev 150296)
+++ community-i686/PKGBUILD 2015-12-08 12:39:56 UTC (rev 150297)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.7
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
-md5sums=('744fe03a742804bb377340553cb0fecc')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 150296, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-08 12:39:56 UTC (rev 150297)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.8
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('feaebd099235ab760899f2597f5e5508')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -Dm644

[arch-commits] Commit in gmic/repos (4 files)

2015-12-07 Thread Bartłomiej Piotrowski
Date: Monday, December 7, 2015 @ 15:21:45
  Author: bpiotrowski
Revision: 149925

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

Added:
  gmic/repos/community-staging-i686/
  gmic/repos/community-staging-i686/PKGBUILD
(from rev 149924, gmic/trunk/PKGBUILD)
  gmic/repos/community-staging-x86_64/
  gmic/repos/community-staging-x86_64/PKGBUILD
(from rev 149924, gmic/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   60 
 community-staging-x86_64/PKGBUILD |   60 
 2 files changed, 120 insertions(+)

Copied: gmic/repos/community-staging-i686/PKGBUILD (from rev 149924, 
gmic/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-07 14:21:45 UTC (rev 149925)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.7
+pkgrel=2
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('744fe03a742804bb377340553cb0fecc')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: gmic/repos/community-staging-x86_64/PKGBUILD (from rev 149924, 
gmic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-07 14:21:45 UTC (rev 149925)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.7
+pkgrel=2
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('744fe03a742804bb377340553cb0fecc')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/

[arch-commits] Commit in gmic/repos (4 files)

2015-10-01 Thread Sergej Pupykin
Date: Thursday, October 1, 2015 @ 16:24:51
  Author: spupykin
Revision: 142312

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 142311, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 142311, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-01 14:24:16 UTC (rev 142311)
+++ community-i686/PKGBUILD 2015-10-01 14:24:51 UTC (rev 142312)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.5.2
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
-md5sums=('4ec7d3565834a7db4d401697b598e842')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 142311, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-01 14:24:51 UTC (rev 142312)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.6.1
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('1b97339072586320f4bffc05373521c4')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -D

[arch-commits] Commit in gmic/repos (4 files)

2015-09-07 Thread Sergej Pupykin
Date: Monday, September 7, 2015 @ 15:35:54
  Author: spupykin
Revision: 139486

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 139485, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 139485, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-07 13:35:28 UTC (rev 139485)
+++ community-i686/PKGBUILD 2015-09-07 13:35:54 UTC (rev 139486)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.5.1
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
-md5sums=('547f70801886fdc02b2b0ddadb3f7d2e')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 139485, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-07 13:35:54 UTC (rev 139486)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.5.2
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('4ec7d3565834a7db4d401697b598e842')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -D

[arch-commits] Commit in gmic/repos (4 files)

2015-07-27 Thread Sergej Pupykin
Date: Monday, July 27, 2015 @ 11:24:24
  Author: spupykin
Revision: 137480

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 137479, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 137479, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-27 09:24:03 UTC (rev 137479)
+++ community-i686/PKGBUILD 2015-07-27 09:24:24 UTC (rev 137480)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.5.0
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
-md5sums=('1f7d91146455f872b94828c6aa6dfc6c')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 137479, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-27 09:24:24 UTC (rev 137480)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.5.1
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('547f70801886fdc02b2b0ddadb3f7d2e')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -Dm644

[arch-commits] Commit in gmic/repos (4 files)

2015-06-29 Thread Sergej Pupykin
Date: Monday, June 29, 2015 @ 12:43:54
  Author: spupykin
Revision: 136109

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 136108, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 136108, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-29 10:43:34 UTC (rev 136108)
+++ community-i686/PKGBUILD 2015-06-29 10:43:54 UTC (rev 136109)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.3.1
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.eu/";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
-md5sums=('90c85c90953d928be0bf689403da553e')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 136108, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-29 10:43:54 UTC (rev 136109)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.5.0
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('1f7d91146455f872b94828c6aa6dfc6c')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -Dm644

[arch-commits] Commit in gmic/repos (4 files)

2015-06-01 Thread Sergej Pupykin
Date: Monday, June 1, 2015 @ 14:59:43
  Author: spupykin
Revision: 134470

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 134469, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 134469, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 12:59:22 UTC (rev 134469)
+++ community-i686/PKGBUILD 2015-06-01 12:59:43 UTC (rev 134470)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.2.0
-pkgrel=3
-arch=("i686" "x86_64")
-url="http://gmic.sourceforge.net";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
-md5sums=('75c0c842ed6e1cd1de2999df7762f7d6')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 134469, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 12:59:43 UTC (rev 134470)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.3.1
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz";)
+md5sums=('90c85c90953d928be0bf689403da553e')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/pl

[arch-commits] Commit in gmic/repos (4 files)

2015-05-10 Thread Sergej Pupykin
Date: Sunday, May 10, 2015 @ 22:07:15
  Author: spupykin
Revision: 133210

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 133209, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 133209, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-10 20:07:01 UTC (rev 133209)
+++ community-i686/PKGBUILD 2015-05-10 20:07:15 UTC (rev 133210)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.2.0
-pkgrel=2
-arch=("i686" "x86_64")
-url="http://gmic.sourceforge.net";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
-md5sums=('75c0c842ed6e1cd1de2999df7762f7d6')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 133209, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-10 20:07:15 UTC (rev 133210)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.2.0
+pkgrel=3
+arch=("i686" "x86_64")
+url="http://gmic.sourceforge.net";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
+md5sums=('75c0c842ed6e1cd1de2999df7762f7d6')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic

[arch-commits] Commit in gmic/repos (4 files)

2015-04-24 Thread Sergej Pupykin
Date: Friday, April 24, 2015 @ 23:31:30
  Author: spupykin
Revision: 132212

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 132211, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 132211, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-24 21:31:15 UTC (rev 132211)
+++ community-i686/PKGBUILD 2015-04-24 21:31:30 UTC (rev 132212)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.2.0
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.sourceforge.net";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
-md5sums=('75c0c842ed6e1cd1de2999df7762f7d6')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 132211, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-24 21:31:30 UTC (rev 132212)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.2.0
+pkgrel=2
+arch=("i686" "x86_64")
+url="http://gmic.sourceforge.net";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
+md5sums=('75c0c842ed6e1cd1de2999df7762f7d6')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}

[arch-commits] Commit in gmic/repos (4 files)

2015-03-17 Thread Sergej Pupykin
Date: Tuesday, March 17, 2015 @ 20:15:38
  Author: spupykin
Revision: 129441

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 129440, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 129440, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-17 19:15:20 UTC (rev 129440)
+++ community-i686/PKGBUILD 2015-03-17 19:15:38 UTC (rev 129441)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.0.4
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.sourceforge.net";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
-md5sums=('108303925eeeabb71b9399c1b8f69c6e')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 129440, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-17 19:15:38 UTC (rev 129441)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.1.0
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.sourceforge.net";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
+md5sums=('3e8c77680278005d8e6c5d34f0d19c57')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0

[arch-commits] Commit in gmic/repos (4 files)

2015-02-13 Thread Sergej Pupykin
Date: Friday, February 13, 2015 @ 12:54:44
  Author: spupykin
Revision: 127653

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 127652, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 127652, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-13 11:54:24 UTC (rev 127652)
+++ community-i686/PKGBUILD 2015-02-13 11:54:44 UTC (rev 127653)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.0.3
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.sourceforge.net";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
-md5sums=('937c3492a0b4bdfc01a7b7d148f55310')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 127652, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-13 11:54:44 UTC (rev 127653)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.0.4
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.sourceforge.net";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
+md5sums=('108303925eeeabb71b9399c1b8f69c6e')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2

[arch-commits] Commit in gmic/repos (4 files)

2014-12-23 Thread Sergej Pupykin
Date: Tuesday, December 23, 2014 @ 23:53:26
  Author: spupykin
Revision: 124485

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 124484, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 124484, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-23 22:53:08 UTC (rev 124484)
+++ community-i686/PKGBUILD 2014-12-23 22:53:26 UTC (rev 124485)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.0.2
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.sourceforge.net";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
-md5sums=('dda38aa3ba84c7f1f1ebe5137938a449')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 124484, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-23 22:53:26 UTC (rev 124485)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.0.3
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.sourceforge.net";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
+md5sums=('937c3492a0b4bdfc01a7b7d148f55310')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/

[arch-commits] Commit in gmic/repos (4 files)

2014-12-03 Thread Sergej Pupykin
Date: Wednesday, December 3, 2014 @ 12:48:47
  Author: spupykin
Revision: 123395

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 123394, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 123394, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-03 11:48:30 UTC (rev 123394)
+++ community-i686/PKGBUILD 2014-12-03 11:48:47 UTC (rev 123395)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.0.1
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.sourceforge.net";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
-md5sums=('39858b032636f6bf6e4026d5022d2dd5')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 123394, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-03 11:48:47 UTC (rev 123395)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.0.2
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.sourceforge.net";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
+md5sums=('dda38aa3ba84c7f1f1ebe5137938a449')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp

[arch-commits] Commit in gmic/repos (4 files)

2014-10-09 Thread Sergej Pupykin
Date: Thursday, October 9, 2014 @ 13:11:20
  Author: spupykin
Revision: 120436

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 120435, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 120435, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-09 11:11:05 UTC (rev 120435)
+++ community-i686/PKGBUILD 2014-10-09 11:11:20 UTC (rev 120436)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.6.0.0
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.sourceforge.net";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
-md5sums=('8c3d26967f4fe6be9332f7c481c2b84b')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 120435, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-09 11:11:20 UTC (rev 120436)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.0.1
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.sourceforge.net";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
+md5sums=('39858b032636f6bf6e4026d5022d2dd5')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2

[arch-commits] Commit in gmic/repos (4 files)

2014-08-21 Thread Sergej Pupykin
Date: Thursday, August 21, 2014 @ 13:12:21
  Author: spupykin
Revision: 117707

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 117706, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 117706, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-08-21 11:12:05 UTC (rev 117706)
+++ community-i686/PKGBUILD 2014-08-21 11:12:21 UTC (rev 117707)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.5.9.3
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.sourceforge.net";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
-md5sums=('071cf1d7926f8e953da32f2f2cfa949b')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 117706, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-08-21 11:12:21 UTC (rev 117707)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.0.0
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.sourceforge.net";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
+md5sums=('8c3d26967f4fe6be9332f7c481c2b84b')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2

[arch-commits] Commit in gmic/repos (4 files)

2014-07-29 Thread Sergej Pupykin
Date: Tuesday, July 29, 2014 @ 13:58:32
  Author: spupykin
Revision: 116541

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 116540, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 116540, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-29 11:58:10 UTC (rev 116540)
+++ community-i686/PKGBUILD 2014-07-29 11:58:32 UTC (rev 116541)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.5.9.2
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.sourceforge.net";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
-md5sums=('5cdd5d4aeedcb7943c32104d1adfb682')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 116540, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-29 11:58:32 UTC (rev 116541)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.5.9.3
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.sourceforge.net";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
+md5sums=('071cf1d7926f8e953da32f2f2cfa949b')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/

[arch-commits] Commit in gmic/repos (4 files)

2014-06-16 Thread Sergej Pupykin
Date: Monday, June 16, 2014 @ 12:29:35
  Author: spupykin
Revision: 113204

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 113203, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 113203, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-06-16 10:29:21 UTC (rev 113203)
+++ community-i686/PKGBUILD 2014-06-16 10:29:35 UTC (rev 113204)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.5.9.1
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.sourceforge.net";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
-md5sums=('1bf0cb013b6d363d413e70649515')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 113203, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-06-16 10:29:35 UTC (rev 113204)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.5.9.2
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.sourceforge.net";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
+md5sums=('5cdd5d4aeedcb7943c32104d1adfb682')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/p

[arch-commits] Commit in gmic/repos (4 files)

2014-06-05 Thread Sergej Pupykin
Date: Thursday, June 5, 2014 @ 16:18:22
  Author: spupykin
Revision: 112721

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 112720, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 112720, gmic/trunk/PKGBUILD)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   60 --
 community-x86_64/PKGBUILD |   60 --
 3 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-06-05 14:18:05 UTC (rev 112720)
+++ community-i686/PKGBUILD 2014-06-05 14:18:22 UTC (rev 112721)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.5.9.0
-pkgrel=3
-arch=("i686" "x86_64")
-url="http://gmic.sourceforge.net";
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
-md5sums=('b5b64887b48843e47641ebcf146f5ec7')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 112720, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-06-05 14:18:22 UTC (rev 112721)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.5.9.1
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.sourceforge.net";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
+md5sums=('1bf0cb013b6d363d413e70649515')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/

[arch-commits] Commit in gmic/repos (4 files)

2014-05-16 Thread Sergej Pupykin
Date: Friday, May 16, 2014 @ 17:52:21
  Author: spupykin
Revision: 111325

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

Added:
  gmic/repos/community-staging-i686/
  gmic/repos/community-staging-i686/PKGBUILD
(from rev 111324, gmic/trunk/PKGBUILD)
  gmic/repos/community-staging-x86_64/
  gmic/repos/community-staging-x86_64/PKGBUILD
(from rev 111324, gmic/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   60 
 community-staging-x86_64/PKGBUILD |   60 
 2 files changed, 120 insertions(+)

Copied: gmic/repos/community-staging-i686/PKGBUILD (from rev 111324, 
gmic/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-05-16 15:52:21 UTC (rev 111325)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.5.9.0
+pkgrel=3
+arch=("i686" "x86_64")
+url="http://gmic.sourceforge.net";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
+md5sums=('b5b64887b48843e47641ebcf146f5ec7')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: gmic/repos/community-staging-x86_64/PKGBUILD (from rev 111324, 
gmic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-05-16 15:52:21 UTC (rev 111325)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.5.9.0
+pkgrel=3
+arch=("i686" "x86_64")
+url="http://gmic.sourceforge.net";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";)
+md5sums=('b5b64887b48843e47641ebcf146f5ec7')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-