[arch-commits] Commit in cuneiform/repos (3 files)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Monday, December 4, 2017 @ 07:58:56
  Author: arojas
Revision: 272088

archrelease: copy trunk to community-staging-x86_64

Added:
  cuneiform/repos/community-staging-x86_64/
  cuneiform/repos/community-staging-x86_64/PKGBUILD
(from rev 272087, cuneiform/trunk/PKGBUILD)
  cuneiform/repos/community-staging-x86_64/build-fix.patch
(from rev 272087, cuneiform/trunk/build-fix.patch)

-+
 PKGBUILD|   52 +++
 build-fix.patch |  104 ++
 2 files changed, 156 insertions(+)

Copied: cuneiform/repos/community-staging-x86_64/PKGBUILD (from rev 272087, 
cuneiform/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-04 07:58:56 UTC (rev 272088)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Maxim Vuets 
+
+pkgname=cuneiform
+pkgver=1.1.0
+_dpkgver=1.1
+pkgrel=18
+pkgdesc="Linux port of an OCR system developed in Russia. Supports more than 
20 languages."
+arch=('x86_64')
+url="https://launchpad.net/cuneiform-linux;
+license=('BSD')
+depends=('libmagick6')
+makedepends=('cmake')
+source=(https://launchpad.net/cuneiform-linux/${_dpkgver}/${_dpkgver}/+download/cuneiform-linux-${pkgver}.tar.bz2
+   build-fix.patch)
+sha256sums=('577e0d054de72086c33b4e8ae15033657776509b9a7af6eb272888eefcbdbbad'
+'3d9f4d923ec6ca550819096b7d66e364a8aeb74a9d1f0d961784d267642b')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-linux-${pkgver}"
+  sed -i 's#lib64#lib#' install_files.cmake
+  patch -p1 -i "$srcdir"/build-fix.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-linux-${pkgver}"
+  mkdir -p builddir
+  cd builddir
+
+  LMAGICK=`ls -1 /usr/lib/libMagick++*.so.?`
+
+  cmake \
+   -DCMAKE_BUILD_TYPE=release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DImageMagick_Magick++_LIBRARY=$LMAGICK \
+   -DImageMagick_Magick++_INCLUDE_DIR=/usr/include/ImageMagick-6 \
+   ..
+  make
+}
+
+check() {
+  ldd "${srcdir}/${pkgname}-linux-${pkgver}/builddir/cuneiform" | grep Magick 
>/dev/null
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-linux-${pkgver}"/builddir
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 
"${srcdir}/${pkgname}-linux-${pkgver}/cuneiform_src/Kern/license.txt" \
+"${pkgdir}/usr/share/licenses/cuneiform/license.txt"
+}

Copied: cuneiform/repos/community-staging-x86_64/build-fix.patch (from rev 
272087, cuneiform/trunk/build-fix.patch)
===
--- community-staging-x86_64/build-fix.patch(rev 0)
+++ community-staging-x86_64/build-fix.patch2017-12-04 07:58:56 UTC (rev 
272088)
@@ -0,0 +1,104 @@
+--- cuneiform-1.1.0/cuneiform_src/Kern/hhh/tigerh/h/strings.h  2017-11-30 
11:25:24.409125695 +0700
 cuneiform-1.1.0-char/cuneiform_src/Kern/hhh/tigerh/h/strings.h 
2017-11-30 12:09:26.033501963 +0700
+@@ -80,6 +80,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ 
+ # include "ltconfig.h"
+ # include "c_types.h"
++# include "cttypes.h"
+ 
+ struct _String;
+ typedef struct _String STRING;
+--- cuneiform-linux-1.1.0/cuneiform_src/Kern/include/utf8-tables.h 
2011-04-19 16:49:57.0 +0400
 cuneiform-linux-1.1.0.q/cuneiform_src/Kern/include/utf8-tables.h   
2017-07-05 16:35:34.338871445 +0300
+@@ -68,7 +68,7 @@
+ #endif
+ 
+ 
+-const char win1250_to_utf8[][4] = {
++const unsigned char win1250_to_utf8[][4] = {
+   {0, 0, 0, 0},
+   {1, 0, 0, 0},
+   {2, 0, 0, 0},
+@@ -328,7 +328,7 @@
+ };
+ 
+ 
+-const char win1251_to_utf8[][4] = {
++const unsigned char win1251_to_utf8[][4] = {
+   {0, 0, 0, 0},
+   {1, 0, 0, 0},
+   {2, 0, 0, 0},
+@@ -587,7 +587,7 @@
+   {209, 143, 0, 0},
+ };
+ 
+-const char win1252_to_utf8[][4] = {
++const unsigned char win1252_to_utf8[][4] = {
+   {0, 0, 0, 0},
+   {1, 0, 0, 0},
+   {2, 0, 0, 0},
+@@ -847,7 +847,7 @@
+ };
+ 
+ 
+-const char win1254_to_utf8[][4] = {
++const unsigned char win1254_to_utf8[][4] = {
+   {0, 0, 0, 0},
+   {1, 0, 0, 0},
+   {2, 0, 0, 0},
+@@ -1107,7 +1107,7 @@
+ };
+ 
+ 
+-const char win1257_to_utf8[][4] = {
++const unsigned char win1257_to_utf8[][4] = {
+   {0, 0, 0, 0},
+   {1, 0, 0, 0},
+   {2, 0, 0, 0},
+diff -wbBur 
cuneiform-linux-1.1.0/cuneiform_src/Kern/rfrmt/sources/main/stdafx.h 
cuneiform-linux-1.1.0.q/cuneiform_src/Kern/rfrmt/sources/main/stdafx.h
+--- cuneiform-linux-1.1.0/cuneiform_src/Kern/rfrmt/sources/main/stdafx.h   
2011-04-19 16:49:57.0 +0400
 cuneiform-linux-1.1.0.q/cuneiform_src/Kern/rfrmt/sources/main/stdafx.h 
2017-07-05 16:37:23.528866265 +0300
+@@ -74,6 +74,9 @@
+ //отключаем warning о слишком длинных stl'ных именах
+ #pragma warning(disable:4786)
+ 
++#undef min
++#undef max
++
+ #include 
+ typedef std::vector vectorWord;
+ 
+diff -wbBur 

[arch-commits] Commit in cuneiform/trunk (PKGBUILD build-fix.patch)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Monday, December 4, 2017 @ 07:58:29
  Author: arojas
Revision: 272087

Rebuild with libmagick6

Modified:
  cuneiform/trunk/PKGBUILD
  cuneiform/trunk/build-fix.patch

-+
 PKGBUILD|6 +++---
 build-fix.patch |   11 ++-
 2 files changed, 13 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-04 07:38:58 UTC (rev 272086)
+++ PKGBUILD2017-12-04 07:58:29 UTC (rev 272087)
@@ -5,17 +5,17 @@
 pkgname=cuneiform
 pkgver=1.1.0
 _dpkgver=1.1
-pkgrel=17
+pkgrel=18
 pkgdesc="Linux port of an OCR system developed in Russia. Supports more than 
20 languages."
 arch=('x86_64')
 url="https://launchpad.net/cuneiform-linux;
 license=('BSD')
-depends=('imagemagick')
+depends=('libmagick6')
 makedepends=('cmake')
 
source=(https://launchpad.net/cuneiform-linux/${_dpkgver}/${_dpkgver}/+download/cuneiform-linux-${pkgver}.tar.bz2
build-fix.patch)
 sha256sums=('577e0d054de72086c33b4e8ae15033657776509b9a7af6eb272888eefcbdbbad'
-'d2f746f91c79af8cf15ea1877f39881e3d16d7b15ef99b3106c3c2493acd95a5')
+'3d9f4d923ec6ca550819096b7d66e364a8aeb74a9d1f0d961784d267642b')
 
 prepare() {
   cd "${srcdir}/${pkgname}-linux-${pkgver}"

Modified: build-fix.patch
===
--- build-fix.patch 2017-12-04 07:38:58 UTC (rev 272086)
+++ build-fix.patch 2017-12-04 07:58:29 UTC (rev 272087)
@@ -1,4 +1,13 @@
-diff -wbBur cuneiform-linux-1.1.0/cuneiform_src/Kern/include/utf8-tables.h 
cuneiform-linux-1.1.0.q/cuneiform_src/Kern/include/utf8-tables.h
+--- cuneiform-1.1.0/cuneiform_src/Kern/hhh/tigerh/h/strings.h  2017-11-30 
11:25:24.409125695 +0700
 cuneiform-1.1.0-char/cuneiform_src/Kern/hhh/tigerh/h/strings.h 
2017-11-30 12:09:26.033501963 +0700
+@@ -80,6 +80,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ 
+ # include "ltconfig.h"
+ # include "c_types.h"
++# include "cttypes.h"
+ 
+ struct _String;
+ typedef struct _String STRING;
 --- cuneiform-linux-1.1.0/cuneiform_src/Kern/include/utf8-tables.h 
2011-04-19 16:49:57.0 +0400
 +++ cuneiform-linux-1.1.0.q/cuneiform_src/Kern/include/utf8-tables.h   
2017-07-05 16:35:34.338871445 +0300
 @@ -68,7 +68,7 @@


[arch-commits] Commit in converseen/repos (2 files)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Monday, December 4, 2017 @ 07:38:58
  Author: arojas
Revision: 272086

archrelease: copy trunk to community-staging-x86_64

Added:
  converseen/repos/community-staging-x86_64/
  converseen/repos/community-staging-x86_64/PKGBUILD
(from rev 272085, converseen/trunk/PKGBUILD)

--+
 PKGBUILD |   30 ++
 1 file changed, 30 insertions(+)

Copied: converseen/repos/community-staging-x86_64/PKGBUILD (from rev 272085, 
converseen/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-04 07:38:58 UTC (rev 272086)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: archtux 
+
+pkgname=converseen
+pkgver=0.9.6.2
+pkgrel=3
+pkgdesc="The batch image converter and resizer"
+arch=('x86_64')
+url="http://converseen.fasterland.net/;
+license=('GPL3')
+depends=('imagemagick' 'qt5-base' 'libwmf' 'openexr' 'libwebp' 'openjpeg2' 
'librsvg' 'ghostscript')
+makedepends=('cmake' 'qt5-tools')
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('9e3cda17348c66446841c40b462c0b09')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DCMAKE_INSTALL_PREFIX=/usr 
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in converseen/trunk (PKGBUILD)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Monday, December 4, 2017 @ 07:38:14
  Author: arojas
Revision: 272085

Rebuild with imagemagick 7

Modified:
  converseen/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-04 07:36:01 UTC (rev 272084)
+++ PKGBUILD2017-12-04 07:38:14 UTC (rev 272085)
@@ -4,7 +4,7 @@
 
 pkgname=converseen
 pkgver=0.9.6.2
-pkgrel=2
+pkgrel=3
 pkgdesc="The batch image converter and resizer"
 arch=('x86_64')
 url="http://converseen.fasterland.net/;


[arch-commits] Commit in redis/repos/community-testing-x86_64 (14 files)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Monday, December 4, 2017 @ 07:36:01
  Author: arojas
Revision: 272084

archrelease: copy trunk to community-testing-x86_64

Added:
  redis/repos/community-testing-x86_64/PKGBUILD
(from rev 272083, redis/trunk/PKGBUILD)
  redis/repos/community-testing-x86_64/redis-2.8.11-use-system-jemalloc.patch
(from rev 272083, redis/trunk/redis-2.8.11-use-system-jemalloc.patch)
  redis/repos/community-testing-x86_64/redis.conf-sane-defaults.patch
(from rev 272083, redis/trunk/redis.conf-sane-defaults.patch)
  redis/repos/community-testing-x86_64/redis.logrotate
(from rev 272083, redis/trunk/redis.logrotate)
  redis/repos/community-testing-x86_64/redis.service
(from rev 272083, redis/trunk/redis.service)
  redis/repos/community-testing-x86_64/redis.sysusers
(from rev 272083, redis/trunk/redis.sysusers)
  redis/repos/community-testing-x86_64/redis.tmpfiles
(from rev 272083, redis/trunk/redis.tmpfiles)
Deleted:
  redis/repos/community-testing-x86_64/PKGBUILD
  redis/repos/community-testing-x86_64/redis-2.8.11-use-system-jemalloc.patch
  redis/repos/community-testing-x86_64/redis.conf-sane-defaults.patch
  redis/repos/community-testing-x86_64/redis.logrotate
  redis/repos/community-testing-x86_64/redis.service
  redis/repos/community-testing-x86_64/redis.sysusers
  redis/repos/community-testing-x86_64/redis.tmpfiles

+
 PKGBUILD   |  110 +++
 redis-2.8.11-use-system-jemalloc.patch |   30 
 redis.conf-sane-defaults.patch |   24 +++---
 redis.logrotate|   10 +-
 redis.service  |   44 ++--
 redis.sysusers |2 
 redis.tmpfiles |2 
 7 files changed, 111 insertions(+), 111 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-04 07:35:32 UTC (rev 272083)
+++ PKGBUILD2017-12-04 07:36:01 UTC (rev 272084)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer:  Sergej Pupykin 
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Jan-Erik Rediger 
-# Contributor: nofxx 
-
-pkgname=redis
-pkgver=4.0.4
-pkgrel=1
-pkgdesc='Advanced key-value store'
-arch=('x86_64')
-url='http://redis.io/'
-license=('BSD')
-depends=('jemalloc' 'grep' 'shadow')
-backup=('etc/redis.conf'
-'etc/logrotate.d/redis')
-source=(http://download.redis.io/releases/redis-$pkgver.tar.gz
-redis.service redis.sysusers redis.tmpfiles
-redis.logrotate
-redis.conf-sane-defaults.patch
-redis-2.8.11-use-system-jemalloc.patch)
-sha256sums=('35768145335e874b1b810e23494ad3daa6f442c3dc1d7e3784992ba50799c0cd'
-'cceff2a097d9041a0c73caeb5c33e849af783c6a12db866f24b8417ac3ac9d11'
-'78f6ab83408956a9afaf28689128f382545c901f172cd5b670724c73f6896d5d'
-'09dcc8522899dc3d1e9362989aa4acb5a3996d700b9a44f22ebb5b9667b88183'
-'8b4c2caabb4f54157ad91ca472423112b1803685ad18ed11b60463d78494df13'
-'22cd3b9f7e9b17647a615d009b50603e7978b0af26c3e2c53560e57573b996ed'
-'9720468ede366893c32f34616c6d8670e790309757ae0abc0f49402089a7a672')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i ../redis.conf-sane-defaults.patch
-  patch -p1 -i ../redis-2.8.11-use-system-jemalloc.patch
-}
-
-build() {
-  make -C $pkgname-$pkgver
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make PREFIX="$pkgdir"/usr install
-
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/redis/LICENSE
-  install -Dm644 redis.conf "$pkgdir"/etc/redis.conf
-  install -Dm644 ../redis.service 
"$pkgdir"/usr/lib/systemd/system/redis.service
-
-  # files kept for compatibility with installations made before 2.8.13-2
-  install -Dm644 ../redis.logrotate "$pkgdir"/etc/logrotate.d/redis
-
-  ln -sf redis-server "$pkgdir"/usr/bin/redis-sentinel
-
-  install -Dm644 "$srcdir"/redis.sysusers 
"$pkgdir"/usr/lib/sysusers.d/redis.conf
-  install -Dm644 "$srcdir"/redis.tmpfiles 
"$pkgdir"/usr/lib/tmpfiles.d/redis.conf
-}

Copied: redis/repos/community-testing-x86_64/PKGBUILD (from rev 272083, 
redis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-04 07:36:01 UTC (rev 272084)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer:  Sergej Pupykin 
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Jan-Erik Rediger 
+# Contributor: nofxx 
+
+pkgname=redis
+pkgver=4.0.5
+pkgrel=1
+pkgdesc='Advanced key-value store'
+arch=('x86_64')
+url='http://redis.io/'
+license=('BSD')
+depends=('jemalloc' 'grep' 'shadow')
+backup=('etc/redis.conf'
+'etc/logrotate.d/redis')
+source=(http://download.redis.io/releases/redis-$pkgver.tar.gz
+redis.service redis.sysusers redis.tmpfiles
+redis.logrotate
+

[arch-commits] Commit in redis/trunk (PKGBUILD)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Monday, December 4, 2017 @ 07:35:32
  Author: arojas
Revision: 272083

Update to 4.0.5

Modified:
  redis/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-04 07:05:54 UTC (rev 272082)
+++ PKGBUILD2017-12-04 07:35:32 UTC (rev 272083)
@@ -5,7 +5,7 @@
 # Contributor: nofxx 
 
 pkgname=redis
-pkgver=4.0.4
+pkgver=4.0.5
 pkgrel=1
 pkgdesc='Advanced key-value store'
 arch=('x86_64')
@@ -19,7 +19,7 @@
 redis.logrotate
 redis.conf-sane-defaults.patch
 redis-2.8.11-use-system-jemalloc.patch)
-sha256sums=('35768145335e874b1b810e23494ad3daa6f442c3dc1d7e3784992ba50799c0cd'
+sha256sums=('d52bf355b96e20905916482962235e0442634c849934adb034f85362b31ed978'
 'cceff2a097d9041a0c73caeb5c33e849af783c6a12db866f24b8417ac3ac9d11'
 '78f6ab83408956a9afaf28689128f382545c901f172cd5b670724c73f6896d5d'
 '09dcc8522899dc3d1e9362989aa4acb5a3996d700b9a44f22ebb5b9667b88183'


[arch-commits] Commit in xine-lib/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Monday, December 4, 2017 @ 07:26:19
  Author: arojas
Revision: 311607

archrelease: copy trunk to staging-x86_64

Added:
  xine-lib/repos/staging-x86_64/
  xine-lib/repos/staging-x86_64/PKGBUILD
(from rev 311606, xine-lib/trunk/PKGBUILD)

--+
 PKGBUILD |   48 
 1 file changed, 48 insertions(+)

Copied: xine-lib/repos/staging-x86_64/PKGBUILD (from rev 311606, 
xine-lib/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-04 07:26:19 UTC (rev 311607)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=xine-lib
+pkgver=1.2.8
+pkgrel=5
+pkgdesc="A multimedia playback engine"
+arch=('x86_64')
+url="http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'libmagick6' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 'libdvdnav'
+ 'libmpcdec' 'libcaca' 'libbluray' 'libvdpau' 'glu' 'gdk-pixbuf2')
+optdepends=('libmagick6: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libdvdnav: for using the dvd plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'libvdpau: for using the VDPAU plugin' \
+'smbclient: for using the samba plugin' \
+'gdk-pixbuf2: for using the gdk-pixbuf plugin')
+source=(https://xine-lib.alioth.debian.org/releases/xine-lib-$pkgver.tar.xz)
+sha1sums=('f20115ddfced42d51feb159393607b17e6f2bdc1')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  PKG_CONFIG_PATH="/usr/lib/imagemagick6/pkgconfig" \
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--with-external-dvdnav \
+--disable-optimizations 
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in xine-lib/trunk (PKGBUILD)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Monday, December 4, 2017 @ 07:25:43
  Author: arojas
Revision: 311606

Rebuild with libmagick6

Modified:
  xine-lib/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-04 06:53:29 UTC (rev 311605)
+++ PKGBUILD2017-12-04 07:25:43 UTC (rev 311606)
@@ -3,16 +3,16 @@
 
 pkgname=xine-lib
 pkgver=1.2.8
-pkgrel=4
+pkgrel=5
 pkgdesc="A multimedia playback engine"
 arch=('x86_64')
 url="http://www.xine-project.org;
 license=('LGPL' 'GPL')
 depends=('libxvmc' 'ffmpeg' 'libxinerama')
-makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+makedepends=('wavpack' 'faad2' 'libmng' 'libmagick6' 'mesa' 'libmodplug'
  'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 'libdvdnav'
  'libmpcdec' 'libcaca' 'libbluray' 'libvdpau' 'glu' 'gdk-pixbuf2')
-optdepends=('imagemagick: for using the imagemagick plugin' \
+optdepends=('libmagick6: for using the imagemagick plugin' \
 'jack: for using the jack plugin' \
 'vcdimager: for using the vcd plugin' \
 'glu: for using the opengl plugin' \
@@ -36,6 +36,7 @@
 
 build() {
   cd ${pkgname}-${pkgver}
+  PKG_CONFIG_PATH="/usr/lib/imagemagick6/pkgconfig" \
   ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--with-external-dvdnav \
 --disable-optimizations 
   make


[arch-commits] Commit in pandoc-crossref/repos (2 files)

2017-12-03 Thread Felix Yan via arch-commits
Date: Monday, December 4, 2017 @ 06:58:43
  Author: felixonmars
Revision: 272078

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 272077, pandoc-crossref/trunk/PKGBUILD)

--+
 PKGBUILD |   46 ++
 1 file changed, 46 insertions(+)

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
272077, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-04 06:58:43 UTC (rev 272078)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.0.0beta3a
+pkgrel=18
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-file-embed' 
'haskell-mtl'
+ 'haskell-open-browser' 'haskell-optparse-applicative' 'pandoc' 
'haskell-pandoc-types'
+ 'haskell-roman-numerals' 'haskell-syb' 'haskell-text' 
'haskell-utility-ht')
+makedepends=('ghc')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v0.3.0.0-beta3a.tar.gz;)
+sha512sums=('02f8762320465bf11dcb10e5182d978f3d5a37527480373c96fb6dc8c4651708d68c92b5ad857271a106c109aeaf87fad87b39125f8c9130e5401e2744e8d95b')
+
+prepare() {
+mv $pkgname-{0.3.0.0-beta3a,$pkgver}
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}


[arch-commits] Commit in pandoc-crossref/trunk (PKGBUILD)

2017-12-03 Thread Felix Yan via arch-commits
Date: Monday, December 4, 2017 @ 06:58:21
  Author: felixonmars
Revision: 272077

upgpkg: pandoc-crossref 0.3.0.0beta3a-18

rebuild with pandoc,2.0.4

Modified:
  pandoc-crossref/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-04 06:57:17 UTC (rev 272076)
+++ PKGBUILD2017-12-04 06:58:21 UTC (rev 272077)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.0.0beta3a
-pkgrel=17
+pkgrel=18
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


[arch-commits] Commit in haskell-hakyll/repos (2 files)

2017-12-03 Thread Felix Yan via arch-commits
Date: Monday, December 4, 2017 @ 06:57:17
  Author: felixonmars
Revision: 272076

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hakyll/repos/community-staging-x86_64/
  haskell-hakyll/repos/community-staging-x86_64/PKGBUILD
(from rev 272075, haskell-hakyll/trunk/PKGBUILD)

--+
 PKGBUILD |   58 ++
 1 file changed, 58 insertions(+)

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
272075, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-04 06:57:17 UTC (rev 272076)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.8.0
+pkgrel=95
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "pandoc" "pandoc-citeproc" 
"haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-app-static" "haskell-warp" "haskell-yaml")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
+
https://github.com/rlpowell/hakyll/commit/5c26faf2d867d9c644f8110f2c9bd6bd8c32986a.patch)
+sha512sums=('933645964113bbdf898366aedd11c6f26035e633b66fb01206258264a3b8857e08ea919f3284b6dfef28c32e6dc2bdd21ee85ed5e1c4c184423dfdc4a487'
+
'06c71fe3e99315c969b694020457af585124179bcc5b62afafafaf179132d88ac23d375ba948984565deab936f378cd6351e19b798125c010bde873c704d15ef')
+
+prepare() {
+cd $_hkgname-$pkgver
+patch -p1 -i ../5c26faf2d867d9c644f8110f2c9bd6bd8c32986a.patch
+sed -e 's/pandoc-citeproc  >= 0.10.5 && < 0.11,/pandoc-citeproc  
>= 0.10.5,/' \
+-e 's/process  >= 1.0&& < 1.6,/process  >= 
1.0,/' \
+-e 's/time >= 1.4&& < 1.8,/time >= 
1.4,/' \
+-i $_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in haskell-hakyll/trunk (PKGBUILD)

2017-12-03 Thread Felix Yan via arch-commits
Date: Monday, December 4, 2017 @ 06:56:56
  Author: felixonmars
Revision: 272075

upgpkg: haskell-hakyll 4.9.8.0-95

rebuild with pandoc,2.0.4

Modified:
  haskell-hakyll/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-04 06:54:51 UTC (rev 272074)
+++ PKGBUILD2017-12-04 06:56:56 UTC (rev 272075)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.9.8.0
-pkgrel=94
+pkgrel=95
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


[arch-commits] Commit in pandoc-citeproc/repos (2 files)

2017-12-03 Thread Felix Yan via arch-commits
Date: Monday, December 4, 2017 @ 06:54:51
  Author: felixonmars
Revision: 272074

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc-citeproc/repos/community-staging-x86_64/
  pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD
(from rev 272073, pandoc-citeproc/trunk/PKGBUILD)

--+
 PKGBUILD |   45 +
 1 file changed, 45 insertions(+)

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
272073, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-04 06:54:51 UTC (rev 272074)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.12.1
+pkgrel=20
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec" "haskell-data-default"
+ "haskell-hs-bibutils" "haskell-mtl" "haskell-old-locale" "pandoc" 
"haskell-pandoc-types"
+ "haskell-parsec" "haskell-rfc5051" "haskell-setenv" "haskell-split" 
"haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"haskell-text-icu"
+ "haskell-unordered-containers" "haskell-vector" "haskell-xml-conduit" 
"haskell-yaml")
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz;)
+sha512sums=('74ab07cc8a62523079195c6b9e2283b992ef496782d58c9e4ee84f4343f6d69f1f4229eab27b594c5bf0d52536976fb42f1c9848d034dff7034d27d334492b06')
+
+build() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/$pkgname.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/$pkgname.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/$pkgname/LICENSE"
+}


[arch-commits] Commit in pandoc-citeproc/trunk (PKGBUILD)

2017-12-03 Thread Felix Yan via arch-commits
Date: Monday, December 4, 2017 @ 06:54:30
  Author: felixonmars
Revision: 272073

upgpkg: pandoc-citeproc 0.12.1-20

rebuild with pandoc,2.0.4

Modified:
  pandoc-citeproc/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-04 06:52:09 UTC (rev 272072)
+++ PKGBUILD2017-12-04 06:54:30 UTC (rev 272073)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.12.1
-pkgrel=19
+pkgrel=20
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("custom:BSD3")


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

2017-12-03 Thread Gaëtan Bisson via arch-commits
Date: Monday, December 4, 2017 @ 06:53:29
  Author: bisson
Revision: 311605

archrelease: copy trunk to staging-x86_64

Added:
  inkscape/repos/staging-x86_64/
  inkscape/repos/staging-x86_64/PKGBUILD
(from rev 311604, inkscape/trunk/PKGBUILD)
  inkscape/repos/staging-x86_64/PKGBUILD.cmake
(from rev 311604, inkscape/trunk/PKGBUILD.cmake)
  inkscape/repos/staging-x86_64/poppler-0.58.patch
(from rev 311604, inkscape/trunk/poppler-0.58.patch)

+
 PKGBUILD   |   66 ++
 PKGBUILD.cmake |   61 ++
 poppler-0.58.patch | 1430 +++
 3 files changed, 1557 insertions(+)

Copied: inkscape/repos/staging-x86_64/PKGBUILD (from rev 311604, 
inkscape/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-04 06:53:29 UTC (rev 311605)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Kieslich 
+# Contributor: tobias 
+
+pkgname=inkscape
+pkgver=0.92.2
+pkgrel=7
+pkgdesc='Professional vector graphics editor'
+url='https://inkscape.org/'
+license=('GPL' 'LGPL')
+arch=('x86_64')
+depends=('gc' 'gsl' 'gtkmm' 'gtkspell' 'libmagick6' 'libxslt' 'poppler-glib'
+ 'popt' 'potrace' 'ttf-dejavu' 'python2' 'libcdr'
+ 'desktop-file-utils' 'hicolor-icon-theme')
+# python is needed for glib-genmarshal (at least with GLib 2.54)
+makedepends=('boost' 'intltool' 'python')
+optdepends=('gvfs: import clip art'
+'pstoedit: latex formulas'
+'python2-scour: optimized SVG output'
+'texlive-core: latex formulas'
+'python2-numpy: some extensions'
+'python2-lxml: some extensions and filters'
+'uniconvertor: reading/writing to some proprietary formats')
+source=("https://media.inkscape.org/dl/resources/file/${pkgname}-${pkgver}.tar.bz2;
+poppler-0.58.patch)
+sha256sums=('a628d0e04c254e9840947e6d866974f92c68ae31631a38b94d9b65e5cd84cfd3'
+'0505f49cf69ad51159cda5aa5f497f001fe9d10f34d59e6ad704a1b1e1dc50c1')
+
+# NB: Some CDN nodes appear to be distributing an outdated version of this 
file.
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   # 
https://gitlab.com/inkscape/inkscape/commit/93ccf03162cd2e46d962822d5507865f3451168c
+   patch -Np1 -i ../poppler-0.58.patch
+
+   ./autogen.sh
+
+   sed -i 's|/usr/bin/python\>|/usr/bin/python2|g' cxxtest/*.py
+   sed -i 's|/usr/bin/env python\>|/usr/bin/env python2|g' 
share/*/{test/,}*.py
+   sed -i 's|"python" },|"python2" },|g' 
src/extension/implementation/script.cpp
+   sed -i 's|python -c|python2 -c|g' configure share/extensions/uniconv*.py
+   sed -i 's|"python"|"python2"|g' src/main.cpp
+
+   sed -i 's| abs(| std::fabs(|g' src/ui/tools/flood-tool.cpp
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export PKG_CONFIG_PATH="/usr/lib/imagemagick6/pkgconfig"
+
+   ./configure \
+   --prefix=/usr \
+   --with-python \
+   --with-perl \
+   --enable-lcms \
+   --enable-poppler-cairo \
+   --disable-strict-build \
+   --disable-dependency-tracking
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Copied: inkscape/repos/staging-x86_64/PKGBUILD.cmake (from rev 311604, 
inkscape/trunk/PKGBUILD.cmake)
===
--- staging-x86_64/PKGBUILD.cmake   (rev 0)
+++ staging-x86_64/PKGBUILD.cmake   2017-12-04 06:53:29 UTC (rev 311605)
@@ -0,0 +1,61 @@
+# $Id: PKGBUILD 305444 2017-09-13 20:29:19Z andyrtr $
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Kieslich 
+# Contributor: tobias 
+
+pkgname=inkscape
+pkgver=0.92.2
+pkgrel=3
+pkgdesc='Professional vector graphics editor'
+url='https://inkscape.org/'
+license=('GPL' 'LGPL')
+arch=('x86_64')
+makedepends=('boost' 'intltool' 'cmake')
+depends=('gc' 'gsl' 'gtkmm' 'gtkspell' 'imagemagick' 'libxslt' 'poppler-glib'
+ 'popt' 'potrace' 'ttf-dejavu' 'python' 'libcdr' 'libvisio' 'libwpg'
+ 'desktop-file-utils' 'hicolor-icon-theme')
+optdepends=('gvfs: import clip art'
+'pstoedit: latex formulas'
+'scour: optimized SVG output'
+'texlive-core: latex formulas'
+'python-numpy: some extensions'
+'python-lxml: some extensions and filters'
+'uniconvertor: reading/writing to some proprietary formats')
+source=("https://media.inkscape.org/dl/resources/file/${pkgname}-${pkgver}.tar.bz2;
+poppler-0.58.patch)
+sha256sums=('a628d0e04c254e9840947e6d866974f92c68ae31631a38b94d9b65e5cd84cfd3'
+

[arch-commits] Commit in inkscape/trunk (PKGBUILD)

2017-12-03 Thread Gaëtan Bisson via arch-commits
Date: Monday, December 4, 2017 @ 06:52:50
  Author: bisson
Revision: 311604

rebuild against libmagick6

Modified:
  inkscape/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 23:52:55 UTC (rev 311603)
+++ PKGBUILD2017-12-04 06:52:50 UTC (rev 311604)
@@ -5,12 +5,12 @@
 
 pkgname=inkscape
 pkgver=0.92.2
-pkgrel=6
+pkgrel=7
 pkgdesc='Professional vector graphics editor'
 url='https://inkscape.org/'
 license=('GPL' 'LGPL')
 arch=('x86_64')
-depends=('gc' 'gsl' 'gtkmm' 'gtkspell' 'imagemagick' 'libxslt' 'poppler-glib'
+depends=('gc' 'gsl' 'gtkmm' 'gtkspell' 'libmagick6' 'libxslt' 'poppler-glib'
  'popt' 'potrace' 'ttf-dejavu' 'python2' 'libcdr'
  'desktop-file-utils' 'hicolor-icon-theme')
 # python is needed for glib-genmarshal (at least with GLib 2.54)
@@ -47,6 +47,7 @@
 
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"
+   export PKG_CONFIG_PATH="/usr/lib/imagemagick6/pkgconfig"
 
./configure \
--prefix=/usr \


[arch-commits] Commit in pandoc/repos (2 files)

2017-12-03 Thread Felix Yan via arch-commits
Date: Monday, December 4, 2017 @ 06:52:09
  Author: felixonmars
Revision: 272072

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc/repos/community-staging-x86_64/
  pandoc/repos/community-staging-x86_64/PKGBUILD
(from rev 272071, pandoc/trunk/PKGBUILD)

--+
 PKGBUILD |   59 +++
 1 file changed, 59 insertions(+)

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 272071, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-04 06:52:09 UTC (rev 272072)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.0.4
+pkgrel=1
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-http" "haskell-juicypixels" "haskell-sha" 
"haskell-aeson"
+ "haskell-aeson-pretty" "haskell-base64-bytestring" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-case-insensitive" "haskell-cmark-gfm"
+ "haskell-data-default" "haskell-doctemplates" "haskell-glob" 
"haskell-mtl"
+ "haskell-haddock-library" "haskell-skylighting" "haskell-hslua" 
"haskell-hslua-module-text"
+ "haskell-http-client" "haskell-syb" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-safe" "haskell-split" "haskell-text" "haskell-texmath" 
"haskell-network"
+ "haskell-pandoc-types" "haskell-parsec" "haskell-random" 
"haskell-scientific"
+ "haskell-tagsoup" "haskell-temporary" "haskell-network-uri" 
"haskell-unordered-containers"
+ "haskell-zip-archive" "haskell-vector" "haskell-xml" "haskell-yaml" 
"haskell-zlib")
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-golden' 'haskell-quickcheck' 
'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('7de8f7995d57313c3bb1223b72deb131a433f6aa69e059964700b2bf96d3b3579a9e0125dc3fa7cdf5b504e3974aa9a9caad34dbbc4bec0089dadde1dbb9acb0')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-old-locale -fnetwork-uri -f-trypandoc -f-embed_data_files 
-f-weigh-pandoc -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+# TODO: find a way to run pandoc executable in tests with dynamic 
executable enabled
+# LD_PRELOAD=$(ls dist/build/libHSpandoc-*-ghc*.so)
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+}


[arch-commits] Commit in pandoc/trunk (PKGBUILD)

2017-12-03 Thread Felix Yan via arch-commits
Date: Monday, December 4, 2017 @ 06:51:46
  Author: felixonmars
Revision: 272071

upgpkg: pandoc 2.0.4-1

rebuild with pandoc,2.0.4

Modified:
  pandoc/trunk/PKGBUILD

--+
 PKGBUILD |   10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-04 06:47:42 UTC (rev 272070)
+++ PKGBUILD2017-12-04 06:51:46 UTC (rev 272071)
@@ -3,8 +3,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=pandoc
-pkgver=2.0.3
-pkgrel=7
+pkgver=2.0.4
+pkgrel=1
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")
@@ -27,12 +27,8 @@
 makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
  'haskell-tasty-golden' 'haskell-quickcheck' 
'haskell-executable-path')
 
source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('92efa19141991d0737f0cda8ca09a812286bd7126e95d295e7c0d8b7b14e0be85a842f12756d0608765d2135f0ced2e786f2ffa8295d68e4b1fc52447336841d')
+sha512sums=('7de8f7995d57313c3bb1223b72deb131a433f6aa69e059964700b2bf96d3b3579a9e0125dc3fa7cdf5b504e3974aa9a9caad34dbbc4bec0089dadde1dbb9acb0')
 
-prepare() {
-sed -i 's/tasty-hunit >= 0.9 && < 0.10,/tasty-hunit >= 0.9,/' 
$pkgname-$pkgver/$pkgname.cabal
-}
-
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"
 


[arch-commits] Commit in jenkins/repos/community-any (14 files)

2017-12-03 Thread Felix Yan via arch-commits
Date: Monday, December 4, 2017 @ 06:47:42
  Author: felixonmars
Revision: 272070

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 272069, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 272069, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 272069, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 272069, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 272069, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.sysusers
(from rev 272069, jenkins/trunk/jenkins.sysusers)
  jenkins/repos/community-any/jenkins.tmpfiles
(from rev 272069, jenkins/trunk/jenkins.tmpfiles)
Deleted:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.sysusers
  jenkins/repos/community-any/jenkins.tmpfiles

--+
 LICENSE  |   46 +--
 PKGBUILD |   90 ++---
 jenkins.conf |   26 +++
 jenkins.install  |   14 
 jenkins.service  |   48 ++--
 jenkins.sysusers |4 +-
 jenkins.tmpfiles |2 -
 7 files changed, 115 insertions(+), 115 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2017-12-04 06:46:53 UTC (rev 272069)
+++ LICENSE 2017-12-04 06:47:42 UTC (rev 272070)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-

Copied: jenkins/repos/community-any/LICENSE (from rev 272069, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2017-12-04 06:47:42 UTC (rev 272070)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-04 06:46:53 UTC (rev 272069)
+++ PKGBUILD2017-12-04 06:47:42 UTC (rev 272070)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=2.92
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='https://jenkins.io'
-license=('MIT')
-depends=('java-runtime>=8' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')

[arch-commits] Commit in jenkins/trunk (PKGBUILD)

2017-12-03 Thread Felix Yan via arch-commits
Date: Monday, December 4, 2017 @ 06:46:53
  Author: felixonmars
Revision: 272069

upgpkg: jenkins 2.93-1

Modified:
  jenkins/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-04 06:43:05 UTC (rev 272068)
+++ PKGBUILD2017-12-04 06:46:53 UTC (rev 272069)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=2.92
+pkgver=2.93
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -25,7 +25,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('25b76d04f4cb4d13e1d89c5efd597b7c029581fd5004d7625b2b07786a812285385eb6dfb0aa9b12df22daebcb6430a74634092f5dce552080f947ea7d98e942'
+sha512sums=('0f75252a939c8f378c04cfd63fc424e8c55a32240bbe8f8f8fd66dd0ce57b54eacc9ffd527c93b66a7e9155799a836b757ddcc2dc05c966953c8d119864a45ea'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'


[arch-commits] Commit in you-get/trunk (PKGBUILD)

2017-12-03 Thread Felix Yan via arch-commits
Date: Monday, December 4, 2017 @ 06:42:32
  Author: felixonmars
Revision: 272067

upgpkg: you-get 0.4.995-1

Modified:
  you-get/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-04 02:41:21 UTC (rev 272066)
+++ PKGBUILD2017-12-04 06:42:32 UTC (rev 272067)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=you-get
-pkgver=0.4.990
+pkgver=0.4.995
 pkgrel=1
 pkgdesc="A YouTube/Youku/Niconico video downloader written in Python 3."
 url="http://www.soimort.org/you-get/;
@@ -10,7 +10,7 @@
 license=('MIT')
 depends=('python-setuptools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/soimort/you-get/archive/v$pkgver.tar.gz;)
-sha512sums=('70cb78f7305cc68be600e960d8fcedb7bf682973799ae01dd855e2b931741beffba44135ff6fe1c01e356085531f8451b6126f8e3d0a3055a07f340b453ff6fc')
+sha512sums=('e41c103d0456b3a0a874b27d9d05111c885818ac181e0f63ac90186c38012493774a831a3b894489f6fe11719c69b48972d50c2766f686d3b65e0ee5c7950920')
 
 build() {
   cd you-get-$pkgver


[arch-commits] Commit in you-get/repos/community-any (PKGBUILD PKGBUILD)

2017-12-03 Thread Felix Yan via arch-commits
Date: Monday, December 4, 2017 @ 06:43:05
  Author: felixonmars
Revision: 272068

archrelease: copy trunk to community-any

Added:
  you-get/repos/community-any/PKGBUILD
(from rev 272067, you-get/trunk/PKGBUILD)
Deleted:
  you-get/repos/community-any/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-04 06:42:32 UTC (rev 272067)
+++ PKGBUILD2017-12-04 06:43:05 UTC (rev 272068)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=you-get
-pkgver=0.4.990
-pkgrel=1
-pkgdesc="A YouTube/Youku/Niconico video downloader written in Python 3."
-url="http://www.soimort.org/you-get/;
-arch=('any')
-license=('MIT')
-depends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/soimort/you-get/archive/v$pkgver.tar.gz;)
-sha512sums=('70cb78f7305cc68be600e960d8fcedb7bf682973799ae01dd855e2b931741beffba44135ff6fe1c01e356085531f8451b6126f8e3d0a3055a07f340b453ff6fc')
-
-build() {
-  cd you-get-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd you-get-$pkgver
-  LC_CTYPE=en_US.UTF-8 python setup.py test
-}
-
-package() {
-  cd you-get-$pkgver
-  python setup.py install --root="$pkgdir"
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-  install -Dm644 contrib/completion/_you-get 
"$pkgdir"/usr/share/zsh/site-functions/_you-get
-  install -Dm644 contrib/completion/you-get-completion.bash 
"$pkgdir"/usr/share/bash-completion/completions/you-get
-  install -Dm644 contrib/completion/you-get.fish 
"$pkgdir"/usr/share/fish/completions/you-get.fish
-}

Copied: you-get/repos/community-any/PKGBUILD (from rev 272067, 
you-get/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-04 06:43:05 UTC (rev 272068)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=you-get
+pkgver=0.4.995
+pkgrel=1
+pkgdesc="A YouTube/Youku/Niconico video downloader written in Python 3."
+url="http://www.soimort.org/you-get/;
+arch=('any')
+license=('MIT')
+depends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/soimort/you-get/archive/v$pkgver.tar.gz;)
+sha512sums=('e41c103d0456b3a0a874b27d9d05111c885818ac181e0f63ac90186c38012493774a831a3b894489f6fe11719c69b48972d50c2766f686d3b65e0ee5c7950920')
+
+build() {
+  cd you-get-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd you-get-$pkgver
+  LC_CTYPE=en_US.UTF-8 python setup.py test
+}
+
+package() {
+  cd you-get-$pkgver
+  python setup.py install --root="$pkgdir"
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+  install -Dm644 contrib/completion/_you-get 
"$pkgdir"/usr/share/zsh/site-functions/_you-get
+  install -Dm644 contrib/completion/you-get-completion.bash 
"$pkgdir"/usr/share/bash-completion/completions/you-get
+  install -Dm644 contrib/completion/you-get.fish 
"$pkgdir"/usr/share/fish/completions/you-get.fish
+}


[arch-commits] Commit in terraform/repos/community-x86_64 (PKGBUILD PKGBUILD)

2017-12-03 Thread Jerome Leclanche via arch-commits
Date: Monday, December 4, 2017 @ 02:41:21
  Author: jleclanche
Revision: 272066

archrelease: copy trunk to community-x86_64

Added:
  terraform/repos/community-x86_64/PKGBUILD
(from rev 272065, terraform/trunk/PKGBUILD)
Deleted:
  terraform/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   84 ++---
 1 file changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-04 02:41:08 UTC (rev 272065)
+++ PKGBUILD2017-12-04 02:41:21 UTC (rev 272066)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=terraform
-pkgver=0.11.0
-pkgrel=1
-pkgdesc="Tool for building, changing, and versioning infrastructure safely and 
efficiently"
-url="http://www.terraform.io/;
-arch=("x86_64")
-license=("MPL")
-makedepends=("go-pie" "godep" "git" "mercurial")
-_gourl="github.com/hashicorp"
-source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz;)
-sha256sums=("2625ab24b71ccb8b9e1cf8794c3d3cd147313768066103fb970d58fa6a0a65fe")
-
-
-prepare() {
-   mkdir -p "$srcdir/src/$_gourl"
-   rm -rf "$srcdir/src/$_gourl/$pkgname"
-   mv -f "terraform-$pkgver" "$srcdir/src/$_gourl/$pkgname"
-   msg2 "Fetching dependencies"
-   cd "$srcdir/src/$_gourl/$pkgname"
-   GOPATH="$srcdir" go get -u github.com/mitchellh/gox
-   GOPATH="$srcdir" go get -u golang.org/x/tools/cmd/stringer
-}
-
-
-build() {
-   msg2 "Build program"
-   cd "$srcdir/src/$_gourl/$pkgname"
-   GOPATH="$srcdir" PATH="$srcdir/bin:$PATH" TF_DEV=1 TF_QUICKDEV=1 make 
bin
-}
-
-
-package() {
-   cd "$srcdir/bin"
-   install -Dm755 terraform "$pkgdir/usr/bin/terraform"
-
-   cd "$srcdir/src/$_gourl/$pkgname"
-   # Zsh completion
-   install -D contrib/zsh-completion/_terraform 
"$pkgdir/usr/share/zsh/site-functions/_terraform"
-}

Copied: terraform/repos/community-x86_64/PKGBUILD (from rev 272065, 
terraform/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-04 02:41:21 UTC (rev 272066)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=terraform
+pkgver=0.11.1
+pkgrel=1
+pkgdesc="Tool for building, changing, and versioning infrastructure safely and 
efficiently"
+url="http://www.terraform.io/;
+arch=("x86_64")
+license=("MPL")
+makedepends=("go-pie" "godep" "git" "mercurial")
+_gourl="github.com/hashicorp"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz;)
+sha256sums=("da804e69e990226ee14dadbf33850c8b074d5e0782d56522b71d62c4c5c82cba")
+
+
+prepare() {
+   mkdir -p "$srcdir/src/$_gourl"
+   rm -rf "$srcdir/src/$_gourl/$pkgname"
+   mv -f "terraform-$pkgver" "$srcdir/src/$_gourl/$pkgname"
+   msg2 "Fetching dependencies"
+   cd "$srcdir/src/$_gourl/$pkgname"
+   GOPATH="$srcdir" go get -u github.com/mitchellh/gox
+   GOPATH="$srcdir" go get -u golang.org/x/tools/cmd/stringer
+}
+
+
+build() {
+   msg2 "Build program"
+   cd "$srcdir/src/$_gourl/$pkgname"
+   GOPATH="$srcdir" PATH="$srcdir/bin:$PATH" TF_DEV=1 TF_QUICKDEV=1 make 
bin
+}
+
+
+package() {
+   cd "$srcdir/bin"
+   install -Dm755 terraform "$pkgdir/usr/bin/terraform"
+
+   cd "$srcdir/src/$_gourl/$pkgname"
+   # Zsh completion
+   install -D contrib/zsh-completion/_terraform 
"$pkgdir/usr/share/zsh/site-functions/_terraform"
+}


[arch-commits] Commit in terraform/trunk (PKGBUILD)

2017-12-03 Thread Jerome Leclanche via arch-commits
Date: Monday, December 4, 2017 @ 02:41:08
  Author: jleclanche
Revision: 272065

upgpkg: terraform 0.11.1-1

Upstream release 0.11.1

Modified:
  terraform/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-04 02:28:24 UTC (rev 272064)
+++ PKGBUILD2017-12-04 02:41:08 UTC (rev 272065)
@@ -2,7 +2,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=terraform
-pkgver=0.11.0
+pkgver=0.11.1
 pkgrel=1
 pkgdesc="Tool for building, changing, and versioning infrastructure safely and 
efficiently"
 url="http://www.terraform.io/;
@@ -11,7 +11,7 @@
 makedepends=("go-pie" "godep" "git" "mercurial")
 _gourl="github.com/hashicorp"
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz;)
-sha256sums=("2625ab24b71ccb8b9e1cf8794c3d3cd147313768066103fb970d58fa6a0a65fe")
+sha256sums=("da804e69e990226ee14dadbf33850c8b074d5e0782d56522b71d62c4c5c82cba")
 
 
 prepare() {


[arch-commits] Commit in biber/trunk (PKGBUILD)

2017-12-03 Thread Christian Rebischke via arch-commits
Date: Monday, December 4, 2017 @ 02:28:16
  Author: shibumi
Revision: 272063

upgpkg: biber 2.9-1

Neue Version

Modified:
  biber/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 23:47:00 UTC (rev 272062)
+++ PKGBUILD2017-12-04 02:28:16 UTC (rev 272063)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=biber
-pkgver=2.8 # for biblatex 3.8
+pkgver=2.9 # for biblatex 3.8
 pkgrel=1
 pkgdesc="A Unicode-capable BibTeX replacement for biblatex users"
 arch=('any')
@@ -44,7 +44,7 @@
 # The sourceforge tarball is missing bblxml.pm
 source=("https://github.com/plk/biber/archive/v${pkgver}.tar.gz;
 "sortinithash-unicode-collate-1.21.patch")
-sha256sums=('01640f1d3827d0f2f0572db19f5836cb58acf2d7c1a1925faa2326f0b16e8e1a'
+sha256sums=('701509ca5b72e2500a57bfa90abfa4e3acccdf665341eab64c85e1579f09fea3'
 'd72953acd63453ec5363fcfc830137deb6cf3827d5899edb50b1b835a0ca013f')
 
 prepare() {


[arch-commits] Commit in nbxmpp/repos/extra-any (PKGBUILD PKGBUILD)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Sunday, December 3, 2017 @ 23:52:55
  Author: arojas
Revision: 311603

archrelease: copy trunk to extra-any

Added:
  nbxmpp/repos/extra-any/PKGBUILD
(from rev 311602, nbxmpp/trunk/PKGBUILD)
Deleted:
  nbxmpp/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   81 -
 1 file changed, 38 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 23:52:26 UTC (rev 311602)
+++ PKGBUILD2017-12-03 23:52:55 UTC (rev 311603)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgbase=nbxmpp
-pkgname=('python-nbxmpp' 'python2-nbxmpp')
-pkgver=0.6.0
-pkgrel=2
-arch=('any')
-url="https://python-nbxmpp.gajim.org/;
-license=('GPL3')
-makedepends=('python' 'python2')
-source=(https://pypi.io/packages/source/n/nbxmpp/nbxmpp-$pkgver.tar.gz
-
nbxmpp-no-pyopenssl.patch::"https://dev.gajim.org/gajim/python-nbxmpp/commit/0b77b07b.diff;)
-sha1sums=('07f0d6b2ee44da908a2001f02984abbdde9fee91'
-  'd32a3fd00be0e669251b20af17ef38ddd35c07b2')
-
-prepare() {
-  cd $pkgbase-$pkgver
-patch -p1 -i ../nbxmpp-no-pyopenssl.patch # don't use pyopenssl for random 
number generation
-  cd ..
-  cp -r ${pkgbase}-${pkgver} ${pkgbase}-${pkgver}-python2
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}-python2
-  python2 setup.py build
-  cd ../${pkgbase}-${pkgver}
-  python setup.py build
-}
-
-package_python-nbxmpp() {
-  pkgdesc="A Python 3 library to use Jabber/XMPP networks in a non-blocking 
way"
-  depends=('python')
-  cd ${pkgbase}-${pkgver}
-  python setup.py install --root="${pkgdir}"
-}
-
-package_python2-nbxmpp() {
-  pkgdesc="A Python 2 library to use Jabber/XMPP networks in a non-blocking 
way"
-  depends=('python2')
-  cd ${pkgbase}-${pkgver}-python2
-  python2 setup.py install --root="${pkgdir}"
-}

Copied: nbxmpp/repos/extra-any/PKGBUILD (from rev 311602, nbxmpp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 23:52:55 UTC (rev 311603)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgbase=nbxmpp
+pkgname=('python-nbxmpp' 'python2-nbxmpp')
+pkgver=0.6.1
+pkgrel=1
+arch=('any')
+url="https://python-nbxmpp.gajim.org/;
+license=('GPL3')
+makedepends=('python' 'python2')
+source=(https://pypi.io/packages/source/n/nbxmpp/nbxmpp-$pkgver.tar.gz)
+sha1sums=('39ef00099cd50bd6459fb2ecb9f7558a6dce2455')
+
+prepare() {
+  cp -r ${pkgbase}-${pkgver} ${pkgbase}-${pkgver}-python2
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}-python2
+  python2 setup.py build
+  cd ../${pkgbase}-${pkgver}
+  python setup.py build
+}
+
+package_python-nbxmpp() {
+  pkgdesc="A Python 3 library to use Jabber/XMPP networks in a non-blocking 
way"
+  depends=('python')
+  cd ${pkgbase}-${pkgver}
+  python setup.py install --root="${pkgdir}"
+}
+
+package_python2-nbxmpp() {
+  pkgdesc="A Python 2 library to use Jabber/XMPP networks in a non-blocking 
way"
+  depends=('python2')
+  cd ${pkgbase}-${pkgver}-python2
+  python2 setup.py install --root="${pkgdir}"
+}


[arch-commits] Commit in nbxmpp/trunk (PKGBUILD)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Sunday, December 3, 2017 @ 23:52:26
  Author: arojas
Revision: 311602

Update to 0.6.1

Modified:
  nbxmpp/trunk/PKGBUILD

--+
 PKGBUILD |   13 -
 1 file changed, 4 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 23:49:45 UTC (rev 311601)
+++ PKGBUILD2017-12-03 23:52:26 UTC (rev 311602)
@@ -3,21 +3,16 @@
 
 pkgbase=nbxmpp
 pkgname=('python-nbxmpp' 'python2-nbxmpp')
-pkgver=0.6.0
-pkgrel=2
+pkgver=0.6.1
+pkgrel=1
 arch=('any')
 url="https://python-nbxmpp.gajim.org/;
 license=('GPL3')
 makedepends=('python' 'python2')
-source=(https://pypi.io/packages/source/n/nbxmpp/nbxmpp-$pkgver.tar.gz
-
nbxmpp-no-pyopenssl.patch::"https://dev.gajim.org/gajim/python-nbxmpp/commit/0b77b07b.diff;)
-sha1sums=('07f0d6b2ee44da908a2001f02984abbdde9fee91'
-  'd32a3fd00be0e669251b20af17ef38ddd35c07b2')
+source=(https://pypi.io/packages/source/n/nbxmpp/nbxmpp-$pkgver.tar.gz)
+sha1sums=('39ef00099cd50bd6459fb2ecb9f7558a6dce2455')
 
 prepare() {
-  cd $pkgbase-$pkgver
-patch -p1 -i ../nbxmpp-no-pyopenssl.patch # don't use pyopenssl for random 
number generation
-  cd ..
   cp -r ${pkgbase}-${pkgver} ${pkgbase}-${pkgver}-python2
 }
 


[arch-commits] Commit in gajim/trunk (PKGBUILD gajim-drill.patch)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Sunday, December 3, 2017 @ 23:49:20
  Author: arojas
Revision: 311600

Update to 0.16.9

Modified:
  gajim/trunk/PKGBUILD
Deleted:
  gajim/trunk/gajim-drill.patch

---+
 PKGBUILD  |   19 -
 gajim-drill.patch |  837 
 2 files changed, 5 insertions(+), 851 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 23:06:19 UTC (rev 311599)
+++ PKGBUILD2017-12-03 23:49:20 UTC (rev 311600)
@@ -2,13 +2,13 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=gajim
-pkgver=0.16.8
-pkgrel=3
+pkgver=0.16.9
+pkgrel=1
 pkgdesc="A full featured and easy to use Jabber client"
 arch=('any')
 url="https://www.gajim.org/;
 license=('GPL3')
-depends=('pygtk' 'python2-pyopenssl' 'python2-pyasn1' 'python2-nbxmpp' 
'ca-certificates' 'ldns')
+depends=('pygtk' 'python2-pyopenssl' 'python2-pyasn1' 'python2-nbxmpp' 
'ca-certificates' 'bind-tools')
 makedepends=('intltool')
 optdepends=('python2-dbus: dbus support'
 'gtkspell: for spelling support'
@@ -19,18 +19,9 @@
 'python2-docutils: for RST generator support'
 'gupnp-igd: for UPnP-IGD support'
 'python2-gnupg: for PGP encryption')
-source=(https://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2 
gajim-drill.patch
-
gajim-pyopenssl.patch::"https://dev.gajim.org/gajim/gajim/commit/3dd35f5e.diff;)
-sha1sums=('ec478488d25097661d76c6e0f9fe28415b7a4580'
-  '6c93159d7018675e4747a0d4c0ca43bb559a4dc0'
-  '761a1e66a7e21d4c497db36288df72b69799a92c')
+source=(https://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2)
+sha1sums=('5e329aa769cc098ffeea94894bd8b4ad200293a1')
 
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 -i "${srcdir}/gajim-drill.patch"
-  patch -p1 -i ../gajim-pyopenssl.patch # Fix for pyopenssl 17.4
-}
-
 build() {
   cd ${pkgname}-${pkgver}
   PYTHON=python2 ./configure --prefix=/usr --enable-site-packages

Deleted: gajim-drill.patch
===
--- gajim-drill.patch   2017-12-03 23:06:19 UTC (rev 311599)
+++ gajim-drill.patch   2017-12-03 23:49:20 UTC (rev 311600)
@@ -1,837 +0,0 @@
-diff -Naur gajim-0.16-orig/po/b...@latin.po gajim-0.16/po/b...@latin.po
 gajim-0.16-orig/po/b...@latin.po   2014-10-05 16:07:08.910296643 -0400
-+++ gajim-0.16/po/b...@latin.po2014-10-05 16:07:30.183595453 -0400
-@@ -8757,11 +8757,11 @@
- msgstr ""
- 
- #: ../src/features_window.py:79
--msgid "Requires dnsutils."
-+msgid "Requires ldns."
- msgstr ""
- 
- #: ../src/features_window.py:80
--msgid "Requires nslookup to use SRV records."
-+msgid "Requires drill to use SRV records."
- msgstr ""
- 
- #: ../src/features_window.py:81
-diff -Naur gajim-0.16-orig/po/be.po gajim-0.16/po/be.po
 gajim-0.16-orig/po/be.po   2014-10-05 16:07:08.920296627 -0400
-+++ gajim-0.16/po/be.po2014-10-05 16:07:30.186928779 -0400
-@@ -8732,11 +8732,11 @@
- msgstr ""
- 
- #: ../src/features_window.py:79
--msgid "Requires dnsutils."
-+msgid "Requires ldns."
- msgstr ""
- 
- #: ../src/features_window.py:80
--msgid "Requires nslookup to use SRV records."
-+msgid "Requires drill to use SRV records."
- msgstr ""
- 
- #: ../src/features_window.py:81
-diff -Naur gajim-0.16-orig/po/bg.po gajim-0.16/po/bg.po
 gajim-0.16-orig/po/bg.po   2014-10-05 16:07:08.910296643 -0400
-+++ gajim-0.16/po/bg.po2014-10-05 16:07:30.190262105 -0400
-@@ -8669,11 +8669,11 @@
- msgstr "Възможност за свързване към сървъри, които използват записи SRV."
- 
- #: ../src/features_window.py:79
--msgid "Requires dnsutils."
--msgstr "Изисква dnsutils."
-+msgid "Requires ldns."
-+msgstr "Изисква ldns."
- 
- #: ../src/features_window.py:80
--msgid "Requires nslookup to use SRV records."
-+msgid "Requires drill to use SRV records."
- msgstr ""
- 
- #: ../src/features_window.py:81
-diff -Naur gajim-0.16-orig/po/br.po gajim-0.16/po/br.po
 gajim-0.16-orig/po/br.po   2014-10-05 16:07:08.910296643 -0400
-+++ gajim-0.16/po/br.po2014-10-05 16:07:30.193595433 -0400
-@@ -8723,11 +8723,11 @@
- msgstr ""
- 
- #: ../src/features_window.py:79
--msgid "Requires dnsutils."
-+msgid "Requires ldns."
- msgstr ""
- 
- #: ../src/features_window.py:80
--msgid "Requires nslookup to use SRV records."
-+msgid "Requires drill to use SRV records."
- msgstr ""
- 
- #: ../src/features_window.py:81
-diff -Naur gajim-0.16-orig/po/cs.po gajim-0.16/po/cs.po
 gajim-0.16-orig/po/cs.po   2014-10-05 16:07:08.916963299 -0400
-+++ gajim-0.16/po/cs.po2014-10-05 16:07:30.196928762 -0400
-@@ -8594,12 +8594,12 @@
- msgstr "Schopnost připojit se na servery používající SRV záznamy."
- 
- #: ../src/features_window.py:79
--msgid "Requires dnsutils."
--msgstr "Je potřeba dnsutils."
-+msgid "Requires ldns."
-+msgstr "Je potřeba ldns."
- 
- #: ../src/features_window.py:80
--msgid "Requires nslookup to use SRV records."
--msgstr 

[arch-commits] Commit in gajim/repos/extra-any (PKGBUILD PKGBUILD gajim-drill.patch)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Sunday, December 3, 2017 @ 23:49:45
  Author: arojas
Revision: 311601

archrelease: copy trunk to extra-any

Added:
  gajim/repos/extra-any/PKGBUILD
(from rev 311600, gajim/trunk/PKGBUILD)
Deleted:
  gajim/repos/extra-any/PKGBUILD
  gajim/repos/extra-any/gajim-drill.patch

---+
 PKGBUILD  |   77 ++--
 gajim-drill.patch |  837 
 2 files changed, 34 insertions(+), 880 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 23:49:20 UTC (rev 311600)
+++ PKGBUILD2017-12-03 23:49:45 UTC (rev 311601)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=gajim
-pkgver=0.16.8
-pkgrel=3
-pkgdesc="A full featured and easy to use Jabber client"
-arch=('any')
-url="https://www.gajim.org/;
-license=('GPL3')
-depends=('pygtk' 'python2-pyopenssl' 'python2-pyasn1' 'python2-nbxmpp' 
'ca-certificates' 'ldns')
-makedepends=('intltool')
-optdepends=('python2-dbus: dbus support'
-'gtkspell: for spelling support'
-'libxss: for idle module'
-'notification-daemon: for desktop notification'
-'python2-gnomekeyring: for GnomeKeyring support'
-'python2-crypto: support for E2E encryption'
-'python2-docutils: for RST generator support'
-'gupnp-igd: for UPnP-IGD support'
-'python2-gnupg: for PGP encryption')
-source=(https://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2 
gajim-drill.patch
-
gajim-pyopenssl.patch::"https://dev.gajim.org/gajim/gajim/commit/3dd35f5e.diff;)
-sha1sums=('ec478488d25097661d76c6e0f9fe28415b7a4580'
-  '6c93159d7018675e4747a0d4c0ca43bb559a4dc0'
-  '761a1e66a7e21d4c497db36288df72b69799a92c')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 -i "${srcdir}/gajim-drill.patch"
-  patch -p1 -i ../gajim-pyopenssl.patch # Fix for pyopenssl 17.4
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  PYTHON=python2 ./configure --prefix=/usr --enable-site-packages
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: gajim/repos/extra-any/PKGBUILD (from rev 311600, gajim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 23:49:45 UTC (rev 311601)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=gajim
+pkgver=0.16.9
+pkgrel=1
+pkgdesc="A full featured and easy to use Jabber client"
+arch=('any')
+url="https://www.gajim.org/;
+license=('GPL3')
+depends=('pygtk' 'python2-pyopenssl' 'python2-pyasn1' 'python2-nbxmpp' 
'ca-certificates' 'bind-tools')
+makedepends=('intltool')
+optdepends=('python2-dbus: dbus support'
+'gtkspell: for spelling support'
+'libxss: for idle module'
+'notification-daemon: for desktop notification'
+'python2-gnomekeyring: for GnomeKeyring support'
+'python2-crypto: support for E2E encryption'
+'python2-docutils: for RST generator support'
+'gupnp-igd: for UPnP-IGD support'
+'python2-gnupg: for PGP encryption')
+source=(https://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2)
+sha1sums=('5e329aa769cc098ffeea94894bd8b4ad200293a1')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  PYTHON=python2 ./configure --prefix=/usr --enable-site-packages
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Deleted: gajim-drill.patch
===
--- gajim-drill.patch   2017-12-03 23:49:20 UTC (rev 311600)
+++ gajim-drill.patch   2017-12-03 23:49:45 UTC (rev 311601)
@@ -1,837 +0,0 @@
-diff -Naur gajim-0.16-orig/po/b...@latin.po gajim-0.16/po/b...@latin.po
 gajim-0.16-orig/po/b...@latin.po   2014-10-05 16:07:08.910296643 -0400
-+++ gajim-0.16/po/b...@latin.po2014-10-05 16:07:30.183595453 -0400
-@@ -8757,11 +8757,11 @@
- msgstr ""
- 
- #: ../src/features_window.py:79
--msgid "Requires dnsutils."
-+msgid "Requires ldns."
- msgstr ""
- 
- #: ../src/features_window.py:80
--msgid "Requires nslookup to use SRV records."
-+msgid "Requires drill to use SRV records."
- msgstr ""
- 
- #: ../src/features_window.py:81
-diff -Naur gajim-0.16-orig/po/be.po gajim-0.16/po/be.po
 gajim-0.16-orig/po/be.po   2014-10-05 16:07:08.920296627 -0400
-+++ gajim-0.16/po/be.po2014-10-05 16:07:30.186928779 -0400
-@@ -8732,11 +8732,11 @@
- msgstr ""
- 
- #: ../src/features_window.py:79
--msgid "Requires dnsutils."
-+msgid "Requires ldns."
- msgstr ""
- 
- #: ../src/features_window.py:80
--msgid "Requires nslookup to use SRV records."
-+msgid "Requires drill to use SRV records."
- msgstr ""
- 
- #: ../src/features_window.py:81
-diff -Naur gajim-0.16-orig/po/bg.po gajim-0.16/po/bg.po
 gajim-0.16-orig/po/bg.po   

[arch-commits] Commit in meterbridge/trunk (PKGBUILD)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 23:46:52
  Author: dvzrv
Revision: 272061

upgpkg: meterbridge 0.9.2-2

Updating maintainer. Switching to sha512sums. Adding patch for C99 inline 
functions.
Using autoreconf instead of aclocal/automake/autoconf. Minor fixes.

Modified:
  meterbridge/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 23:43:33 UTC (rev 272060)
+++ PKGBUILD2017-12-03 23:46:52 UTC (rev 272061)
@@ -4,7 +4,7 @@
 
 pkgname=meterbridge
 pkgver=0.9.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Collection of Audio meters for the JACK audio server"
 arch=('x86_64')
 url="http://plugin.org.uk/meterbridge/;


[arch-commits] Commit in meterbridge/repos/community-testing-x86_64 (4 files)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 23:47:00
  Author: dvzrv
Revision: 272062

archrelease: copy trunk to community-testing-x86_64

Added:
  meterbridge/repos/community-testing-x86_64/PKGBUILD
(from rev 272061, meterbridge/trunk/PKGBUILD)
  meterbridge/repos/community-testing-x86_64/c99-inline-fix.patch
(from rev 272061, meterbridge/trunk/c99-inline-fix.patch)
Deleted:
  meterbridge/repos/community-testing-x86_64/PKGBUILD
  meterbridge/repos/community-testing-x86_64/c99-inline-fix.patch

--+
 PKGBUILD |   86 -
 c99-inline-fix.patch |   20 +--
 2 files changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 23:46:52 UTC (rev 272061)
+++ PKGBUILD2017-12-03 23:47:00 UTC (rev 272062)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: David Runge 
-# Contributor: speps 
-
-pkgname=meterbridge
-pkgver=0.9.2
-pkgrel=1
-pkgdesc="Collection of Audio meters for the JACK audio server"
-arch=('x86_64')
-url="http://plugin.org.uk/meterbridge/;
-license=('GPL')
-depends=('jack' 'sdl_image')
-source=("http://plugin.org.uk/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'c99-inline-fix.patch')
-sha512sums=('dec68307430649f3281528b31f20f501df07c4c9841776bac9c532d16a309bc701d39a5f577dc55eccb0edebc514d2eeca45c057a81a5c6c57bd61faae7deff0'
-
'4e76dcb966daa5080ebf85274739e6ac0ef5baf15ef42d4c9d9918f2ed03ce4dae954323f1fc3081360f175d24692f4d8612d39b3def11a480ac10d466f31da6')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-
-  # gcc 4.x fix
-  sed -i "s/ buf_rect.*,//" src/main.h
-
-  # iec scale fix
-  # http://lists.linuxaudio.org/pipermail/linux-audio-dev/2012-June/032475.html
-  sed -i 's/ 5.0/ 2.5/' src/dpm_meters.c
-
-  # fix the changed evaluation of inline functions
-  patch -Np0 -i "${srcdir}/c99-inline-fix.patch"
-
-  autoreconf -vi
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}/" install
-}

Copied: meterbridge/repos/community-testing-x86_64/PKGBUILD (from rev 272061, 
meterbridge/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 23:47:00 UTC (rev 272062)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+
+pkgname=meterbridge
+pkgver=0.9.2
+pkgrel=2
+pkgdesc="Collection of Audio meters for the JACK audio server"
+arch=('x86_64')
+url="http://plugin.org.uk/meterbridge/;
+license=('GPL')
+depends=('jack' 'sdl_image')
+source=("http://plugin.org.uk/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'c99-inline-fix.patch')
+sha512sums=('dec68307430649f3281528b31f20f501df07c4c9841776bac9c532d16a309bc701d39a5f577dc55eccb0edebc514d2eeca45c057a81a5c6c57bd61faae7deff0'
+
'4e76dcb966daa5080ebf85274739e6ac0ef5baf15ef42d4c9d9918f2ed03ce4dae954323f1fc3081360f175d24692f4d8612d39b3def11a480ac10d466f31da6')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+
+  # gcc 4.x fix
+  sed -i "s/ buf_rect.*,//" src/main.h
+
+  # iec scale fix
+  # http://lists.linuxaudio.org/pipermail/linux-audio-dev/2012-June/032475.html
+  sed -i 's/ 5.0/ 2.5/' src/dpm_meters.c
+
+  # fix the changed evaluation of inline functions
+  patch -Np0 -i "${srcdir}/c99-inline-fix.patch"
+
+  autoreconf -vi
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}/" install
+}

Deleted: c99-inline-fix.patch
===
--- c99-inline-fix.patch2017-12-03 23:46:52 UTC (rev 272061)
+++ c99-inline-fix.patch2017-12-03 23:47:00 UTC (rev 272062)
@@ -1,10 +0,0 @@
 src/linedraw.c 2002-10-10 12:06:06.0 +0200
-+++ src/linedraw.c.fix 2017-12-04 00:36:19.839664181 +0100
-@@ -9,6 +9,7 @@
-   Uint32 *bufp = (Uint32 *)surface->pixels + y*surface->pitch/4 + x;
-   *bufp = col;
- }
-+void set_rgba(SDL_Surface *surface, Uint32 x, Uint32 y, Uint32 col);
- 
- /* use Bresenham's alg. to draw a line between two integer coordinates */
- 

Copied: meterbridge/repos/community-testing-x86_64/c99-inline-fix.patch (from 
rev 272061, meterbridge/trunk/c99-inline-fix.patch)
===
--- c99-inline-fix.patch(rev 0)
+++ c99-inline-fix.patch2017-12-03 23:47:00 UTC (rev 272062)
@@ -0,0 +1,10 @@
+--- src/linedraw.c 2002-10-10 12:06:06.0 +0200
 src/linedraw.c.fix 2017-12-04 00:36:19.839664181 +0100
+@@ -9,6 +9,7 @@
+   Uint32 *bufp = (Uint32 *)surface->pixels + y*surface->pitch/4 + x;
+   *bufp = col;
+ }
++void set_rgba(SDL_Surface *surface, Uint32 x, Uint32 y, Uint32 col);
+ 
+ /* use Bresenham's alg. to draw a 

[arch-commits] Commit in meterbridge/trunk (PKGBUILD c99-inline-fix.patch)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 23:43:25
  Author: dvzrv
Revision: 272059

upgpkg: meterbridge 0.9.2-1

Updating maintainer. Switching to sha512sums. Adding patch for C99 inline 
functions.
Using autoreconf instead of aclocal/automake/autoconf. Minor fixes.

Added:
  meterbridge/trunk/c99-inline-fix.patch
Modified:
  meterbridge/trunk/PKGBUILD

--+
 PKGBUILD |   23 +++
 c99-inline-fix.patch |   10 ++
 2 files changed, 25 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 23:21:21 UTC (rev 272058)
+++ PKGBUILD2017-12-03 23:43:25 UTC (rev 272059)
@@ -1,5 +1,6 @@
 # $Id$
-# Maintainer: speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 
 pkgname=meterbridge
 pkgver=0.9.2
@@ -9,11 +10,13 @@
 url="http://plugin.org.uk/meterbridge/;
 license=('GPL')
 depends=('jack' 'sdl_image')
-source=("http://plugin.org.uk/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('ef5d20761755c88e5b5a0c35f11f670e')
+source=("http://plugin.org.uk/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'c99-inline-fix.patch')
+sha512sums=('dec68307430649f3281528b31f20f501df07c4c9841776bac9c532d16a309bc701d39a5f577dc55eccb0edebc514d2eeca45c057a81a5c6c57bd61faae7deff0'
+
'4e76dcb966daa5080ebf85274739e6ac0ef5baf15ef42d4c9d9918f2ed03ce4dae954323f1fc3081360f175d24692f4d8612d39b3def11a480ac10d466f31da6')
 
 prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd "${pkgname}-${pkgver}"
 
   # gcc 4.x fix
   sed -i "s/ buf_rect.*,//" src/main.h
@@ -21,16 +24,20 @@
   # iec scale fix
   # http://lists.linuxaudio.org/pipermail/linux-audio-dev/2012-June/032475.html
   sed -i 's/ 5.0/ 2.5/' src/dpm_meters.c
+
+  # fix the changed evaluation of inline functions
+  patch -Np0 -i "${srcdir}/c99-inline-fix.patch"
+
+  autoreconf -vi
 }
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  aclocal && automake -a && autoconf
+  cd "${pkgname}-${pkgver}"
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}/" install
 }

Added: c99-inline-fix.patch
===
--- c99-inline-fix.patch(rev 0)
+++ c99-inline-fix.patch2017-12-03 23:43:25 UTC (rev 272059)
@@ -0,0 +1,10 @@
+--- src/linedraw.c 2002-10-10 12:06:06.0 +0200
 src/linedraw.c.fix 2017-12-04 00:36:19.839664181 +0100
+@@ -9,6 +9,7 @@
+   Uint32 *bufp = (Uint32 *)surface->pixels + y*surface->pitch/4 + x;
+   *bufp = col;
+ }
++void set_rgba(SDL_Surface *surface, Uint32 x, Uint32 y, Uint32 col);
+ 
+ /* use Bresenham's alg. to draw a line between two integer coordinates */
+ 


[arch-commits] Commit in meterbridge/repos (3 files)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 23:43:33
  Author: dvzrv
Revision: 272060

archrelease: copy trunk to community-testing-x86_64

Added:
  meterbridge/repos/community-testing-x86_64/
  meterbridge/repos/community-testing-x86_64/PKGBUILD
(from rev 272059, meterbridge/trunk/PKGBUILD)
  meterbridge/repos/community-testing-x86_64/c99-inline-fix.patch
(from rev 272059, meterbridge/trunk/c99-inline-fix.patch)

--+
 PKGBUILD |   43 +++
 c99-inline-fix.patch |   10 ++
 2 files changed, 53 insertions(+)

Copied: meterbridge/repos/community-testing-x86_64/PKGBUILD (from rev 272059, 
meterbridge/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-03 23:43:33 UTC (rev 272060)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+
+pkgname=meterbridge
+pkgver=0.9.2
+pkgrel=1
+pkgdesc="Collection of Audio meters for the JACK audio server"
+arch=('x86_64')
+url="http://plugin.org.uk/meterbridge/;
+license=('GPL')
+depends=('jack' 'sdl_image')
+source=("http://plugin.org.uk/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'c99-inline-fix.patch')
+sha512sums=('dec68307430649f3281528b31f20f501df07c4c9841776bac9c532d16a309bc701d39a5f577dc55eccb0edebc514d2eeca45c057a81a5c6c57bd61faae7deff0'
+
'4e76dcb966daa5080ebf85274739e6ac0ef5baf15ef42d4c9d9918f2ed03ce4dae954323f1fc3081360f175d24692f4d8612d39b3def11a480ac10d466f31da6')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+
+  # gcc 4.x fix
+  sed -i "s/ buf_rect.*,//" src/main.h
+
+  # iec scale fix
+  # http://lists.linuxaudio.org/pipermail/linux-audio-dev/2012-June/032475.html
+  sed -i 's/ 5.0/ 2.5/' src/dpm_meters.c
+
+  # fix the changed evaluation of inline functions
+  patch -Np0 -i "${srcdir}/c99-inline-fix.patch"
+
+  autoreconf -vi
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}/" install
+}

Copied: meterbridge/repos/community-testing-x86_64/c99-inline-fix.patch (from 
rev 272059, meterbridge/trunk/c99-inline-fix.patch)
===
--- community-testing-x86_64/c99-inline-fix.patch   
(rev 0)
+++ community-testing-x86_64/c99-inline-fix.patch   2017-12-03 23:43:33 UTC 
(rev 272060)
@@ -0,0 +1,10 @@
+--- src/linedraw.c 2002-10-10 12:06:06.0 +0200
 src/linedraw.c.fix 2017-12-04 00:36:19.839664181 +0100
+@@ -9,6 +9,7 @@
+   Uint32 *bufp = (Uint32 *)surface->pixels + y*surface->pitch/4 + x;
+   *bufp = col;
+ }
++void set_rgba(SDL_Surface *surface, Uint32 x, Uint32 y, Uint32 col);
+ 
+ /* use Bresenham's alg. to draw a line between two integer coordinates */
+ 


[arch-commits] Commit in pan/trunk (PKGBUILD)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Sunday, December 3, 2017 @ 23:20:54
  Author: arojas
Revision: 272057

Update to 0.143, try GTK3 again

Modified:
  pan/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 23:04:37 UTC (rev 272056)
+++ PKGBUILD2017-12-03 23:20:54 UTC (rev 272057)
@@ -3,20 +3,20 @@
 # Contributor: Bernard Baeyens (berbae) 
 
 pkgname=pan
-pkgver=0.142
-pkgrel=3
+pkgver=0.143
+pkgrel=1
 pkgdesc="A powerful Newsgroup Article reader"
 arch=(x86_64)
 url="http://pan.rebelbase.com/;
 license=(GPL2)
-depends=(gtkspell gmime)
+depends=(gtkspell3 gmime)
 makedepends=(intltool itstool)
 
source=("http://pan.rebelbase.com/download/releases/$pkgver/source/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('12d776e981a32123a18f02424173910ab3bf5856ead416ea33b83d927ab42f93')
+sha256sums=('3d3b7ff776d887578c1f7662c5d4c4097a8a00380a89f6b148ff2775f159a902')
 
 build() {
   cd $pkgname-$pkgver
-  ./configure --prefix=/usr --with-gnutls
+  ./configure --prefix=/usr --with-gnutls --with-gtk3
   make
 }
 


[arch-commits] Commit in pan/repos/community-x86_64 (PKGBUILD PKGBUILD)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Sunday, December 3, 2017 @ 23:21:21
  Author: arojas
Revision: 272058

archrelease: copy trunk to community-x86_64

Added:
  pan/repos/community-x86_64/PKGBUILD
(from rev 272057, pan/trunk/PKGBUILD)
Deleted:
  pan/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   52 ++--
 1 file changed, 26 insertions(+), 26 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 23:20:54 UTC (rev 272057)
+++ PKGBUILD2017-12-03 23:21:21 UTC (rev 272058)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Bernard Baeyens (berbae) 
-
-pkgname=pan
-pkgver=0.142
-pkgrel=3
-pkgdesc="A powerful Newsgroup Article reader"
-arch=(x86_64)
-url="http://pan.rebelbase.com/;
-license=(GPL2)
-depends=(gtkspell gmime)
-makedepends=(intltool itstool)
-source=("http://pan.rebelbase.com/download/releases/$pkgver/source/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('12d776e981a32123a18f02424173910ab3bf5856ead416ea33b83d927ab42f93')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --with-gnutls
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: pan/repos/community-x86_64/PKGBUILD (from rev 272057, 
pan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 23:21:21 UTC (rev 272058)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Bernard Baeyens (berbae) 
+
+pkgname=pan
+pkgver=0.143
+pkgrel=1
+pkgdesc="A powerful Newsgroup Article reader"
+arch=(x86_64)
+url="http://pan.rebelbase.com/;
+license=(GPL2)
+depends=(gtkspell3 gmime)
+makedepends=(intltool itstool)
+source=("http://pan.rebelbase.com/download/releases/$pkgver/source/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('3d3b7ff776d887578c1f7662c5d4c4097a8a00380a89f6b148ff2775f159a902')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-gnutls --with-gtk3
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in bluefish/trunk (PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 23:06:19
  Author: jgc
Revision: 311599

Switch to HTTPS

Modified:
  bluefish/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 23:03:58 UTC (rev 311598)
+++ PKGBUILD2017-12-03 23:06:19 UTC (rev 311599)
@@ -12,7 +12,7 @@
 makedepends=('gucharmap' 'intltool')
 optdepends=('gucharmap: for using the charmap plugin')
 install=bluefish.install
-source=(http://www.bennewitz.com/bluefish/stable/source/bluefish-${pkgver}.tar.bz2{,.sig})
+source=(https://www.bennewitz.com/bluefish/stable/source/bluefish-${pkgver}.tar.bz2{,.sig})
 sha1sums=('abb2080b5cbc65cd9c7551572ac21012c5ee2031'
   'SKIP')
 validpgpkeys=('58FD02766D031E832560A6A226073EFCDAC576E6')


[arch-commits] Commit in linux-hardened/repos/community-x86_64 (11 files)

2017-12-03 Thread Levente Polyak via arch-commits
Date: Sunday, December 3, 2017 @ 23:04:37
  Author: anthraxx
Revision: 272056

archrelease: copy trunk to community-x86_64

Added:
  
linux-hardened/repos/community-x86_64/0001-platform-x86-hp-wmi-Fix-tablet-mode-detection-for-co.patch
(from rev 272055, 
linux-hardened/trunk/0001-platform-x86-hp-wmi-Fix-tablet-mode-detection-for-co.patch)
  linux-hardened/repos/community-x86_64/90-linux.hook
(from rev 272055, linux-hardened/trunk/90-linux.hook)
  linux-hardened/repos/community-x86_64/PKGBUILD
(from rev 272055, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/community-x86_64/config.x86_64
(from rev 272055, linux-hardened/trunk/config.x86_64)
  linux-hardened/repos/community-x86_64/linux.install
(from rev 272055, linux-hardened/trunk/linux.install)
  linux-hardened/repos/community-x86_64/linux.preset
(from rev 272055, linux-hardened/trunk/linux.preset)
Deleted:
  linux-hardened/repos/community-x86_64/90-linux.hook
  linux-hardened/repos/community-x86_64/PKGBUILD
  linux-hardened/repos/community-x86_64/config.x86_64
  linux-hardened/repos/community-x86_64/linux.install
  linux-hardened/repos/community-x86_64/linux.preset

-+
 0001-platform-x86-hp-wmi-Fix-tablet-mode-detection-for-co.patch |   38 
 90-linux.hook   |   22 
 PKGBUILD|  591 
 config.x86_64   |16383 
+-
 linux.install   |   54 
 linux.preset|   28 
 6 files changed, 8608 insertions(+), 8508 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 272055:272056 to see the changes.


[arch-commits] Commit in opensp/trunk (PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 23:03:50
  Author: jgc
Revision: 311597

upgpkg: opensp 1.5.2-8

Switch to https and sha256. Fix overlinking

Modified:
  opensp/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 23:00:09 UTC (rev 311596)
+++ PKGBUILD2017-12-03 23:03:50 UTC (rev 311597)
@@ -5,7 +5,7 @@
 
 pkgname=opensp
 pkgver=1.5.2
-pkgrel=7
+pkgrel=8
 pkgdesc="A library and a set of tools for validating, parsing and manipulating 
SGML and XML documents"
 arch=('x86_64')
 url="http://openjade.sourceforge.net/;
@@ -12,8 +12,8 @@
 license=('BSD')
 depends=('sgml-common' 'perl')
 makedepends=('xmlto' 'docbook-xsl')
-source=("http://downloads.sourceforge.net/project/openjade/opensp/$pkgver/OpenSP-$pkgver.tar.gz;)
-sha1sums=('b4e903e980f8a8b3887396a24e067bef126e97d5')
+source=("https://downloads.sourceforge.net/project/openjade/opensp/$pkgver/OpenSP-$pkgver.tar.gz;)
+sha256sums=('57f4898498a368918b0d49c826aa434bb5b703d2c3b169beb348016ab25617ce')
 
 build() {
   cd OpenSP-$pkgver
@@ -24,6 +24,7 @@
 --enable-default-catalog=/etc/sgml/catalog \
 --enable-default-search-path=/usr/share/sgml:/usr/share/xml \
 --enable-xml-messages
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 


[arch-commits] Commit in opensp/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 23:03:58
  Author: jgc
Revision: 311598

archrelease: copy trunk to extra-x86_64

Added:
  opensp/repos/extra-x86_64/PKGBUILD
(from rev 311597, opensp/trunk/PKGBUILD)
Deleted:
  opensp/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  103 ++---
 1 file changed, 52 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 23:03:50 UTC (rev 311597)
+++ PKGBUILD2017-12-03 23:03:58 UTC (rev 311598)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: dorphell 
-# Contributor: Tom Newsom 
-
-pkgname=opensp
-pkgver=1.5.2
-pkgrel=7
-pkgdesc="A library and a set of tools for validating, parsing and manipulating 
SGML and XML documents"
-arch=('i686' 'x86_64')
-url="http://openjade.sourceforge.net/;
-license=('BSD')
-depends=('sgml-common' 'perl')
-makedepends=('xmlto' 'docbook-xsl')
-source=("http://downloads.sourceforge.net/project/openjade/opensp/$pkgver/OpenSP-$pkgver.tar.gz;)
-sha1sums=('b4e903e980f8a8b3887396a24e067bef126e97d5')
-
-build() {
-  cd OpenSP-$pkgver
-  ./configure --prefix=/usr \
---mandir=/usr/share/man \
---disable-nls \
---enable-http \
---enable-default-catalog=/etc/sgml/catalog \
---enable-default-search-path=/usr/share/sgml:/usr/share/xml \
---enable-xml-messages
-  make
-}
-
-check() {
-  cd OpenSP-$pkgver
-  make check || /bin/true
-}
-
-package() {
-  cd OpenSP-$pkgver
-  make DESTDIR="${pkgdir}" install
-
-  # add symlinks for compatibility with jade, see FS#49775
-  for file in nsgmls sgmlnorm spam spcat spent sx ; do
-ln -s o$file $pkgdir/usr/bin/$file
-echo ".so man1/o${file}.1" > $pkgdir/usr/share/man/man1/${file}.1
-  done
-  ln -v -sf libosp.so $pkgdir/usr/lib/libsp.so
-
-  # Rename sx to sgml2xml; FS#49792
-  mv $pkgdir/usr/bin/sx $pkgdir/usr/bin/sgml2xml
-  mv $pkgdir/usr/share/man/man1/{sx,sgml2xml}.1
-  
-  install -D -m644 COPYING "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: opensp/repos/extra-x86_64/PKGBUILD (from rev 311597, 
opensp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 23:03:58 UTC (rev 311598)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: dorphell 
+# Contributor: Tom Newsom 
+
+pkgname=opensp
+pkgver=1.5.2
+pkgrel=8
+pkgdesc="A library and a set of tools for validating, parsing and manipulating 
SGML and XML documents"
+arch=('x86_64')
+url="http://openjade.sourceforge.net/;
+license=('BSD')
+depends=('sgml-common' 'perl')
+makedepends=('xmlto' 'docbook-xsl')
+source=("https://downloads.sourceforge.net/project/openjade/opensp/$pkgver/OpenSP-$pkgver.tar.gz;)
+sha256sums=('57f4898498a368918b0d49c826aa434bb5b703d2c3b169beb348016ab25617ce')
+
+build() {
+  cd OpenSP-$pkgver
+  ./configure --prefix=/usr \
+--mandir=/usr/share/man \
+--disable-nls \
+--enable-http \
+--enable-default-catalog=/etc/sgml/catalog \
+--enable-default-search-path=/usr/share/sgml:/usr/share/xml \
+--enable-xml-messages
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd OpenSP-$pkgver
+  make check || /bin/true
+}
+
+package() {
+  cd OpenSP-$pkgver
+  make DESTDIR="${pkgdir}" install
+
+  # add symlinks for compatibility with jade, see FS#49775
+  for file in nsgmls sgmlnorm spam spcat spent sx ; do
+ln -s o$file $pkgdir/usr/bin/$file
+echo ".so man1/o${file}.1" > $pkgdir/usr/share/man/man1/${file}.1
+  done
+  ln -v -sf libosp.so $pkgdir/usr/lib/libsp.so
+
+  # Rename sx to sgml2xml; FS#49792
+  mv $pkgdir/usr/bin/sx $pkgdir/usr/bin/sgml2xml
+  mv $pkgdir/usr/share/man/man1/{sx,sgml2xml}.1
+  
+  install -D -m644 COPYING "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in linux-hardened/trunk (3 files)

2017-12-03 Thread Levente Polyak via arch-commits
Date: Sunday, December 3, 2017 @ 23:04:21
  Author: anthraxx
Revision: 272055

upgpkg: linux-hardened 4.14.3.a-1

Added:
  
linux-hardened/trunk/0001-platform-x86-hp-wmi-Fix-tablet-mode-detection-for-co.patch
Modified:
  linux-hardened/trunk/PKGBUILD
  linux-hardened/trunk/config.x86_64

-+
 0001-platform-x86-hp-wmi-Fix-tablet-mode-detection-for-co.patch |   38 +
 PKGBUILD|   33 -
 config.x86_64   |  303 
+-
 3 files changed, 237 insertions(+), 137 deletions(-)

Added: 0001-platform-x86-hp-wmi-Fix-tablet-mode-detection-for-co.patch
===
--- 0001-platform-x86-hp-wmi-Fix-tablet-mode-detection-for-co.patch 
(rev 0)
+++ 0001-platform-x86-hp-wmi-Fix-tablet-mode-detection-for-co.patch 
2017-12-03 23:04:21 UTC (rev 272055)
@@ -0,0 +1,38 @@
+From 34bc85a1577be5f2f6ccd2c17fc5870c83ab510b Mon Sep 17 00:00:00 2001
+Message-Id: 
<34bc85a1577be5f2f6ccd2c17fc5870c83ab510b.1510965801.git.jan.steff...@gmail.com>
+From: =?UTF-8?q?Stefan=20Br=C3=BCns?= 
+Date: Fri, 3 Nov 2017 03:01:53 +0100
+Subject: [PATCH] platform/x86: hp-wmi: Fix tablet mode detection for
+ convertibles
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Commit f9cf3b2880cc ("platform/x86: hp-wmi: Refactor dock and tablet
+state fetchers") consolidated the methods for docking and laptop mode
+detection, but omitted to apply the correct mask for the laptop mode
+(it always uses the constant for docking).
+
+Fixes: f9cf3b2880cc ("platform/x86: hp-wmi: Refactor dock and tablet state 
fetchers")
+Signed-off-by: Stefan Brüns 
+Signed-off-by: Andy Shevchenko 
+---
+ drivers/platform/x86/hp-wmi.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/drivers/platform/x86/hp-wmi.c b/drivers/platform/x86/hp-wmi.c
+index b4ed3dc983d5229c..b4224389febebe46 100644
+--- a/drivers/platform/x86/hp-wmi.c
 b/drivers/platform/x86/hp-wmi.c
+@@ -297,7 +297,7 @@ static int hp_wmi_hw_state(int mask)
+   if (state < 0)
+   return state;
+ 
+-  return state & 0x1;
++  return !!(state & mask);
+ }
+ 
+ static int __init hp_wmi_bios_2008_later(void)
+-- 
+2.15.0
+

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 22:48:22 UTC (rev 272054)
+++ PKGBUILD2017-12-03 23:04:21 UTC (rev 272055)
@@ -1,15 +1,15 @@
-# $Id$
-# Maintainer: Daniel Micay 
+# Maintainer: Levente Polyak 
+# Contributor: Daniel Micay 
 # Contributor: Tobias Powalowski 
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-_srcname=linux-4.13
-_pkgver=4.13.16
-pkgver=$_pkgver.a
+_srcname=linux-4.14
+_pkgver=4.14.3
+pkgver=${_pkgver}.a
 pkgrel=1
+url='https://github.com/copperhead/linux-hardened'
 arch=('x86_64')
-url="https://github.com/copperhead/linux-hardened;
 license=('GPL2')
 makedepends=('xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc' 'libelf')
 options=('!strip')
@@ -17,24 +17,26 @@
 https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.sign
 https://www.kernel.org/pub/linux/kernel/v4.x/patch-${_pkgver}.xz
 https://www.kernel.org/pub/linux/kernel/v4.x/patch-${_pkgver}.sign
-
https://github.com/thestinger/$pkgbase/releases/download/$pkgver/$pkgbase-$pkgver.patch{,.sig}
+
https://github.com/thestinger/${pkgbase}/releases/download/${pkgver}/${pkgbase}-${pkgver}.patch{,.sig}
 # the main kernel config files
 config.x86_64
 # pacman hook for initramfs regeneration
 90-linux.hook
 # standard config files for mkinitcpio ramdisk
-linux.preset)
+linux.preset
+0001-platform-x86-hp-wmi-Fix-tablet-mode-detection-for-co.patch)
 replaces=('linux-grsec')
 
-sha256sums=('2db3d6066c3ad93eb25b973a3d2951e022a7e975ee2fa7cbe5bddf84d9a49a2c'
+sha256sums=('f81d59477e90a130857ce18dc02f4fbe5725854911db1e7ba770c7cd350f96a7'
 'SKIP'
-'f24980db582b9b3d3ded4c96b16f8c64bc435fca59b91cf3f224611b68216d8a'
+'e13995c11d0c2d3379c887666dbfaca619200fb8853db6d5d67f97d47fd959b7'
 'SKIP'
-'0b8f413fcde911fe4f5bae876746bd0cad511e55ed28d2095d69b7dcb1147ae4'
+'3e75e3887e1388d8fe3eafd59a2a3457a9e0e043ee50368639851f8c0a4083bf'
 'SKIP'
-'c58d6004ef2b7e4a8a3f8e5cbdd2e837351142f855b8fdd6ec9979d8fb93cd6d'
+'ba3211b4c97b5d9547b56ee786539cd055c1bce93a4b7d7250cdca2abfb5333c'
 '834bd254b56ab71d73f59b3221f056c72f559553c04718e350ab2a3e2991afe0'
-

[arch-commits] Commit in pango-perl/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 23:00:09
  Author: jgc
Revision: 311596

archrelease: copy trunk to extra-x86_64

Added:
  pango-perl/repos/extra-x86_64/PKGBUILD
(from rev 311595, pango-perl/trunk/PKGBUILD)
Deleted:
  pango-perl/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   68 ++---
 1 file changed, 34 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 22:59:53 UTC (rev 311595)
+++ PKGBUILD2017-12-03 23:00:09 UTC (rev 311596)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=pango-perl
-pkgver=1.227
-pkgrel=8
-pkgdesc="Perl bindings for Pango"
-arch=(i686 x86_64)
-license=('LGPL')
-url="http://gtk2-perl.sourceforge.net/;
-makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
-depends=('pango' 'glib-perl' 'cairo-perl')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Pango-${pkgver}.tar.gz)
-md5sums=('cc5d7ca7780adcc5cee7cc41f2fc0440')
-
-build() {
-  cd Pango-$pkgver
-  export PERL_USE_UNSAFE_INC=1
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd Pango-$pkgver
-  make install DESTDIR="${pkgdir}"
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: pango-perl/repos/extra-x86_64/PKGBUILD (from rev 311595, 
pango-perl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 23:00:09 UTC (rev 311596)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=pango-perl
+pkgver=1.227
+pkgrel=8
+pkgdesc="Perl bindings for Pango"
+arch=(x86_64)
+license=('LGPL')
+url="http://gtk2-perl.sourceforge.net/;
+makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
+depends=('pango' 'glib-perl' 'cairo-perl')
+options=('!emptydirs')
+source=(https://downloads.sourceforge.net/sourceforge/gtk2-perl/Pango-${pkgver}.tar.gz)
+sha256sums=('34b0a422df3fecd7597587048552457d48ae764c43bbefd2a9d62ceb6c8bac71')
+
+build() {
+  cd Pango-$pkgver
+  export PERL_USE_UNSAFE_INC=1
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd Pango-$pkgver
+  make install DESTDIR="${pkgdir}"
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}


[arch-commits] Commit in pango-perl/trunk (PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:59:53
  Author: jgc
Revision: 311595

Switch to https/sha256

Modified:
  pango-perl/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 22:57:38 UTC (rev 311594)
+++ PKGBUILD2017-12-03 22:59:53 UTC (rev 311595)
@@ -11,8 +11,8 @@
 makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends')
 depends=('pango' 'glib-perl' 'cairo-perl')
 options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/Pango-${pkgver}.tar.gz)
-md5sums=('cc5d7ca7780adcc5cee7cc41f2fc0440')
+source=(https://downloads.sourceforge.net/sourceforge/gtk2-perl/Pango-${pkgver}.tar.gz)
+sha256sums=('34b0a422df3fecd7597587048552457d48ae764c43bbefd2a9d62ceb6c8bac71')
 
 build() {
   cd Pango-$pkgver


[arch-commits] Commit in libxklavier/trunk (PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:57:30
  Author: jgc
Revision: 311593

upgpkg: libxklavier 5.4-2

Switch to HTTPS, use git instead of downloading a snapshot from cgit

Modified:
  libxklavier/trunk/PKGBUILD

--+
 PKGBUILD |   20 +---
 1 file changed, 13 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 22:52:02 UTC (rev 311592)
+++ PKGBUILD2017-12-03 22:57:30 UTC (rev 311593)
@@ -4,19 +4,25 @@
 
 pkgname=libxklavier
 pkgver=5.4
-pkgrel=1
+pkgrel=2
 pkgdesc="High-level API for X Keyboard Extension"
 arch=(x86_64)
 license=('LGPL')
 depends=('glib2' 'libxkbfile' 'libxml2' 'xkeyboard-config' 'libxi' 'iso-codes')
-makedepends=('gobject-introspection' 'intltool' 'gtk-doc' 'libxfixes')
+makedepends=('gobject-introspection' 'intltool' 'gtk-doc' 'libxfixes' git)
 options=('!emptydirs')
-url="http://gswitchit.sourceforge.net;
-source=("http://cgit.freedesktop.org/$pkgname/snapshot/$pkgname-$pkgver.zip;)
-sha256sums=('d5d2c135e3227142f5b455b9ffdf3e05be4b1e85a6c2882f8e905cc30c362d3e')
+url="https://www.freedesktop.org/wiki/Software/LibXklavier/;
+_commit=396955bd2ba2db34a42b3807b03155fcc11dfe50  # tags/libxklavier-5.4^0
+source=("git+https://anongit.freedesktop.org/git/libxklavier#commit=$_commit;)
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^libxklavier-//;s/-/+/g'
+}
+
 build() {
-  cd "$pkgname-$pkgver"
+  cd "$pkgname"
   ./autogen.sh --prefix=/usr --with-xkb-bin-base=/usr/bin \
   --with-xkb-base=/usr/share/X11/xkb --disable-static --enable-gtk-doc
   make
@@ -23,6 +29,6 @@
 }
 
 package() {
-  cd "$pkgname-$pkgver"
+  cd "$pkgname"
   make DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in libxklavier/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:57:38
  Author: jgc
Revision: 311594

archrelease: copy trunk to extra-x86_64

Added:
  libxklavier/repos/extra-x86_64/PKGBUILD
(from rev 311593, libxklavier/trunk/PKGBUILD)
Deleted:
  libxklavier/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   62 +
 1 file changed, 34 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 22:57:30 UTC (rev 311593)
+++ PKGBUILD2017-12-03 22:57:38 UTC (rev 311594)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Arjan Timmerman 
-
-pkgname=libxklavier
-pkgver=5.4
-pkgrel=1
-pkgdesc="High-level API for X Keyboard Extension"
-arch=(i686 x86_64)
-license=('LGPL')
-depends=('glib2' 'libxkbfile' 'libxml2' 'xkeyboard-config' 'libxi' 'iso-codes')
-makedepends=('gobject-introspection' 'intltool' 'gtk-doc' 'libxfixes')
-options=('!emptydirs')
-url="http://gswitchit.sourceforge.net;
-source=("http://cgit.freedesktop.org/$pkgname/snapshot/$pkgname-$pkgver.zip;)
-sha256sums=('d5d2c135e3227142f5b455b9ffdf3e05be4b1e85a6c2882f8e905cc30c362d3e')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./autogen.sh --prefix=/usr --with-xkb-bin-base=/usr/bin \
-  --with-xkb-base=/usr/share/X11/xkb --disable-static --enable-gtk-doc
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: libxklavier/repos/extra-x86_64/PKGBUILD (from rev 311593, 
libxklavier/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 22:57:38 UTC (rev 311594)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Arjan Timmerman 
+
+pkgname=libxklavier
+pkgver=5.4
+pkgrel=2
+pkgdesc="High-level API for X Keyboard Extension"
+arch=(x86_64)
+license=('LGPL')
+depends=('glib2' 'libxkbfile' 'libxml2' 'xkeyboard-config' 'libxi' 'iso-codes')
+makedepends=('gobject-introspection' 'intltool' 'gtk-doc' 'libxfixes' git)
+options=('!emptydirs')
+url="https://www.freedesktop.org/wiki/Software/LibXklavier/;
+_commit=396955bd2ba2db34a42b3807b03155fcc11dfe50  # tags/libxklavier-5.4^0
+source=("git+https://anongit.freedesktop.org/git/libxklavier#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^libxklavier-//;s/-/+/g'
+}
+
+build() {
+  cd "$pkgname"
+  ./autogen.sh --prefix=/usr --with-xkb-bin-base=/usr/bin \
+  --with-xkb-base=/usr/share/X11/xkb --disable-static --enable-gtk-doc
+  make
+}
+
+package() {
+  cd "$pkgname"
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in mcpp/repos/extra-x86_64 (6 files)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:52:02
  Author: jgc
Revision: 311592

archrelease: copy trunk to extra-x86_64

Added:
  mcpp/repos/extra-x86_64/PKGBUILD
(from rev 311591, mcpp/trunk/PKGBUILD)
  mcpp/repos/extra-x86_64/fs28284.patch
(from rev 311591, mcpp/trunk/fs28284.patch)
  mcpp/repos/extra-x86_64/namlen.patch
(from rev 311591, mcpp/trunk/namlen.patch)
Deleted:
  mcpp/repos/extra-x86_64/PKGBUILD
  mcpp/repos/extra-x86_64/fs28284.patch
  mcpp/repos/extra-x86_64/namlen.patch

---+
 PKGBUILD  |   72 ++--
 fs28284.patch |  200 
 namlen.patch  |   22 +++---
 3 files changed, 149 insertions(+), 145 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 22:51:35 UTC (rev 311591)
+++ PKGBUILD2017-12-03 22:52:02 UTC (rev 311592)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Alexander Baldeck 
-# Contributor: Jan de Groot 
-
-pkgname=mcpp
-pkgver=2.7.2
-pkgrel=5
-pkgdesc="Matsui's CPP implementation precisely conformed to standards"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://mcpp.sourceforge.net;
-depends=('glibc')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz
-namlen.patch
-fs28284.patch)
-md5sums=('512de48c87ab023a69250edc7a0c7b05'
- '0bfc6177a58e912a9e23e368578dd3fe'
- 'ba668fc6996e538f2e0c096f9eb282ce')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/namlen.patch"
-  patch -Np1 -i "${srcdir}/fs28284.patch"
-  ./configure --prefix=/usr --enable-mcpplib --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -sf ../../doc/${pkgname}/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: mcpp/repos/extra-x86_64/PKGBUILD (from rev 311591, mcpp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 22:52:02 UTC (rev 311592)
@@ -0,0 +1,38 @@
+# $Id$
+# Contributor: Alexander Baldeck 
+# Maintainer: Jan de Groot 
+
+pkgname=mcpp
+pkgver=2.7.2
+pkgrel=6
+pkgdesc="Matsui's CPP implementation precisely conformed to standards"
+arch=('x86_64')
+license=('custom')
+url="http://mcpp.sourceforge.net;
+depends=('glibc')
+source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz
+namlen.patch
+fs28284.patch)
+sha256sums=('3b9b4421888519876c4fc68ade324a3bbd81ceeb7092ecdbbc2055099fcb8864'
+'ee8bf97c42150d2424a5984baec8227a44538e15c23cec93aabfc65daf9a6081'
+'27e42d8cae06327370cf0f9a8118d23a2f9368b87f24b38a9cb9c0c4eaeadb4e')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../namlen.patch
+  patch -Np1 -i ../fs28284.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-mcpplib --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  ln -sf ../../doc/${pkgname}/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: fs28284.patch
===
--- fs28284.patch   2017-12-03 22:51:35 UTC (rev 311591)
+++ fs28284.patch   2017-12-03 22:52:02 UTC (rev 311592)
@@ -1,100 +0,0 @@
-diff -c -r -N ../mcpp-2.7.2/src/internal.H ./src/internal.H
-*** ../mcpp-2.7.2/src/internal.H   2008-08-27 10:31:16.0 -0230
 ./src/internal.H   2009-12-17 21:01:35.0 -0330
-***
-*** 390,395 
 390,397 
-  extern char identifier[];   /* Lastly scanned name  */
-  extern IFINFO   ifstack[];  /* Information of #if nesting   */
-  extern char work_buf[];
-+ extern FILEINFO * sh_file;
-+ extern int  sh_line;
-  /* Temporary buffer for directive line and macro expansion  */
-  
-  /* main.c   */
-***
-*** 557,562 
-  #endif
-  #endif
-  
-! #if HOST_HAVE_STPCPY
-  extern char *   stpcpy( char * dest, const char * src);
-  #endif
 559,564 
-  #endif
-  #endif
-  
-! #if HOST_HAVE_STPCPY && !defined(stpcpy)
-  extern char *   stpcpy( char * dest, const char * src);
-  #endif
-diff -c -r -N ../mcpp-2.7.2/src/main.c ./src/main.c
-*** ../mcpp-2.7.2/src/main.c   2008-11-05 05:04:46.0 -0330
 ./src/main.c   2009-12-17 20:42:42.0 -0330
-***
-*** 326,331 
 326,333 
-  = FALSE;
-  option_flags.trig = TRIGRAPHS_INIT;
-  option_flags.dig = DIGRAPHS_INIT;
-+ sh_file = NULL;
-+ sh_line = 0;
-  }
-  
-  int mcpp_lib_main
-diff -c -r -N ../mcpp-2.7.2/src/support.c ./src/support.c
-*** 

[arch-commits] Commit in mcpp/trunk (PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:51:35
  Author: jgc
Revision: 311591

Switch to https and sha256sums. Move patches to prepare()
upgpkg: mcpp 2.7.2-6

Modified:
  mcpp/trunk/PKGBUILD

--+
 PKGBUILD |   26 +++---
 1 file changed, 15 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 22:47:29 UTC (rev 311590)
+++ PKGBUILD2017-12-03 22:51:35 UTC (rev 311591)
@@ -1,32 +1,36 @@
 # $Id$
-# Maintainer: Alexander Baldeck 
-# Contributor: Jan de Groot 
+# Contributor: Alexander Baldeck 
+# Maintainer: Jan de Groot 
 
 pkgname=mcpp
 pkgver=2.7.2
-pkgrel=5
+pkgrel=6
 pkgdesc="Matsui's CPP implementation precisely conformed to standards"
 arch=('x86_64')
 license=('custom')
 url="http://mcpp.sourceforge.net;
 depends=('glibc')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz
+source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz
 namlen.patch
 fs28284.patch)
-md5sums=('512de48c87ab023a69250edc7a0c7b05'
- '0bfc6177a58e912a9e23e368578dd3fe'
- 'ba668fc6996e538f2e0c096f9eb282ce')
+sha256sums=('3b9b4421888519876c4fc68ade324a3bbd81ceeb7092ecdbbc2055099fcb8864'
+'ee8bf97c42150d2424a5984baec8227a44538e15c23cec93aabfc65daf9a6081'
+'27e42d8cae06327370cf0f9a8118d23a2f9368b87f24b38a9cb9c0c4eaeadb4e')
 
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../namlen.patch
+  patch -Np1 -i ../fs28284.patch
+}
+
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/namlen.patch"
-  patch -Np1 -i "${srcdir}/fs28284.patch"
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr --enable-mcpplib --disable-static
   make
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd $pkgname-$pkgver
   make DESTDIR="${pkgdir}" install
 
   install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"


[arch-commits] Commit in mcp-plugins/repos (2 files)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 22:48:22
  Author: dvzrv
Revision: 272054

archrelease: copy trunk to community-testing-x86_64

Added:
  mcp-plugins/repos/community-testing-x86_64/
  mcp-plugins/repos/community-testing-x86_64/PKGBUILD
(from rev 272053, mcp-plugins/trunk/PKGBUILD)

--+
 PKGBUILD |   28 
 1 file changed, 28 insertions(+)

Copied: mcp-plugins/repos/community-testing-x86_64/PKGBUILD (from rev 272053, 
mcp-plugins/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-03 22:48:22 UTC (rev 272054)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+
+pkgname=mcp-plugins
+pkgver=0.4.0
+pkgrel=3
+pkgdesc="A set of LADSPA filters plugins"
+arch=('x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/;
+license=('GPL2')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=("${url}../downloads/MCP-plugins-${pkgver}.tar.bz2")
+sha512sums=('8a5e431ea539a46ce3d3f554fae21fc09028d898e24c316ab1b0d3d6540650107a1d10ce9a4cb6d1f0d2fd8868e2b43cf439f47ed6d90fb066375bbf3883d344')
+
+build() {
+  cd "MCP-plugins-${pkgver}"
+  make
+}
+
+package() {
+  cd "MCP-plugins-${pkgver}"
+  # install plugins
+  install -t "${pkgdir}/usr/lib/ladspa/" -Dm755 *.so
+  install -Dm644 AUTHORS "${pkgdir}/usr/share/doc/${pkgname}/AUTHORS"
+  install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
+}


[arch-commits] Commit in mcp-plugins/trunk (PKGBUILD)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 22:48:15
  Author: dvzrv
Revision: 272053

upgpkg: mcp-plugins 0.4.0-3

Updating maintainer. Switching to correct license (GPL2). Switching to 
sha512sums.
Installing various docs. Minor fixes.

Modified:
  mcp-plugins/trunk/PKGBUILD

--+
 PKGBUILD |   23 ---
 1 file changed, 12 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 22:38:38 UTC (rev 272052)
+++ PKGBUILD2017-12-03 22:48:15 UTC (rev 272053)
@@ -1,27 +1,28 @@
 # $Id$
-# Maintainer : speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 
 pkgname=mcp-plugins
 pkgver=0.4.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A set of LADSPA filters plugins"
 arch=('x86_64')
 url="http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/;
-license=('GPL')
+license=('GPL2')
 groups=('ladspa-plugins')
 depends=('ladspa')
-source=("${url}../downloads/MCP-plugins-$pkgver.tar.bz2")
-md5sums=('2a0fc50281a150eb781dbcfe2fb9c532')
+source=("${url}../downloads/MCP-plugins-${pkgver}.tar.bz2")
+sha512sums=('8a5e431ea539a46ce3d3f554fae21fc09028d898e24c316ab1b0d3d6540650107a1d10ce9a4cb6d1f0d2fd8868e2b43cf439f47ed6d90fb066375bbf3883d344')
 
 build() {
-  cd "$srcdir/MCP-plugins-$pkgver"
+  cd "MCP-plugins-${pkgver}"
   make
 }
 
 package() {
-  cd "$srcdir/MCP-plugins-$pkgver"
-
-  # plugins
-  install -d "$pkgdir/usr/lib/ladspa"
-  install -Dm755 *.so "$pkgdir/usr/lib/ladspa"
+  cd "MCP-plugins-${pkgver}"
+  # install plugins
+  install -t "${pkgdir}/usr/lib/ladspa/" -Dm755 *.so
+  install -Dm644 AUTHORS "${pkgdir}/usr/share/doc/${pkgname}/AUTHORS"
+  install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
 }


[arch-commits] Commit in mod_fcgid/repos/extra-x86_64 (6 files)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:47:29
  Author: jgc
Revision: 311590

archrelease: copy trunk to extra-x86_64

Added:
  mod_fcgid/repos/extra-x86_64/30_fix-bts-691929.patch
(from rev 311589, mod_fcgid/trunk/30_fix-bts-691929.patch)
  mod_fcgid/repos/extra-x86_64/PKGBUILD
(from rev 311589, mod_fcgid/trunk/PKGBUILD)
  mod_fcgid/repos/extra-x86_64/large-file-upload.patch
(from rev 311589, mod_fcgid/trunk/large-file-upload.patch)
Deleted:
  mod_fcgid/repos/extra-x86_64/30_fix-bts-691929.patch
  mod_fcgid/repos/extra-x86_64/PKGBUILD
  mod_fcgid/repos/extra-x86_64/large-file-upload.patch

-+
 30_fix-bts-691929.patch |  134 +--
 PKGBUILD|   76 +++
 large-file-upload.patch |  224 +++---
 3 files changed, 217 insertions(+), 217 deletions(-)

Deleted: 30_fix-bts-691929.patch
===
--- 30_fix-bts-691929.patch 2017-12-03 22:47:13 UTC (rev 311589)
+++ 30_fix-bts-691929.patch 2017-12-03 22:47:29 UTC (rev 311590)
@@ -1,67 +0,0 @@
-Description: Patch to set CONTENT_LENGTH FCGI params based on actual request 
body
-Author: Dominic Benson
-Bug: https://issues.apache.org/bugzilla/show_bug.cgi?id=53332
-
-diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' 
'--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' 
libapache2-mod-fcgid-2.3.6~/modules/fcgid/fcgid_spawn_ctl.c 
libapache2-mod-fcgid-2.3.6/modules/fcgid/fcgid_spawn_ctl.c
 mod_fcgid-2.3.6.orig/modules/fcgid/fcgid_bridge.c  2012-05-30 
09:53:20.928783540 +0100
-+++ mod_fcgid-2.3.6/modules/fcgid/fcgid_bridge.c   2012-05-30 
18:04:01.648850877 +0100
-@@ -662,6 +662,11 @@ static int add_request_body(request_rec
- apr_brigade_destroy(input_brigade);
- apr_brigade_destroy(tmp_brigade);
- 
-+char sizestr[21];
-+apr_snprintf(sizestr, sizeof sizestr, "%" APR_OFF_T_FMT, request_size);
-+apr_table_set(r->subprocess_env, "CONTENT_LENGTH", sizestr);
-+apr_table_unset(r->subprocess_env, "HTTP_TRANSFER_ENCODING");
-+
- /* Append an empty body stdin header */
- stdin_request_header = apr_bucket_alloc(sizeof(FCGI_Header),
- r->connection->bucket_alloc);
-@@ -682,31 +687,37 @@ static int add_request_body(request_rec
- int bridge_request(request_rec * r, int role, fcgid_cmd_conf *cmd_conf)
- {
- apr_bucket_brigade *output_brigade;
-+apr_bucket_brigade *header_brigade;
- apr_bucket *bucket_eos;
--char **envp = ap_create_environment(r->pool,
--r->subprocess_env);
- int rc;
- 
- /* Create brigade for the request to fastcgi server */
- output_brigade =
- apr_brigade_create(r->pool, r->connection->bucket_alloc);
-+header_brigade =
-+apr_brigade_create(r->pool, r->connection->bucket_alloc);
-+
-+if (role == FCGI_RESPONDER) {
-+rc = add_request_body(r, r->pool, output_brigade);
-+if (rc) {
-+return rc;
-+}
-+}
-+
-+char **envp = ap_create_environment(r->pool,
-+r->subprocess_env);
- 
- /* Build the begin request and environ request, append them to 
output_brigade */
- if (!build_begin_block
--(role, r, r->connection->bucket_alloc, output_brigade)
-+(role, r, r->connection->bucket_alloc, header_brigade)
- || !build_env_block(r, envp, r->connection->bucket_alloc,
--output_brigade)) {
-+header_brigade)) {
- ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r,
-   "mod_fcgid: can't build begin or env request");
- return HTTP_INTERNAL_SERVER_ERROR;
- }
- 
--if (role == FCGI_RESPONDER) {
--rc = add_request_body(r, r->pool, output_brigade);
--if (rc) {
--return rc;
--}
--}
-+APR_BRIGADE_PREPEND(output_brigade,header_brigade);
- 
- /* The eos bucket now */
- bucket_eos = apr_bucket_eos_create(r->connection->bucket_alloc);

Copied: mod_fcgid/repos/extra-x86_64/30_fix-bts-691929.patch (from rev 311589, 
mod_fcgid/trunk/30_fix-bts-691929.patch)
===
--- 30_fix-bts-691929.patch (rev 0)
+++ 30_fix-bts-691929.patch 2017-12-03 22:47:29 UTC (rev 311590)
@@ -0,0 +1,67 @@
+Description: Patch to set CONTENT_LENGTH FCGI params based on actual request 
body
+Author: Dominic Benson
+Bug: https://issues.apache.org/bugzilla/show_bug.cgi?id=53332
+
+diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' 
'--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' 
libapache2-mod-fcgid-2.3.6~/modules/fcgid/fcgid_spawn_ctl.c 
libapache2-mod-fcgid-2.3.6/modules/fcgid/fcgid_spawn_ctl.c
+--- mod_fcgid-2.3.6.orig/modules/fcgid/fcgid_bridge.c  2012-05-30 

[arch-commits] Commit in mod_fcgid/trunk (PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:47:13
  Author: jgc
Revision: 311589

Change http urls to https

Modified:
  mod_fcgid/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 22:44:59 UTC (rev 311588)
+++ PKGBUILD2017-12-03 22:47:13 UTC (rev 311589)
@@ -7,9 +7,9 @@
 pkgdesc="A FastCGI module for Apache HTTP Server."
 license=('APACHE')
 arch=('x86_64')
-url="http://httpd.apache.org/mod_fcgid/;
+url="https://httpd.apache.org/mod_fcgid/;
 depends=('apache')
-source=(http://www.apache.org/dist/httpd/mod_fcgid/mod_fcgid-$pkgver.tar.bz2{,.asc}
+source=(https://www.apache.org/dist/httpd/mod_fcgid/mod_fcgid-$pkgver.tar.bz2{,.asc}
 30_fix-bts-691929.patch
 large-file-upload.patch)
 sha1sums=('f0b6d87dfcfe18b318905a3f91274051f3f17945'


[arch-commits] Commit in gmime3/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:44:59
  Author: jgc
Revision: 311588

archrelease: copy trunk to extra-x86_64

Added:
  gmime3/repos/extra-x86_64/PKGBUILD
(from rev 311587, gmime3/trunk/PKGBUILD)
Deleted:
  gmime3/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   90 ++---
 1 file changed, 45 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 22:44:55 UTC (rev 311587)
+++ PKGBUILD2017-12-03 22:44:59 UTC (rev 311588)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Ben 
-
-pkgname=gmime3
-pkgver=3.0.4
-pkgrel=1
-pkgdesc="A C/C++ MIME creation and parser library with support for S/MIME, 
PGP, and Unix mbox spools"
-arch=(x86_64)
-license=(GPL)
-url="https://github.com/jstedfast/gmime;
-depends=(glib2 gpgme zlib)
-makedepends=(gobject-introspection gtk-doc git vala docbook-utils)
-_commit=a2ccb7b8d0f9e3a772139b8d2371e47e2c352a04  # tags/3.0.4^0
-source=("git+https://github.com/jstedfast/gmime#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd gmime
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd gmime
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd gmime
-
-  ./configure --prefix=/usr \
---program-prefix=$pkgname \
---enable-gtk-doc \
---enable-smime \
---disable-static
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd gmime
-  make DESTDIR="$pkgdir" install
-}

Copied: gmime3/repos/extra-x86_64/PKGBUILD (from rev 311587, 
gmime3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 22:44:59 UTC (rev 311588)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Ben 
+
+pkgname=gmime3
+pkgver=3.0.5
+pkgrel=1
+pkgdesc="A C/C++ MIME creation and parser library with support for S/MIME, 
PGP, and Unix mbox spools"
+arch=(x86_64)
+license=(GPL)
+url="https://github.com/jstedfast/gmime;
+depends=(glib2 gpgme zlib)
+makedepends=(gobject-introspection gtk-doc git vala docbook-utils)
+_commit=5f7abc964c5e166d58cfa345b3bca58f3d2e88f4  # tags/3.0.5^0
+source=("git+https://github.com/jstedfast/gmime#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd gmime
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd gmime
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd gmime
+
+  ./configure --prefix=/usr \
+--program-prefix=$pkgname \
+--enable-gtk-doc \
+--enable-smime \
+--disable-static
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd gmime
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in gmime3/trunk (PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:44:55
  Author: jgc
Revision: 311587

upgpkg: gmime3 3.0.5-1

Modified:
  gmime3/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 22:41:16 UTC (rev 311586)
+++ PKGBUILD2017-12-03 22:44:55 UTC (rev 311587)
@@ -3,7 +3,7 @@
 # Contributor: Ben 
 
 pkgname=gmime3
-pkgver=3.0.4
+pkgver=3.0.5
 pkgrel=1
 pkgdesc="A C/C++ MIME creation and parser library with support for S/MIME, 
PGP, and Unix mbox spools"
 arch=(x86_64)
@@ -11,7 +11,7 @@
 url="https://github.com/jstedfast/gmime;
 depends=(glib2 gpgme zlib)
 makedepends=(gobject-introspection gtk-doc git vala docbook-utils)
-_commit=a2ccb7b8d0f9e3a772139b8d2371e47e2c352a04  # tags/3.0.4^0
+_commit=5f7abc964c5e166d58cfa345b3bca58f3d2e88f4  # tags/3.0.5^0
 source=("git+https://github.com/jstedfast/gmime#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in nghttp2/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:41:16
  Author: jgc
Revision: 311586

archrelease: copy trunk to testing-x86_64

Added:
  nghttp2/repos/testing-x86_64/
  nghttp2/repos/testing-x86_64/PKGBUILD
(from rev 311585, nghttp2/trunk/PKGBUILD)

--+
 PKGBUILD |   48 
 1 file changed, 48 insertions(+)

Copied: nghttp2/repos/testing-x86_64/PKGBUILD (from rev 311585, 
nghttp2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-03 22:41:16 UTC (rev 311586)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=nghttp2
+pkgver=1.28.0
+pkgrel=1
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(openssl libev zlib libxml2 jansson jemalloc c-ares libnghttp2 
libsystemd)
+options=(!emptydirs)
+source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz)
+backup=(
+  etc/nghttpx/nghttpx.conf
+  etc/logrotate.d/nghttpx
+)
+sha256sums=('0d6c3f00614deca3935e42a27f6ad0ea87c31d8c1baa3a9c52755955c599fd8d')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--with-spdylay=no \
+--disable-examples \
+--disable-python-bindings
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  make -C lib DESTDIR="$pkgdir" uninstall
+
+  install -Dm644 contrib/nghttpx.service 
"$pkgdir/usr/lib/systemd/system/nghttpx.service"
+  install -Dm644 contrib/nghttpx-logrotate "$pkgdir/etc/logrotate.d/nghttpx"
+  install -Dm644 nghttpx.conf.sample "$pkgdir/etc/nghttpx/nghttpx.conf"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/nghttp2/COPYING"
+}


[arch-commits] Commit in nghttp2/trunk (PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:41:12
  Author: jgc
Revision: 311585

upgpkg: nghttp2 1.28.0-1

Modified:
  nghttp2/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 22:39:20 UTC (rev 311584)
+++ PKGBUILD2017-12-03 22:41:12 UTC (rev 311585)
@@ -3,7 +3,7 @@
 # Contributor: Zhuoyun Wei 
 
 pkgname=nghttp2
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
 arch=(x86_64)
@@ -16,7 +16,7 @@
   etc/nghttpx/nghttpx.conf
   etc/logrotate.d/nghttpx
 )
-sha256sums=('e83819560952a3dc3c8d96c46f60745408f46f5f384168c90b9e3dfa53b2c2c8')
+sha256sums=('0d6c3f00614deca3935e42a27f6ad0ea87c31d8c1baa3a9c52755955c599fd8d')
 
 build() {
   cd nghttp2-$pkgver


[arch-commits] Commit in libnghttp2/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:39:20
  Author: jgc
Revision: 311584

archrelease: copy trunk to testing-x86_64

Added:
  libnghttp2/repos/testing-x86_64/
  libnghttp2/repos/testing-x86_64/PKGBUILD
(from rev 311583, libnghttp2/trunk/PKGBUILD)

--+
 PKGBUILD |   40 
 1 file changed, 40 insertions(+)

Copied: libnghttp2/repos/testing-x86_64/PKGBUILD (from rev 311583, 
libnghttp2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-03 22:39:20 UTC (rev 311584)
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 289632 2017-02-27 17:36:38Z anatolik $
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=libnghttp2
+pkgver=1.28.0
+pkgrel=1
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(glibc)
+conflicts=('nghttp2<1.20.0-2')
+source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz)
+sha256sums=('0d6c3f00614deca3935e42a27f6ad0ea87c31d8c1baa3a9c52755955c599fd8d')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--with-spdylay=no \
+--disable-examples \
+--disable-python-bindings \
+--enable-lib-only
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver/lib
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../COPYING "$pkgdir/usr/share/licenses/libnghttp2/COPYING"
+}


[arch-commits] Commit in libnghttp2/trunk (PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:39:16
  Author: jgc
Revision: 311583

upgpkg: libnghttp2 1.28.0-1

Modified:
  libnghttp2/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 22:37:42 UTC (rev 311582)
+++ PKGBUILD2017-12-03 22:39:16 UTC (rev 311583)
@@ -3,7 +3,7 @@
 # Contributor: Zhuoyun Wei 
 
 pkgname=libnghttp2
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
 arch=(x86_64)
@@ -12,7 +12,7 @@
 depends=(glibc)
 conflicts=('nghttp2<1.20.0-2')
 
source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz)
-sha256sums=('e83819560952a3dc3c8d96c46f60745408f46f5f384168c90b9e3dfa53b2c2c8')
+sha256sums=('0d6c3f00614deca3935e42a27f6ad0ea87c31d8c1baa3a9c52755955c599fd8d')
 
 build() {
   cd nghttp2-$pkgver


[arch-commits] Commit in libltc/repos (2 files)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 22:38:38
  Author: dvzrv
Revision: 272052

archrelease: copy trunk to community-testing-x86_64

Added:
  libltc/repos/community-testing-x86_64/
  libltc/repos/community-testing-x86_64/PKGBUILD
(from rev 272051, libltc/trunk/PKGBUILD)

--+
 PKGBUILD |   26 ++
 1 file changed, 26 insertions(+)

Copied: libltc/repos/community-testing-x86_64/PKGBUILD (from rev 272051, 
libltc/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-03 22:38:38 UTC (rev 272052)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: DrZaius 
+
+pkgname=libltc
+pkgver=1.3.0
+pkgrel=2
+pkgdesc="Linear/Logitudinal Time Code (LTC) Library"
+arch=('x86_64')
+url="https://x42.github.io/libltc/;
+license=('GPL3')
+depends=('glibc')
+source=("https://github.com/x42/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('c36a1c6b87429a0a541c958f9683f3ef5b4067a225f3a9a283123b7933386c88fd1a156e0582306e4cc1144a15ec2dadcbb2908c4d4f8678d794caf7f8bbb1fb')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}/" install
+}


[arch-commits] Commit in libltc/trunk (PKGBUILD)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 22:38:30
  Author: dvzrv
Revision: 272051

upgpkg: libltc 1.3.0-2

Updating maintainer. Switching to https for url. Switching to sha512sums. Minor 
fixes.

Modified:
  libltc/trunk/PKGBUILD

--+
 PKGBUILD |   17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 22:30:58 UTC (rev 272050)
+++ PKGBUILD2017-12-03 22:38:30 UTC (rev 272051)
@@ -1,25 +1,26 @@
 # $Id$
-# Maintainer : speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 # Contributor: DrZaius 
 
 pkgname=libltc
 pkgver=1.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Linear/Logitudinal Time Code (LTC) Library"
 arch=('x86_64')
-url="http://x42.github.io/libltc/;
+url="https://x42.github.io/libltc/;
 license=('GPL3')
 depends=('glibc')
-source=("https://github.com/x42/libltc/releases/download/v$pkgver/libltc-$pkgver.tar.gz;)
-md5sums=('7c95bfbf0240b9ab34dc5730311a8307')
+source=("https://github.com/x42/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('c36a1c6b87429a0a541c958f9683f3ef5b4067a225f3a9a283123b7933386c88fd1a156e0582306e4cc1144a15ec2dadcbb2908c4d4f8678d794caf7f8bbb1fb')
 
 build() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}/" install
 }


[arch-commits] Commit in wildmidi/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:37:42
  Author: jgc
Revision: 311582

archrelease: copy trunk to extra-x86_64

Added:
  wildmidi/repos/extra-x86_64/PKGBUILD
(from rev 311581, wildmidi/trunk/PKGBUILD)
Deleted:
  wildmidi/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 22:37:38 UTC (rev 311581)
+++ PKGBUILD2017-12-03 22:37:42 UTC (rev 311582)
@@ -1,30 +0,0 @@
-# Maintainer: Jan de Groot 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Panagiotis Papadopoulos
-
-pkgname=wildmidi
-pkgver=0.4.1
-pkgrel=1
-pkgdesc='Open Source MIDI Synthesizer'
-arch=('i686' 'x86_64')
-url="https://www.mindwerks.net/projects/wildmidi/;
-license=('LGPL3')
-depends=('alsa-lib')
-makedepends=('cmake')
-source=(https://github.com/psi29a/wildmidi/archive/wildmidi-${pkgver}.tar.gz)
-sha256sums=('880f1cb5bf68589915a82a8e603ff561bdda7ddb5864c15ad28b5428d4abf9ea')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake -D CMAKE_INSTALL_PREFIX=/usr ../$pkgname-$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: wildmidi/repos/extra-x86_64/PKGBUILD (from rev 311581, 
wildmidi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 22:37:42 UTC (rev 311582)
@@ -0,0 +1,30 @@
+# Maintainer: Jan de Groot 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Panagiotis Papadopoulos
+
+pkgname=wildmidi
+pkgver=0.4.2
+pkgrel=1
+pkgdesc='Open Source MIDI Synthesizer'
+arch=('x86_64')
+url="https://www.mindwerks.net/projects/wildmidi/;
+license=('LGPL3')
+depends=('alsa-lib')
+makedepends=('cmake')
+source=(https://github.com/psi29a/wildmidi/archive/wildmidi-${pkgver}.tar.gz)
+sha256sums=('551d43cb6de6019885f933a20b6f3205a92814f50da8b0d8bceac002b9a8109d')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake -D CMAKE_INSTALL_PREFIX=/usr ../$pkgname-$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in wildmidi/trunk (PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:37:38
  Author: jgc
Revision: 311581

upgpkg: wildmidi 0.4.2-1

Modified:
  wildmidi/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 22:36:20 UTC (rev 311580)
+++ PKGBUILD2017-12-03 22:37:38 UTC (rev 311581)
@@ -3,7 +3,7 @@
 # Contributor: Panagiotis Papadopoulos
 
 pkgname=wildmidi
-pkgver=0.4.1
+pkgver=0.4.2
 pkgrel=1
 pkgdesc='Open Source MIDI Synthesizer'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('alsa-lib')
 makedepends=('cmake')
 source=(https://github.com/psi29a/wildmidi/archive/wildmidi-${pkgver}.tar.gz)
-sha256sums=('880f1cb5bf68589915a82a8e603ff561bdda7ddb5864c15ad28b5428d4abf9ea')
+sha256sums=('551d43cb6de6019885f933a20b6f3205a92814f50da8b0d8bceac002b9a8109d')
 
 prepare() {
   mkdir build


[arch-commits] Commit in xfce4-pulseaudio-plugin/repos/extra-x86_64 (2 files)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:36:20
  Author: jgc
Revision: 311580

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-pulseaudio-plugin/repos/extra-x86_64/PKGBUILD
(from rev 311579, xfce4-pulseaudio-plugin/trunk/PKGBUILD)
Deleted:
  xfce4-pulseaudio-plugin/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  100 ++---
 1 file changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 22:36:14 UTC (rev 311579)
+++ PKGBUILD2017-12-03 22:36:20 UTC (rev 311580)
@@ -1,50 +0,0 @@
-# Maintainer: Jan de Groot 
-# Contributor: NicoHood 
-# Contributor: 
-# Contributor: twa022 
-
-pkgname=xfce4-pulseaudio-plugin
-pkgver=0.3.2
-pkgrel=1
-pkgdesc="Pulseaudio plugin for Xfce4 panel"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="https://goodies.xfce.org/projects/panel-plugins/xfce4-pulseaudio-plugin;
-groups=('xfce4-goodies')
-depends=('xfce4-panel' 'libpulse' 'libkeybinder3' 'gtk-update-icon-cache' 
'libnotify')
-makedepends=('intltool' 'dbus-glib' git xfce4-dev-tools)
-optdepends=('pavucontrol: default pulseaudio mixer')
-_commit=9a17c12d2b4bd52dc0a694947dd7e6a3688ec974  # 
tags/xfce4-pulseaudio-plugin-0.3.2^0
-source=("git+https://git.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^xfce4-pulseaudio-plugin-//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd "$pkgname"
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---enable-keybinder \
---enable-libnotify \
---enable-maintainer-mode
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd "$pkgname"
-  make DESTDIR="${pkgdir}" install
-}

Copied: xfce4-pulseaudio-plugin/repos/extra-x86_64/PKGBUILD (from rev 311579, 
xfce4-pulseaudio-plugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 22:36:20 UTC (rev 311580)
@@ -0,0 +1,50 @@
+# Maintainer: Jan de Groot 
+# Contributor: NicoHood 
+# Contributor: 
+# Contributor: twa022 
+
+pkgname=xfce4-pulseaudio-plugin
+pkgver=0.3.3
+pkgrel=1
+pkgdesc="Pulseaudio plugin for Xfce4 panel"
+arch=('x86_64')
+license=('GPL2')
+url="https://goodies.xfce.org/projects/panel-plugins/xfce4-pulseaudio-plugin;
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libpulse' 'libkeybinder3' 'gtk-update-icon-cache' 
'libnotify')
+makedepends=('intltool' 'dbus-glib' git xfce4-dev-tools)
+optdepends=('pavucontrol: default pulseaudio mixer')
+_commit=66579b50f34609e7a4a60b6769c18513fcdc92fc  # 
tags/xfce4-pulseaudio-plugin-0.3.3^0
+source=("git+https://git.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^xfce4-pulseaudio-plugin-//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--enable-keybinder \
+--enable-libnotify \
+--enable-maintainer-mode
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd "$pkgname"
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in xfce4-pulseaudio-plugin/trunk (PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:36:14
  Author: jgc
Revision: 311579

upgpkg: xfce4-pulseaudio-plugin 0.3.3-1

Modified:
  xfce4-pulseaudio-plugin/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 22:33:47 UTC (rev 311578)
+++ PKGBUILD2017-12-03 22:36:14 UTC (rev 311579)
@@ -4,7 +4,7 @@
 # Contributor: twa022 
 
 pkgname=xfce4-pulseaudio-plugin
-pkgver=0.3.2
+pkgver=0.3.3
 pkgrel=1
 pkgdesc="Pulseaudio plugin for Xfce4 panel"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 depends=('xfce4-panel' 'libpulse' 'libkeybinder3' 'gtk-update-icon-cache' 
'libnotify')
 makedepends=('intltool' 'dbus-glib' git xfce4-dev-tools)
 optdepends=('pavucontrol: default pulseaudio mixer')
-_commit=9a17c12d2b4bd52dc0a694947dd7e6a3688ec974  # 
tags/xfce4-pulseaudio-plugin-0.3.2^0
+_commit=66579b50f34609e7a4a60b6769c18513fcdc92fc  # 
tags/xfce4-pulseaudio-plugin-0.3.3^0
 
source=("git+https://git.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in gnumeric/repos/extra-x86_64 (4 files)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:33:47
  Author: jgc
Revision: 311578

archrelease: copy trunk to extra-x86_64

Added:
  gnumeric/repos/extra-x86_64/PKGBUILD
(from rev 311577, gnumeric/trunk/PKGBUILD)
  gnumeric/repos/extra-x86_64/revert-warnings.patch
(from rev 311577, gnumeric/trunk/revert-warnings.patch)
Deleted:
  gnumeric/repos/extra-x86_64/PKGBUILD
  gnumeric/repos/extra-x86_64/revert-warnings.patch

---+
 PKGBUILD  |   96 
 revert-warnings.patch |   22 +--
 2 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 22:33:42 UTC (rev 311577)
+++ PKGBUILD2017-12-03 22:33:47 UTC (rev 311578)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Eric Belanger 
-# Contributor: Kritoke 
-
-pkgname=gnumeric
-pkgver=1.12.36
-pkgrel=1
-pkgdesc="A GNOME Spreadsheet Program"
-arch=('x86_64')
-url="http://www.gnome.org/projects/gnumeric/;
-license=('GPL')
-depends=('goffice')
-makedepends=('intltool' 'psiconv' 'pygobject-devel' docbook-xml
- 'gobject-introspection' 'python2-gobject' gtk-doc 
autoconf-archive git yelp-tools)
-optdepends=('python2-gobject: for python plugin support'
-'perl: for perl plugin support'
-'psiconv: for Psion 5 file support'
-'yelp: for viewing the help manual')
-_commit=c25d25f328fcb2a21ba0457d3822c3bf50da9a35  # tags/GNUMERIC_1_12_36^0
-source=("git+https://git.gnome.org/browse/gnumeric#commit=$_commit;
-revert-warnings.patch)
-sha256sums=('SKIP'
-'bcafca016b809000c2a5bf911e2e3dfa4de28f9e541d9964574cac5c7ce09e53')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^GNUMERIC_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  patch -Np0 -i ../revert-warnings.patch
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc 
--localstatedir=/var \
---disable-schemas-compile --enable-introspection --disable-silent-rules
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}

Copied: gnumeric/repos/extra-x86_64/PKGBUILD (from rev 311577, 
gnumeric/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 22:33:47 UTC (rev 311578)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Eric Belanger 
+# Contributor: Kritoke 
+
+pkgname=gnumeric
+pkgver=1.12.37
+pkgrel=1
+pkgdesc="A GNOME Spreadsheet Program"
+arch=('x86_64')
+url="http://www.gnome.org/projects/gnumeric/;
+license=('GPL')
+depends=('goffice')
+makedepends=('intltool' 'psiconv' 'pygobject-devel' docbook-xml
+ 'gobject-introspection' 'python2-gobject' gtk-doc 
autoconf-archive git yelp-tools)
+optdepends=('python2-gobject: for python plugin support'
+'perl: for perl plugin support'
+'psiconv: for Psion 5 file support'
+'yelp: for viewing the help manual')
+_commit=dcad258bbca2db3d9c3ffcce094a2ee5f4c7f15d  # tags/GNUMERIC_1_12_37^0
+source=("git+https://git.gnome.org/browse/gnumeric#commit=$_commit;
+revert-warnings.patch)
+sha256sums=('SKIP'
+'bcafca016b809000c2a5bf911e2e3dfa4de28f9e541d9964574cac5c7ce09e53')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GNUMERIC_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  patch -Np0 -i ../revert-warnings.patch
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc 
--localstatedir=/var \
+--disable-schemas-compile --enable-introspection --disable-silent-rules
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}

Deleted: revert-warnings.patch
===
--- revert-warnings.patch   2017-12-03 22:33:42 UTC (rev 311577)
+++ revert-warnings.patch   2017-12-03 22:33:47 UTC (rev 311578)
@@ -1,11 +0,0 @@
 configure.ac.orig  2013-03-13 16:09:02.355422066 +
-+++ configure.ac   2013-03-13 16:09:26.701917153 +
-@@ -269,8 +269,6 @@
--Wchar-subscripts -Wwrite-strings \
--Wdeclaration-after-statement -Wnested-externs \
--Wmissing-noreturn \
--   -Werror=missing-prototypes -Werror=nested-externs \
--   -Werror=implicit-function-declaration \
--Wmissing-declarations -Wno-pointer-sign \
--Werror=format-security -Wbitwise -Wcast-to-as \
--Wdefault-bitfield-sign -Wdo-while -Wparen-string 

[arch-commits] Commit in gnumeric/trunk (PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:33:42
  Author: jgc
Revision: 311577

upgpkg: gnumeric 1.12.37-1

Modified:
  gnumeric/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 22:30:04 UTC (rev 311576)
+++ PKGBUILD2017-12-03 22:33:42 UTC (rev 311577)
@@ -3,7 +3,7 @@
 # Contributor: Kritoke 
 
 pkgname=gnumeric
-pkgver=1.12.36
+pkgver=1.12.37
 pkgrel=1
 pkgdesc="A GNOME Spreadsheet Program"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 'perl: for perl plugin support'
 'psiconv: for Psion 5 file support'
 'yelp: for viewing the help manual')
-_commit=c25d25f328fcb2a21ba0457d3822c3bf50da9a35  # tags/GNUMERIC_1_12_36^0
+_commit=dcad258bbca2db3d9c3ffcce094a2ee5f4c7f15d  # tags/GNUMERIC_1_12_37^0
 source=("git+https://git.gnome.org/browse/gnumeric#commit=$_commit;
 revert-warnings.patch)
 sha256sums=('SKIP'


[arch-commits] Commit in libircclient/trunk (PKGBUILD)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 22:30:46
  Author: dvzrv
Revision: 272049

upgpkg: libircclient 1.9-3

Updating maintainer. Switching to https for url and source. Switching to 
sha512sums.
Minor fixes.

Modified:
  libircclient/trunk/PKGBUILD

--+
 PKGBUILD |   38 +++---
 1 file changed, 19 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 22:11:23 UTC (rev 272048)
+++ PKGBUILD2017-12-03 22:30:46 UTC (rev 272049)
@@ -1,5 +1,6 @@
 # $Id$
-# Maintainer:  speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 # Contributor: Bartłomiej Piotrowski 
 # Contributor: Marcel Wysocki 
 # Contributor: coolkehon 
@@ -6,35 +7,36 @@
 
 pkgname=libircclient
 pkgver=1.9
-pkgrel=2
+pkgrel=3
 pkgdesc='Small but powerful library, which implements client-server IRC 
protocol'
 arch=('x86_64')
-url='http://www.ulduzsoft.com/libircclient/'
+url='https://www.ulduzsoft.com/linux/libircclient/'
 license=('GPL')
 depends=('openssl')
 makedepends=('python2-sphinx' 'python2-rst2pdf') 
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('783c48fe9153ed55a5565c818a178d67')
+source=("https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('6f424791fed94ecacdd5d0b2c04472b0ddba09da08a8efb76c115a2a6abedecdf0aab3a86632bdf0fbca78781256fb591d8c94ed8eb776c5f30557d5c426bd1c')
 
 prepare() {
-  cd $pkgname-$pkgver/src
+  cd "${pkgname}-${pkgver}"
 
   # fix include dir path
-  sed -i "s/@\/include/&\/$pkgname/" Makefile.in
+  sed -i "s/@\/include/&\/${pkgname}/" src/Makefile.in
+
   # support openssl 1.1
-  cd ..
   sed -e 's|SSL_library_init|OPENSSL_init_ssl|' -i configure.in
   autoreconf -vi
 }
 
 build() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
   ./configure --prefix=/usr \
   --libdir=/usr/lib \
   --enable-shared \
   --enable-openssl \
   --enable-ipv6
-  cd src && make
+  cd src
+  make
 
   cd ../doc
   make SPHINXBUILD=sphinx-build2 singlehtml man
@@ -41,19 +43,17 @@
 }
 
 package() {
-  cd $pkgname-$pkgver/src
-  make DESTDIR="$pkgdir" install
+  cd "${pkgname}-${pkgver}/src"
+  make DESTDIR="${pkgdir}" install
 
   # docs
-  install -d "$pkgdir/usr/share/doc/$pkgname"
-  cp -a ../doc/_build/singlehtml/* "$pkgdir/usr/share/doc/$pkgname"
+  install -d "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -a ../doc/_build/singlehtml/* "${pkgdir}/usr/share/doc/${pkgname}"
 
   # man
-  install -Dm644 ../doc/_build/man/$pkgname.1 \
-"$pkgdir/usr/share/man/man1/$pkgname.1"
+  install -Dm644 "../doc/_build/man/${pkgname}.1" \
+"${pkgdir}/usr/share/man/man1/${pkgname}.1"
 
   # examples
-  install -d "$pkgdir/usr/share/$pkgname/examples"
-  install -Dm644 ../examples/* \
-"$pkgdir"/usr/share/$pkgname/examples
+  install -t "${pkgdir}/usr/share/${pkgname}/examples" -Dm644 ../examples/*
 }


[arch-commits] Commit in libircclient/repos (2 files)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 22:30:58
  Author: dvzrv
Revision: 272050

archrelease: copy trunk to community-testing-x86_64

Added:
  libircclient/repos/community-testing-x86_64/
  libircclient/repos/community-testing-x86_64/PKGBUILD
(from rev 272049, libircclient/trunk/PKGBUILD)

--+
 PKGBUILD |   59 +++
 1 file changed, 59 insertions(+)

Copied: libircclient/repos/community-testing-x86_64/PKGBUILD (from rev 272049, 
libircclient/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-03 22:30:58 UTC (rev 272050)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Marcel Wysocki 
+# Contributor: coolkehon 
+
+pkgname=libircclient
+pkgver=1.9
+pkgrel=3
+pkgdesc='Small but powerful library, which implements client-server IRC 
protocol'
+arch=('x86_64')
+url='https://www.ulduzsoft.com/linux/libircclient/'
+license=('GPL')
+depends=('openssl')
+makedepends=('python2-sphinx' 'python2-rst2pdf') 
+source=("https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('6f424791fed94ecacdd5d0b2c04472b0ddba09da08a8efb76c115a2a6abedecdf0aab3a86632bdf0fbca78781256fb591d8c94ed8eb776c5f30557d5c426bd1c')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+
+  # fix include dir path
+  sed -i "s/@\/include/&\/${pkgname}/" src/Makefile.in
+
+  # support openssl 1.1
+  sed -e 's|SSL_library_init|OPENSSL_init_ssl|' -i configure.in
+  autoreconf -vi
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+  --libdir=/usr/lib \
+  --enable-shared \
+  --enable-openssl \
+  --enable-ipv6
+  cd src
+  make
+
+  cd ../doc
+  make SPHINXBUILD=sphinx-build2 singlehtml man
+}
+
+package() {
+  cd "${pkgname}-${pkgver}/src"
+  make DESTDIR="${pkgdir}" install
+
+  # docs
+  install -d "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -a ../doc/_build/singlehtml/* "${pkgdir}/usr/share/doc/${pkgname}"
+
+  # man
+  install -Dm644 "../doc/_build/man/${pkgname}.1" \
+"${pkgdir}/usr/share/man/man1/${pkgname}.1"
+
+  # examples
+  install -t "${pkgdir}/usr/share/${pkgname}/examples" -Dm644 ../examples/*
+}


[arch-commits] Commit in goffice/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:30:04
  Author: jgc
Revision: 311576

archrelease: copy trunk to extra-x86_64

Added:
  goffice/repos/extra-x86_64/PKGBUILD
(from rev 311575, goffice/trunk/PKGBUILD)
Deleted:
  goffice/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   80 ++---
 1 file changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 22:29:59 UTC (rev 311575)
+++ PKGBUILD2017-12-03 22:30:04 UTC (rev 311576)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Aaron Griffin 
-
-pkgname=goffice
-pkgver=0.10.36
-pkgrel=1
-pkgdesc="A GLib/GTK+ set of document-centric objects and charting library"
-url="https://git.gnome.org/browse/goffice;
-arch=(x86_64)
-license=(GPL)
-depends=(librsvg gtk3 libgsf libspectre libxslt lasem)
-makedepends=(intltool gtk-doc gobject-introspection autoconf-archive git)
-_commit=ca3ca37d8aa905ae2585f430e19947e806a74fa3  # tags/GOFFICE_0_10_36^0
-source=("git+https://git.gnome.org/browse/goffice#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^GOFFICE_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static --enable-introspection 
--enable-gtk-doc
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}

Copied: goffice/repos/extra-x86_64/PKGBUILD (from rev 311575, 
goffice/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 22:30:04 UTC (rev 311576)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Aaron Griffin 
+
+pkgname=goffice
+pkgver=0.10.37
+pkgrel=1
+pkgdesc="A GLib/GTK+ set of document-centric objects and charting library"
+url="https://git.gnome.org/browse/goffice;
+arch=(x86_64)
+license=(GPL)
+depends=(librsvg gtk3 libgsf libspectre libxslt lasem)
+makedepends=(intltool gtk-doc gobject-introspection autoconf-archive git)
+_commit=c804cf97229bb8cc6ce81b5fd1c92ee7d5ec4c88  # tags/GOFFICE_0_10_37^0
+source=("git+https://git.gnome.org/browse/goffice#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GOFFICE_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static --enable-introspection 
--enable-gtk-doc
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in goffice/trunk (PKGBUILD)

2017-12-03 Thread Jan de Groot via arch-commits
Date: Sunday, December 3, 2017 @ 22:29:59
  Author: jgc
Revision: 311575

upgpkg: goffice 0.10.37-1

Modified:
  goffice/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 19:52:42 UTC (rev 311574)
+++ PKGBUILD2017-12-03 22:29:59 UTC (rev 311575)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin 
 
 pkgname=goffice
-pkgver=0.10.36
+pkgver=0.10.37
 pkgrel=1
 pkgdesc="A GLib/GTK+ set of document-centric objects and charting library"
 url="https://git.gnome.org/browse/goffice;
@@ -11,7 +11,7 @@
 license=(GPL)
 depends=(librsvg gtk3 libgsf libspectre libxslt lasem)
 makedepends=(intltool gtk-doc gobject-introspection autoconf-archive git)
-_commit=ca3ca37d8aa905ae2585f430e19947e806a74fa3  # tags/GOFFICE_0_10_36^0
+_commit=c804cf97229bb8cc6ce81b5fd1c92ee7d5ec4c88  # tags/GOFFICE_0_10_37^0
 source=("git+https://git.gnome.org/browse/goffice#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in (kvkbd)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Sunday, December 3, 2017 @ 22:11:23
  Author: arojas
Revision: 272048

Dropped to AUR

Deleted:
  kvkbd/


[arch-commits] Commit in (qvkbd qvkbd/trunk qvkbd/trunk/PKGBUILD)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Sunday, December 3, 2017 @ 22:10:17
  Author: arojas
Revision: 272045

Add qvkbd as a replacement to kvkbd

Added:
  qvkbd/
  qvkbd/trunk/
  qvkbd/trunk/PKGBUILD

--+
 PKGBUILD |   25 +
 1 file changed, 25 insertions(+)

Added: qvkbd/trunk/PKGBUILD
===
--- qvkbd/trunk/PKGBUILD(rev 0)
+++ qvkbd/trunk/PKGBUILD2017-12-03 22:10:17 UTC (rev 272045)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=qvkbd
+pkgver=git20170102
+pkgrel=1
+pkgdesc="Virtual keyboard written in Qt"
+arch=(x86_64)
+url="https://github.com/KivApple/qvkbd;
+license=(GPL3)
+depends=(qt5-declarative qt5-x11extras libxtst hicolor-icon-theme)
+source=(https://github.com/KivApple/qvkbd/archive/5debd6e8d082ca8187a86248b70c4f2360f5c27b.zip)
+sha256sums=('6f5136e3e68c92e87cf241e0e465ba113057e2774a29491f2faa548f3b1e1f3a')
+
+build() {
+  cd qvkbd-*
+  qmake .
+  make
+}
+
+package() {
+  cd qvkbd-*
+  install -Dm755 qvkbd -t "$pkgdir"/usr/bin/
+  install -Dm755 qvkbd.desktop -t "$pkgdir"/usr/share/applications/
+  install -Dm644 icons/keyboard.svg -t 
"$pkgdir"/usr/share/icons/hicolor/scalable/
+}


[arch-commits] Commit in qvkbd (3 files)

2017-12-03 Thread Antonio Rojas via arch-commits
Date: Sunday, December 3, 2017 @ 22:10:45
  Author: arojas
Revision: 272046

archrelease: copy trunk to community-x86_64

Added:
  qvkbd/repos/
  qvkbd/repos/community-x86_64/
  qvkbd/repos/community-x86_64/PKGBUILD
(from rev 272045, qvkbd/trunk/PKGBUILD)

--+
 PKGBUILD |   25 +
 1 file changed, 25 insertions(+)

Copied: qvkbd/repos/community-x86_64/PKGBUILD (from rev 272045, 
qvkbd/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-12-03 22:10:45 UTC (rev 272046)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=qvkbd
+pkgver=git20170102
+pkgrel=1
+pkgdesc="Virtual keyboard written in Qt"
+arch=(x86_64)
+url="https://github.com/KivApple/qvkbd;
+license=(GPL3)
+depends=(qt5-declarative qt5-x11extras libxtst hicolor-icon-theme)
+source=(https://github.com/KivApple/qvkbd/archive/5debd6e8d082ca8187a86248b70c4f2360f5c27b.zip)
+sha256sums=('6f5136e3e68c92e87cf241e0e465ba113057e2774a29491f2faa548f3b1e1f3a')
+
+build() {
+  cd qvkbd-*
+  qmake .
+  make
+}
+
+package() {
+  cd qvkbd-*
+  install -Dm755 qvkbd -t "$pkgdir"/usr/bin/
+  install -Dm755 qvkbd.desktop -t "$pkgdir"/usr/share/applications/
+  install -Dm644 icons/keyboard.svg -t 
"$pkgdir"/usr/share/icons/hicolor/scalable/
+}


[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2017-12-03 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 3, 2017 @ 20:57:52
  Author: svenstaro
Revision: 272044

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 272043, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 272043, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  162 -
 ogre.install |8 +-
 2 files changed, 85 insertions(+), 85 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 20:57:43 UTC (rev 272043)
+++ PKGBUILD2017-12-03 20:57:52 UTC (rev 272044)
@@ -1,81 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.10.8
-pkgrel=2
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('i686' 'x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig' 'systemd')
-install=ogre.install
-source=("hg+http://bitbucket.org/sinbad/ogre#tag=v${pkgver//./-};)
-sha512sums=('SKIP')
-
-build() {
-  cd ogre
-
-  [[ -d build ]] && rm -rf build
-  mkdir build && cd build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_INSTALL_SAMPLES=TRUE \
--DOGRE_INSTALL_DOCS=TRUE \
--DOGRE_INSTALL_SAMPLES_SOURCE=TRUE \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DOGRE_BUILD_COMPONENT_PYTHON=TRUE \
--DCMAKE_BUILD_TYPE=Release
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'intel-tbb: better threading support'
-  'poco: portability'
-  'python: python bindings'
-  'boost: for developing using ogre'
-  'ogre-docs: documentation')
-
-  cd ogre/build
-
-  make DESTDIR=${pkgdir} install
-
-  # fix up samples
-  install -dm775 -o root -g users ${pkgdir}/opt/OGRE/samples/
-  mv ${pkgdir}/usr/share/OGRE/*.cfg ${pkgdir}/opt/OGRE/samples/
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/opt/OGRE/samples/
-
-  # make sample launcher
-  echo "#!/bin/bash" > ${pkgdir}/usr/bin/OgreSampleBrowser
-  echo "cd /opt/OGRE/samples && ./SampleBrowser" >> 
${pkgdir}/usr/bin/OgreSampleBrowser
-  chmod +x ${pkgdir}/usr/bin/OgreSampleBrowser
-
-  install -Dm644 ../COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 272043, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 20:57:52 UTC (rev 272044)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.10.10
+pkgrel=2
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig' 'systemd')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('a4fefec10625afd32a48486cbf8c14dac201459e1f18febc6e645bd09741cb280503b25163939d2f3dd2f59a51cea9d6f32a949096812702df4b4b55ad9c169d')
+
+build() {
+  cd ogre-${pkgver}
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_INSTALL_SAMPLES=TRUE \
+-DOGRE_INSTALL_DOCS=TRUE \
+-DOGRE_INSTALL_SAMPLES_SOURCE=TRUE \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DOGRE_BUILD_COMPONENT_PYTHON=TRUE \
+-DCMAKE_BUILD_TYPE=Release
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'intel-tbb: better threading support'
+  'poco: portability'
+  'python: python bindings'
+  'boost: for developing using ogre'
+  'ogre-docs: documentation')
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  # fix up samples
+  install -dm775 -o root -g users ${pkgdir}/opt/OGRE/samples/
+  mv 

[arch-commits] Commit in ogre/trunk (PKGBUILD)

2017-12-03 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 3, 2017 @ 20:57:43
  Author: svenstaro
Revision: 272043

upgpkg: ogre 1.10.10-2

Modified:
  ogre/trunk/PKGBUILD

--+
 PKGBUILD |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 20:40:12 UTC (rev 272042)
+++ PKGBUILD2017-12-03 20:57:43 UTC (rev 272043)
@@ -2,7 +2,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgbase=ogre
 pkgname=('ogre' 'ogre-docs')
-pkgver=1.10.8
+pkgver=1.10.10
 pkgrel=2
 pkgdesc='Scene-oriented, flexible 3D engine written in C++'
 arch=('x86_64')
@@ -12,11 +12,11 @@
  'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
 makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig' 'systemd')
 install=ogre.install
-source=("hg+http://bitbucket.org/sinbad/ogre#tag=v${pkgver//./-};)
-sha512sums=('SKIP')
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('a4fefec10625afd32a48486cbf8c14dac201459e1f18febc6e645bd09741cb280503b25163939d2f3dd2f59a51cea9d6f32a949096812702df4b4b55ad9c169d')
 
 build() {
-  cd ogre
+  cd ogre-${pkgver}
 
   [[ -d build ]] && rm -rf build
   mkdir build && cd build
@@ -42,7 +42,7 @@
   'boost: for developing using ogre'
   'ogre-docs: documentation')
 
-  cd ogre/build
+  cd ogre-${pkgver}/build
 
   make DESTDIR=${pkgdir} install
 
@@ -56,7 +56,7 @@
   echo "cd /opt/OGRE/samples && ./SampleBrowser" >> 
${pkgdir}/usr/bin/OgreSampleBrowser
   chmod +x ${pkgdir}/usr/bin/OgreSampleBrowser
 
-  install -Dm644 ../COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 
   # move docs out of this package
   mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
@@ -66,7 +66,7 @@
   pkgdesc="Documentation for ogre"
   depends=()
 
-  cd ogre/build
+  cd ogre-${pkgver}/build
 
   # move docs into this package
   install -dm755 ${pkgdir}/usr/share/doc


[arch-commits] Commit in libfishsound/repos (2 files)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 20:40:12
  Author: dvzrv
Revision: 272042

archrelease: copy trunk to community-testing-x86_64

Added:
  libfishsound/repos/community-testing-x86_64/
  libfishsound/repos/community-testing-x86_64/PKGBUILD
(from rev 272041, libfishsound/trunk/PKGBUILD)

--+
 PKGBUILD |   39 +++
 1 file changed, 39 insertions(+)

Copied: libfishsound/repos/community-testing-x86_64/PKGBUILD (from rev 272041, 
libfishsound/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-03 20:40:12 UTC (rev 272042)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: farid 
+
+pkgname=libfishsound
+pkgver=1.0.0
+pkgrel=2
+pkgdesc="A simple programming interface that wraps Xiph.Org audio codecs"
+arch=('x86_64')
+url="https://www.xiph.org/fishsound/;
+license=('custom:BSD')
+depends=('libvorbis' 'speex' 'flac')
+source=("https://github.com/kfish/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('52a98489d8cebfd92a1aa18511643108cc818379cf4470fe177c4a27e998f2652e4ffa94a50dd4f8838753714b9001eb8ee9ecb2fff858179f3bc7ffe6d7e35b')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  ./autogen.sh
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+  --enable-static=no
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir/" docdir=./docs install
+
+  # license
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 AUTHORS "${pkgdir}/usr/share/doc/${pkgname}/AUTHORS"
+  install -Dm644 ChangeLog "${pkgdir}/usr/share/doc/${pkgname}/ChangeLog"
+  install -Dm644 NEWS "${pkgdir}/usr/share/doc/${pkgname}/NEWS"
+  install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
+} 


[arch-commits] Commit in libfishsound/trunk (PKGBUILD)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 20:40:02
  Author: dvzrv
Revision: 272041

upgpkg: libfishsound 1.0.0-2

Updating maintainer. Switching to https for url and source. Switching to github 
for source.
Switching to sha512sums. Adding prepare() to call autogen.sh. Installing 
various docs. Minor fixes.

Modified:
  libfishsound/trunk/PKGBUILD

--+
 PKGBUILD |   27 ++-
 1 file changed, 18 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 20:06:22 UTC (rev 272040)
+++ PKGBUILD2017-12-03 20:40:02 UTC (rev 272041)
@@ -1,20 +1,26 @@
 # $Id$
-# Maintainer : speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 # Contributor: farid 
 
 pkgname=libfishsound
 pkgver=1.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A simple programming interface that wraps Xiph.Org audio codecs"
 arch=('x86_64')
-url="http://www.xiph.org/fishsound/;
+url="https://www.xiph.org/fishsound/;
 license=('custom:BSD')
 depends=('libvorbis' 'speex' 'flac')
-source=("http://downloads.xiph.org/releases/libfishsound/$pkgname-$pkgver.tar.gz;)
-md5sums=('02c5c7b361a35c9da3cf311d68800dab')
+source=("https://github.com/kfish/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('52a98489d8cebfd92a1aa18511643108cc818379cf4470fe177c4a27e998f2652e4ffa94a50dd4f8838753714b9001eb8ee9ecb2fff858179f3bc7ffe6d7e35b')
 
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  ./autogen.sh
+}
+
 build() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
   ./configure --prefix=/usr \
   --enable-static=no
   make
@@ -21,10 +27,13 @@
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
   make DESTDIR="$pkgdir/" docdir=./docs install
 
   # license
-  install -Dm644 COPYING \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 AUTHORS "${pkgdir}/usr/share/doc/${pkgname}/AUTHORS"
+  install -Dm644 ChangeLog "${pkgdir}/usr/share/doc/${pkgname}/ChangeLog"
+  install -Dm644 NEWS "${pkgdir}/usr/share/doc/${pkgname}/NEWS"
+  install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
 } 


[arch-commits] Commit in python-pygeoip/trunk (PKGBUILD)

2017-12-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, December 3, 2017 @ 20:06:22
  Author: jelle
Revision: 272040

Fix source 404

Using https is required now

Modified:
  python-pygeoip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 19:51:27 UTC (rev 272039)
+++ PKGBUILD2017-12-03 20:06:22 UTC (rev 272040)
@@ -9,12 +9,12 @@
 pkgrel=3
 pkgdesc="Pure Python GeoIP API"
 arch=('any')
-url="http://pypi.python.org/pypi/$_pypiname;
+url="https://pypi.python.org/pypi/$_pypiname;
 license=('LGPL')
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-nose' 'python2-nose')
 optdepends=('geoip-database: provides a database for geoip lookups')
-source=("http://pypi.python.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz;)
+source=("https://pypi.python.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz;)
 md5sums=('861664f8be3bed44820356539f2ea5b6')
 
 prepare() {


[arch-commits] Commit in pacman-mirrorlist/repos/core-any (6 files)

2017-12-03 Thread Florian Pritz via arch-commits
Date: Sunday, December 3, 2017 @ 19:52:42
  Author: bluewind
Revision: 311574

archrelease: copy trunk to core-any

Added:
  pacman-mirrorlist/repos/core-any/PKGBUILD
(from rev 311573, pacman-mirrorlist/trunk/PKGBUILD)
  pacman-mirrorlist/repos/core-any/mirrorlist
(from rev 311573, pacman-mirrorlist/trunk/mirrorlist)
  pacman-mirrorlist/repos/core-any/upgpkg
(from rev 311573, pacman-mirrorlist/trunk/upgpkg)
Deleted:
  pacman-mirrorlist/repos/core-any/PKGBUILD
  pacman-mirrorlist/repos/core-any/mirrorlist
  pacman-mirrorlist/repos/core-any/upgpkg

+
 PKGBUILD   |   62 +--
 mirrorlist | 1011 +--
 upgpkg |8 
 3 files changed, 544 insertions(+), 537 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 19:52:34 UTC (rev 311573)
+++ PKGBUILD2017-12-03 19:52:42 UTC (rev 311574)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee <d...@archlinux.org>
-
-pkgname=pacman-mirrorlist
-pkgver=20171027
-pkgrel=1
-pkgdesc="Arch Linux mirror list for use by pacman"
-arch=('any')
-url="https://www.archlinux.org/mirrorlist/;
-license=('GPL')
-backup=(etc/pacman.d/mirrorlist)
-source=(mirrorlist)
-
-# NOTE on building this package:
-# * Go to the trunk/ directory
-# * Run bash -c ". PKGBUILD; updatelist"
-# * Update the checksums, update pkgver
-# * Build the package
-
-updatelist() {
-  rm -f mirrorlist
-  curl -o mirrorlist https://www.archlinux.org/mirrorlist/all/
-}
-
-package() {
-  mkdir -p $pkgdir/etc/pacman.d
-  install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
-}
-
-md5sums=('0272d9ed197fd759a6e0e60c7ee57e10')
-sha256sums=('02594a1e6c9ac12ebce6d98da03b9729f73195f62b5a95c5591d4c1d10638e66')

Copied: pacman-mirrorlist/repos/core-any/PKGBUILD (from rev 311573, 
pacman-mirrorlist/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 19:52:42 UTC (rev 311574)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Dan McGee <d...@archlinux.org>
+
+pkgname=pacman-mirrorlist
+pkgver=20171203
+pkgrel=1
+pkgdesc="Arch Linux mirror list for use by pacman"
+arch=('any')
+url="https://www.archlinux.org/mirrorlist/;
+license=('GPL')
+backup=(etc/pacman.d/mirrorlist)
+source=(mirrorlist)
+
+# NOTE on building this package:
+# * Go to the trunk/ directory
+# * Run bash -c ". PKGBUILD; updatelist"
+# * Update the checksums, update pkgver
+# * Build the package
+
+updatelist() {
+  rm -f mirrorlist
+  curl -o mirrorlist https://www.archlinux.org/mirrorlist/all/
+}
+
+package() {
+  mkdir -p $pkgdir/etc/pacman.d
+  install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
+}
+
+md5sums=('befcf78bc76d96d6c06ca7c7536a3aa7')
+sha256sums=('9a15441bcd1614a52cf8e3b9da452deeb0e328a18e343c5d9244cdae8c2e5ae4')

Deleted: mirrorlist
===
--- mirrorlist  2017-12-03 19:52:34 UTC (rev 311573)
+++ mirrorlist  2017-12-03 19:52:42 UTC (rev 311574)
@@ -1,502 +0,0 @@
-##
-## Arch Linux repository mirrorlist
-## Generated on 2017-10-27
-##
-
-## Worldwide
-#Server = https://archlinux.surlyjake.com/archlinux/$repo/os/$arch
-#Server = http://mirrors.evowise.com/archlinux/$repo/os/$arch
-#Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch
-
-## Australia
-#Server = https://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch
-#Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch
-#Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch
-#Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch
-#Server = http://archlinux.melbourneitmirror.net/$repo/os/$arch
-#Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch
-
-## Austria
-#Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch
-#Server = http://mirror.easyname.at/archlinux/$repo/os/$arch
-#Server = http://mirror1.htu.tugraz.at/archlinux/$repo/os/$arch
-
-## Belarus
-#Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch
-#Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch
-
-## Belgium
-#Server = http://archlinux.cu.be/$repo/os/$arch
-#Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch
-
-## Bosnia and Herzegovina
-#Server = http://burek.archlinux.ba/$repo/os/$arch
-#Server = http://archlinux.mirror.ba/$repo/os/$arch
-
-## Brazil
-#Server = http://br.mirror.archlinux-br.org/$repo/os/$arch
-#Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch
-#Server = http://linorg.usp.br/archlinux/$repo/os/$arch
-#Server = http://pet.inf.ufsc.br/mirrors/archlinux/$repo/os/$arch
-#Server = http://archlinux.pop-es.rnp.br/$repo/os/$arch
-
-## Bulgaria
-#Server = http://mirror.host.ag/archlinux/$repo/os/$arch
-#Server = http://mirrors.netix.net/archlinux/$repo/os/$arch
-#Server = http://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch
-#Server = https:/

[arch-commits] Commit in pacman-mirrorlist/trunk (PKGBUILD mirrorlist)

2017-12-03 Thread Florian Pritz via arch-commits
Date: Sunday, December 3, 2017 @ 19:52:34
  Author: bluewind
Revision: 311573

upgpkg: pacman-mirrorlist 20171203-1

upstream update

Modified:
  pacman-mirrorlist/trunk/PKGBUILD
  pacman-mirrorlist/trunk/mirrorlist

+
 PKGBUILD   |6 +++---
 mirrorlist |   17 -
 2 files changed, 15 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 19:20:59 UTC (rev 311572)
+++ PKGBUILD2017-12-03 19:52:34 UTC (rev 311573)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee <d...@archlinux.org>
 
 pkgname=pacman-mirrorlist
-pkgver=20171027
+pkgver=20171203
 pkgrel=1
 pkgdesc="Arch Linux mirror list for use by pacman"
 arch=('any')
@@ -27,5 +27,5 @@
   install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
 }
 
-md5sums=('0272d9ed197fd759a6e0e60c7ee57e10')
-sha256sums=('02594a1e6c9ac12ebce6d98da03b9729f73195f62b5a95c5591d4c1d10638e66')
+md5sums=('befcf78bc76d96d6c06ca7c7536a3aa7')
+sha256sums=('9a15441bcd1614a52cf8e3b9da452deeb0e328a18e343c5d9244cdae8c2e5ae4')

Modified: mirrorlist
===
--- mirrorlist  2017-12-03 19:20:59 UTC (rev 311572)
+++ mirrorlist  2017-12-03 19:52:34 UTC (rev 311573)
@@ -1,6 +1,6 @@
 ##
 ## Arch Linux repository mirrorlist
-## Generated on 2017-10-27
+## Generated on 2017-12-03
 ##
 
 ## Worldwide
@@ -39,6 +39,7 @@
 #Server = http://linorg.usp.br/archlinux/$repo/os/$arch
 #Server = http://pet.inf.ufsc.br/mirrors/archlinux/$repo/os/$arch
 #Server = http://archlinux.pop-es.rnp.br/$repo/os/$arch
+#Server = http://mirror.ufam.edu.br/archlinux/$repo/os/$arch
 
 ## Bulgaria
 #Server = http://mirror.host.ag/archlinux/$repo/os/$arch
@@ -119,6 +120,8 @@
 #Server = https://archlinux.vi-di.fr/$repo/os/$arch
 #Server = http://mirror.armbrust.me/archlinux/$repo/os/$arch
 #Server = https://mirror.armbrust.me/archlinux/$repo/os/$arch
+#Server = http://mirrors.arnoldthebat.co.uk/archlinux/$repo/os/$arch
+#Server = https://mirrors.arnoldthebat.co.uk/archlinux/$repo/os/$arch
 #Server = http://archlinux.mirrors.benatherton.com/$repo/os/$arch
 #Server = http://mirrors.celiandu61.fr/archlinux/$repo/os/$arch
 #Server = https://mirrors.celiandu61.fr/archlinux/$repo/os/$arch
@@ -136,6 +139,7 @@
 #Server = http://archlinux.polymorf.fr/$repo/os/$arch
 #Server = http://mirrors.standaloneinstaller.com/archlinux/$repo/os/$arch
 #Server = http://arch.tamcore.eu/$repo/os/$arch
+#Server = https://mirror.thekinrar.fr/archlinux/$repo/os/$arch
 #Server = http://mirror.tyborek.pl/arch/$repo/os/$arch
 #Server = https://mirror.tyborek.pl/arch/$repo/os/$arch
 #Server = http://ftp.u-strasbg.fr/linux/distributions/archlinux/$repo/os/$arch
@@ -148,6 +152,7 @@
 #Server = https://arch.32g.eu/$repo/os/$arch
 #Server = http://artfiles.org/archlinux.org/$repo/os/$arch
 #Server = http://fabric-mirror.vps.hosteurope.de/archlinux/$repo/os/$arch
+#Server = https://fabric-mirror.vps.hosteurope.de/archlinux/$repo/os/$arch
 #Server = https://mirror.bethselamin.de/$repo/os/$arch
 #Server = http://arch.eckner.net/archlinux/$repo/os/$arch
 #Server = https://arch.eckner.net/archlinux/$repo/os/$arch
@@ -172,8 +177,6 @@
 #Server = https://mirror.jankoppe.de/archlinux/$repo/os/$arch
 #Server = http://arch.jensgutermuth.de/$repo/os/$arch
 #Server = https://arch.jensgutermuth.de/$repo/os/$arch
-#Server = http://mirror.js-webcoding.de/pub/archlinux/$repo/os/$arch
-#Server = https://mirror.js-webcoding.de/pub/archlinux/$repo/os/$arch
 #Server = http://k42.ch/mirror/archlinux/$repo/os/$arch
 #Server = https://k42.ch/mirror/archlinux/$repo/os/$arch
 #Server = http://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch
@@ -224,6 +227,8 @@
 #Server = http://ftp.otenet.gr/linux/archlinux/$repo/os/$arch
 
 ## Hong Kong
+#Server = http://mirrors.kurnode.com/archlinux/$repo/os/$arch
+#Server = https://mirrors.kurnode.com/archlinux/$repo/os/$arch
 #Server = https://arch-mirror.wtako.net/$repo/os/$arch
 #Server = http://mirror.xtom.com.hk/archlinux/$repo/os/$arch
 #Server = https://mirror.xtom.com.hk/archlinux/$repo/os/$arch
@@ -321,6 +326,9 @@
 #Server = http://mirror.neuf.no/archlinux/$repo/os/$arch
 #Server = https://mirror.neuf.no/archlinux/$repo/os/$arch
 
+## Philippines
+#Server = http://mirror.rise.ph/archlinux/$repo/os/$arch
+
 ## Poland
 #Server = http://arch.midov.pl/arch/$repo/os/$arch
 #Server = http://mirror.onet.pl/pub/mirrors/archlinux/$repo/os/$arch
@@ -352,6 +360,7 @@
 #Server = http://mirror.truenetwork.ru/archlinux/$repo/os/$arch
 #Server = http://mirror.yandex.ru/archlinux/$repo/os/$arch
 #Server = https://mirror.yandex.ru/archlinux/$repo/os/$arch
+#Server = http://archlinux.zepto.cloud/$repo/os/$arch
 
 ## Serbia
 #Server = http://mirror.pmf.kg.ac.rs/archlinux/$repo/os/$arch
@@ -469,8 +478,6 @@
 #Server = https://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch
 #Server = http://il.mirrors.linaxe.net/archlinux/$repo/os/$arch
 #Server = http://mirro

[arch-commits] Commit in uniconvertor/trunk (PKGBUILD)

2017-12-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, December 3, 2017 @ 19:51:27
  Author: jelle
Revision: 272039

Fix 404 source

Fix the source, the url and remove the nonsense makedepends = gcc

Modified:
  uniconvertor/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 19:44:54 UTC (rev 272038)
+++ PKGBUILD2017-12-03 19:51:27 UTC (rev 272039)
@@ -7,11 +7,10 @@
 pkgrel=8
 pkgdesc="A universal vector graphics translator using sK1 engine."
 arch=('x86_64')
-url="http://sk1project.org/modules.php?name=Products=uniconvertor;
+url="https://sk1project.net/modules.php?name=Products=uniconvertor=download;
 license=('GPL')
 depends=('python2' 'python2-pillow' 'python2-reportlab' 'sk1libs')
-makedepends=('gcc')
-source=(http://uniconvertor.googlecode.com/files/uniconvertor-$pkgver.tar.gz)
+source=("https://sk1project.net/dc.php?target=uniconvertor-$pkgver.tar.gz;)
 md5sums=('d1272315a58304ece2ff588834e23f72')
 
 build() {


[arch-commits] Commit in perl-mail-message/repos/community-any (PKGBUILD PKGBUILD)

2017-12-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, December 3, 2017 @ 19:44:54
  Author: jelle
Revision: 272038

archrelease: copy trunk to community-any

Added:
  perl-mail-message/repos/community-any/PKGBUILD
(from rev 272037, perl-mail-message/trunk/PKGBUILD)
Deleted:
  perl-mail-message/repos/community-any/PKGBUILD

--+
 PKGBUILD |   86 ++---
 1 file changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 19:44:44 UTC (rev 272037)
+++ PKGBUILD2017-12-03 19:44:54 UTC (rev 272038)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname='perl-mail-message'
-pkgver=3.000
-pkgrel=3
-pkgdesc="container for MIME-encoded message information"
-arch=('any')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl' 'perl-user-identity' 'perl-mailtools' 'perl-mime-types'
-'perl-io-stringy' 'perl-uri')
-makedepends=()
-url='http://search.mcpan.org/dist/Mail-Message'
-source=("http://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/Mail-Message-$pkgver.tar.gz;)
-sha256sums=('3a70553d4898e783c0ae8645d6bb3c8fa1ed66f997627685a72119b02dd0be1d')
-
-build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
-  PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
-  MODULEBUILDRC=/dev/null
-
-cd "$srcdir/Mail-Message-$pkgver"
-/usr/bin/perl Makefile.PL
-make
-  )
-}
-
-check() {
-  cd "$srcdir/Mail-Message-$pkgver"
-
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
-make test
-  )
-}
-
-package() {
-  cd "$srcdir/Mail-Message-$pkgver"
-  make install
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-}

Copied: perl-mail-message/repos/community-any/PKGBUILD (from rev 272037, 
perl-mail-message/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 19:44:54 UTC (rev 272038)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname='perl-mail-message'
+pkgver=3.003
+pkgrel=1
+pkgdesc="container for MIME-encoded message information"
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl' 'perl-user-identity' 'perl-mailtools' 'perl-mime-types'
+'perl-io-stringy' 'perl-uri')
+makedepends=()
+url='http://search.mcpan.org/dist/Mail-Message'
+source=("http://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/Mail-Message-$pkgver.tar.gz;)
+sha256sums=('0ed210b9576ef6656ae108d0160c2795499807f8864ca5835308752e70c9e16d')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
+  PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
+  MODULEBUILDRC=/dev/null
+
+cd "$srcdir/Mail-Message-$pkgver"
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd "$srcdir/Mail-Message-$pkgver"
+
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
+make test
+  )
+}
+
+package() {
+  cd "$srcdir/Mail-Message-$pkgver"
+  make install
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}


[arch-commits] Commit in perl-mail-message/trunk (PKGBUILD)

2017-12-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, December 3, 2017 @ 19:44:44
  Author: jelle
Revision: 272037

upgpkg: perl-mail-message 3.003-1

Update to latest release, fixed 404 source

Modified:
  perl-mail-message/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 19:37:08 UTC (rev 272036)
+++ PKGBUILD2017-12-03 19:44:44 UTC (rev 272037)
@@ -2,8 +2,8 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname='perl-mail-message'
-pkgver=3.000
-pkgrel=3
+pkgver=3.003
+pkgrel=1
 pkgdesc="container for MIME-encoded message information"
 arch=('any')
 license=('PerlArtistic' 'GPL')
@@ -13,7 +13,7 @@
 makedepends=()
 url='http://search.mcpan.org/dist/Mail-Message'
 
source=("http://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/Mail-Message-$pkgver.tar.gz;)
-sha256sums=('3a70553d4898e783c0ae8645d6bb3c8fa1ed66f997627685a72119b02dd0be1d')
+sha256sums=('0ed210b9576ef6656ae108d0160c2795499807f8864ca5835308752e70c9e16d')
 
 build() {
   ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \


[arch-commits] Commit in calibre/trunk (PKGBUILD)

2017-12-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, December 3, 2017 @ 19:36:56
  Author: jelle
Revision: 272035

upgpkg: calibre 3.13.0-1

Modified:
  calibre/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 19:36:38 UTC (rev 272034)
+++ PKGBUILD2017-12-03 19:36:56 UTC (rev 272035)
@@ -8,8 +8,8 @@
 # Contributor: Eli Schwartz 
 
 pkgname=calibre
-pkgver=3.12.0
-pkgrel=2
+pkgver=3.13.0
+pkgrel=1
 pkgdesc="Ebook management application"
 arch=('x86_64')
 url="https://calibre-ebook.com/;
@@ -28,7 +28,7 @@
 )
 source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
 "https://calibre-ebook.com/signatures/${pkgname}-${pkgver}.tar.xz.sig;)
-sha256sums=('78a736974ec45c5f847fa2d30c87bab807c88d56e37fec8478de0c95bc2df950'
+sha256sums=('84c980e80b61d12797c91bfa0b6ba81926e2fef49ca3082c3e5ea80d161e13a9'
 'SKIP')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C')
 


[arch-commits] Commit in calibre/repos/community-x86_64 (PKGBUILD PKGBUILD)

2017-12-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, December 3, 2017 @ 19:37:08
  Author: jelle
Revision: 272036

archrelease: copy trunk to community-x86_64

Added:
  calibre/repos/community-x86_64/PKGBUILD
(from rev 272035, calibre/trunk/PKGBUILD)
Deleted:
  calibre/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  148 ++---
 1 file changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 19:36:56 UTC (rev 272035)
+++ PKGBUILD2017-12-03 19:37:08 UTC (rev 272036)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Jelle van der Waa 
-# Maintainer: Daniel Wallace 
-# Contributor: Giovanni Scafora 
-# Contributor: Petrov Roman 
-# Contributor: Andrea Fagiani 
-# Contributor: Larry Hajali 
-# Contributor: Eli Schwartz 
-
-pkgname=calibre
-pkgver=3.12.0
-pkgrel=2
-pkgdesc="Ebook management application"
-arch=('i686' 'x86_64')
-url="https://calibre-ebook.com/;
-license=('GPL3')
-depends=('python2-six' 'python2-dateutil' 'python2-cssutils' 'python2-dukpy'
- 'python2-mechanize' 'podofo' 'libwmf'
- 'chmlib' 'python2-lxml' 'libusbx' 'python2-html5-parser'
- 'python2-pillow' 'shared-mime-info' 'python2-dnspython' 
'python2-msgpack'
- 'python2-pyqt5' 'python2-psutil' 'icu' 'libmtp' 'python2-dbus'
- 'python2-netifaces' 'python2-cssselect' 'python2-apsw' 'qt5-webkit'
- 'qt5-svg' 'python2-regex' 'python2-pygments' 'mtdev' 
'python2-unrardll'
- 'desktop-file-utils' 'gtk-update-icon-cache' 'optipng' 'udisks2')
-makedepends=('qt5-x11extras' 'xdg-utils')
-optdepends=('ipython2: to use calibre-debug'
-'poppler: required for converting pdf to html'
-)
-source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
-"https://calibre-ebook.com/signatures/${pkgname}-${pkgver}.tar.xz.sig;)
-sha256sums=('78a736974ec45c5f847fa2d30c87bab807c88d56e37fec8478de0c95bc2df950'
-'SKIP')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C')
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-
-  # Remove unneeded files
-  rm -rf resources/${pkgname}-portable.*
-
-  # Desktop integration (e.g. enforce arch defaults)
-  sed -e "/self.create_uninstaller()/,/os.rmdir(config_dir)/d" \
-  -e "/cc(\['xdg-desktop-menu', 'forceupdate'\])/d" \
-  -e "/cc(\['xdg-mime', 'install', MIME\])/d" \
-  -e "s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/" \
-  -e "s/^Name=calibre/Name=Calibre/g" \
-  -i  src/calibre/linux.py
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  LANG='en_US.UTF-8' python2 setup.py build
-  LANG='en_US.UTF-8' python2 setup.py gui
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-
-  install -d "${pkgdir}/usr/share/zsh/site-functions" \
- 
"${pkgdir}"/usr/share/{applications,desktop-directories,icons/hicolor}
-
-  install -Dm644 resources/calibre-mimetypes.xml \
-"${pkgdir}/usr/share/mime/packages/calibre-mimetypes.xml"
-
-  XDG_DATA_DIRS="${pkgdir}/usr/share" LANG='en_US.UTF-8' \
-python2 setup.py install --staging-root="${pkgdir}/usr" --prefix=/usr
-
-  cp -a man-pages/ "${pkgdir}/usr/share/man"
-
-  # Compiling bytecode FS#33392
-  python2 -m compileall "${pkgdir}/usr/lib/calibre/"
-  python2 -O -m compileall "${pkgdir}/usr/lib/calibre/"
-}

Copied: calibre/repos/community-x86_64/PKGBUILD (from rev 272035, 
calibre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 19:37:08 UTC (rev 272036)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Jelle van der Waa 
+# Maintainer: Daniel Wallace 
+# Contributor: Giovanni Scafora 
+# Contributor: Petrov Roman 
+# Contributor: Andrea Fagiani 
+# Contributor: Larry Hajali 
+# Contributor: Eli Schwartz 
+
+pkgname=calibre
+pkgver=3.13.0
+pkgrel=1
+pkgdesc="Ebook management application"
+arch=('x86_64')
+url="https://calibre-ebook.com/;
+license=('GPL3')
+depends=('python2-six' 'python2-dateutil' 'python2-cssutils' 'python2-dukpy'
+ 'python2-mechanize' 'podofo' 'libwmf'
+ 'chmlib' 'python2-lxml' 'libusbx' 'python2-html5-parser'
+ 'python2-pillow' 'shared-mime-info' 'python2-dnspython' 
'python2-msgpack'
+ 'python2-pyqt5' 'python2-psutil' 'icu' 'libmtp' 'python2-dbus'
+ 'python2-netifaces' 'python2-cssselect' 'python2-apsw' 'qt5-webkit'
+ 'qt5-svg' 'python2-regex' 'python2-pygments' 'mtdev' 
'python2-unrardll'
+ 'desktop-file-utils' 'gtk-update-icon-cache' 'optipng' 'udisks2')
+makedepends=('qt5-x11extras' 'xdg-utils')
+optdepends=('ipython2: to use calibre-debug'
+'poppler: required for converting pdf to html'
+)

[arch-commits] Commit in python-pretend/trunk (PKGBUILD)

2017-12-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, December 3, 2017 @ 19:36:38
  Author: jelle
Revision: 272034

Fix source download by switching to https

curl: (22) The requested URL returned error: 403 SSL is required

Modified:
  python-pretend/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 18:25:04 UTC (rev 272033)
+++ PKGBUILD2017-12-03 19:36:38 UTC (rev 272034)
@@ -10,7 +10,7 @@
 license=('BSD')
 url="https://github.com/alex/pretend;
 makedepends=('python-setuptools' 'python2-setuptools')
-source=("http://pypi.python.org/packages/source/p/pretend/pretend-$pkgver.tar.gz;)
+source=("https://pypi.python.org/packages/source/p/pretend/pretend-$pkgver.tar.gz;)
 
 prepare() {
   cp -a pretend-${pkgver}{,-py2}


[arch-commits] Commit in qpdf/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2017-12-03 Thread Andreas Radke via arch-commits
Date: Sunday, December 3, 2017 @ 19:20:59
  Author: andyrtr
Revision: 311572

archrelease: copy trunk to extra-x86_64

Added:
  qpdf/repos/extra-x86_64/PKGBUILD
(from rev 311571, qpdf/trunk/PKGBUILD)
Deleted:
  qpdf/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   74 ++---
 1 file changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 19:20:43 UTC (rev 311571)
+++ PKGBUILD2017-12-03 19:20:59 UTC (rev 311572)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Contributor: Miguel Revilla 
-# Contributor: David Sotelo 
-# Contributor: Nuno Araujo 
-
-pkgname=qpdf
-pkgver=7.0.0
-pkgrel=2
-pkgdesc="QPDF: A Content-Preserving PDF Transformation System"
-arch=('x86_64')
-url="https://qpdf.sourceforge.net/;
-license=('custom:Artistic-2.0' 'Apache')
-depends=('libtiff')
-optdepends=('perl: required for fix-qdf')
-checkdepends=('perl')
-source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('506002271a7e04f431014baa94dd820c47235356')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check # passes all
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}/" install
-
-  mkdir -m755 -p ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 {Artistic-2.0,LICENSE.txt} 
${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: qpdf/repos/extra-x86_64/PKGBUILD (from rev 311571, qpdf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 19:20:59 UTC (rev 311572)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Miguel Revilla 
+# Contributor: David Sotelo 
+# Contributor: Nuno Araujo 
+
+pkgname=qpdf
+pkgver=7.0.0
+pkgrel=3
+pkgdesc="QPDF: A Content-Preserving PDF Transformation System"
+arch=('x86_64')
+url="https://qpdf.sourceforge.net/;
+license=('custom:Artistic-2.0' 'Apache')
+depends=('libjpeg-turbo' 'zlib')
+optdepends=('perl: required for fix-qdf')
+checkdepends=('perl')
+source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('506002271a7e04f431014baa94dd820c47235356')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check # passes all
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}/" install
+
+  mkdir -m755 -p ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 {Artistic-2.0,LICENSE.txt} 
${pkgdir}/usr/share/licenses/${pkgname}/
+}


[arch-commits] Commit in qpdf/trunk (PKGBUILD)

2017-12-03 Thread Andreas Radke via arch-commits
Date: Sunday, December 3, 2017 @ 19:20:43
  Author: andyrtr
Revision: 311571

upgpkg: qpdf 7.0.0-3

libtiff isn't required; only depend on libjpeg-turbo and zlib; FS#56543

Modified:
  qpdf/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 14:46:00 UTC (rev 311570)
+++ PKGBUILD2017-12-03 19:20:43 UTC (rev 311571)
@@ -6,12 +6,12 @@
 
 pkgname=qpdf
 pkgver=7.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc="QPDF: A Content-Preserving PDF Transformation System"
 arch=('x86_64')
 url="https://qpdf.sourceforge.net/;
 license=('custom:Artistic-2.0' 'Apache')
-depends=('libtiff')
+depends=('libjpeg-turbo' 'zlib')
 optdepends=('perl: required for fix-qdf')
 checkdepends=('perl')
 
source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)


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

2017-12-03 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 18:07:19
  Author: felixonmars
Revision: 272030

archrelease: copy trunk to community-staging-x86_64

Added:
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 272029, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/conduit-extra-1.2.0.patch
(from rev 272029, stack/trunk/conduit-extra-1.2.0.patch)
  stack/repos/community-staging-x86_64/stack.install
(from rev 272029, stack/trunk/stack.install)

---+
 PKGBUILD  |   72 +++
 conduit-extra-1.2.0.patch |   73 
 stack.install |4 ++
 3 files changed, 149 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 272029, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-03 18:07:19 UTC (rev 272030)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.5.99.20171022
+_commit=7bddfaf7f9f8cd9ec1c710fa83e77262e494eee4
+pkgrel=18
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-attoparsec" "haskell-base64-bytestring" 
"haskell-bindings-uname"
+ "haskell-blaze-builder" "haskell-clock" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptonite" "haskell-cryptonite-conduit" "haskell-echo" 
"haskell-exceptions"
+ "haskell-extra" "haskell-fast-logger" "haskell-file-embed" 
"haskell-filelock"
+ "haskell-fsnotify" "haskell-generic-deriving" "haskell-gitrev" 
"haskell-hackage-security"
+ "haskell-hashable" "haskell-hastache" "haskell-http-client" 
"haskell-http-client-tls"
+ "haskell-http-conduit" "haskell-http-types" "haskell-hpack" 
"haskell-memory"
+ "haskell-microlens" "haskell-microlens-mtl" "haskell-mintty" 
"haskell-monad-logger"
+ "haskell-mtl" "haskell-network-uri" "haskell-open-browser" 
"haskell-optparse-applicative"
+ "haskell-optparse-simple" "haskell-path" "haskell-path-io" 
"haskell-persistent"
+ "haskell-persistent-sqlite" "haskell-persistent-template" 
"haskell-pid1" "haskell-primitive"
+ "haskell-project-template" "haskell-regex-applicative-text" 
"haskell-resourcet"
+ "haskell-retry" "haskell-semigroups" "haskell-split" "haskell-stm" 
"haskell-store"
+ "haskell-store-core" "haskell-streaming-commons" "haskell-tar" 
"haskell-text"
+ "haskell-text-metrics" "haskell-tls" "haskell-unicode-transforms" 
"haskell-unix-compat"
+ "haskell-unliftio" "haskell-unordered-containers" "haskell-vector" 
"haskell-yaml"
+ "haskell-zip-archive" "haskell-zlib")
+makedepends=('ghc')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("$pkgname-$_commit.tar.gz::https://github.com/commercialhaskell/stack/archive/$_commit.tar.gz;
+conduit-extra-1.2.0.patch)
+sha512sums=('a40f54f6ec020826315098aaed75037b9da6543a132f1f39a31dfb40a394557b3157f0b4bd00f43cf97be5fa4d72cce54e9cdbc28e1f33244dda08d6cd0b63d2'
+
'7b10127222a93a2a3891f55219e388ed4f5484dc285ad858a163835eba583ba09367831a1b4e70da430dbc21e70d06ea2cd3c1491a2c957c862302d3584aea39')
+
+prepare() {
+  mv $pkgname-$_commit $pkgname-$pkgver
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../conduit-extra-1.2.0.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 stack_completion_script 

[arch-commits] Commit in stack/trunk (PKGBUILD)

2017-12-03 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 18:06:53
  Author: felixonmars
Revision: 272029

upgpkg: stack 1.5.99.20171022-18

rebuild with persistent-sqlite,2.6.4

Modified:
  stack/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 18:05:42 UTC (rev 272028)
+++ PKGBUILD2017-12-03 18:06:53 UTC (rev 272029)
@@ -5,7 +5,7 @@
 pkgname=stack
 pkgver=1.5.99.20171022
 _commit=7bddfaf7f9f8cd9ec1c710fa83e77262e494eee4
-pkgrel=17
+pkgrel=18
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


[arch-commits] Commit in harvid/repos (2 files)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 18:05:42
  Author: dvzrv
Revision: 272028

archrelease: copy trunk to community-testing-x86_64

Added:
  harvid/repos/community-testing-x86_64/
  harvid/repos/community-testing-x86_64/PKGBUILD
(from rev 272027, harvid/trunk/PKGBUILD)

--+
 PKGBUILD |   32 
 1 file changed, 32 insertions(+)

Copied: harvid/repos/community-testing-x86_64/PKGBUILD (from rev 272027, 
harvid/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-03 18:05:42 UTC (rev 272028)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+
+pkgname=harvid
+pkgver=0.8.2
+pkgrel=1
+pkgdesc="HTTP Ardour Video Daemon"
+arch=('x86_64')
+url="https://x42.github.io/harvid/;
+license=('GPL')
+depends=('ffmpeg' 'libpng' 'libjpeg-turbo' 'xxd')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/x42/harvid/archive/v$pkgver.tar.gz;)
+sha512sums=('fde352124008cd3d6230950c79a3a2b8d581803f952c7313c941226b00e80f8078053d941f2c5ead04672639a8db696f0c33482f69dab78187801d7ebce23fce')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  # different job setting needed to not crash build
+  make PREFIX=/usr -j1
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make PREFIX=/usr DESTDIR="${pkgdir}/" install
+
+  # ffmpeg and ffprobe symlinks (for ardour)
+  ln -s ffmpeg "${pkgdir}/usr/bin/ffmpeg_harvid"
+  ln -s ffprobe "${pkgdir}/usr/bin/ffprobe_harvid"
+
+  install -Dm644 README.md \
+"${pkgdir}/usr/share/doc/${pkgname}/README"
+}


[arch-commits] Commit in harvid/trunk (PKGBUILD)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 18:04:52
  Author: dvzrv
Revision: 272027

upgpkg: harvid 0.8.2-1

Updating maintainer. Updating to 0.8.2. Adding further required depends. 
Switching url to https.
Switching to sha512sums. Removing unneeded CFLAGS. Adding comment about 
lowering the make jobs. Minor fixes.

Modified:
  harvid/trunk/PKGBUILD

--+
 PKGBUILD |   30 ++
 1 file changed, 14 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 18:01:15 UTC (rev 272026)
+++ PKGBUILD2017-12-03 18:04:52 UTC (rev 272027)
@@ -1,34 +1,32 @@
 # $Id$
-# Maintainer: speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 
 pkgname=harvid
-pkgver=0.8.1
-pkgrel=2
+pkgver=0.8.2
+pkgrel=1
 pkgdesc="HTTP Ardour Video Daemon"
 arch=('x86_64')
-url="http://x42.github.io/harvid/;
+url="https://x42.github.io/harvid/;
 license=('GPL')
-depends=('ffmpeg')
+depends=('ffmpeg' 'libpng' 'libjpeg-turbo' 'xxd')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/x42/harvid/archive/v$pkgver.tar.gz;)
-md5sums=('a4ba437cc1895a5a47702f0188981ea2')
+sha512sums=('fde352124008cd3d6230950c79a3a2b8d581803f952c7313c941226b00e80f8078053d941f2c5ead04672639a8db696f0c33482f69dab78187801d7ebce23fce')
 
 build() {
-  cd $pkgname-$pkgver
-
-  # prevent GNU executable stack
-  CFLAGS+=" -Wl,-znoexecstack"
+  cd "${pkgname}-${pkgver}"
+  # different job setting needed to not crash build
   make PREFIX=/usr -j1
 }
 
 package() {
-  cd $pkgname-$pkgver
-  make PREFIX=/usr DESTDIR="$pkgdir/" install
+  cd "${pkgname}-${pkgver}"
+  make PREFIX=/usr DESTDIR="${pkgdir}/" install
 
   # ffmpeg and ffprobe symlinks (for ardour)
-  ln -s ffmpeg "$pkgdir/usr/bin/ffmpeg_harvid"
-  ln -s ffprobe "$pkgdir/usr/bin/ffprobe_harvid"
+  ln -s ffmpeg "${pkgdir}/usr/bin/ffmpeg_harvid"
+  ln -s ffprobe "${pkgdir}/usr/bin/ffprobe_harvid"
 
-  # doc
   install -Dm644 README.md \
-"$pkgdir/usr/share/doc/$pkgname/README"
+"${pkgdir}/usr/share/doc/${pkgname}/README"
 }


[arch-commits] Commit in git-annex/repos (2 files)

2017-12-03 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 18:01:15
  Author: felixonmars
Revision: 272026

archrelease: copy trunk to community-staging-x86_64

Added:
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 272025, git-annex/trunk/PKGBUILD)

--+
 PKGBUILD |   53 +
 1 file changed, 53 insertions(+)

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 272025, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-03 18:01:15 UTC (rev 272026)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20171124
+pkgrel=14
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'rsync' 'ghc-libs' "haskell-aeson" "haskell-async" "haskell-aws"
+ "haskell-blaze-builder" "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-clientsession" "haskell-concurrent-output" "haskell-conduit" 
"haskell-crypto-api"
+ "haskell-cryptonite" "haskell-data-default" "haskell-dav" 
"haskell-dbus"
+ "haskell-disk-free-space" "haskell-dlist" "haskell-dns" 
"haskell-edit-distance"
+ "haskell-esqueleto" "haskell-exceptions" "haskell-fdo-notify" 
"haskell-feed"
+ "haskell-hinotify" "haskell-hslogger" "haskell-http-client" 
"haskell-http-conduit"
+ "haskell-http-types" "haskell-ifelse" "haskell-magic" "haskell-memory"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-mountpoints" 
"haskell-mtl"
+ "haskell-network" "haskell-network-info" "haskell-network-multicast" 
"haskell-network-uri"
+ "haskell-old-locale" "haskell-optparse-applicative" 
"haskell-path-pieces"
+ "haskell-persistent" "haskell-persistent-sqlite" 
"haskell-persistent-template"
+ "haskell-quickcheck" "haskell-random" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-safesemaphore" "haskell-sandi" "haskell-securemem" 
"haskell-shakespeare"
+ "haskell-socks" "haskell-split" "haskell-stm" "haskell-stm-chans" 
"haskell-tasty"
+ "haskell-tasty-hunit" "haskell-tasty-quickcheck" 
"haskell-tasty-rerun" "haskell-text"
+ "haskell-torrent" "haskell-unix-compat" "haskell-unordered-containers"
+ "haskell-utf8-string" "haskell-uuid" "haskell-wai" 
"haskell-wai-extra" "haskell-warp"
+ "haskell-warp-tls" "haskell-yesod" "haskell-yesod-core" 
"haskell-yesod-default"
+ "haskell-yesod-form" "haskell-yesod-static")
+makedepends=("chrpath" 'ghc')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+  cd git-annex
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/$pkgname" \
+-fnetwork-uri -fconcurrentoutput -ftorrentparser \
+-ftestsuite -f-androidsplice -f-android -fproduction -fpairing -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime
+  runhaskell Setup build
+}
+
+package() {
+  cd git-annex
+  runhaskell Setup copy --destdir="$pkgdir"
+  make GHC="ghc -dynamic" BUILDER=true DESTDIR="$pkgdir" -j1 install-misc
+
+  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}


[arch-commits] Commit in git-annex/trunk (PKGBUILD)

2017-12-03 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 18:00:54
  Author: felixonmars
Revision: 272025

upgpkg: git-annex 6.20171124-14

rebuild with persistent-sqlite,2.6.4

Modified:
  git-annex/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 17:56:32 UTC (rev 272024)
+++ PKGBUILD2017-12-03 18:00:54 UTC (rev 272025)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20171124
-pkgrel=13
+pkgrel=14
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


[arch-commits] Commit in python-ruamel-yaml/repos/community-x86_64 (PKGBUILD PKGBUILD)

2017-12-03 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 17:56:32
  Author: felixonmars
Revision: 272024

archrelease: copy trunk to community-x86_64

Added:
  python-ruamel-yaml/repos/community-x86_64/PKGBUILD
(from rev 272023, python-ruamel-yaml/trunk/PKGBUILD)
Deleted:
  python-ruamel-yaml/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   46 +++---
 1 file changed, 23 insertions(+), 23 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 17:56:09 UTC (rev 272023)
+++ PKGBUILD2017-12-03 17:56:32 UTC (rev 272024)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Samuel Littley 
-# Contributor: rnons 
-
-pkgname=python-ruamel-yaml
-pkgver=0.15.34
-pkgrel=1
-pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
-arch=('i686' 'x86_64')
-url="https://bitbucket.org/ruamel/yaml;
-license=("MIT")
-makedepends=('python-pip' 'python-wheel')
-source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('f5ae2c590f5570b40d4c05ee86eaf326d210897f6d27fecefd1a43de2dcb7189d181572cf24df370d78568622822df193e4126c1d42ae4a528eba8f281272545')
-
-package() {
-  depends=('python')
-
-  cd ruamel.yaml-$pkgver
-  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-ruamel-yaml/repos/community-x86_64/PKGBUILD (from rev 272023, 
python-ruamel-yaml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 17:56:32 UTC (rev 272024)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Samuel Littley 
+# Contributor: rnons 
+
+pkgname=python-ruamel-yaml
+pkgver=0.15.35
+pkgrel=1
+pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
+arch=('x86_64')
+url="https://bitbucket.org/ruamel/yaml;
+license=("MIT")
+makedepends=('python-pip' 'python-wheel')
+source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
+sha512sums=('3d376ec2b680bf97f3dc80ae15db871ed03abf5187ec5cfcca12b579e449a10f879ea4b885d87d735d15405f18cf685521a855069a86ecbfe71ed51e43abbbe6')
+
+package() {
+  depends=('python')
+
+  cd ruamel.yaml-$pkgver
+  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-ruamel-yaml/trunk (PKGBUILD)

2017-12-03 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 17:56:09
  Author: felixonmars
Revision: 272023

upgpkg: python-ruamel-yaml 0.15.35-1

Modified:
  python-ruamel-yaml/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 17:55:00 UTC (rev 272022)
+++ PKGBUILD2017-12-03 17:56:09 UTC (rev 272023)
@@ -4,7 +4,7 @@
 # Contributor: rnons 
 
 pkgname=python-ruamel-yaml
-pkgver=0.15.34
+pkgver=0.15.35
 pkgrel=1
 pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 license=("MIT")
 makedepends=('python-pip' 'python-wheel')
 
source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('f5ae2c590f5570b40d4c05ee86eaf326d210897f6d27fecefd1a43de2dcb7189d181572cf24df370d78568622822df193e4126c1d42ae4a528eba8f281272545')
+sha512sums=('3d376ec2b680bf97f3dc80ae15db871ed03abf5187ec5cfcca12b579e449a10f879ea4b885d87d735d15405f18cf685521a855069a86ecbfe71ed51e43abbbe6')
 
 package() {
   depends=('python')


[arch-commits] Commit in haskell-persistent-sqlite/repos (2 files)

2017-12-03 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 17:55:00
  Author: felixonmars
Revision: 272022

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-persistent-sqlite/repos/community-staging-x86_64/
  haskell-persistent-sqlite/repos/community-staging-x86_64/PKGBUILD
(from rev 272021, haskell-persistent-sqlite/trunk/PKGBUILD)

--+
 PKGBUILD |   47 +++
 1 file changed, 47 insertions(+)

Copied: haskell-persistent-sqlite/repos/community-staging-x86_64/PKGBUILD (from 
rev 272021, haskell-persistent-sqlite/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-03 17:55:00 UTC (rev 272022)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-sqlite
+pkgname=haskell-persistent-sqlite
+pkgver=2.6.4
+pkgrel=1
+pkgdesc="Backend for the persistent library using sqlite3"
+url="http://www.yesodweb.com/book/persistent;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'sqlite' 'haskell-aeson' 'haskell-conduit' 
'haskell-monad-control'
+ 'haskell-microlens-th' 'haskell-monad-logger' 'haskell-old-locale' 
'haskell-persistent'
+ 'haskell-resource-pool' 'haskell-resourcet' 'haskell-text' 
'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-hspec' 'haskell-persistent-template' 
'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('f8ae4f0b501505b839306c283a8a4c854c62c8b325b25219b890339f4b0b4e6d669176e79b7e35fb9d4cf5fd4627117d464aa141840c7fade8ceac669ca86aa5')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-build-sanity-exe -fsystemlib -fuse-pkgconfig
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in haskell-persistent-sqlite/trunk (PKGBUILD)

2017-12-03 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 17:54:39
  Author: felixonmars
Revision: 272021

upgpkg: haskell-persistent-sqlite 2.6.4-1

rebuild with persistent-sqlite,2.6.4

Modified:
  haskell-persistent-sqlite/trunk/PKGBUILD

--+
 PKGBUILD |   21 +
 1 file changed, 13 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 17:44:40 UTC (rev 272020)
+++ PKGBUILD2017-12-03 17:54:39 UTC (rev 272021)
@@ -4,24 +4,24 @@
 
 _hkgname=persistent-sqlite
 pkgname=haskell-persistent-sqlite
-pkgver=2.6.3.1
-pkgrel=2
+pkgver=2.6.4
+pkgrel=1
 pkgdesc="Backend for the persistent library using sqlite3"
 url="http://www.yesodweb.com/book/persistent;
 license=("MIT")
 arch=('x86_64')
-depends=('ghc-libs' 'sqlite' "haskell-aeson" "haskell-conduit" 
"haskell-monad-control"
- "haskell-microlens-th" "haskell-monad-logger" "haskell-old-locale" 
"haskell-persistent"
- "haskell-resource-pool" "haskell-resourcet" "haskell-text" 
"haskell-unordered-containers")
-makedepends=('ghc')
+depends=('ghc-libs' 'sqlite' 'haskell-aeson' 'haskell-conduit' 
'haskell-monad-control'
+ 'haskell-microlens-th' 'haskell-monad-logger' 'haskell-old-locale' 
'haskell-persistent'
+ 'haskell-resource-pool' 'haskell-resourcet' 'haskell-text' 
'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-hspec' 'haskell-persistent-template' 
'haskell-temporary')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('2b988e68372f72b8c9aab4544005d70c4ceea530e66090c997dce3c0afda64c3c76538f433f17b62ea1d3327979d161f9b87505e1b1f37b87f024de1ddc992e3')
+sha512sums=('f8ae4f0b501505b839306c283a8a4c854c62c8b325b25219b890339f4b0b4e6d669176e79b7e35fb9d4cf5fd4627117d464aa141840c7fade8ceac669ca86aa5')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 
 runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
 --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
 -f-build-sanity-exe -fsystemlib -fuse-pkgconfig
 runhaskell Setup build
@@ -31,6 +31,11 @@
 sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
 }
 
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
 package() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 


[arch-commits] Commit in pandoc/trunk (PKGBUILD)

2017-12-03 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 17:44:40
  Author: felixonmars
Revision: 272020

allow new tasty-hunit (FS#56540)

Modified:
  pandoc/trunk/PKGBUILD

--+
 PKGBUILD |4 
 1 file changed, 4 insertions(+)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 17:33:29 UTC (rev 272019)
+++ PKGBUILD2017-12-03 17:44:40 UTC (rev 272020)
@@ -29,6 +29,10 @@
 
source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
 
sha512sums=('92efa19141991d0737f0cda8ca09a812286bd7126e95d295e7c0d8b7b14e0be85a842f12756d0608765d2135f0ced2e786f2ffa8295d68e4b1fc52447336841d')
 
+prepare() {
+sed -i 's/tasty-hunit >= 0.9 && < 0.10,/tasty-hunit >= 0.9,/' 
$pkgname-$pkgver/$pkgname.cabal
+}
+
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"
 


[arch-commits] Commit in guitarix2/repos (2 files)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 17:33:29
  Author: dvzrv
Revision: 272019

archrelease: copy trunk to community-testing-x86_64

Added:
  guitarix2/repos/community-testing-x86_64/
  guitarix2/repos/community-testing-x86_64/PKGBUILD
(from rev 272018, guitarix2/trunk/PKGBUILD)

--+
 PKGBUILD |   35 +++
 1 file changed, 35 insertions(+)

Copied: guitarix2/repos/community-testing-x86_64/PKGBUILD (from rev 272018, 
guitarix2/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-03 17:33:29 UTC (rev 272019)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+
+pkgname=guitarix2
+pkgver=0.36.1
+pkgrel=1
+pkgdesc="A simple mono guitar amplifier and FX for JACK using Faust"
+arch=('x86_64')
+url="https://guitarix.org;
+license=('GPL')
+depends=('avahi' 'bluez-libs' 'boost-libs' 'fftw' 'gtkmm' 'jack' 'liblrdf' 
'lilv' 'libsigc++' 'libsndfile' 'zita-convolver' 'zita-resampler' 'ttf-roboto')
+makedepends=('python' 'python2' 'boost' 'eigen' 'gperf' 'intltool' 'lv2')
+optdepends=('meterbridge: sound meters')
+provides=('guitarix' 'gx_head')
+conflicts=('guitarix' 'gx_head')
+replaces=('guitarix' 'gx_head')
+source=("https://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.xz;)
+sha512sums=('7719c4e2a3ecb8194c75bfea571b7f5bc29a15ca0e6e9364085e77d97e2c638eb8dd3b5018228d4380a58ff99574a393e2c91c66837f40d245c1a310572300f4')
+
+build() {
+  cd "${pkgname%2}-${pkgver}"
+  python2 waf configure --prefix=/usr \
+--no-desktop-update \
+--no-ldconfig \
+--no-faust \
+--shared-lib \
+--lib-dev
+  python2 waf build
+}
+
+package() {
+  cd "${pkgname%2}-${pkgver}"
+  python2 waf install --destdir="${pkgdir}"
+}


[arch-commits] Commit in guitarix2/trunk (PKGBUILD)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 17:33:19
  Author: dvzrv
Revision: 272018

upgpkg: guitarix2 0.36.1-1

Updating maintainer. Updating to 0.36.1. Switching to https for url and source. 
Adding more required depends. Switching to sha512sums. Minor fixes.

Modified:
  guitarix2/trunk/PKGBUILD

--+
 PKGBUILD |   21 +++--
 1 file changed, 11 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 16:46:51 UTC (rev 272017)
+++ PKGBUILD2017-12-03 17:33:19 UTC (rev 272018)
@@ -1,24 +1,25 @@
 # $Id$
-# Maintainer: speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 
 pkgname=guitarix2
-pkgver=0.35.6
-pkgrel=2
+pkgver=0.36.1
+pkgrel=1
 pkgdesc="A simple mono guitar amplifier and FX for JACK using Faust"
 arch=('x86_64')
-url="http://guitarix.sourceforge.net/;
+url="https://guitarix.org;
 license=('GPL')
-depends=('gtkmm' 'liblrdf' 'lilv' 'bluez-libs' 'boost-libs' 'zita-convolver' 
'zita-resampler')
+depends=('avahi' 'bluez-libs' 'boost-libs' 'fftw' 'gtkmm' 'jack' 'liblrdf' 
'lilv' 'libsigc++' 'libsndfile' 'zita-convolver' 'zita-resampler' 'ttf-roboto')
 makedepends=('python' 'python2' 'boost' 'eigen' 'gperf' 'intltool' 'lv2')
 optdepends=('meterbridge: sound meters')
 provides=('guitarix' 'gx_head')
 conflicts=('guitarix' 'gx_head')
 replaces=('guitarix' 'gx_head')
-source=("http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.xz;)
-md5sums=('d9856cd84d2e1de62adbbda9fada9570')
+source=("https://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.xz;)
+sha512sums=('7719c4e2a3ecb8194c75bfea571b7f5bc29a15ca0e6e9364085e77d97e2c638eb8dd3b5018228d4380a58ff99574a393e2c91c66837f40d245c1a310572300f4')
 
 build() {
-  cd guitarix-$pkgver
+  cd "${pkgname%2}-${pkgver}"
   python2 waf configure --prefix=/usr \
 --no-desktop-update \
 --no-ldconfig \
@@ -29,6 +30,6 @@
 }
 
 package() {
-  cd guitarix-$pkgver
-  python2 waf install --destdir="$pkgdir"
+  cd "${pkgname%2}-${pkgver}"
+  python2 waf install --destdir="${pkgdir}"
 }


[arch-commits] Commit in gpa/repos (2 files)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 16:46:51
  Author: dvzrv
Revision: 272017

archrelease: copy trunk to community-testing-x86_64

Added:
  gpa/repos/community-testing-x86_64/
  gpa/repos/community-testing-x86_64/PKGBUILD
(from rev 272016, gpa/trunk/PKGBUILD)

--+
 PKGBUILD |   30 ++
 1 file changed, 30 insertions(+)

Copied: gpa/repos/community-testing-x86_64/PKGBUILD (from rev 272016, 
gpa/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-03 16:46:51 UTC (rev 272017)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : David Runge 
+# Contributor: speps 
+# Contributor: Mateusz Herych 
+# Contributor: Roman Kyrylych 
+# Contributor: Ravi Desai 
+
+pkgname=gpa
+pkgver=0.9.10
+pkgrel=2
+pkgdesc="A graphical user interface for the GnuPG"
+arch=('x86_64')
+url="https://www.gnupg.org/related_software/gpa/;
+license=('GPL3')
+depends=('gpgme' 'gtk2')
+source=("ftp://ftp.gnupg.org/gcrypt/gpa/gpa-$pkgver.tar.bz2"{,.sig})
+sha512sums=('ff81a78e6b7c46307af6648a2e691a5e8185db229ccc5e259f2c3c05a3c86b337dde492069e7e9510c155fbc64d71cc4e2f109a00400bfb7560c558b753c42a9'
+'SKIP')
+validpgpkeys=(D8692123C4065DEA5E0F3AB5249B39D24F25E3B6) # Werner Koch
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir/" install
+}


  1   2   >