[arch-commits] Commit in iniparser/repos/extra-x86_64 (3 files)

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 07:04:48
  Author: tpowa
Revision: 310868

archrelease: copy trunk to extra-x86_64

Added:
  iniparser/repos/extra-x86_64/PKGBUILD
(from rev 310867, iniparser/trunk/PKGBUILD)
Deleted:
  iniparser/repos/extra-x86_64/0001-allocate-memory-for-string-termination.patch
  iniparser/repos/extra-x86_64/PKGBUILD

---+
 0001-allocate-memory-for-string-termination.patch |   26 ---
 PKGBUILD  |   71 +---
 2 files changed, 32 insertions(+), 65 deletions(-)

Deleted: 0001-allocate-memory-for-string-termination.patch
===
--- 0001-allocate-memory-for-string-termination.patch   2017-11-25 07:04:27 UTC 
(rev 310867)
+++ 0001-allocate-memory-for-string-termination.patch   2017-11-25 07:04:48 UTC 
(rev 310868)
@@ -1,26 +0,0 @@
-From 3d385e4f2aba5122d9e40481c4aec9135b96428a Mon Sep 17 00:00:00 2001
-From: Christian Hesse 
-Date: Thu, 21 May 2015 10:07:32 +0200
-Subject: [PATCH] allocate memory for string termination
-
-This fixes invalid write.

- src/iniparser.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/iniparser.c b/src/iniparser.c
-index 1eb1004..c8a728e 100644
 a/src/iniparser.c
-+++ b/src/iniparser.c
-@@ -66,7 +66,7 @@ static const char * strlwc(const char * in, char *out, 
unsigned len)
- /*--*/
- static char * _strdup(const char *s)
- {
--char * copy = (char*) malloc(strlen(s));
-+char * copy = (char*) malloc(strlen(s) + 1);
- strcpy(copy, s);
- return copy ;
- }
--- 
-2.4.5
-

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-25 07:04:27 UTC (rev 310867)
+++ PKGBUILD2017-11-25 07:04:48 UTC (rev 310868)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Roman Kyrylych 
-# Contributor: Roman Kyrylych 
-
-pkgname=iniparser
-pkgver=4.0
-pkgrel=2
-pkgdesc="A free stand-alone ini file parsing library written in portable ANSI 
C"
-arch=('i686' 'x86_64')
-url="http://ndevilla.free.fr/iniparser/;
-license=('MIT')
-depends=('glibc')
-makedepends=('chrpath')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ndevilla/iniparser/archive/v$pkgver.tar.gz
-0001-allocate-memory-for-string-termination.patch)
-md5sums=('94c7278f8d22de1a31320219b27634b0'
- '1ca2f65886484ea151d5076e09782c28')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  patch -Np1 -i ../0001-allocate-memory-for-string-termination.patch
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  install -Dm644 src/iniparser.h $pkgdir/usr/include/iniparser.h
-  install -Dm644 src/dictionary.h $pkgdir/usr/include/dictionary.h
-  install -Dm644 libiniparser.a $pkgdir/usr/lib/libiniparser.a
-  install -Dm644 libiniparser.so.0 $pkgdir/usr/lib/libiniparser.so.0
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/iniparser/LICENSE
-  ln -sf libiniparser.so.0 $pkgdir/usr/lib/libiniparser.so
-  chrpath -d $pkgdir/usr/lib/libiniparser.so
-}

Copied: iniparser/repos/extra-x86_64/PKGBUILD (from rev 310867, 
iniparser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-25 07:04:48 UTC (rev 310868)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Roman Kyrylych 
+# Contributor: Roman Kyrylych 
+
+pkgname=iniparser
+pkgver=4.1
+pkgrel=1
+pkgdesc="A free stand-alone ini file parsing library written in portable ANSI 
C"
+arch=('x86_64')
+url="http://ndevilla.free.fr/iniparser/;
+license=('MIT')
+depends=('glibc')
+makedepends=('chrpath')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ndevilla/iniparser/archive/v$pkgver.tar.gz)
+md5sums=('e43b722c71b399ab17c329c04dbdf1d7')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  install -Dm644 src/iniparser.h $pkgdir/usr/include/iniparser.h
+  install -Dm644 src/dictionary.h $pkgdir/usr/include/dictionary.h
+  install -Dm644 libiniparser.a $pkgdir/usr/lib/libiniparser.a
+  install -Dm644 libiniparser.so.1 $pkgdir/usr/lib/libiniparser.so.1
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/iniparser/LICENSE
+  ln -sf libiniparser.so.1 $pkgdir/usr/lib/libiniparser.so
+  chrpath -d $pkgdir/usr/lib/libiniparser.so
+}


[arch-commits] Commit in iniparser/trunk (2 files)

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 07:04:27
  Author: tpowa
Revision: 310867

upgpkg: iniparser 4.1-1

bump to latest version

Modified:
  iniparser/trunk/PKGBUILD
Deleted:
  iniparser/trunk/0001-allocate-memory-for-string-termination.patch

---+
 0001-allocate-memory-for-string-termination.patch |   26 
 PKGBUILD  |   19 --
 2 files changed, 6 insertions(+), 39 deletions(-)

Deleted: 0001-allocate-memory-for-string-termination.patch
===
--- 0001-allocate-memory-for-string-termination.patch   2017-11-25 06:55:56 UTC 
(rev 310866)
+++ 0001-allocate-memory-for-string-termination.patch   2017-11-25 07:04:27 UTC 
(rev 310867)
@@ -1,26 +0,0 @@
-From 3d385e4f2aba5122d9e40481c4aec9135b96428a Mon Sep 17 00:00:00 2001
-From: Christian Hesse 
-Date: Thu, 21 May 2015 10:07:32 +0200
-Subject: [PATCH] allocate memory for string termination
-
-This fixes invalid write.

- src/iniparser.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/iniparser.c b/src/iniparser.c
-index 1eb1004..c8a728e 100644
 a/src/iniparser.c
-+++ b/src/iniparser.c
-@@ -66,7 +66,7 @@ static const char * strlwc(const char * in, char *out, 
unsigned len)
- /*--*/
- static char * _strdup(const char *s)
- {
--char * copy = (char*) malloc(strlen(s));
-+char * copy = (char*) malloc(strlen(s) + 1);
- strcpy(copy, s);
- return copy ;
- }
--- 
-2.4.5
-

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 06:55:56 UTC (rev 310866)
+++ PKGBUILD2017-11-25 07:04:27 UTC (rev 310867)
@@ -4,8 +4,8 @@
 # Contributor: Roman Kyrylych 
 
 pkgname=iniparser
-pkgver=4.0
-pkgrel=2
+pkgver=4.1
+pkgrel=1
 pkgdesc="A free stand-alone ini file parsing library written in portable ANSI 
C"
 arch=('x86_64')
 url="http://ndevilla.free.fr/iniparser/;
@@ -12,16 +12,9 @@
 license=('MIT')
 depends=('glibc')
 makedepends=('chrpath')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ndevilla/iniparser/archive/v$pkgver.tar.gz
-0001-allocate-memory-for-string-termination.patch)
-md5sums=('94c7278f8d22de1a31320219b27634b0'
- '1ca2f65886484ea151d5076e09782c28')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ndevilla/iniparser/archive/v$pkgver.tar.gz)
+md5sums=('e43b722c71b399ab17c329c04dbdf1d7')
 
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  patch -Np1 -i ../0001-allocate-memory-for-string-termination.patch
-}
-
 build() {
   cd $srcdir/$pkgname-$pkgver
   make
@@ -32,8 +25,8 @@
   install -Dm644 src/iniparser.h $pkgdir/usr/include/iniparser.h
   install -Dm644 src/dictionary.h $pkgdir/usr/include/dictionary.h
   install -Dm644 libiniparser.a $pkgdir/usr/lib/libiniparser.a
-  install -Dm644 libiniparser.so.0 $pkgdir/usr/lib/libiniparser.so.0
+  install -Dm644 libiniparser.so.1 $pkgdir/usr/lib/libiniparser.so.1
   install -Dm644 LICENSE $pkgdir/usr/share/licenses/iniparser/LICENSE
-  ln -sf libiniparser.so.0 $pkgdir/usr/lib/libiniparser.so
+  ln -sf libiniparser.so.1 $pkgdir/usr/lib/libiniparser.so
   chrpath -d $pkgdir/usr/lib/libiniparser.so
 }


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

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 06:55:56
  Author: tpowa
Revision: 310866

archrelease: copy trunk to extra-any

Added:
  convmv/repos/extra-any/PKGBUILD
(from rev 310865, convmv/trunk/PKGBUILD)
Deleted:
  convmv/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-25 06:55:41 UTC (rev 310865)
+++ PKGBUILD2017-11-25 06:55:56 UTC (rev 310866)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer : Aaron Griffin 
-
-pkgname=convmv
-pkgver=2.0
-pkgrel=1
-pkgdesc="Tool for converting encodings on filesystems"
-license=('GPL2')
-arch=('any')
-url="http://j3e.de/linux/convmv/;
-depends=('perl')
-source=("http://j3e.de/linux/convmv/$pkgname-$pkgver.tar.gz;)
-md5sums=('984a13dd5068c0c67356b87e4078d66e')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make PREFIX=$pkgdir/usr install
-}

Copied: convmv/repos/extra-any/PKGBUILD (from rev 310865, convmv/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-25 06:55:56 UTC (rev 310866)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer : Aaron Griffin 
+
+pkgname=convmv
+pkgver=2.04
+pkgrel=1
+pkgdesc="Tool for converting encodings on filesystems"
+license=('GPL2')
+arch=('any')
+url="http://j3e.de/linux/convmv/;
+depends=('perl')
+source=("http://j3e.de/linux/convmv/$pkgname-$pkgver.tar.gz;)
+md5sums=('bd3649a2723c9e19ed0a202fbe625ece')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make PREFIX=$pkgdir/usr install
+}


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

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 06:55:41
  Author: tpowa
Revision: 310865

upgpkg: convmv 2.04-1

bump to latest version

Modified:
  convmv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 06:51:58 UTC (rev 310864)
+++ PKGBUILD2017-11-25 06:55:41 UTC (rev 310865)
@@ -2,7 +2,7 @@
 # Maintainer : Aaron Griffin 
 
 pkgname=convmv
-pkgver=2.0
+pkgver=2.04
 pkgrel=1
 pkgdesc="Tool for converting encodings on filesystems"
 license=('GPL2')
@@ -10,7 +10,7 @@
 url="http://j3e.de/linux/convmv/;
 depends=('perl')
 source=("http://j3e.de/linux/convmv/$pkgname-$pkgver.tar.gz;)
-md5sums=('984a13dd5068c0c67356b87e4078d66e')
+md5sums=('bd3649a2723c9e19ed0a202fbe625ece')
 
 build() {
   cd $srcdir/$pkgname-$pkgver


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

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 06:51:58
  Author: tpowa
Revision: 310864

archrelease: copy trunk to testing-x86_64

Added:
  gawk/repos/testing-x86_64/
  gawk/repos/testing-x86_64/PKGBUILD
(from rev 310863, gawk/trunk/PKGBUILD)

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

Copied: gawk/repos/testing-x86_64/PKGBUILD (from rev 310863, 
gawk/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-11-25 06:51:58 UTC (rev 310864)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:
+# Contributor: Tom Newsom 
+
+pkgname=gawk
+pkgver=4.2.0
+pkgrel=1
+pkgdesc="GNU version of awk"
+arch=('x86_64')
+url="http://www.gnu.org/software/gawk/;
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('sh' 'glibc' 'mpfr')
+provides=('awk')
+source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('0b598c31bc703d66082bd958d4189980'
+ 'SKIP')
+validpgpkeys=('D1967C63788713177D861ED7DF597815937EC0D2') # Arnold Robbins
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libexecdir=/usr/lib --without-libsigsegv
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  #install -dm755 ${pkgdir}/bin
+  #ln -sf /usr/bin/gawk ${pkgdir}/bin/
+  #ln -sf gawk ${pkgdir}/bin/awk
+}


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

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 06:51:43
  Author: tpowa
Revision: 310863

upgpkg: gawk 4.2.0-1

bump to latest version

Modified:
  gawk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 06:42:42 UTC (rev 310862)
+++ PKGBUILD2017-11-25 06:51:43 UTC (rev 310863)
@@ -3,8 +3,8 @@
 # Contributor: Tom Newsom 
 
 pkgname=gawk
-pkgver=4.1.4
-pkgrel=2
+pkgver=4.2.0
+pkgrel=1
 pkgdesc="GNU version of awk"
 arch=('x86_64')
 url="http://www.gnu.org/software/gawk/;
@@ -13,7 +13,7 @@
 depends=('sh' 'glibc' 'mpfr')
 provides=('awk')
 
source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
-md5sums=('f20c94ca51b6ebfc9bffb90f95c8ffbb'
+md5sums=('0b598c31bc703d66082bd958d4189980'
  'SKIP')
 validpgpkeys=('D1967C63788713177D861ED7DF597815937EC0D2') # Arnold Robbins
 


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

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 06:42:42
  Author: tpowa
Revision: 310862

archrelease: copy trunk to testing-x86_64

Added:
  reiserfsprogs/repos/testing-x86_64/PKGBUILD
(from rev 310861, reiserfsprogs/trunk/PKGBUILD)
Deleted:
  reiserfsprogs/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-25 06:41:46 UTC (rev 310861)
+++ PKGBUILD2017-11-25 06:42:42 UTC (rev 310862)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: judd 
-
-pkgname=reiserfsprogs
-pkgver=3.6.27
-pkgrel=1
-pkgdesc="Reiserfs utilities"
-arch=('x86_64')
-url="http://www.kernel.org/;
-license=('GPL')
-groups=('base')
-depends=('util-linux')
-source=("https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('90c139542725efc6da3a6b1709695395')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  CFLAGS+=' -fgnu89-inline'
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: reiserfsprogs/repos/testing-x86_64/PKGBUILD (from rev 310861, 
reiserfsprogs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-25 06:42:42 UTC (rev 310862)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: judd 
+
+pkgname=reiserfsprogs
+pkgver=3.6.27
+pkgrel=1
+pkgdesc="Reiserfs utilities"
+arch=('x86_64')
+url="http://www.kernel.org/;
+license=('GPL')
+groups=('base')
+depends=('util-linux')
+source=("https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('90c139542725efc6da3a6b1709695395')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  CFLAGS+=' -fgnu89-inline'
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


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

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 06:41:46
  Author: tpowa
Revision: 310861

archrelease: copy trunk to testing-x86_64

Added:
  reiserfsprogs/repos/testing-x86_64/
  reiserfsprogs/repos/testing-x86_64/PKGBUILD
(from rev 310860, reiserfsprogs/trunk/PKGBUILD)

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

Copied: reiserfsprogs/repos/testing-x86_64/PKGBUILD (from rev 310860, 
reiserfsprogs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-11-25 06:41:46 UTC (rev 310861)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: judd 
+
+pkgname=reiserfsprogs
+pkgver=3.6.27
+pkgrel=1
+pkgdesc="Reiserfs utilities"
+arch=('x86_64')
+url="http://www.kernel.org/;
+license=('GPL')
+groups=('base')
+depends=('util-linux')
+source=("https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('90c139542725efc6da3a6b1709695395')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  CFLAGS+=' -fgnu89-inline'
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


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

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 06:41:34
  Author: tpowa
Revision: 310860

upgpkg: reiserfsprogs 3.6.27-1

bump to latest version

Modified:
  reiserfsprogs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 06:40:15 UTC (rev 310859)
+++ PKGBUILD2017-11-25 06:41:34 UTC (rev 310860)
@@ -3,7 +3,7 @@
 # Contributor: judd 
 
 pkgname=reiserfsprogs
-pkgver=3.6.25
+pkgver=3.6.27
 pkgrel=1
 pkgdesc="Reiserfs utilities"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 groups=('base')
 depends=('util-linux')
 
source=("https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('027a598b055dccb8da3aea1378a19f3c')
+md5sums=('90c139542725efc6da3a6b1709695395')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 06:40:15
  Author: tpowa
Revision: 310859

archrelease: copy trunk to testing-x86_64

Added:
  xfsprogs/repos/testing-x86_64/
  xfsprogs/repos/testing-x86_64/PKGBUILD
(from rev 310858, xfsprogs/trunk/PKGBUILD)

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

Copied: xfsprogs/repos/testing-x86_64/PKGBUILD (from rev 310858, 
xfsprogs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-11-25 06:40:15 UTC (rev 310859)
@@ -0,0 +1,34 @@
+# $Id$
+#
+pkgname=xfsprogs
+pkgver=4.13.1
+pkgrel=1
+pkgdesc="XFS filesystem utilities"
+arch=('x86_64')
+license=('LGPL')
+url="http://xfs.or;
+groups=('base')
+depends=('sh' 'libutil-linux' 'readline')
+makedepends=('git')
+options=('!makeflags')
+source=("git+https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git#tag=v${pkgver};)
+md5sums=('SKIP')
+
+build() {
+  cd "${srcdir}/${pkgname}-dev"
+  make configure
+  export OPTIMIZER="-march=${CARCH/_/-} -O1"
+  export DEBUG=-DNDEBUG
+  ./configure --prefix=/usr --sbindir=/usr/bin --enable-readline
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-dev"
+  make DIST_ROOT="${pkgdir}" PKG_ROOT_SBIN_DIR="/usr/bin" install install-dev
+  chown -R root $pkgdir
+  chgrp -R root $pkgdir
+  # add hack as we cannot set rootlibdir
+  mv "${pkgdir}"/lib/libhandle.so* "${pkgdir}/usr/lib/"
+  rm -rf "${pkgdir}/lib"
+}


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

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 06:40:01
  Author: tpowa
Revision: 310858

upgpkg: xfsprogs 4.13.1-1

bump to latest version

Modified:
  xfsprogs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 06:34:38 UTC (rev 310857)
+++ PKGBUILD2017-11-25 06:40:01 UTC (rev 310858)
@@ -1,12 +1,12 @@
 # $Id$
 #
 pkgname=xfsprogs
-pkgver=4.12.0
+pkgver=4.13.1
 pkgrel=1
 pkgdesc="XFS filesystem utilities"
 arch=('x86_64')
 license=('LGPL')
-url="http://oss.sgi.com/projects/xfs/;
+url="http://xfs.or;
 groups=('base')
 depends=('sh' 'libutil-linux' 'readline')
 makedepends=('git')


[arch-commits] Commit in hwids/repos/core-any (PKGBUILD PKGBUILD)

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 06:34:38
  Author: tpowa
Revision: 310857

archrelease: copy trunk to core-any

Added:
  hwids/repos/core-any/PKGBUILD
(from rev 310856, hwids/trunk/PKGBUILD)
Deleted:
  hwids/repos/core-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-25 06:34:18 UTC (rev 310856)
+++ PKGBUILD2017-11-25 06:34:38 UTC (rev 310857)
@@ -1,20 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen 
-pkgname=hwids
-pkgver=20170715
-pkgrel=1
-pkgdesc="hardware identification databases"
-makedepends=('git')
-url=https://github.com/gentoo/hwids
-license=('GPL2')
-arch=('any')
-source=("git://github.com/gentoo/hwids.git#tag=${pkgname}-${pkgver}")
-
-package() {
-  cd hwids
-
-  for ids in pci.ids usb.ids; do
-install -Dm644 "$ids" "${pkgdir}/usr/share/hwdata/${ids}"
-  done
-}
-md5sums=('SKIP')

Copied: hwids/repos/core-any/PKGBUILD (from rev 310856, hwids/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-25 06:34:38 UTC (rev 310857)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+pkgname=hwids
+pkgver=20171003
+pkgrel=1
+pkgdesc="hardware identification databases"
+makedepends=('git')
+url=https://github.com/gentoo/hwids
+license=('GPL2')
+arch=('any')
+source=("git://github.com/gentoo/hwids.git#tag=${pkgname}-${pkgver}")
+
+package() {
+  cd hwids
+
+  for ids in pci.ids usb.ids; do
+install -Dm644 "$ids" "${pkgdir}/usr/share/hwdata/${ids}"
+  done
+}
+md5sums=('SKIP')


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

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 06:34:18
  Author: tpowa
Revision: 310856

upgpkg: hwids 20171003-1

update to latest version

Modified:
  hwids/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 06:32:56 UTC (rev 310855)
+++ PKGBUILD2017-11-25 06:34:18 UTC (rev 310856)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tom Gundersen 
 pkgname=hwids
-pkgver=20170715
+pkgver=20171003
 pkgrel=1
 pkgdesc="hardware identification databases"
 makedepends=('git')


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

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 06:32:56
  Author: tpowa
Revision: 310855

archrelease: copy trunk to testing-x86_64

Added:
  pciutils/repos/testing-x86_64/
  pciutils/repos/testing-x86_64/PKGBUILD
(from rev 310854, pciutils/trunk/PKGBUILD)

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

Copied: pciutils/repos/testing-x86_64/PKGBUILD (from rev 310854, 
pciutils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-11-25 06:32:56 UTC (rev 310855)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+pkgname=pciutils
+pkgver=3.5.6
+pkgrel=1
+pkgdesc="PCI bus configuration space access library and tools"
+arch=(x86_64)
+license=('GPL2')
+groups=('base')
+url="http://mj.ucw.cz/sw/pciutils/;
+depends=('glibc' 'hwids' 'kmod')
+source=(#ftp://ftp.kernel.org/pub/software/utils/${pkgname}/${pkgname}-${pkgver}.tar.bz2
+   ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz
+   
ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz.sign)
+validpgpkeys=(
+  '5558F9399CD7836850553C6EC28E7847ED70F82D' # Martin Mares 

+ )
+
+md5sums=('63b347d2bb5719b7769c03a1bb72a5b7'
+ 'SKIP')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make OPT="${CFLAGS} -fPIC -DPIC" ZLIB=no SHARED=no PREFIX=/usr 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man SBINDIR=/usr/bin lib/libpci.a 
+  cp lib/libpci.a "${srcdir}/"
+  make clean
+  make OPT="${CFLAGS}" ZLIB=no SHARED=yes PREFIX=/usr SBINDIR=/usr/bin 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make SHARED=yes PREFIX=/usr SBINDIR=/usr/bin SHAREDIR=/usr/share/hwdata 
MANDIR=/usr/share/man DESTDIR="${pkgdir}" install install-lib
+  # this is now supplied by the hwids package
+  rm -rf 
$pkgdir/usr/{sbin/update-pciids,share/{man/man8/update-pciids.8,hwdata}}
+}


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

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 06:32:37
  Author: tpowa
Revision: 310854

upgpkg: pciutils 3.5.6-1

bump to latest version

Modified:
  pciutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 06:31:16 UTC (rev 310853)
+++ PKGBUILD2017-11-25 06:32:37 UTC (rev 310854)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tobias Powalowski 
 pkgname=pciutils
-pkgver=3.5.5
+pkgver=3.5.6
 pkgrel=1
 pkgdesc="PCI bus configuration space access library and tools"
 arch=(x86_64)
@@ -16,7 +16,7 @@
   '5558F9399CD7836850553C6EC28E7847ED70F82D' # Martin Mares 

  )
 
-md5sums=('f99f9ea87d063e98ab19943e91716eca'
+md5sums=('63b347d2bb5719b7769c03a1bb72a5b7'
  'SKIP')
 
 build() {


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

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 06:31:16
  Author: tpowa
Revision: 310853

archrelease: copy trunk to testing-x86_64

Added:
  usbutils/repos/testing-x86_64/
  usbutils/repos/testing-x86_64/PKGBUILD
(from rev 310852, usbutils/trunk/PKGBUILD)
  usbutils/repos/testing-x86_64/fix-python2.patch
(from rev 310852, usbutils/trunk/fix-python2.patch)

---+
 PKGBUILD  |   35 +++
 fix-python2.patch |8 
 2 files changed, 43 insertions(+)

Copied: usbutils/repos/testing-x86_64/PKGBUILD (from rev 310852, 
usbutils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-11-25 06:31:16 UTC (rev 310853)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Tom Gundersen 
+# Contributor: Judd Vinet 
+# Contributor: Curtis Campbell 
+pkgname=usbutils
+pkgver=009
+pkgrel=1
+pkgdesc="USB Device Utilities"
+arch=(x86_64)
+license=('GPL')
+groups=('base')
+depends=('libusb' 'hwids')
+optdepends=('python2: for lsusb.py usage'
+'coreutils: for lsusb.py usage')
+url="http://linux-usb.sourceforge.net/;
+source=("http://www.kernel.org/pub/linux/utils/usb/usbutils/${pkgname}-${pkgver}.tar.xz;
+fix-python2.patch)
+md5sums=('a7cf9e8903041987efa5e5e0080e0b4d'
+ '45c9e0fe5581b44a18b613977911aa2a')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # patch lsusb.py to use correct usb.ids file and python2 interpreter
+  patch -Np1 -i $srcdir/fix-python2.patch
+  ./configure --prefix=/usr --datadir=/usr/share/hwdata --disable-zlib
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # this is now in the hwids package
+  rm -rf $pkgdir/usr/{share/hwdata,sbin}
+}

Copied: usbutils/repos/testing-x86_64/fix-python2.patch (from rev 310852, 
usbutils/trunk/fix-python2.patch)
===
--- testing-x86_64/fix-python2.patch(rev 0)
+++ testing-x86_64/fix-python2.patch2017-11-25 06:31:16 UTC (rev 310853)
@@ -0,0 +1,8 @@
+--- usbutils-009/lsusb.py.in   2017-11-25 07:27:01.839714648 +0100
 usbutils-009/lsusb.py.in   2017-11-25 07:27:13.259776787 +0100
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python
++#!/usr/bin/env python2
+ # lsusb-VERSION.py
+ # Displays your USB devices in reasonable form.
+ # (c) Kurt Garloff , 2/2009, GPL v2 or v3.


[arch-commits] Commit in usbutils/trunk (PKGBUILD fix-python2.patch)

2017-11-24 Thread Tobias Powalowski
Date: Saturday, November 25, 2017 @ 06:30:35
  Author: tpowa
Revision: 310852

upgpkg: usbutils 009-1

bump to latest version

Modified:
  usbutils/trunk/PKGBUILD
  usbutils/trunk/fix-python2.patch

---+
 PKGBUILD  |6 +++---
 fix-python2.patch |   15 +++
 2 files changed, 6 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 05:08:11 UTC (rev 310851)
+++ PKGBUILD2017-11-25 06:30:35 UTC (rev 310852)
@@ -4,7 +4,7 @@
 # Contributor: Judd Vinet 
 # Contributor: Curtis Campbell 
 pkgname=usbutils
-pkgver=008
+pkgver=009
 pkgrel=1
 pkgdesc="USB Device Utilities"
 arch=(x86_64)
@@ -16,8 +16,8 @@
 url="http://linux-usb.sourceforge.net/;
 
source=("http://www.kernel.org/pub/linux/utils/usb/usbutils/${pkgname}-${pkgver}.tar.xz;
 fix-python2.patch)
-md5sums=('2780b6ae21264c888f8f30fb2aab1259'
- '45766196895b4cc50b53cd56e1bbf3d1')
+md5sums=('a7cf9e8903041987efa5e5e0080e0b4d'
+ '45c9e0fe5581b44a18b613977911aa2a')
 
 build() {
   cd $srcdir/$pkgname-$pkgver

Modified: fix-python2.patch
===
--- fix-python2.patch   2017-11-25 05:08:11 UTC (rev 310851)
+++ fix-python2.patch   2017-11-25 06:30:35 UTC (rev 310852)
@@ -1,17 +1,8 @@
 usbutils-002/lsusb.py  2010-12-16 01:07:09.0 +0100
-+++ usbutils-002/lsusb.py  2011-04-09 22:43:59.043828595 +0200
+--- usbutils-009/lsusb.py.in   2017-11-25 07:27:01.839714648 +0100
 usbutils-009/lsusb.py.in   2017-11-25 07:27:13.259776787 +0100
 @@ -1,4 +1,4 @@
 -#!/usr/bin/env python
 +#!/usr/bin/env python2
- # lsusb.py
+ # lsusb-VERSION.py
  # Displays your USB devices in reasonable form.
  # (c) Kurt Garloff , 2/2009, GPL v2 or v3.
-@@ -16,7 +16,7 @@
- warnsort = False
- 
- prefix = "/sys/bus/usb/devices/"
--usbids = "/usr/share/usb.ids"
-+usbids = "/usr/share/hwdata/usb.ids"
- 
- esc = chr(27)
- norm = esc + "[0;0m"


[arch-commits] Commit in wine/repos/multilib-x86_64 (6 files)

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 05:31:09
  Author: felixonmars
Revision: 268416

archrelease: copy trunk to multilib-x86_64

Added:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 268415, wine/trunk/30-win32-aliases.conf)
  wine/repos/multilib-x86_64/PKGBUILD
(from rev 268415, wine/trunk/PKGBUILD)
  wine/repos/multilib-x86_64/harmony-fix.diff
(from rev 268415, wine/trunk/harmony-fix.diff)
Deleted:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
  wine/repos/multilib-x86_64/PKGBUILD
  wine/repos/multilib-x86_64/harmony-fix.diff

---+
 30-win32-aliases.conf |   40 ++---
 PKGBUILD  |  372 
 harmony-fix.diff  |  126 
 3 files changed, 269 insertions(+), 269 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2017-11-25 05:30:14 UTC (rev 268415)
+++ 30-win32-aliases.conf   2017-11-25 05:31:09 UTC (rev 268416)
@@ -1,20 +0,0 @@
-
-
-
-  
-MS Shell Dlg
-Microsoft Sans Serif
-sans-serif
-  
-  
-MS Shell Dlg 2
-Tahoma
-sans-serif
-  
-
-  
-MS Sans Serif
-Microsoft Sans Serif
-sans-serif
-  
-

Copied: wine/repos/multilib-x86_64/30-win32-aliases.conf (from rev 268415, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2017-11-25 05:31:09 UTC (rev 268416)
@@ -0,0 +1,20 @@
+
+
+
+  
+MS Shell Dlg
+Microsoft Sans Serif
+sans-serif
+  
+  
+MS Shell Dlg 2
+Tahoma
+sans-serif
+  
+
+  
+MS Sans Serif
+Microsoft Sans Serif
+sans-serif
+  
+

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-25 05:30:14 UTC (rev 268415)
+++ PKGBUILD2017-11-25 05:31:09 UTC (rev 268416)
@@ -1,186 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine
-pkgver=2.22
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(https://dl.winehq.org/wine/source/2.x/$pkgname-$_pkgbasever.tar.xz{,.sign}
-harmony-fix.diff
-30-win32-aliases.conf)
-sha512sums=('14ecc25c3012c4eb9b1d3207372d0a4187f62593f986caca3196811b8aac0a7b898ae9acd94c707e0d63b6702019cf5051a964ada606b1ff8fb034bb353116bb'
-'SKIP'
-
'b86edf07bfc560f403fdfd5a71f97930ee2a4c3f76c92cc1a0dbb2e107be9db3bed3a727a0430d8a049583c63dd11f5d4567fb7aa69b193997c6da241acc4f2e'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
-  DA23579A74D4AD9AF9D3F945CEFAC8EAAF17519D)
-
-pkgdesc="A compatibility layer for running Windows programs"
-url="http://www.winehq.com;
-arch=(x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-_depends=(
-  fontconfig  lib32-fontconfig
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  libpcap lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'  'gcc-multilib>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  samba
-  opencl-headers
-)
-
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib  lib32-alsa-lib
-  libjpeg-turbo   

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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 05:30:14
  Author: felixonmars
Revision: 268415

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 268414, pandoc-crossref/trunk/PKGBUILD)

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
268414, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-25 05:30:14 UTC (rev 268415)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.0.0beta3a
+pkgrel=13
+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-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 05:28:41
  Author: felixonmars
Revision: 268414

upgpkg: pandoc-crossref 0.3.0.0beta3a-13

rebuild with hslua-module-text,0.1.2.1

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 05:27:31 UTC (rev 268413)
+++ PKGBUILD2017-11-25 05:28:41 UTC (rev 268414)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.0.0beta3a
-pkgrel=12
+pkgrel=13
 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-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 05:27:31
  Author: felixonmars
Revision: 268413

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 268412, haskell-hakyll/trunk/PKGBUILD)

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
268412, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-25 05:27:31 UTC (rev 268413)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.8.0
+pkgrel=90
+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-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 05:27:10
  Author: felixonmars
Revision: 268412

upgpkg: haskell-hakyll 4.9.8.0-90

rebuild with hslua-module-text,0.1.2.1

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 05:25:10 UTC (rev 268411)
+++ PKGBUILD2017-11-25 05:27:10 UTC (rev 268412)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.9.8.0
-pkgrel=89
+pkgrel=90
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 05:25:10
  Author: felixonmars
Revision: 268411

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 268410, pandoc-citeproc/trunk/PKGBUILD)

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
268410, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-25 05:25:10 UTC (rev 268411)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.12.1
+pkgrel=15
+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-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 05:24:48
  Author: felixonmars
Revision: 268410

upgpkg: pandoc-citeproc 0.12.1-15

rebuild with hslua-module-text,0.1.2.1

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 05:22:31 UTC (rev 268409)
+++ PKGBUILD2017-11-25 05:24:48 UTC (rev 268410)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.12.1
-pkgrel=14
+pkgrel=15
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("custom:BSD3")


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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 05:22:05
  Author: felixonmars
Revision: 268408

upgpkg: pandoc 2.0.3-3

rebuild with hslua-module-text,0.1.2.1

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 05:11:53 UTC (rev 268407)
+++ PKGBUILD2017-11-25 05:22:05 UTC (rev 268408)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc
 pkgver=2.0.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 05:22:31
  Author: felixonmars
Revision: 268409

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 268408, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-25 05:22:31 UTC (rev 268409)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.0.3
+pkgrel=3
+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=('92efa19141991d0737f0cda8ca09a812286bd7126e95d295e7c0d8b7b14e0be85a842f12756d0608765d2135f0ced2e786f2ffa8295d68e4b1fc52447336841d')
+
+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 haskell-hslua-module-text/repos (2 files)

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 05:11:53
  Author: felixonmars
Revision: 268407

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hslua-module-text/repos/community-staging-x86_64/
  haskell-hslua-module-text/repos/community-staging-x86_64/PKGBUILD
(from rev 268406, haskell-hslua-module-text/trunk/PKGBUILD)

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

Copied: haskell-hslua-module-text/repos/community-staging-x86_64/PKGBUILD (from 
rev 268406, haskell-hslua-module-text/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-25 05:11:53 UTC (rev 268407)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hslua-module-text
+pkgname=haskell-hslua-module-text
+pkgver=0.1.2.1
+pkgrel=1
+pkgdesc="Lua module for text"
+url="https://github.com/hslua/hslua-module-test;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hslua' 'haskell-text')
+makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('06f6b5611d452479e99772bbd1eb622f56740a5fc17091cd5c49e13dacb5654deb6d073fe2f40ffb7240ab9267ea3c59d0282ef8f55fce9095525b3d29a73513')
+
+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
+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}/${_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-hslua-module-text/trunk (PKGBUILD)

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 05:11:25
  Author: felixonmars
Revision: 268406

upgpkg: haskell-hslua-module-text 0.1.2.1-1

rebuild with hslua-module-text,0.1.2.1

Modified:
  haskell-hslua-module-text/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 05:03:48 UTC (rev 268405)
+++ PKGBUILD2017-11-25 05:11:25 UTC (rev 268406)
@@ -4,7 +4,7 @@
 
 _hkgname=hslua-module-text
 pkgname=haskell-hslua-module-text
-pkgver=0.1.2
+pkgver=0.1.2.1
 pkgrel=1
 pkgdesc="Lua module for text"
 url="https://github.com/hslua/hslua-module-test;
@@ -13,7 +13,7 @@
 depends=('ghc-libs' 'haskell-hslua' 'haskell-text')
 makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('f95dea0e073198a9de72328a4425a20abfd3de5bfafcdd97912ec7fab1f26dbace31571d19435d3f67e98ad0545dad31561fcf3c971301281daea51c912f04ea')
+sha512sums=('06f6b5611d452479e99772bbd1eb622f56740a5fc17091cd5c49e13dacb5654deb6d073fe2f40ffb7240ab9267ea3c59d0282ef8f55fce9095525b3d29a73513')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
@@ -30,7 +30,7 @@
 
 check() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
-runhaskell Setup test || warning "Tests failed"
+runhaskell Setup test
 }
 
 package() {


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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 05:08:11
  Author: felixonmars
Revision: 310851

fix makedepends on cython (FS#56434)

Modified:
  python-lxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 03:05:56 UTC (rev 310850)
+++ PKGBUILD2017-11-25 05:08:11 UTC (rev 310851)
@@ -10,9 +10,9 @@
 license=('BSD' 'custom')
 url="http://lxml.de/;
 makedepends=('libxslt' 'python-setuptools' 'python2-setuptools' 'epydoc' 
'python2-pygments'
- 'python2-docutils')
+ 'python2-docutils' 'cython' 'cython2')
 checkdepends=('python-cssselect' 'python2-cssselect' 'python-html5lib' 
'python2-html5lib'
-  'python-beautifulsoup4' 'python2-beautifulsoup4' 'cython' 
'cython2')
+  'python-beautifulsoup4' 'python2-beautifulsoup4')
 source=("https://github.com/lxml/lxml/archive/lxml-$pkgver.tar.gz;)
 
sha512sums=('69c64fc9f34bd8250dffcc32b6dcc93490731cd32778d7257a232fc5a126e74433ce6d4351683b71872cbeccd2c4d5a970e8fc2e631bbc273125be2b7f61ef31')
 


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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 05:03:48
  Author: felixonmars
Revision: 268405

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-25 05:02:56 UTC (rev 268404)
+++ PKGBUILD2017-11-25 05:03:48 UTC (rev 268405)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=git-annex
-pkgver=6.20171109
-pkgrel=10
-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
-}

Copied: git-annex/repos/community-x86_64/PKGBUILD (from rev 268404, 
git-annex/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-25 05:03:48 UTC (rev 268405)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20171124
+pkgrel=1
+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" 

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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 05:02:56
  Author: felixonmars
Revision: 268404

upgpkg: git-annex 6.20171124-1

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 04:57:15 UTC (rev 268403)
+++ PKGBUILD2017-11-25 05:02:56 UTC (rev 268404)
@@ -3,8 +3,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=git-annex
-pkgver=6.20171109
-pkgrel=10
+pkgver=6.20171124
+pkgrel=1
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 04:57:15
  Author: felixonmars
Revision: 268403

fix makedepends on setuptools (FS#56435)

Modified:
  python-cairosvg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 04:55:24 UTC (rev 268402)
+++ PKGBUILD2017-11-25 04:57:15 UTC (rev 268403)
@@ -14,6 +14,7 @@
 license=('LGPL3')
 depends=('python-cairocffi' 'python-cssselect2' 'python-defusedxml' 
'python-pillow'
  'python-tinycss2')
+makedepends=('python-setuptools')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-isort'
   'python2-pytest-isort' 'python-pytest-flake8' 
'python2-pytest-flake8'
   'python-pytest-cov' 'python2-pytest-cov')


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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 04:52:57
  Author: felixonmars
Revision: 268399

archrelease: copy trunk to community-staging-x86_64

Added:
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 268398, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/conduit-extra-1.2.0.patch
(from rev 268398, stack/trunk/conduit-extra-1.2.0.patch)
  stack/repos/community-staging-x86_64/stack.install
(from rev 268398, 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 268398, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-25 04:52:57 UTC (rev 268399)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.5.99.20171022
+_commit=7bddfaf7f9f8cd9ec1c710fa83e77262e494eee4
+pkgrel=13
+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 

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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 04:52:29
  Author: felixonmars
Revision: 268398

upgpkg: stack 1.5.99.20171022-13

rebuild with persistent-sqlite,2.6.3.1

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 04:46:47 UTC (rev 268397)
+++ PKGBUILD2017-11-25 04:52:29 UTC (rev 268398)
@@ -5,7 +5,7 @@
 pkgname=stack
 pkgver=1.5.99.20171022
 _commit=7bddfaf7f9f8cd9ec1c710fa83e77262e494eee4
-pkgrel=12
+pkgrel=13
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 04:46:47
  Author: felixonmars
Revision: 268397

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 268396, git-annex/trunk/PKGBUILD)

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 268396, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-25 04:46:47 UTC (rev 268397)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20171109
+pkgrel=10
+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-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 04:46:26
  Author: felixonmars
Revision: 268396

upgpkg: git-annex 6.20171109-10

rebuild with persistent-sqlite,2.6.3.1

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 04:41:16 UTC (rev 268395)
+++ PKGBUILD2017-11-25 04:46:26 UTC (rev 268396)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20171109
-pkgrel=9
+pkgrel=10
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


[arch-commits] Commit in python-pluggy/repos/community-testing-any (PKGBUILD PKGBUILD)

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 04:41:16
  Author: felixonmars
Revision: 268395

archrelease: copy trunk to community-testing-any

Added:
  python-pluggy/repos/community-testing-any/PKGBUILD
(from rev 268394, python-pluggy/trunk/PKGBUILD)
Deleted:
  python-pluggy/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-25 04:40:46 UTC (rev 268394)
+++ PKGBUILD2017-11-25 04:41:16 UTC (rev 268395)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-pluggy
-pkgname=(python-pluggy python2-pluggy)
-pkgver=0.6.0
-_commit=607862cac33f62826e2ee710e3e5a71bd794af4a
-pkgrel=1
-pkgdesc="Plugin and hook calling mechanisms for python"
-arch=('any')
-url="https://www.pluggypayments.com/docs/python;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("$pkgbase-$_commit::https://github.com/pytest-dev/pluggy/archive/$_commit.tar.gz;)
-sha512sums=('697927dde4da0c0faf9c7de1342b9c452667e481b40f9bbef836064cfc37ef917c64fcf2ca158a6cc00a12853387d6c0adec708a3ccbfe789da480fcae6fd566')
-
-prepare() {
-  mv pluggy-{$_commit,$pkgver}
-  cp -a pluggy-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pluggy-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pluggy-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/pluggy-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/pluggy-$pkgver-py2
-  python2 setup.py pytest
-}
-
-package_python-pluggy() {
-  depends=('python')
-
-  cd pluggy-$pkgver
-  python setup.py install -O1 --root "$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-pluggy() {
-  depends=('python2')
-
-  cd pluggy-$pkgver-py2
-  python2 setup.py install -O1 --root "$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-pluggy/repos/community-testing-any/PKGBUILD (from rev 268394, 
python-pluggy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-25 04:41:16 UTC (rev 268395)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pluggy
+pkgname=(python-pluggy python2-pluggy)
+pkgver=0.6.0
+pkgrel=2
+pkgdesc="Plugin and hook calling mechanisms for python"
+arch=('any')
+url="https://www.pluggypayments.com/docs/python;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pluggy/archive/$pkgver.tar.gz;)
+sha512sums=('ed8fe81907c7dc476ebfbf0f7e0f902577323d64014765e7d7bfe22c2dc7e4977e1ce7ad55ce7f4e923ae23d206d6c3bcc6663de760c877fce82298cc21079db')
+
+prepare() {
+  cp -a pluggy-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pluggy-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pluggy-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pluggy-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/pluggy-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-pluggy() {
+  depends=('python')
+
+  cd pluggy-$pkgver
+  python setup.py install -O1 --root "$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pluggy() {
+  depends=('python2')
+
+  cd pluggy-$pkgver-py2
+  python2 setup.py install -O1 --root "$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 04:40:46
  Author: felixonmars
Revision: 268394

upgpkg: python-pluggy 0.6.0-2

fix sources

Modified:
  python-pluggy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 04:40:28 UTC (rev 268393)
+++ PKGBUILD2017-11-25 04:40:46 UTC (rev 268394)
@@ -4,8 +4,7 @@
 pkgbase=python-pluggy
 pkgname=(python-pluggy python2-pluggy)
 pkgver=0.6.0
-_commit=607862cac33f62826e2ee710e3e5a71bd794af4a
-pkgrel=1
+pkgrel=2
 pkgdesc="Plugin and hook calling mechanisms for python"
 arch=('any')
 url="https://www.pluggypayments.com/docs/python;
@@ -12,11 +11,10 @@
 license=('MIT')
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("$pkgbase-$_commit::https://github.com/pytest-dev/pluggy/archive/$_commit.tar.gz;)
-sha512sums=('697927dde4da0c0faf9c7de1342b9c452667e481b40f9bbef836064cfc37ef917c64fcf2ca158a6cc00a12853387d6c0adec708a3ccbfe789da480fcae6fd566')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pluggy/archive/$pkgver.tar.gz;)
+sha512sums=('ed8fe81907c7dc476ebfbf0f7e0f902577323d64014765e7d7bfe22c2dc7e4977e1ce7ad55ce7f4e923ae23d206d6c3bcc6663de760c877fce82298cc21079db')
 
 prepare() {
-  mv pluggy-{$_commit,$pkgver}
   cp -a pluggy-$pkgver{,-py2}
 }
 


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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 04:40:02
  Author: felixonmars
Revision: 268392

upgpkg: haskell-persistent-sqlite 2.6.3.1-1

rebuild with persistent-sqlite,2.6.3.1

Modified:
  haskell-persistent-sqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 04:37:53 UTC (rev 268391)
+++ PKGBUILD2017-11-25 04:40:02 UTC (rev 268392)
@@ -4,8 +4,8 @@
 
 _hkgname=persistent-sqlite
 pkgname=haskell-persistent-sqlite
-pkgver=2.6.3
-pkgrel=3
+pkgver=2.6.3.1
+pkgrel=1
 pkgdesc="Backend for the persistent library using sqlite3"
 url="http://www.yesodweb.com/book/persistent;
 license=("MIT")
@@ -15,7 +15,7 @@
  "haskell-resource-pool" "haskell-resourcet" "haskell-text" 
"haskell-unordered-containers")
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('1806993c376a47497a6d88d983b2671ff52eb506f7c7d6ba0013701ac5eb9209a4a813b4dd2200668ecad34d1d7bd267ba7e21e7f382614f2a6ea6b4f8a27279')
+sha512sums=('2b988e68372f72b8c9aab4544005d70c4ceea530e66090c997dce3c0afda64c3c76538f433f17b62ea1d3327979d161f9b87505e1b1f37b87f024de1ddc992e3')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 04:40:28
  Author: felixonmars
Revision: 268393

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 268392, haskell-persistent-sqlite/trunk/PKGBUILD)

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

Copied: haskell-persistent-sqlite/repos/community-staging-x86_64/PKGBUILD (from 
rev 268392, haskell-persistent-sqlite/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-25 04:40:28 UTC (rev 268393)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-sqlite
+pkgname=haskell-persistent-sqlite
+pkgver=2.6.3.1
+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')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2b988e68372f72b8c9aab4544005d70c4ceea530e66090c997dce3c0afda64c3c76538f433f17b62ea1d3327979d161f9b87505e1b1f37b87f024de1ddc992e3')
+
+build() {
+cd "${srcdir}/${_hkgname}-${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-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
+}
+
+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 python-pluggy/repos (2 files)

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 04:37:53
  Author: felixonmars
Revision: 268391

archrelease: copy trunk to community-testing-any

Added:
  python-pluggy/repos/community-testing-any/
  python-pluggy/repos/community-testing-any/PKGBUILD
(from rev 268390, python-pluggy/trunk/PKGBUILD)

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

Copied: python-pluggy/repos/community-testing-any/PKGBUILD (from rev 268390, 
python-pluggy/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-11-25 04:37:53 UTC (rev 268391)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pluggy
+pkgname=(python-pluggy python2-pluggy)
+pkgver=0.6.0
+_commit=607862cac33f62826e2ee710e3e5a71bd794af4a
+pkgrel=1
+pkgdesc="Plugin and hook calling mechanisms for python"
+arch=('any')
+url="https://www.pluggypayments.com/docs/python;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$_commit::https://github.com/pytest-dev/pluggy/archive/$_commit.tar.gz;)
+sha512sums=('697927dde4da0c0faf9c7de1342b9c452667e481b40f9bbef836064cfc37ef917c64fcf2ca158a6cc00a12853387d6c0adec708a3ccbfe789da480fcae6fd566')
+
+prepare() {
+  mv pluggy-{$_commit,$pkgver}
+  cp -a pluggy-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pluggy-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pluggy-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pluggy-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/pluggy-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-pluggy() {
+  depends=('python')
+
+  cd pluggy-$pkgver
+  python setup.py install -O1 --root "$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pluggy() {
+  depends=('python2')
+
+  cd pluggy-$pkgver-py2
+  python2 setup.py install -O1 --root "$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 04:37:15
  Author: felixonmars
Revision: 268390

upgpkg: python-pluggy 0.6.0-1

Modified:
  python-pluggy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 04:36:22 UTC (rev 268389)
+++ PKGBUILD2017-11-25 04:37:15 UTC (rev 268390)
@@ -3,7 +3,7 @@
 
 pkgbase=python-pluggy
 pkgname=(python-pluggy python2-pluggy)
-pkgver=0.5.2.20171114
+pkgver=0.6.0
 _commit=607862cac33f62826e2ee710e3e5a71bd794af4a
 pkgrel=1
 pkgdesc="Plugin and hook calling mechanisms for python"


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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 04:36:22
  Author: felixonmars
Revision: 268389

archrelease: copy trunk to community-x86_64

Added:
  haskell-criterion/repos/community-x86_64/PKGBUILD
(from rev 268388, haskell-criterion/trunk/PKGBUILD)
Deleted:
  haskell-criterion/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   88 ++---
 1 file changed, 44 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-25 04:35:46 UTC (rev 268388)
+++ PKGBUILD2017-11-25 04:36:22 UTC (rev 268389)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=criterion
-pkgname=haskell-criterion
-pkgver=1.2.3.0
-pkgrel=2
-pkgdesc="Robust, reliable performance measurement and analysis"
-url="http://www.serpentine.com/criterion;
-license=("custom:BSD3")
-arch=('i686' 'x86_64')
-depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 'haskell-cassava' 
'haskell-code-page'
- 'haskell-exceptions' 'haskell-glob' 'haskell-js-flot' 
'haskell-js-jquery'
- 'haskell-microstache' 'haskell-mtl' 'haskell-mwc-random' 
'haskell-optparse-applicative'
- 'haskell-parsec' 'haskell-semigroups' 'haskell-statistics' 
'haskell-text'
- 'haskell-transformers-compat' 'haskell-vector' 
'haskell-vector-algorithms')
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('eec70970a56d5eb2cc40349058657b406b927d64910b27c3ecc3cf67709ee047550609f6fc2a57bef67a5a61e1c5652b0e56d5c913d78c1c9bd098a3a8fb4537')
-
-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 \
--f-fast
-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"
-}

Copied: haskell-criterion/repos/community-x86_64/PKGBUILD (from rev 268388, 
haskell-criterion/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-25 04:36:22 UTC (rev 268389)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=criterion
+pkgname=haskell-criterion
+pkgver=1.2.4.0
+pkgrel=1
+pkgdesc="Robust, reliable performance measurement and analysis"
+url="http://www.serpentine.com/criterion;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 'haskell-cassava' 
'haskell-code-page'
+ 'haskell-exceptions' 'haskell-glob' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-microstache' 'haskell-mtl' 'haskell-mwc-random' 
'haskell-optparse-applicative'
+ 'haskell-parsec' 'haskell-semigroups' 'haskell-statistics' 
'haskell-text'
+ 'haskell-transformers-compat' 'haskell-vector' 
'haskell-vector-algorithms')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('162db865396b6a1047bb18aafbd169de10d49b9e6a70619de74b233e05adce79ffe0e5e40e21413764527488c3550a0a46b0f87feaa7a10883877b0985af4c51')
+
+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 \
+-f-fast
+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 

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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 04:35:46
  Author: felixonmars
Revision: 268388

upgpkg: haskell-criterion 1.2.4.0-1

Modified:
  haskell-criterion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 03:55:43 UTC (rev 268387)
+++ PKGBUILD2017-11-25 04:35:46 UTC (rev 268388)
@@ -4,8 +4,8 @@
 
 _hkgname=criterion
 pkgname=haskell-criterion
-pkgver=1.2.3.0
-pkgrel=2
+pkgver=1.2.4.0
+pkgrel=1
 pkgdesc="Robust, reliable performance measurement and analysis"
 url="http://www.serpentine.com/criterion;
 license=("custom:BSD3")
@@ -17,7 +17,7 @@
  'haskell-transformers-compat' 'haskell-vector' 
'haskell-vector-algorithms')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('eec70970a56d5eb2cc40349058657b406b927d64910b27c3ecc3cf67709ee047550609f6fc2a57bef67a5a61e1c5652b0e56d5c913d78c1c9bd098a3a8fb4537')
+sha512sums=('162db865396b6a1047bb18aafbd169de10d49b9e6a70619de74b233e05adce79ffe0e5e40e21413764527488c3550a0a46b0f87feaa7a10883877b0985af4c51')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 03:55:43
  Author: felixonmars
Revision: 268387

archrelease: copy trunk to community-x86_64

Added:
  python-simplejson/repos/community-x86_64/PKGBUILD
(from rev 268386, python-simplejson/trunk/PKGBUILD)
Deleted:
  python-simplejson/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-25 03:55:15 UTC (rev 268386)
+++ PKGBUILD2017-11-25 03:55:43 UTC (rev 268387)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Allan McRae 
-# Contributor: David Moore 
-
-pkgbase=python-simplejson
-pkgname=('python-simplejson' 'python2-simplejson')
-pkgver=3.13.0
-pkgrel=1
-pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python'
-license=('MIT')
-arch=('x86_64')
-url='https://github.com/simplejson/simplejson'
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/simplejson/simplejson/archive/v$pkgver.tar.gz;)
-sha512sums=('ad2a118c0f60f91e9b80e4ebc4be3d891b598a442cb0312da198004e39b4bb60006142fa0bca4c64bca994944712253bb8992c8b7528bafa3e4099a411806d0f')
-
-prepare() {
-  cp -a simplejson-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/simplejson-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/simplejson-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/simplejson-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/simplejson-$pkgver-py2
-  python2 setup.py pytest 
-}
-
-package_python-simplejson() {
-  depends=('python')
-
-  cd simplejson-$pkgver
-  python setup.py install --root="$pkgdir"
-  install -Dm644 "$srcdir"/simplejson-$pkgver/LICENSE.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-simplejson() {
-  depends=('python2')
-
-  cd simplejson-$pkgver-py2
-  python2 setup.py install --root="$pkgdir"
-  install -Dm644 "$srcdir"/simplejson-$pkgver/LICENSE.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:
-  

Copied: python-simplejson/repos/community-x86_64/PKGBUILD (from rev 268386, 
python-simplejson/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-25 03:55:43 UTC (rev 268387)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Allan McRae 
+# Contributor: David Moore 
+
+pkgbase=python-simplejson
+pkgname=('python-simplejson' 'python2-simplejson')
+pkgver=3.13.2
+pkgrel=1
+pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python'
+license=('MIT')
+arch=('x86_64')
+url='https://github.com/simplejson/simplejson'
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/simplejson/simplejson/archive/v$pkgver.tar.gz;)
+sha512sums=('b1d6c68e1a6c967dfb695d0cd3d8dca19d458b650ddc0c8273328378eab7f52b801ee29431a6b3bde16608e886259267f41cbefabb7fbe7adb1e243479f91132')
+
+prepare() {
+  cp -a simplejson-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/simplejson-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/simplejson-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/simplejson-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/simplejson-$pkgver-py2
+  python2 setup.py pytest 
+}
+
+package_python-simplejson() {
+  depends=('python')
+
+  cd simplejson-$pkgver
+  python setup.py install --root="$pkgdir"
+  install -Dm644 "$srcdir"/simplejson-$pkgver/LICENSE.txt \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-simplejson() {
+  depends=('python2')
+
+  cd simplejson-$pkgver-py2
+  python2 setup.py install --root="$pkgdir"
+  install -Dm644 "$srcdir"/simplejson-$pkgver/LICENSE.txt \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:
+  


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

2017-11-24 Thread Felix Yan
Date: Saturday, November 25, 2017 @ 03:55:15
  Author: felixonmars
Revision: 268386

upgpkg: python-simplejson 3.13.2-1

Modified:
  python-simplejson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 02:47:21 UTC (rev 268385)
+++ PKGBUILD2017-11-25 03:55:15 UTC (rev 268386)
@@ -6,7 +6,7 @@
 
 pkgbase=python-simplejson
 pkgname=('python-simplejson' 'python2-simplejson')
-pkgver=3.13.0
+pkgver=3.13.2
 pkgrel=1
 pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python'
 license=('MIT')
@@ -15,7 +15,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/simplejson/simplejson/archive/v$pkgver.tar.gz;)
-sha512sums=('ad2a118c0f60f91e9b80e4ebc4be3d891b598a442cb0312da198004e39b4bb60006142fa0bca4c64bca994944712253bb8992c8b7528bafa3e4099a411806d0f')
+sha512sums=('b1d6c68e1a6c967dfb695d0cd3d8dca19d458b650ddc0c8273328378eab7f52b801ee29431a6b3bde16608e886259267f41cbefabb7fbe7adb1e243479f91132')
 
 prepare() {
   cp -a simplejson-$pkgver{,-py2}


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

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 03:05:56
  Author: svenstaro
Revision: 310850

archrelease: copy trunk to testing-x86_64

Added:
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 310849, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-x86_64/fix-abi.patch
(from rev 310849, nvidia/trunk/fix-abi.patch)
Deleted:
  nvidia/repos/testing-x86_64/PKGBUILD
  nvidia/repos/testing-x86_64/fix-abi.patch

---+
 PKGBUILD  |  154 
 fix-abi.patch |   24 
 2 files changed, 89 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-25 03:02:46 UTC (rev 310849)
+++ PKGBUILD2017-11-25 03:05:56 UTC (rev 310850)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Felix Yan 
-# Contributor: Thomas Baechler 
-
-pkgbase=nvidia
-pkgname=(nvidia nvidia-dkms)
-pkgver=387.34
-_extramodules=extramodules-4.14-ARCH
-pkgrel=2
-pkgdesc="NVIDIA drivers for linux"
-arch=('x86_64')
-url="http://www.nvidia.com/;
-makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.14' 'linux-headers<4.15')
-license=('custom')
-options=('!strip')
-source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-sha256sums=('d540908e76aeecb1f4a2812acf5ad37346934a6b7c8043c8b3ce230a48ceb440')
-
-_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
-
-prepare() {
-sh "${_pkg}.run" --extract-only
-cd "${_pkg}"
-
-cp -a kernel kernel-dkms
-cd kernel-dkms
-sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
-sed -i 's/__JOBS/`nproc`/' dkms.conf
-sed -i 's/__DKMS_MODULES//' dkms.conf
-sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
-DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[1]="nvidia-uvm"\
-DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[2]="nvidia-modeset"\
-DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[3]="nvidia-drm"\
-DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
-
-# Gift for linux-rt guys
-sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
-}
-
-build() {
-_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-cd "${_pkg}"/kernel
-make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
-}
-
-package_nvidia() {
-pkgdesc="NVIDIA drivers for linux"
-depends=('linux>=4.14' 'linux<4.15' "nvidia-utils=${pkgver}" 'libgl')
-
-install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
-  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
-
-find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
-
-echo "blacklist nouveau" |
-  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
-}
-
-package_nvidia-dkms() {
-pkgdesc="NVIDIA driver sources for linux"
-depends=('dkms' "nvidia-utils=$pkgver" 'libgl')
-optdepends=('linux-headers: Build the module for Arch kernel'
-'linux-lts-headers: Build the module for LTS Arch kernel')
-conflicts+=('nvidia')
-
-cd ${_pkg}
-
-install -dm 755 "${pkgdir}"/usr/src
-cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
-
-echo "blacklist nouveau" |
-  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
-}

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 310849, 
nvidia/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-25 03:05:56 UTC (rev 310850)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=387.34
+_extramodules=extramodules-4.14-ARCH
+pkgrel=4
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.14' 'linux-headers<4.15')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+sha256sums=('d540908e76aeecb1f4a2812acf5ad37346934a6b7c8043c8b3ce230a48ceb440')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\

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

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 03:02:46
  Author: svenstaro
Revision: 310849

upgpkg: nvidia 387.34-4

Fix for correct kernel

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 03:00:24 UTC (rev 310848)
+++ PKGBUILD2017-11-25 03:02:46 UTC (rev 310849)
@@ -6,12 +6,12 @@
 pkgbase=nvidia
 pkgname=(nvidia nvidia-dkms)
 pkgver=387.34
-_extramodules=extramodules-4.13-ARCH
-pkgrel=3
+_extramodules=extramodules-4.14-ARCH
+pkgrel=4
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;
-makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.13' 'linux-headers<4.14')
+makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.14' 'linux-headers<4.15')
 license=('custom')
 options=('!strip')
 
source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
@@ -49,7 +49,7 @@
 
 package_nvidia() {
 pkgdesc="NVIDIA drivers for linux"
-depends=('linux>=4.13' 'linux<4.14' "nvidia-utils=${pkgver}" 'libgl')
+depends=('linux>=4.14' 'linux<4.15' "nvidia-utils=${pkgver}" 'libgl')
 
 install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
   "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko


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

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 03:00:14
  Author: svenstaro
Revision: 310847

upgpkg: nvidia 387.34-3

Fix for correct kernel

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 02:53:41 UTC (rev 310846)
+++ PKGBUILD2017-11-25 03:00:14 UTC (rev 310847)
@@ -6,12 +6,12 @@
 pkgbase=nvidia
 pkgname=(nvidia nvidia-dkms)
 pkgver=387.34
-_extramodules=extramodules-4.14-ARCH
-pkgrel=2
+_extramodules=extramodules-4.13-ARCH
+pkgrel=3
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;
-makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.14' 'linux-headers<4.15')
+makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.13' 'linux-headers<4.14')
 license=('custom')
 options=('!strip')
 
source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
@@ -49,7 +49,7 @@
 
 package_nvidia() {
 pkgdesc="NVIDIA drivers for linux"
-depends=('linux>=4.14' 'linux<4.15' "nvidia-utils=${pkgver}" 'libgl')
+depends=('linux>=4.13' 'linux<4.14' "nvidia-utils=${pkgver}" 'libgl')
 
 install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
   "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko


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

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 03:00:24
  Author: svenstaro
Revision: 310848

archrelease: copy trunk to extra-x86_64

Added:
  nvidia/repos/extra-x86_64/PKGBUILD
(from rev 310847, nvidia/trunk/PKGBUILD)
  nvidia/repos/extra-x86_64/fix-abi.patch
(from rev 310847, nvidia/trunk/fix-abi.patch)
Deleted:
  nvidia/repos/extra-x86_64/PKGBUILD
  nvidia/repos/extra-x86_64/fix-abi.patch

---+
 PKGBUILD  |  154 
 fix-abi.patch |   24 
 2 files changed, 89 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-25 03:00:14 UTC (rev 310847)
+++ PKGBUILD2017-11-25 03:00:24 UTC (rev 310848)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Felix Yan 
-# Contributor: Thomas Baechler 
-
-pkgbase=nvidia
-pkgname=(nvidia nvidia-dkms)
-pkgver=387.34
-_extramodules=extramodules-4.14-ARCH
-pkgrel=1
-pkgdesc="NVIDIA drivers for linux"
-arch=('x86_64')
-url="http://www.nvidia.com/;
-makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.14' 'linux-headers<4.15')
-license=('custom')
-options=('!strip')
-source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-sha256sums=('d540908e76aeecb1f4a2812acf5ad37346934a6b7c8043c8b3ce230a48ceb440')
-
-_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
-
-prepare() {
-sh "${_pkg}.run" --extract-only
-cd "${_pkg}"
-
-cp -a kernel kernel-dkms
-cd kernel-dkms
-sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
-sed -i 's/__JOBS/`nproc`/' dkms.conf
-sed -i 's/__DKMS_MODULES//' dkms.conf
-sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
-DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[1]="nvidia-uvm"\
-DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[2]="nvidia-modeset"\
-DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[3]="nvidia-drm"\
-DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
-
-# Gift for linux-rt guys
-sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
-}
-
-build() {
-_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-cd "${_pkg}"/kernel
-make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
-}
-
-package_nvidia() {
-pkgdesc="NVIDIA drivers for linux"
-depends=('linux>=4.14' 'linux<4.15' "nvidia-utils=${pkgver}" 'libgl')
-
-install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
-  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
-
-find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
-
-echo "blacklist nouveau" |
-  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
-}
-
-package_nvidia-dkms() {
-pkgdesc="NVIDIA driver sources for linux"
-depends=('dkms' "nvidia-utils=$pkgver" 'libgl')
-optdepends=('linux-headers: Build the module for Arch kernel'
-'linux-lts-headers: Build the module for LTS Arch kernel')
-conflicts+=('nvidia')
-
-cd ${_pkg}
-
-install -dm 755 "${pkgdir}"/usr/src
-cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
-
-echo "blacklist nouveau" |
-  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
-}

Copied: nvidia/repos/extra-x86_64/PKGBUILD (from rev 310847, 
nvidia/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-25 03:00:24 UTC (rev 310848)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=387.34
+_extramodules=extramodules-4.13-ARCH
+pkgrel=3
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.13' 'linux-headers<4.14')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+sha256sums=('d540908e76aeecb1f4a2812acf5ad37346934a6b7c8043c8b3ce230a48ceb440')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\

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

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 02:53:41
  Author: svenstaro
Revision: 310846

archrelease: copy trunk to testing-x86_64

Added:
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 310845, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-x86_64/fix-abi.patch
(from rev 310845, nvidia/trunk/fix-abi.patch)
Deleted:
  nvidia/repos/testing-x86_64/PKGBUILD
  nvidia/repos/testing-x86_64/fix-abi.patch

---+
 PKGBUILD  |  154 
 fix-abi.patch |   24 
 2 files changed, 89 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-25 02:53:34 UTC (rev 310845)
+++ PKGBUILD2017-11-25 02:53:41 UTC (rev 310846)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Felix Yan 
-# Contributor: Thomas Baechler 
-
-pkgbase=nvidia
-pkgname=(nvidia nvidia-dkms)
-pkgver=387.22
-_extramodules=extramodules-4.14-ARCH
-pkgrel=9
-pkgdesc="NVIDIA drivers for linux"
-arch=('x86_64')
-url="http://www.nvidia.com/;
-makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.14' 'linux-headers<4.15')
-license=('custom')
-options=('!strip')
-source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-sha256sums=('2056b386f619ed096ee3c2267c495c6b00d1a2a4c933f0635befcf4e69c3856c')
-
-_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
-
-prepare() {
-sh "${_pkg}.run" --extract-only
-cd "${_pkg}"
-
-cp -a kernel kernel-dkms
-cd kernel-dkms
-sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
-sed -i 's/__JOBS/`nproc`/' dkms.conf
-sed -i 's/__DKMS_MODULES//' dkms.conf
-sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
-DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[1]="nvidia-uvm"\
-DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[2]="nvidia-modeset"\
-DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[3]="nvidia-drm"\
-DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
-
-# Gift for linux-rt guys
-sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
-}
-
-build() {
-_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-cd "${_pkg}"/kernel
-make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
-}
-
-package_nvidia() {
-pkgdesc="NVIDIA drivers for linux"
-depends=('linux>=4.14' 'linux<4.15' "nvidia-utils=${pkgver}" 'libgl')
-
-install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
-  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
-
-find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
-
-echo "blacklist nouveau" |
-  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
-}
-
-package_nvidia-dkms() {
-pkgdesc="NVIDIA driver sources for linux"
-depends=('dkms' "nvidia-utils=$pkgver" 'libgl')
-optdepends=('linux-headers: Build the module for Arch kernel'
-'linux-lts-headers: Build the module for LTS Arch kernel')
-conflicts+=('nvidia')
-
-cd ${_pkg}
-
-install -dm 755 "${pkgdir}"/usr/src
-cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
-
-echo "blacklist nouveau" |
-  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
-}

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 310845, 
nvidia/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-25 02:53:41 UTC (rev 310846)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=387.34
+_extramodules=extramodules-4.14-ARCH
+pkgrel=2
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.14' 'linux-headers<4.15')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+sha256sums=('d540908e76aeecb1f4a2812acf5ad37346934a6b7c8043c8b3ce230a48ceb440')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\

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

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 02:53:34
  Author: svenstaro
Revision: 310845

upgpkg: nvidia 387.34-2

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 02:47:44 UTC (rev 310844)
+++ PKGBUILD2017-11-25 02:53:34 UTC (rev 310845)
@@ -7,7 +7,7 @@
 pkgname=(nvidia nvidia-dkms)
 pkgver=387.34
 _extramodules=extramodules-4.14-ARCH
-pkgrel=1
+pkgrel=2
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 02:45:39
  Author: svenstaro
Revision: 310841

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-lts/repos/staging-x86_64/
  nvidia-lts/repos/staging-x86_64/PKGBUILD
(from rev 310840, nvidia-lts/trunk/PKGBUILD)
  nvidia-lts/repos/staging-x86_64/nvidia-lts.install
(from rev 310840, nvidia-lts/trunk/nvidia-lts.install)

+
 PKGBUILD   |   53 +++
 nvidia-lts.install |   15 ++
 2 files changed, 68 insertions(+)

Copied: nvidia-lts/repos/staging-x86_64/PKGBUILD (from rev 310840, 
nvidia-lts/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-11-25 02:45:39 UTC (rev 310841)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=387.34
+_extramodules=extramodules-4.9-lts
+pkgrel=1
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-utils=$pkgver" 'linux-lts>=4.9.62' 
'linux-lts-headers>=4.9.62')
+provides=('nvidia')
+license=('custom')
+install=nvidia-lts.install
+options=('!strip')
+source_x86_64=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+sha512sums_x86_64=('0a472f8e446dee01f9e526d4de4f6d587a97ad36dd36da66ab15243b6194a8198cbaf9ad3394558fdc963dd56ef1daaf519ed9cd69d59bc990bd56626897f5c8')
+
+[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh ${_pkg}.run --extract-only
+}
+
+build() {
+export IGNORE_CC_MISMATCH=1
+
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}/kernel"
+make SYSSRC=/usr/lib/modules/${_kernver}/build module
+}
+
+package() {
+depends=('linux-lts>=4.9.62' "nvidia-utils=$pkgver" 'libgl')
+
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+  
"${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko"
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-modeset.ko" \
+  
"${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia-modeset.ko"
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-drm.ko" \
+  "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-drm.ko"
+
+if [[ "$CARCH" = "x86_64" ]]; then
+  install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-uvm.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko"
+fi
+
+gzip "${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/"*.ko
+install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf"
+echo "blacklist nvidiafb" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf"
+install -D -m644 "${srcdir}/${_pkg}/LICENSE" 
"${pkgdir}/usr/share/licenses/nvidia-lts/LICENSE"
+}

Copied: nvidia-lts/repos/staging-x86_64/nvidia-lts.install (from rev 310840, 
nvidia-lts/trunk/nvidia-lts.install)
===
--- staging-x86_64/nvidia-lts.install   (rev 0)
+++ staging-x86_64/nvidia-lts.install   2017-11-25 02:45:39 UTC (rev 310841)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-4.9-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-4.9-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-4.9-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}


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

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 02:45:17
  Author: svenstaro
Revision: 310840

upgpkg: nvidia-lts 387.34-1

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 02:44:27 UTC (rev 310839)
+++ PKGBUILD2017-11-25 02:45:17 UTC (rev 310840)
@@ -2,9 +2,9 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=nvidia-lts
-pkgver=387.22
+pkgver=387.34
 _extramodules=extramodules-4.9-lts
-pkgrel=3
+pkgrel=1
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('x86_64')
 url="http://www.nvidia.com/;
@@ -14,7 +14,7 @@
 install=nvidia-lts.install
 options=('!strip')
 
source_x86_64=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-sha512sums_x86_64=('f304f5b6d4c7e0ba5f19cf9f84ecab1c911e17d25193b527bf9c45200dda942011cb7632555e5351ed8fc212dcb59ea3d791b971073a8b09cb96af790e0c30ff')
+sha512sums_x86_64=('0a472f8e446dee01f9e526d4de4f6d587a97ad36dd36da66ab15243b6194a8198cbaf9ad3394558fdc963dd56ef1daaf519ed9cd69d59bc990bd56626897f5c8')
 
 [[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
 


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

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 02:44:27
  Author: svenstaro
Revision: 310839

archrelease: copy trunk to staging-x86_64

Added:
  nvidia/repos/staging-x86_64/
  nvidia/repos/staging-x86_64/PKGBUILD
(from rev 310838, nvidia/trunk/PKGBUILD)
  nvidia/repos/staging-x86_64/fix-abi.patch
(from rev 310838, nvidia/trunk/fix-abi.patch)

---+
 PKGBUILD  |   77 
 fix-abi.patch |   12 
 2 files changed, 89 insertions(+)

Copied: nvidia/repos/staging-x86_64/PKGBUILD (from rev 310838, 
nvidia/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-11-25 02:44:27 UTC (rev 310839)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=387.34
+_extramodules=extramodules-4.14-ARCH
+pkgrel=1
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.14' 'linux-headers<4.15')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+sha256sums=('d540908e76aeecb1f4a2812acf5ad37346934a6b7c8043c8b3ce230a48ceb440')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia() {
+pkgdesc="NVIDIA drivers for linux"
+depends=('linux>=4.14' 'linux<4.15' "nvidia-utils=${pkgver}" 'libgl')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}
+
+package_nvidia-dkms() {
+pkgdesc="NVIDIA driver sources for linux"
+depends=('dkms' "nvidia-utils=$pkgver" 'libgl')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+conflicts+=('nvidia')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}

Copied: nvidia/repos/staging-x86_64/fix-abi.patch (from rev 310838, 
nvidia/trunk/fix-abi.patch)
===
--- staging-x86_64/fix-abi.patch(rev 0)
+++ staging-x86_64/fix-abi.patch2017-11-25 02:44:27 UTC (rev 310839)
@@ -0,0 +1,12 @@
+diff -u -r kernel/nvidia-drm/nvidia-drm-fence.c 
kernel-patched/nvidia-drm/nvidia-drm-fence.c
+--- kernel/nvidia-drm/nvidia-drm-fence.c   2016-08-09 01:43:19.0 
+0200
 kernel-patched/nvidia-drm/nvidia-drm-fence.c   2016-08-25 
14:31:34.419655564 +0200
+@@ -325,7 +325,7 @@
+ struct nvidia_drm_gem_object *nv_gem;
+ };
+ 
+-static void nvidia_drm_gem_prime_soft_fence_event
++static void NVKMS_KAPI_CALL nvidia_drm_gem_prime_soft_fence_event
+ (
+ void *dataPtr,
+ NvU32 dataU32


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

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 02:44:12
  Author: svenstaro
Revision: 310838

upgpkg: nvidia 387.34-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 02:38:26 UTC (rev 310837)
+++ PKGBUILD2017-11-25 02:44:12 UTC (rev 310838)
@@ -5,9 +5,9 @@
 
 pkgbase=nvidia
 pkgname=(nvidia nvidia-dkms)
-pkgver=387.22
+pkgver=387.34
 _extramodules=extramodules-4.14-ARCH
-pkgrel=9
+pkgrel=1
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;
@@ -15,7 +15,7 @@
 license=('custom')
 options=('!strip')
 
source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-sha256sums=('2056b386f619ed096ee3c2267c495c6b00d1a2a4c933f0635befcf4e69c3856c')
+sha256sums=('d540908e76aeecb1f4a2812acf5ad37346934a6b7c8043c8b3ce230a48ceb440')
 
 _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
 


[arch-commits] Commit in lib32-nvidia-utils/repos (2 files)

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 02:42:58
  Author: svenstaro
Revision: 268384

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-nvidia-utils/repos/multilib-staging-x86_64/
  lib32-nvidia-utils/repos/multilib-staging-x86_64/PKGBUILD
(from rev 268383, lib32-nvidia-utils/trunk/PKGBUILD)

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

Copied: lib32-nvidia-utils/repos/multilib-staging-x86_64/PKGBUILD (from rev 
268383, lib32-nvidia-utils/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2017-11-25 02:42:58 UTC (rev 268384)
@@ -0,0 +1,114 @@
+# $Id$
+# Maintainer: Thomas Baechler 
+# Contributor: James Rayner 
+
+_pkgbasename=nvidia-utils
+pkgbase=lib32-$_pkgbasename
+pkgname=('lib32-nvidia-utils' 'lib32-opencl-nvidia')
+pkgver=387.34
+pkgrel=1
+arch=('x86_64')
+url="http://www.nvidia.com/;
+#makedepends=('nvidia-libgl')  # To avoid conflict during installation in the 
build chroot
+license=('custom')
+options=('!strip')
+
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+sha512sums=('ba9362123a75f85a0a5a9dcc95c06bcb350a8dff2db864db30a73172db44006fa39eee8e23cf959ab2012b61b922d1f0d7ab225329815737819f27d1be300b95')
+
+create_links() {
+# create soname links
+for _lib in $(find "${pkgdir}" -name '*.so*' | grep -v 'xorg/'); do
+_soname=$(dirname "${_lib}")/$(readelf -d "${_lib}" | grep -Po 
'SONAME.*: \[\K[^]]*' || true)
+_base=$(echo ${_soname} | sed -r 's/(.*).so.*/\1.so/')
+[[ -e "${_soname}" ]] || ln -s $(basename "${_lib}") "${_soname}"
+[[ -e "${_base}" ]] || ln -s $(basename "${_soname}") "${_base}"
+done
+}
+
+build() {
+sh ${_pkg}.run --extract-only
+}
+
+package_lib32-opencl-nvidia() {
+pkgdesc="OpenCL implemention for NVIDIA (32-bit)"
+depends=('lib32-zlib' 'lib32-gcc-libs')
+optdepends=('opencl-headers: headers necessary for OpenCL development')
+provides=('lib32-opencl-driver')
+
+cd "${_pkg}"
+
+# OpenCL
+install -D -m755 "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-compiler.so.${pkgver}"
+install -D -m755 "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-opencl.so.${pkgver}" 
+
+create_links
+
+mkdir -p "${pkgdir}/usr/share/licenses"
+ln -s $_pkgbasename "${pkgdir}/usr/share/licenses/lib32-opencl-nvidia"
+}
+
+package_lib32-nvidia-utils() {
+pkgdesc="NVIDIA drivers utilities (32-bit)"
+depends=('lib32-zlib' 'lib32-gcc-libs' 'lib32-libglvnd' 'nvidia-utils')
+optdepends=('lib32-opencl-nvidia')
+conflicts=('lib32-nvidia-libgl')
+provides=('lib32-vulkan-driver' 'lib32-opengl-driver' 'lib32-nvidia-libgl')
+replaces=('lib32-nvidia-libgl')
+
+cd "${_pkg}"
+
+# GLX extension module for X - useless ?
+install -D -m755 "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib32/nvidia/xorg/modules/extensions/libglx.so.${pkgver}"
+ln -s "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib32/nvidia/xorg/modules/extensions/libglx.so" # X doesn't find 
glx otherwise
+install -D -m755 "libGLX_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libGLX_nvidia.so.${pkgver}"
+# now in lib32-mesa driver
+#ln -s "libGLX_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libGLX_indirect.so.0"
+
+# Wayland stuff
+install -D -m755 "libnvidia-egl-wayland.so.1.0.2" 
"${pkgdir}/usr/lib32/libnvidia-egl-wayland.so.1.0.2"
+ln -s "libnvidia-egl-wayland.so.1.0.2" 
"${pkgdir}/usr/lib32/libnvidia-egl-wayland.so.1"
+
+# OpenGL libraries
+install -D -m755 "libEGL_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libEGL_nvidia.so.${pkgver}"
+install -D -m755 "libGLESv1_CM_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libGLESv1_CM_nvidia.so.${pkgver}"
+install -D -m755 "libGLESv2_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libGLESv2_nvidia.so.${pkgver}"
+
+# OpenGL core library
+install -D -m755 "libnvidia-glcore.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-glcore.so.${pkgver}"
+install -D -m755 "libnvidia-eglcore.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-eglcore.so.${pkgver}"
+install -D -m755 "libnvidia-glsi.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-glsi.so.${pkgver}"
+
+# misc
+install -D -m755 "libnvidia-ifr.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-ifr.so.${pkgver}"
+install -D -m755 "libnvidia-fbc.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-fbc.so.${pkgver}"
+install -D -m755 "libnvidia-encode.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-encode.so.${pkgver}"
+install -D -m755 "libnvidia-cfg.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-cfg.so.${pkgver}"
+install -D -m755 "libnvidia-ml.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-ml.so.${pkgver}"

[arch-commits] Commit in lib32-nvidia-utils/trunk (PKGBUILD)

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 02:42:32
  Author: svenstaro
Revision: 268383

upgpkg: lib32-nvidia-utils 387.34-1

Modified:
  lib32-nvidia-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 02:35:11 UTC (rev 268382)
+++ PKGBUILD2017-11-25 02:42:32 UTC (rev 268383)
@@ -5,7 +5,7 @@
 _pkgbasename=nvidia-utils
 pkgbase=lib32-$_pkgbasename
 pkgname=('lib32-nvidia-utils' 'lib32-opencl-nvidia')
-pkgver=387.22
+pkgver=387.34
 pkgrel=1
 arch=('x86_64')
 url="http://www.nvidia.com/;
@@ -16,7 +16,7 @@
 _arch='x86'
 _pkg="NVIDIA-Linux-${_arch}-${pkgver}"
 
source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-sha512sums=('865c5024957ade2c8361b198cbc6600f469612fe0336e3a0bfaf56e4240999367f2066837c0b354af4821ab2531d05eddf3f2a0957eacc2eca0dd7cada4929b4')
+sha512sums=('ba9362123a75f85a0a5a9dcc95c06bcb350a8dff2db864db30a73172db44006fa39eee8e23cf959ab2012b61b922d1f0d7ab225329815737819f27d1be300b95')
 
 create_links() {
 # create soname links


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

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 02:38:26
  Author: svenstaro
Revision: 310837

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-utils/repos/staging-x86_64/
  nvidia-utils/repos/staging-x86_64/PKGBUILD
(from rev 310836, nvidia-utils/trunk/PKGBUILD)
  nvidia-utils/repos/staging-x86_64/nvidia-drm-outputclass.conf
(from rev 310836, nvidia-utils/trunk/nvidia-drm-outputclass.conf)
  nvidia-utils/repos/staging-x86_64/nvidia-utils.install
(from rev 310836, nvidia-utils/trunk/nvidia-utils.install)

-+
 PKGBUILD|  174 ++
 nvidia-drm-outputclass.conf |   14 +++
 nvidia-utils.install|   10 ++
 3 files changed, 198 insertions(+)

Copied: nvidia-utils/repos/staging-x86_64/PKGBUILD (from rev 310836, 
nvidia-utils/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-11-25 02:38:26 UTC (rev 310837)
@@ -0,0 +1,174 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Thomas Baechler 
+# Contributor: James Rayner 
+
+pkgbase=nvidia-utils
+pkgname=('nvidia-utils' 'opencl-nvidia')
+pkgver=387.34
+pkgrel=1
+arch=('x86_64')
+url="http://www.nvidia.com/;
+license=('custom')
+options=('!strip')
+source=('nvidia-drm-outputclass.conf')
+source_i686=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;)
+source_x86_64=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+md5sums=('a433deeb5f9cc661e537f42bde2f1df7')
+md5sums_x86_64=('a009bbc502c30e4b483d71be9fa51790')
+sha512sums=('cfea06a816ac4a8b728b1ec728d667cdcca604abb038e8b5313b434021caad06a586856b8b3a6c79f8c925629360f5a051ca3de5ab46a42af76b9d0615d2bbbe')
+sha512sums_x86_64=('0a472f8e446dee01f9e526d4de4f6d587a97ad36dd36da66ab15243b6194a8198cbaf9ad3394558fdc963dd56ef1daaf519ed9cd69d59bc990bd56626897f5c8')
+
+[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
+[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+create_links() {
+# create soname links
+for _lib in $(find "${pkgdir}" -name '*.so*' | grep -v 'xorg/'); do
+_soname=$(dirname "${_lib}")/$(readelf -d "${_lib}" | grep -Po 
'SONAME.*: \[\K[^]]*' || true)
+_base=$(echo ${_soname} | sed -r 's/(.*).so.*/\1.so/')
+[[ -e "${_soname}" ]] || ln -s $(basename "${_lib}") "${_soname}"
+[[ -e "${_base}" ]] || ln -s $(basename "${_soname}") "${_base}"
+done
+}
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+bsdtar -xf nvidia-persistenced-init.tar.bz2
+
+sed -i 's/__NV_VK_ICD__/libGLX_nvidia.so.0/' nvidia_icd.json.template
+}
+
+package_opencl-nvidia() {
+pkgdesc="OpenCL implemention for NVIDIA"
+depends=('zlib')
+optdepends=('opencl-headers: headers necessary for OpenCL development')
+provides=('opencl-driver')
+cd "${_pkg}"
+
+# OpenCL
+install -D -m644 nvidia.icd "${pkgdir}/etc/OpenCL/vendors/nvidia.icd"
+install -D -m755 "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-compiler.so.${pkgver}"
+install -D -m755 "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-opencl.so.${pkgver}"
+
+create_links
+
+mkdir -p "${pkgdir}/usr/share/licenses"
+ln -s nvidia "${pkgdir}/usr/share/licenses/opencl-nvidia"
+}
+
+package_nvidia-utils() {
+pkgdesc="NVIDIA drivers utilities"
+depends=('xorg-server' 'libglvnd')
+optdepends=('nvidia-settings: configuration tool'
+'xorg-server-devel: nvidia-xconfig'
+'opencl-nvidia: OpenCL support')
+conflicts=('nvidia-libgl')
+provides=('vulkan-driver' 'opengl-driver' 'nvidia-libgl')
+replaces=('nvidia-libgl')
+install="${pkgname}.install"
+
+cd "${_pkg}"
+
+# X driver
+install -D -m755 nvidia_drv.so 
"${pkgdir}/usr/lib/xorg/modules/drivers/nvidia_drv.so"
+
+# GLX extension module for X
+install -D -m755 "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/xorg/libglx.so.${pkgver}"
+ln -s "libglx.so.${pkgver}" "${pkgdir}/usr/lib/nvidia/xorg/libglx.so.1"
# X doesn't find glx otherwise
+ln -s "libglx.so.${pkgver}" "${pkgdir}/usr/lib/nvidia/xorg/libglx.so"  
# X doesn't find glx otherwise
+
+install -D -m755 "libGLX_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/libGLX_nvidia.so.${pkgver}"
+# now in mesa driver
+#ln -s "libGLX_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/libGLX_indirect.so.0"
+
+# Wayland stuff
+install -D -m755 "libnvidia-egl-wayland.so.1.0.2" 
"${pkgdir}/usr/lib/libnvidia-egl-wayland.so.1.0.2"
+ln -s "libnvidia-egl-wayland.so.1.0.2" 
"${pkgdir}/usr/lib/libnvidia-egl-wayland.so.1"
+install -D -m644 "10_nvidia_wayland.json" 

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

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 02:38:08
  Author: svenstaro
Revision: 310836

upgpkg: nvidia-utils 387.34-1

Modified:
  nvidia-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 23:32:13 UTC (rev 310835)
+++ PKGBUILD2017-11-25 02:38:08 UTC (rev 310836)
@@ -5,7 +5,7 @@
 
 pkgbase=nvidia-utils
 pkgname=('nvidia-utils' 'opencl-nvidia')
-pkgver=387.22
+pkgver=387.34
 pkgrel=1
 arch=('x86_64')
 url="http://www.nvidia.com/;
@@ -15,11 +15,9 @@
 
source_i686=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;)
 
source_x86_64=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
 md5sums=('a433deeb5f9cc661e537f42bde2f1df7')
-md5sums_i686=('abdbb3c813e52148f7435308121e6a37')
-md5sums_x86_64=('b21f9bafb20409b337505c9b1d362c34')
+md5sums_x86_64=('a009bbc502c30e4b483d71be9fa51790')
 
sha512sums=('cfea06a816ac4a8b728b1ec728d667cdcca604abb038e8b5313b434021caad06a586856b8b3a6c79f8c925629360f5a051ca3de5ab46a42af76b9d0615d2bbbe')
-sha512sums_i686=('865c5024957ade2c8361b198cbc6600f469612fe0336e3a0bfaf56e4240999367f2066837c0b354af4821ab2531d05eddf3f2a0957eacc2eca0dd7cada4929b4')
-sha512sums_x86_64=('f304f5b6d4c7e0ba5f19cf9f84ecab1c911e17d25193b527bf9c45200dda942011cb7632555e5351ed8fc212dcb59ea3d791b971073a8b09cb96af790e0c30ff')
+sha512sums_x86_64=('0a472f8e446dee01f9e526d4de4f6d587a97ad36dd36da66ab15243b6194a8198cbaf9ad3394558fdc963dd56ef1daaf519ed9cd69d59bc990bd56626897f5c8')
 
 [[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
 [[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"


[arch-commits] Commit in gitlab/repos/community-x86_64 (24 files)

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 02:35:11
  Author: svenstaro
Revision: 268382

archrelease: copy trunk to community-x86_64

Added:
  gitlab/repos/community-x86_64/PKGBUILD
(from rev 268381, gitlab/trunk/PKGBUILD)
  gitlab/repos/community-x86_64/gitlab-backup.service
(from rev 268381, gitlab/trunk/gitlab-backup.service)
  gitlab/repos/community-x86_64/gitlab-backup.timer
(from rev 268381, gitlab/trunk/gitlab-backup.timer)
  gitlab/repos/community-x86_64/gitlab-mailroom.service
(from rev 268381, gitlab/trunk/gitlab-mailroom.service)
  gitlab/repos/community-x86_64/gitlab-sidekiq.service
(from rev 268381, gitlab/trunk/gitlab-sidekiq.service)
  gitlab/repos/community-x86_64/gitlab-unicorn.service
(from rev 268381, gitlab/trunk/gitlab-unicorn.service)
  gitlab/repos/community-x86_64/gitlab.install
(from rev 268381, gitlab/trunk/gitlab.install)
  gitlab/repos/community-x86_64/gitlab.logrotate
(from rev 268381, gitlab/trunk/gitlab.logrotate)
  gitlab/repos/community-x86_64/gitlab.target
(from rev 268381, gitlab/trunk/gitlab.target)
  gitlab/repos/community-x86_64/gitlab.tmpfiles.d
(from rev 268381, gitlab/trunk/gitlab.tmpfiles.d)
  gitlab/repos/community-x86_64/lighttpd.conf.example
(from rev 268381, gitlab/trunk/lighttpd.conf.example)
  gitlab/repos/community-x86_64/yarn.lock
(from rev 268381, gitlab/trunk/yarn.lock)
Deleted:
  gitlab/repos/community-x86_64/PKGBUILD
  gitlab/repos/community-x86_64/gitlab-backup.service
  gitlab/repos/community-x86_64/gitlab-backup.timer
  gitlab/repos/community-x86_64/gitlab-mailroom.service
  gitlab/repos/community-x86_64/gitlab-sidekiq.service
  gitlab/repos/community-x86_64/gitlab-unicorn.service
  gitlab/repos/community-x86_64/gitlab.install
  gitlab/repos/community-x86_64/gitlab.logrotate
  gitlab/repos/community-x86_64/gitlab.target
  gitlab/repos/community-x86_64/gitlab.tmpfiles.d
  gitlab/repos/community-x86_64/lighttpd.conf.example
  gitlab/repos/community-x86_64/yarn.lock

-+
 PKGBUILD|  434 -
 gitlab-backup.service   |   38 
 gitlab-backup.timer |   20 
 gitlab-mailroom.service |   40 
 gitlab-sidekiq.service  |   58 
 gitlab-unicorn.service  |   58 
 gitlab.install  |   40 
 gitlab.logrotate|   22 
 gitlab.target   |   14 
 gitlab.tmpfiles.d   |2 
 lighttpd.conf.example   |   70 
 yarn.lock   |13204 +++---
 12 files changed, 7000 insertions(+), 7000 deletions(-)

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


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

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 02:34:56
  Author: svenstaro
Revision: 268381

upgpkg: gitlab 10.2.2-1

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 02:13:46 UTC (rev 268380)
+++ PKGBUILD2017-11-25 02:34:56 UTC (rev 268381)
@@ -7,8 +7,8 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=10.1.4
-pkgrel=2
+pkgver=10.2.2
+pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')
 url="https://gitlab.com/gitlab-org/gitlab-ce;
@@ -36,7 +36,7 @@
 gitlab.logrotate
 yarn.lock)
 install='gitlab.install'
-sha512sums=('88fb3ebf53fd4557c7bce2069bd153c143fc8e15658ba6f794c904890ff4d67e70f366cd1533ee9701e7eb29d6e6dce47910ec4c94f8504d6743a184cbbea2dc'
+sha512sums=('d38e7453df5a8caf951a02733ff5702e6996c845254513393f74709f34dea1187913caa63eb9bb775b54407a63eec1a7e178c41ff73559230506b4bf226fb001'
 
'7c0fefe753eda3b80f892f62ef5ca733495b05a0bc94bf6a3db6e455c491f3e534e758f55f320898dfecfc1a799dedfeb573d555ad006a43eb6d0ab289dcd753'
 
'14f428525309397f8e9e7dca38b107a5267a124c03cdea67c10ebf271f8e18cefe5b52dd8af0ab146ab41f1a8eef4e05be746171ea11cb43464254965f12436a'
 
'bfc98f3890dfbe11a6f7fa3275f2b04b54b8e31455dcf70abfdc7f1021ff9acb1243f7af8381465346cd780bc76fa2b1c80fada860b8c3c87c7c56bb5229c1ee'


[arch-commits] Commit in wine/repos/multilib-x86_64 (6 files)

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 02:13:46
  Author: svenstaro
Revision: 268380

archrelease: copy trunk to multilib-x86_64

Added:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 268379, wine/trunk/30-win32-aliases.conf)
  wine/repos/multilib-x86_64/PKGBUILD
(from rev 268379, wine/trunk/PKGBUILD)
  wine/repos/multilib-x86_64/harmony-fix.diff
(from rev 268379, wine/trunk/harmony-fix.diff)
Deleted:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
  wine/repos/multilib-x86_64/PKGBUILD
  wine/repos/multilib-x86_64/harmony-fix.diff

---+
 30-win32-aliases.conf |   40 ++---
 PKGBUILD  |  372 
 harmony-fix.diff  |  126 
 3 files changed, 269 insertions(+), 269 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2017-11-25 02:13:23 UTC (rev 268379)
+++ 30-win32-aliases.conf   2017-11-25 02:13:46 UTC (rev 268380)
@@ -1,20 +0,0 @@
-
-
-
-  
-MS Shell Dlg
-Microsoft Sans Serif
-sans-serif
-  
-  
-MS Shell Dlg 2
-Tahoma
-sans-serif
-  
-
-  
-MS Sans Serif
-Microsoft Sans Serif
-sans-serif
-  
-

Copied: wine/repos/multilib-x86_64/30-win32-aliases.conf (from rev 268379, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2017-11-25 02:13:46 UTC (rev 268380)
@@ -0,0 +1,20 @@
+
+
+
+  
+MS Shell Dlg
+Microsoft Sans Serif
+sans-serif
+  
+  
+MS Shell Dlg 2
+Tahoma
+sans-serif
+  
+
+  
+MS Sans Serif
+Microsoft Sans Serif
+sans-serif
+  
+

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-25 02:13:23 UTC (rev 268379)
+++ PKGBUILD2017-11-25 02:13:46 UTC (rev 268380)
@@ -1,186 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine
-pkgver=2.21
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(https://dl.winehq.org/wine/source/2.x/$pkgname-$_pkgbasever.tar.xz{,.sign}
-harmony-fix.diff
-30-win32-aliases.conf)
-sha512sums=('4e33c463debe637827ed65f1118e692832bb5374491f706f9d251b8a2956e20d2df5d90ceba218b9bc9e946de91b8ba1d96b460453f59cdd9d82f070d07e0c43'
-'SKIP'
-
'b86edf07bfc560f403fdfd5a71f97930ee2a4c3f76c92cc1a0dbb2e107be9db3bed3a727a0430d8a049583c63dd11f5d4567fb7aa69b193997c6da241acc4f2e'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
-  DA23579A74D4AD9AF9D3F945CEFAC8EAAF17519D)
-
-pkgdesc="A compatibility layer for running Windows programs"
-url="http://www.winehq.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-_depends=(
-  fontconfig  lib32-fontconfig
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  libpcap lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'  'gcc-multilib>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  samba
-  opencl-headers
-)
-
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib  lib32-alsa-lib
-  libjpeg-turbo

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

2017-11-24 Thread Sven-Hendrik Haase
Date: Saturday, November 25, 2017 @ 02:13:23
  Author: svenstaro
Revision: 268379

upgpkg: wine 2.22-1

Modified:
  wine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-25 00:01:08 UTC (rev 268378)
+++ PKGBUILD2017-11-25 02:13:23 UTC (rev 268379)
@@ -5,7 +5,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine
-pkgver=2.21
+pkgver=2.22
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -13,7 +13,7 @@
 
source=(https://dl.winehq.org/wine/source/2.x/$pkgname-$_pkgbasever.tar.xz{,.sign}
 harmony-fix.diff
 30-win32-aliases.conf)
-sha512sums=('4e33c463debe637827ed65f1118e692832bb5374491f706f9d251b8a2956e20d2df5d90ceba218b9bc9e946de91b8ba1d96b460453f59cdd9d82f070d07e0c43'
+sha512sums=('14ecc25c3012c4eb9b1d3207372d0a4187f62593f986caca3196811b8aac0a7b898ae9acd94c707e0d63b6702019cf5051a964ada606b1ff8fb034bb353116bb'
 'SKIP'
 
'b86edf07bfc560f403fdfd5a71f97930ee2a4c3f76c92cc1a0dbb2e107be9db3bed3a727a0430d8a049583c63dd11f5d4567fb7aa69b193997c6da241acc4f2e'
 
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb')


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

2017-11-24 Thread Kyle Keen
Date: Saturday, November 25, 2017 @ 00:01:08
  Author: kkeen
Revision: 268378

archrelease: copy trunk to community-any

Added:
  memconf/repos/community-any/PKGBUILD
(from rev 268377, memconf/trunk/PKGBUILD)
Deleted:
  memconf/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-25 00:00:51 UTC (rev 268377)
+++ PKGBUILD2017-11-25 00:01:08 UTC (rev 268378)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer : Kyle Keen 
-# Contributor : Martin Wimpress 
-
-pkgname=memconf
-pkgver=3.13
-pkgrel=1
-pkgdesc="Identify sizes of installed memory modules."
-arch=('any')
-url="http://www.4schmidts.com/memconf.html;
-license=('GPL')
-depends=('dmidecode' 'perl')
-source=("http://www.4schmidts.com/unix/${pkgname}.gz;
-"http://www.4schmidts.com/unix/${pkgname}.man;)
-sha1sums=('c526a79cbb44875ed1175b472a43ae233bbb34d2'
-  '5bd6704a1567c41983b50f74faea28b1f791c940')
-
-build() {
-cd "${srcdir}"
-zcat ${pkgname}.gz > "${pkgname}"
-}
-
-package() {
-cd "${srcdir}"
-install -Dm0755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-install -Dm0755 "${pkgname}.man" 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}

Copied: memconf/repos/community-any/PKGBUILD (from rev 268377, 
memconf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-25 00:01:08 UTC (rev 268378)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer : Kyle Keen 
+# Contributor : Martin Wimpress 
+
+pkgname=memconf
+pkgver=3.14
+pkgrel=1
+pkgdesc="Identify sizes of installed memory modules."
+arch=('any')
+url="http://www.4schmidts.com/memconf.html;
+license=('GPL')
+depends=('dmidecode' 'perl')
+source=("$pkgname-$pkgver.gz::http://www.4schmidts.com/unix/$pkgname.gz;
+"$pkgname-$pkgver.man::http://www.4schmidts.com/unix/$pkgname.man;)
+sha1sums=('eb2231a5fdb2722d13e03a464fd676cdb339db7d'
+  'c6584b81b3c4051680ac27e7942fa1a06ad90685')
+
+build() {
+cd "$srcdir"
+zcat "$pkgname-$pkgver.gz" > "$pkgname"
+}
+
+package() {
+cd "$srcdir"
+install -Dm0755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
+install -Dm0755 "$pkgname-$pkgver.man" 
"$pkgdir/usr/share/man/man1/$pkgname.1"
+}


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

2017-11-24 Thread Kyle Keen
Date: Saturday, November 25, 2017 @ 00:00:51
  Author: kkeen
Revision: 268377

upgpkg: memconf 3.14-1

Modified:
  memconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 23:59:54 UTC (rev 268376)
+++ PKGBUILD2017-11-25 00:00:51 UTC (rev 268377)
@@ -3,7 +3,7 @@
 # Contributor : Martin Wimpress 
 
 pkgname=memconf
-pkgver=3.13
+pkgver=3.14
 pkgrel=1
 pkgdesc="Identify sizes of installed memory modules."
 arch=('any')
@@ -10,18 +10,18 @@
 url="http://www.4schmidts.com/memconf.html;
 license=('GPL')
 depends=('dmidecode' 'perl')
-source=("http://www.4schmidts.com/unix/${pkgname}.gz;
-"http://www.4schmidts.com/unix/${pkgname}.man;)
-sha1sums=('c526a79cbb44875ed1175b472a43ae233bbb34d2'
-  '5bd6704a1567c41983b50f74faea28b1f791c940')
+source=("$pkgname-$pkgver.gz::http://www.4schmidts.com/unix/$pkgname.gz;
+"$pkgname-$pkgver.man::http://www.4schmidts.com/unix/$pkgname.man;)
+sha1sums=('eb2231a5fdb2722d13e03a464fd676cdb339db7d'
+  'c6584b81b3c4051680ac27e7942fa1a06ad90685')
 
 build() {
-cd "${srcdir}"
-zcat ${pkgname}.gz > "${pkgname}"
+cd "$srcdir"
+zcat "$pkgname-$pkgver.gz" > "$pkgname"
 }
 
 package() {
-cd "${srcdir}"
-install -Dm0755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-install -Dm0755 "${pkgname}.man" 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
+cd "$srcdir"
+install -Dm0755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
+install -Dm0755 "$pkgname-$pkgver.man" 
"$pkgdir/usr/share/man/man1/$pkgname.1"
 }


[arch-commits] Commit in (kvpnc)

2017-11-24 Thread Antonio Rojas
Date: Friday, November 24, 2017 @ 23:59:54
  Author: arojas
Revision: 268376

Dead upstream, needs obsolete kdelibs

Deleted:
  kvpnc/


[arch-commits] Commit in (kvirc)

2017-11-24 Thread Antonio Rojas
Date: Friday, November 24, 2017 @ 23:58:31
  Author: arojas
Revision: 268374

Dead upstream, needs obsolete Qt4 and openssl-1.0

Deleted:
  kvirc/


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

2017-11-24 Thread Antonio Rojas
Date: Friday, November 24, 2017 @ 23:47:10
  Author: arojas
Revision: 268372

archrelease: copy trunk to community-x86_64

Added:
  pitivi/repos/community-x86_64/PKGBUILD
(from rev 268371, pitivi/trunk/PKGBUILD)
Deleted:
  pitivi/repos/community-x86_64/ChangeLog
  pitivi/repos/community-x86_64/PKGBUILD

---+
 ChangeLog |   41 --
 PKGBUILD  |   72 +++-
 2 files changed, 38 insertions(+), 75 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2017-11-24 23:46:37 UTC (rev 268371)
+++ ChangeLog   2017-11-24 23:47:10 UTC (rev 268372)
@@ -1,41 +0,0 @@
-pitivi (0.13.1-2)
-
-  * Update hicolor icon cache.
-  * Update mime database.
-
- -- Abhishek Dasgupta  Thu, 23 Jul 2009 11:57:49 +0530
-
-pitivi (0.13.1-1)
-
-  * New upstream version.
-  * Removed: fix-as-problems.diff pitivi.desktop
-
- -- Abhishek Dasgupta  Wed, 24 Jun 2009 16:01:42 +0530
-
-pitivi (0.11.3-1)
-
-  * New upstream version.
-  * fix-as-problems.diff: Fixed the problem caused by "as" in
-pitivi/timeline/timeline.py
-
- -- Abhishek Dasgupta  Sat, 13 Dec 2008 16:29:24 +0530
-
-pitivi (0.11.2-4)
-
-  * Added gnome-icon-theme as dependency. Closes: FS# 12292.
-
- -- Abhishek Dasgupta  Mon, 01 Dec 2008 23:08:28 +0530
-
-pitivi (0.11.2-3)
-
-  * fix-as.diff: Fixed the error 
-in pitivi/objectfactory.py caused by the line
-as = self.audio_info_stream
-
- -- Abhishek Dasgupta  Sun, 09 Nov 2008 00:34:22 +0530
-
-pitivi (0.11.2-2)
-
-  * Added dbus-python as dependency.
-
- -- Abhishek Dasgupta  Sun, 26 Oct 2008 14:08:06 +0530

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-24 23:46:37 UTC (rev 268371)
+++ PKGBUILD2017-11-24 23:47:10 UTC (rev 268372)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Abhishek Dasgupta 
-# Contributor: Gabor Nyekhelyi (n0gabor) 
-
-pkgname=pitivi
-pkgver=0.98.1
-pkgrel=1
-pkgdesc="Editor for audio/video projects using the GStreamer framework"
-arch=('i686' 'x86_64')
-url="http://www.pitivi.org/;
-license=('LGPL')
-depends=('gtk3' 'gst-editing-services' 'gst-plugins-good' 'gst-python'
- 'libnotify' 'python-gobject' 'python-numpy' 'python-cairo'
- 'desktop-file-utils' 'python-matplotlib' 'gst-plugins-bad'
- 'python-dbus' 'gst-transcoder')
-makedepends=('intltool' 'itstool' 'git' 'python-nose' 'meson')
-optdepends=('frei0r-plugins: additional video effects, clip transformation 
feature'
-'gst-libav: additional multimedia codecs'
-'gst-plugins-ugly: additional multimedia codecs')
-source=(https://ftp.gnome.org/pub/GNOME/sources/$pkgname/0.98/$pkgname-$pkgver.tar.xz)
-sha256sums=('10a8e23600681af5f7aed0412400d48e5b5e0fbfb609658ff2c636010f27f32d')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-  [ -d "$pkgdir"/usr/lib64 ] && mv "$pkgdir"/usr/lib64 "$pkgdir"/usr/lib || 
true
-}

Copied: pitivi/repos/community-x86_64/PKGBUILD (from rev 268371, 
pitivi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-24 23:47:10 UTC (rev 268372)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Abhishek Dasgupta 
+# Contributor: Gabor Nyekhelyi (n0gabor) 
+
+pkgname=pitivi
+pkgver=0.99
+pkgrel=1
+pkgdesc="Editor for audio/video projects using the GStreamer framework"
+arch=('x86_64')
+url="http://www.pitivi.org/;
+license=('LGPL')
+depends=('gtk3' 'gst-editing-services' 'gst-plugins-good' 'gst-python'
+ 'libnotify' 'python-gobject' 'python-numpy' 'python-cairo'
+ 'desktop-file-utils' 'python-matplotlib' 'gst-plugins-bad'
+ 'python-dbus' 'gst-transcoder')
+makedepends=('intltool' 'itstool' 'git' 'python-nose' 'meson')
+optdepends=('frei0r-plugins: additional video effects, clip transformation 
feature'
+'gst-libav: additional multimedia codecs'
+'gst-plugins-ugly: additional multimedia codecs')
+source=(https://ftp.gnome.org/pub/GNOME/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz)
+sha256sums=('c9d02fd669801e0de94b5ca06179da6e8a7e1cb666b843fc12df6f0632db8f7c')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -e '/tests/d' -i meson.build # needs gst-devtools
+}
+
+build() {
+  cd $pkgname-$pkgver
+  meson --prefix=/usr build
+  ninja -C build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install -C build
+}


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

2017-11-24 Thread Antonio Rojas
Date: Friday, November 24, 2017 @ 23:46:37
  Author: arojas
Revision: 268371

Update to 0.99

Modified:
  pitivi/trunk/PKGBUILD
Deleted:
  pitivi/trunk/ChangeLog

---+
 ChangeLog |   41 -
 PKGBUILD  |   22 +-
 2 files changed, 13 insertions(+), 50 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2017-11-24 23:34:52 UTC (rev 268370)
+++ ChangeLog   2017-11-24 23:46:37 UTC (rev 268371)
@@ -1,41 +0,0 @@
-pitivi (0.13.1-2)
-
-  * Update hicolor icon cache.
-  * Update mime database.
-
- -- Abhishek Dasgupta  Thu, 23 Jul 2009 11:57:49 +0530
-
-pitivi (0.13.1-1)
-
-  * New upstream version.
-  * Removed: fix-as-problems.diff pitivi.desktop
-
- -- Abhishek Dasgupta  Wed, 24 Jun 2009 16:01:42 +0530
-
-pitivi (0.11.3-1)
-
-  * New upstream version.
-  * fix-as-problems.diff: Fixed the problem caused by "as" in
-pitivi/timeline/timeline.py
-
- -- Abhishek Dasgupta  Sat, 13 Dec 2008 16:29:24 +0530
-
-pitivi (0.11.2-4)
-
-  * Added gnome-icon-theme as dependency. Closes: FS# 12292.
-
- -- Abhishek Dasgupta  Mon, 01 Dec 2008 23:08:28 +0530
-
-pitivi (0.11.2-3)
-
-  * fix-as.diff: Fixed the error 
-in pitivi/objectfactory.py caused by the line
-as = self.audio_info_stream
-
- -- Abhishek Dasgupta  Sun, 09 Nov 2008 00:34:22 +0530
-
-pitivi (0.11.2-2)
-
-  * Added dbus-python as dependency.
-
- -- Abhishek Dasgupta  Sun, 26 Oct 2008 14:08:06 +0530

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 23:34:52 UTC (rev 268370)
+++ PKGBUILD2017-11-24 23:46:37 UTC (rev 268371)
@@ -4,7 +4,7 @@
 # Contributor: Gabor Nyekhelyi (n0gabor) 
 
 pkgname=pitivi
-pkgver=0.98.1
+pkgver=0.99
 pkgrel=1
 pkgdesc="Editor for audio/video projects using the GStreamer framework"
 arch=('x86_64')
@@ -18,17 +18,21 @@
 optdepends=('frei0r-plugins: additional video effects, clip transformation 
feature'
 'gst-libav: additional multimedia codecs'
 'gst-plugins-ugly: additional multimedia codecs')
-source=(https://ftp.gnome.org/pub/GNOME/sources/$pkgname/0.98/$pkgname-$pkgver.tar.xz)
-sha256sums=('10a8e23600681af5f7aed0412400d48e5b5e0fbfb609658ff2c636010f27f32d')
+source=(https://ftp.gnome.org/pub/GNOME/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz)
+sha256sums=('c9d02fd669801e0de94b5ca06179da6e8a7e1cb666b843fc12df6f0632db8f7c')
 
+prepare() {
+  cd $pkgname-$pkgver
+  sed -e '/tests/d' -i meson.build # needs gst-devtools
+}
+
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
+  cd $pkgname-$pkgver
+  meson --prefix=/usr build
+  ninja -C build
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-  [ -d "$pkgdir"/usr/lib64 ] && mv "$pkgdir"/usr/lib64 "$pkgdir"/usr/lib || 
true
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install -C build
 }


[arch-commits] Commit in cacti/repos/community-any (4 files)

2017-11-24 Thread Antonio Rojas
Date: Friday, November 24, 2017 @ 23:34:52
  Author: arojas
Revision: 268370

archrelease: copy trunk to community-any

Added:
  cacti/repos/community-any/PKGBUILD
(from rev 268369, cacti/trunk/PKGBUILD)
  cacti/repos/community-any/cacti.install
(from rev 268369, cacti/trunk/cacti.install)
Deleted:
  cacti/repos/community-any/PKGBUILD
  cacti/repos/community-any/cacti.install

---+
 PKGBUILD  |   68 
 cacti.install |   14 +--
 2 files changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-24 23:34:28 UTC (rev 268369)
+++ PKGBUILD2017-11-24 23:34:52 UTC (rev 268370)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: tuxbubling 
-
-pkgname=cacti
-pkgver=1.1.17
-pkgrel=1
-pkgdesc="complete network graphing solution designed to harness the power of 
RRDTool's data storage and graphing functionality"
-arch=(any)
-url="http://www.cacti.net;
-license=('GPL')
-depends=('rrdtool' 'mariadb' 'php' 'php-gd' 'net-snmp' 'xorg-fonts-100dpi')
-backup=('etc/webapps/cacti/.htaccess'
-   'etc/webapps/cacti/config.php')
-install=cacti.install
-source=("http://www.cacti.net/downloads/$pkgname-${pkgver/_/}.tar.gz;)
-sha256sums=('80a86823e0b4b173aa1e480181d6c176cff26cc9da23552eab2e98d3766e36e7')
-
-package() {
-  mkdir -p "$pkgdir"/usr/share/webapps/cacti "$pkgdir"/etc/webapps/cacti
-  mv "$srcdir"/$pkgname-${pkgver/_/}/* "$pkgdir"/usr/share/webapps/cacti
-  echo "Require all denied" >> "$pkgdir"/etc/webapps/cacti/.htaccess
-  mv "$pkgdir"/usr/share/webapps/cacti/include/config.php 
"$pkgdir"/etc/webapps/cacti
-  ln -s /etc/webapps/cacti/.htaccess 
"$pkgdir"/usr/share/webapps/cacti/.htaccess
-  ln -s /etc/webapps/cacti/config.php 
"$pkgdir"/usr/share/webapps/cacti/include/config.php
-
-  install -dm0755 "$pkgdir"/var/log/ "$pkgdir"/var/lib/cacti/
-
-  mv "$pkgdir"/usr/share/webapps/cacti/rra "$pkgdir"/var/lib/cacti/rra
-  ln -s /var/lib/cacti/rra "$pkgdir"/usr/share/webapps/cacti/rra
-
-  mv "$pkgdir"/usr/share/webapps/cacti/log "$pkgdir"/var/log/cacti
-  ln -s /var/log/cacti "$pkgdir"/usr/share/webapps/cacti/log
-}

Copied: cacti/repos/community-any/PKGBUILD (from rev 268369, 
cacti/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-24 23:34:52 UTC (rev 268370)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: tuxbubling 
+
+pkgname=cacti
+pkgver=1.1.28
+pkgrel=1
+pkgdesc="complete network graphing solution designed to harness the power of 
RRDTool's data storage and graphing functionality"
+arch=(any)
+url="https://www.cacti.net;
+license=('GPL')
+depends=('rrdtool' 'mariadb' 'php' 'php-gd' 'net-snmp' 'xorg-fonts-100dpi')
+backup=('etc/webapps/cacti/.htaccess'
+   'etc/webapps/cacti/config.php')
+install=cacti.install
+source=("https://www.cacti.net/downloads/$pkgname-${pkgver/_/}.tar.gz;)
+sha256sums=('bc745e10c483512cb882a5858075ee8286dcf3abfc275e8212a7921135e4a2f9')
+
+package() {
+  mkdir -p "$pkgdir"/usr/share/webapps/cacti "$pkgdir"/etc/webapps/cacti
+  mv "$srcdir"/$pkgname-${pkgver/_/}/* "$pkgdir"/usr/share/webapps/cacti
+  echo "Require all denied" >> "$pkgdir"/etc/webapps/cacti/.htaccess
+  mv "$pkgdir"/usr/share/webapps/cacti/include/config.php 
"$pkgdir"/etc/webapps/cacti
+  ln -s /etc/webapps/cacti/.htaccess 
"$pkgdir"/usr/share/webapps/cacti/.htaccess
+  ln -s /etc/webapps/cacti/config.php 
"$pkgdir"/usr/share/webapps/cacti/include/config.php
+
+  install -dm0755 "$pkgdir"/var/log/ "$pkgdir"/var/lib/cacti/
+
+  mv "$pkgdir"/usr/share/webapps/cacti/rra "$pkgdir"/var/lib/cacti/rra
+  ln -s /var/lib/cacti/rra "$pkgdir"/usr/share/webapps/cacti/rra
+
+  mv "$pkgdir"/usr/share/webapps/cacti/log "$pkgdir"/var/log/cacti
+  ln -s /var/log/cacti "$pkgdir"/usr/share/webapps/cacti/log
+}

Deleted: cacti.install
===
--- cacti.install   2017-11-24 23:34:28 UTC (rev 268369)
+++ cacti.install   2017-11-24 23:34:52 UTC (rev 268370)
@@ -1,7 +0,0 @@
-post_upgrade() {
-  post_install
-}
-
-post_install() {
-  chown -R http:http var/log/cacti var/lib/cacti/rra
-}

Copied: cacti/repos/community-any/cacti.install (from rev 268369, 
cacti/trunk/cacti.install)
===
--- cacti.install   (rev 0)
+++ cacti.install   2017-11-24 23:34:52 UTC (rev 268370)
@@ -0,0 +1,7 @@
+post_upgrade() {
+  post_install
+}
+
+post_install() {
+  chown -R http:http var/log/cacti var/lib/cacti/rra
+}


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

2017-11-24 Thread Antonio Rojas
Date: Friday, November 24, 2017 @ 23:34:28
  Author: arojas
Revision: 268369

Update to 1.1.28

Modified:
  cacti/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 23:30:21 UTC (rev 268368)
+++ PKGBUILD2017-11-24 23:34:28 UTC (rev 268369)
@@ -3,18 +3,18 @@
 # Contributor: tuxbubling 
 
 pkgname=cacti
-pkgver=1.1.17
+pkgver=1.1.28
 pkgrel=1
 pkgdesc="complete network graphing solution designed to harness the power of 
RRDTool's data storage and graphing functionality"
 arch=(any)
-url="http://www.cacti.net;
+url="https://www.cacti.net;
 license=('GPL')
 depends=('rrdtool' 'mariadb' 'php' 'php-gd' 'net-snmp' 'xorg-fonts-100dpi')
 backup=('etc/webapps/cacti/.htaccess'
'etc/webapps/cacti/config.php')
 install=cacti.install
-source=("http://www.cacti.net/downloads/$pkgname-${pkgver/_/}.tar.gz;)
-sha256sums=('80a86823e0b4b173aa1e480181d6c176cff26cc9da23552eab2e98d3766e36e7')
+source=("https://www.cacti.net/downloads/$pkgname-${pkgver/_/}.tar.gz;)
+sha256sums=('bc745e10c483512cb882a5858075ee8286dcf3abfc275e8212a7921135e4a2f9')
 
 package() {
   mkdir -p "$pkgdir"/usr/share/webapps/cacti "$pkgdir"/etc/webapps/cacti


[arch-commits] Commit in varnish/repos/extra-x86_64 (11 files)

2017-11-24 Thread Dave Reisner
Date: Friday, November 24, 2017 @ 23:32:13
  Author: dreisner
Revision: 310835

archrelease: copy trunk to extra-x86_64

Added:
  varnish/repos/extra-x86_64/PKGBUILD
(from rev 310834, varnish/trunk/PKGBUILD)
  varnish/repos/extra-x86_64/hack-up-vcstools-to-work-with-python-2-and-3.patch
(from rev 310834, 
varnish/trunk/hack-up-vcstools-to-work-with-python-2-and-3.patch)
  varnish/repos/extra-x86_64/varnish-vcl-reload
(from rev 310834, varnish/trunk/varnish-vcl-reload)
  varnish/repos/extra-x86_64/varnish.install
(from rev 310834, varnish/trunk/varnish.install)
  varnish/repos/extra-x86_64/varnish.service
(from rev 310834, varnish/trunk/varnish.service)
  varnish/repos/extra-x86_64/varnish.sysusers
(from rev 310834, varnish/trunk/varnish.sysusers)
Deleted:
  varnish/repos/extra-x86_64/PKGBUILD
  varnish/repos/extra-x86_64/varnish-vcl-reload
  varnish/repos/extra-x86_64/varnish.install
  varnish/repos/extra-x86_64/varnish.service
  varnish/repos/extra-x86_64/varnish.sysusers

+
 PKGBUILD   |  144 ++-
 hack-up-vcstools-to-work-with-python-2-and-3.patch |   66 
 varnish-vcl-reload |   40 ++---
 varnish.install|   24 +--
 varnish.service|   30 +--
 varnish.sysusers   |4 
 6 files changed, 191 insertions(+), 117 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-24 23:31:34 UTC (rev 310834)
+++ PKGBUILD2017-11-24 23:32:13 UTC (rev 310835)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Douglas Soares de Andrade
-# Contributor: Roberto Alsina 
-
-pkgname=varnish
-pkgver=5.1.3
-pkgrel=1
-pkgdesc="High-performance HTTP accelerator"
-arch=('i686' 'x86_64')
-url="https://www.varnish-cache.org/;
-license=('BSD')
-depends=('gcc' 'libedit' 'pcre')
-makedepends=('python-docutils')
-optdepends=('python: needed for vmod development')
-backup=('etc/varnish/default.vcl')
-install=$pkgname.install
-source=("https://repo.varnish-cache.org/source/$pkgname-$pkgver.tar.gz;
-varnish-vcl-reload
-varnish.service
-varnish.sysusers)
-sha256sums=('7439c93ca581340f3722b8c790160f46dc6c5328188e4c0bc233c42f3f04a54e'
-'0369e3e735e4c6150f08677df8b7cdae1a36ea75fd0e03734abe814a94312f80'
-'069904391237641eb770e8bc3989d18a3b3a9cb2374b9cd525235bfbb49b6b1d'
-'b58dd6b00eb81c75e4bb30421b85b2be88c049d5b72a8ee553ba690a5414972b')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  # https://github.com/varnishcache/varnish-cache/issues/1875
-  [[ $CARCH == i686 ]] && CFLAGS+=' -fexcess-precision=standard'
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var/lib \
---sbindir=/usr/bin
-
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  # Sometimes fails on i686 in address remapping test. Not sure if flaky
-  # test or otherwise...
-  make check
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  install -m755 "$srcdir/varnish-vcl-reload" "$pkgdir/usr/bin"
-  install -Dm644 "$srcdir/$pkgname.service" 
"$pkgdir/usr/lib/systemd/system/$pkgname.service"
-
-  # create varnish:varnish user/group
-  install -Dm644 "$srcdir/$pkgname.sysusers" 
"$pkgdir/usr/lib/sysusers.d/varnish.conf"
-
-  # config
-  install -Dm644 "etc/example.vcl" "$pkgdir/etc/varnish/default.vcl"
-  install -Dm644 "etc/builtin.vcl" "$pkgdir/usr/share/doc/varnish/builtin.vcl"
-
-  # license
-  install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: varnish/repos/extra-x86_64/PKGBUILD (from rev 310834, 
varnish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-24 23:32:13 UTC (rev 310835)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Douglas Soares de Andrade
+# Contributor: Roberto Alsina 
+
+pkgname=varnish
+pkgver=5.2.1
+pkgrel=1
+pkgdesc="High-performance HTTP accelerator"
+arch=('x86_64')
+url="https://www.varnish-cache.org/;
+license=('BSD')
+depends=('gcc' 'libedit' 'pcre')
+makedepends=('python-docutils' 'python')
+optdepends=('python: needed for vmod development')
+backup=('etc/varnish/default.vcl')
+options=('!buildflags')
+install=$pkgname.install
+source=("https://github.com/varnishcache/varnish-cache/archive/varnish-$pkgver.tar.gz;
+hack-up-vcstools-to-work-with-python-2-and-3.patch
+varnish-vcl-reload
+varnish.service
+varnish.sysusers)

[arch-commits] Commit in varnish/trunk (2 files)

2017-11-24 Thread Dave Reisner
Date: Friday, November 24, 2017 @ 23:31:34
  Author: dreisner
Revision: 310834

upgpkg: varnish 5.2.1-1

- switch to github source
- backport fix for building with python3

Added:
  varnish/trunk/hack-up-vcstools-to-work-with-python-2-and-3.patch
Modified:
  varnish/trunk/PKGBUILD

+
 PKGBUILD   |   28 +---
 hack-up-vcstools-to-work-with-python-2-and-3.patch |   66 +++
 2 files changed, 84 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 22:34:20 UTC (rev 310833)
+++ PKGBUILD2017-11-24 23:31:34 UTC (rev 310834)
@@ -5,7 +5,7 @@
 # Contributor: Roberto Alsina 
 
 pkgname=varnish
-pkgver=5.1.3
+pkgver=5.2.1
 pkgrel=1
 pkgdesc="High-performance HTTP accelerator"
 arch=('x86_64')
@@ -12,25 +12,33 @@
 url="https://www.varnish-cache.org/;
 license=('BSD')
 depends=('gcc' 'libedit' 'pcre')
-makedepends=('python-docutils')
+makedepends=('python-docutils' 'python')
 optdepends=('python: needed for vmod development')
 backup=('etc/varnish/default.vcl')
+options=('!buildflags')
 install=$pkgname.install
-source=("https://repo.varnish-cache.org/source/$pkgname-$pkgver.tar.gz;
+source=("https://github.com/varnishcache/varnish-cache/archive/varnish-$pkgver.tar.gz;
+hack-up-vcstools-to-work-with-python-2-and-3.patch
 varnish-vcl-reload
 varnish.service
 varnish.sysusers)
-sha256sums=('7439c93ca581340f3722b8c790160f46dc6c5328188e4c0bc233c42f3f04a54e'
+sha256sums=('f44decf0f382a2ac762478167a6b41909a3f6179eeefce402d19e694aba0'
+'97a00962474a5bf97fd71e4c0e792861157aa8ac872fc9c5636b763f11445e8c'
 '0369e3e735e4c6150f08677df8b7cdae1a36ea75fd0e03734abe814a94312f80'
 '069904391237641eb770e8bc3989d18a3b3a9cb2374b9cd525235bfbb49b6b1d'
 'b58dd6b00eb81c75e4bb30421b85b2be88c049d5b72a8ee553ba690a5414972b')
 
+prepare() {
+  cd "varnish-cache-varnish-$pkgver"
+
+  patch -Np1 <"$srcdir/hack-up-vcstools-to-work-with-python-2-and-3.patch"
+
+  ./autogen.sh
+}
+
 build() {
-  cd "$pkgname-$pkgver"
+  cd "varnish-cache-varnish-$pkgver"
 
-  # https://github.com/varnishcache/varnish-cache/issues/1875
-  [[ $CARCH == i686 ]] && CFLAGS+=' -fexcess-precision=standard'
-
   ./configure \
 --prefix=/usr \
 --sysconfdir=/etc \
@@ -41,7 +49,7 @@
 }
 
 check() {
-  cd "$pkgname-$pkgver"
+  cd "varnish-cache-varnish-$pkgver"
 
   # Sometimes fails on i686 in address remapping test. Not sure if flaky
   # test or otherwise...
@@ -49,7 +57,7 @@
 }
 
 package() {
-  cd "$pkgname-$pkgver"
+  cd "varnish-cache-varnish-$pkgver"
 
   make DESTDIR="$pkgdir" install
 

Added: hack-up-vcstools-to-work-with-python-2-and-3.patch
===
--- hack-up-vcstools-to-work-with-python-2-and-3.patch  
(rev 0)
+++ hack-up-vcstools-to-work-with-python-2-and-3.patch  2017-11-24 23:31:34 UTC 
(rev 310834)
@@ -0,0 +1,66 @@
+From 17c92e43fda114bf5341e51d752e882238b8fe8c Mon Sep 17 00:00:00 2001
+From: Nils Goroll 
+Date: Thu, 5 Oct 2017 13:39:23 +0200
+Subject: [PATCH] hack up vsctool to work with python 2 and 3
+
+StringIO does not exist any more in python3, yet requiring 2.7 would
+not pave the path forward, so try to be compatible with both.
+
+Works for me on Python 2.7.9 and Python 3.4
+
+I would appreciate if someone more fluent in serpentinous programming
+language reviewed and/or rewrote this.
+---
+ lib/libvcc/vsctool.py | 24 
+ 1 file changed, 20 insertions(+), 4 deletions(-)
+
+diff --git a/lib/libvcc/vsctool.py b/lib/libvcc/vsctool.py
+index 854968e3b..829c6e518 100644
+--- a/lib/libvcc/vsctool.py
 b/lib/libvcc/vsctool.py
+@@ -37,7 +37,10 @@
+ import json
+ import sys
+ import gzip
+-import StringIO
++try:
++import StringIO
++except ImportError:
++import io
+ import collections
+ import struct
+ 
+@@ -54,9 +57,22 @@
+   "format":   [ "integer", FORMATS],
+ }
+ 
++# http://python3porting.com/problems.html#bytes-strings-and-unicode
++if sys.version_info < (3,):
++def b(x):
++return x
++else:
++import codecs
++def b(x):
++return codecs.latin_1_encode(x)[0]
++
+ def gzip_str(s):
+-  out = StringIO.StringIO()
+-  gzip.GzipFile(fileobj=out, mode="w").write(s)
++  try:
++  out = StringIO.StringIO()
++  except NameError:
++  out = io.BytesIO()
++
++  gzip.GzipFile(fileobj=out, mode="w").write(b(s))
+   out.seek(4)
+   out.write(struct.pack("

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

2017-11-24 Thread Antonio Rojas
Date: Friday, November 24, 2017 @ 23:30:21
  Author: arojas
Revision: 268368

archrelease: copy trunk to community-x86_64

Added:
  libmicrohttpd/repos/community-x86_64/PKGBUILD
(from rev 268367, libmicrohttpd/trunk/PKGBUILD)
Deleted:
  libmicrohttpd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-24 23:29:51 UTC (rev 268367)
+++ PKGBUILD2017-11-24 23:30:21 UTC (rev 268368)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Norberto Lopes 
-# Contributor: Kao Dome 
-# Contributor: Dmitrij D. Czarkoff 
-# Contributor: Mathias Rohnstock 
-
-pkgname=libmicrohttpd
-pkgver=0.9.55
-pkgrel=1
-pkgdesc="a small C library that is supposed to make it easy to run an HTTP 
server as part of another application."
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/libmicrohttpd/;
-license=('LGPL')
-depends=('gnutls' 'libgcrypt')
-optdepends=('file' 'curl')
-source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
-sha256sums=('0c1cab8dc9f2588bd3076a28f77a7f8de9560cbf2d80e53f9a8696ada80ed0f8')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --disable-dependency-tracking --enable-largefile \
-   --enable-curl --enable-messages --with-pic
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir"/${pkgname}-${pkgver}/src/include/platform.h \
-   "$pkgdir"/usr/include/$pkgname/platform.h
-  sed -i 's#Cflags: -I${includedir}#Cflags: -I${includedir} 
-I${includedir}/libmicrohttpd#' \
-   "$pkgdir"/usr/lib/pkgconfig/libmicrohttpd.pc
-}

Copied: libmicrohttpd/repos/community-x86_64/PKGBUILD (from rev 268367, 
libmicrohttpd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-24 23:30:21 UTC (rev 268368)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Norberto Lopes 
+# Contributor: Kao Dome 
+# Contributor: Dmitrij D. Czarkoff 
+# Contributor: Mathias Rohnstock 
+
+pkgname=libmicrohttpd
+pkgver=0.9.56
+pkgrel=1
+pkgdesc="a small C library that is supposed to make it easy to run an HTTP 
server as part of another application."
+arch=('x86_64')
+url="http://www.gnu.org/software/libmicrohttpd/;
+license=('LGPL')
+depends=('gnutls')
+optdepends=('file' 'curl')
+source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
+sha256sums=('2c23b938114b1fa14cf47d1b4cdb0f4c5d86b7905c4f3a40684bdea129640789')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-dependency-tracking --enable-largefile \
+   --enable-curl --enable-messages --with-pic
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir"/${pkgname}-${pkgver}/src/include/platform.h \
+   "$pkgdir"/usr/include/$pkgname/platform.h
+  sed -i 's#Cflags: -I${includedir}#Cflags: -I${includedir} 
-I${includedir}/libmicrohttpd#' \
+   "$pkgdir"/usr/lib/pkgconfig/libmicrohttpd.pc
+}


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

2017-11-24 Thread Antonio Rojas
Date: Friday, November 24, 2017 @ 23:29:51
  Author: arojas
Revision: 268367

Update to 0.9.56

Modified:
  libmicrohttpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 22:37:44 UTC (rev 268366)
+++ PKGBUILD2017-11-24 23:29:51 UTC (rev 268367)
@@ -6,16 +6,16 @@
 # Contributor: Mathias Rohnstock 
 
 pkgname=libmicrohttpd
-pkgver=0.9.55
+pkgver=0.9.56
 pkgrel=1
 pkgdesc="a small C library that is supposed to make it easy to run an HTTP 
server as part of another application."
 arch=('x86_64')
 url="http://www.gnu.org/software/libmicrohttpd/;
 license=('LGPL')
-depends=('gnutls' 'libgcrypt')
+depends=('gnutls')
 optdepends=('file' 'curl')
 source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
-sha256sums=('0c1cab8dc9f2588bd3076a28f77a7f8de9560cbf2d80e53f9a8696ada80ed0f8')
+sha256sums=('2c23b938114b1fa14cf47d1b4cdb0f4c5d86b7905c4f3a40684bdea129640789')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in d-feet/repos/community-any (PKGBUILD PKGBUILD)

2017-11-24 Thread Jan Steffens
Date: Friday, November 24, 2017 @ 22:37:44
  Author: heftig
Revision: 268366

archrelease: copy trunk to community-any

Added:
  d-feet/repos/community-any/PKGBUILD
(from rev 268365, d-feet/trunk/PKGBUILD)
Deleted:
  d-feet/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-24 22:37:07 UTC (rev 268365)
+++ PKGBUILD2017-11-24 22:37:44 UTC (rev 268366)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=d-feet
-pkgver=0.3.12
-pkgrel=1
-pkgdesc="D-Bus debugger for GNOME"
-arch=('any')
-url="https://wiki.gnome.org/Apps/DFeet;
-license=('GPL2')
-depends=('gtk3' 'python-gobject')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c868c350ea4bb0101d9aeb344661ed4b723f523a5010faf3712ec5984da19014')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-tests
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  # Needs X
-  #make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: d-feet/repos/community-any/PKGBUILD (from rev 268365, 
d-feet/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-24 22:37:44 UTC (rev 268366)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=d-feet
+pkgver=0.3.13
+pkgrel=1
+pkgdesc="D-Bus debugger for GNOME"
+arch=('any')
+url="https://wiki.gnome.org/Apps/DFeet;
+license=('GPL2')
+depends=('gtk3' 'python-gobject')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('941a2fda5a06deaeeb1eddd1e02c1eef6ddcaf8d6fb5647423e0e952f4a7a3d5')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-tests
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2017-11-24 Thread Jan Steffens
Date: Friday, November 24, 2017 @ 22:37:07
  Author: heftig
Revision: 268365

0.3.13-1

Modified:
  d-feet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 22:34:27 UTC (rev 268364)
+++ PKGBUILD2017-11-24 22:37:07 UTC (rev 268365)
@@ -2,7 +2,7 @@
 # Maintainer: Balló György 
 
 pkgname=d-feet
-pkgver=0.3.12
+pkgver=0.3.13
 pkgrel=1
 pkgdesc="D-Bus debugger for GNOME"
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('gtk3' 'python-gobject')
 makedepends=('intltool' 'itstool' 'gobject-introspection')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c868c350ea4bb0101d9aeb344661ed4b723f523a5010faf3712ec5984da19014')
+sha256sums=('941a2fda5a06deaeeb1eddd1e02c1eef6ddcaf8d6fb5647423e0e952f4a7a3d5')
 
 build() {
   cd $pkgname-$pkgver
@@ -21,8 +21,7 @@
 
 check() {
   cd $pkgname-$pkgver
-  # Needs X
-  #make check
+  make check
 }
 
 package() {


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

2017-11-24 Thread Jelle van der Waa
Date: Friday, November 24, 2017 @ 22:34:20
  Author: jelle
Revision: 310833

update source to https

the ftp.kernel.org died, so update to https

Modified:
  kbd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 22:29:46 UTC (rev 310832)
+++ PKGBUILD2017-11-24 22:34:20 UTC (rev 310833)
@@ -10,8 +10,8 @@
 license=('GPL')
 depends=('glibc' 'pam')
 makedepends=('check')
-source=(ftp://ftp.kernel.org/pub/linux/utils/${pkgname}/${pkgname}-${pkgver}.tar.gz
-ftp://ftp.kernel.org/pub/linux/utils/kbd/${pkgname}-${pkgver}.tar.sign
+source=(https://www.kernel.org/pub/linux/utils/${pkgname}/${pkgname}-${pkgver}.tar.gz
+https://www.kernel.org/pub/linux/utils/kbd/${pkgname}-${pkgver}.tar.sign
 'fix-euro2.patch')
 provides=('vlock')
 conflicts=('vlock')


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

2017-11-24 Thread Antonio Rojas
Date: Friday, November 24, 2017 @ 22:34:27
  Author: arojas
Revision: 268364

archrelease: copy trunk to community-x86_64

Added:
  giac/repos/community-x86_64/PKGBUILD
(from rev 268363, giac/trunk/PKGBUILD)
Deleted:
  giac/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   88 ++---
 1 file changed, 44 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-24 22:33:57 UTC (rev 268363)
+++ PKGBUILD2017-11-24 22:34:27 UTC (rev 268364)
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 175037 2016-05-12 15:18:07Z arojas $
-# Maintainer: Antonio Rojas 
-
-pkgbase=giac
-pkgname=(xcas libgiac)
-_pkgver=1.4.9-23
-pkgver=${_pkgver//-/.}
-pkgrel=1
-pkgdesc="A free computer algebra system"
-arch=(x86_64)
-url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
-license=(GPL3)
-makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core)
-source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('324a021a416b4ae1aee4fe2a706fc2a8e7de4174fefd2406b85adee99a33cce4')
-
-build() {
-  cd $pkgbase-${pkgver%.*}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package_xcas() {
-  depends=(libgiac fltk)
-  conflicts=(giac)
-  provides=(giac)
-  replaces=(giac)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{lib,include}
-}
-
-package_libgiac() {
-  pkgdesc="Giac shared library"
-  depends=(mpfi gsl pari ntl lapack libpng)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{bin,share}
-}

Copied: giac/repos/community-x86_64/PKGBUILD (from rev 268363, 
giac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-24 22:34:27 UTC (rev 268364)
@@ -0,0 +1,44 @@
+# $Id: PKGBUILD 175037 2016-05-12 15:18:07Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgbase=giac
+pkgname=(xcas libgiac)
+_pkgver=1.4.9-25
+pkgver=${_pkgver//-/.}
+pkgrel=1
+pkgdesc="A free computer algebra system"
+arch=(x86_64)
+url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
+license=(GPL3)
+makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core)
+source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
+sha256sums=('ae1625aa77a8c794b208e9d66c93ce7a3bfd1dfc8148b79fc7954e8b995b0d6e')
+
+build() {
+  cd $pkgbase-${pkgver%.*}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package_xcas() {
+  depends=(libgiac fltk)
+  conflicts=(giac)
+  provides=(giac)
+  replaces=(giac)
+
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/{lib,include}
+}
+
+package_libgiac() {
+  pkgdesc="Giac shared library"
+  depends=(mpfi gsl pari ntl lapack libpng)
+
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/{bin,share}
+}


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

2017-11-24 Thread Antonio Rojas
Date: Friday, November 24, 2017 @ 22:33:57
  Author: arojas
Revision: 268363

Update to 1.4.9.25

Modified:
  giac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 22:26:59 UTC (rev 268362)
+++ PKGBUILD2017-11-24 22:33:57 UTC (rev 268363)
@@ -3,7 +3,7 @@
 
 pkgbase=giac
 pkgname=(xcas libgiac)
-_pkgver=1.4.9-23
+_pkgver=1.4.9-25
 pkgver=${_pkgver//-/.}
 pkgrel=1
 pkgdesc="A free computer algebra system"
@@ -12,7 +12,7 @@
 license=(GPL3)
 makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core)
 
source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('324a021a416b4ae1aee4fe2a706fc2a8e7de4174fefd2406b85adee99a33cce4')
+sha256sums=('ae1625aa77a8c794b208e9d66c93ce7a3bfd1dfc8148b79fc7954e8b995b0d6e')
 
 build() {
   cd $pkgbase-${pkgver%.*}


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

2017-11-24 Thread Jelle van der Waa
Date: Friday, November 24, 2017 @ 22:29:46
  Author: jelle
Revision: 310832

Update source to https://www.kernel.org

ftp:// is dead

Modified:
  kmod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 20:14:02 UTC (rev 310831)
+++ PKGBUILD2017-11-24 22:29:46 UTC (rev 310832)
@@ -16,7 +16,7 @@
 conflicts=('module-init-tools')
 replaces=('module-init-tools')
 validpgpkeys=('EAB33C9690013C733916AC839BA2A5A630CBEA53')  # Lucas DeMarchi
-source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar."{xz,sign}
+source=("https://www.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar."{xz,sign}
 "depmod-search.conf")
 md5sums=('08297dfb6f2b3f625f928ca3278528af'
  'SKIP'


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

2017-11-24 Thread Jelle van der Waa
Date: Friday, November 24, 2017 @ 22:26:59
  Author: jelle
Revision: 268362

Update source to https

ftp://kernel.org is dead, long live https

Modified:
  lib32-libraw1394/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 21:46:52 UTC (rev 268361)
+++ PKGBUILD2017-11-24 22:26:59 UTC (rev 268362)
@@ -13,7 +13,7 @@
 license=('LGPL2.1')
 depends=('lib32-glibc' "${_pkgname}")
 makedepends=('gcc-multilib')
-source=(ftp://ftp.kernel.org/pub/linux/libs/ieee1394/${_pkgname}-${pkgver}.tar.xz)
+source=(https://www.kernel.org/pub/linux/libs/ieee1394/${_pkgname}-${pkgver}.tar.xz)
 md5sums=('118060584c04f1aa5e29c4d22c1c235a')
 
 


[arch-commits] Commit in gsmartcontrol/repos/community-x86_64 (6 files)

2017-11-24 Thread Jelle van der Waa
Date: Friday, November 24, 2017 @ 21:46:52
  Author: jelle
Revision: 268361

archrelease: copy trunk to community-x86_64

Added:
  gsmartcontrol/repos/community-x86_64/PKGBUILD
(from rev 268360, gsmartcontrol/trunk/PKGBUILD)
  gsmartcontrol/repos/community-x86_64/gsmartcontrol_polkit
(from rev 268360, gsmartcontrol/trunk/gsmartcontrol_polkit)
  gsmartcontrol/repos/community-x86_64/org.archlinux.pkexec.gsmartcontrol.policy
(from rev 268360, 
gsmartcontrol/trunk/org.archlinux.pkexec.gsmartcontrol.policy)
Deleted:
  gsmartcontrol/repos/community-x86_64/PKGBUILD
  gsmartcontrol/repos/community-x86_64/gsmartcontrol_polkit
  gsmartcontrol/repos/community-x86_64/org.archlinux.pkexec.gsmartcontrol.policy

--+
 PKGBUILD |  100 -
 gsmartcontrol_polkit |   12 ++---
 2 files changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-24 21:46:25 UTC (rev 268360)
+++ PKGBUILD2017-11-24 21:46:52 UTC (rev 268361)
@@ -1,50 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=gsmartcontrol
-pkgver=1.1.0
-pkgrel=1
-pkgdesc="A graphical user interface for the smartctl hard disk drive health 
inspection tool."
-arch=('i686' 'x86_64')
-url="http://gsmartcontrol.sourceforge.net/home/;
-license=('GPL3')
-depends=('smartmontools' 'gtkmm3' 'xorg-xmessage' 'hicolor-icon-theme')
-optdepends=('polkit: to run gsmartcontrol directly from menu')
-source=("http://sourceforge.net/projects/gsmartcontrol/files/${pkgver}/gsmartcontrol-${pkgver}.tar.bz2;
-org.archlinux.pkexec.gsmartcontrol.policy
-gsmartcontrol_polkit)
-md5sums=('011e058ca8ae74723c092fdefe84eaff'
- '503989a7e6a9a287d81e91243d03f162'
- '33bdda04d8db1525f2507485f3f2a663')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-# Modify desktop file
-sed -i "s|^Exec=.*|Exec="@prefix@/bin/gsmartcontrol_polkit"|" \
-data/gsmartcontrol.desktop.in
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   CXXFLAGS+=' -std=c++11' ./configure --prefix=/usr --sbindir=/usr/bin/
-   make 
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-make check
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   make DESTDIR=${pkgdir} install
-
-# Install launcher script
-install -m755 ${srcdir}/gsmartcontrol_polkit \
-"${pkgdir}/usr/bin/gsmartcontrol_polkit"
-
-# Install policy file
-install -Dm644 ${srcdir}/org.archlinux.pkexec.gsmartcontrol.policy \
-
"${pkgdir}/usr/share/polkit-1/actions/org.archlinux.pkexec.gsmartcontrol.policy"
-}

Copied: gsmartcontrol/repos/community-x86_64/PKGBUILD (from rev 268360, 
gsmartcontrol/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-24 21:46:52 UTC (rev 268361)
@@ -0,0 +1,50 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=gsmartcontrol
+pkgver=1.1.3
+pkgrel=1
+pkgdesc="A graphical user interface for the smartctl hard disk drive health 
inspection tool."
+arch=('x86_64')
+url="http://gsmartcontrol.sourceforge.net/home/;
+license=('GPL3')
+depends=('smartmontools' 'gtkmm3' 'xorg-xmessage' 'hicolor-icon-theme')
+optdepends=('polkit: to run gsmartcontrol directly from menu')
+source=("http://sourceforge.net/projects/gsmartcontrol/files/${pkgver}/gsmartcontrol-${pkgver}.tar.bz2;
+org.archlinux.pkexec.gsmartcontrol.policy
+gsmartcontrol_polkit)
+md5sums=('6953ed6f90b2551ebdb1ae2470f4acdc'
+ '503989a7e6a9a287d81e91243d03f162'
+ '33bdda04d8db1525f2507485f3f2a663')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+# Modify desktop file
+sed -i "s|^Exec=.*|Exec="@prefix@/bin/gsmartcontrol_polkit"|" \
+data/gsmartcontrol.desktop.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   CXXFLAGS+=' -std=c++11' ./configure --prefix=/usr --sbindir=/usr/bin/
+   make 
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR=${pkgdir} install
+
+# Install launcher script
+install -m755 ${srcdir}/gsmartcontrol_polkit \
+"${pkgdir}/usr/bin/gsmartcontrol_polkit"
+
+# Install policy file
+install -Dm644 ${srcdir}/org.archlinux.pkexec.gsmartcontrol.policy \
+
"${pkgdir}/usr/share/polkit-1/actions/org.archlinux.pkexec.gsmartcontrol.policy"
+}

Deleted: gsmartcontrol_polkit
===
--- gsmartcontrol_polkit2017-11-24 21:46:25 UTC (rev 268360)
+++ gsmartcontrol_polkit2017-11-24 21:46:52 UTC (rev 268361)
@@ -1,6 +0,0 @@
-#!/bin/bash
-if [ 

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

2017-11-24 Thread Jelle van der Waa
Date: Friday, November 24, 2017 @ 21:46:25
  Author: jelle
Revision: 268360

upgpkg: gsmartcontrol 1.1.3-1

Modified:
  gsmartcontrol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 21:37:28 UTC (rev 268359)
+++ PKGBUILD2017-11-24 21:46:25 UTC (rev 268360)
@@ -1,7 +1,7 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=gsmartcontrol
-pkgver=1.1.0
+pkgver=1.1.3
 pkgrel=1
 pkgdesc="A graphical user interface for the smartctl hard disk drive health 
inspection tool."
 arch=('x86_64')
@@ -12,7 +12,7 @@
 
source=("http://sourceforge.net/projects/gsmartcontrol/files/${pkgver}/gsmartcontrol-${pkgver}.tar.bz2;
 org.archlinux.pkexec.gsmartcontrol.policy
 gsmartcontrol_polkit)
-md5sums=('011e058ca8ae74723c092fdefe84eaff'
+md5sums=('6953ed6f90b2551ebdb1ae2470f4acdc'
  '503989a7e6a9a287d81e91243d03f162'
  '33bdda04d8db1525f2507485f3f2a663')
 


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

2017-11-24 Thread Jelle van der Waa
Date: Friday, November 24, 2017 @ 21:37:28
  Author: jelle
Revision: 268359

Fix 404 source url

Modified:
  gens-gs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 21:11:10 UTC (rev 268358)
+++ PKGBUILD2017-11-24 21:37:28 UTC (rev 268359)
@@ -20,7 +20,7 @@
'lib32-libpulse: PulseAudio sound support')
 provides=('gens')
 conflicts=('gens')
-source=('https://segaretro.org/images/6/6d/Gens-gs-r7.tar.gz'
+source=('https://retrocdn.net/images/6/6d/Gens-gs-r7.tar.gz'
 'gens-gtk.patch')
 sha256sums=('6320cd7bee85472891e1e29b21731d2c8180d04db67ee21256491f3f9ad145c1'
 '29b1e9755b34e00ef7d19bdc527dc4f841400a0022c81ee71c331be4a76a6c1c')


[arch-commits] Commit in yubikey-personalization-gui/trunk (PKGBUILD)

2017-11-24 Thread Jelle van der Waa
Date: Friday, November 24, 2017 @ 21:11:10
  Author: jelle
Revision: 268358

Fix create/modify timestamps in png's

Fix the date/modify timestamps for reproducible builds

Modified:
  yubikey-personalization-gui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 20:20:59 UTC (rev 268357)
+++ PKGBUILD2017-11-24 21:11:10 UTC (rev 268358)
@@ -40,7 +40,8 @@
 
install -D -m0644 resources/lin/yubikey-personalization-gui.png 
"${pkgdir}/usr/share/icons/hicolor/128x128/apps/yubikey-personalization-gui.png"
for SIZE in 16 24 32 48 64 96; do
-   convert -scale ${SIZE} \
+# set modify/create for reproducible builds
+convert -scale ${SIZE} +set date:create +set date:modify \
resources/lin/yubikey-personalization-gui.png \
${srcdir}/yubikey-personalization-gui.png
install -D -m0644 ${srcdir}/yubikey-personalization-gui.png 
"${pkgdir}/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps/yubikey-personalization-gui.png"


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

2017-11-24 Thread Levente Polyak
Date: Friday, November 24, 2017 @ 20:20:59
  Author: anthraxx
Revision: 268357

archrelease: copy trunk to community-x86_64

Added:
  libjpeg6-turbo/repos/community-x86_64/PKGBUILD
(from rev 268356, libjpeg6-turbo/trunk/PKGBUILD)
Deleted:
  libjpeg6-turbo/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-24 20:20:50 UTC (rev 268356)
+++ PKGBUILD2017-11-24 20:20:59 UTC (rev 268357)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Mikael Eriksson 
-
-pkgname=libjpeg6-turbo
-pkgver=1.5.2
-pkgrel=1
-pkgdesc='libjpeg derivative with accelerated baseline JPEG compression and 
decompression'
-arch=('i686' 'x86_64')
-url='https://libjpeg-turbo.virtualgl.org/'
-license=('BSD')
-depends=('glibc')
-makedepends=('nasm')
-provides=('libjpeg6')
-conflicts=('libjpeg6')
-source=("https://downloads.sourceforge.net/project/libjpeg-turbo/${pkgver}/libjpeg-turbo-${pkgver}.tar.gz"{,.sig})
-validpgpkeys=('7D6293CC6378786E1B5C496885C7044E033FDE16') # libjpeg-turbo
-sha256sums=('9098943b270388727ae61de82adec73cf9f0dbb240b3bc8b172595ebf405b528'
-'SKIP')
-
-build() {
-  cd libjpeg-turbo-${pkgver}
-
-  ./configure \
---prefix='/usr' \
---mandir='/usr/share/man' \
---without-simd
-  make
-}
-
-package() {
-  cd libjpeg-turbo-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/{bin,include,lib/pkgconfig,share}
-  rm "${pkgdir}"/usr/lib/lib{jpeg.{a,so},turbojpeg.{a,so*}}
-
-  install -Dm 644 LICENSE.md -t "${pkgdir}"/usr/share/licenses/libjpeg6-turbo/
-}
-
-# vim: ts=2 sw=2 et:

Copied: libjpeg6-turbo/repos/community-x86_64/PKGBUILD (from rev 268356, 
libjpeg6-turbo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-24 20:20:59 UTC (rev 268357)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Mikael Eriksson 
+
+pkgname=libjpeg6-turbo
+pkgver=1.5.2
+pkgrel=2
+pkgdesc='libjpeg derivative with accelerated baseline JPEG compression and 
decompression'
+arch=('x86_64')
+url="https://libjpeg-turbo.org/;
+license=('BSD')
+depends=('glibc')
+makedepends=('nasm')
+provides=('libjpeg6')
+conflicts=('libjpeg6')
+source=("https://downloads.sourceforge.net/project/libjpeg-turbo/${pkgver}/libjpeg-turbo-${pkgver}.tar.gz"{,.sig})
+validpgpkeys=('7D6293CC6378786E1B5C496885C7044E033FDE16') # libjpeg-turbo
+sha256sums=('9098943b270388727ae61de82adec73cf9f0dbb240b3bc8b172595ebf405b528'
+'SKIP')
+
+build() {
+  cd libjpeg-turbo-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--mandir='/usr/share/man' \
+--without-simd \
+--with-build-date="$(date --utc --date="@${SOURCE_DATE_EPOCH:-$(date 
+%s)}" +%Y%m%d)"
+  make
+}
+
+check() {
+  cd libjpeg-turbo-${pkgver}
+  make test
+}
+
+package() {
+  cd libjpeg-turbo-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin,include,lib/pkgconfig,share}
+  rm "${pkgdir}"/usr/lib/lib{jpeg.{a,so},turbojpeg.{a,so*}}
+
+  install -Dm 644 LICENSE.md -t "${pkgdir}"/usr/share/licenses/libjpeg6-turbo/
+}
+
+# vim: ts=2 sw=2 et:


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

2017-11-24 Thread Levente Polyak
Date: Friday, November 24, 2017 @ 20:20:50
  Author: anthraxx
Revision: 268356

upgpkg: libjpeg6-turbo 1.5.2-2 (reproducible builds)

- setting build-date for reproducible builds

Modified:
  libjpeg6-turbo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 20:17:29 UTC (rev 268355)
+++ PKGBUILD2017-11-24 20:20:50 UTC (rev 268356)
@@ -4,10 +4,10 @@
 
 pkgname=libjpeg6-turbo
 pkgver=1.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc='libjpeg derivative with accelerated baseline JPEG compression and 
decompression'
 arch=('x86_64')
-url='https://libjpeg-turbo.virtualgl.org/'
+url="https://libjpeg-turbo.org/;
 license=('BSD')
 depends=('glibc')
 makedepends=('nasm')
@@ -24,10 +24,16 @@
   ./configure \
 --prefix='/usr' \
 --mandir='/usr/share/man' \
---without-simd
+--without-simd \
+--with-build-date="$(date --utc --date="@${SOURCE_DATE_EPOCH:-$(date 
+%s)}" +%Y%m%d)"
   make
 }
 
+check() {
+  cd libjpeg-turbo-${pkgver}
+  make test
+}
+
 package() {
   cd libjpeg-turbo-${pkgver}
 


[arch-commits] Commit in lib32-libjpeg6-turbo/trunk (PKGBUILD)

2017-11-24 Thread Levente Polyak
Date: Friday, November 24, 2017 @ 20:17:21
  Author: anthraxx
Revision: 268354

upgpkg: lib32-libjpeg6-turbo 1.5.2-2 (reproducible builds)

Modified:
  lib32-libjpeg6-turbo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 20:16:12 UTC (rev 268353)
+++ PKGBUILD2017-11-24 20:17:21 UTC (rev 268354)
@@ -5,13 +5,13 @@
 
 pkgname=lib32-libjpeg6-turbo
 pkgver=1.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc='libjpeg derivative with accelerated baseline JPEG compression and 
decompression'
 arch=('x86_64')
-url='https://libjpeg-turbo.virtualgl.org/'
+url="https://libjpeg-turbo.org/;
 license=('BSD')
 depends=('lib32-glibc')
-makedepends=('nasm' 'gcc-multilib')
+makedepends=('nasm')
 provides=('lib32-libjpeg6')
 conflicts=('lib32-libjpeg6')
 
source=("https://downloads.sourceforge.net/project/libjpeg-turbo/${pkgver}/libjpeg-turbo-${pkgver}.tar.gz"{,.sig})
@@ -29,10 +29,17 @@
 --prefix='/usr' \
 --libdir='/usr/lib32' \
 --mandir='/usr/share/man' \
---without-simd
+--without-simd \
+--with-build-date="$(date --utc --date="@${SOURCE_DATE_EPOCH:-$(date 
+%s)}" +%Y%m%d)"
+
   make
 }
 
+check() {
+  cd libjpeg-turbo-${pkgver}
+  make test
+}
+
 package() {
   cd libjpeg-turbo-${pkgver}
 


[arch-commits] Commit in lib32-libjpeg6-turbo/repos/multilib-x86_64 (2 files)

2017-11-24 Thread Levente Polyak
Date: Friday, November 24, 2017 @ 20:17:29
  Author: anthraxx
Revision: 268355

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libjpeg6-turbo/repos/multilib-x86_64/PKGBUILD
(from rev 268354, lib32-libjpeg6-turbo/trunk/PKGBUILD)
Deleted:
  lib32-libjpeg6-turbo/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-24 20:17:21 UTC (rev 268354)
+++ PKGBUILD2017-11-24 20:17:29 UTC (rev 268355)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: josephgbr 
-# Contributor: Martin Stolpe 
-
-pkgname=lib32-libjpeg6-turbo
-pkgver=1.5.2
-pkgrel=1
-pkgdesc='libjpeg derivative with accelerated baseline JPEG compression and 
decompression'
-arch=('x86_64')
-url='https://libjpeg-turbo.virtualgl.org/'
-license=('BSD')
-depends=('lib32-glibc')
-makedepends=('nasm' 'gcc-multilib')
-provides=('lib32-libjpeg6')
-conflicts=('lib32-libjpeg6')
-source=("https://downloads.sourceforge.net/project/libjpeg-turbo/${pkgver}/libjpeg-turbo-${pkgver}.tar.gz"{,.sig})
-validpgpkeys=('7D6293CC6378786E1B5C496885C7044E033FDE16') # libjpeg-turbo
-sha256sums=('9098943b270388727ae61de82adec73cf9f0dbb240b3bc8b172595ebf405b528'
-'SKIP')
-
-build() {
-  cd libjpeg-turbo-${pkgver}
-
-  export CC='gcc -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---mandir='/usr/share/man' \
---without-simd
-  make
-}
-
-package() {
-  cd libjpeg-turbo-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/{bin,include,lib32/pkgconfig,share}
-  rm "${pkgdir}"/usr/lib32/lib{jpeg.{a,so},turbojpeg.{a,so*}}
-
-  install -Dm 644 LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/lib32-libjpeg6-turbo/
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-libjpeg6-turbo/repos/multilib-x86_64/PKGBUILD (from rev 268354, 
lib32-libjpeg6-turbo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-24 20:17:29 UTC (rev 268355)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: josephgbr 
+# Contributor: Martin Stolpe 
+
+pkgname=lib32-libjpeg6-turbo
+pkgver=1.5.2
+pkgrel=2
+pkgdesc='libjpeg derivative with accelerated baseline JPEG compression and 
decompression'
+arch=('x86_64')
+url="https://libjpeg-turbo.org/;
+license=('BSD')
+depends=('lib32-glibc')
+makedepends=('nasm')
+provides=('lib32-libjpeg6')
+conflicts=('lib32-libjpeg6')
+source=("https://downloads.sourceforge.net/project/libjpeg-turbo/${pkgver}/libjpeg-turbo-${pkgver}.tar.gz"{,.sig})
+validpgpkeys=('7D6293CC6378786E1B5C496885C7044E033FDE16') # libjpeg-turbo
+sha256sums=('9098943b270388727ae61de82adec73cf9f0dbb240b3bc8b172595ebf405b528'
+'SKIP')
+
+build() {
+  cd libjpeg-turbo-${pkgver}
+
+  export CC='gcc -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--mandir='/usr/share/man' \
+--without-simd \
+--with-build-date="$(date --utc --date="@${SOURCE_DATE_EPOCH:-$(date 
+%s)}" +%Y%m%d)"
+
+  make
+}
+
+check() {
+  cd libjpeg-turbo-${pkgver}
+  make test
+}
+
+package() {
+  cd libjpeg-turbo-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin,include,lib32/pkgconfig,share}
+  rm "${pkgdir}"/usr/lib32/lib{jpeg.{a,so},turbojpeg.{a,so*}}
+
+  install -Dm 644 LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/lib32-libjpeg6-turbo/
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-libjpeg-turbo/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2017-11-24 Thread Levente Polyak
Date: Friday, November 24, 2017 @ 20:16:12
  Author: anthraxx
Revision: 268353

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libjpeg-turbo/repos/multilib-x86_64/PKGBUILD
(from rev 268352, lib32-libjpeg-turbo/trunk/PKGBUILD)
Deleted:
  lib32-libjpeg-turbo/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-24 20:15:58 UTC (rev 268352)
+++ PKGBUILD2017-11-24 20:16:12 UTC (rev 268353)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: Simone Sclavi 'Ito' 
-
-_pkgbasename=libjpeg-turbo
-pkgname=lib32-$_pkgbasename
-pkgver=1.5.2
-pkgrel=1
-pkgdesc="libjpeg derivative with accelerated baseline JPEG compression and 
decompression (32-bit)"
-arch=('x86_64')
-url="http://libjpeg-turbo.virtualgl.org/;
-license=('custom')
-depends=('lib32-glibc' $_pkgbasename)
-makedepends=('nasm' gcc-multilib)
-provides=('lib32-libjpeg=8.1.2' 'lib32-turbojpeg')
-conflicts=('lib32-libjpeg' 'lib32-turbojpeg')
-replaces=('lib32-libjpeg' 'lib32-turbojpeg')
-options=('!libtool')
-source=(http://sourceforge.net/projects/$_pkgbasename/files/$pkgver/$_pkgbasename-$pkgver.tar.gz)
-sha512sums=('c7fe5cc77e38fad33af3f10e6db961c8edf033a86c09541121f49bfa20547179760924e6d3e397f0add7030459ff3babadd3457ab2da4a40a2147dc1574aa444')
-
-build() {
-  cd "$_pkgbasename-$pkgver"
-
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  ./configure --prefix=/usr --with-jpeg8 --mandir=/usr/share/man 
--libdir=/usr/lib32 --without-simd
-
-  make
-}
-
-check() {
-  cd "$_pkgbasename-$pkgver"
-  make test
-  }
-
-package() {
-  cd "$_pkgbasename-$pkgver"
-
-  make DESTDIR="$pkgdir/" docdir=/usr/share/doc/libjpeg-turbo \
-exampledir=/usr/share/doc/libjpeg-turbo install
-
-  rm -rf "${pkgdir}"/usr/{include,share,bin,sbin}
-
-  mkdir -p "$pkgdir/usr/share/licenses"
-  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: lib32-libjpeg-turbo/repos/multilib-x86_64/PKGBUILD (from rev 268352, 
lib32-libjpeg-turbo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-24 20:16:12 UTC (rev 268353)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: Simone Sclavi 'Ito' 
+
+_pkgbasename=libjpeg-turbo
+pkgname=lib32-$_pkgbasename
+pkgver=1.5.2
+pkgrel=2
+pkgdesc="libjpeg derivative with accelerated baseline JPEG compression and 
decompression (32-bit)"
+arch=('x86_64')
+url="https://libjpeg-turbo.org/;
+license=('custom')
+depends=('lib32-glibc' $_pkgbasename)
+makedepends=('nasm')
+provides=('lib32-libjpeg=8.1.2' 'lib32-turbojpeg')
+conflicts=('lib32-libjpeg' 'lib32-turbojpeg')
+replaces=('lib32-libjpeg' 'lib32-turbojpeg')
+options=('!libtool')
+validpgpkeys=('7D6293CC6378786E1B5C496885C7044E033FDE16')
+source=(https://sourceforge.net/projects/$_pkgbasename/files/$pkgver/$_pkgbasename-$pkgver.tar.gz{,.sig})
+sha512sums=('c7fe5cc77e38fad33af3f10e6db961c8edf033a86c09541121f49bfa20547179760924e6d3e397f0add7030459ff3babadd3457ab2da4a40a2147dc1574aa444'
+'SKIP')
+
+build() {
+  cd "$_pkgbasename-$pkgver"
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--libdir=/usr/lib32 \
+--with-jpeg8 \
+--without-simd \
+--with-build-date="$(date --utc --date="@${SOURCE_DATE_EPOCH:-$(date 
+%s)}" +%Y%m%d)" \
+
+  make
+}
+
+check() {
+  cd "$_pkgbasename-$pkgver"
+  make test
+}
+
+package() {
+  cd "$_pkgbasename-$pkgver"
+
+  make DESTDIR="$pkgdir/" docdir=/usr/share/doc/libjpeg-turbo \
+exampledir=/usr/share/doc/libjpeg-turbo install
+
+  rm -rf "${pkgdir}"/usr/{include,share,bin,sbin}
+
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm 644 ChangeLog.md -t"${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in lib32-libjpeg-turbo/trunk (PKGBUILD)

2017-11-24 Thread Levente Polyak
Date: Friday, November 24, 2017 @ 20:15:58
  Author: anthraxx
Revision: 268352

upgpkg: lib32-libjpeg-turbo 1.5.2-2 (reproducible builds)

setting build-date for reproducible builds

Modified:
  lib32-libjpeg-turbo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 18:33:33 UTC (rev 268351)
+++ PKGBUILD2017-11-24 20:15:58 UTC (rev 268352)
@@ -5,19 +5,21 @@
 _pkgbasename=libjpeg-turbo
 pkgname=lib32-$_pkgbasename
 pkgver=1.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc="libjpeg derivative with accelerated baseline JPEG compression and 
decompression (32-bit)"
 arch=('x86_64')
-url="http://libjpeg-turbo.virtualgl.org/;
+url="https://libjpeg-turbo.org/;
 license=('custom')
 depends=('lib32-glibc' $_pkgbasename)
-makedepends=('nasm' gcc-multilib)
+makedepends=('nasm')
 provides=('lib32-libjpeg=8.1.2' 'lib32-turbojpeg')
 conflicts=('lib32-libjpeg' 'lib32-turbojpeg')
 replaces=('lib32-libjpeg' 'lib32-turbojpeg')
 options=('!libtool')
-source=(http://sourceforge.net/projects/$_pkgbasename/files/$pkgver/$_pkgbasename-$pkgver.tar.gz)
-sha512sums=('c7fe5cc77e38fad33af3f10e6db961c8edf033a86c09541121f49bfa20547179760924e6d3e397f0add7030459ff3babadd3457ab2da4a40a2147dc1574aa444')
+validpgpkeys=('7D6293CC6378786E1B5C496885C7044E033FDE16')
+source=(https://sourceforge.net/projects/$_pkgbasename/files/$pkgver/$_pkgbasename-$pkgver.tar.gz{,.sig})
+sha512sums=('c7fe5cc77e38fad33af3f10e6db961c8edf033a86c09541121f49bfa20547179760924e6d3e397f0add7030459ff3babadd3457ab2da4a40a2147dc1574aa444'
+'SKIP')
 
 build() {
   cd "$_pkgbasename-$pkgver"
@@ -26,7 +28,13 @@
   export CXX="g++ -m32"
   export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
 
-  ./configure --prefix=/usr --with-jpeg8 --mandir=/usr/share/man 
--libdir=/usr/lib32 --without-simd
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--libdir=/usr/lib32 \
+--with-jpeg8 \
+--without-simd \
+--with-build-date="$(date --utc --date="@${SOURCE_DATE_EPOCH:-$(date 
+%s)}" +%Y%m%d)" \
 
   make
 }
@@ -34,7 +42,7 @@
 check() {
   cd "$_pkgbasename-$pkgver"
   make test
-  }
+}
 
 package() {
   cd "$_pkgbasename-$pkgver"
@@ -46,4 +54,5 @@
 
   mkdir -p "$pkgdir/usr/share/licenses"
   ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm 644 ChangeLog.md -t"${pkgdir}/usr/share/doc/${pkgname}"
 }


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

2017-11-24 Thread Levente Polyak
Date: Friday, November 24, 2017 @ 20:14:02
  Author: anthraxx
Revision: 310831

archrelease: copy trunk to extra-x86_64

Added:
  libjpeg-turbo/repos/extra-x86_64/PKGBUILD
(from rev 310830, libjpeg-turbo/trunk/PKGBUILD)
Deleted:
  libjpeg-turbo/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-24 20:13:47 UTC (rev 310830)
+++ PKGBUILD2017-11-24 20:14:02 UTC (rev 310831)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Allan McRae 
-# Contributor: Simone Sclavi 'Ito' 
-
-pkgname=libjpeg-turbo
-pkgver=1.5.2
-pkgrel=1
-pkgdesc='JPEG image codec with accelerated baseline compression and 
decompression'
-url='http://libjpeg-turbo.virtualgl.org/'
-arch=('i686' 'x86_64')
-license=('custom')
-makedepends=('nasm' 'jdk8-openjdk')
-validpgpkeys=('7D6293CC6378786E1B5C496885C7044E033FDE16')
-source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
-sha256sums=('9098943b270388727ae61de82adec73cf9f0dbb240b3bc8b172595ebf405b528'
-'SKIP')
-
-provides=('libjpeg=8.1.2' 'turbojpeg')
-conflicts=('libjpeg' 'turbojpeg')
-replaces=('libjpeg' 'turbojpeg')
-
-options=('!makeflags')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed 's/Szathmáry/Szathmary/g' -i java/org/libjpegturbo/turbojpeg/*.java
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export JNI_CFLAGS='-I/usr/lib/jvm/default/include 
-I/usr/lib/jvm/default/include/linux'
-   ./configure \
-   --prefix=/usr \
-   --mandir=/usr/share/man \
-   --with-jpeg8 \
-   --with-java \
-
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make test
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make \
-   DESTDIR="${pkgdir}" \
-   docdir="/usr/share/doc/${pkgname}" \
-   exampledir="/usr/share/doc/${pkgname}" \
-   install
-   
-   install -m644 jpegint.h "${pkgdir}/usr/include" # required by other 
software
-
-   install -d "${pkgdir}/usr/share/licenses/libjpeg-turbo"
-   ln -s ../../doc/libjpeg-turbo/README.md 
"${pkgdir}"/usr/share/licenses/libjpeg-turbo
-}

Copied: libjpeg-turbo/repos/extra-x86_64/PKGBUILD (from rev 310830, 
libjpeg-turbo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-24 20:14:02 UTC (rev 310831)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Allan McRae 
+# Contributor: Simone Sclavi 'Ito' 
+
+pkgname=libjpeg-turbo
+pkgver=1.5.2
+pkgrel=2
+pkgdesc='JPEG image codec with accelerated baseline compression and 
decompression'
+url='https://libjpeg-turbo.org/'
+arch=('x86_64')
+license=('custom')
+makedepends=('nasm' 'jdk8-openjdk')
+validpgpkeys=('7D6293CC6378786E1B5C496885C7044E033FDE16')
+source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+sha256sums=('9098943b270388727ae61de82adec73cf9f0dbb240b3bc8b172595ebf405b528'
+'SKIP')
+
+provides=('libjpeg=8.1.2' 'turbojpeg')
+conflicts=('libjpeg' 'turbojpeg')
+replaces=('libjpeg' 'turbojpeg')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/Szathmáry/Szathmary/g' -i java/org/libjpegturbo/turbojpeg/*.java
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export JNI_CFLAGS='-I/usr/lib/jvm/default/include 
-I/usr/lib/jvm/default/include/linux'
+   ./configure \
+   --prefix=/usr \
+   --mandir=/usr/share/man \
+   --with-jpeg8 \
+   --with-java \
+   --with-build-date="$(date --utc 
--date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y%m%d)" \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make test
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make \
+   DESTDIR="${pkgdir}" \
+   docdir="/usr/share/doc/${pkgname}" \
+   exampledir="/usr/share/doc/${pkgname}" \
+   install
+
+   install -Dm 644 jpegint.h "${pkgdir}/usr/include" # required by other 
software
+   install -d "${pkgdir}/usr/share/licenses/libjpeg-turbo"
+   ln -s ../../doc/libjpeg-turbo/LICENSE.md 
"${pkgdir}"/usr/share/licenses/libjpeg-turbo
+   install -Dm 644 ChangeLog.md -t"${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2017-11-24 Thread Levente Polyak
Date: Friday, November 24, 2017 @ 20:13:47
  Author: anthraxx
Revision: 310830

upgpkg: libjpeg-turbo 1.5.2-2 (reproducible builds)

setting build-date for reproducible builds

Modified:
  libjpeg-turbo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 19:52:41 UTC (rev 310829)
+++ PKGBUILD2017-11-24 20:13:47 UTC (rev 310830)
@@ -5,14 +5,14 @@
 
 pkgname=libjpeg-turbo
 pkgver=1.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc='JPEG image codec with accelerated baseline compression and 
decompression'
-url='http://libjpeg-turbo.virtualgl.org/'
+url='https://libjpeg-turbo.org/'
 arch=('x86_64')
 license=('custom')
 makedepends=('nasm' 'jdk8-openjdk')
 validpgpkeys=('7D6293CC6378786E1B5C496885C7044E033FDE16')
-source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
 sha256sums=('9098943b270388727ae61de82adec73cf9f0dbb240b3bc8b172595ebf405b528'
 'SKIP')
 
@@ -20,8 +20,6 @@
 conflicts=('libjpeg' 'turbojpeg')
 replaces=('libjpeg' 'turbojpeg')
 
-options=('!makeflags')
-
 prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
sed 's/Szathmáry/Szathmary/g' -i java/org/libjpegturbo/turbojpeg/*.java
@@ -35,6 +33,7 @@
--mandir=/usr/share/man \
--with-jpeg8 \
--with-java \
+   --with-build-date="$(date --utc 
--date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y%m%d)" \
 
make
 }
@@ -51,9 +50,9 @@
docdir="/usr/share/doc/${pkgname}" \
exampledir="/usr/share/doc/${pkgname}" \
install
-   
-   install -m644 jpegint.h "${pkgdir}/usr/include" # required by other 
software
 
+   install -Dm 644 jpegint.h "${pkgdir}/usr/include" # required by other 
software
install -d "${pkgdir}/usr/share/licenses/libjpeg-turbo"
-   ln -s ../../doc/libjpeg-turbo/README.md 
"${pkgdir}"/usr/share/licenses/libjpeg-turbo
+   ln -s ../../doc/libjpeg-turbo/LICENSE.md 
"${pkgdir}"/usr/share/licenses/libjpeg-turbo
+   install -Dm 644 ChangeLog.md -t"${pkgdir}/usr/share/doc/${pkgname}"
 }


[arch-commits] Commit in samba/repos (49 files)

2017-11-24 Thread Tobias Powalowski
Date: Friday, November 24, 2017 @ 19:52:41
  Author: tpowa
Revision: 310829

archrelease: copy trunk to extra-x86_64

Added:
  samba/repos/extra-i686/
  samba/repos/extra-i686/PKGBUILD
(from rev 308900, samba/repos/extra-i686/PKGBUILD)
  samba/repos/extra-i686/nmbd.service
(from rev 308900, samba/repos/extra-i686/nmbd.service)
  samba/repos/extra-i686/samba.conf
(from rev 308900, samba/repos/extra-i686/samba.conf)
  samba/repos/extra-i686/samba.conf.d
(from rev 308900, samba/repos/extra-i686/samba.conf.d)
  samba/repos/extra-i686/samba.install
(from rev 308900, samba/repos/extra-i686/samba.install)
  samba/repos/extra-i686/samba.logrotate
(from rev 308900, samba/repos/extra-i686/samba.logrotate)
  samba/repos/extra-i686/samba.pam
(from rev 308900, samba/repos/extra-i686/samba.pam)
  samba/repos/extra-i686/samba.service
(from rev 308900, samba/repos/extra-i686/samba.service)
  samba/repos/extra-i686/smbd.service
(from rev 308900, samba/repos/extra-i686/smbd.service)
  samba/repos/extra-i686/smbd.socket
(from rev 308900, samba/repos/extra-i686/smbd.socket)
  samba/repos/extra-i686/smbd@.service
(from rev 308900, samba/repos/extra-i686/smbd@.service)
  samba/repos/extra-i686/winbindd.service
(from rev 308900, samba/repos/extra-i686/winbindd.service)
  samba/repos/extra-x86_64/PKGBUILD
(from rev 310828, samba/trunk/PKGBUILD)
  samba/repos/extra-x86_64/nmbd.service
(from rev 310828, samba/trunk/nmbd.service)
  samba/repos/extra-x86_64/samba.conf
(from rev 310828, samba/trunk/samba.conf)
  samba/repos/extra-x86_64/samba.conf.d
(from rev 310828, samba/trunk/samba.conf.d)
  samba/repos/extra-x86_64/samba.install
(from rev 310828, samba/trunk/samba.install)
  samba/repos/extra-x86_64/samba.logrotate
(from rev 310828, samba/trunk/samba.logrotate)
  samba/repos/extra-x86_64/samba.pam
(from rev 310828, samba/trunk/samba.pam)
  samba/repos/extra-x86_64/samba.service
(from rev 310828, samba/trunk/samba.service)
  samba/repos/extra-x86_64/smbd.service
(from rev 310828, samba/trunk/smbd.service)
  samba/repos/extra-x86_64/smbd.socket
(from rev 310828, samba/trunk/smbd.socket)
  samba/repos/extra-x86_64/smbd@.service
(from rev 310828, samba/trunk/smbd@.service)
  samba/repos/extra-x86_64/winbindd.service
(from rev 310828, samba/trunk/winbindd.service)
Deleted:
  samba/repos/extra-i686/PKGBUILD
  samba/repos/extra-i686/nmbd.service
  samba/repos/extra-i686/samba.conf
  samba/repos/extra-i686/samba.conf.d
  samba/repos/extra-i686/samba.install
  samba/repos/extra-i686/samba.logrotate
  samba/repos/extra-i686/samba.pam
  samba/repos/extra-i686/samba.service
  samba/repos/extra-i686/smbd.service
  samba/repos/extra-i686/smbd.socket
  samba/repos/extra-i686/smbd@.service
  samba/repos/extra-i686/winbindd.service
  samba/repos/extra-x86_64/PKGBUILD
  samba/repos/extra-x86_64/nmbd.service
  samba/repos/extra-x86_64/samba.conf
  samba/repos/extra-x86_64/samba.conf.d
  samba/repos/extra-x86_64/samba.install
  samba/repos/extra-x86_64/samba.logrotate
  samba/repos/extra-x86_64/samba.pam
  samba/repos/extra-x86_64/samba.service
  samba/repos/extra-x86_64/smbd.service
  samba/repos/extra-x86_64/smbd.socket
  samba/repos/extra-x86_64/smbd@.service
  samba/repos/extra-x86_64/winbindd.service

---+
 /PKGBUILD |  506 
 /nmbd.service |   24 +
 /samba.conf   |4 
 /samba.conf.d |   36 ++
 /samba.install|   20 +
 /samba.logrotate  |   18 +
 /samba.pam|6 
 /samba.service|   28 ++
 /smbd.service |   24 +
 /smbd.socket  |   18 +
 /smbd@.service|   14 +
 /winbindd.service |   24 +
 extra-i686/PKGBUILD   |  253 
 extra-i686/nmbd.service   |   12 
 extra-i686/samba.conf |2 
 extra-i686/samba.conf.d   |   18 -
 extra-i686/samba.install  |   10 
 extra-i686/samba.logrotate|9 
 extra-i686/samba.pam  |3 
 extra-i686/samba.service  |   14 -
 extra-i686/smbd.service   |   12 
 extra-i686/smbd.socket|9 
 extra-i686/smbd@.service  |7 
 extra-i686/winbindd.service   |   12 
 extra-x86_64/PKGBUILD |  253 
 extra-x86_64/nmbd.service |   12 
 extra-x86_64/samba.conf   |2 
 extra-x86_64/samba.conf.d |   18 -
 extra-x86_64/samba.install|   10 
 extra-x86_64/samba.logrotate  |9 
 extra-x86_64/samba.pam|3 
 extra-x86_64/samba.service|   14 -
 extra-x86_64/smbd.service |   12 
 extra-x86_64/smbd.socket  |9 
 extra-x86_64/smbd@.service|7 
 extra-x86_64/winbindd.service |   12 
 36 files changed, 722 insertions(+), 722 deletions(-)

Deleted: extra-i686/PKGBUILD

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

2017-11-24 Thread Tobias Powalowski
Date: Friday, November 24, 2017 @ 19:52:12
  Author: tpowa
Revision: 310828

upgpkg: samba 4.7.3-1

bump to latest version

Modified:
  samba/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 19:35:29 UTC (rev 310827)
+++ PKGBUILD2017-11-24 19:52:12 UTC (rev 310828)
@@ -10,7 +10,7 @@
 
 pkgbase=samba
 pkgname=('libwbclient' 'smbclient' 'samba')
-pkgver=4.7.1
+pkgver=4.7.3
 pkgrel=1
 arch=(x86_64)
 url="http://www.samba.org;
@@ -239,7 +239,7 @@
   # copy ldap example
   install -D -m644 ${srcdir}/samba-${pkgver}/examples/LDAP/samba.schema 
${pkgdir}/usr/share/doc/samba/examples/LDAP/samba.schema
 }
-md5sums=('b351ab3bddb767a3930d9e186139f95f'
+md5sums=('5da8a195094c44a60eb7eb7cf96d6a49'
  'SKIP'
  '5697da77590ec092cc8a883bae06093c'
  '96f82c38f3f540b53f3e5144900acf17'


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

2017-11-24 Thread Tobias Powalowski
Date: Friday, November 24, 2017 @ 19:35:29
  Author: tpowa
Revision: 310827

archrelease: copy trunk to extra-x86_64

Added:
  ldb/repos/extra-x86_64/PKGBUILD
(from rev 310826, ldb/trunk/PKGBUILD)
Deleted:
  ldb/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-24 19:33:46 UTC (rev 310826)
+++ PKGBUILD2017-11-24 19:35:29 UTC (rev 310827)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-# Contributor: Christian Hesse 
-# Contributor: Marco A Rojas 
-
-pkgname=ldb
-pkgver=1.3.0
-pkgrel=1
-pkgdesc="A schema-less, ldap like, API and database"
-arch=('x86_64')
-url="http://ldb.samba.org/;
-source=(http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz
-http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.asc)
-license=('GPL3')
-depends=('talloc' 'tevent' 'tdb' 'popt')
-makedepends=('python2' 'cmocka')
-optdepends=('python2: for python bindings')
-validpgpkeys=('9147A339719518EE9011BCB54793916113084025') # Samba Library 
Distribution Key  
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   # change to use python2
-   sed -i -e "s|/usr/bin/env python$|/usr/bin/env python2|" 
buildtools/bin/waf
-   export PYTHON=/usr/bin/python2
-
-   ./configure --prefix=/usr \
-   --disable-rpath \
-   --disable-rpath-install \
-   --bundled-libraries=NONE \
-   --builtin-libraries=replace \
---with-modulesdir=/usr/lib/ldb/modules \
---with-privatelibdir=/usr/lib/ldb
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   make DESTDIR=${pkgdir}/ install
-}
-md5sums=('819c148bd85f9195a66004a0709c3aca'
- 'SKIP')

Copied: ldb/repos/extra-x86_64/PKGBUILD (from rev 310826, ldb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-24 19:35:29 UTC (rev 310827)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Christian Hesse 
+# Contributor: Marco A Rojas 
+
+pkgname=ldb
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="A schema-less, ldap like, API and database"
+arch=('x86_64')
+url="http://ldb.samba.org/;
+source=(http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz
+http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.asc)
+license=('GPL3')
+depends=('talloc' 'tevent' 'tdb' 'popt')
+makedepends=('python2' 'cmocka')
+optdepends=('python2: for python bindings')
+validpgpkeys=('9147A339719518EE9011BCB54793916113084025') # Samba Library 
Distribution Key  
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   # change to use python2
+   sed -i -e "s|/usr/bin/env python$|/usr/bin/env python2|" 
buildtools/bin/waf
+   export PYTHON=/usr/bin/python2
+
+   ./configure --prefix=/usr \
+   --disable-rpath \
+   --disable-rpath-install \
+   --bundled-libraries=NONE \
+   --builtin-libraries=replace \
+--with-modulesdir=/usr/lib/ldb/modules \
+--with-privatelibdir=/usr/lib/ldb
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir}/ install
+}
+md5sums=('819c148bd85f9195a66004a0709c3aca'
+ 'SKIP')


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

2017-11-24 Thread Tobias Powalowski
Date: Friday, November 24, 2017 @ 19:33:46
  Author: tpowa
Revision: 310826

archrelease: copy trunk to extra-x86_64

Added:
  ldb/repos/extra-x86_64/PKGBUILD
(from rev 310825, ldb/trunk/PKGBUILD)
Deleted:
  ldb/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-24 19:33:30 UTC (rev 310825)
+++ PKGBUILD2017-11-24 19:33:46 UTC (rev 310826)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-# Contributor: Christian Hesse 
-# Contributor: Marco A Rojas 
-
-pkgname=ldb
-pkgver=1.2.2
-pkgrel=1
-pkgdesc="A schema-less, ldap like, API and database"
-arch=('i686' 'x86_64')
-url="http://ldb.samba.org/;
-source=(http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz
-http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.asc)
-license=('GPL3')
-depends=('talloc' 'tevent' 'tdb' 'popt')
-makedepends=('python2' 'cmocka')
-optdepends=('python2: for python bindings')
-validpgpkeys=('9147A339719518EE9011BCB54793916113084025') # Samba Library 
Distribution Key  
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   # change to use python2
-   sed -i -e "s|/usr/bin/env python$|/usr/bin/env python2|" 
buildtools/bin/waf
-   export PYTHON=/usr/bin/python2
-
-   ./configure --prefix=/usr \
-   --disable-rpath \
-   --disable-rpath-install \
-   --bundled-libraries=NONE \
-   --builtin-libraries=replace \
---with-modulesdir=/usr/lib/ldb/modules \
---with-privatelibdir=/usr/lib/ldb
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   make DESTDIR=${pkgdir}/ install
-}
-md5sums=('91284a12423def99a6592e393e3b7fbb'
- 'SKIP')

Copied: ldb/repos/extra-x86_64/PKGBUILD (from rev 310825, ldb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-24 19:33:46 UTC (rev 310826)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Christian Hesse 
+# Contributor: Marco A Rojas 
+
+pkgname=ldb
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="A schema-less, ldap like, API and database"
+arch=('x86_64')
+url="http://ldb.samba.org/;
+source=(http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz
+http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.asc)
+license=('GPL3')
+depends=('talloc' 'tevent' 'tdb' 'popt')
+makedepends=('python2' 'cmocka')
+optdepends=('python2: for python bindings')
+validpgpkeys=('9147A339719518EE9011BCB54793916113084025') # Samba Library 
Distribution Key  
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   # change to use python2
+   sed -i -e "s|/usr/bin/env python$|/usr/bin/env python2|" 
buildtools/bin/waf
+   export PYTHON=/usr/bin/python2
+
+   ./configure --prefix=/usr \
+   --disable-rpath \
+   --disable-rpath-install \
+   --bundled-libraries=NONE \
+   --builtin-libraries=replace \
+--with-modulesdir=/usr/lib/ldb/modules \
+--with-privatelibdir=/usr/lib/ldb
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir}/ install
+}
+md5sums=('819c148bd85f9195a66004a0709c3aca'
+ 'SKIP')


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

2017-11-24 Thread Tobias Powalowski
Date: Friday, November 24, 2017 @ 19:33:30
  Author: tpowa
Revision: 310825

upgpkg: ldb 1.3.0-1

bump to latest version

Modified:
  ldb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-24 19:31:30 UTC (rev 310824)
+++ PKGBUILD2017-11-24 19:33:30 UTC (rev 310825)
@@ -4,7 +4,7 @@
 # Contributor: Marco A Rojas 
 
 pkgname=ldb
-pkgver=1.2.2
+pkgver=1.3.0
 pkgrel=1
 pkgdesc="A schema-less, ldap like, API and database"
 arch=('x86_64')
@@ -39,5 +39,5 @@
 
make DESTDIR=${pkgdir}/ install
 }
-md5sums=('91284a12423def99a6592e393e3b7fbb'
+md5sums=('819c148bd85f9195a66004a0709c3aca'
  'SKIP')


  1   2   3   >