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

2019-02-10 Thread Evangelos Foutras via arch-commits
Date: Monday, February 11, 2019 @ 05:33:29
  Author: foutrelis
Revision: 345876

archrelease: copy trunk to testing-x86_64

Added:
  curl/repos/testing-x86_64/PKGBUILD
(from rev 345875, curl/trunk/PKGBUILD)
Deleted:
  curl/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-11 05:33:25 UTC (rev 345875)
+++ PKGBUILD2019-02-11 05:33:29 UTC (rev 345876)
@@ -1,50 +0,0 @@
-# Maintainer: Dave Reisner 
-# Contributor: Angel Velasquez 
-# Contributor: Eric Belanger 
-# Contributor: Lucien Immink 
-# Contributor: Daniel J Griffiths 
-
-pkgname=curl
-pkgver=7.64.0
-pkgrel=2
-pkgdesc="An URL retrieval utility and library"
-arch=('x86_64')
-url="https://curl.haxx.se;
-license=('MIT')
-depends=('ca-certificates' 'krb5' 'libssh2' 'openssl' 'zlib' 'libpsl' 
'libnghttp2')
-provides=('libcurl.so')
-options=('strip' 'debug')
-source=("https://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc})
-sha512sums=('ea0e68f9cbf2eb4f235d8506962dcc7709f769ef3526c0e4c130fdaf7186a1a13b303c6ce919cb9125bbf7c64ddf4f8efb3d9269b906f856e6d7b3def027fb81'
-'SKIP')
-validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure \
-  --prefix=/usr \
-  --mandir=/usr/share/man \
-  --disable-ldap \
-  --disable-ldaps \
-  --disable-manual \
-  --enable-ipv6 \
-  --enable-versioned-symbols \
-  --enable-threaded-resolver \
-  --with-gssapi \
-  --with-libssh2 \
-  --with-random=/dev/urandom \
-  --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
-
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  make DESTDIR="$pkgdir" install -C scripts
-
-  # license
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: curl/repos/testing-x86_64/PKGBUILD (from rev 345875, 
curl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-11 05:33:29 UTC (rev 345876)
@@ -0,0 +1,51 @@
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez 
+# Contributor: Eric Belanger 
+# Contributor: Lucien Immink 
+# Contributor: Daniel J Griffiths 
+
+pkgname=curl
+pkgver=7.64.0
+pkgrel=3
+pkgdesc="An URL retrieval utility and library"
+arch=('x86_64')
+url="https://curl.haxx.se;
+license=('MIT')
+depends=('ca-certificates' 'krb5' 'libssh2' 'openssl' 'zlib' 'libpsl' 
'libnghttp2'
+ 'libidn2' 'libidn2.so')
+provides=('libcurl.so')
+options=('strip' 'debug')
+source=("https://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc})
+sha512sums=('ea0e68f9cbf2eb4f235d8506962dcc7709f769ef3526c0e4c130fdaf7186a1a13b303c6ce919cb9125bbf7c64ddf4f8efb3d9269b906f856e6d7b3def027fb81'
+'SKIP')
+validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --disable-ldap \
+  --disable-ldaps \
+  --disable-manual \
+  --enable-ipv6 \
+  --enable-versioned-symbols \
+  --enable-threaded-resolver \
+  --with-gssapi \
+  --with-libssh2 \
+  --with-random=/dev/urandom \
+  --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  make DESTDIR="$pkgdir" install -C scripts
+
+  # license
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}


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

2019-02-10 Thread Evangelos Foutras via arch-commits
Date: Monday, February 11, 2019 @ 05:33:25
  Author: foutrelis
Revision: 345875

upgpkg: curl 7.64.0-3

- Add libidn2.so sodep to help prevent partial upgrades breaking pacman.
- Explicitly depend on libidn2.

Modified:
  curl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-11 05:31:33 UTC (rev 345874)
+++ PKGBUILD2019-02-11 05:33:25 UTC (rev 345875)
@@ -6,12 +6,13 @@
 
 pkgname=curl
 pkgver=7.64.0
-pkgrel=2
+pkgrel=3
 pkgdesc="An URL retrieval utility and library"
 arch=('x86_64')
 url="https://curl.haxx.se;
 license=('MIT')
-depends=('ca-certificates' 'krb5' 'libssh2' 'openssl' 'zlib' 'libpsl' 
'libnghttp2')
+depends=('ca-certificates' 'krb5' 'libssh2' 'openssl' 'zlib' 'libpsl' 
'libnghttp2'
+ 'libidn2' 'libidn2.so')
 provides=('libcurl.so')
 options=('strip' 'debug')
 source=("https://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc})


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

2019-02-10 Thread Evangelos Foutras via arch-commits
Date: Monday, February 11, 2019 @ 05:31:28
  Author: foutrelis
Revision: 345873

upgpkg: gnutls 3.6.6-3

Add libidn2.so sodep to help prevent partial upgrades breaking pacman.

Modified:
  gnutls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-11 05:25:13 UTC (rev 345872)
+++ PKGBUILD2019-02-11 05:31:28 UTC (rev 345873)
@@ -3,13 +3,14 @@
 
 pkgname=gnutls
 pkgver=3.6.6
-pkgrel=2
+pkgrel=3
 pkgdesc="A library which provides a secure layer over a reliable transport 
layer"
 arch=('x86_64')
 license=('GPL3' 'LGPL2.1')
 url="https://www.gnutls.org/;
 options=('!zipman')
-depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit' 'libidn2' 
'libunistring')
+depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit' 'libidn2'
+ 'libidn2.so' 'libunistring')
 checkdepends=('net-tools')
 
source=(https://www.gnupg.org/ftp/gcrypt/gnutls/v3.6/${pkgname}-${pkgver}.tar.xz{,.sig})
 sha256sums=('bb9acab8af2ac430edf45f4ed2c51f86e57cb57689be6701aceef4732ca7'


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

2019-02-10 Thread Evangelos Foutras via arch-commits
Date: Monday, February 11, 2019 @ 05:31:33
  Author: foutrelis
Revision: 345874

archrelease: copy trunk to testing-x86_64

Added:
  gnutls/repos/testing-x86_64/PKGBUILD
(from rev 345873, gnutls/trunk/PKGBUILD)
Deleted:
  gnutls/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-11 05:31:28 UTC (rev 345873)
+++ PKGBUILD2019-02-11 05:31:33 UTC (rev 345874)
@@ -1,47 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Andreas Radke 
-
-pkgname=gnutls
-pkgver=3.6.6
-pkgrel=2
-pkgdesc="A library which provides a secure layer over a reliable transport 
layer"
-arch=('x86_64')
-license=('GPL3' 'LGPL2.1')
-url="https://www.gnutls.org/;
-options=('!zipman')
-depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit' 'libidn2' 
'libunistring')
-checkdepends=('net-tools')
-source=(https://www.gnupg.org/ftp/gcrypt/gnutls/v3.6/${pkgname}-${pkgver}.tar.xz{,.sig})
-sha256sums=('bb9acab8af2ac430edf45f4ed2c51f86e57cb57689be6701aceef4732ca7'
-'SKIP')
-validpgpkeys=('0424D4EE81A0E3D119C6F835EDA21E94B565716F'
-  '1F42418905D8206AA754CCDC29EE58B996865171')
-   # "Simon Josefsson "
-   # "Nikos Mavrogiannopoulos 
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-   --with-zlib \
-   --disable-static \
-   --with-idn \
-   --disable-guile \
-   
--with-default-trust-store-pkcs11="pkcs11:model=p11-kit-trust;manufacturer=PKCS%2311%20Kit"
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  # lots of .png files are put into infodir and are gzipped by makepkg! this 
needs to be fixed by using !zipman
-  # gzip -9 all files in infodir and manpages manually
-  find "$pkgdir/usr/share/info" -name '*.info*' -exec gzip -9 {} \;
-  find "$pkgdir/usr/share/man" -exec gzip -9 {} \;
-}

Copied: gnutls/repos/testing-x86_64/PKGBUILD (from rev 345873, 
gnutls/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-11 05:31:33 UTC (rev 345874)
@@ -0,0 +1,48 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Andreas Radke 
+
+pkgname=gnutls
+pkgver=3.6.6
+pkgrel=3
+pkgdesc="A library which provides a secure layer over a reliable transport 
layer"
+arch=('x86_64')
+license=('GPL3' 'LGPL2.1')
+url="https://www.gnutls.org/;
+options=('!zipman')
+depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit' 'libidn2'
+ 'libidn2.so' 'libunistring')
+checkdepends=('net-tools')
+source=(https://www.gnupg.org/ftp/gcrypt/gnutls/v3.6/${pkgname}-${pkgver}.tar.xz{,.sig})
+sha256sums=('bb9acab8af2ac430edf45f4ed2c51f86e57cb57689be6701aceef4732ca7'
+'SKIP')
+validpgpkeys=('0424D4EE81A0E3D119C6F835EDA21E94B565716F'
+  '1F42418905D8206AA754CCDC29EE58B996865171')
+   # "Simon Josefsson "
+   # "Nikos Mavrogiannopoulos 
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+   --with-zlib \
+   --disable-static \
+   --with-idn \
+   --disable-guile \
+   
--with-default-trust-store-pkcs11="pkcs11:model=p11-kit-trust;manufacturer=PKCS%2311%20Kit"
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # lots of .png files are put into infodir and are gzipped by makepkg! this 
needs to be fixed by using !zipman
+  # gzip -9 all files in infodir and manpages manually
+  find "$pkgdir/usr/share/info" -name '*.info*' -exec gzip -9 {} \;
+  find "$pkgdir/usr/share/man" -exec gzip -9 {} \;
+}


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

2019-02-10 Thread Evangelos Foutras via arch-commits
Date: Monday, February 11, 2019 @ 05:25:08
  Author: foutrelis
Revision: 345871

upgpkg: libpsl 0.20.2-5

Add libidn2.so sodep to help prevent partial upgrades breaking pacman.

Modified:
  libpsl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-11 05:15:32 UTC (rev 345870)
+++ PKGBUILD2019-02-11 05:25:08 UTC (rev 345871)
@@ -3,12 +3,12 @@
 
 pkgname=libpsl
 pkgver=0.20.2
-pkgrel=4
+pkgrel=5
 pkgdesc='Public Suffix List library'
 url='https://github.com/rockdaboot/libpsl'
 arch=('x86_64')
 license=('MIT')
-depends=('libidn2' 'libunistring')
+depends=('libidn2' 'libidn2.so' 'libunistring')
 makedepends=('libxslt' 'python' 'publicsuffix-list' 'gtk-doc')
 provides=('libpsl.so')
 
source=(https://github.com/rockdaboot/libpsl/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz)


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

2019-02-10 Thread Evangelos Foutras via arch-commits
Date: Monday, February 11, 2019 @ 05:25:13
  Author: foutrelis
Revision: 345872

archrelease: copy trunk to testing-x86_64

Added:
  libpsl/repos/testing-x86_64/PKGBUILD
(from rev 345871, libpsl/trunk/PKGBUILD)
Deleted:
  libpsl/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-11 05:25:08 UTC (rev 345871)
+++ PKGBUILD2019-02-11 05:25:13 UTC (rev 345872)
@@ -1,48 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Darshit Shah 
-
-pkgname=libpsl
-pkgver=0.20.2
-pkgrel=4
-pkgdesc='Public Suffix List library'
-url='https://github.com/rockdaboot/libpsl'
-arch=('x86_64')
-license=('MIT')
-depends=('libidn2' 'libunistring')
-makedepends=('libxslt' 'python' 'publicsuffix-list' 'gtk-doc')
-provides=('libpsl.so')
-source=(https://github.com/rockdaboot/libpsl/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('fa9f6f7f0447d9fe00f5dfca5262c56ff26217eea44d0f7fc1e5d982224c41874e753f0aa06dd9e5d7d03d4f04e3dacd4f36034cc8dd0fc6e2c28b49a23e62fe')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  rm -frv list
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure \
---prefix=/usr \
---disable-static \
---disable-dependency-tracking \
---enable-man \
---enable-gtk-doc \
---enable-{builtin,runtime}=libidn2 \
---with-psl-file=/usr/share/publicsuffix/effective_tld_names.dat \
---with-psl-testfile=/usr/share/publicsuffix/test_psl.txt
-  LC_CTYPE=en_US.UTF-8 make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: libpsl/repos/testing-x86_64/PKGBUILD (from rev 345871, 
libpsl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-11 05:25:13 UTC (rev 345872)
@@ -0,0 +1,48 @@
+# Maintainer: Levente Polyak 
+# Contributor: Darshit Shah 
+
+pkgname=libpsl
+pkgver=0.20.2
+pkgrel=5
+pkgdesc='Public Suffix List library'
+url='https://github.com/rockdaboot/libpsl'
+arch=('x86_64')
+license=('MIT')
+depends=('libidn2' 'libidn2.so' 'libunistring')
+makedepends=('libxslt' 'python' 'publicsuffix-list' 'gtk-doc')
+provides=('libpsl.so')
+source=(https://github.com/rockdaboot/libpsl/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('fa9f6f7f0447d9fe00f5dfca5262c56ff26217eea44d0f7fc1e5d982224c41874e753f0aa06dd9e5d7d03d4f04e3dacd4f36034cc8dd0fc6e2c28b49a23e62fe')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  rm -frv list
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--disable-static \
+--disable-dependency-tracking \
+--enable-man \
+--enable-gtk-doc \
+--enable-{builtin,runtime}=libidn2 \
+--with-psl-file=/usr/share/publicsuffix/effective_tld_names.dat \
+--with-psl-testfile=/usr/share/publicsuffix/test_psl.txt
+  LC_CTYPE=en_US.UTF-8 make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-10 Thread Evangelos Foutras via arch-commits
Date: Monday, February 11, 2019 @ 05:15:27
  Author: foutrelis
Revision: 345869

upgpkg: libidn2 2.1.1-2

Add libidn2.so provision to help prevent partial upgrades breaking pacman.

Modified:
  libidn2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-11 04:25:36 UTC (rev 345868)
+++ PKGBUILD2019-02-11 05:15:27 UTC (rev 345869)
@@ -3,7 +3,7 @@
 
 pkgname=libidn2
 pkgver=2.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Free software implementation of IDNA2008, Punycode and TR46"
 arch=('x86_64')
 url="https://www.gnu.org/software/libidn/#libidn2;
@@ -10,6 +10,7 @@
 license=('GPL2' 'LGPL3')
 depends=('libunistring')
 makedepends=('ruby-ronn')
+provides=('libidn2.so')
 source=(https://ftp.gnu.org/gnu/libidn/$pkgname-$pkgver.tar.gz{,.sig})
 sha256sums=('95416080329298a13269e13175041b530cec3d98b54cafae9424b8dfd22078b1'
 'SKIP')


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

2019-02-10 Thread Evangelos Foutras via arch-commits
Date: Monday, February 11, 2019 @ 05:15:32
  Author: foutrelis
Revision: 345870

archrelease: copy trunk to testing-x86_64

Added:
  libidn2/repos/testing-x86_64/PKGBUILD
(from rev 345869, libidn2/trunk/PKGBUILD)
Deleted:
  libidn2/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-11 05:15:27 UTC (rev 345869)
+++ PKGBUILD2019-02-11 05:15:32 UTC (rev 345870)
@@ -1,40 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Daurnimator 
-
-pkgname=libidn2
-pkgver=2.1.1
-pkgrel=1
-pkgdesc="Free software implementation of IDNA2008, Punycode and TR46"
-arch=('x86_64')
-url="https://www.gnu.org/software/libidn/#libidn2;
-license=('GPL2' 'LGPL3')
-depends=('libunistring')
-makedepends=('ruby-ronn')
-source=(https://ftp.gnu.org/gnu/libidn/$pkgname-$pkgver.tar.gz{,.sig})
-sha256sums=('95416080329298a13269e13175041b530cec3d98b54cafae9424b8dfd22078b1'
-'SKIP')
-validpgpkeys=('1CB27DBC98614B2D5841646D08302DB6A2670428')
-
-prepare() {
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libidn2/repos/testing-x86_64/PKGBUILD (from rev 345869, 
libidn2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-11 05:15:32 UTC (rev 345870)
@@ -0,0 +1,41 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Daurnimator 
+
+pkgname=libidn2
+pkgver=2.1.1
+pkgrel=2
+pkgdesc="Free software implementation of IDNA2008, Punycode and TR46"
+arch=('x86_64')
+url="https://www.gnu.org/software/libidn/#libidn2;
+license=('GPL2' 'LGPL3')
+depends=('libunistring')
+makedepends=('ruby-ronn')
+provides=('libidn2.so')
+source=(https://ftp.gnu.org/gnu/libidn/$pkgname-$pkgver.tar.gz{,.sig})
+sha256sums=('95416080329298a13269e13175041b530cec3d98b54cafae9424b8dfd22078b1'
+'SKIP')
+validpgpkeys=('1CB27DBC98614B2D5841646D08302DB6A2670428')
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-02-10 Thread Sébastien Luttringer via arch-commits
Date: Monday, February 11, 2019 @ 02:17:22
  Author: seblu
Revision: 431702

archrelease: copy trunk to community-x86_64

Added:
  keepalived/repos/community-x86_64/PKGBUILD
(from rev 431701, keepalived/trunk/PKGBUILD)
Deleted:
  keepalived/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-11 02:17:15 UTC (rev 431701)
+++ PKGBUILD2019-02-11 02:17:22 UTC (rev 431702)
@@ -1,44 +0,0 @@
-# Maintainer: Sébastien Luttringer
-# Contributor: Andrea Zucchelli 
-
-pkgname=keepalived
-pkgver=2.0.11
-pkgrel=1
-pkgdesc='Failover and monitoring daemon for LVS clusters'
-arch=('x86_64')
-url='http://www.keepalived.org/'
-license=('GPL2')
-backup=('etc/keepalived/keepalived.conf' 'etc/sysconfig/keepalived')
-makedepends=('ipset')
-depends=('glibc' 'libnl' 'openssl' 'file' 'iptables')
-optdepends=('ipset: ipset support')
-makedepends=('libnfnetlink' 'ipset' 'systemd')
-options=('!emptydirs')
-source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;)
-md5sums=('2a6e1a159922afd78333cd683f9f2732')
-
-build() {
-  # trick broken ./configure systemctl test
-  printf "#!/bin/sh\necho -.mount\n" > systemctl
-  chmod +x systemctl
-  PATH=$PWD:$PATH
-
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
---runstatedir=/run
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  # move examples to /usr/share
-  install -d -m 755 "$pkgdir/usr/share/$pkgname"
-  mv "$pkgdir/etc/keepalived/samples" "$pkgdir/usr/share/$pkgname/samples"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: keepalived/repos/community-x86_64/PKGBUILD (from rev 431701, 
keepalived/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-11 02:17:22 UTC (rev 431702)
@@ -0,0 +1,44 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Andrea Zucchelli 
+
+pkgname=keepalived
+pkgver=2.0.12
+pkgrel=1
+pkgdesc='Failover and monitoring daemon for LVS clusters'
+arch=('x86_64')
+url='http://www.keepalived.org/'
+license=('GPL2')
+backup=('etc/keepalived/keepalived.conf' 'etc/sysconfig/keepalived')
+makedepends=('ipset')
+depends=('glibc' 'libnl' 'openssl' 'file' 'iptables')
+optdepends=('ipset: ipset support')
+makedepends=('libnfnetlink' 'ipset' 'systemd')
+options=('!emptydirs')
+source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;)
+md5sums=('96ab225fefab25a6cf0cbe4579a9bac7')
+
+build() {
+  # trick broken ./configure systemctl test
+  printf "#!/bin/sh\necho -.mount\n" > systemctl
+  chmod +x systemctl
+  PATH=$PWD:$PATH
+
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--runstatedir=/run
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # move examples to /usr/share
+  install -d -m 755 "$pkgdir/usr/share/$pkgname"
+  mv "$pkgdir/etc/keepalived/samples" "$pkgdir/usr/share/$pkgname/samples"
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-02-10 Thread Sébastien Luttringer via arch-commits
Date: Monday, February 11, 2019 @ 02:17:15
  Author: seblu
Revision: 431701

upgpkg: keepalived 2.0.12-1

Modified:
  keepalived/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-11 00:27:16 UTC (rev 431700)
+++ PKGBUILD2019-02-11 02:17:15 UTC (rev 431701)
@@ -2,7 +2,7 @@
 # Contributor: Andrea Zucchelli 
 
 pkgname=keepalived
-pkgver=2.0.11
+pkgver=2.0.12
 pkgrel=1
 pkgdesc='Failover and monitoring daemon for LVS clusters'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 makedepends=('libnfnetlink' 'ipset' 'systemd')
 options=('!emptydirs')
 source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;)
-md5sums=('2a6e1a159922afd78333cd683f9f2732')
+md5sums=('96ab225fefab25a6cf0cbe4579a9bac7')
 
 build() {
   # trick broken ./configure systemctl test


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

2019-02-10 Thread Evangelos Foutras via arch-commits
Date: Monday, February 11, 2019 @ 04:19:33
  Author: foutrelis
Revision: 431703

upgpkg: python-virtualenvwrapper 4.8.4-1

New upstream release.

Modified:
  python-virtualenvwrapper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-11 02:17:22 UTC (rev 431702)
+++ PKGBUILD2019-02-11 04:19:33 UTC (rev 431703)
@@ -2,11 +2,11 @@
 # Contributor: Sebastien Binet 
 
 pkgname=python-virtualenvwrapper
-pkgver=4.8.2
-pkgrel=2
+pkgver=4.8.4
+pkgrel=1
 pkgdesc="Extensions to Ian Bicking's virtualenv tool"
 arch=('any')
-url="https://bitbucket.org/dhellmann/virtualenvwrapper;
+url="https://virtualenvwrapper.readthedocs.io/;
 license=('MIT')
 depends=('python-virtualenv' 'python2-virtualenv' 'python-virtualenv-clone'
  'python-stevedore')
@@ -14,19 +14,16 @@
 conflicts=('python2-virtualenvwrapper')
 replaces=('python2-virtualenvwrapper')
 
source=(https://pypi.org/packages/source/v/virtualenvwrapper/virtualenvwrapper-$pkgver.tar.gz)
-sha256sums=('18d8e4c500c4c4ee794f704e050cf2bbb492537532a4521d1047e7dd1ee4e374')
+sha256sums=('51a1a934e7ed0ff221bdd91bf9d3b604d875afbb3aa2367133503fee168f5bfa')
 
 build() {
   cd "$srcdir/virtualenvwrapper-$pkgver"
-
   python3 setup.py build
 }
 
 package() {
   cd "$srcdir/virtualenvwrapper-$pkgver"
-
   python3 setup.py install --root="$pkgdir" -O1
-
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
 


[arch-commits] Commit in python-virtualenvwrapper/repos/community-any (2 files)

2019-02-10 Thread Evangelos Foutras via arch-commits
Date: Monday, February 11, 2019 @ 04:19:39
  Author: foutrelis
Revision: 431704

archrelease: copy trunk to community-any

Added:
  python-virtualenvwrapper/repos/community-any/PKGBUILD
(from rev 431703, python-virtualenvwrapper/trunk/PKGBUILD)
Deleted:
  python-virtualenvwrapper/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-11 04:19:33 UTC (rev 431703)
+++ PKGBUILD2019-02-11 04:19:39 UTC (rev 431704)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Sebastien Binet 
-
-pkgname=python-virtualenvwrapper
-pkgver=4.8.2
-pkgrel=2
-pkgdesc="Extensions to Ian Bicking's virtualenv tool"
-arch=('any')
-url="https://bitbucket.org/dhellmann/virtualenvwrapper;
-license=('MIT')
-depends=('python-virtualenv' 'python2-virtualenv' 'python-virtualenv-clone'
- 'python-stevedore')
-conflicts=('python2-virtualenvwrapper')
-replaces=('python2-virtualenvwrapper')
-source=(https://pypi.org/packages/source/v/virtualenvwrapper/virtualenvwrapper-$pkgver.tar.gz)
-sha256sums=('18d8e4c500c4c4ee794f704e050cf2bbb492537532a4521d1047e7dd1ee4e374')
-
-package() {
-  cd "$srcdir/virtualenvwrapper-$pkgver"
-
-  python3 setup.py install --root="$pkgdir" -O1
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-virtualenvwrapper/repos/community-any/PKGBUILD (from rev 431703, 
python-virtualenvwrapper/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-11 04:19:39 UTC (rev 431704)
@@ -0,0 +1,30 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Sebastien Binet 
+
+pkgname=python-virtualenvwrapper
+pkgver=4.8.4
+pkgrel=1
+pkgdesc="Extensions to Ian Bicking's virtualenv tool"
+arch=('any')
+url="https://virtualenvwrapper.readthedocs.io/;
+license=('MIT')
+depends=('python-virtualenv' 'python2-virtualenv' 'python-virtualenv-clone'
+ 'python-stevedore')
+makedepends=('python-pbr')
+conflicts=('python2-virtualenvwrapper')
+replaces=('python2-virtualenvwrapper')
+source=(https://pypi.org/packages/source/v/virtualenvwrapper/virtualenvwrapper-$pkgver.tar.gz)
+sha256sums=('51a1a934e7ed0ff221bdd91bf9d3b604d875afbb3aa2367133503fee168f5bfa')
+
+build() {
+  cd "$srcdir/virtualenvwrapper-$pkgver"
+  python3 setup.py build
+}
+
+package() {
+  cd "$srcdir/virtualenvwrapper-$pkgver"
+  python3 setup.py install --root="$pkgdir" -O1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Monday, February 11, 2019 @ 00:27:16
  Author: eschwartz
Revision: 431700

archrelease: copy trunk to community-testing-any

Added:
  qutebrowser/repos/community-testing-any/
  qutebrowser/repos/community-testing-any/PKGBUILD
(from rev 431699, qutebrowser/trunk/PKGBUILD)

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

Copied: qutebrowser/repos/community-testing-any/PKGBUILD (from rev 431699, 
qutebrowser/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2019-02-11 00:27:16 UTC (rev 431700)
@@ -0,0 +1,38 @@
+# Maintainer: Morten Linderud 
+# Contributor: Pierre Neidhardt 
+# Contributor: Florian Bruhin (The Compiler) 
+
+pkgname=qutebrowser
+pkgver=1.5.2
+pkgrel=4
+pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
+arch=("any")
+url="https://www.qutebrowser.org/;
+license=("GPL")
+depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
+ "python-pyqt5" "python-yaml" "qt5-base" "python-pyqtwebengine")
+makedepends=("asciidoc" "python-setuptools")
+optdepends=("gst-libav: media playback with qt5-webkit backend"
+"gst-plugins-base: media playback with qt5-webkit backend"
+"gst-plugins-good: media playback with qt5-webkit backend"
+"gst-plugins-bad: media playback with qt5-webkit backend"
+"gst-plugins-ugly: media playback with qt5-webkit backend"
+"pdfjs: displaying PDF in-browser"
+"qt5-webkit: alternative backend")
+options=(!emptydirs)
+source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
+
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
+validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
+sha256sums=('be126522456902fc80e63466738f36c55639bcb237c23e078c2a246c7d4d214e'
+'SKIP')
+
+build() {
+cd "$pkgname-$pkgver"
+a2x -f manpage doc/qutebrowser.1.asciidoc
+python setup.py build
+}
+
+package() {
+cd "$pkgname-$pkgver"
+make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
+}


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Monday, February 11, 2019 @ 00:26:57
  Author: eschwartz
Revision: 431699

upgpkg: qutebrowser 1.5.2-4

qt5-webengine rebuild for real

Modified:
  qutebrowser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-11 00:21:34 UTC (rev 431698)
+++ PKGBUILD2019-02-11 00:26:57 UTC (rev 431699)
@@ -4,13 +4,13 @@
 
 pkgname=qutebrowser
 pkgver=1.5.2
-pkgrel=3
+pkgrel=4
 pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
 arch=("any")
 url="https://www.qutebrowser.org/;
 license=("GPL")
 depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
- "python-pyqt5" "python-yaml" "qt5-base" "qt5-webengine")
+ "python-pyqt5" "python-yaml" "qt5-base" "python-pyqtwebengine")
 makedepends=("asciidoc" "python-setuptools")
 optdepends=("gst-libav: media playback with qt5-webkit backend"
 "gst-plugins-base: media playback with qt5-webkit backend"


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Monday, February 11, 2019 @ 00:21:10
  Author: eschwartz
Revision: 431697

upgpkg: qutebrowser 1.5.2-3

fix pyqtwebengine testing mismatch
update optdepends description to make it more clear what they're actually 
needed for

Modified:
  qutebrowser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 23:11:41 UTC (rev 431696)
+++ PKGBUILD2019-02-11 00:21:10 UTC (rev 431697)
@@ -4,19 +4,19 @@
 
 pkgname=qutebrowser
 pkgver=1.5.2
-pkgrel=2
+pkgrel=3
 pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
 arch=("any")
 url="https://www.qutebrowser.org/;
 license=("GPL")
 depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
- "python-pyqt5" "python-yaml" "qt5-base" "python-pyqtwebengine")
+ "python-pyqt5" "python-yaml" "qt5-base" "qt5-webengine")
 makedepends=("asciidoc" "python-setuptools")
-optdepends=("gst-libav: media playback"
-"gst-plugins-base: media playback"
-"gst-plugins-good: media playback"
-"gst-plugins-bad: media playback"
-"gst-plugins-ugly: media playback"
+optdepends=("gst-libav: media playback with qt5-webkit backend"
+"gst-plugins-base: media playback with qt5-webkit backend"
+"gst-plugins-good: media playback with qt5-webkit backend"
+"gst-plugins-bad: media playback with qt5-webkit backend"
+"gst-plugins-ugly: media playback with qt5-webkit backend"
 "pdfjs: displaying PDF in-browser"
 "qt5-webkit: alternative backend")
 options=(!emptydirs)


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Monday, February 11, 2019 @ 00:21:34
  Author: eschwartz
Revision: 431698

archrelease: copy trunk to community-any

Added:
  qutebrowser/repos/community-any/PKGBUILD
(from rev 431697, qutebrowser/trunk/PKGBUILD)
Deleted:
  qutebrowser/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-11 00:21:10 UTC (rev 431697)
+++ PKGBUILD2019-02-11 00:21:34 UTC (rev 431698)
@@ -1,38 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Pierre Neidhardt 
-# Contributor: Florian Bruhin (The Compiler) 
-
-pkgname=qutebrowser
-pkgver=1.5.2
-pkgrel=2
-pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
-arch=("any")
-url="https://www.qutebrowser.org/;
-license=("GPL")
-depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
- "python-pyqt5" "python-yaml" "qt5-base" "python-pyqtwebengine")
-makedepends=("asciidoc" "python-setuptools")
-optdepends=("gst-libav: media playback"
-"gst-plugins-base: media playback"
-"gst-plugins-good: media playback"
-"gst-plugins-bad: media playback"
-"gst-plugins-ugly: media playback"
-"pdfjs: displaying PDF in-browser"
-"qt5-webkit: alternative backend")
-options=(!emptydirs)
-source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
-
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
-validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
-sha256sums=('be126522456902fc80e63466738f36c55639bcb237c23e078c2a246c7d4d214e'
-'SKIP')
-
-build() {
-cd "$pkgname-$pkgver"
-a2x -f manpage doc/qutebrowser.1.asciidoc
-python setup.py build
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
-}

Copied: qutebrowser/repos/community-any/PKGBUILD (from rev 431697, 
qutebrowser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-11 00:21:34 UTC (rev 431698)
@@ -0,0 +1,38 @@
+# Maintainer: Morten Linderud 
+# Contributor: Pierre Neidhardt 
+# Contributor: Florian Bruhin (The Compiler) 
+
+pkgname=qutebrowser
+pkgver=1.5.2
+pkgrel=3
+pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
+arch=("any")
+url="https://www.qutebrowser.org/;
+license=("GPL")
+depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
+ "python-pyqt5" "python-yaml" "qt5-base" "qt5-webengine")
+makedepends=("asciidoc" "python-setuptools")
+optdepends=("gst-libav: media playback with qt5-webkit backend"
+"gst-plugins-base: media playback with qt5-webkit backend"
+"gst-plugins-good: media playback with qt5-webkit backend"
+"gst-plugins-bad: media playback with qt5-webkit backend"
+"gst-plugins-ugly: media playback with qt5-webkit backend"
+"pdfjs: displaying PDF in-browser"
+"qt5-webkit: alternative backend")
+options=(!emptydirs)
+source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
+
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
+validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
+sha256sums=('be126522456902fc80e63466738f36c55639bcb237c23e078c2a246c7d4d214e'
+'SKIP')
+
+build() {
+cd "$pkgname-$pkgver"
+a2x -f manpage doc/qutebrowser.1.asciidoc
+python setup.py build
+}
+
+package() {
+cd "$pkgname-$pkgver"
+make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
+}


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 23:11:41
  Author: eschwartz
Revision: 431696

archrelease: copy trunk to community-testing-any

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

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

Copied: python-qtpy/repos/community-testing-any/PKGBUILD (from rev 431695, 
python-qtpy/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2019-02-10 23:11:41 UTC (rev 431696)
@@ -0,0 +1,55 @@
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+
+pkgbase='python-qtpy'
+_pkgbase='qtpy'
+pkgname=('python-qtpy' 'python2-qtpy')
+pkgver=1.5.1
+pkgrel=2
+pkgdesc='Provides an uniform layer to support PyQt5, PyQt4 and PySide with a 
single codebase'
+makedepends=('python' 'python-setuptools'
+ 'python2' 'python2-setuptools')
+arch=('any')
+url="https://github.com/spyder-ide/${_pkgbase}/;
+license=('MIT')
+source=("${pkgbase}-${pkgver}.tar.gz"::"https://github.com/spyder-ide/${_pkgbase}/archive/v${pkgver}.tar.gz;)
+sha256sums=('4ea8e256ee59d68b52146291c199503cc4e3aefdc997408bb6d4c9d344de4c9a')
+
+prepare() {
+  # Prepare sources for Python 2.x
+  cp -r "${_pkgbase}-${pkgver}" "python2-${_pkgbase}-${pkgver}"
+  # Fix Python 2.x shebang
+  cd "python2-${_pkgbase}-${pkgver}"
+  sed -i 's@^#!.*python$@#!/usr/bin/env python2@' 
"${_pkgbase}/tests/runtests.py"
+}
+
+build() {
+  cd "${_pkgbase}-${pkgver}"
+  python2 setup.py build
+
+  cd "${srcdir}/python2-${_pkgbase}-${pkgver}"
+  python setup.py build
+}
+
+package_python2-qtpy() {
+  depends=('python2')
+  optdepends=('python2-pyqt5: Qt5 Python bindings'
+  'python2-pyqtwebengine: Qt5-WebEngine python bindings'
+  'python2-pyside2: PySide Qt5 Python bindings')
+
+  cd "${pkgname}-${pkgver}"
+  python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+  # Install license file
+  install -D -m644 "LICENSE.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python-qtpy() {
+  depends=('python')
+  optdepends=('python-pyqt5: Qt5 Python bindings'
+  'python-pyqtwebengine: Qt5-WebEngine python bindings'
+  'python-pyside2: PySide Qt5 Python bindings')
+
+  cd "${_pkgbase}-${pkgver}"
+  python3 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+  # Install license file
+  install -D -m644 "LICENSE.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 23:09:53
  Author: eschwartz
Revision: 431695

upgpkg: python-qtpy 1.5.1-2

https://www.archlinux.org/todo/pyqtwebengine-split/

Modified:
  python-qtpy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 21:46:14 UTC (rev 431694)
+++ PKGBUILD2019-02-10 23:09:53 UTC (rev 431695)
@@ -4,7 +4,7 @@
 _pkgbase='qtpy'
 pkgname=('python-qtpy' 'python2-qtpy')
 pkgver=1.5.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Provides an uniform layer to support PyQt5, PyQt4 and PySide with a 
single codebase'
 makedepends=('python' 'python-setuptools'
  'python2' 'python2-setuptools')
@@ -33,6 +33,7 @@
 package_python2-qtpy() {
   depends=('python2')
   optdepends=('python2-pyqt5: Qt5 Python bindings'
+  'python2-pyqtwebengine: Qt5-WebEngine python bindings'
   'python2-pyside2: PySide Qt5 Python bindings')
 
   cd "${pkgname}-${pkgver}"
@@ -44,6 +45,7 @@
 package_python-qtpy() {
   depends=('python')
   optdepends=('python-pyqt5: Qt5 Python bindings'
+  'python-pyqtwebengine: Qt5-WebEngine python bindings'
   'python-pyside2: PySide Qt5 Python bindings')
 
   cd "${_pkgbase}-${pkgver}"


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 21:45:56
  Author: eschwartz
Revision: 431693

upgpkg: qutebrowser 1.5.2-2

migrate qt5-webengine dep as per 
https://www.archlinux.org/todo/pyqtwebengine-split/
fix mixed tabs/spaces
update url to https

Modified:
  qutebrowser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 21:27:07 UTC (rev 431692)
+++ PKGBUILD2019-02-10 21:45:56 UTC (rev 431693)
@@ -4,35 +4,35 @@
 
 pkgname=qutebrowser
 pkgver=1.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
 arch=("any")
-url="http://www.qutebrowser.org/;
+url="https://www.qutebrowser.org/;
 license=("GPL")
 depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
-   "python-pyqt5>=5.7" "python-yaml" "qt5-base>=5.7.1" "qt5-webengine")
+ "python-pyqt5" "python-yaml" "qt5-base" "python-pyqtwebengine")
 makedepends=("asciidoc" "python-setuptools")
 optdepends=("gst-libav: media playback"
-   "gst-plugins-base: media playback"
-   "gst-plugins-good: media playback"
-   "gst-plugins-bad: media playback"
-   "gst-plugins-ugly: media playback"
-   "pdfjs: displaying PDF in-browser"
-   "qt5-webkit: alternative backend")
+"gst-plugins-base: media playback"
+"gst-plugins-good: media playback"
+"gst-plugins-bad: media playback"
+"gst-plugins-ugly: media playback"
+"pdfjs: displaying PDF in-browser"
+"qt5-webkit: alternative backend")
 options=(!emptydirs)
 
source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
-   
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
+
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
 validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
 sha256sums=('be126522456902fc80e63466738f36c55639bcb237c23e078c2a246c7d4d214e'
 'SKIP')
 
 build() {
-   cd "$pkgname-$pkgver"
-   a2x -f manpage doc/qutebrowser.1.asciidoc
-   python setup.py build
+cd "$pkgname-$pkgver"
+a2x -f manpage doc/qutebrowser.1.asciidoc
+python setup.py build
 }
 
 package() {
-   cd "$pkgname-$pkgver"
-   make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
+cd "$pkgname-$pkgver"
+make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
 }


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 21:46:14
  Author: eschwartz
Revision: 431694

archrelease: copy trunk to community-any

Added:
  qutebrowser/repos/community-any/PKGBUILD
(from rev 431693, qutebrowser/trunk/PKGBUILD)
Deleted:
  qutebrowser/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 21:45:56 UTC (rev 431693)
+++ PKGBUILD2019-02-10 21:46:14 UTC (rev 431694)
@@ -1,38 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Pierre Neidhardt 
-# Contributor: Florian Bruhin (The Compiler) 
-
-pkgname=qutebrowser
-pkgver=1.5.2
-pkgrel=1
-pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
-arch=("any")
-url="http://www.qutebrowser.org/;
-license=("GPL")
-depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
-   "python-pyqt5>=5.7" "python-yaml" "qt5-base>=5.7.1" "qt5-webengine")
-makedepends=("asciidoc" "python-setuptools")
-optdepends=("gst-libav: media playback"
-   "gst-plugins-base: media playback"
-   "gst-plugins-good: media playback"
-   "gst-plugins-bad: media playback"
-   "gst-plugins-ugly: media playback"
-   "pdfjs: displaying PDF in-browser"
-   "qt5-webkit: alternative backend")
-options=(!emptydirs)
-source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
-   
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
-validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
-sha256sums=('be126522456902fc80e63466738f36c55639bcb237c23e078c2a246c7d4d214e'
-'SKIP')
-
-build() {
-   cd "$pkgname-$pkgver"
-   a2x -f manpage doc/qutebrowser.1.asciidoc
-   python setup.py build
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
-}

Copied: qutebrowser/repos/community-any/PKGBUILD (from rev 431693, 
qutebrowser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 21:46:14 UTC (rev 431694)
@@ -0,0 +1,38 @@
+# Maintainer: Morten Linderud 
+# Contributor: Pierre Neidhardt 
+# Contributor: Florian Bruhin (The Compiler) 
+
+pkgname=qutebrowser
+pkgver=1.5.2
+pkgrel=2
+pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
+arch=("any")
+url="https://www.qutebrowser.org/;
+license=("GPL")
+depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
+ "python-pyqt5" "python-yaml" "qt5-base" "python-pyqtwebengine")
+makedepends=("asciidoc" "python-setuptools")
+optdepends=("gst-libav: media playback"
+"gst-plugins-base: media playback"
+"gst-plugins-good: media playback"
+"gst-plugins-bad: media playback"
+"gst-plugins-ugly: media playback"
+"pdfjs: displaying PDF in-browser"
+"qt5-webkit: alternative backend")
+options=(!emptydirs)
+source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
+
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
+validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
+sha256sums=('be126522456902fc80e63466738f36c55639bcb237c23e078c2a246c7d4d214e'
+'SKIP')
+
+build() {
+cd "$pkgname-$pkgver"
+a2x -f manpage doc/qutebrowser.1.asciidoc
+python setup.py build
+}
+
+package() {
+cd "$pkgname-$pkgver"
+make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
+}


[arch-commits] Commit in appstream-generator/repos/community-x86_64 (2 files)

2019-02-10 Thread Antonio Rojas via arch-commits
Date: Sunday, February 10, 2019 @ 21:27:07
  Author: arojas
Revision: 431692

archrelease: copy trunk to community-x86_64

Added:
  appstream-generator/repos/community-x86_64/PKGBUILD
(from rev 431691, appstream-generator/trunk/PKGBUILD)
Deleted:
  appstream-generator/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 21:26:46 UTC (rev 431691)
+++ PKGBUILD2019-02-10 21:27:07 UTC (rev 431692)
@@ -1,28 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=appstream-generator
-pkgver=0.7.5
-pkgrel=1
-pkgdesc="A fast AppStream metadata generator"
-arch=(x86_64)
-url="https://github.com/ximion/appstream-generator;
-license=(GPL3)
-depends=(appstream libarchive librsvg lmdb optipng d-stdx-allocator glibd 
d-containers)
-makedepends=(ldc meson ninja mustache-d curl gir-to-d gobject-introspection 
docbook-xsl)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/ximion/appstream-generator/archive/v$pkgver.tar.gz;)
-sha256sums=('173b1bef32f4c64824b833340d40ffda895a9f693e2b6854c19a033e4489430e')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  meson ../$pkgname-$pkgver -Ddownload-js=false --prefix=/usr
-  ninja
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: appstream-generator/repos/community-x86_64/PKGBUILD (from rev 431691, 
appstream-generator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 21:27:07 UTC (rev 431692)
@@ -0,0 +1,28 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=appstream-generator
+pkgver=0.7.6
+pkgrel=1
+pkgdesc="A fast AppStream metadata generator"
+arch=(x86_64)
+url="https://github.com/ximion/appstream-generator;
+license=(GPL3)
+depends=(appstream libarchive librsvg lmdb optipng d-stdx-allocator glibd 
d-containers)
+makedepends=(ldc meson ninja mustache-d curl gir-to-d gobject-introspection 
docbook-xsl)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/ximion/appstream-generator/archive/v$pkgver.tar.gz;)
+sha256sums=('0d87892528daf6c8eebd26400953a875f8cf30bddd942594fdea3ac496914d93')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  meson ../$pkgname-$pkgver -Ddownload-js=false --prefix=/usr
+  ninja
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}


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

2019-02-10 Thread Antonio Rojas via arch-commits
Date: Sunday, February 10, 2019 @ 21:26:46
  Author: arojas
Revision: 431691

Update to 0.7.6

Modified:
  appstream-generator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 21:09:59 UTC (rev 431690)
+++ PKGBUILD2019-02-10 21:26:46 UTC (rev 431691)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=appstream-generator
-pkgver=0.7.5
+pkgver=0.7.6
 pkgrel=1
 pkgdesc="A fast AppStream metadata generator"
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(appstream libarchive librsvg lmdb optipng d-stdx-allocator glibd 
d-containers)
 makedepends=(ldc meson ninja mustache-d curl gir-to-d gobject-introspection 
docbook-xsl)
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/ximion/appstream-generator/archive/v$pkgver.tar.gz;)
-sha256sums=('173b1bef32f4c64824b833340d40ffda895a9f693e2b6854c19a033e4489430e')
+sha256sums=('0d87892528daf6c8eebd26400953a875f8cf30bddd942594fdea3ac496914d93')
 
 prepare() {
   mkdir -p build


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 21:09:59
  Author: eschwartz
Revision: 431690

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 21:09:40 UTC (rev 431689)
+++ PKGBUILD2019-02-10 21:09:59 UTC (rev 431690)
@@ -1,33 +0,0 @@
-# Maintainer:
-# Contributor: Eric Bélanger 
-
-pkgbase=python-pygame
-pkgname=python2-pygame
-pkgver=1.9.4
-pkgrel=1
-pkgdesc="Python game library"
-arch=('x86_64')
-url="http://www.pygame.org/;
-license=('LGPL')
-depends=('sdl_mixer' 'sdl_ttf' 'sdl_image' 'python2' 'portmidi')
-makedepends=('python2-setuptools')
-source=(https://pypi.io/packages/source/p/pygame/pygame-$pkgver.tar.gz)
-sha1sums=('9387835fab92a8b4a3c9e51e2c9267a670476aaa')
-
-prepare() {
-  cd pygame-${pkgver}
-  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#' {} 
+
-}
-
-package_python2-pygame() {
-  cd pygame-${pkgver}
-  python2 config.py -auto
-  python2 setup.py install --root="${pkgdir}" --prefix=/usr
-
-# Copying the examples and tests
-  cp -R examples lib/* "${pkgdir}/usr/lib/python2.7/site-packages/pygame"
-  cp -R test/* "${pkgdir}/usr/lib/python2.7/site-packages/pygame/tests"
-
-# Fixing permissions
-  chmod 644 "${pkgdir}"/usr/include/python2.7/pygame/*
-}

Copied: python-pygame/repos/community-x86_64/PKGBUILD (from rev 431689, 
python-pygame/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 21:09:59 UTC (rev 431690)
@@ -0,0 +1,40 @@
+# Maintainer:
+# Contributor: Eric Bélanger 
+
+pkgbase=python-pygame
+pkgname=python2-pygame
+pkgver=1.9.4
+pkgrel=2
+pkgdesc="Python game library"
+arch=('x86_64')
+url="http://www.pygame.org/;
+license=('LGPL')
+depends=('sdl_mixer' 'sdl_ttf' 'sdl_image' 'python2' 'portmidi')
+makedepends=('python2-setuptools')
+source=(https://pypi.io/packages/source/p/pygame/pygame-$pkgver.tar.gz)
+sha1sums=('9387835fab92a8b4a3c9e51e2c9267a670476aaa')
+
+prepare() {
+  cd pygame-${pkgver}
+  # don't ship python2 *and* python3 compiled bytecode from upstream
+  find . -name "*.pyc" -delete
+  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#' {} 
+
+}
+
+build() {
+  cd pygame-${pkgver}
+  python2 config.py -auto
+  python2 setup.py build
+}
+
+package_python2-pygame() {
+  cd pygame-${pkgver}
+  python2 setup.py install --root="${pkgdir}" --prefix=/usr
+
+# Copying the examples and tests
+  cp -R examples lib/* "${pkgdir}/usr/lib/python2.7/site-packages/pygame"
+  cp -R test/* "${pkgdir}/usr/lib/python2.7/site-packages/pygame/tests"
+
+# Fixing permissions
+  chmod 644 "${pkgdir}"/usr/include/python2.7/pygame/*
+}


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 21:09:24
  Author: felixonmars
Revision: 431688

archrelease: copy trunk to community-staging-x86_64

Added:
  shellcheck/repos/community-staging-x86_64/
  shellcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 431687, shellcheck/trunk/PKGBUILD)

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 431687, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-10 21:09:24 UTC (rev 431688)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.6.0
+pkgrel=40
+pkgdesc="Shell script analysis tool"
+url="http://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-quickcheck' 'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('4e9575985fe914cb35444995212ac1afaa40b004dbbc86b5987bf8b65e20b14a0102c9c601dc061d604129a8e978021f22a11d682545cb7f07ec974495cfa387')
+
+build() {
+cd $pkgname-$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
+
+pandoc -s -t man shellcheck.1.md -o shellcheck.1
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+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"
+}


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 21:09:40
  Author: eschwartz
Revision: 431689

upgpkg: python-pygame 1.9.4-2

do build stuff in build()
remove precompiled bytecode from the tarball, including python3 bytecode being
packaged in a python2 package

Modified:
  python-pygame/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 21:09:24 UTC (rev 431688)
+++ PKGBUILD2019-02-10 21:09:40 UTC (rev 431689)
@@ -4,7 +4,7 @@
 pkgbase=python-pygame
 pkgname=python2-pygame
 pkgver=1.9.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Python game library"
 arch=('x86_64')
 url="http://www.pygame.org/;
@@ -16,12 +16,19 @@
 
 prepare() {
   cd pygame-${pkgver}
+  # don't ship python2 *and* python3 compiled bytecode from upstream
+  find . -name "*.pyc" -delete
   find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#' {} 
+
 }
 
+build() {
+  cd pygame-${pkgver}
+  python2 config.py -auto
+  python2 setup.py build
+}
+
 package_python2-pygame() {
   cd pygame-${pkgver}
-  python2 config.py -auto
   python2 setup.py install --root="${pkgdir}" --prefix=/usr
 
 # Copying the examples and tests


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 21:09:09
  Author: felixonmars
Revision: 431687

upgpkg: shellcheck 0.6.0-40

rebuild with skylighting 0.7.6, skylighting-core 0.7.6

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 21:06:08 UTC (rev 431686)
+++ PKGBUILD2019-02-10 21:09:09 UTC (rev 431687)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.6.0
-pkgrel=39
+pkgrel=40
 pkgdesc="Shell script analysis tool"
 url="http://www.shellcheck.net;
 license=("GPL")


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 21:06:08
  Author: felixonmars
Revision: 431686

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

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
431685, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-10 21:06:08 UTC (rev 431686)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.4.0
+pkgrel=43
+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-gitrev' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz;)
+sha512sums=('d3a666880f0cad0ef7c1e784f2d52f9bb8bfde9e6be6de04c8f094e2a87e99a740f97951c5ffd74b2a1b001e8a977bc9dd3e28be84c3442d3447beadd879e82c')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i 's/< *2.5/<3/' $pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+   -f-enable_flaky_tests
+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 $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $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"
+}


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 21:05:52
  Author: felixonmars
Revision: 431685

upgpkg: pandoc-crossref 0.3.4.0-43

rebuild with skylighting 0.7.6, skylighting-core 0.7.6

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 21:04:28 UTC (rev 431684)
+++ PKGBUILD2019-02-10 21:05:52 UTC (rev 431685)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.4.0
-pkgrel=42
+pkgrel=43
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 21:04:12
  Author: felixonmars
Revision: 431683

upgpkg: haskell-hakyll 4.12.5.1-4

rebuild with skylighting 0.7.6, skylighting-core 0.7.6

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 21:02:22 UTC (rev 431682)
+++ PKGBUILD2019-02-10 21:04:12 UTC (rev 431683)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.5.1
-pkgrel=3
+pkgrel=4
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("BSD")


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 21:04:28
  Author: felixonmars
Revision: 431684

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
431683, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-10 21:04:28 UTC (rev 431684)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.5.1
+pkgrel=4
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptohash'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('bc8cc9944229c691fbec6b7e6ea52e8a65bd8cc2093d42bd577e30ded1767370b439d8dc694e9842b300f7c884f851cac6a2a9de2817a961c779b83fb0ee1718')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning 
"https://github.com/jaspervdj/hakyll/issues/682;
+}
+
+package() {
+cd $_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 pandoc-citeproc/repos (2 files)

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 21:02:22
  Author: felixonmars
Revision: 431682

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

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
431681, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-10 21:02:22 UTC (rev 431682)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.16.0.2
+pkgrel=4
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 
'haskell-attoparsec' 'haskell-base-compat'
+ 'haskell-data-default' 'haskell-hs-bibutils' 'haskell-old-locale' 
'pandoc'
+ 'haskell-pandoc-types' 'haskell-rfc5051' 'haskell-setenv' 
'haskell-split'
+ 'haskell-syb' 'haskell-tagsoup' 'haskell-temporary' '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=('a89feedb8f6ae83b0438389910468e03d4980cba9917f845590b2cc3c05af993c8dd2d8af7fdf86d426083011d24c6dc1869745ccb5ae0bf10505ae682606960')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+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" --enable-tests \
+--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
+}
+
+check() {
+cd $pkgname-$pkgver
+# https://github.com/jgm/pandoc-citeproc/issues/342
+runhaskell Setup test || warning "Tests failed"
+}
+
+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 python-zope-schema/repos/community-any (PKGBUILD PKGBUILD)

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 21:02:10
  Author: eschwartz
Revision: 431681

archrelease: copy trunk to community-any

Added:
  python-zope-schema/repos/community-any/PKGBUILD
(from rev 431679, python-zope-schema/trunk/PKGBUILD)
Deleted:
  python-zope-schema/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 21:02:06 UTC (rev 431680)
+++ PKGBUILD2019-02-10 21:02:10 UTC (rev 431681)
@@ -1,52 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-zope-schema
-pkgname=('python-zope-schema' 'python2-zope-schema')
-pkgver=4.9.3
-pkgrel=1
-pkgdesc="zope.interface extension for defining data schemas"
-arch=('any')
-url="https://github.com/zopefoundation/zope.schema;
-license=('ZPL')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
- 'python2-zope-interface' 'python-zope-event' 'python2-zope-event')
-checkdepends=('python-zope-testrunner' 'python2-zope-testrunner' 
'python-zope-testing'
-  'python2-zope-testing' 'python-zope-i18nmessageid' 
'python2-zope-i18nmessageid')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.schema/archive/$pkgver.tar.gz;)
-sha512sums=('bac09d9106cca1560d968f35ba414860d42da9a1637c261a18e42b97c6ada3a3cc78381b536d478c505c7eaade189e47012b1726b8d8815622c904a79f3e89e1')
-
-prepare() {
-  cp -a zope.schema-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/zope.schema-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/zope.schema-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/zope.schema-$pkgver
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m zope.testrunner 
--test-path=src
-
-  cd "$srcdir"/zope.schema-$pkgver-py2
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m zope.testrunner 
--test-path=src
-}
-
-package_python-zope-schema() {
-  depends=('python-setuptools' 'python-zope-interface' 'python-zope-event')
-
-  cd "$srcdir"/zope.schema-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-zope-schema() {
-  depends=('python2-setuptools' 'python2-zope-interface' 'python2-zope-event')
-
-  cd "$srcdir"/zope.schema-$pkgver
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-zope-schema/repos/community-any/PKGBUILD (from rev 431679, 
python-zope-schema/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 21:02:10 UTC (rev 431681)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-zope-schema
+pkgname=('python-zope-schema' 'python2-zope-schema')
+pkgver=4.9.3
+pkgrel=2
+pkgdesc="zope.interface extension for defining data schemas"
+arch=('any')
+url="https://github.com/zopefoundation/zope.schema;
+license=('ZPL')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
+ 'python2-zope-interface' 'python-zope-event' 'python2-zope-event')
+checkdepends=('python-zope-testrunner' 'python2-zope-testrunner' 
'python-zope-testing'
+  'python2-zope-testing' 'python-zope-i18nmessageid' 
'python2-zope-i18nmessageid')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.schema/archive/$pkgver.tar.gz;)
+sha512sums=('bac09d9106cca1560d968f35ba414860d42da9a1637c261a18e42b97c6ada3a3cc78381b536d478c505c7eaade189e47012b1726b8d8815622c904a79f3e89e1')
+
+prepare() {
+  cp -a zope.schema-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/zope.schema-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/zope.schema-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/zope.schema-$pkgver
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m zope.testrunner 
--test-path=src
+
+  cd "$srcdir"/zope.schema-$pkgver-py2
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m zope.testrunner 
--test-path=src
+}
+
+package_python-zope-schema() {
+  depends=('python-setuptools' 'python-zope-interface' 'python-zope-event')
+
+  cd "$srcdir"/zope.schema-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-zope-schema() {
+  depends=('python2-setuptools' 'python2-zope-interface' 'python2-zope-event')
+
+  cd "$srcdir"/zope.schema-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 21:02:06
  Author: felixonmars
Revision: 431680

upgpkg: pandoc-citeproc 0.16.0.2-4

rebuild with skylighting 0.7.6, skylighting-core 0.7.6

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 21:01:50 UTC (rev 431679)
+++ PKGBUILD2019-02-10 21:02:06 UTC (rev 431680)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.16.0.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 21:01:50
  Author: eschwartz
Revision: 431679

upgpkg: python-zope-schema 4.9.3-2

fix python3 directory being used to package python2 version
this resulted in shipping pointless python3 bytecode in the python2- package

Modified:
  python-zope-schema/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 20:59:06 UTC (rev 431678)
+++ PKGBUILD2019-02-10 21:01:50 UTC (rev 431679)
@@ -3,7 +3,7 @@
 pkgbase=python-zope-schema
 pkgname=('python-zope-schema' 'python2-zope-schema')
 pkgver=4.9.3
-pkgrel=1
+pkgrel=2
 pkgdesc="zope.interface extension for defining data schemas"
 arch=('any')
 url="https://github.com/zopefoundation/zope.schema;
@@ -45,7 +45,7 @@
 package_python2-zope-schema() {
   depends=('python2-setuptools' 'python2-zope-interface' 'python2-zope-event')
 
-  cd "$srcdir"/zope.schema-$pkgver
+  cd "$srcdir"/zope.schema-$pkgver-py2
   python2 setup.py install --root="$pkgdir" --optimize=1
 }
 


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 20:58:50
  Author: felixonmars
Revision: 431677

upgpkg: pandoc 2.6-4

rebuild with skylighting 0.7.6, skylighting-core 0.7.6

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 20:37:06 UTC (rev 431676)
+++ PKGBUILD2019-02-10 20:58:50 UTC (rev 431677)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.6
-pkgrel=3
+pkgrel=4
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")
@@ -52,7 +52,7 @@
 
 check() {
 cd "${srcdir}/${pkgname}-${pkgver}"
-LC_CTYPE=en_US.UTF-8 runhaskell Setup test
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning "Tests failed"
 }
 
 package() {


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 20:59:06
  Author: felixonmars
Revision: 431678

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 431677, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-10 20:59:06 UTC (rev 431678)
@@ -0,0 +1,64 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.6
+pkgrel=4
+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-base-compat' 
'haskell-base64-bytestring'
+ 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-case-insensitive' 'haskell-cmark-gfm'
+ 'haskell-data-default' 'haskell-doctemplates' 'haskell-exceptions' 
'haskell-glob'
+ 'haskell-haddock-library' 'haskell-ipynb' 'haskell-skylighting' 
'haskell-hslua'
+ 'haskell-hslua-module-text' 'haskell-http-client' 'haskell-syb' 
'haskell-hsyaml' 'haskell-http-client-tls'
+ 'haskell-http-types' 'haskell-safe' 'haskell-split' 'haskell-texmath'
+ 'haskell-network' 'haskell-pandoc-types' 'haskell-random'
+ 'haskell-tagsoup' 'haskell-temporary' 'haskell-network-uri' 
'haskell-unicode-transforms'
+ 'haskell-unordered-containers' 'haskell-zip-archive' 'haskell-vector' 
'haskell-xml'
+ '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=('edcaa419c078916f236270da14bf5061759ff5ce96bf5f4567aea762efe591db363be9fbb45b517bb974a9c29cce92d91b15ae7d32b2512018e0d30211b9772b')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+}
+
+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-trypandoc -f-embed_data_files -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}"
+LC_CTYPE=en_US.UTF-8 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 youtube-dl/trunk (PKGBUILD)

2019-02-10 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, February 10, 2019 @ 20:36:56
  Author: jlichtblau
Revision: 431675

upgpkg: youtube-dl 2019.02.08-1 - new upstream release

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 20:36:25 UTC (rev 431674)
+++ PKGBUILD2019-02-10 20:36:56 UTC (rev 431675)
@@ -2,7 +2,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=youtube-dl
-pkgver=2019.01.30.1
+pkgver=2019.02.08
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -14,7 +14,7 @@
 'atomicparsley: for embedding thumbnails into m4a files'
 'python-pycryptodome: for hlsnative downloader')
 
source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('8eda5d2ffcb7a8cf3467e31208bc27609ad85e7e19987b4c971271a25dd85571'
+sha256sums=('f6d3681393efbc3183f63018914c65eb593511acc75466455523a826e59fdb93'
 'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
   'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.


[arch-commits] Commit in newsboat/trunk (PKGBUILD newsboat.changelog)

2019-02-10 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, February 10, 2019 @ 20:36:15
  Author: jlichtblau
Revision: 431673

upgpkg: newsboat 2.14.1-1 - new upstream release

Modified:
  newsboat/trunk/PKGBUILD
  newsboat/trunk/newsboat.changelog

+
 PKGBUILD   |4 ++--
 newsboat.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 20:27:44 UTC (rev 431672)
+++ PKGBUILD2019-02-10 20:36:15 UTC (rev 431673)
@@ -2,7 +2,7 @@
 # Contributor: Sven Pfleiderer 
 
 pkgname=newsboat
-pkgver=2.14
+pkgver=2.14.1
 pkgrel=1
 pkgdesc="An RSS/Atom feed reader for text terminals"
 arch=('x86_64')
@@ -15,7 +15,7 @@
 options=('!emptydirs')
 source=(https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
 validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') #Newsboat project 

-sha256sums=('67bcbaac3ebed5cea07aee502803364a01e7b45a022c886932cc18d5b9e56d8d'
+sha256sums=('4bd0d3b1901a3fc7e0ef73b800587c28181a57b175c36b547dbd84636330df66'
 'SKIP')
 
 build() {

Modified: newsboat.changelog
===
--- newsboat.changelog  2019-02-10 20:27:44 UTC (rev 431672)
+++ newsboat.changelog  2019-02-10 20:36:15 UTC (rev 431673)
@@ -1,3 +1,6 @@
+2019-02-10 Jaroslav Lichtblau 
+   * newsboat 2.14.1-1
+
 2019-01-01 Jaroslav Lichtblau 
* newsboat 2.14-1
 


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

2019-02-10 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, February 10, 2019 @ 20:37:06
  Author: jlichtblau
Revision: 431676

archrelease: copy trunk to community-any

Added:
  youtube-dl/repos/community-any/PKGBUILD
(from rev 431675, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 20:36:56 UTC (rev 431675)
+++ PKGBUILD2019-02-10 20:37:06 UTC (rev 431676)
@@ -1,35 +0,0 @@
-# Maintainer: Eric Bélanger 
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=youtube-dl
-pkgver=2019.01.30.1
-pkgrel=1
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support'
-'atomicparsley: for embedding thumbnails into m4a files'
-'python-pycryptodome: for hlsnative downloader')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('8eda5d2ffcb7a8cf3467e31208bc27609ad85e7e19987b4c971271a25dd85571'
-'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
-  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
- "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 431675, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 20:37:06 UTC (rev 431676)
@@ -0,0 +1,35 @@
+# Maintainer: Eric Bélanger 
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=youtube-dl
+pkgver=2019.02.08
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support'
+'atomicparsley: for embedding thumbnails into m4a files'
+'python-pycryptodome: for hlsnative downloader')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('f6d3681393efbc3183f63018914c65eb593511acc75466455523a826e59fdb93'
+'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
+  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+ "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2019-02-10 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, February 10, 2019 @ 20:36:25
  Author: jlichtblau
Revision: 431674

archrelease: copy trunk to community-x86_64

Added:
  newsboat/repos/community-x86_64/PKGBUILD
(from rev 431673, newsboat/trunk/PKGBUILD)
  newsboat/repos/community-x86_64/newsboat.changelog
(from rev 431673, newsboat/trunk/newsboat.changelog)
Deleted:
  newsboat/repos/community-x86_64/PKGBUILD
  newsboat/repos/community-x86_64/newsboat.changelog

+
 PKGBUILD   |   66 +++
 newsboat.changelog |  141 ++-
 2 files changed, 105 insertions(+), 102 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 20:36:15 UTC (rev 431673)
+++ PKGBUILD2019-02-10 20:36:25 UTC (rev 431674)
@@ -1,33 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Sven Pfleiderer 
-
-pkgname=newsboat
-pkgver=2.14
-pkgrel=1
-pkgdesc="An RSS/Atom feed reader for text terminals"
-arch=('x86_64')
-url="https://newsboat.org/;
-license=('custom: MIT')
-depends=('curl' 'json-c' 'libxml2' 'sqlite' 'stfl')
-makedepends=('swig' 'gettext' 'asciidoc' 'rust')
-replaces=('newsbeuter')
-changelog=$pkgname.changelog
-options=('!emptydirs')
-source=(https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
-validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') #Newsboat project 

-sha256sums=('67bcbaac3ebed5cea07aee502803364a01e7b45a022c886932cc18d5b9e56d8d'
-'SKIP')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make prefix=/usr
-  make doc
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make prefix=/usr DESTDIR="${pkgdir}" install
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: newsboat/repos/community-x86_64/PKGBUILD (from rev 431673, 
newsboat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 20:36:25 UTC (rev 431674)
@@ -0,0 +1,33 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Sven Pfleiderer 
+
+pkgname=newsboat
+pkgver=2.14.1
+pkgrel=1
+pkgdesc="An RSS/Atom feed reader for text terminals"
+arch=('x86_64')
+url="https://newsboat.org/;
+license=('custom: MIT')
+depends=('curl' 'json-c' 'libxml2' 'sqlite' 'stfl')
+makedepends=('swig' 'gettext' 'asciidoc' 'rust')
+replaces=('newsbeuter')
+changelog=$pkgname.changelog
+options=('!emptydirs')
+source=(https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
+validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') #Newsboat project 

+sha256sums=('4bd0d3b1901a3fc7e0ef73b800587c28181a57b175c36b547dbd84636330df66'
+'SKIP')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make prefix=/usr
+  make doc
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make prefix=/usr DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: newsboat.changelog
===
--- newsboat.changelog  2019-02-10 20:36:15 UTC (rev 431673)
+++ newsboat.changelog  2019-02-10 20:36:25 UTC (rev 431674)
@@ -1,69 +0,0 @@
-2019-01-01 Jaroslav Lichtblau 
-   * newsboat 2.14-1
-
-2018-09-29 Jaroslav Lichtblau 
-   * newsboat 2.13-1
-
-2018-04-10 Jaroslav Lichtblau 
-   * newsboat 2.11.1-1
-
-2018-03-26 Jaroslav Lichtblau 
-   * newsboat 2.11-1
-
-2017-12-27 Jaroslav Lichtblau 
-   * newsboat 2.10.2-1
-
-2017-12-02 Jaroslav Lichtblau 
-   * newsboat 2.10.1-2 FS#56519 fixed
-
-2017-10-21 Jaroslav Lichtblau 
-   * newsboat 2.10.1-1
-
-2017-10-21 Jaroslav Lichtblau 
-   * newsboat 2.10-1 moving over to the new maintained fork of newsbeuter
-
-2015-09-13 Jaroslav Lichtblau 
-   * newsbeuter 2.9-4 ncurses6 re-rebuild
-
-2015-09-13 Jaroslav Lichtblau 
-   * newsbeuter 2.9-3 segmentation fault on podcasts downloads #167 fix
-
-2015-02-19 Jaroslav Lichtblau 
-   * newsbeuter 2.9-1
-
-2014-01-27 Jaroslav Lichtblau 
-   * newsbeuter 2.8-1
-
-2013-09-02 Jaroslav Lichtblau 
-   * newsbeuter 2.7-1
-
-2013-03-28 Jaroslav Lichtblau 
-   * newsbeuter 2.6-1
-
-2013-03-07 Andrea Scarpino 
-   * ruby 2.0 rebuild
-
-2012-02-23 Jaroslav Lichtblau 
-   * newsbeuter 2.5-1
-
-2011-01-06 Jaroslav Lichtblau 
-   * newsbeuter 2.4-1
-
-2010-06-26 Jaroslav Lichtblau 
-   * Update to major release v2.3
-   * FS#19744 fixed - non-working locale
-
-2010-03-17 Jaroslav Lichtblau 
-   * Update to major release v2.2
-
-2009-12-19 Jaroslav Lichtblau 
-   * Update to major release v2.1
-
-2009-10-28 Biru Ionut 
-   * Fixed FS#16857
-
-2009-10-26 Jaroslav Lichtblau 
-   * Fixed FS#16850 
-
-2009-06-21 Jaroslav Lichtblau 
-   * Package moved to [community] in v2.0

Copied: newsboat/repos/community-x86_64/newsboat.changelog (from rev 431673, 
newsboat/trunk/newsboat.changelog)

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

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 20:27:38
  Author: anthraxx
Revision: 431671

upgpkg: afl 2.52b-2 (llvm-32 support FS#55087)

Modified:
  afl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 20:15:29 UTC (rev 431670)
+++ PKGBUILD2019-02-10 20:27:38 UTC (rev 431671)
@@ -3,7 +3,7 @@
 
 pkgname=afl
 pkgver=2.52b
-pkgrel=1
+pkgrel=2
 pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
 url='http://lcamtuf.coredump.cx/afl/'
 arch=('x86_64')
@@ -13,11 +13,11 @@
 'clang: clang instrumentation support'
 'llvm: experimental clang-fast instrumentation support'
 'gnuplot: graph plotting support')
-makedepends=('clang' 'llvm' 'gcc' 'wget' 'python')
+makedepends=('clang' 'llvm' 'gcc' 'wget' 'python' 'lib32-glibc')
 provides=('american-fuzzy-lop')
 replaces=('american-fuzzy-lop')
 options=('!emptydirs' '!strip')
-source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
+source=(http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
 sha256sums=('43614b4b91c014d39ef086c5cc84ff5f068010c264c2c05bf199df60898ce045')
 
sha512sums=('30d4526440cff109ef2a014278f52a04b1b33560b6ab7d7f59e1516655858ffb36dac81963d2d8f214984776742ca9a7942c27c8fb61f7eb70b5b35cd029008f')
 


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

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 20:27:44
  Author: anthraxx
Revision: 431672

archrelease: copy trunk to community-x86_64

Added:
  afl/repos/community-x86_64/PKGBUILD
(from rev 431671, afl/trunk/PKGBUILD)
Deleted:
  afl/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 20:27:38 UTC (rev 431671)
+++ PKGBUILD2019-02-10 20:27:44 UTC (rev 431672)
@@ -1,36 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: spider-mario 
-
-pkgname=afl
-pkgver=2.52b
-pkgrel=1
-pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
-url='http://lcamtuf.coredump.cx/afl/'
-arch=('i686' 'x86_64')
-license=('Apache')
-depends=('glibc' 'bash')
-optdepends=('gcc: gcc instrumentation support'
-'clang: clang instrumentation support'
-'llvm: experimental clang-fast instrumentation support'
-'gnuplot: graph plotting support')
-makedepends=('clang' 'llvm' 'gcc' 'wget' 'python')
-provides=('american-fuzzy-lop')
-replaces=('american-fuzzy-lop')
-options=('!emptydirs' '!strip')
-source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
-sha256sums=('43614b4b91c014d39ef086c5cc84ff5f068010c264c2c05bf199df60898ce045')
-sha512sums=('30d4526440cff109ef2a014278f52a04b1b33560b6ab7d7f59e1516655858ffb36dac81963d2d8f214984776742ca9a7942c27c8fb61f7eb70b5b35cd029008f')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr
-  make -C llvm_mode PREFIX=/usr
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr DESTDIR="${pkgdir}" install
-  install -Dm 644 llvm_mode/README.llvm -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: afl/repos/community-x86_64/PKGBUILD (from rev 431671, 
afl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 20:27:44 UTC (rev 431672)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+# Contributor: spider-mario 
+
+pkgname=afl
+pkgver=2.52b
+pkgrel=2
+pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
+url='http://lcamtuf.coredump.cx/afl/'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc' 'bash')
+optdepends=('gcc: gcc instrumentation support'
+'clang: clang instrumentation support'
+'llvm: experimental clang-fast instrumentation support'
+'gnuplot: graph plotting support')
+makedepends=('clang' 'llvm' 'gcc' 'wget' 'python' 'lib32-glibc')
+provides=('american-fuzzy-lop')
+replaces=('american-fuzzy-lop')
+options=('!emptydirs' '!strip')
+source=(http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
+sha256sums=('43614b4b91c014d39ef086c5cc84ff5f068010c264c2c05bf199df60898ce045')
+sha512sums=('30d4526440cff109ef2a014278f52a04b1b33560b6ab7d7f59e1516655858ffb36dac81963d2d8f214984776742ca9a7942c27c8fb61f7eb70b5b35cd029008f')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr
+  make -C llvm_mode PREFIX=/usr
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr DESTDIR="${pkgdir}" install
+  install -Dm 644 llvm_mode/README.llvm -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 20:15:22
  Author: anthraxx
Revision: 431669

upgpkg: fasm 1.73.08-1

Modified:
  fasm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 20:08:22 UTC (rev 431668)
+++ PKGBUILD2019-02-10 20:15:22 UTC (rev 431669)
@@ -6,7 +6,7 @@
 # Contributor: Luke McCarthy 
 
 pkgname=fasm
-pkgver=1.73.06
+pkgver=1.73.08
 pkgrel=1
 pkgdesc='Fast and efficient self-assembling x86 assembler for DOS, Windows and 
Linux operating systems'
 url='https://flatassembler.net/'
@@ -14,8 +14,8 @@
 license=('custom')
 depends_x86_64=('lib32-glibc')
 
source=(${pkgname}-${pkgver}.tgz::https://flatassembler.net/${pkgname}-${pkgver}.tgz)
-sha256sums=('e65608c6bd57deb10678380185fab2cc35961a16a9eaa7188fe00e7b3b9e980b')
-sha512sums=('cdbb41eaeba13684f998dc308fea24ed9efa1818ce5f85bc183c365af2287165970c9bc9866ac2c8083619bbfc1a769d383d7092cea5a207fe383473c73a3205')
+sha256sums=('2725714c06e235fddb727aa6f7dcdd6d14a91de95c3f1f6581065895ddf095d0')
+sha512sums=('753d8576ab3a4ce355367cd2390449cd6abdf226228aad1d0ce49df687142436fdc00103826a9900acbe62e9da610e41a274677c448c2866d9f5599e4ccecc1d')
 
 build() {
   cd ${pkgname}
@@ -29,10 +29,7 @@
   # tools
   local s
   for s in listing prepsrc symbols; do
-echo $s
 ./fasm tools/libc/${s}.asm ${s}.o
-echo A
-echo gcc -m32 ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o ${s} ${s}.o
 gcc -m32 ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o ${s} ${s}.o
   done
 }


[arch-commits] Commit in fasm/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 20:15:29
  Author: anthraxx
Revision: 431670

archrelease: copy trunk to multilib-x86_64

Added:
  fasm/repos/multilib-x86_64/PKGBUILD
(from rev 431669, fasm/trunk/PKGBUILD)
Deleted:
  fasm/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 20:15:22 UTC (rev 431669)
+++ PKGBUILD2019-02-10 20:15:29 UTC (rev 431670)
@@ -1,61 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Chris Andrews 
-# Contributor: FadeMind 
-# Contributor: Serge Victor 
-# Contributor: Krzysztof Wloch 
-# Contributor: Luke McCarthy 
-
-pkgname=fasm
-pkgver=1.73.06
-pkgrel=1
-pkgdesc='Fast and efficient self-assembling x86 assembler for DOS, Windows and 
Linux operating systems'
-url='https://flatassembler.net/'
-arch=('x86_64')
-license=('custom')
-depends_x86_64=('lib32-glibc')
-source=(${pkgname}-${pkgver}.tgz::https://flatassembler.net/${pkgname}-${pkgver}.tgz)
-sha256sums=('e65608c6bd57deb10678380185fab2cc35961a16a9eaa7188fe00e7b3b9e980b')
-sha512sums=('cdbb41eaeba13684f998dc308fea24ed9efa1818ce5f85bc183c365af2287165970c9bc9866ac2c8083619bbfc1a769d383d7092cea5a207fe383473c73a3205')
-
-build() {
-  cd ${pkgname}
-
-  if [ "${CARCH}" == "x86_64" ]; then
-SRCDIR=Linux/x64
-./fasm.x64 source/${SRCDIR}/fasm.asm
-  fi
-  mv source/${SRCDIR}/fasm ./fasm
-
-  # tools
-  local s
-  for s in listing prepsrc symbols; do
-echo $s
-./fasm tools/libc/${s}.asm ${s}.o
-echo A
-echo gcc -m32 ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o ${s} ${s}.o
-gcc -m32 ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o ${s} ${s}.o
-  done
-}
-
-package() {
-  cd ${pkgname}
-
-  install -Dm 755 fasm -t "${pkgdir}/usr/bin"
-  # tools
-  local s
-  for s in listing prepsrc symbols; do
-install -Dm 755 ${s} "${pkgdir}/usr/bin/fasm-${s}"
-  done
-
-  # docs
-  install -Dm 644 ${pkgname}.txt whatsnew.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 examples/elfexe/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfexe"
-  install -Dm 644 examples/elfexe/dynamic/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfexe/dynamic"
-  install -Dm 644 examples/elfexe/dynamic/*.inc -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfexe/dynamic"
-  install -Dm 644 examples/elfobj/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfobj"
-  install -Dm 644 examples/libcdemo/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/libcdemo"
-  install -Dm 644 examples/libcdemo/*.inc -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/libcdemo"
-  install -Dm 644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: fasm/repos/multilib-x86_64/PKGBUILD (from rev 431669, 
fasm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 20:15:29 UTC (rev 431670)
@@ -0,0 +1,58 @@
+# Maintainer: Levente Polyak 
+# Contributor: Chris Andrews 
+# Contributor: FadeMind 
+# Contributor: Serge Victor 
+# Contributor: Krzysztof Wloch 
+# Contributor: Luke McCarthy 
+
+pkgname=fasm
+pkgver=1.73.08
+pkgrel=1
+pkgdesc='Fast and efficient self-assembling x86 assembler for DOS, Windows and 
Linux operating systems'
+url='https://flatassembler.net/'
+arch=('x86_64')
+license=('custom')
+depends_x86_64=('lib32-glibc')
+source=(${pkgname}-${pkgver}.tgz::https://flatassembler.net/${pkgname}-${pkgver}.tgz)
+sha256sums=('2725714c06e235fddb727aa6f7dcdd6d14a91de95c3f1f6581065895ddf095d0')
+sha512sums=('753d8576ab3a4ce355367cd2390449cd6abdf226228aad1d0ce49df687142436fdc00103826a9900acbe62e9da610e41a274677c448c2866d9f5599e4ccecc1d')
+
+build() {
+  cd ${pkgname}
+
+  if [ "${CARCH}" == "x86_64" ]; then
+SRCDIR=Linux/x64
+./fasm.x64 source/${SRCDIR}/fasm.asm
+  fi
+  mv source/${SRCDIR}/fasm ./fasm
+
+  # tools
+  local s
+  for s in listing prepsrc symbols; do
+./fasm tools/libc/${s}.asm ${s}.o
+gcc -m32 ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o ${s} ${s}.o
+  done
+}
+
+package() {
+  cd ${pkgname}
+
+  install -Dm 755 fasm -t "${pkgdir}/usr/bin"
+  # tools
+  local s
+  for s in listing prepsrc symbols; do
+install -Dm 755 ${s} "${pkgdir}/usr/bin/fasm-${s}"
+  done
+
+  # docs
+  install -Dm 644 ${pkgname}.txt whatsnew.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 examples/elfexe/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfexe"
+  install -Dm 644 examples/elfexe/dynamic/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfexe/dynamic"
+  install -Dm 644 examples/elfexe/dynamic/*.inc -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfexe/dynamic"
+  install -Dm 644 examples/elfobj/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfobj"
+  install -Dm 644 examples/libcdemo/*.asm -t 

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

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 20:08:22
  Author: anthraxx
Revision: 431668

archrelease: copy trunk to community-any

Added:
  python-tweepy/repos/community-any/
  python-tweepy/repos/community-any/PKGBUILD
(from rev 431667, python-tweepy/trunk/PKGBUILD)

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

Copied: python-tweepy/repos/community-any/PKGBUILD (from rev 431667, 
python-tweepy/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2019-02-10 20:08:22 UTC (rev 431668)
@@ -0,0 +1,41 @@
+# Maintainer: Levente Polyak 
+
+pkgbase=python-tweepy
+pkgname=('python-tweepy' 'python2-tweepy')
+_pypiname=tweepy
+pkgver=3.7.0
+pkgrel=1
+pkgdesc='Python library for accessing the entire Twitter API'
+url='https://www.tweepy.org/'
+arch=('any')
+license=('MIT')
+makedepends=('python-setuptools' 'python-pip' 'python-requests' 
'python-requests-oauthlib'
+ 'python-six' 'python-pysocks'
+ 'python2-setuptools' 'python2-pip' 'python2-requests' 
'python2-requests-oauthlib'
+ 'python2-six' 'python2-pysocks')
+source=(https://github.com/tweepy/${_pypiname}/archive/${pkgver}/${_pypiname}-${pkgver}.tar.gz)
+sha512sums=('d0aa9cb198544e6cd1f24094c672f113b425af6c9f8c470cd8721e7e423037a05aae7d5dba7ceb1d48d8a03e736921f67fd32a396f1f6a703cb9b194066a5248')
+
+build() {
+  cd ${_pypiname}-${pkgver}
+  python setup.py build
+  python2 setup.py build
+}
+
+package_python-tweepy() {
+  depends=('python' 'python-requests' 'python-requests-oauthlib' 'python-six' 
'python-pysocks')
+  cd ${_pypiname}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}" --prefix=/usr --skip-build
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 examples/* -t "${pkgdir}/usr/share/doc/${pkgname}/examples"
+}
+
+package_python2-tweepy() {
+  depends=('python2' 'python2-requests' 'python2-requests-oauthlib' 
'python2-six' 'python2-pysocks')
+  cd ${_pypiname}-${pkgver}
+  python2 setup.py install -O1 --root="${pkgdir}" --prefix=/usr --skip-build
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 examples/* -t "${pkgdir}/usr/share/doc/${pkgname}/examples"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 20:07:50
  Author: anthraxx
Revision: 431667

addpkg: python-tweepy 3.7.0-1

Added:
  python-tweepy/
  python-tweepy/repos/
  python-tweepy/trunk/
  python-tweepy/trunk/PKGBUILD

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

Added: python-tweepy/trunk/PKGBUILD
===
--- python-tweepy/trunk/PKGBUILD(rev 0)
+++ python-tweepy/trunk/PKGBUILD2019-02-10 20:07:50 UTC (rev 431667)
@@ -0,0 +1,41 @@
+# Maintainer: Levente Polyak 
+
+pkgbase=python-tweepy
+pkgname=('python-tweepy' 'python2-tweepy')
+_pypiname=tweepy
+pkgver=3.7.0
+pkgrel=1
+pkgdesc='Python library for accessing the entire Twitter API'
+url='https://www.tweepy.org/'
+arch=('any')
+license=('MIT')
+makedepends=('python-setuptools' 'python-pip' 'python-requests' 
'python-requests-oauthlib'
+ 'python-six' 'python-pysocks'
+ 'python2-setuptools' 'python2-pip' 'python2-requests' 
'python2-requests-oauthlib'
+ 'python2-six' 'python2-pysocks')
+source=(https://github.com/tweepy/${_pypiname}/archive/${pkgver}/${_pypiname}-${pkgver}.tar.gz)
+sha512sums=('d0aa9cb198544e6cd1f24094c672f113b425af6c9f8c470cd8721e7e423037a05aae7d5dba7ceb1d48d8a03e736921f67fd32a396f1f6a703cb9b194066a5248')
+
+build() {
+  cd ${_pypiname}-${pkgver}
+  python setup.py build
+  python2 setup.py build
+}
+
+package_python-tweepy() {
+  depends=('python' 'python-requests' 'python-requests-oauthlib' 'python-six' 
'python-pysocks')
+  cd ${_pypiname}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}" --prefix=/usr --skip-build
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 examples/* -t "${pkgdir}/usr/share/doc/${pkgname}/examples"
+}
+
+package_python2-tweepy() {
+  depends=('python2' 'python2-requests' 'python2-requests-oauthlib' 
'python2-six' 'python2-pysocks')
+  cd ${_pypiname}-${pkgver}
+  python2 setup.py install -O1 --root="${pkgdir}" --prefix=/usr --skip-build
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 examples/* -t "${pkgdir}/usr/share/doc/${pkgname}/examples"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-10 Thread Filipe Laíns via arch-commits
Date: Sunday, February 10, 2019 @ 20:02:53
  Author: ffy00
Revision: 431666

archrelease: copy trunk to community-x86_64

Added:
  pulseeffects/repos/community-x86_64/PKGBUILD
(from rev 431665, pulseeffects/trunk/PKGBUILD)
Deleted:
  pulseeffects/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 20:02:38 UTC (rev 431665)
+++ PKGBUILD2019-02-10 20:02:53 UTC (rev 431666)
@@ -1,36 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Wellington 
-
-pkgname=pulseeffects
-pkgver=4.4.7
-pkgrel=1
-pkgdesc='Audio Effects for Pulseaudio Applications'
-arch=('x86_64')
-url='https://github.com/wwmm/pulseeffects'
-license=('GPL3')
-depends=('gtk3' 'gtkmm3' 'glibmm' 'libpulse' 'gstreamer' 'gst-plugins-good' 
'gst-plugins-bad'
-'lilv' 'boost-libs' 'libsigc++' 'libsndfile' 'libsamplerate' 
'zita-convolver' 'libebur128')
-makedepends=('meson' 'boost' 'itstool' 'appstream-glib'
- 'calf' 'zam-plugins' 'rubberband' 'mda.lv2')
-optdepends=('calf: limiter, compressor exciter, bass enhancer and others'
-'zam-plugins: maximizer'
-'rubberband: pitch shifting'
-'mda.lv2: loudness')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('243bd23d107f22a2a4b5934fb67bc5c059f278f2ec824814791ea24429e8d53844ffd71c9c21c35209261f4a0a4633827362bfd43355437a10944bbfd9a25421')
-
-build() {
-  mkdir -p $pkgname-$pkgver/build
-  cd $pkgname-$pkgver/build
-
-  arch-meson ..
-
-  ninja
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}
-

Copied: pulseeffects/repos/community-x86_64/PKGBUILD (from rev 431665, 
pulseeffects/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 20:02:53 UTC (rev 431666)
@@ -0,0 +1,36 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Wellington 
+
+pkgname=pulseeffects
+pkgver=4.5.0
+pkgrel=1
+pkgdesc='Audio Effects for Pulseaudio Applications'
+arch=('x86_64')
+url='https://github.com/wwmm/pulseeffects'
+license=('GPL3')
+depends=('gtk3' 'gtkmm3' 'glibmm' 'libpulse' 'gstreamer' 'gst-plugins-good' 
'gst-plugins-bad'
+'lilv' 'boost-libs' 'libsigc++' 'libsndfile' 'libsamplerate' 
'zita-convolver' 'libebur128')
+makedepends=('meson' 'boost' 'itstool' 'appstream-glib'
+ 'calf' 'zam-plugins' 'rubberband' 'mda.lv2')
+optdepends=('calf: limiter, compressor exciter, bass enhancer and others'
+'zam-plugins: maximizer'
+'rubberband: pitch shifting'
+'mda.lv2: loudness')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('2ed076667296716b5f4254690616d5dc77fca4c00e508658972bc13b76c9c4931243811b6d73114c385233bbec69c48cc184e547717cc774210169d20df1df0c')
+
+build() {
+  mkdir -p $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  arch-meson ..
+
+  ninja
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}
+


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

2019-02-10 Thread Filipe Laíns via arch-commits
Date: Sunday, February 10, 2019 @ 20:02:38
  Author: ffy00
Revision: 431665

upgpkg: pulseeffects 4.5.0-1

Modified:
  pulseeffects/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 19:59:07 UTC (rev 431664)
+++ PKGBUILD2019-02-10 20:02:38 UTC (rev 431665)
@@ -2,7 +2,7 @@
 # Contributor: Wellington 
 
 pkgname=pulseeffects
-pkgver=4.4.7
+pkgver=4.5.0
 pkgrel=1
 pkgdesc='Audio Effects for Pulseaudio Applications'
 arch=('x86_64')
@@ -17,7 +17,7 @@
 'rubberband: pitch shifting'
 'mda.lv2: loudness')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('243bd23d107f22a2a4b5934fb67bc5c059f278f2ec824814791ea24429e8d53844ffd71c9c21c35209261f4a0a4633827362bfd43355437a10944bbfd9a25421')
+sha512sums=('2ed076667296716b5f4254690616d5dc77fca4c00e508658972bc13b76c9c4931243811b6d73114c385233bbec69c48cc184e547717cc774210169d20df1df0c')
 
 build() {
   mkdir -p $pkgname-$pkgver/build


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

2019-02-10 Thread Filipe Laíns via arch-commits
Date: Sunday, February 10, 2019 @ 19:59:07
  Author: ffy00
Revision: 431664

fix metadata

Modified:
  qspectrumanalyzer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 19:50:45 UTC (rev 431663)
+++ PKGBUILD2019-02-10 19:59:07 UTC (rev 431664)
@@ -5,15 +5,14 @@
 pkgname=qspectrumanalyzer
 pkgver=2.2.0
 pkgrel=2
-pkgdesc="Spectrum analyzer for multiple SDR platforms."
+pkgdesc='Spectrum analyzer for multiple SDR platforms.'
 arch=('any')
-url="https://github.com/xmikos/qspectrumanalyzer;
+url='https://github.com/xmikos/qspectrumanalyzer'
 license=('GPL3')
-depends=('python-qt.py' 'python-pyqt5' 'python-pyqtgraph' 'soapy_power>=1.5.0' 
'python-setuptools')
-optdepends=('rtl_power_fftw: Alternative RTL-SDR backend using FFTW library. 
Much faster than rtl_power.'
-   'rtl-sdr: original rtl_power backend. Slightly broken, use 
rtl-sdr-keenerd-git instead.'
-   'rx_tools: rx_power backend. Universal SoapySDR based backend, but 
seems slow and buggy.'
-   'hackrf: hackrf_sweep backend. Wideband spectrum monitoring with 
sweep rate of 8 GHz/s.')
+depends=('python-qt.py' 'python-pyqt5' 'python-pyqtgraph' 'soapy_power' 
'python-setuptools')
+optdepends=('rtl-sdr: Alternative backend'
+   'rx_tools: Alternative backend'
+   'hackrf: Alternative backend')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
 'setenv.patch')
 sha256sums=('d50e13fa4951a67ed4f56362fb74daff9faeda88d7fc3f9d98cffb8d63c6311d'
@@ -20,12 +19,13 @@
 '9205115603abf8c555d4325246f4b57207002cc7037f96a6e9a3a2cfa9d18037')
 
 build() {
-  cd "$srcdir"/$pkgname-$pkgver
+  cd $pkgname-$pkgver
+
   python setup.py build
 }
 
 package() {
-  cd "$srcdir"/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
 
   # Patch start script to enforce usage of PyQt5


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

2019-02-10 Thread Johannes Löthberg via arch-commits
Date: Sunday, February 10, 2019 @ 19:50:45
  Author: demize
Revision: 431663

archrelease: copy trunk to community-testing-any

Added:
  anki/repos/community-testing-any/
  anki/repos/community-testing-any/PKGBUILD
(from rev 431662, anki/trunk/PKGBUILD)

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

Copied: anki/repos/community-testing-any/PKGBUILD (from rev 431662, 
anki/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2019-02-10 19:50:45 UTC (rev 431663)
@@ -0,0 +1,31 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Sergej Pupykin 
+# Contributor: Timm Preetz 
+# Contributor: Michael 'manveru' Fellinger 
+# Contributor: Dave Pretty 
+
+pkgname=anki
+pkgver=2.1.8
+pkgrel=2
+
+pkgdesc="Helps you remember facts (like words/phrases in a foreign language) 
efficiently"
+url="https://ankisrs.net/;
+arch=('any')
+license=('AGPL3')
+
+depends=('qt5-webengine' 'python-beautifulsoup4' 'python-pyaudio'
+ 'python-pyqt5' 'python-pyqtwebengine' 'python-requests' 
'python-send2trash'
+ 'python-decorator' 'python-markdown'
+ 'desktop-file-utils')
+optdepends=('lame: record sound'
+'mpv: play sound (prefered over mplayer)'
+'mplayer: play sound')
+
+source=(https://apps.ankiweb.net/downloads/current/anki-$pkgver-source.tgz)
+sha256sums=('57c466884ba43ef704c438bb0129e7ed793c468d36ea03cd3007af7a394c8b23')
+
+package() {
+  cd anki-$pkgver
+
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+}


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

2019-02-10 Thread Johannes Löthberg via arch-commits
Date: Sunday, February 10, 2019 @ 19:50:32
  Author: demize
Revision: 431661

Add new dep for pyqtwebengine split

Modified:
  anki/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 19:50:09 UTC (rev 431660)
+++ PKGBUILD2019-02-10 19:50:32 UTC (rev 431661)
@@ -6,7 +6,7 @@
 
 pkgname=anki
 pkgver=2.1.8
-pkgrel=1
+pkgrel=2
 
 pkgdesc="Helps you remember facts (like words/phrases in a foreign language) 
efficiently"
 url="https://ankisrs.net/;
@@ -14,7 +14,7 @@
 license=('AGPL3')
 
 depends=('qt5-webengine' 'python-beautifulsoup4' 'python-pyaudio'
- 'python-pyqt5' 'python-requests' 'python-send2trash'
+ 'python-pyqt5' 'python-pyqtwebengine' 'python-requests' 
'python-send2trash'
  'python-decorator' 'python-markdown'
  'desktop-file-utils')
 optdepends=('lame: record sound'


[arch-commits] Commit in grafana/repos/community-x86_64 (10 files)

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 19:50:41
  Author: eschwartz
Revision: 431662

archrelease: copy trunk to community-x86_64

Added:
  grafana/repos/community-x86_64/PKGBUILD
(from rev 431660, grafana/trunk/PKGBUILD)
  grafana/repos/community-x86_64/grafana.install
(from rev 431660, grafana/trunk/grafana.install)
  grafana/repos/community-x86_64/grafana.service
(from rev 431660, grafana/trunk/grafana.service)
  grafana/repos/community-x86_64/grafana.sysusers
(from rev 431661, grafana/trunk/grafana.sysusers)
  grafana/repos/community-x86_64/grafana.tmpfiles
(from rev 431661, grafana/trunk/grafana.tmpfiles)
Deleted:
  grafana/repos/community-x86_64/PKGBUILD
  grafana/repos/community-x86_64/grafana.install
  grafana/repos/community-x86_64/grafana.service
  grafana/repos/community-x86_64/grafana.sysusers
  grafana/repos/community-x86_64/grafana.tmpfiles

--+
 PKGBUILD |  157 ++---
 grafana.install  |   44 +++---
 grafana.service  |   46 +++
 grafana.sysusers |2 
 grafana.tmpfiles |4 -
 5 files changed, 126 insertions(+), 127 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 19:50:32 UTC (rev 431661)
+++ PKGBUILD2019-02-10 19:50:41 UTC (rev 431662)
@@ -1,79 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Carsten Feuls 
-# Contributor: Gilles Hamel 
-
-pkgname=grafana
-pkgver=5.4.2
-pkgrel=3
-pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
-url='https://grafana.com/'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc' 'freetype2' 'fontconfig' 'gsfonts')
-makedepends=('git' 'go-pie' 'npm' 'grunt-cli' 'python2')
-backup=('etc/grafana.ini')
-source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver;
-'grafana.service'
-'grafana.sysusers'
-'grafana.tmpfiles'
-   )
-install=$pkgname.install
-md5sums=('SKIP'
- '25c2adc03fad89286b72c1bf8bf3e361'
- 'e991d8cdf91c1e25652cdbc51fc726c5'
- 'bdc90cffca3c44c7a86e0fdac154092f')
-
-prepare() {
-  cd $pkgname
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  # set arch linux paths
-  sed -ri 's,^(\s*data\s*=).*,\1 /var/lib/grafana,' conf/defaults.ini
-  sed -ri 's,^(\s*plugins\s*=).*,\1 /var/lib/grafana/plugins,' 
conf/defaults.ini
-  sed -ri 's,^(\s*provisioning\s*=).*,\1 /var/lib/grafana/conf/provisioning,' 
conf/defaults.ini
-  sed -ri 's,^(\s*logs\s*=).*,\1 /var/log/grafana,' conf/defaults.ini
-  :
-}
-
-build() {
-  msg2 'GOPATH setup'
-  export GOPATH="$srcdir/gopath"
-  export PATH+=":$GOPATH/bin"
-  mkdir -p "$GOPATH/src/github.com/grafana/"
-  ln -fsrT "$srcdir/grafana/" "$GOPATH/src/github.com/grafana/grafana"
-  cd "$GOPATH/src/github.com/grafana/grafana"
-
-  msg2 'building the backend'
-  go run build.go setup
-  go run build.go build
-
-  msg2 'building the frontend'
-  export NPM_CONFIG_PREFIX="$srcdir/npm"
-  export PATH+=":$NPM_CONFIG_PREFIX/bin"
-  npm install -g yarn
-  yarn install --pure-lockfile --no-progress
-  npm run build release
-}
-
-package() {
-  install -Dm644 grafana.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/grafana.conf"
-  install -Dm644 grafana.sysusers "$pkgdir/usr/lib/sysusers.d/grafana.conf"
-  install -Dm644 grafana.service 
"$pkgdir/usr/lib/systemd/system/grafana.service"
-  cd $pkgname
-  install -Dsm755 bin/linux-amd64/grafana-server 
"$pkgdir/usr/bin/grafana-server"
-  install -Dsm755 bin/linux-amd64/grafana-cli "$pkgdir/usr/bin/grafana-cli"
-  install -Dm640 -o207 -g207 conf/sample.ini "$pkgdir/etc/$pkgname.ini"
-  install -Dm644 conf/defaults.ini 
"$pkgdir/usr/share/$pkgname/conf/defaults.ini"
-  install -dm755 "$pkgdir/usr/share/grafana/"
-  for i in vendor public tools; do
-cp -r "$i" "$pkgdir/usr/share/grafana/$i"
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: grafana/repos/community-x86_64/PKGBUILD (from rev 431660, 
grafana/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 19:50:41 UTC (rev 431662)
@@ -0,0 +1,78 @@
+# Maintainer: Sébastien "Seblu" Luttringer
+# Contributor: Carsten Feuls 
+# Contributor: Gilles Hamel 
+
+pkgname=grafana
+pkgver=5.4.2
+pkgrel=4
+pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
+url='https://grafana.com/'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc' 'freetype2' 'fontconfig' 'gsfonts')
+makedepends=('git' 'go-pie' 'npm' 'grunt-cli' 'python2')
+backup=('etc/grafana.ini')
+source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver;
+'grafana.service'
+'grafana.sysusers'
+

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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 19:50:09
  Author: eschwartz
Revision: 431660

upgpkg: grafana 5.4.2-4

golang staticlibs rebuild
Fixes CVE-2019-6486 which affects all packages relying on 'crypto/elliptic'

Modified:
  grafana/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 19:24:41 UTC (rev 431659)
+++ PKGBUILD2019-02-10 19:50:09 UTC (rev 431660)
@@ -4,7 +4,7 @@
 
 pkgname=grafana
 pkgver=5.4.2
-pkgrel=3
+pkgrel=4
 pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
 url='https://grafana.com/'
 arch=('x86_64')
@@ -38,7 +38,6 @@
   sed -ri 's,^(\s*plugins\s*=).*,\1 /var/lib/grafana/plugins,' 
conf/defaults.ini
   sed -ri 's,^(\s*provisioning\s*=).*,\1 /var/lib/grafana/conf/provisioning,' 
conf/defaults.ini
   sed -ri 's,^(\s*logs\s*=).*,\1 /var/log/grafana,' conf/defaults.ini
-  :
 }
 
 build() {


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 19:24:41
  Author: eschwartz
Revision: 431659

archrelease: copy trunk to community-x86_64

Added:
  influxdb/repos/community-x86_64/PKGBUILD
(from rev 431658, influxdb/trunk/PKGBUILD)
  influxdb/repos/community-x86_64/influxdb.sysusers
(from rev 431658, influxdb/trunk/influxdb.sysusers)
  influxdb/repos/community-x86_64/influxdb.tmpfiles
(from rev 431658, influxdb/trunk/influxdb.tmpfiles)
Deleted:
  influxdb/repos/community-x86_64/PKGBUILD
  influxdb/repos/community-x86_64/influxdb.sysusers
  influxdb/repos/community-x86_64/influxdb.tmpfiles

---+
 PKGBUILD  |  146 ++--
 influxdb.sysusers |2 
 influxdb.tmpfiles |8 +-
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 19:24:20 UTC (rev 431658)
+++ PKGBUILD2019-02-10 19:24:41 UTC (rev 431659)
@@ -1,73 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Nicolas Leclercq 
-# Contributor: Adam S Levy 
-# Contributor: Charles B. Johnson 
-# Contributor: Daichi Shinozaki 
-# Contributor: Ben Alex 
-
-pkgname=influxdb
-pkgver=1.7.3
-pkgrel=1
-pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
-arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
-url='https://github.com/InfluxData/influxdb'
-license=('MIT')
-makedepends=('go-pie' 'git' 'asciidoc' 'xmlto' 'dep')
-backup=('etc/influxdb/influxdb.conf')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
-"influxdb.sysusers"
-"influxdb.tmpfiles")
-sha256sums=('c3dc00f209cca8b9b742ddeffdd6ad0017afa992e6a7fc9279503f2a87e8ee65'
-'809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
-'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
-
-prepare(){
-  export GOPATH="$srcdir/gopath"
-
-  mkdir -p "$GOPATH/src/github.com/influxdata/"
-  cp -r "${srcdir}/influxdb-$pkgver" 
"$GOPATH/src/github.com/influxdata/influxdb"
-  cd "$GOPATH/src/github.com/influxdata/influxdb"
-  dep ensure
-}
-
-build(){
-  export GOPATH="$srcdir/gopath"
-
-  _LDFLAGS="-X main.version=$pkgver -X main.branch=master -extldflags 
${LDFLAGS}"
-  go install -v -ldflags="$_LDFLAGS" -gcflags "all=-trimpath=${GOPATH}" 
-asmflags "all=-trimpath=${GOPATH}" "github.com/influxdata/influxdb/cmd/..."
-
-  cd "$GOPATH/src/github.com/influxdata/influxdb/man/"
-  make
-}
-
-check(){
-  export GOPATH="$srcdir/gopath"
-  go test "github.com/influxdata/influxdb/..."
-}
-
-package(){
-  export GOPATH="$srcdir/gopath"
-
-  cd "$srcdir"
-  install -Dm644 influxdb.sysusers "$pkgdir/usr/lib/sysusers.d/influxdb.conf"
-  install -Dm644 influxdb.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/influxdb.conf"
-
-  cd "$GOPATH/bin"
-  install -d "$pkgdir/usr/bin/"
-  install -Dm755 influx "$pkgdir/usr/bin/"
-  install -Dm755 influxd"$pkgdir/usr/bin/"
-  install -Dm755 influx_inspect "$pkgdir/usr/bin/"
-  install -Dm755 influx_stress  "$pkgdir/usr/bin/"
-  install -Dm755 influx_tools   "$pkgdir/usr/bin/"
-  install -Dm755 influx_tsm "$pkgdir/usr/bin/"
-  install -Dm755 store  "$pkgdir/usr/bin/"
-
-  cd "$GOPATH/src/github.com/influxdata/influxdb"
-  install -Dm644 scripts/influxdb.service 
"$pkgdir/usr/lib/systemd/system/influxdb.service"
-  install -Dm644 etc/config.sample.toml   "$pkgdir/etc/influxdb/influxdb.conf"
-  install -Dm644 LICENSE  
"$pkgdir/usr/share/licenses/influxdb/LICENSE"
-
-  # Install man pages
-  install -d "$pkgdir/usr/share/man/man1"
-  install -Dm644 man/*.1 "$pkgdir/usr/share/man/man1/"
-}

Copied: influxdb/repos/community-x86_64/PKGBUILD (from rev 431658, 
influxdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 19:24:41 UTC (rev 431659)
@@ -0,0 +1,73 @@
+# Maintainer: Morten Linderud 
+# Contributor: Nicolas Leclercq 
+# Contributor: Adam S Levy 
+# Contributor: Charles B. Johnson 
+# Contributor: Daichi Shinozaki 
+# Contributor: Ben Alex 
+
+pkgname=influxdb
+pkgver=1.7.3
+pkgrel=2
+pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
+arch=('x86_64')
+url='https://github.com/InfluxData/influxdb'
+license=('MIT')
+makedepends=('go-pie' 'git' 'asciidoc' 'xmlto' 'dep')
+backup=('etc/influxdb/influxdb.conf')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
+"influxdb.sysusers"
+"influxdb.tmpfiles")
+sha256sums=('c3dc00f209cca8b9b742ddeffdd6ad0017afa992e6a7fc9279503f2a87e8ee65'
+'809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
+'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
+
+prepare(){
+  export GOPATH="$srcdir/gopath"
+
+  mkdir -p "$GOPATH/src/github.com/influxdata/"
+  cp -r 

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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 19:24:20
  Author: eschwartz
Revision: 431658

upgpkg: influxdb 1.7.3-2

golang staticlibs rebuild
Fixes CVE-2019-6486 which affects all packages relying on 'crypto/elliptic'

Modified:
  influxdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 19:22:19 UTC (rev 431657)
+++ PKGBUILD2019-02-10 19:24:20 UTC (rev 431658)
@@ -7,7 +7,7 @@
 
 pkgname=influxdb
 pkgver=1.7.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
 arch=('x86_64')
 url='https://github.com/InfluxData/influxdb'


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

2019-02-10 Thread Christian Hesse via arch-commits
Date: Sunday, February 10, 2019 @ 19:22:19
  Author: eworm
Revision: 431657

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 19:22:10 UTC (rev 431656)
+++ PKGBUILD2019-02-10 19:22:19 UTC (rev 431657)
@@ -1,44 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Norberto Lopes 
-# Contributor: Kao Dome 
-# Contributor: Dmitrij D. Czarkoff 
-# Contributor: Mathias Rohnstock 
-
-pkgname=libmicrohttpd
-pkgver=0.9.62
-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')
-checkdepends=('curl')
-validpgpkeys=('289FE99E138CF6D473A3F0CFBF7AC4A5EAC2BAF4'  # Evgeny Grin 
(Karlson2k) 
-  'D8423BCB326C7907033929C7939E6BE1E29FC3CC') # Christian Grothoff 

-source=("https://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz"{,.sig})
-sha256sums=('bd3e097d703f5091a6a01b56c0464a90fdd17f5d50478cea50a346b25c88db49'
-'SKIP')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure \
---prefix=/usr \
---disable-dependency-tracking \
---disable-examples \
---enable-curl \
---enable-https \
---enable-largefile \
---enable-messages \
---with-pic
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="$pkgdir" install
-}

Copied: libmicrohttpd/repos/community-x86_64/PKGBUILD (from rev 431656, 
libmicrohttpd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 19:22:19 UTC (rev 431657)
@@ -0,0 +1,44 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Norberto Lopes 
+# Contributor: Kao Dome 
+# Contributor: Dmitrij D. Czarkoff 
+# Contributor: Mathias Rohnstock 
+
+pkgname=libmicrohttpd
+pkgver=0.9.63
+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="https://www.gnu.org/software/libmicrohttpd/;
+license=('LGPL')
+depends=('gnutls')
+checkdepends=('curl')
+validpgpkeys=('289FE99E138CF6D473A3F0CFBF7AC4A5EAC2BAF4'  # Evgeny Grin 
(Karlson2k) 
+  'D8423BCB326C7907033929C7939E6BE1E29FC3CC') # Christian Grothoff 

+source=("https://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz"{,.sig})
+sha256sums=('37c36f1be177f0e37ef181a645cd3baac1000bd322a01c2eff70f3cc8c91749c'
+'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--disable-dependency-tracking \
+--disable-examples \
+--enable-curl \
+--enable-https \
+--enable-largefile \
+--enable-messages \
+--with-pic
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="$pkgdir" install
+}


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

2019-02-10 Thread Christian Hesse via arch-commits
Date: Sunday, February 10, 2019 @ 19:22:10
  Author: eworm
Revision: 431656

upgpkg: libmicrohttpd 0.9.63-1

new upstream release

Modified:
  libmicrohttpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 19:01:53 UTC (rev 431655)
+++ PKGBUILD2019-02-10 19:22:10 UTC (rev 431656)
@@ -5,7 +5,7 @@
 # Contributor: Mathias Rohnstock 
 
 pkgname=libmicrohttpd
-pkgver=0.9.62
+pkgver=0.9.63
 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')
@@ -16,7 +16,7 @@
 validpgpkeys=('289FE99E138CF6D473A3F0CFBF7AC4A5EAC2BAF4'  # Evgeny Grin 
(Karlson2k) 
   'D8423BCB326C7907033929C7939E6BE1E29FC3CC') # Christian Grothoff 

 source=("https://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz"{,.sig})
-sha256sums=('bd3e097d703f5091a6a01b56c0464a90fdd17f5d50478cea50a346b25c88db49'
+sha256sums=('37c36f1be177f0e37ef181a645cd3baac1000bd322a01c2eff70f3cc8c91749c'
 'SKIP')
 
 build() {


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 19:01:53
  Author: eschwartz
Revision: 431655

remove unsupported arches...

Modified:
  influxdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 19:01:02 UTC (rev 431654)
+++ PKGBUILD2019-02-10 19:01:53 UTC (rev 431655)
@@ -9,7 +9,7 @@
 pkgver=1.7.3
 pkgrel=1
 pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
-arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
+arch=('x86_64')
 url='https://github.com/InfluxData/influxdb'
 license=('MIT')
 makedepends=('go-pie' 'git' 'asciidoc' 'xmlto' 'dep')


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

2019-02-10 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, February 10, 2019 @ 19:00:55
  Author: svenstaro
Revision: 431653

upgpkg: pypy 7.0.0-1

Modified:
  pypy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 18:59:58 UTC (rev 431652)
+++ PKGBUILD2019-02-10 19:00:55 UTC (rev 431653)
@@ -2,8 +2,8 @@
 # Contributor: William Giokas <1007...@gmail.com>
 
 pkgname=pypy
-pkgver=6.0.0
-pkgrel=2
+pkgver=7.0.0
+pkgrel=1
 pkgdesc="A Python implementation written in Python, JIT enabled"
 url="https://pypy.org;
 arch=('x86_64')
@@ -13,11 +13,11 @@
 'tk: tk module')
 options=(!buildflags)
 license=('MIT')
-source=("https://bitbucket.org/pypy/pypy/downloads/pypy2-v${pkgver}-src.tar.bz2;)
-sha512sums=('d3bdcd65fc83f2fda3203a604733fe6765049a17cca2715cd6045dc302a6159b4741a821c53fa4c97acf7297cef4c62e941a6a6eb7f8a253a93a28dcf2aa2ca0')
+source=("https://bitbucket.org/pypy/pypy/downloads/pypy2.7-v${pkgver}-src.tar.bz2;)
+sha512sums=('7fb5682ee4226af51008f50a81c922e44c231410fe36b7656efa20f22c855ba30a01bc96ee897b4c7a02941d37a405c922b09855977313878e34aaad6bf023dc')
 
 build() {
-  cd pypy2-v${pkgver}-src/pypy/goal
+  cd pypy2.7-v${pkgver}-src/pypy/goal
 
   python2 ../../rpython/bin/rpython -Ojit --shared targetpypystandalone
 
@@ -26,7 +26,7 @@
 }
 
 package() {
-  cd pypy2-v${pkgver}-src
+  cd pypy2.7-v${pkgver}-src
 
   # Prepare installation
   python2 pypy/tool/release/package.py --archive-name pypy --targetdir .


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

2019-02-10 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, February 10, 2019 @ 19:01:02
  Author: svenstaro
Revision: 431654

archrelease: copy trunk to community-x86_64

Added:
  pypy/repos/community-x86_64/LICENSE
(from rev 431653, pypy/trunk/LICENSE)
  pypy/repos/community-x86_64/PKGBUILD
(from rev 431653, pypy/trunk/PKGBUILD)
Deleted:
  pypy/repos/community-x86_64/LICENSE
  pypy/repos/community-x86_64/PKGBUILD

--+
 LICENSE  |  308 ++---
 PKGBUILD |  107 ++---
 2 files changed, 207 insertions(+), 208 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2019-02-10 19:00:55 UTC (rev 431653)
+++ LICENSE 2019-02-10 19:01:02 UTC (rev 431654)
@@ -1,154 +0,0 @@
-License for files in the pypy/ directory 
-==
-
-Except when otherwise stated (look for LICENSE files in directories or
-information at the beginning of each file) all software and
-documentation in the 'pypy' directories is licensed as follows: 
-
-The MIT License
-
-Permission is hereby granted, free of charge, to any person 
-obtaining a copy of this software and associated documentation 
-files (the "Software"), to deal in the Software without 
-restriction, including without limitation the rights to use, 
-copy, modify, merge, publish, distribute, sublicense, and/or 
-sell copies of the Software, and to permit persons to whom the 
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included 
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
MERCHANTABILITY, 
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 
-THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
-DEALINGS IN THE SOFTWARE.
-
-
-PyPy Copyright holders 2003-2010
 
-
-Except when otherwise stated (look for LICENSE files or information at
-the beginning of each file) the files in the 'pypy' directory are each
-copyrighted by one or more of the following people and organizations:
-
-Armin Rigo
-Maciej Fijalkowski
-Carl Friedrich Bolz
-Samuele Pedroni
-Antonio Cuni
-Michael Hudson
-Christian Tismer
-Holger Krekel
-Eric van Riet Paap
-Richard Emslie
-Anders Chrigstrom
-Amaury Forgeot d Arc
-Aurelien Campeas
-Anders Lehmann
-Niklaus Haldimann
-Seo Sanghyeon
-Leonardo Santagada
-Lawrence Oluyede
-Jakub Gustak
-Guido Wesdorp
-Benjamin Peterson
-Alexander Schremmer
-Niko Matsakis
-Ludovic Aubry
-Alex Martelli
-Toon Verwaest
-Stephan Diehl
-Adrien Di Mascio
-Stefan Schwarzer
-Tomek Meka
-Patrick Maupin
-Jacob Hallen
-Laura Creighton
-Bob Ippolito
-Camillo Bruni
-Simon Burton
-Bruno Gola
-Alexandre Fayolle
-Marius Gedminas
-Guido van Rossum
-Valentino Volonghi
-Adrian Kuhn
-Paul deGrandis
-Gerald Klix
-Wanja Saatkamp
-Anders Hammarquist
-Oscar Nierstrasz
-Eugene Oden
-Lukas Renggli
-Guenter Jantzen
-Dinu Gherman
-Bartosz Skowron
-Georg Brandl
-Ben Young
-Jean-Paul Calderone
-Nicolas Chauvat
-Rocco Moretti
-Michael Twomey
-boria
-Jared Grubb
-Olivier Dormond
-Stuart Williams
-Jens-Uwe Mager
-Justas Sadzevicius
-Mikael Schönenberg
-Brian Dorsey
-Jonathan David Riehl
-Beatrice During
-Elmo Mäntynen
-Andreas Friedge
-Alex Gaynor
-Anders Qvist
-Alan McIntyre
-Bert Freudenberg
-
-Heinrich-Heine University, Germany 
-Open End AB (formerly AB Strakt), Sweden
-merlinux GmbH, Germany 
-tismerysoft GmbH, Germany 
-Logilab Paris, France 
-DFKI GmbH, Germany 
-Impara, Germany
-Change Maker, Sweden 
-
- 
-License for 'lib-python/2.5.2' and 'lib-python/2.5.2-modified'
-== 
-
-Except when otherwise stated (look for LICENSE files or
-copyright/license information at the beginning of each file) the files
-in the 'lib-python/2.5.2' and 'lib-python/2.5.2-modified' directories
-are all copyrighted by the Python Software Foundation and licensed under
-the Python Software License of which you can find a copy here:
-http://www.python.org/doc/Copyright.html 
-
-License for 'pypy/translator/jvm/src/jna.jar'
-=
-
-The file 'pypy/translator/jvm/src/jna.jar' is licensed under the GNU
-Lesser General Public License of which 

[arch-commits] Commit in python-qt.py/repos (community-any community-any/PKGBUILD)

2019-02-10 Thread Filipe Laíns via arch-commits
Date: Sunday, February 10, 2019 @ 18:59:58
  Author: ffy00
Revision: 431652

archrelease: copy trunk to community-any

Added:
  python-qt.py/repos/community-any/
  python-qt.py/repos/community-any/PKGBUILD
(from rev 431651, python-qt.py/trunk/PKGBUILD)

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

Copied: python-qt.py/repos/community-any/PKGBUILD (from rev 431651, 
python-qt.py/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2019-02-10 18:59:58 UTC (rev 431652)
@@ -0,0 +1,33 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Michal Krenek (Mikos) 
+
+pkgname=python-qt.py
+_pkgname=Qt.py
+pkgver=1.2.0.b3
+pkgrel=1
+pkgdesc='Python compatibility wrapper around all Qt bindings'
+arch=('any')
+url='https://github.com/mottosso/Qt.py'
+license=('MIT')
+depends=('python')
+optdepends=('python-pyqt5: Qt 5 bindings'
+   'pyside2: LGPL Qt 5 bindings')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('0e195c2d08837f60ddfbb182c4048bb21b7aed27d042e8e77c2abcf653c60a5139eef1fd369735088781830b739beac6da0afa1c6b04a197b403a70ae1ce2f77')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+  rm "$pkgdir"/usr/LICENSE # Weird
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


[arch-commits] Commit in python-qt.py/trunk (PKGBUILD)

2019-02-10 Thread Filipe Laíns via arch-commits
Date: Sunday, February 10, 2019 @ 18:54:44
  Author: ffy00
Revision: 431651

upgpkg: python-qt.py 1.2.0.b3-1

Added:
  python-qt.py/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 18:54:44 UTC (rev 431651)
@@ -0,0 +1,33 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Michal Krenek (Mikos) 
+
+pkgname=python-qt.py
+_pkgname=Qt.py
+pkgver=1.2.0.b3
+pkgrel=1
+pkgdesc='Python compatibility wrapper around all Qt bindings'
+arch=('any')
+url='https://github.com/mottosso/Qt.py'
+license=('MIT')
+depends=('python')
+optdepends=('python-pyqt5: Qt 5 bindings'
+   'pyside2: LGPL Qt 5 bindings')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('0e195c2d08837f60ddfbb182c4048bb21b7aed27d042e8e77c2abcf653c60a5139eef1fd369735088781830b739beac6da0afa1c6b04a197b403a70ae1ce2f77')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+  rm "$pkgdir"/usr/LICENSE # Weird
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


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

2019-02-10 Thread Jiachen Yang via arch-commits
Date: Sunday, February 10, 2019 @ 18:51:55
  Author: farseerfc
Revision: 431650

archrelease: copy trunk to community-testing-any

Added:
  retext/repos/community-testing-any/
  retext/repos/community-testing-any/PKGBUILD
(from rev 431649, retext/trunk/PKGBUILD)
  retext/repos/community-testing-any/x-retext-markdown.xml
(from rev 431649, retext/trunk/x-retext-markdown.xml)
  retext/repos/community-testing-any/x-retext-rst.xml
(from rev 431649, retext/trunk/x-retext-rst.xml)

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

Copied: retext/repos/community-testing-any/PKGBUILD (from rev 431649, 
retext/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2019-02-10 18:51:55 UTC (rev 431650)
@@ -0,0 +1,63 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Hyacinthe Cartiaux 
+# Contributor: Bartosz Chmura 
+# Contributor: Alessio Sergi 
+# Contributor: alfplayer
+# Contributor: menta
+
+_pkgname=ReText
+pkgname=retext
+pkgver=7.0.4
+pkgrel=4
+pkgdesc="A simple editor for Markdown and ReStructuredText markup languages"
+arch=('any')
+url="https://github.com/retext-project/retext;
+license=('GPL3')
+# for desktop integration: 'shared-mime-info' 'xdg-utils' 'desktop-file-utils'
+# for toolbar icons (see http://sourceforge.net/p/retext/tickets/44/): 'gconf'
+depends=('python-pyqt5' 'python-pyqtwebengine' 'python-markups>=2.0.0' 
'shared-mime-info' 'xdg-utils'
+ 'desktop-file-utils' 'hicolor-icon-theme' 'python-markdown')
+makedepends=('imagemagick' 'qt5-tools' 'python-setuptools')
+checkdepends=('xorg-server-xvfb' 'python-chardet' 'python-docutils' 
'python-pygments')
+optdepends=('python-docutils: for reStructuredText language support'
+'qt5-webkit: for WebKit preview'
+'python-pyenchant: for spell checking support')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc}
+"x-retext-rst.xml")
+sha256sums=('686c706c78d874d57168d9b89fb2c852fe7f909f08b8775fe7dcfad6f44d1d5d'
+'SKIP'
+'6fef80cccb14813d9cc74810c397a6cd7831d1ca243536759a47c6e8b6cc977a')
+validpgpkeys=('F24299FF1BBC9018B906A4CB6026936D2F1C8AE0') # Dmitry Shachnev 

+
+build () {
+cd "$srcdir/${_pkgname}-${pkgver}"
+python3 setup.py build
+}
+
+check() {
+cd "$srcdir/${_pkgname}-${pkgver}"
+xvfb-run python3 setup.py test
+}
+
+package () {
+cd "$srcdir/${_pkgname}-${pkgver}"
+python3 setup.py install --root="$pkgdir" -O1
+
+# create /usr/share/* dirs
+_SHAREDIR="$pkgdir/usr/share"
+install -d -m 755 "$_SHAREDIR"/{applications,mime/packages}
+
+# install icons
+_ICONSDIR="$_SHAREDIR/icons/hicolor"
+for size in 16 22 24 32 48 128; do
+  install -d -m 755 "$_ICONSDIR"/${size}x${size}/apps
+  convert -resize $size +set date:create +set date:modify 
icons/$pkgname.png "$_ICONSDIR"/${size}x${size}/apps/$pkgname.png
+done
+install -d -m 755 $_ICONSDIR/scalable/apps
+install -m 644 icons/$pkgname.svg "$_ICONSDIR"/scalable/apps/$pkgname.svg
+
+# install mime files
+install -m 644 "$srcdir"/x-retext-rst.xml "$_SHAREDIR"/mime/packages/
+}
+
+# vim:set ts=2 sw=2 et:

Copied: retext/repos/community-testing-any/x-retext-markdown.xml (from rev 
431649, retext/trunk/x-retext-markdown.xml)
===
(Binary files differ)

Copied: retext/repos/community-testing-any/x-retext-rst.xml (from rev 431649, 
retext/trunk/x-retext-rst.xml)
===
(Binary files differ)


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

2019-02-10 Thread Jiachen Yang via arch-commits
Date: Sunday, February 10, 2019 @ 18:51:11
  Author: farseerfc
Revision: 431649

upgpkg: retext 7.0.4-4

retext depends on python-pyqtwebengine

Modified:
  retext/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 18:48:41 UTC (rev 431648)
+++ PKGBUILD2019-02-10 18:51:11 UTC (rev 431649)
@@ -8,7 +8,7 @@
 _pkgname=ReText
 pkgname=retext
 pkgver=7.0.4
-pkgrel=3
+pkgrel=4
 pkgdesc="A simple editor for Markdown and ReStructuredText markup languages"
 arch=('any')
 url="https://github.com/retext-project/retext;
@@ -15,7 +15,7 @@
 license=('GPL3')
 # for desktop integration: 'shared-mime-info' 'xdg-utils' 'desktop-file-utils'
 # for toolbar icons (see http://sourceforge.net/p/retext/tickets/44/): 'gconf'
-depends=('python-pyqt5' 'python-markups>=2.0.0' 'shared-mime-info' 'xdg-utils'
+depends=('python-pyqt5' 'python-pyqtwebengine' 'python-markups>=2.0.0' 
'shared-mime-info' 'xdg-utils'
  'desktop-file-utils' 'hicolor-icon-theme' 'python-markdown')
 makedepends=('imagemagick' 'qt5-tools' 'python-setuptools')
 checkdepends=('xorg-server-xvfb' 'python-chardet' 'python-docutils' 
'python-pygments')


[arch-commits] Commit in (python-qt.py python-qt.py/repos python-qt.py/trunk)

2019-02-10 Thread Filipe Laíns via arch-commits
Date: Sunday, February 10, 2019 @ 18:48:41
  Author: ffy00
Revision: 431648

add root structure

Added:
  python-qt.py/
  python-qt.py/repos/
  python-qt.py/trunk/


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 18:32:07
  Author: eschwartz
Revision: 431646

upgpkg: gost 2.7.2-2

golang staticlibs rebuild
Fixes CVE-2019-6486 which affects all packages relying on 'crypto/elliptic'
move GOPATH assignment to build(), where it is used

Modified:
  gost/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 18:31:41 UTC (rev 431645)
+++ PKGBUILD2019-02-10 18:32:07 UTC (rev 431646)
@@ -2,7 +2,7 @@
 
 pkgname=gost
 pkgver=2.7.2
-pkgrel=1
+pkgrel=2
 pkgdesc="GO Simple Tunnel"
 arch=('x86_64')
 url="https://github.com/ginuerzh/gost;
@@ -18,10 +18,10 @@
   mkdir .gopath
   ln -sf "$PWD/gost-$pkgver/vendor" .gopath/src
   ln -s "$PWD/gost-$pkgver" .gopath/src/github.com/ginuerzh/gost
-  export GOPATH="$srcdir/.gopath"
 }
 
 build() {
+  export GOPATH="$srcdir/.gopath"
   cd gost-$pkgver/cmd/gost
   go build # -gccgoflags "$CFLAGS $LDFLAGS"
 }


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 18:32:26
  Author: eschwartz
Revision: 431647

archrelease: copy trunk to community-x86_64

Added:
  gost/repos/community-x86_64/LICENSE
(from rev 431646, gost/trunk/LICENSE)
  gost/repos/community-x86_64/PKGBUILD
(from rev 431646, gost/trunk/PKGBUILD)
Deleted:
  gost/repos/community-x86_64/LICENSE
  gost/repos/community-x86_64/PKGBUILD

--+
 LICENSE  |   44 
 PKGBUILD |   66 ++---
 2 files changed, 55 insertions(+), 55 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2019-02-10 18:32:07 UTC (rev 431646)
+++ LICENSE 2019-02-10 18:32:26 UTC (rev 431647)
@@ -1,22 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2014 郑锐
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 18:32:07 UTC (rev 431646)
+++ PKGBUILD2019-02-10 18:32:26 UTC (rev 431647)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=gost
-pkgver=2.7.2
-pkgrel=1
-pkgdesc="GO Simple Tunnel"
-arch=('x86_64')
-url="https://github.com/ginuerzh/gost;
-license=('MIT')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ginuerzh/gost/archive/v$pkgver.tar.gz;
-LICENSE)
-sha512sums=('a2ea18600a729b3f1976479888e4409cec4aabde8c2c332d963b612e95921b4f77a4d3d68bf983a60fc49fc4767ffc86a66e6b4c32bbdf527e73a3822d39bb81'
-
'8815c27a49d747e90fbcbf03c6011a76b95bc72a6c963ee8df9490e6aba9a3f4f9895e6a7759988aef123160ef8a6d2de85e8fce01c5980f8744e212792ad07c')
-
-prepare() {
-  mkdir .gopath
-  ln -sf "$PWD/gost-$pkgver/vendor" .gopath/src
-  ln -s "$PWD/gost-$pkgver" .gopath/src/github.com/ginuerzh/gost
-  export GOPATH="$srcdir/.gopath"
-}
-
-build() {
-  cd gost-$pkgver/cmd/gost
-  go build # -gccgoflags "$CFLAGS $LDFLAGS"
-}
-
-package() {
-  cd gost-$pkgver
-  install -Dm755 cmd/gost/gost "$pkgdir/usr/bin/gost"
-  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: gost/repos/community-x86_64/PKGBUILD (from rev 431646, 
gost/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 18:32:26 UTC (rev 431647)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+
+pkgname=gost
+pkgver=2.7.2
+pkgrel=2
+pkgdesc="GO Simple Tunnel"
+arch=('x86_64')
+url="https://github.com/ginuerzh/gost;
+license=('MIT')
+depends=('glibc')

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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 18:31:41
  Author: eschwartz
Revision: 431645

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 18:31:22 UTC (rev 431644)
+++ PKGBUILD2019-02-10 18:31:41 UTC (rev 431645)
@@ -1,38 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=git-lfs
-pkgver=2.6.1
-pkgrel=1
-pkgdesc="Git extension for versioning large files"
-arch=('x86_64')
-url="https://git-lfs.github.com;
-license=('MIT')
-makedepends=('go-pie' 'ruby-ronn' 'go-tools')
-depends=('git')
-source=("git+https://github.com/git-lfs/git-lfs.git#tag=v${pkgver};)
-#validpgpkeys=('4DB92D1D8CEE7E54F06713452D0C9BC12F82B3A1') # brian m. carlson 

-#validpgpkeys=('88ACE9B29196305BA9947552F1BA225C0223B187') # brian m. carlson 

-sha256sums=('SKIP')
-
-build(){
-  cd "$pkgname"
-  go build \
--gcflags "all=-trimpath=${PWD}" \
--asmflags "all=-trimpath=${PWD}" \
--ldflags "-extldflags ${LDFLAGS}" \
-.
-  make man
-}
-
-check(){
-  cd "$pkgname"
-  make test
-}
-
-package() {
-  cd "$pkgname"
-  install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname
-  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 -t "$pkgdir"/usr/share/man/man1 man/*.1 
-  install -Dm644 -t "$pkgdir"/usr/share/man/man5 man/*.5 
-}

Copied: git-lfs/repos/community-x86_64/PKGBUILD (from rev 431644, 
git-lfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 18:31:41 UTC (rev 431645)
@@ -0,0 +1,38 @@
+# Maintainer: Morten Linderud 
+
+pkgname=git-lfs
+pkgver=2.6.1
+pkgrel=2
+pkgdesc="Git extension for versioning large files"
+arch=('x86_64')
+url="https://git-lfs.github.com;
+license=('MIT')
+makedepends=('go-pie' 'ruby-ronn' 'go-tools')
+depends=('git')
+source=("git+https://github.com/git-lfs/git-lfs.git#tag=v${pkgver};)
+#validpgpkeys=('4DB92D1D8CEE7E54F06713452D0C9BC12F82B3A1') # brian m. carlson 

+#validpgpkeys=('88ACE9B29196305BA9947552F1BA225C0223B187') # brian m. carlson 

+sha256sums=('SKIP')
+
+build(){
+  cd "$pkgname"
+  go build \
+-gcflags "all=-trimpath=${PWD}" \
+-asmflags "all=-trimpath=${PWD}" \
+-ldflags "-extldflags ${LDFLAGS}" \
+.
+  make man
+}
+
+check(){
+  cd "$pkgname"
+  make test
+}
+
+package() {
+  cd "$pkgname"
+  install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname
+  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 -t "$pkgdir"/usr/share/man/man1 man/*.1
+  install -Dm644 -t "$pkgdir"/usr/share/man/man5 man/*.5
+}


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 18:31:22
  Author: eschwartz
Revision: 431644

upgpkg: git-lfs 2.6.1-2

golang staticlibs rebuild
Fixes CVE-2019-6486 which affects all packages relying on 'crypto/elliptic'

Modified:
  git-lfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 18:24:46 UTC (rev 431643)
+++ PKGBUILD2019-02-10 18:31:22 UTC (rev 431644)
@@ -2,7 +2,7 @@
 
 pkgname=git-lfs
 pkgver=2.6.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Git extension for versioning large files"
 arch=('x86_64')
 url="https://git-lfs.github.com;
@@ -33,6 +33,6 @@
   cd "$pkgname"
   install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname
   install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 -t "$pkgdir"/usr/share/man/man1 man/*.1 
-  install -Dm644 -t "$pkgdir"/usr/share/man/man5 man/*.5 
+  install -Dm644 -t "$pkgdir"/usr/share/man/man1 man/*.1
+  install -Dm644 -t "$pkgdir"/usr/share/man/man5 man/*.5
 }


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 18:25:14
  Author: felixonmars
Revision: 345850

upgpkg: perl-xml-libxml 2.0134-1

Modified:
  perl-xml-libxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 18:24:50 UTC (rev 345849)
+++ PKGBUILD2019-02-10 18:25:14 UTC (rev 345850)
@@ -4,7 +4,7 @@
 # Contributor: François Charette 
 
 pkgname=perl-xml-libxml
-pkgver=2.0133
+pkgver=2.0134
 pkgrel=1
 pkgdesc="Interface to the libxml library"
 arch=('x86_64')
@@ -17,7 +17,7 @@
 options=('!emptydirs')
 install=perl-xml-libxml.install
 source=(https://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
-sha512sums=('ba4685fe99e2b540461663212a43b0eb8c59e19f6b49d8c7e7738bc6b373c2b0506d8190cdd50fb13edb65db543da4095af3d70c2a6916d3fca0a738d2c9b1eb')
+sha512sums=('ecd39b8c268ab339d136feb4dcde2ec761fb29bc732625e8149ecb6f1c68eea8b76bfccb02df527518650cb3d1b8f14ae2fcd8255f117b5df68912ba2a08')
 
 build() {
   cd XML-LibXML-$pkgver


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 18:24:50
  Author: felixonmars
Revision: 345849

archrelease: copy trunk to extra-x86_64

Added:
  libuv/repos/extra-x86_64/PKGBUILD
(from rev 345848, libuv/trunk/PKGBUILD)
Deleted:
  libuv/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 18:24:31 UTC (rev 345848)
+++ PKGBUILD2019-02-10 18:24:50 UTC (rev 345849)
@@ -1,43 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=libuv
-pkgver=1.25.0
-pkgrel=1
-pkgdesc="Multi-platform support library with a focus on asynchronous I/O"
-arch=('x86_64')
-url="https://github.com/libuv/libuv;
-license=('custom')
-depends=('glibc' 'libnsl')
-makedepends=('python-sphinx')
-source=("https://github.com/libuv/libuv/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('d1024f9193e2ad69cc670441b74ff7c63ca7d295e9a7a43c90da6781a39352687465bfe7e852d6e9085c21821bf8d11c10139c7229759fdce567d809c605acfd')
-
-build() {
-   cd $pkgname-$pkgver
-   ./autogen.sh
-   ./configure --prefix=/usr
-   make
-   make man -C docs
-}
-
-check() {
-   cd $pkgname-$pkgver
-   make check
-}
-
-package() {
-   cd $pkgname-$pkgver
-
-   make DESTDIR="$pkgdir" install
-
-   install -Dm644 LICENSE \
-   "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-   install -Dm644 AUTHORS \
-   "$pkgdir"/usr/share/doc/$pkgname/AUTHORS
-   install -Dm644 README.md \
-   "$pkgdir"/usr/share/doc/$pkgname/README.md
-   install -Dm644 ChangeLog \
-   "$pkgdir"/usr/share/doc/$pkgname/ChangeLog
-   install -Dm644 docs/build/man/libuv.1 \
-   "$pkgdir"/usr/share/man/man1/libuv.1
-}

Copied: libuv/repos/extra-x86_64/PKGBUILD (from rev 345848, 
libuv/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 18:24:50 UTC (rev 345849)
@@ -0,0 +1,43 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=libuv
+pkgver=1.26.0
+pkgrel=1
+pkgdesc="Multi-platform support library with a focus on asynchronous I/O"
+arch=('x86_64')
+url="https://github.com/libuv/libuv;
+license=('custom')
+depends=('glibc' 'libnsl')
+makedepends=('python-sphinx')
+source=("https://github.com/libuv/libuv/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('c38e36d4d700090f48f9d997302968d9fe2382d21695b2d5b30776149f1739f66cd03458937a11309efe326bdad8c12abe8bf0f0e210d30cc2de4d9ab651d1e3')
+
+build() {
+   cd $pkgname-$pkgver
+   ./autogen.sh
+   ./configure --prefix=/usr
+   make
+   make man -C docs
+}
+
+check() {
+   cd $pkgname-$pkgver
+   make check
+}
+
+package() {
+   cd $pkgname-$pkgver
+
+   make DESTDIR="$pkgdir" install
+
+   install -Dm644 LICENSE \
+   "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+   install -Dm644 AUTHORS \
+   "$pkgdir"/usr/share/doc/$pkgname/AUTHORS
+   install -Dm644 README.md \
+   "$pkgdir"/usr/share/doc/$pkgname/README.md
+   install -Dm644 ChangeLog \
+   "$pkgdir"/usr/share/doc/$pkgname/ChangeLog
+   install -Dm644 docs/build/man/libuv.1 \
+   "$pkgdir"/usr/share/man/man1/libuv.1
+}


[arch-commits] Commit in perl-xml-libxml/repos/extra-x86_64 (4 files)

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 18:25:34
  Author: felixonmars
Revision: 345851

archrelease: copy trunk to extra-x86_64

Added:
  perl-xml-libxml/repos/extra-x86_64/PKGBUILD
(from rev 345850, perl-xml-libxml/trunk/PKGBUILD)
  perl-xml-libxml/repos/extra-x86_64/perl-xml-libxml.install
(from rev 345850, perl-xml-libxml/trunk/perl-xml-libxml.install)
Deleted:
  perl-xml-libxml/repos/extra-x86_64/PKGBUILD
  perl-xml-libxml/repos/extra-x86_64/perl-xml-libxml.install

-+
 PKGBUILD|   72 +++---
 perl-xml-libxml.install |   46 ++---
 2 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 18:25:14 UTC (rev 345850)
+++ PKGBUILD2019-02-10 18:25:34 UTC (rev 345851)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Jonathan Steel 
-# Contributor: Justin "juster" Davis 
-# Contributor: François Charette 
-
-pkgname=perl-xml-libxml
-pkgver=2.0133
-pkgrel=1
-pkgdesc="Interface to the libxml library"
-arch=('x86_64')
-url="http://search.cpan.org/dist/XML-LibXML;
-license=('GPL')
-depends=('libxml2' 'perl-xml-sax' 'perl-xml-namespacesupport')
-checkdepends=('perl-test-pod' 'perl-test-leaktrace' 'perl-cpan-changes' 
'perl-uri')
-provides=('perl-libxml' 'perl-xml-libxml-common')
-replaces=('perl-libxml' 'perl-xml-libxml-common')
-options=('!emptydirs')
-install=perl-xml-libxml.install
-source=(https://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
-sha512sums=('ba4685fe99e2b540461663212a43b0eb8c59e19f6b49d8c7e7738bc6b373c2b0506d8190cdd50fb13edb65db543da4095af3d70c2a6916d3fca0a738d2c9b1eb')
-
-build() {
-  cd XML-LibXML-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd XML-LibXML-$pkgver
-  make test
-}
-
-package() {
-  cd XML-LibXML-$pkgver
-  make pure_install doc_install DESTDIR="$pkgdir"/
-}

Copied: perl-xml-libxml/repos/extra-x86_64/PKGBUILD (from rev 345850, 
perl-xml-libxml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 18:25:34 UTC (rev 345851)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Jonathan Steel 
+# Contributor: Justin "juster" Davis 
+# Contributor: François Charette 
+
+pkgname=perl-xml-libxml
+pkgver=2.0134
+pkgrel=1
+pkgdesc="Interface to the libxml library"
+arch=('x86_64')
+url="http://search.cpan.org/dist/XML-LibXML;
+license=('GPL')
+depends=('libxml2' 'perl-xml-sax' 'perl-xml-namespacesupport')
+checkdepends=('perl-test-pod' 'perl-test-leaktrace' 'perl-cpan-changes' 
'perl-uri')
+provides=('perl-libxml' 'perl-xml-libxml-common')
+replaces=('perl-libxml' 'perl-xml-libxml-common')
+options=('!emptydirs')
+install=perl-xml-libxml.install
+source=(https://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
+sha512sums=('ecd39b8c268ab339d136feb4dcde2ec761fb29bc732625e8149ecb6f1c68eea8b76bfccb02df527518650cb3d1b8f14ae2fcd8255f117b5df68912ba2a08')
+
+build() {
+  cd XML-LibXML-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd XML-LibXML-$pkgver
+  make test
+}
+
+package() {
+  cd XML-LibXML-$pkgver
+  make pure_install doc_install DESTDIR="$pkgdir"/
+}

Deleted: perl-xml-libxml.install
===
--- perl-xml-libxml.install 2019-02-10 18:25:14 UTC (rev 345850)
+++ perl-xml-libxml.install 2019-02-10 18:25:34 UTC (rev 345851)
@@ -1,23 +0,0 @@
-post_install() {
-  echo ":: Installing SAX XML Parsers"
-  perl -MXML::SAX -e 
"XML::SAX->add_parser(q(XML::LibXML::SAX::Parser))->save_parsers()"
-  perl -MXML::SAX -e 
"XML::SAX->add_parser(q(XML::LibXML::SAX))->save_parsers()"
-}
-
-post_upgrade() {
-  if [[ ! -f /usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini ]]; then
-post_install
-  else
-libxmlcount=`grep -c XML::LibXML::SAX 
/usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini`
-if [[ $libxmlcount == 0 ]]; then
-  post_install
-fi
-  fi
-}
-
-pre_remove() {
-  if [[ -f /usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini ]]; then
-perl -MXML::SAX -e 
"XML::SAX->remove_parser(q(XML::LibXML::SAX::Parser))->save_parsers()"
-perl -MXML::SAX -e 
"XML::SAX->remove_parser(q(XML::LibXML::SAX))->save_parsers()"
-  fi
-}

Copied: perl-xml-libxml/repos/extra-x86_64/perl-xml-libxml.install (from rev 
345850, perl-xml-libxml/trunk/perl-xml-libxml.install)
===
--- perl-xml-libxml.install (rev 0)
+++ perl-xml-libxml.install 2019-02-10 18:25:34 UTC (rev 345851)
@@ -0,0 +1,23 @@
+post_install() {
+  echo ":: Installing SAX XML Parsers"
+  perl -MXML::SAX -e 
"XML::SAX->add_parser(q(XML::LibXML::SAX::Parser))->save_parsers()"
+  perl -MXML::SAX -e 

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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 18:24:46
  Author: felixonmars
Revision: 431643

archrelease: copy trunk to community-any

Added:
  dns-lexicon/repos/community-any/PKGBUILD
(from rev 431642, dns-lexicon/trunk/PKGBUILD)
Deleted:
  dns-lexicon/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 18:24:26 UTC (rev 431642)
+++ PKGBUILD2019-02-10 18:24:46 UTC (rev 431643)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=dns-lexicon
-pkgver=3.1.4
-pkgrel=1
-pkgdesc="Manipulate DNS records on various DNS providers in a 
standardized/agnostic way"
-arch=('any')
-url="https://github.com/AnalogJ/lexicon;
-license=('MIT')
-depends=('python-future' 'python-tldextract' 'python-cryptography' 
'python-yaml' 'python-setuptools'
- # requests[security] Expanded:
- 'python-requests' 'python-pyopenssl' 'python-idna')
-optdepends=('python-softlayer: for SoftLayer support'
-'python-boto3: for Route53 support'
-'python-pynamecheap: for Namecheap support'
-'python-zeep: for Subreg support'
-'python-xmltodict: for Plesk support'
-'python-beautifulsoup4: for Henet support'
-'python-localzone: for localzone support')
-checkdepends=('python-pytest-runner' 'python-vcrpy' 'python-softlayer' 
'python-boto3' 'python-mock'
-  'python-pynamecheap' 'python-zeep' 'python-xmltodict' 
'python-beautifulsoup4'
-  'python-localzone' 'bind-tools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/AnalogJ/lexicon/archive/v$pkgver.tar.gz;)
-sha512sums=('89739e1a8dceda3802b8a6cf6a6fda709ee9d3bad4fd8a9382531aec747c46323202788eecb2284f1d232cfc61794f3e0782206b8bd48b04721608acb909e4fc')
-
-build() {
-  cd lexicon-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd lexicon-$pkgver
-  python setup.py pytest --addopts '--ignore 
lexicon/tests/providers/test_transip.py'
-}
-
-package() {
-  cd lexicon-$pkgver
-  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dns-lexicon/repos/community-any/PKGBUILD (from rev 431642, 
dns-lexicon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 18:24:46 UTC (rev 431643)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+pkgname=dns-lexicon
+pkgver=3.1.5
+pkgrel=1
+pkgdesc="Manipulate DNS records on various DNS providers in a 
standardized/agnostic way"
+arch=('any')
+url="https://github.com/AnalogJ/lexicon;
+license=('MIT')
+depends=('python-future' 'python-tldextract' 'python-cryptography' 
'python-yaml' 'python-setuptools'
+ # requests[security] Expanded:
+ 'python-requests' 'python-pyopenssl' 'python-idna')
+optdepends=('python-softlayer: for SoftLayer support'
+'python-boto3: for Route53 support'
+'python-pynamecheap: for Namecheap support'
+'python-zeep: for Subreg support'
+'python-xmltodict: for Plesk support'
+'python-beautifulsoup4: for Henet support'
+'python-localzone: for localzone support')
+checkdepends=('python-pytest-runner' 'python-vcrpy' 'python-softlayer' 
'python-boto3' 'python-mock'
+  'python-pynamecheap' 'python-zeep' 'python-xmltodict' 
'python-beautifulsoup4'
+  'python-localzone' 'bind-tools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/AnalogJ/lexicon/archive/v$pkgver.tar.gz;)
+sha512sums=('0ca13787b6d0f3fa6ed6eb95e0df06bc8c82bc76ec54a48460fd978d4ad7df25b35f298c517a008f4300bea14b45749ebbb5dd10e91acdda4d4983bfe705d004')
+
+build() {
+  cd lexicon-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd lexicon-$pkgver
+  python setup.py pytest --addopts '--ignore 
lexicon/tests/providers/test_transip.py'
+}
+
+package() {
+  cd lexicon-$pkgver
+  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 18:24:26
  Author: felixonmars
Revision: 431642

upgpkg: dns-lexicon 3.1.5-1

Modified:
  dns-lexicon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 18:23:43 UTC (rev 431641)
+++ PKGBUILD2019-02-10 18:24:26 UTC (rev 431642)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=dns-lexicon
-pkgver=3.1.4
+pkgver=3.1.5
 pkgrel=1
 pkgdesc="Manipulate DNS records on various DNS providers in a 
standardized/agnostic way"
 arch=('any')
@@ -21,7 +21,7 @@
   'python-pynamecheap' 'python-zeep' 'python-xmltodict' 
'python-beautifulsoup4'
   'python-localzone' 'bind-tools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/AnalogJ/lexicon/archive/v$pkgver.tar.gz;)
-sha512sums=('89739e1a8dceda3802b8a6cf6a6fda709ee9d3bad4fd8a9382531aec747c46323202788eecb2284f1d232cfc61794f3e0782206b8bd48b04721608acb909e4fc')
+sha512sums=('0ca13787b6d0f3fa6ed6eb95e0df06bc8c82bc76ec54a48460fd978d4ad7df25b35f298c517a008f4300bea14b45749ebbb5dd10e91acdda4d4983bfe705d004')
 
 build() {
   cd lexicon-$pkgver


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 18:24:31
  Author: felixonmars
Revision: 345848

upgpkg: libuv 1.26.0-1

Modified:
  libuv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 16:55:22 UTC (rev 345847)
+++ PKGBUILD2019-02-10 18:24:31 UTC (rev 345848)
@@ -1,7 +1,7 @@
 # Maintainer: Massimiliano Torromeo 
 
 pkgname=libuv
-pkgver=1.25.0
+pkgver=1.26.0
 pkgrel=1
 pkgdesc="Multi-platform support library with a focus on asynchronous I/O"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('glibc' 'libnsl')
 makedepends=('python-sphinx')
 
source=("https://github.com/libuv/libuv/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('d1024f9193e2ad69cc670441b74ff7c63ca7d295e9a7a43c90da6781a39352687465bfe7e852d6e9085c21821bf8d11c10139c7229759fdce567d809c605acfd')
+sha512sums=('c38e36d4d700090f48f9d997302968d9fe2382d21695b2d5b30776149f1739f66cd03458937a11309efe326bdad8c12abe8bf0f0e210d30cc2de4d9ab651d1e3')
 
 build() {
cd $pkgname-$pkgver


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 18:23:20
  Author: eschwartz
Revision: 431640

archrelease: copy trunk to community-x86_64

Added:
  restic/repos/community-x86_64/PKGBUILD
(from rev 431639, restic/trunk/PKGBUILD)
Deleted:
  restic/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 18:23:07 UTC (rev 431639)
+++ PKGBUILD2019-02-10 18:23:20 UTC (rev 431640)
@@ -1,36 +0,0 @@
-# Maintainer: Morten Linderud 
-pkgname=restic
-pkgver=0.9.4
-pkgrel=1
-pkgdesc="Fast, secure, efficient backup program"
-arch=('x86_64')
-url="https://restic.net;
-license=('BSD')
-makedepends=('go-pie')
-optdepends=('fuse2: mount archive')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/restic/restic/archive/v${pkgver}.tar.gz;)
-sha256sums=('c7dca90fb6fd83cee8b9f6a2776f5839794341af1953d251bf06a91870be7a8e')
-
-prepare(){
-  export GOPATH="${srcdir}"
-  mkdir -p src/github.com/restic
-  #mv "${pkgname}-${pkgver}"/vendor/* src/
-  ln -rTsf "${pkgname}-${pkgver}" src/github.com/restic/restic
-}
-
-build(){
-  cd "src/github.com/restic/restic"
-  export GOPATH="${srcdir}"
-  go install -ldflags "-X 'main.version=${pkgver}' -extldflags ${LDFLAGS}" 
-gcflags "all=-trimpath=${GOPATH}" -asmflags "all=-trimpath=${GOPATH}" ./cmd/...
-}
-
-package() {
-  install -Dm755 bin/restic "${pkgdir}/usr/bin/restic"
-
-  cd "${pkgname}-${pkgver}"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm644 -t "$pkgdir/usr/share/man/man1/" doc/man/*.1
-  install -Dm644 doc/zsh-completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_restic"
-  install -Dm644 doc/bash-completion.sh 
"$pkgdir/usr/share/bash-completion/completions/restic"
-
-}

Copied: restic/repos/community-x86_64/PKGBUILD (from rev 431639, 
restic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 18:23:20 UTC (rev 431640)
@@ -0,0 +1,36 @@
+# Maintainer: Morten Linderud 
+pkgname=restic
+pkgver=0.9.4
+pkgrel=2
+pkgdesc="Fast, secure, efficient backup program"
+arch=('x86_64')
+url="https://restic.net;
+license=('BSD')
+makedepends=('go-pie')
+optdepends=('fuse2: mount archive')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/restic/restic/archive/v${pkgver}.tar.gz;)
+sha256sums=('c7dca90fb6fd83cee8b9f6a2776f5839794341af1953d251bf06a91870be7a8e')
+
+prepare(){
+  export GOPATH="${srcdir}"
+  mkdir -p src/github.com/restic
+  #mv "${pkgname}-${pkgver}"/vendor/* src/
+  ln -rTsf "${pkgname}-${pkgver}" src/github.com/restic/restic
+}
+
+build(){
+  cd "src/github.com/restic/restic"
+  export GOPATH="${srcdir}"
+  go install -ldflags "-X 'main.version=${pkgver}' -extldflags ${LDFLAGS}" 
-gcflags "all=-trimpath=${GOPATH}" -asmflags "all=-trimpath=${GOPATH}" ./cmd/...
+}
+
+package() {
+  install -Dm755 bin/restic "${pkgdir}/usr/bin/restic"
+
+  cd "${pkgname}-${pkgver}"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 -t "$pkgdir/usr/share/man/man1/" doc/man/*.1
+  install -Dm644 doc/zsh-completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_restic"
+  install -Dm644 doc/bash-completion.sh 
"$pkgdir/usr/share/bash-completion/completions/restic"
+
+}


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 18:23:43
  Author: felixonmars
Revision: 431641

archrelease: copy trunk to community-x86_64

Added:
  brook/repos/community-x86_64/PKGBUILD
(from rev 431640, brook/trunk/PKGBUILD)
Deleted:
  brook/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 18:23:20 UTC (rev 431640)
+++ PKGBUILD2019-02-10 18:23:43 UTC (rev 431641)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Kasei Wang 
-
-pkgname=brook
-pkgver=20180909
-pkgrel=1
-pkgdesc="A cross-platform proxy/vpn software"
-arch=('x86_64')
-url="https://github.com/txthinking/brook;
-license=('GPL')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/txthinking/brook/archive/v$pkgver.tar.gz;)
-sha512sums=('788067f01d79be5d35737ce04e4d3b4cf26111e0b567b27b1e295820759d46332f4cc8645c955b5c317ce5998e059baf4963be32ea4ecd7015abb77f98d8213e')
-
-prepare() {
-  cd brook-$pkgver
-
-  mkdir build
-  mkdir -p .gopath/src/github.com/txthinking
-  ln -sf "$PWD" .gopath/src/github.com/txthinking/brook
-  export GOPATH="$PWD/.gopath"
-
-  go get github.com/mdp/qrterminal github.com/patrickmn/go-cache 
github.com/txthinking/ant \
- github.com/txthinking/socks5 golang.org/x/net/proxy \
- github.com/urfave/cli github.com/txthinking/gotun2socks
-}
-
-build() {
-  cd brook-$pkgver/cli/brook
-  go build -o brook
-}
-
-package() {
-  cd brook-$pkgver/cli/brook
-  install -Dm755 brook "$pkgdir"/usr/bin/brook
-}

Copied: brook/repos/community-x86_64/PKGBUILD (from rev 431640, 
brook/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 18:23:43 UTC (rev 431641)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+# Contributor: Kasei Wang 
+
+pkgname=brook
+pkgver=20190205
+pkgrel=1
+pkgdesc="A cross-platform proxy/vpn software"
+arch=('x86_64')
+url="https://github.com/txthinking/brook;
+license=('GPL')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/txthinking/brook/archive/v$pkgver.tar.gz;)
+sha512sums=('f6670ca63c7a359b7ec0904cce60c641f56cbeed276c1d68918593f0b8d40c77f5c28f2f70f6c9938fb7fe0711ac72a06cd095061b6dad7b7f634165d9f0ae4e')
+
+prepare() {
+  cd brook-$pkgver
+
+  mkdir build
+  mkdir -p .gopath/src/github.com/txthinking
+  ln -sf "$PWD" .gopath/src/github.com/txthinking/brook
+  export GOPATH="$PWD/.gopath"
+
+  go get github.com/mdp/qrterminal github.com/patrickmn/go-cache 
github.com/txthinking/ant \
+ github.com/txthinking/socks5 golang.org/x/net/proxy \
+ github.com/urfave/cli github.com/txthinking/gotun2socks
+}
+
+build() {
+  cd brook-$pkgver/cli/brook
+  go build -o brook
+}
+
+package() {
+  cd brook-$pkgver/cli/brook
+  install -Dm755 brook "$pkgdir"/usr/bin/brook
+}


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 18:23:07
  Author: felixonmars
Revision: 431639

upgpkg: brook 20190205-1

Modified:
  brook/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 18:22:59 UTC (rev 431638)
+++ PKGBUILD2019-02-10 18:23:07 UTC (rev 431639)
@@ -2,7 +2,7 @@
 # Contributor: Kasei Wang 
 
 pkgname=brook
-pkgver=20180909
+pkgver=20190205
 pkgrel=1
 pkgdesc="A cross-platform proxy/vpn software"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('glibc')
 makedepends=('go-pie' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/txthinking/brook/archive/v$pkgver.tar.gz;)
-sha512sums=('788067f01d79be5d35737ce04e4d3b4cf26111e0b567b27b1e295820759d46332f4cc8645c955b5c317ce5998e059baf4963be32ea4ecd7015abb77f98d8213e')
+sha512sums=('f6670ca63c7a359b7ec0904cce60c641f56cbeed276c1d68918593f0b8d40c77f5c28f2f70f6c9938fb7fe0711ac72a06cd095061b6dad7b7f634165d9f0ae4e')
 
 prepare() {
   cd brook-$pkgver


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 18:22:59
  Author: eschwartz
Revision: 431638

upgpkg: restic 0.9.4-2

golang staticlibs rebuild
Fixes CVE-2019-6486 which affects all packages relying on 'crypto/elliptic'

Modified:
  restic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 18:22:35 UTC (rev 431637)
+++ PKGBUILD2019-02-10 18:22:59 UTC (rev 431638)
@@ -1,7 +1,7 @@
 # Maintainer: Morten Linderud 
 pkgname=restic
 pkgver=0.9.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Fast, secure, efficient backup program"
 arch=('x86_64')
 url="https://restic.net;


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 18:22:15
  Author: eschwartz
Revision: 431636

upgpkg: docker 1:18.09.1-2

golang staticlibs rebuild
Fixes CVE-2019-6486 which affects all packages relying on 'crypto/elliptic'

Modified:
  docker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 18:20:53 UTC (rev 431635)
+++ PKGBUILD2019-02-10 18:22:15 UTC (rev 431636)
@@ -2,7 +2,7 @@
 
 pkgname=docker
 pkgver=18.09.1
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc='Pack, ship and run any application as a lightweight container'
 arch=('x86_64')


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 18:22:35
  Author: eschwartz
Revision: 431637

archrelease: copy trunk to community-x86_64

Added:
  docker/repos/community-x86_64/PKGBUILD
(from rev 431636, docker/trunk/PKGBUILD)
  docker/repos/community-x86_64/docker.sysusers
(from rev 431636, docker/trunk/docker.sysusers)
Deleted:
  docker/repos/community-x86_64/PKGBUILD
  docker/repos/community-x86_64/docker.sysusers

-+
 PKGBUILD|  298 +++---
 docker.sysusers |4 
 2 files changed, 151 insertions(+), 151 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 18:22:15 UTC (rev 431636)
+++ PKGBUILD2019-02-10 18:22:35 UTC (rev 431637)
@@ -1,149 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer
-
-pkgname=docker
-pkgver=18.09.1
-pkgrel=1
-epoch=1
-pkgdesc='Pack, ship and run any application as a lightweight container'
-arch=('x86_64')
-url='https://www.docker.com/'
-license=('Apache')
-depends=('glibc' 'bridge-utils' 'iproute2' 'device-mapper' 'sqlite' 
'libsystemd'
- 'libseccomp' 'libtool' 'runc' 'containerd')
-makedepends=('git' 'go' 'btrfs-progs' 'cmake' 'systemd' 'go-md2man')
-optdepends=('btrfs-progs: btrfs backend support'
-'pigz: parallel gzip compressor support')
-# don't strip binaries! A sha1 is used to check binary consistency.
-options=('!strip' '!buildflags')
-# Use exact commit version from Dockerfile, see them in:
-# 
https://github.com/docker/docker-ce/blob/master/components/engine/hack/dockerfile/install/
-_TINI_COMMIT=fec3683b971d9c3ef73f284f176672c44b448662
-_LIBNETWORK_COMMIT=2cfbf9b1f98162a55829a21cc603c76072a75382
-source=("git+https://github.com/docker/docker-ce.git#tag=v$pkgver;
-
"git+https://github.com/docker/libnetwork.git#commit=$_LIBNETWORK_COMMIT;
-"git+https://github.com/krallin/tini.git#commit=$_TINI_COMMIT;
-"git+https://github.com/spf13/cobra.git;
-"$pkgname.sysusers")
-md5sums=('SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP'
- '9a8b2744db23b14ca3cd350fdf73c179')
-
-
-# create a fake go path directory and pushd into it
-# $1 real directory
-# $2 gopath directory
-_fake_gopath_pushd() {
-  mkdir -p "$GOPATH/src/${2%/*}"
-  rm -f "$GOPATH/src/$2"
-  ln -rsT "$1" "$GOPATH/src/$2"
-  pushd  "$GOPATH/src/$2" >/dev/null
-}
-
-_fake_gopath_popd() {
-  popd >/dev/null
-}
-
-build() {
-  ### check my mistakes on commit version
-  msg2 'Checking commit mismatch'
-  (
-  local _cfile
-  for _cfile in tini proxy; do
-. 
"$srcdir/docker-ce/components/engine/hack/dockerfile/install/$_cfile.installer"
-  done
-  local _commit _pkgbuild _dockerfile
-  for _commit in LIBNETWORK TINI; do
-_pkgbuild=_${_commit}_COMMIT
-_dockerfile=${_commit}_COMMIT
-if [[ ${!_pkgbuild} != ${!_dockerfile} ]]; then
-  error "Invalid $_commit commit, should be ${!_dockerfile}"
-  return 1
-fi
-  done
-  )
-
-  ### globals
-  export GOPATH="$srcdir"
-  export PATH="$GOPATH/bin:$PATH"
-
-  ### cli
-  msg2 'Building cli'
-  _fake_gopath_pushd docker-ce/components/cli github.com/docker/cli
-  DISABLE_WARN_OUTSIDE_CONTAINER=1 make VERSION=$pkgver-ce dynbinary
-  _fake_gopath_popd
-
-  ### daemon
-  msg2 'Building daemon'
-  _fake_gopath_pushd docker-ce/components/engine github.com/docker/docker
-  DOCKER_GITCOMMIT=$(cd "$srcdir"/docker-ce && git rev-parse --short HEAD) \
-DOCKER_BUILDTAGS='seccomp journald' \
-VERSION=$pkgver-ce \
-hack/make.sh dynbinary
-  _fake_gopath_popd
-
-  ### docker man pages
-  msg2 'Building man pages'
-  mkdir -p src/github.com/spf13
-  ln -rsfT cobra src/github.com/spf13/cobra
-  # use docker-ce cli version because they mess up with man dir
-  _fake_gopath_pushd docker-ce/components/cli github.com/docker/cli
-  make manpages 2>/dev/null
-  _fake_gopath_popd
-
-  ### docker proxy
-  msg2 'Building docker-proxy'
-  _fake_gopath_pushd libnetwork github.com/docker/libnetwork
-  go build -ldflags='-linkmode=external' github.com/docker/libnetwork/cmd/proxy
-  _fake_gopath_popd
-
-  ### docker-init
-  msg2 'Building docker-init'
-  _fake_gopath_pushd tini github.com/krallin/tini
-  cmake .
-  # we must use the static binary because it's started in a foreign os
-  make tini-static
-  _fake_gopath_popd
-}
-
-package() {
-  ### proxy
-  install -Dm755 libnetwork/proxy "$pkgdir/usr/bin/docker-proxy"
-  ### init
-  install -Dm755 tini/tini-static "$pkgdir/usr/bin/docker-init"
-  ### engine
-  cd "$srcdir"/docker-ce/components/engine
-  # binary
-  install -Dm755 {bundles/latest/dynbinary-daemon,"$pkgdir"/usr/bin}/dockerd
-  # systemd
-  install -Dm644 'contrib/init/systemd/docker.service' \
-"$pkgdir/usr/lib/systemd/system/docker.service"
-  install -Dm644 'contrib/init/systemd/docker.socket' \
-"$pkgdir/usr/lib/systemd/system/docker.socket"
-  install -Dm644 'contrib/udev/80-docker.rules' \
-

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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 18:20:53
  Author: felixonmars
Revision: 431635

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-skylighting/repos/community-staging-x86_64/PKGBUILD (from rev 
431634, haskell-skylighting/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-10 18:20:53 UTC (rev 431635)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting
+pkgname=haskell-skylighting
+pkgver=0.7.6
+pkgrel=1
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('GPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-attoparsec'
+ 'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-case-insensitive'
+ 'haskell-colour' 'haskell-hxt' 'haskell-pretty-show' 
'haskell-regex-pcre'
+ 'haskell-safe' 'haskell-skylighting-core' 'haskell-utf8-string')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('8e21ae154112c70108ddd83a18953b903933c77a5af6192d69adb29482a8e4aca69c679229f6f7a463cb4c3878960c2242cd7d4e0993eee360a3f23edfac0d7a')
+
+build() {
+cd $_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 \
+-fsystem-pcre -fexecutable
+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 $_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"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 18:20:33
  Author: felixonmars
Revision: 431634

upgpkg: haskell-skylighting 0.7.6-1

rebuild with skylighting 0.7.6, skylighting-core 0.7.6

Modified:
  haskell-skylighting/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 18:19:36 UTC (rev 431633)
+++ PKGBUILD2019-02-10 18:20:33 UTC (rev 431634)
@@ -2,8 +2,8 @@
 
 _hkgname=skylighting
 pkgname=haskell-skylighting
-pkgver=0.7.5
-pkgrel=9
+pkgver=0.7.6
+pkgrel=1
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('GPL2')
@@ -14,7 +14,7 @@
  'haskell-safe' 'haskell-skylighting-core' 'haskell-utf8-string')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('67b5b5fa4688d9d3f66a92d35c27bd394c3f63ea9033ee72491d7e34b8fc8526b0bf44d3c3956ac0d49dda00d9edc36458b8a07a4e7037e8629abb55b30aa8d0')
+sha512sums=('8e21ae154112c70108ddd83a18953b903933c77a5af6192d69adb29482a8e4aca69c679229f6f7a463cb4c3878960c2242cd7d4e0993eee360a3f23edfac0d7a')
 
 build() {
 cd $_hkgname-$pkgver


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

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 18:19:36
  Author: felixonmars
Revision: 431633

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-skylighting-core/repos/community-staging-x86_64/
  haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD
(from rev 431632, haskell-skylighting-core/trunk/PKGBUILD)

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

Copied: haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD (from 
rev 431632, haskell-skylighting-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-10 18:19:36 UTC (rev 431633)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting-core
+pkgname=haskell-skylighting-core
+pkgver=0.7.6
+pkgrel=1
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-attoparsec'
+ 'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-case-insensitive'
+ 'haskell-colour' 'haskell-hxt' 'haskell-regex-pcre' 'haskell-safe'
+ 'haskell-utf8-string')
+makedepends=('ghc' 'haskell-diff' 'haskell-hunit' 'haskell-pretty-show' 
'haskell-quickcheck'
+ 'haskell-random' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('0287a18b258c67447d0cebc56ab0702b74cf33fb725b51aa6fee7a442d7227f11b8d15ff0a38b871209787d6341810e800bf4f1c0d4be89a71d271cbf2a5a93b')
+
+build() {
+cd $_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 \
+-fexecutable -fsystem-pcre
+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 $_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-skylighting-core/trunk (PKGBUILD)

2019-02-10 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 18:19:19
  Author: felixonmars
Revision: 431632

upgpkg: haskell-skylighting-core 0.7.6-1

rebuild with skylighting 0.7.6, skylighting-core 0.7.6

Modified:
  haskell-skylighting-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 18:18:05 UTC (rev 431631)
+++ PKGBUILD2019-02-10 18:19:19 UTC (rev 431632)
@@ -2,8 +2,8 @@
 
 _hkgname=skylighting-core
 pkgname=haskell-skylighting-core
-pkgver=0.7.5
-pkgrel=9
+pkgver=0.7.6
+pkgrel=1
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('BSD')
@@ -16,7 +16,7 @@
  'haskell-random' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-hunit'
  'haskell-tasty-quickcheck')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('e86fae8b77426d960f2095d5d2e70f676ff085f0409a9306fe69ccdf1739a2b5aee844b8db070e6afc49a2a2e77b19018e78ea85e85a5e3ded9ee12161eefbb6')
+sha512sums=('0287a18b258c67447d0cebc56ab0702b74cf33fb725b51aa6fee7a442d7227f11b8d15ff0a38b871209787d6341810e800bf4f1c0d4be89a71d271cbf2a5a93b')
 
 build() {
 cd $_hkgname-$pkgver


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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 18:18:05
  Author: eschwartz
Revision: 431631

archrelease: copy trunk to community-x86_64

Added:
  kcptun/repos/community-x86_64/PKGBUILD
(from rev 431630, kcptun/trunk/PKGBUILD)
  kcptun/repos/community-x86_64/kcptun-server@.service
(from rev 431630, kcptun/trunk/kcptun-server@.service)
  kcptun/repos/community-x86_64/kcptun@.service
(from rev 431630, kcptun/trunk/kcptun@.service)
Deleted:
  kcptun/repos/community-x86_64/PKGBUILD
  kcptun/repos/community-x86_64/kcptun-server@.service
  kcptun/repos/community-x86_64/kcptun@.service

+
 PKGBUILD   |  100 +++
 kcptun-server@.service |   22 +-
 kcptun@.service|   26 ++--
 3 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 18:17:42 UTC (rev 431630)
+++ PKGBUILD2019-02-10 18:18:05 UTC (rev 431631)
@@ -1,50 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Kasei Wang 
-
-pkgname=kcptun
-pkgver=20190109
-pkgrel=1
-pkgdesc="A Secure Tunnel Based On KCP with N:M Multiplexing"
-arch=('x86_64')
-url="https://github.com/xtaci/kcptun;
-license=('MIT')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/xtaci/kcptun/archive/v$pkgver.tar.gz;
-'kcptun@.service' 'kcptun-server@.service')
-sha512sums=('189e6af0643e0538de06b69a4399e27762b002af78ebefb4b8971e3fbc734f9f6267f265f992d97947bc6b2e4f10e1cbc652a737320217f25c19e57b2c9d7e03'
-
'6fbe0bd687ec9927fe46484f97a0e1a7605c74af673d2a2257a41819bcbf8b704c1ab8b063993251fc3803fa3caf38b7bfc3cededbd7fe1b57c5e2d234c2e6f6'
-
'5526608f2f5056462813812436605d537a5da950d7d2b5b93dab1da443b25ebf15f69609d18ba1c318b0cc75fcc2a8e14f0d33ff7765035063dd89c041b1bd11')
-
-prepare() {
-  cd kcptun-$pkgver
-
-  mkdir build
-  mkdir -p .gopath/src/github.com/xtaci
-  ln -sf "$PWD" .gopath/src/github.com/xtaci/kcptun
-  export GOPATH="$PWD/.gopath"
-
-  go get golang.org/x/crypto/pbkdf2 github.com/xtaci/smux 
github.com/xtaci/kcp-go \
- github.com/urfave/cli github.com/pkg/errors github.com/golang/snappy
-}
-
-build() {
-  cd "$srcdir"/kcptun-$pkgver/client
-  go build -o build/kcptun-client -ldflags "-X main.VERSION=$pkgver" # 
-gccgoflags "$CFLAGS $LDFLAGS"
-
-  cd "$srcdir"/kcptun-$pkgver/server
-  go build -o build/kcptun-server -ldflags "-X main.VERSION=$pkgver" # 
-gccgoflags "$CFLAGS $LDFLAGS"
-}
-
-package() {
-  cd kcptun-$pkgver
-
-  install -Dm755 client/build/kcptun-client "$pkgdir"/usr/bin/kcptun-client
-  install -Dm755 server/build/kcptun-server "$pkgdir"/usr/bin/kcptun-server
-
-  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.md
-
-  install -dm755 "$pkgdir"/etc/kcptun
-  install -Dm644 "$srcdir/kcptun@.service" 
"$pkgdir"/usr/lib/systemd/system/kcptun@.service
-  install -Dm644 "$srcdir/kcptun-server@.service" 
"$pkgdir"/usr/lib/systemd/system/kcptun-server@.service
-}

Copied: kcptun/repos/community-x86_64/PKGBUILD (from rev 431630, 
kcptun/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 18:18:05 UTC (rev 431631)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Kasei Wang 
+
+pkgname=kcptun
+pkgver=20190109
+pkgrel=2
+pkgdesc="A Secure Tunnel Based On KCP with N:M Multiplexing"
+arch=('x86_64')
+url="https://github.com/xtaci/kcptun;
+license=('MIT')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/xtaci/kcptun/archive/v$pkgver.tar.gz;
+'kcptun@.service' 'kcptun-server@.service')
+sha512sums=('189e6af0643e0538de06b69a4399e27762b002af78ebefb4b8971e3fbc734f9f6267f265f992d97947bc6b2e4f10e1cbc652a737320217f25c19e57b2c9d7e03'
+
'6fbe0bd687ec9927fe46484f97a0e1a7605c74af673d2a2257a41819bcbf8b704c1ab8b063993251fc3803fa3caf38b7bfc3cededbd7fe1b57c5e2d234c2e6f6'
+
'5526608f2f5056462813812436605d537a5da950d7d2b5b93dab1da443b25ebf15f69609d18ba1c318b0cc75fcc2a8e14f0d33ff7765035063dd89c041b1bd11')
+
+prepare() {
+  cd kcptun-$pkgver
+
+  mkdir build
+  mkdir -p .gopath/src/github.com/xtaci
+  ln -sf "$PWD" .gopath/src/github.com/xtaci/kcptun
+  export GOPATH="$PWD/.gopath"
+
+  go get golang.org/x/crypto/pbkdf2 github.com/xtaci/smux 
github.com/xtaci/kcp-go \
+ github.com/urfave/cli github.com/pkg/errors github.com/golang/snappy
+}
+
+build() {
+  cd "$srcdir"/kcptun-$pkgver/client
+  go build -o build/kcptun-client -ldflags "-X main.VERSION=$pkgver" # 
-gccgoflags "$CFLAGS $LDFLAGS"
+
+  cd "$srcdir"/kcptun-$pkgver/server
+  go build -o build/kcptun-server -ldflags "-X main.VERSION=$pkgver" # 
-gccgoflags "$CFLAGS $LDFLAGS"
+}
+
+package() {
+  cd kcptun-$pkgver
+
+  install -Dm755 client/build/kcptun-client "$pkgdir"/usr/bin/kcptun-client
+  install -Dm755 

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

2019-02-10 Thread Eli Schwartz via arch-commits
Date: Sunday, February 10, 2019 @ 18:17:42
  Author: eschwartz
Revision: 431630

upgpkg: kcptun 20190109-2

golang staticlibs rebuild
Fixes CVE-2019-6486 which affects all packages relying on 'crypto/elliptic'

Modified:
  kcptun/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 17:56:15 UTC (rev 431629)
+++ PKGBUILD2019-02-10 18:17:42 UTC (rev 431630)
@@ -3,7 +3,7 @@
 
 pkgname=kcptun
 pkgver=20190109
-pkgrel=1
+pkgrel=2
 pkgdesc="A Secure Tunnel Based On KCP with N:M Multiplexing"
 arch=('x86_64')
 url="https://github.com/xtaci/kcptun;


[arch-commits] Commit in vim-jedi/repos/community-any (3 files)

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 17:56:15
  Author: anthraxx
Revision: 431629

archrelease: copy trunk to community-any

Added:
  vim-jedi/repos/community-any/PKGBUILD
(from rev 431628, vim-jedi/trunk/PKGBUILD)
Deleted:
  vim-jedi/repos/community-any/PKGBUILD
  vim-jedi/repos/community-any/vim-jedi.install

--+
 PKGBUILD |   79 ++---
 vim-jedi.install |   19 
 2 files changed, 39 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 17:56:08 UTC (rev 431628)
+++ PKGBUILD2019-02-10 17:56:15 UTC (rev 431629)
@@ -1,40 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Maintainer: Levente Polyak 
-# Contributor: Danilo Bargen 
-
-pkgname=vim-jedi
-_reponame=jedi-vim
-pkgver=0.9.0
-pkgrel=1
-pkgdesc='Vim plugin for jedi, an awesome Python autocompletion'
-arch=('any')
-url="https://github.com/davidhalter/jedi-vim;
-license=('MIT')
-depends=('vim' 'python-jedi' 'python')
-optdepends=('vim-supertab: tab completion'
-'python2-jedi: Python 2 support')
-checkdepends=('python-pytest')
-groups=('vim-plugins')
-options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/davidhalter/${_reponame}/archive/${pkgver}.tar.gz)
-sha256sums=('e53ef98472dd4789d5382f5082c0c25bf713264422389fca2f2a9bcddc1435d5')
-install=${pkgname}.install
-
-check() {
-  cd ${_reponame}-${pkgver}
-  py.test
-}
-
-package() {
-  cd ${_reponame}-${pkgver}
-
-  install -d "${pkgdir}/usr/share/vim/vimfiles"
-  cp -dpr --no-preserve=ownership pythonx "${pkgdir}/usr/share/vim/vimfiles"
-  cp -dpr --no-preserve=ownership doc "${pkgdir}/usr/share/vim/vimfiles/doc"
-  cp -dpr --no-preserve=ownership after 
"${pkgdir}/usr/share/vim/vimfiles/after"
-  cp -dpr --no-preserve=ownership autoload 
"${pkgdir}/usr/share/vim/vimfiles/autoload"
-  cp -dpr --no-preserve=ownership ftplugin 
"${pkgdir}/usr/share/vim/vimfiles/ftplugin"
-  cp -dpr --no-preserve=ownership plugin 
"${pkgdir}/usr/share/vim/vimfiles/plugin"
-
-  install -Dm 644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: vim-jedi/repos/community-any/PKGBUILD (from rev 431628, 
vim-jedi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 17:56:15 UTC (rev 431629)
@@ -0,0 +1,39 @@
+# Maintainer: Lukas Fleischer 
+# Maintainer: Levente Polyak 
+# Contributor: Danilo Bargen 
+
+pkgname=vim-jedi
+_reponame=jedi-vim
+pkgver=0.9.0
+pkgrel=2
+pkgdesc='Vim plugin for jedi, an awesome Python autocompletion'
+url="https://github.com/davidhalter/jedi-vim;
+arch=('any')
+license=('MIT')
+depends=('vim' 'python-jedi' 'python')
+optdepends=('vim-supertab: tab completion'
+'python2-jedi: Python 2 support')
+checkdepends=('python-pytest')
+groups=('vim-plugins')
+options=('!emptydirs')
+source=(https://github.com/davidhalter/${_reponame}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('e53ef98472dd4789d5382f5082c0c25bf713264422389fca2f2a9bcddc1435d5')
+
+check() {
+  cd ${_reponame}-${pkgver}
+  py.test
+}
+
+package() {
+  cd ${_reponame}-${pkgver}
+
+  install -d "${pkgdir}/usr/share/vim/vimfiles"
+  cp -dpr --no-preserve=ownership pythonx "${pkgdir}/usr/share/vim/vimfiles"
+  cp -dpr --no-preserve=ownership doc "${pkgdir}/usr/share/vim/vimfiles/doc"
+  cp -dpr --no-preserve=ownership after 
"${pkgdir}/usr/share/vim/vimfiles/after"
+  cp -dpr --no-preserve=ownership autoload 
"${pkgdir}/usr/share/vim/vimfiles/autoload"
+  cp -dpr --no-preserve=ownership ftplugin 
"${pkgdir}/usr/share/vim/vimfiles/ftplugin"
+  cp -dpr --no-preserve=ownership plugin 
"${pkgdir}/usr/share/vim/vimfiles/plugin"
+
+  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}

Deleted: vim-jedi.install
===
--- vim-jedi.install2019-02-10 17:56:08 UTC (rev 431628)
+++ vim-jedi.install2019-02-10 17:56:15 UTC (rev 431629)
@@ -1,19 +0,0 @@
-warn_nopy3() {
-   py3grep=`vim --version | grep "\+python3"`
-if [ ${#py3grep} -le 1 ]
-then
-echo "-"
-echo -e "\e[1mWarning:\e[m"
-echo "Your vim install doesn't seem to support Python 3."
-echo "If that's the case you should install the python2 and 
python2-jedi packages."
-echo "-"
-fi
-}
-
-post_install() {
-warn_nopy3
-}
-
-post_upgrade() {
-warn_nopy3
-}


[arch-commits] Commit in vim-jedi/trunk (PKGBUILD vim-jedi.install)

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 17:56:08
  Author: anthraxx
Revision: 431628

upgpkg: vim-jedi 0.9.0-2 python 3.7 rebuild

Modified:
  vim-jedi/trunk/PKGBUILD
Deleted:
  vim-jedi/trunk/vim-jedi.install

--+
 PKGBUILD |9 -
 vim-jedi.install |   19 ---
 2 files changed, 4 insertions(+), 24 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 17:48:14 UTC (rev 431627)
+++ PKGBUILD2019-02-10 17:56:08 UTC (rev 431628)
@@ -5,10 +5,10 @@
 pkgname=vim-jedi
 _reponame=jedi-vim
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Vim plugin for jedi, an awesome Python autocompletion'
+url="https://github.com/davidhalter/jedi-vim;
 arch=('any')
-url="https://github.com/davidhalter/jedi-vim;
 license=('MIT')
 depends=('vim' 'python-jedi' 'python')
 optdepends=('vim-supertab: tab completion'
@@ -16,9 +16,8 @@
 checkdepends=('python-pytest')
 groups=('vim-plugins')
 options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/davidhalter/${_reponame}/archive/${pkgver}.tar.gz)
+source=(https://github.com/davidhalter/${_reponame}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
 sha256sums=('e53ef98472dd4789d5382f5082c0c25bf713264422389fca2f2a9bcddc1435d5')
-install=${pkgname}.install
 
 check() {
   cd ${_reponame}-${pkgver}
@@ -36,5 +35,5 @@
   cp -dpr --no-preserve=ownership ftplugin 
"${pkgdir}/usr/share/vim/vimfiles/ftplugin"
   cp -dpr --no-preserve=ownership plugin 
"${pkgdir}/usr/share/vim/vimfiles/plugin"
 
-  install -Dm 644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
 }

Deleted: vim-jedi.install
===
--- vim-jedi.install2019-02-10 17:48:14 UTC (rev 431627)
+++ vim-jedi.install2019-02-10 17:56:08 UTC (rev 431628)
@@ -1,19 +0,0 @@
-warn_nopy3() {
-   py3grep=`vim --version | grep "\+python3"`
-if [ ${#py3grep} -le 1 ]
-then
-echo "-"
-echo -e "\e[1mWarning:\e[m"
-echo "Your vim install doesn't seem to support Python 3."
-echo "If that's the case you should install the python2 and 
python2-jedi packages."
-echo "-"
-fi
-}
-
-post_install() {
-warn_nopy3
-}
-
-post_upgrade() {
-warn_nopy3
-}


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

2019-02-10 Thread Antonio Rojas via arch-commits
Date: Sunday, February 10, 2019 @ 17:48:14
  Author: arojas
Revision: 431627

archrelease: copy trunk to community-staging-x86_64

Added:
  openscad/repos/community-staging-x86_64/
  openscad/repos/community-staging-x86_64/CHANGELOG
(from rev 431626, openscad/trunk/CHANGELOG)
  openscad/repos/community-staging-x86_64/PKGBUILD
(from rev 431626, openscad/trunk/PKGBUILD)
  openscad/repos/community-staging-x86_64/openscad-boost-1.69.patch
(from rev 431626, openscad/trunk/openscad-boost-1.69.patch)

---+
 CHANGELOG |  151 
 PKGBUILD  |   63 ++
 openscad-boost-1.69.patch |   22 ++
 3 files changed, 236 insertions(+)

Copied: openscad/repos/community-staging-x86_64/CHANGELOG (from rev 431626, 
openscad/trunk/CHANGELOG)
===
--- community-staging-x86_64/CHANGELOG  (rev 0)
+++ community-staging-x86_64/CHANGELOG  2019-02-10 17:48:14 UTC (rev 431627)
@@ -0,0 +1,151 @@
+2018-02-07 Kyle Keen 
+   * 2015.03.03-15
+   - Switch to Qt5
+
+2017-12-27 Kyle Keen 
+   * 2015.03.03-14
+   - Rebuild for boost 1.66.0
+
+2017-09-10 Kyle Keen 
+   * 2015.03.03-13
+   - Rebuild for boost 1.65.1
+
+2017-08-03 felixonmars 
+   * 2015.03.03-12
+   - Rebuild for GLEW 2.1.0 rebuild
+
+2017-05-30 Kyle Keen 
+   * 2015.03.03-11
+   - Rebuild for cgal 4.10
+
+2017-05-22 Antonio Rojas 
+   * 2015.03.03-10
+   - Rebuild for boost 1.64
+
+2017-02-25 Antonio Rojas 
+   * 2015.03.03-9
+   - Rebuild for qscintilla 2.10
+
+2017-01-02 Antonio Rojas 
+   * 2015.03.03-8
+   - Rebuild for boost 1.63
+
+2016-10-08 Kyle Keen 
+   * 2015.03.03-7
+   - Rebuild for boost 1.62
+
+2016-09-20 Kyle Keen 
+   * 2015.03.03-6
+   - Rebuild for cgal 4.9
+
+2016-08-24 Kyle Keen 
+   * 2015.03.03-5
+   - Rebuild for boost 1.61
+
+2016-08-01 Kyle Keen 
+   * 2015.03.03-4
+   - Rebuild for glew
+
+2016-05-12 Kyle Keen 
+   * 2015.03.03-3
+   - Rebuild for boost-1.60.0-5
+
+2016-04-28 Kyle Keen 
+   * 2015.03.03-2
+   - Rebuild for install hooks
+
+2015-04-18 Kyle Keen 
+   * 2015.03.03-1
+   - Update to latest release
+   - Rebuild for cgal-4.8
+
+2015-11-16 Kyle Keen 
+   * 2015.03.02-1
+   - Bugfix release
+
+2015-10-19 Kyle Keen 
+   * 2015.03.01-5
+   - No changes
+   - Rebuild for cgal-4.7
+
+2015-10-02 foutrelis
+   * 2015.03.01-4
+   - No changes
+
+2015-04-29 Kyle Keen 
+   * 2015.03.01-3
+   - No changes
+   - Rebuild for qscintilla-2.9-1
+
+2015-04-22 Kyle Keen 
+   * 2015.03.01-2
+   - No changes
+   - Rebuild for boost-1.58.0-1
+
+2015-04-22 Kyle Keen 
+   * 2015.03.01-1
+   - Bugfix release
+
+2015-04-11 Kyle Keen 
+   * 2015.03-2
+   - No changes
+   - Rebuild for cgal-4.6-1
+
+2015-03-10 Kyle Keen 
+   * 2015.03-1
+   - New release
+   - Now uses qscintilla for the editor
+
+2014-11-04 Kyle Keen 
+   * 2014.03-5
+   - No changes
+   - Rebuild for boost-1.57.0-1
+
+2014-08-18 Kyle Keen 
+   * 2014.03-4
+   - No changes
+   - Rebuild for boost-1.56.0-1
+
+2014-08-18 Kyle Keen 
+   * 2014.03-3
+   - No changes
+   - Rebuild for glew-1.11.0-1
+
+2014-08-12 Kyle Keen 
+   * 2014.03-2
+   - No changes
+   - Rebuild for boost-1.56.0-1
+
+2014-03-09 Kyle Keen 
+
+   * 2014.03-1
+   - New release
+   - MIME associations
+
+2014-02-10 Kyle Keen 
+
+   * 2013.06-3
+   - Moved package to [community]
+   - Explicit boost depends
+   - Use official resources
+
+2014-02-07 Chirantan Ekbote 
+
+   * 2013.06-2
+   - Update makedepends since eigen3 has now become eigen in [extra]
+
+2013-06-19 Chirantan Ekbote 
+
+   * 2013.06-1 :
+   - Updated to version 2013.06
+
+2013-03-01 Chirantan Ekbote 
+
+   * 2013.01-2 :
+   Dependency qt replaced with qt4
+
+2013-01-23 Chirantan Ekbote 
+
+   * 2013.01-1 :
+   New upstream release.
+   Dependency eigen2 repaced by eigen3

Copied: openscad/repos/community-staging-x86_64/PKGBUILD (from rev 431626, 
openscad/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-10 17:48:14 UTC (rev 431627)
@@ -0,0 +1,63 @@
+# Maintainer: Kyle Keen 
+# Contributor: Chirantan Ekbote 
+# Contributor: Eric Anderson 
+# Contributor: Pierre DOUCET 
+pkgname=openscad
+pkgver=2015.03.03
+_ver=2015.03-3  # hopefully -X is temporary
+pkgrel=20
+pkgdesc="The programmers solid 3D CAD modeller"
+url="http://openscad.org/;
+arch=('x86_64')
+license=('GPL2')
+changelog=CHANGELOG
+depends=('qt5-base' 'qscintilla-qt5' 'cgal' 'opencsg' 'boost-libs' 
'shared-mime-info')

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

2019-02-10 Thread Antonio Rojas via arch-commits
Date: Sunday, February 10, 2019 @ 17:47:42
  Author: arojas
Revision: 431626

qscintilla 2.11 rebuild

Modified:
  openscad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 17:00:30 UTC (rev 431625)
+++ PKGBUILD2019-02-10 17:47:42 UTC (rev 431626)
@@ -5,7 +5,7 @@
 pkgname=openscad
 pkgver=2015.03.03
 _ver=2015.03-3  # hopefully -X is temporary
-pkgrel=19
+pkgrel=20
 pkgdesc="The programmers solid 3D CAD modeller"
 url="http://openscad.org/;
 arch=('x86_64')


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

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 17:00:30
  Author: anthraxx
Revision: 431625

archrelease: copy trunk to community-any

Added:
  python-pysnmp/repos/community-any/PKGBUILD
(from rev 431624, python-pysnmp/trunk/PKGBUILD)
Deleted:
  python-pysnmp/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 17:00:24 UTC (rev 431624)
+++ PKGBUILD2019-02-10 17:00:30 UTC (rev 431625)
@@ -1,62 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Karol Babioch 
-
-pkgbase=('python-pysnmp')
-pkgname=('python-pysnmp' 'python2-pysnmp')
-_pyname=pysnmp
-pkgver=4.4.8
-pkgrel=1
-pkgdesc='Open source and free implementation of v1/v2c/v3 SNMP engine'
-url='https://github.com/etingof/pysnmp'
-arch=('any')
-license=('BSD')
-makedepends=('python' 'python-setuptools' 'python-sphinx' 'python-pysmi' 
'python-pyasn1'
- 'python2' 'python2-setuptools' 'python2-sphinx' 'python2-pysmi' 
'python2-pyasn1')
-options=('!makeflags')
-source=(${_pyname}-${pkgver}.tar.gz::https://github.com/etingof/pysnmp/archive/v${pkgver}.tar.gz)
-sha512sums=('3d18fee5834544411740ab612f19535f43e268ee1fd6a661b1c007ca41fa9eb930d5cf9f9318f69db86405119310448e0972f8ad8f8b1aa5316c0ac8b7f5f55b')
-
-prepare() {
-  cp -a ${_pyname}-${pkgver}{,-py2}
-}
-
-build() {
-  export PYTHONPATH=.
-  (cd ${_pyname}-${pkgver}
-python setup.py build
-make -C docs text man
-  )
-  (cd ${_pyname}-${pkgver}-py2
-python2 setup.py build
-make -C docs text man
-  )
-}
-
-package_python-pysnmp() {
-  depends=('python' 'python-pysmi' 'python-pyasn1')
-  cd ${_pyname}-${pkgver}
-  python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  cp -r docs/build/text "${pkgdir}/usr/share/doc/${pkgname}"
-  cp -r examples -t "${pkgdir}/usr/share/doc/${pkgname}"
-
-  install -Dm 644 docs/build/man/${_pyname}.1 
"${pkgdir}/usr/share/man/man1/${_pyname}.1"
-  install -Dm 644 docs/build/man/${_pyname}.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-  install -Dm 644 LICENSE.rst -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-package_python2-pysnmp() {
-  depends=('python2' 'python2-pysmi' 'python2-pyasn1')
-  cd ${_pyname}-${pkgver}
-  python2 setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  cp -r docs/build/text "${pkgdir}/usr/share/doc/${pkgname}"
-  cp -r examples -t "${pkgdir}/usr/share/doc/${pkgname}"
-
-  install -Dm 644 docs/build/man/${_pyname}.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-  install -Dm 644 LICENSE.rst -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-pysnmp/repos/community-any/PKGBUILD (from rev 431624, 
python-pysnmp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 17:00:30 UTC (rev 431625)
@@ -0,0 +1,62 @@
+# Maintainer: Levente Polyak 
+# Contributor: Karol Babioch 
+
+pkgbase=('python-pysnmp')
+pkgname=('python-pysnmp' 'python2-pysnmp')
+_pyname=pysnmp
+pkgver=4.4.9
+pkgrel=1
+pkgdesc='Open source and free implementation of v1/v2c/v3 SNMP engine'
+url='https://github.com/etingof/pysnmp'
+arch=('any')
+license=('BSD')
+makedepends=('python' 'python-setuptools' 'python-sphinx' 'python-pysmi' 
'python-pyasn1'
+ 'python2' 'python2-setuptools' 'python2-sphinx' 'python2-pysmi' 
'python2-pyasn1')
+options=('!makeflags')
+source=(https://github.com/etingof/pysnmp/archive/v${pkgver}/${_pyname}-v${pkgver}.tar.gz)
+sha512sums=('978bf9db485b6f542d4db566409c606ab39f5c1ebc50478eba74c3a9ce0cc325f4f2014f18bd1e34a20db79b315274f7de45d9ca950a2c1bb79f7b85c5a8435b')
+
+prepare() {
+  cp -a ${_pyname}-${pkgver}{,-py2}
+}
+
+build() {
+  export PYTHONPATH=.
+  (cd ${_pyname}-${pkgver}
+python setup.py build
+make -C docs text man
+  )
+  (cd ${_pyname}-${pkgver}-py2
+python2 setup.py build
+make -C docs text man
+  )
+}
+
+package_python-pysnmp() {
+  depends=('python' 'python-pysmi' 'python-pyasn1')
+  cd ${_pyname}-${pkgver}
+  python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -r docs/build/text "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -r examples -t "${pkgdir}/usr/share/doc/${pkgname}"
+
+  install -Dm 644 docs/build/man/${_pyname}.1 
"${pkgdir}/usr/share/man/man1/${_pyname}.1"
+  install -Dm 644 docs/build/man/${_pyname}.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
+  install -Dm 644 LICENSE.rst -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_python2-pysnmp() {
+  depends=('python2' 'python2-pysmi' 'python2-pyasn1')
+  cd ${_pyname}-${pkgver}
+  python2 setup.py 

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

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 17:00:24
  Author: anthraxx
Revision: 431624

upgpkg: python-pysnmp 4.4.9-1

Modified:
  python-pysnmp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 16:56:59 UTC (rev 431623)
+++ PKGBUILD2019-02-10 17:00:24 UTC (rev 431624)
@@ -4,7 +4,7 @@
 pkgbase=('python-pysnmp')
 pkgname=('python-pysnmp' 'python2-pysnmp')
 _pyname=pysnmp
-pkgver=4.4.8
+pkgver=4.4.9
 pkgrel=1
 pkgdesc='Open source and free implementation of v1/v2c/v3 SNMP engine'
 url='https://github.com/etingof/pysnmp'
@@ -13,8 +13,8 @@
 makedepends=('python' 'python-setuptools' 'python-sphinx' 'python-pysmi' 
'python-pyasn1'
  'python2' 'python2-setuptools' 'python2-sphinx' 'python2-pysmi' 
'python2-pyasn1')
 options=('!makeflags')
-source=(${_pyname}-${pkgver}.tar.gz::https://github.com/etingof/pysnmp/archive/v${pkgver}.tar.gz)
-sha512sums=('3d18fee5834544411740ab612f19535f43e268ee1fd6a661b1c007ca41fa9eb930d5cf9f9318f69db86405119310448e0972f8ad8f8b1aa5316c0ac8b7f5f55b')
+source=(https://github.com/etingof/pysnmp/archive/v${pkgver}/${_pyname}-v${pkgver}.tar.gz)
+sha512sums=('978bf9db485b6f542d4db566409c606ab39f5c1ebc50478eba74c3a9ce0cc325f4f2014f18bd1e34a20db79b315274f7de45d9ca950a2c1bb79f7b85c5a8435b')
 
 prepare() {
   cp -a ${_pyname}-${pkgver}{,-py2}


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

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 16:56:59
  Author: anthraxx
Revision: 431623

archrelease: copy trunk to community-any

Added:
  python-engineio/repos/community-any/PKGBUILD
(from rev 431622, python-engineio/trunk/PKGBUILD)
Deleted:
  python-engineio/repos/community-any/PKGBUILD

--+
 PKGBUILD |  130 ++---
 1 file changed, 65 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 16:56:52 UTC (rev 431622)
+++ PKGBUILD2019-02-10 16:56:59 UTC (rev 431623)
@@ -1,65 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgbase=python-engineio
-pkgname=('python-engineio' 'python2-engineio')
-pkgver=3.3.0
-pkgrel=1
-pkgdesc='Python implementation of the Engine.IO realtime server'
-url='https://github.com/miguelgrinberg/python-engineio'
-arch=('any')
-license=('MIT')
-makedepends=('python-setuptools' 'python-sphinx' 'python-six' 
'python-eventlet' 'python-aiohttp' 'python-tornado'
- 'python-urllib3' 'python-websocket-client' 'python-gevent' 
'python-gevent-websocket' 'python-websockets'
- 'python2-setuptools' 'python2-sphinx' 'python2-six' 
'python2-eventlet' 'python2-tornado'
- 'python2-urllib3' 'python2-websocket-client' 'python2-gevent' 
'python2-gevent-websocket' 'python2-enum34')
-checkdepends=('python-mock' 'python-pytest' 'python-pytest-runner'
-  'python2-mock' 'python2-pytest' 'python2-pytest-runner')
-options=('!makeflags')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('4c78120d5471eb54c6aaa6848ae4ff0fd1a28bda1a16895f633d5b4698b33f19')
-sha512sums=('b22f689b3c2664fe01cf3a26ad8be5c1a30ce6a3b4f5edbd91dec189ab82f4500f76eca6428d4cc9d771b94ed9e18fd1b94063168eb3fad9752a8d7d1cb1c97d')
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  python setup.py build
-  python2 setup.py build
-  make -C docs man text SPHINXBUILD=sphinx-build
-}
-
-check() {
-  cd ${pkgbase}-${pkgver}
-  python setup.py test
-}
-
-package_python-engineio() {
-  depends=('python-six' 'python-urllib3' 'python-websocket-client' 
'python-websockets')
-  optdepends=('python-eventlet: eventlet driver'
-  'python-aiohttp: aiohttp driver'
-  'python-tornado: tornado driver'
-  'python-gevent: gevent driver'
-  'python-gevent-websocket: gevent driver')
-  cd ${pkgbase}-${pkgver}
-  python setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/man/python-engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-  rm -r "${pkgdir}"/usr/lib/python*/site-packages/tests
-}
-
-package_python2-engineio() {
-  depends=('python2-six' 'python2-urllib3' 'python2-enum34' 
'python2-websocket-client')
-  optdepends=('python2-eventlet: eventlet driver'
-  'python2-tornado: tornado driver'
-  'python2-gevent: gevent driver'
-  'python2-gevent-websocket: gevent driver')
-  cd ${pkgbase}-${pkgver}
-  python2 setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/man/python-engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-  rm -r "${pkgdir}"/usr/lib/python*/site-packages/tests
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-engineio/repos/community-any/PKGBUILD (from rev 431622, 
python-engineio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 16:56:59 UTC (rev 431623)
@@ -0,0 +1,65 @@
+# Maintainer: Levente Polyak 
+
+pkgbase=python-engineio
+pkgname=('python-engineio' 'python2-engineio')
+pkgver=3.3.1
+pkgrel=1
+pkgdesc='Python implementation of the Engine.IO realtime server'
+url='https://github.com/miguelgrinberg/python-engineio'
+arch=('any')
+license=('MIT')
+makedepends=('python-setuptools' 'python-sphinx' 'python-six' 
'python-eventlet' 'python-aiohttp' 'python-tornado'
+ 'python-urllib3' 'python-websocket-client' 'python-gevent' 
'python-gevent-websocket' 'python-websockets'
+ 'python2-setuptools' 'python2-sphinx' 'python2-six' 
'python2-eventlet' 'python2-tornado'
+ 'python2-urllib3' 'python2-websocket-client' 'python2-gevent' 
'python2-gevent-websocket' 'python2-enum34')
+checkdepends=('python-mock' 'python-pytest' 'python-pytest-runner'
+  'python2-mock' 'python2-pytest' 'python2-pytest-runner')
+options=('!makeflags')

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

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 16:56:52
  Author: anthraxx
Revision: 431622

upgpkg: python-engineio 3.3.1-1

Modified:
  python-engineio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 16:35:05 UTC (rev 431621)
+++ PKGBUILD2019-02-10 16:56:52 UTC (rev 431622)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=3.3.0
+pkgver=3.3.1
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -16,8 +16,8 @@
   'python2-mock' 'python2-pytest' 'python2-pytest-runner')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('4c78120d5471eb54c6aaa6848ae4ff0fd1a28bda1a16895f633d5b4698b33f19')
-sha512sums=('b22f689b3c2664fe01cf3a26ad8be5c1a30ce6a3b4f5edbd91dec189ab82f4500f76eca6428d4cc9d771b94ed9e18fd1b94063168eb3fad9752a8d7d1cb1c97d')
+sha256sums=('177371619e0fc4f062135e2caa0e14b52abe1e8767c28c000ed646939eede05c')
+sha512sums=('d8328624034712a08c72f92c13295ecef21a2375504baab3ff0e3d2731cb442ad6b05df4a01fa698a289b1d802e5adc0b2bd657f01bba86a5fdad3e9708899e5')
 
 build() {
   cd ${pkgbase}-${pkgver}


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

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 16:55:22
  Author: anthraxx
Revision: 345847

archrelease: copy trunk to extra-x86_64

Added:
  xscreensaver/repos/extra-x86_64/LICENSE
(from rev 345846, xscreensaver/trunk/LICENSE)
  xscreensaver/repos/extra-x86_64/PKGBUILD
(from rev 345846, xscreensaver/trunk/PKGBUILD)
Deleted:
  xscreensaver/repos/extra-x86_64/LICENSE
  xscreensaver/repos/extra-x86_64/PKGBUILD

--+
 LICENSE  |   20 ++---
 PKGBUILD |   89 -
 2 files changed, 63 insertions(+), 46 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2019-02-10 16:55:16 UTC (rev 345846)
+++ LICENSE 2019-02-10 16:55:22 UTC (rev 345847)
@@ -1,10 +0,0 @@
-/* xscreensaver, Copyright (c) 1991-2013 Jamie Zawinski 
- *
- * Permission to use, copy, modify, distribute, and sell this software and its
- * documentation for any purpose is hereby granted without fee, provided that
- * the above copyright notice appear in all copies and that both that
- * copyright notice and this permission notice appear in supporting
- * documentation.  No representations are made about the suitability of this
- * software for any purpose.  It is provided "as is" without express or 
- * implied warranty.
- */

Copied: xscreensaver/repos/extra-x86_64/LICENSE (from rev 345846, 
xscreensaver/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2019-02-10 16:55:22 UTC (rev 345847)
@@ -0,0 +1,10 @@
+/* xscreensaver, Copyright (c) 1991-2013 Jamie Zawinski 
+ *
+ * Permission to use, copy, modify, distribute, and sell this software and its
+ * documentation for any purpose is hereby granted without fee, provided that
+ * the above copyright notice appear in all copies and that both that
+ * copyright notice and this permission notice appear in supporting
+ * documentation.  No representations are made about the suitability of this
+ * software for any purpose.  It is provided "as is" without express or 
+ * implied warranty.
+ */

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 16:55:16 UTC (rev 345846)
+++ PKGBUILD2019-02-10 16:55:22 UTC (rev 345847)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=xscreensaver
-pkgver=5.40
-pkgrel=1
-pkgdesc="Screen saver and locker for the X Window System"
-arch=('x86_64')
-url="http://www.jwz.org/xscreensaver/;
-license=('BSD')
-depends=('libglade' 'libxmu' 'glu' 'xorg-appres' 'perl-libwww')
-makedepends=('bc' 'intltool' 'libxpm' 'gdm')
-optdepends=('gdm: for login manager support')
-backup=('etc/pam.d/xscreensaver')
-source=(http://www.jwz.org/xscreensaver/${pkgname}-${pkgver}.tar.gz
-   LICENSE)
-sha1sums=('82c7433fe008e6ea9ab8683cf3325a673b8a8233'
-  '3eedb8b91b13c29df9b1fe5cbb027e1470b802d2')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --with-x-app-defaults=/usr/share/X11/app-defaults \
---with-pam --with-login-manager --with-gtk --with-gl \
---without-gle --with-pixbuf --with-jpeg
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -d "${pkgdir}/etc/pam.d"
-  make install_prefix="${pkgdir}" install
-  install -D -m644 ../LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  chmod 755 "${pkgdir}/usr/bin/xscreensaver"
-  echo "NotShowIn=KDE;GNOME;" >> 
"${pkgdir}/usr/share/applications/xscreensaver-properties.desktop"
-}

Copied: xscreensaver/repos/extra-x86_64/PKGBUILD (from rev 345846, 
xscreensaver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 16:55:22 UTC (rev 345847)
@@ -0,0 +1,53 @@
+# Maintainer: Levente Polyak 
+# Contributor: Eric Bélanger 
+
+pkgname=xscreensaver
+pkgver=5.42
+pkgrel=1
+pkgdesc='Screen saver and locker for the X Window System'
+url='https://www.jwz.org/xscreensaver/'
+arch=('x86_64')
+license=('BSD')
+depends=('libglade' 'libxmu' 'glu' 'xorg-appres' 'perl-libwww')
+makedepends=('bc' 'intltool' 'libxpm' 'gdm')
+optdepends=('gdm: for login manager support')
+backup=('etc/pam.d/xscreensaver')
+source=(https://www.jwz.org/xscreensaver/${pkgname}-${pkgver}.tar.gz
+LICENSE)
+sha512sums=('84cde9364c933de720acd51a0bf75eb4d0642d60f62b92de89d932233eb5abb51e1edb53cd413b2dc4801a02cb68652a28d7d1f83cdaa8d8cdd1fee7d651eefd'
+
'863c699479b2ec2775a0d1cba22e615929194a14af164b3513e46a0c04229da6547255a4da8f7f1bbb40906898c124ed3c9ec2436b76b62affcb62385af9783e')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed 's|-std=c89||' -i configure.in
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib \
+

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

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 16:55:16
  Author: anthraxx
Revision: 345846

upgpkg: xscreensaver 5.42-1

Modified:
  xscreensaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 16:34:03 UTC (rev 345845)
+++ PKGBUILD2019-02-10 16:55:16 UTC (rev 345846)
@@ -1,27 +1,43 @@
-# Maintainer: Eric Bélanger 
+# Maintainer: Levente Polyak 
+# Contributor: Eric Bélanger 
 
 pkgname=xscreensaver
-pkgver=5.40
+pkgver=5.42
 pkgrel=1
-pkgdesc="Screen saver and locker for the X Window System"
+pkgdesc='Screen saver and locker for the X Window System'
+url='https://www.jwz.org/xscreensaver/'
 arch=('x86_64')
-url="http://www.jwz.org/xscreensaver/;
 license=('BSD')
 depends=('libglade' 'libxmu' 'glu' 'xorg-appres' 'perl-libwww')
 makedepends=('bc' 'intltool' 'libxpm' 'gdm')
 optdepends=('gdm: for login manager support')
 backup=('etc/pam.d/xscreensaver')
-source=(http://www.jwz.org/xscreensaver/${pkgname}-${pkgver}.tar.gz
-   LICENSE)
-sha1sums=('82c7433fe008e6ea9ab8683cf3325a673b8a8233'
-  '3eedb8b91b13c29df9b1fe5cbb027e1470b802d2')
+source=(https://www.jwz.org/xscreensaver/${pkgname}-${pkgver}.tar.gz
+LICENSE)
+sha512sums=('84cde9364c933de720acd51a0bf75eb4d0642d60f62b92de89d932233eb5abb51e1edb53cd413b2dc4801a02cb68652a28d7d1f83cdaa8d8cdd1fee7d651eefd'
+
'863c699479b2ec2775a0d1cba22e615929194a14af164b3513e46a0c04229da6547255a4da8f7f1bbb40906898c124ed3c9ec2436b76b62affcb62385af9783e')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed 's|-std=c89||' -i configure.in
+  autoreconf -fiv
+}
+
 build() {
   cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --with-x-app-defaults=/usr/share/X11/app-defaults \
---with-pam --with-login-manager --with-gtk --with-gl \
---without-gle --with-pixbuf --with-jpeg
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib \
+--with-x-app-defaults=/usr/share/X11/app-defaults \
+--with-pam \
+--with-login-manager \
+--with-gtk \
+--with-gl \
+--without-gle \
+--with-pixbuf \
+--with-jpeg
   make
 }
 
@@ -29,7 +45,9 @@
   cd ${pkgname}-${pkgver}
   install -d "${pkgdir}/etc/pam.d"
   make install_prefix="${pkgdir}" install
-  install -D -m644 ../LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 ../LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
   chmod 755 "${pkgdir}/usr/bin/xscreensaver"
   echo "NotShowIn=KDE;GNOME;" >> 
"${pkgdir}/usr/share/applications/xscreensaver-properties.desktop"
 }
+
+# vim: ts=2 sw=2 et:


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

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 16:34:59
  Author: anthraxx
Revision: 431620

upgpkg: sqlitebrowser 3.11.0-1

Modified:
  sqlitebrowser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 16:28:56 UTC (rev 431619)
+++ PKGBUILD2019-02-10 16:34:59 UTC (rev 431620)
@@ -1,27 +1,49 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Douglas Soares de Andrade 
+# Maintainer: Levente Polyak 
+# Contributor: Sergej Pupykin 
+# Contributor: Douglas Soares de Andrade 
 # Contributor: Michael Fellinger 
 
 pkgname=sqlitebrowser
-pkgver=3.10.1
+_gitcommit=3513bf9bbb159371104a537c9edb57092d5c609a
+pkgver=3.11.0
 pkgrel=1
-pkgdesc="SQLite Database browser is a light GUI editor for SQLite databases, 
built on top of Qt"
+pkgdesc='SQLite Database browser is a light GUI editor for SQLite databases, 
built on top of Qt'
+url='https://sqlitebrowser.org/'
 arch=('x86_64')
-url="http://sqlitebrowser.org/;
-license=('GPL')
-depends=('qt5-base' 'hicolor-icon-theme')
-makedepends=('cmake' 'qt5-tools')
-#source=(https://github.com/sqlitebrowser/sqlitebrowser/archive/sqlb-$pkgver.tar.gz)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/sqlitebrowser/sqlitebrowser/archive/v$pkgver.tar.gz;)
-sha256sums=('36eb53bc75192c687dce298c79f1532c410ce4ecbeeacfb07b9d02a307f16bef')
+license=('GPL3')
+depends=('qt5-base' 'hicolor-icon-theme' 'desktop-file-utils')
+makedepends=('git' 'cmake' 'qt5-tools')
+source=("git+https://github.com/sqlitebrowser/sqlitebrowser#commit=${_gitcommit}?signed;)
+sha256sums=('SKIP')
+validpgpkeys=('05E463FDB5802C3D00257F9C79EAD0AB3BD7DD2C') # Justin Clift (GPG 
key for signing git commits) 
 
+pkgver() {
+  cd ${pkgname}
+  git describe --always --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd ${pkgname}
+  mkdir -p build
+}
+
 build() {
-  cd $pkgname-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  cd ${pkgname}/build
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_TESTING=ON \
+..
   make
 }
 
+check() {
+  cd ${pkgname}/build
+  ctest -V
+}
+
 package() {
-  cd $pkgname-$pkgver
-  make install DESTDIR="$pkgdir"
+  cd ${pkgname}
+  make -C build install DESTDIR="${pkgdir}"
 }
+
+# vim: ts=2 sw=2 et:


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

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 16:35:05
  Author: anthraxx
Revision: 431621

archrelease: copy trunk to community-x86_64

Added:
  sqlitebrowser/repos/community-x86_64/PKGBUILD
(from rev 431620, sqlitebrowser/trunk/PKGBUILD)
Deleted:
  sqlitebrowser/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 16:34:59 UTC (rev 431620)
+++ PKGBUILD2019-02-10 16:35:05 UTC (rev 431621)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Douglas Soares de Andrade 
-# Contributor: Michael Fellinger 
-
-pkgname=sqlitebrowser
-pkgver=3.10.1
-pkgrel=1
-pkgdesc="SQLite Database browser is a light GUI editor for SQLite databases, 
built on top of Qt"
-arch=('x86_64')
-url="http://sqlitebrowser.org/;
-license=('GPL')
-depends=('qt5-base' 'hicolor-icon-theme')
-makedepends=('cmake' 'qt5-tools')
-#source=(https://github.com/sqlitebrowser/sqlitebrowser/archive/sqlb-$pkgver.tar.gz)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/sqlitebrowser/sqlitebrowser/archive/v$pkgver.tar.gz;)
-sha256sums=('36eb53bc75192c687dce298c79f1532c410ce4ecbeeacfb07b9d02a307f16bef')
-
-build() {
-  cd $pkgname-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make install DESTDIR="$pkgdir"
-}

Copied: sqlitebrowser/repos/community-x86_64/PKGBUILD (from rev 431620, 
sqlitebrowser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 16:35:05 UTC (rev 431621)
@@ -0,0 +1,49 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sergej Pupykin 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Michael Fellinger 
+
+pkgname=sqlitebrowser
+_gitcommit=3513bf9bbb159371104a537c9edb57092d5c609a
+pkgver=3.11.0
+pkgrel=1
+pkgdesc='SQLite Database browser is a light GUI editor for SQLite databases, 
built on top of Qt'
+url='https://sqlitebrowser.org/'
+arch=('x86_64')
+license=('GPL3')
+depends=('qt5-base' 'hicolor-icon-theme' 'desktop-file-utils')
+makedepends=('git' 'cmake' 'qt5-tools')
+source=("git+https://github.com/sqlitebrowser/sqlitebrowser#commit=${_gitcommit}?signed;)
+sha256sums=('SKIP')
+validpgpkeys=('05E463FDB5802C3D00257F9C79EAD0AB3BD7DD2C') # Justin Clift (GPG 
key for signing git commits) 
+
+pkgver() {
+  cd ${pkgname}
+  git describe --always --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd ${pkgname}
+  mkdir -p build
+}
+
+build() {
+  cd ${pkgname}/build
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_TESTING=ON \
+..
+  make
+}
+
+check() {
+  cd ${pkgname}/build
+  ctest -V
+}
+
+package() {
+  cd ${pkgname}
+  make -C build install DESTDIR="${pkgdir}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-10 Thread Andrzej Giniewicz via arch-commits
Date: Sunday, February 10, 2019 @ 16:28:56
  Author: aginiewicz
Revision: 431619

archrelease: copy trunk to community-any

Added:
  python-xlsxwriter/repos/community-any/PKGBUILD
(from rev 431618, python-xlsxwriter/trunk/PKGBUILD)
Deleted:
  python-xlsxwriter/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-10 16:28:48 UTC (rev 431618)
+++ PKGBUILD2019-02-10 16:28:56 UTC (rev 431619)
@@ -1,51 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-
-pkgbase=python-xlsxwriter
-pkgname=('python2-xlsxwriter' 'python-xlsxwriter')
-pkgver=1.1.2
-pkgrel=1
-pkgdesc="A Python module for creating Excel XLSX files"
-arch=('any')
-url="https://github.com/jmcnamara/XlsxWriter;
-license=('BSD')
-makedepends=('python2-setuptools' 'python-setuptools')
-source=("https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_${pkgver}.tar.gz;)
-sha1sums=('f577fe97dfaa606109165c21facdd7ced21e0626')
-
-prepare() {
-  cd "$srcdir"
-  cp -a XlsxWriter-RELEASE_${pkgver} XlsxWriter-py2-RELEASE_${pkgver}
-}
-
-build() {
-  msg "Building Python2"
-  cd "$srcdir"/XlsxWriter-py2-RELEASE_${pkgver}
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
-  python setup.py build
-}
-
-package_python2-xlsxwriter() {
-  depends=('python2')
-
-  cd "$srcdir"/XlsxWriter-py2-RELEASE_${pkgver}
-
-  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -D -m644 "LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  mv "$pkgdir"/usr/bin/vba_extract{,2}.py
-}
-
-package_python-xlsxwriter() {
-  depends=('python')
-
-  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
-
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -D -m644 "LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-

Copied: python-xlsxwriter/repos/community-any/PKGBUILD (from rev 431618, 
python-xlsxwriter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-10 16:28:56 UTC (rev 431619)
@@ -0,0 +1,51 @@
+# Maintainer: Andrzej Giniewicz 
+
+pkgbase=python-xlsxwriter
+pkgname=('python2-xlsxwriter' 'python-xlsxwriter')
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="A Python module for creating Excel XLSX files"
+arch=('any')
+url="https://github.com/jmcnamara/XlsxWriter;
+license=('BSD')
+makedepends=('python2-setuptools' 'python-setuptools')
+source=("https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_${pkgver}.tar.gz;)
+sha1sums=('0cdc277ee0e39306bf7897d0d570e5710a444a4e')
+
+prepare() {
+  cd "$srcdir"
+  cp -a XlsxWriter-RELEASE_${pkgver} XlsxWriter-py2-RELEASE_${pkgver}
+}
+
+build() {
+  # "Building Python2"
+  cd "$srcdir"/XlsxWriter-py2-RELEASE_${pkgver}
+  python2 setup.py build
+
+  # "Building Python3"
+  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
+  python setup.py build
+}
+
+package_python2-xlsxwriter() {
+  depends=('python2')
+
+  cd "$srcdir"/XlsxWriter-py2-RELEASE_${pkgver}
+
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -D -m644 "LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  mv "$pkgdir"/usr/bin/vba_extract{,2}.py
+}
+
+package_python-xlsxwriter() {
+  depends=('python')
+
+  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
+
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -D -m644 "LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+


  1   2   3   4   5   >