[arch-commits] Commit in lib32-libcurl-gnutls/repos (2 files)

2019-02-05 Thread Christian Hesse via arch-commits
Date: Wednesday, February 6, 2019 @ 07:48:51
  Author: eworm
Revision: 429711

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-libcurl-gnutls/repos/multilib-testing-x86_64/
  lib32-libcurl-gnutls/repos/multilib-testing-x86_64/PKGBUILD
(from rev 429710, lib32-libcurl-gnutls/trunk/PKGBUILD)

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

Copied: lib32-libcurl-gnutls/repos/multilib-testing-x86_64/PKGBUILD (from rev 
429710, lib32-libcurl-gnutls/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2019-02-06 07:48:51 UTC (rev 429711)
@@ -0,0 +1,61 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Lizao (Larry) Li 
+
+pkgname=lib32-libcurl-gnutls
+pkgver=7.64.0
+pkgrel=1
+pkgdesc='An URL retrieval library (linked against gnutls)'
+arch=('x86_64')
+url='https://curl.haxx.se'
+license=('MIT')
+depends=('lib32-curl' 'lib32-glibc' 'lib32-gnutls' 'lib32-libpsl'
+ 'lib32-libssh2' 'lib32-nettle' 'lib32-zlib' 'libcurl-gnutls')
+makedepends=('gcc-multilib')
+options=('strip')
+source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc})
+validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
+sha512sums=('ea0e68f9cbf2eb4f235d8506962dcc7709f769ef3526c0e4c130fdaf7186a1a13b303c6ce919cb9125bbf7c64ddf4f8efb3d9269b906f856e6d7b3def027fb81'
+'SKIP')
+
+build() {
+  cd curl-${pkgver}
+
+  export CC='gcc -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--disable-ldap \
+--disable-ldaps \
+--disable-manual \
+--disable-versioned-symbols \
+--enable-ipv6 \
+--enable-threaded-resolver \
+--without-gssapi \
+--with-libssh2 \
+--without-libidn \
+--without-ssl \
+--with-gnutls='/usr' \
+--with-random='/dev/urandom' \
+--with-ca-bundle='/etc/ssl/certs/ca-certificates.crt'
+
+  make -C lib
+}
+
+package() {
+  cd curl-${pkgver}
+
+  make -C lib DESTDIR="${pkgdir}" install
+
+  mv "${pkgdir}"/usr/lib32/libcurl{,-gnutls}.so.4.5.0
+  rm "${pkgdir}"/usr/lib32/libcurl.{a,so}*
+  for version in 3 4 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0; do
+ln -s libcurl-gnutls.so.4.5.0 
"${pkgdir}"/usr/lib32/libcurl-gnutls.so.${version}
+  done
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s libcurl-gnutls "${pkgdir}"/usr/share/licenses/lib32-libcurl-gnutls
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-05 Thread Christian Hesse via arch-commits
Date: Wednesday, February 6, 2019 @ 07:48:15
  Author: eworm
Revision: 429707

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-curl/repos/multilib-testing-x86_64/
  lib32-curl/repos/multilib-testing-x86_64/PKGBUILD
(from rev 429706, lib32-curl/trunk/PKGBUILD)

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

Copied: lib32-curl/repos/multilib-testing-x86_64/PKGBUILD (from rev 429706, 
lib32-curl/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2019-02-06 07:48:15 UTC (rev 429707)
@@ -0,0 +1,58 @@
+# Maintainer: Daniel Wallace 
+# Contributor: Dave Reisner 
+# Contributor: Angel Velasquez 
+# Contributor: Eric Belanger 
+# Contributor: Lucien Immink 
+# Contributor: Daniel J Griffiths 
+
+pkgname=lib32-curl
+_pkgname=curl
+pkgver=7.64.0
+pkgrel=1
+pkgdesc="An URL retrieval utility and library (32-bit)"
+arch=('x86_64')
+url="https://curl.haxx.se;
+license=('MIT')
+depends=('lib32-libssh2' 'lib32-krb5' 'lib32-libpsl' 'lib32-zlib' 
"${_pkgname}")
+source=("https://curl.haxx.se/download/$_pkgname-$pkgver.tar.gz"{,.asc})
+sha512sums=('ea0e68f9cbf2eb4f235d8506962dcc7709f769ef3526c0e4c130fdaf7186a1a13b303c6ce919cb9125bbf7c64ddf4f8efb3d9269b906f856e6d7b3def027fb81'
+'SKIP')
+validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
+
+build() {
+  cd "$_pkgname-$pkgver"
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --disable-dependency-tracking \
+  --disable-ldap \
+  --disable-ldaps \
+  --enable-ipv6 \
+  --enable-manual \
+  --enable-versioned-symbols \
+  --enable-threaded-resolver \
+  --with-gssapi \
+  --with-libssh2 \
+  --with-random=/dev/urandom \
+  --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt \
+  --libdir=/usr/lib32
+
+  make
+}
+
+package() {
+  cd "$_pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  rm -rf "${pkgdir}"/usr/{share,bin,include}
+
+  # license
+  install -d "$pkgdir/usr/share/licenses"
+  ln -s "$_pkgname" "$pkgdir/usr/share/licenses/$pkgname"
+}


[arch-commits] Commit in lib32-libcurl-compat/repos (2 files)

2019-02-05 Thread Christian Hesse via arch-commits
Date: Wednesday, February 6, 2019 @ 07:48:40
  Author: eworm
Revision: 429709

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-libcurl-compat/repos/multilib-testing-x86_64/
  lib32-libcurl-compat/repos/multilib-testing-x86_64/PKGBUILD
(from rev 429708, lib32-libcurl-compat/trunk/PKGBUILD)

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

Copied: lib32-libcurl-compat/repos/multilib-testing-x86_64/PKGBUILD (from rev 
429708, lib32-libcurl-compat/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2019-02-06 07:48:40 UTC (rev 429709)
@@ -0,0 +1,58 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Piotr Balcerowski 
+
+pkgname=lib32-libcurl-compat
+pkgver=7.64.0
+pkgrel=1
+pkgdesc='An URL retrieval library (without versioned symbols)'
+arch=('x86_64')
+url='https://curl.haxx.se'
+license=('MIT')
+depends=('lib32-curl' 'lib32-glibc' 'lib32-krb5' 'lib32-libssh2' 'lib32-libpsl'
+ 'lib32-openssl' 'lib32-zlib' 'libcurl-compat')
+options=('strip')
+validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
+source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc})
+sha512sums=('ea0e68f9cbf2eb4f235d8506962dcc7709f769ef3526c0e4c130fdaf7186a1a13b303c6ce919cb9125bbf7c64ddf4f8efb3d9269b906f856e6d7b3def027fb81'
+'SKIP')
+
+build() {
+  cd curl-${pkgver}
+
+  export CC='gcc -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--disable-ldap \
+--disable-ldaps \
+--disable-manual \
+--disable-versioned-symbols \
+--enable-ipv6 \
+--enable-threaded-resolver \
+--with-gssapi \
+--with-libssh2 \
+--with-random='/dev/urandom' \
+--with-ca-bundle='/etc/ssl/certs/ca-certificates.crt'
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make -C lib
+}
+
+package() {
+  cd curl-${pkgver}
+
+  make -C lib DESTDIR="${pkgdir}" install
+
+  mv "${pkgdir}"/usr/lib32/libcurl{,-compat}.so.4.5.0
+  rm "${pkgdir}"/usr/lib32/libcurl.{a,so}*
+  for version in 3 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0; do
+ln -s libcurl-compat.so.4.5.0 "${pkgdir}"/usr/lib32/libcurl.so.${version}
+  done
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s libcurl-compat "${pkgdir}"/usr/share/licenses/lib32-libcurl-compat
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-05 Thread Christian Hesse via arch-commits
Date: Wednesday, February 6, 2019 @ 07:48:44
  Author: eworm
Revision: 429710

upgpkg: lib32-libcurl-gnutls 7.64.0-1

new upstream release

Modified:
  lib32-libcurl-gnutls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-06 07:48:40 UTC (rev 429709)
+++ PKGBUILD2019-02-06 07:48:44 UTC (rev 429710)
@@ -2,8 +2,8 @@
 # Contributor: Lizao (Larry) Li 
 
 pkgname=lib32-libcurl-gnutls
-pkgver=7.63.0
-pkgrel=2
+pkgver=7.64.0
+pkgrel=1
 pkgdesc='An URL retrieval library (linked against gnutls)'
 arch=('x86_64')
 url='https://curl.haxx.se'
@@ -14,7 +14,7 @@
 options=('strip')
 source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc})
 validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
-sha512sums=('25ad69a1978de2178ac7a456e72152907203931ad895234c14781c27681ea2c5d6669794880c4ebae6e38b8014c6538bc88a6afec2c192210b6d491d60b8f691'
+sha512sums=('ea0e68f9cbf2eb4f235d8506962dcc7709f769ef3526c0e4c130fdaf7186a1a13b303c6ce919cb9125bbf7c64ddf4f8efb3d9269b906f856e6d7b3def027fb81'
 'SKIP')
 
 build() {


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

2019-02-05 Thread Christian Hesse via arch-commits
Date: Wednesday, February 6, 2019 @ 07:48:24
  Author: eworm
Revision: 429708

upgpkg: lib32-libcurl-compat 7.64.0-1

new upstream release

Modified:
  lib32-libcurl-compat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-06 07:48:15 UTC (rev 429707)
+++ PKGBUILD2019-02-06 07:48:24 UTC (rev 429708)
@@ -2,8 +2,8 @@
 # Contributor: Piotr Balcerowski 
 
 pkgname=lib32-libcurl-compat
-pkgver=7.63.0
-pkgrel=2
+pkgver=7.64.0
+pkgrel=1
 pkgdesc='An URL retrieval library (without versioned symbols)'
 arch=('x86_64')
 url='https://curl.haxx.se'
@@ -13,7 +13,7 @@
 options=('strip')
 validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
 source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc})
-sha512sums=('25ad69a1978de2178ac7a456e72152907203931ad895234c14781c27681ea2c5d6669794880c4ebae6e38b8014c6538bc88a6afec2c192210b6d491d60b8f691'
+sha512sums=('ea0e68f9cbf2eb4f235d8506962dcc7709f769ef3526c0e4c130fdaf7186a1a13b303c6ce919cb9125bbf7c64ddf4f8efb3d9269b906f856e6d7b3def027fb81'
 'SKIP')
 
 build() {


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

2019-02-05 Thread Christian Hesse via arch-commits
Date: Wednesday, February 6, 2019 @ 07:48:10
  Author: eworm
Revision: 429706

upgpkg: lib32-curl 7.64.0-1

new upstream release

Modified:
  lib32-curl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-06 07:47:51 UTC (rev 429705)
+++ PKGBUILD2019-02-06 07:48:10 UTC (rev 429706)
@@ -7,8 +7,8 @@
 
 pkgname=lib32-curl
 _pkgname=curl
-pkgver=7.63.0
-pkgrel=2
+pkgver=7.64.0
+pkgrel=1
 pkgdesc="An URL retrieval utility and library (32-bit)"
 arch=('x86_64')
 url="https://curl.haxx.se;
@@ -15,7 +15,7 @@
 license=('MIT')
 depends=('lib32-libssh2' 'lib32-krb5' 'lib32-libpsl' 'lib32-zlib' 
"${_pkgname}")
 source=("https://curl.haxx.se/download/$_pkgname-$pkgver.tar.gz"{,.asc})
-sha512sums=('25ad69a1978de2178ac7a456e72152907203931ad895234c14781c27681ea2c5d6669794880c4ebae6e38b8014c6538bc88a6afec2c192210b6d491d60b8f691'
+sha512sums=('ea0e68f9cbf2eb4f235d8506962dcc7709f769ef3526c0e4c130fdaf7186a1a13b303c6ce919cb9125bbf7c64ddf4f8efb3d9269b906f856e6d7b3def027fb81'
 'SKIP')
 validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
 


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

2019-02-05 Thread Christian Hesse via arch-commits
Date: Wednesday, February 6, 2019 @ 07:47:51
  Author: eworm
Revision: 429705

archrelease: copy trunk to community-x86_64

Added:
  libcurl-gnutls/repos/community-x86_64/PKGBUILD
(from rev 429704, libcurl-gnutls/trunk/PKGBUILD)
Deleted:
  libcurl-gnutls/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-06 07:47:45 UTC (rev 429704)
+++ PKGBUILD2019-02-06 07:47:51 UTC (rev 429705)
@@ -1,56 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Lizao (Larry) Li 
-
-pkgname=libcurl-gnutls
-pkgver=7.63.0
-pkgrel=2
-pkgdesc='An URL retrieval library (linked against gnutls)'
-arch=('x86_64')
-url='https://curl.haxx.se'
-license=('MIT')
-depends=('curl' 'glibc' 'gnutls' 'libpsl' 'nettle' 'zlib'
- 'libssh2.so')
-options=('strip')
-source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc})
-validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
-sha512sums=('25ad69a1978de2178ac7a456e72152907203931ad895234c14781c27681ea2c5d6669794880c4ebae6e38b8014c6538bc88a6afec2c192210b6d491d60b8f691'
-'SKIP')
-
-build() {
-  cd curl-${pkgver}
-
-  ./configure \
---prefix='/usr' \
---disable-ldap \
---disable-ldaps \
---disable-manual \
---disable-versioned-symbols \
---enable-ipv6 \
---enable-threaded-resolver \
---without-gssapi \
---with-libssh2 \
---without-libidn \
---without-ssl \
---with-gnutls='/usr' \
---with-random='/dev/urandom' \
---with-ca-bundle='/etc/ssl/certs/ca-certificates.crt'
-
-  make -C lib
-}
-
-package() {
-  cd curl-${pkgver}
-
-  make -C lib DESTDIR="${pkgdir}" install
-
-  mv "${pkgdir}"/usr/lib/libcurl{,-gnutls}.so.4.5.0
-  rm "${pkgdir}"/usr/lib/libcurl.{a,so}*
-  for version in 3 4 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0; do
-ln -s libcurl-gnutls.so.4.5.0 
"${pkgdir}"/usr/lib/libcurl-gnutls.so.${version}
-  done
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s curl "${pkgdir}"/usr/share/licenses/libcurl-gnutls
-}
-
-# vim: ts=2 sw=2 et:

Copied: libcurl-gnutls/repos/community-x86_64/PKGBUILD (from rev 429704, 
libcurl-gnutls/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-06 07:47:51 UTC (rev 429705)
@@ -0,0 +1,56 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Lizao (Larry) Li 
+
+pkgname=libcurl-gnutls
+pkgver=7.64.0
+pkgrel=1
+pkgdesc='An URL retrieval library (linked against gnutls)'
+arch=('x86_64')
+url='https://curl.haxx.se'
+license=('MIT')
+depends=('curl' 'glibc' 'gnutls' 'libpsl' 'nettle' 'zlib'
+ 'libssh2.so')
+options=('strip')
+source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc})
+validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
+sha512sums=('ea0e68f9cbf2eb4f235d8506962dcc7709f769ef3526c0e4c130fdaf7186a1a13b303c6ce919cb9125bbf7c64ddf4f8efb3d9269b906f856e6d7b3def027fb81'
+'SKIP')
+
+build() {
+  cd curl-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--disable-ldap \
+--disable-ldaps \
+--disable-manual \
+--disable-versioned-symbols \
+--enable-ipv6 \
+--enable-threaded-resolver \
+--without-gssapi \
+--with-libssh2 \
+--without-libidn \
+--without-ssl \
+--with-gnutls='/usr' \
+--with-random='/dev/urandom' \
+--with-ca-bundle='/etc/ssl/certs/ca-certificates.crt'
+
+  make -C lib
+}
+
+package() {
+  cd curl-${pkgver}
+
+  make -C lib DESTDIR="${pkgdir}" install
+
+  mv "${pkgdir}"/usr/lib/libcurl{,-gnutls}.so.4.5.0
+  rm "${pkgdir}"/usr/lib/libcurl.{a,so}*
+  for version in 3 4 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0; do
+ln -s libcurl-gnutls.so.4.5.0 
"${pkgdir}"/usr/lib/libcurl-gnutls.so.${version}
+  done
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s curl "${pkgdir}"/usr/share/licenses/libcurl-gnutls
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-05 Thread Christian Hesse via arch-commits
Date: Wednesday, February 6, 2019 @ 07:47:45
  Author: eworm
Revision: 429704

upgpkg: libcurl-gnutls 7.64.0-1

new upstream release

Modified:
  libcurl-gnutls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-06 07:47:38 UTC (rev 429703)
+++ PKGBUILD2019-02-06 07:47:45 UTC (rev 429704)
@@ -2,8 +2,8 @@
 # Contributor: Lizao (Larry) Li 
 
 pkgname=libcurl-gnutls
-pkgver=7.63.0
-pkgrel=2
+pkgver=7.64.0
+pkgrel=1
 pkgdesc='An URL retrieval library (linked against gnutls)'
 arch=('x86_64')
 url='https://curl.haxx.se'
@@ -13,7 +13,7 @@
 options=('strip')
 source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc})
 validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
-sha512sums=('25ad69a1978de2178ac7a456e72152907203931ad895234c14781c27681ea2c5d6669794880c4ebae6e38b8014c6538bc88a6afec2c192210b6d491d60b8f691'
+sha512sums=('ea0e68f9cbf2eb4f235d8506962dcc7709f769ef3526c0e4c130fdaf7186a1a13b303c6ce919cb9125bbf7c64ddf4f8efb3d9269b906f856e6d7b3def027fb81'
 'SKIP')
 
 build() {


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

2019-02-05 Thread Christian Hesse via arch-commits
Date: Wednesday, February 6, 2019 @ 07:47:20
  Author: eworm
Revision: 345316

archrelease: copy trunk to testing-x86_64

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

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

Copied: curl/repos/testing-x86_64/PKGBUILD (from rev 345315, 
curl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-02-06 07:47:20 UTC (rev 345316)
@@ -0,0 +1,50 @@
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez 
+# Contributor: Eric Belanger 
+# Contributor: Lucien Immink 
+# Contributor: Daniel J Griffiths 
+
+pkgname=curl
+pkgver=7.64.0
+pkgrel=1
+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"
+}


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

2019-02-05 Thread Christian Hesse via arch-commits
Date: Wednesday, February 6, 2019 @ 07:47:11
  Author: eworm
Revision: 345315

upgpkg: curl 7.64.0-1

new upstream release

Modified:
  curl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 23:56:11 UTC (rev 345314)
+++ PKGBUILD2019-02-06 07:47:11 UTC (rev 345315)
@@ -5,8 +5,8 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=curl
-pkgver=7.63.0
-pkgrel=4
+pkgver=7.64.0
+pkgrel=1
 pkgdesc="An URL retrieval utility and library"
 arch=('x86_64')
 url="https://curl.haxx.se;
@@ -14,19 +14,11 @@
 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}
- 
'curl-3399.patch::https://github.com/curl/curl/commit/6dc1780ea54129b3e6721fe9ee3f9d4f1d7abc1b.patch')
-sha512sums=('25ad69a1978de2178ac7a456e72152907203931ad895234c14781c27681ea2c5d6669794880c4ebae6e38b8014c6538bc88a6afec2c192210b6d491d60b8f691'
-'SKIP'
-
'8a351ee445f79e54b46cc584fc0c341875d012f1db6e858de1b790177f12c622361eeccec1758d439ef1d839c9688899dd761b949b33311aa717709ba6040c05')
+source=("https://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc})
+sha512sums=('ea0e68f9cbf2eb4f235d8506962dcc7709f769ef3526c0e4c130fdaf7186a1a13b303c6ce919cb9125bbf7c64ddf4f8efb3d9269b906f856e6d7b3def027fb81'
+'SKIP')
 validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
 
-prepare() {
-  cd "$pkgname-$pkgver"
-  # See https://github.com/curl/curl/issues/3392
-  patch -p1 -i "$srcdir/curl-3399.patch"
-}
-
 build() {
   cd "$pkgname-$pkgver"
 


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

2019-02-05 Thread Christian Hesse via arch-commits
Date: Wednesday, February 6, 2019 @ 07:47:38
  Author: eworm
Revision: 429703

archrelease: copy trunk to community-x86_64

Added:
  libcurl-compat/repos/community-x86_64/PKGBUILD
(from rev 429702, libcurl-compat/trunk/PKGBUILD)
Deleted:
  libcurl-compat/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-06 07:47:33 UTC (rev 429702)
+++ PKGBUILD2019-02-06 07:47:38 UTC (rev 429703)
@@ -1,54 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Piotr Balcerowski 
-
-pkgname=libcurl-compat
-pkgver=7.63.0
-pkgrel=2
-pkgdesc='An URL retrieval library (without versioned symbols)'
-arch=('x86_64')
-url='https://curl.haxx.se'
-license=('MIT')
-depends=('curl' 'glibc' 'krb5' 'openssl' 'libpsl' 'zlib'
- 'libssh2.so')
-options=('strip')
-source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc})
-validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
-sha512sums=('25ad69a1978de2178ac7a456e72152907203931ad895234c14781c27681ea2c5d6669794880c4ebae6e38b8014c6538bc88a6afec2c192210b6d491d60b8f691'
-'SKIP')
-
-build() {
-  cd curl-${pkgver}
-
-  ./configure \
---prefix='/usr' \
---disable-ldap \
---disable-ldaps \
---disable-manual \
---disable-versioned-symbols \
---enable-ipv6 \
---enable-threaded-resolver \
---with-gssapi \
---with-libssh2 \
---with-random='/dev/urandom' \
---with-ca-bundle='/etc/ssl/certs/ca-certificates.crt'
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make -C lib
-}
-
-package() {
-  cd curl-${pkgver}
-
-  make -C lib DESTDIR="${pkgdir}" install
-
-  mv "${pkgdir}"/usr/lib/libcurl{,-compat}.so.4.5.0
-  rm "${pkgdir}"/usr/lib/libcurl.{a,so}*
-  for version in 3 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0; do
-ln -s libcurl-compat.so.4.5.0 "${pkgdir}"/usr/lib/libcurl.so.${version}
-  done
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s curl "${pkgdir}"/usr/share/licenses/libcurl-compat
-}
-
-# vim: ts=2 sw=2 et:

Copied: libcurl-compat/repos/community-x86_64/PKGBUILD (from rev 429702, 
libcurl-compat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-06 07:47:38 UTC (rev 429703)
@@ -0,0 +1,54 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Piotr Balcerowski 
+
+pkgname=libcurl-compat
+pkgver=7.64.0
+pkgrel=1
+pkgdesc='An URL retrieval library (without versioned symbols)'
+arch=('x86_64')
+url='https://curl.haxx.se'
+license=('MIT')
+depends=('curl' 'glibc' 'krb5' 'openssl' 'libpsl' 'zlib'
+ 'libssh2.so')
+options=('strip')
+source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc})
+validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
+sha512sums=('ea0e68f9cbf2eb4f235d8506962dcc7709f769ef3526c0e4c130fdaf7186a1a13b303c6ce919cb9125bbf7c64ddf4f8efb3d9269b906f856e6d7b3def027fb81'
+'SKIP')
+
+build() {
+  cd curl-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--disable-ldap \
+--disable-ldaps \
+--disable-manual \
+--disable-versioned-symbols \
+--enable-ipv6 \
+--enable-threaded-resolver \
+--with-gssapi \
+--with-libssh2 \
+--with-random='/dev/urandom' \
+--with-ca-bundle='/etc/ssl/certs/ca-certificates.crt'
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make -C lib
+}
+
+package() {
+  cd curl-${pkgver}
+
+  make -C lib DESTDIR="${pkgdir}" install
+
+  mv "${pkgdir}"/usr/lib/libcurl{,-compat}.so.4.5.0
+  rm "${pkgdir}"/usr/lib/libcurl.{a,so}*
+  for version in 3 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0; do
+ln -s libcurl-compat.so.4.5.0 "${pkgdir}"/usr/lib/libcurl.so.${version}
+  done
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s curl "${pkgdir}"/usr/share/licenses/libcurl-compat
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-05 Thread Christian Hesse via arch-commits
Date: Wednesday, February 6, 2019 @ 07:47:33
  Author: eworm
Revision: 429702

upgpkg: libcurl-compat 7.64.0-1

new upstream release

Modified:
  libcurl-compat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-06 01:11:35 UTC (rev 429701)
+++ PKGBUILD2019-02-06 07:47:33 UTC (rev 429702)
@@ -2,8 +2,8 @@
 # Contributor: Piotr Balcerowski 
 
 pkgname=libcurl-compat
-pkgver=7.63.0
-pkgrel=2
+pkgver=7.64.0
+pkgrel=1
 pkgdesc='An URL retrieval library (without versioned symbols)'
 arch=('x86_64')
 url='https://curl.haxx.se'
@@ -13,7 +13,7 @@
 options=('strip')
 source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc})
 validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
-sha512sums=('25ad69a1978de2178ac7a456e72152907203931ad895234c14781c27681ea2c5d6669794880c4ebae6e38b8014c6538bc88a6afec2c192210b6d491d60b8f691'
+sha512sums=('ea0e68f9cbf2eb4f235d8506962dcc7709f769ef3526c0e4c130fdaf7186a1a13b303c6ce919cb9125bbf7c64ddf4f8efb3d9269b906f856e6d7b3def027fb81'
 'SKIP')
 
 build() {


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

2019-02-05 Thread Eli Schwartz via arch-commits
Date: Wednesday, February 6, 2019 @ 01:11:35
  Author: eschwartz
Revision: 429701

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |  134 ++---
 1 file changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-06 01:11:16 UTC (rev 429700)
+++ PKGBUILD2019-02-06 01:11:35 UTC (rev 429701)
@@ -1,67 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Eli Schwartz 
-# Contributor: Nikola Milinković 
-# Submitter: Xiao-Long Chen 
-
-_pkgbase=regex
-pkgbase=python-regex
-pkgname=('python-regex' 'python2-regex')
-pkgver=2019.01.24
-pkgrel=1
-pkgdesc="Alternative python regular expression module."
-arch=('x86_64')
-url="https://bitbucket.org/mrabarnett/mrab-regex;
-license=('Python')
-makedepends=('python-setuptools' 'python2-setuptools')
-options=(!emptydirs)
-source=("https://files.pythonhosted.org/packages/source/r/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('20b1601b887e1073805adda2f8a09bb4c86dc7629c46c0d7bf28444dcb32920d')
-
-build() {
-  cd "regex-${pkgver}"
-
-  python setup.py build
-  python2 setup.py build
-}
-
-check() {
-  cd "regex-${pkgver}"
-
-  pushd build/lib.linux-${CARCH}-3*/
-  python test_regex.py
-  popd
-
-  pushd build/lib.linux-${CARCH}-2*/
-  python2 test_regex.py
-  popd
-}
-
-package_python2-regex() {
-  depends=('python2')
-  pkgdesc="Alternative python regular expression module. (python2 version)"
-
-  cd "regex-${pkgver}"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-
-  install -v -m755 -d "${pkgdir}/usr/share/doc/python2-regex"
-  install -v -m644 ./docs/Features.html 
"${pkgdir}/usr/share/doc/python2-regex/"
-  install -v -m644 ./docs/Features.rst "${pkgdir}/usr/share/doc/python2-regex/"
-  install -v -m644 ./docs/UnicodeProperties.txt 
"${pkgdir}/usr/share/doc/python2-regex/"
-
-  sed -n '1,/^$/p' regex_2/regex.py | install -Dm644 /dev/stdin 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python-regex() {
-  depends=('python')
-  pkgdesc="Alternative python regular expression module. (python3 version)"
-
-  cd "regex-${pkgver}"
-  python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-
-  install -v -m755 -d "${pkgdir}/usr/share/doc/python-regex"
-  install -v -m644 ./docs/Features.html "${pkgdir}/usr/share/doc/python-regex/"
-  install -v -m644 ./docs/Features.rst "${pkgdir}/usr/share/doc/python-regex/"
-  install -v -m644 ./docs/UnicodeProperties.txt 
"${pkgdir}/usr/share/doc/python-regex/"
-
-  sed -n '1,/^$/p' regex_3/regex.py | install -Dm644 /dev/stdin 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-regex/repos/community-x86_64/PKGBUILD (from rev 429700, 
python-regex/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-06 01:11:35 UTC (rev 429701)
@@ -0,0 +1,67 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Eli Schwartz 
+# Contributor: Nikola Milinković 
+# Submitter: Xiao-Long Chen 
+
+_pkgbase=regex
+pkgbase=python-regex
+pkgname=('python-regex' 'python2-regex')
+pkgver=2019.02.05
+pkgrel=1
+pkgdesc="Alternative python regular expression module."
+arch=('x86_64')
+url="https://bitbucket.org/mrabarnett/mrab-regex;
+license=('Python')
+makedepends=('python-setuptools' 'python2-setuptools')
+options=(!emptydirs)
+source=("https://files.pythonhosted.org/packages/source/r/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('0be9a895dab15b1d31505680bf0fe2f717f602edeeeb46f87c44878c7910ece5')
+
+build() {
+  cd "regex-${pkgver}"
+
+  python setup.py build
+  python2 setup.py build
+}
+
+check() {
+  cd "regex-${pkgver}"
+
+  pushd build/lib.linux-${CARCH}-3*/
+  python test_regex.py
+  popd
+
+  pushd build/lib.linux-${CARCH}-2*/
+  python2 test_regex.py
+  popd
+}
+
+package_python2-regex() {
+  depends=('python2')
+  pkgdesc="Alternative python regular expression module. (python2 version)"
+
+  cd "regex-${pkgver}"
+  python2 setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+
+  install -v -m755 -d "${pkgdir}/usr/share/doc/python2-regex"
+  install -v -m644 ./docs/Features.html 
"${pkgdir}/usr/share/doc/python2-regex/"
+  install -v -m644 ./docs/Features.rst "${pkgdir}/usr/share/doc/python2-regex/"
+  install -v -m644 ./docs/UnicodeProperties.txt 
"${pkgdir}/usr/share/doc/python2-regex/"
+
+  sed -n '1,/^$/p' regex_2/regex.py | install -Dm644 /dev/stdin 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python-regex() {
+  depends=('python')
+  pkgdesc="Alternative python regular expression module. (python3 version)"
+
+  cd "regex-${pkgver}"
+  python setup.py install --root="${pkgdir}/" --optimize=1 

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

2019-02-05 Thread Eli Schwartz via arch-commits
Date: Wednesday, February 6, 2019 @ 01:11:16
  Author: eschwartz
Revision: 429700

upgpkg: python-regex 2019.02.05-1

upstream release

Modified:
  python-regex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-06 01:05:25 UTC (rev 429699)
+++ PKGBUILD2019-02-06 01:11:16 UTC (rev 429700)
@@ -6,7 +6,7 @@
 _pkgbase=regex
 pkgbase=python-regex
 pkgname=('python-regex' 'python2-regex')
-pkgver=2019.01.24
+pkgver=2019.02.05
 pkgrel=1
 pkgdesc="Alternative python regular expression module."
 arch=('x86_64')
@@ -15,7 +15,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 options=(!emptydirs)
 
source=("https://files.pythonhosted.org/packages/source/r/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('20b1601b887e1073805adda2f8a09bb4c86dc7629c46c0d7bf28444dcb32920d')
+sha256sums=('0be9a895dab15b1d31505680bf0fe2f717f602edeeeb46f87c44878c7910ece5')
 
 build() {
   cd "regex-${pkgver}"


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

2019-02-05 Thread Eli Schwartz via arch-commits
Date: Wednesday, February 6, 2019 @ 01:05:25
  Author: eschwartz
Revision: 429699

archrelease: copy trunk to community-x86_64

Added:
  keybase/repos/community-x86_64/0001-Don-t-use-electron-to-build.patch
(from rev 429698, keybase/trunk/0001-Don-t-use-electron-to-build.patch)
  keybase/repos/community-x86_64/PKGBUILD
(from rev 429698, keybase/trunk/PKGBUILD)
  keybase/repos/community-x86_64/keybase-gui
(from rev 429698, keybase/trunk/keybase-gui)
Deleted:
  keybase/repos/community-x86_64/0001-Don-t-use-electron-to-build.patch
  keybase/repos/community-x86_64/PKGBUILD
  keybase/repos/community-x86_64/keybase-gui

+
 0001-Don-t-use-electron-to-build.patch |  136 +-
 PKGBUILD   |  228 +++
 keybase-gui|   14 -
 3 files changed, 185 insertions(+), 193 deletions(-)

Deleted: 0001-Don-t-use-electron-to-build.patch
===
--- 0001-Don-t-use-electron-to-build.patch  2019-02-06 01:05:05 UTC (rev 
429698)
+++ 0001-Don-t-use-electron-to-build.patch  2019-02-06 01:05:25 UTC (rev 
429699)
@@ -1,68 +0,0 @@
-From 8149b6244c6b9043b5e8fa391a453c2484582ba7 Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Thu, 21 Jun 2018 05:00:37 -0400
-Subject: [PATCH] Don't use electron to build
-

- shared/desktop/package.desktop.js   | 4 ++--
- shared/desktop/yarn-helper/index.js | 2 --
- shared/package.json | 1 -
- 3 files changed, 2 insertions(+), 5 deletions(-)
-
-diff --git a/shared/desktop/package.desktop.js 
b/shared/desktop/package.desktop.js
-index 1ceb5e1ac4..3c6dc3961b 100644
 a/shared/desktop/package.desktop.js
-+++ b/shared/desktop/package.desktop.js
-@@ -86,7 +86,7 @@ function main() {
-   // use the same version as the currently-installed electron
-   console.log('Finding electron version')
-   try {
--packagerOpts.electronVersion = 
require('../package.json').devDependencies.electron
-+packagerOpts.electronVersion = 'unused string'
- console.log('Found electron version:', packagerOpts.electronVersion)
-   } catch (err) {
- console.log("Couldn't parse yarn list to find electron:", err)
-@@ -136,7 +136,7 @@ function startPack() {
- .catch(postPackError)
- })
-   })
--} else {
-+} else if (false) {
-   pack(platform, arch)
- .then(postPack(platform, arch))
- .catch(postPackError)
-diff --git a/shared/desktop/yarn-helper/index.js 
b/shared/desktop/yarn-helper/index.js
-index 425346cbb7..29d1ee6b54 100644
 a/shared/desktop/yarn-helper/index.js
-+++ b/shared/desktop/yarn-helper/index.js
-@@ -1,7 +1,6 @@
- // @flow
- // Helper for cross platform yarn run script commands
- import buildCommands from './build'
--import electronComands from './electron'
- import fontCommands from './font'
- import prettierCommands from './prettier'
- import {execSync} from 'child_process'
-@@ -13,7 +12,6 @@ const [, , command, ...rest] = process.argv
- const commands = {
-   ...buildCommands,
-   ...fontCommands,
--  ...electronComands,
-   ...prettierCommands,
-   help: {
- code: () => {
-diff --git a/shared/package.json b/shared/package.json
-index 09e8732402..fdcc2f9c9c 100644
 a/shared/package.json
-+++ b/shared/package.json
-@@ -204,7 +204,6 @@
- "cross-env": "5.2.0",
- "css-loader": "2.1.0",
- "del": "3.0.0",
--"electron": "4.0.1",
- "electron-packager": "13.0.1",
- "eslint": "5.12.0",
- "eslint-config-standard": "12.0.0",
--- 
-2.20.1
-

Copied: keybase/repos/community-x86_64/0001-Don-t-use-electron-to-build.patch 
(from rev 429698, keybase/trunk/0001-Don-t-use-electron-to-build.patch)
===
--- 0001-Don-t-use-electron-to-build.patch  (rev 0)
+++ 0001-Don-t-use-electron-to-build.patch  2019-02-06 01:05:25 UTC (rev 
429699)
@@ -0,0 +1,68 @@
+From 8149b6244c6b9043b5e8fa391a453c2484582ba7 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Thu, 21 Jun 2018 05:00:37 -0400
+Subject: [PATCH] Don't use electron to build
+
+---
+ shared/desktop/package.desktop.js   | 4 ++--
+ shared/desktop/yarn-helper/index.js | 2 --
+ shared/package.json | 1 -
+ 3 files changed, 2 insertions(+), 5 deletions(-)
+
+diff --git a/shared/desktop/package.desktop.js 
b/shared/desktop/package.desktop.js
+index 1ceb5e1ac4..3c6dc3961b 100644
+--- a/shared/desktop/package.desktop.js
 b/shared/desktop/package.desktop.js
+@@ -86,7 +86,7 @@ function main() {
+   // use the same version as the currently-installed electron
+   console.log('Finding electron version')
+   try {
+-packagerOpts.electronVersion = 
require('../package.json').devDependencies.electron
++packagerOpts.electronVersion = 'unused string'
+ console.log('Found electron version:', 

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

2019-02-05 Thread Eli Schwartz via arch-commits
Date: Wednesday, February 6, 2019 @ 01:05:05
  Author: eschwartz
Revision: 429698

upgpkg: keybase 3.0.0-1

upstream release
simplified handling upstream of hideWindow means we can remove several hacks

Modified:
  keybase/trunk/PKGBUILD
  keybase/trunk/keybase-gui

-+
 PKGBUILD|   16 +++-
 keybase-gui |8 +---
 2 files changed, 8 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-06 00:36:57 UTC (rev 429697)
+++ PKGBUILD2019-02-06 01:05:05 UTC (rev 429698)
@@ -5,8 +5,8 @@
 pkgbase=keybase
 pkgname=('keybase' 'kbfs' 'keybase-gui')
 pkgdesc='CLI tool for GPG with keybase.io'
-pkgver=2.13.1
-pkgrel=2
+pkgver=3.0.0
+pkgrel=1
 arch=('x86_64')
 url='https://keybase.io/'
 license=('BSD')
@@ -15,8 +15,8 @@
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/keybase/client/archive/v${pkgver}.tar.gz;
 "keybase-gui"
 "0001-Don-t-use-electron-to-build.patch")
-sha512sums=('c0cad522f14cf39f08c841ff90f96662f3f5d9fe3c8e8156755a8805757c5d206991410a2511315b8c00dcafcc5e23e5449d37d13f399e6692e0c6d4fb1c0b61'
-
'4ab159d8e764de7ef92b3c9b99559e0a499de607914521b7c5f89396d810c6360b87a785c43be90c54d1dee7e93ec1fda31e8377080d9bbbeb6230166d856f39'
+sha512sums=('40ddbd6fc5201bbca087490022b021e6abc201dc428327e8974953d0e5cd403324cebf1ace29a22126eee0d1e36f84e85d443a236a7271ccdd79605abfe6fa72'
+
'd9aa6a9f9cfcb951cb4ab5da8a8daadd0b1ff34dff6f23891b75c01b600b6fd98656ec5db4154ec0db9e62469b1b8f865e8b4515e190b510258233e20dba9de2'
 
'b721dc0c40cf23602424d2ca024524a0eef5210a7cdca0209b89eab5c17c3fcb3cc48d91940a4c88d2416d0a19a7fb3deba92e90244251c4338b0fd640befdcd')
 
 prepare() {
@@ -28,11 +28,9 @@
 
 # Fix paths to run electron /path/to/app (or our minimal wrapper script).
 # Also wire up "hideWindow" when running as a service or via XDG autostart.
-sed -i \
--e 's@/opt/keybase/Keybase@/usr/bin/electron /usr/share/keybase-app@' \
--e '/EnvironmentFile/a\Environment=KEYBASE_START_UI=hideWindow' \
+sed -i 's@/opt/keybase/Keybase@/usr/bin/electron /usr/share/keybase-app@' \
 packaging/linux/systemd/keybase.gui.service
-sed -i 
's/KEYBASE_AUTOSTART=1/KEYBASE_START_UI=hideWindow/;s/run_keybase/keybase-gui/g'
 \
+sed -i 's/run_keybase/keybase-gui/g' \
 packaging/linux/keybase.desktop go/install/install_unix.go
 
 patch -p1 -i ../0001-Don-t-use-electron-to-build.patch
@@ -78,7 +76,7 @@
 install -Dm755 -t "${pkgdir}"/usr/bin/ go/bin/{kbfsfuse,git-remote-keybase}
 install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 # more systemd activation
-install -Dm644 go/kbfs/packaging/linux/systemd/kbfs.service 
"$pkgdir"/usr/lib/systemd/user/kbfs.service
+install -Dm644 packaging/linux/systemd/kbfs.service 
"$pkgdir"/usr/lib/systemd/user/kbfs.service
 }
 
 package_keybase-gui() {

Modified: keybase-gui
===
--- keybase-gui 2019-02-06 00:36:57 UTC (rev 429697)
+++ keybase-gui 2019-02-06 01:05:05 UTC (rev 429698)
@@ -1,10 +1,4 @@
 #!/bin/sh
 
-systemctl start --user keybase.service kbfs.service
+systemctl --user import-environment KEYBASE_AUTOSTART
 systemctl start --user keybase.gui.service
-
-# executing the application when it is already running will bring it to the
-# foreground
-if [ "$KEYBASE_START_UI" != 'hideWindow' ]; then
-exec electron /usr/share/keybase-app/ "$@"
-fi


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

2019-02-05 Thread Filipe Laíns via arch-commits
Date: Wednesday, February 6, 2019 @ 00:36:57
  Author: ffy00
Revision: 429697

archrelease: copy trunk to community-any

Added:
  lutris/repos/community-any/PKGBUILD
(from rev 429696, lutris/trunk/PKGBUILD)
Deleted:
  lutris/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-06 00:36:42 UTC (rev 429696)
+++ PKGBUILD2019-02-06 00:36:57 UTC (rev 429697)
@@ -1,38 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Frederik “Freso” S. Olesen 
-# Contributor: Maxime Gauduin 
-
-pkgname=lutris
-pkgver=0.5.0
-pkgrel=1
-pkgdesc='Open Gaming Platform'
-arch=('any')
-url='https://lutris.net'
-license=('GPL3')
-depends=('python-gobject' 'python-yaml' 'python-evdev' 'gtk3' 'glib2' 'psmisc' 
'cabextract' 'unrar' 'unzip' 'p7zip' 'curl' 'xorg-xrandr')
-makedepends=('python-setuptools')
-checkdepends=('xorg-server-xvfb' 'python-nose-cover3' 'python-requests' 
'python-pillow' 'gtk3' 'webkit2gtk' 'gnome-desktop' 'wine' 'xterm')
-optdepends=('wine: Run windows games'
-'wine-staging: Run windows games - Staging patches')
-makedepends=('python-setuptools')
-source=("https://github.com/lutris/lutris/archive/v$pkgver.tar.gz;)
-sha512sums=('797e5ad40e9c3f630272c35df32f6ac4b8b73ea282c86ec79b7723b37e16267eb3f5f0eb23da495256d9a76f30a7c5e8405c84fb15c595e322dbf3424bf947e7')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $pkgname-$pkgver
-
-  xvfb-run nosetests --cover-erase --with-xunit --xunit-file=nosetests.xml 
--with-coverage --cover-package=lutris --cover-xml-file=coverage.xml
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-

Copied: lutris/repos/community-any/PKGBUILD (from rev 429696, 
lutris/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-06 00:36:57 UTC (rev 429697)
@@ -0,0 +1,39 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Frederik “Freso” S. Olesen 
+# Contributor: Maxime Gauduin 
+
+pkgname=lutris
+pkgver=0.5.0
+pkgrel=2
+pkgdesc='Open Gaming Platform'
+arch=('any')
+url='https://lutris.net'
+license=('GPL3')
+depends=('python-gobject' 'python-yaml' 'python-evdev' 'gtk3' 'glib2' 'psmisc' 
'cabextract' 'unzip' 'p7zip' 'curl' 'xorg-xrandr'
+ 'python-pillow' 'python-requests' 'gnome-desktop' 'gtk3' 'webkit2gtk')
+makedepends=('python-setuptools')
+checkdepends=('xorg-server-xvfb' 'python-nose-cover3' 'wine' 'xterm')
+optdepends=('wine: Run windows games'
+'wine-staging: Run windows games - Staging patches')
+makedepends=('python-setuptools')
+source=("https://github.com/lutris/lutris/archive/v$pkgver.tar.gz;)
+sha512sums=('797e5ad40e9c3f630272c35df32f6ac4b8b73ea282c86ec79b7723b37e16267eb3f5f0eb23da495256d9a76f30a7c5e8405c84fb15c595e322dbf3424bf947e7')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  xvfb-run nosetests --cover-erase --with-xunit --xunit-file=nosetests.xml 
--with-coverage --cover-package=lutris --cover-xml-file=coverage.xml
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+


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

2019-02-05 Thread Filipe Laíns via arch-commits
Date: Wednesday, February 6, 2019 @ 00:36:42
  Author: ffy00
Revision: 429696

fix missing dependencies

Modified:
  lutris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-06 00:13:03 UTC (rev 429695)
+++ PKGBUILD2019-02-06 00:36:42 UTC (rev 429696)
@@ -4,14 +4,15 @@
 
 pkgname=lutris
 pkgver=0.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Open Gaming Platform'
 arch=('any')
 url='https://lutris.net'
 license=('GPL3')
-depends=('python-gobject' 'python-yaml' 'python-evdev' 'gtk3' 'glib2' 'psmisc' 
'cabextract' 'unrar' 'unzip' 'p7zip' 'curl' 'xorg-xrandr')
+depends=('python-gobject' 'python-yaml' 'python-evdev' 'gtk3' 'glib2' 'psmisc' 
'cabextract' 'unzip' 'p7zip' 'curl' 'xorg-xrandr'
+ 'python-pillow' 'python-requests' 'gnome-desktop' 'gtk3' 'webkit2gtk')
 makedepends=('python-setuptools')
-checkdepends=('xorg-server-xvfb' 'python-nose-cover3' 'python-requests' 
'python-pillow' 'gtk3' 'webkit2gtk' 'gnome-desktop' 'wine' 'xterm')
+checkdepends=('xorg-server-xvfb' 'python-nose-cover3' 'wine' 'xterm')
 optdepends=('wine: Run windows games'
 'wine-staging: Run windows games - Staging patches')
 makedepends=('python-setuptools')


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

2019-02-05 Thread David Runge via arch-commits
Date: Wednesday, February 6, 2019 @ 00:13:03
  Author: dvzrv
Revision: 429695

archrelease: copy trunk to community-x86_64

Added:
  cmt/repos/community-x86_64/PKGBUILD
(from rev 429694, cmt/trunk/PKGBUILD)
Deleted:
  cmt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-06 00:12:45 UTC (rev 429694)
+++ PKGBUILD2019-02-06 00:13:03 UTC (rev 429695)
@@ -1,38 +0,0 @@
-# $Id$
-#Maintainer: David Runge 
-#Contributor: Damir Perisa 
-#Contributor: Robert Emil Berge 
-
-pkgname=cmt
-pkgver=1.16
-pkgrel=8
-pkgdesc="LADSPA plugins for use with software synthesis and recording packages 
on Linux"
-arch=('x86_64')
-license=('GPL2')
-url="http://www.ladspa.org/cmt/overview.html;
-depends=('gcc-libs')
-makedepends=('ladspa')
-groups=('ladspa-plugins' 'pro-audio')
-source=("http://www.ladspa.org/download/${pkgname}_src_${pkgver}.tgz;)
-sha512sums=('be4aaa064183b6121b4ca8d7d2535cb9a3bcb557e3a2f22b45ec9775b0e296f70a9a7edf697b78095d6ef1564bb5459bb742649082ac724d1774c0790379af21')
-
-prepare(){
-  mv -v ${pkgname} ${pkgname}-${pkgver}
-  cd ${pkgname}-${pkgver}
-  # fix CFLAGS
-  sed -e "/^CFLAGS/ s/-O3/${CFLAGS}/" \
-  -e 's|-Werror||g' \
-  -i src/makefile
-}
-
-build() {
-  cd ${pkgname}-${pkgver}/src
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -vDm 755 plugins/cmt.so -t "${pkgdir}/usr/lib/ladspa/"
-  # docs
-  install -vDm 644 {README,doc/*.html} -t "${pkgdir}/usr/share/doc/${pkgname}/"
-}

Copied: cmt/repos/community-x86_64/PKGBUILD (from rev 429694, 
cmt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-06 00:13:03 UTC (rev 429695)
@@ -0,0 +1,36 @@
+#Maintainer: David Runge 
+#Contributor: Damir Perisa 
+#Contributor: Robert Emil Berge 
+
+pkgname=cmt
+pkgver=1.17
+pkgrel=1
+pkgdesc="LADSPA plugins for use with software synthesis and recording packages 
on Linux"
+arch=('x86_64')
+license=('GPL2')
+url="https://www.ladspa.org/cmt/overview.html;
+depends=('gcc-libs')
+makedepends=('ladspa')
+groups=('ladspa-plugins' 'pro-audio')
+source=("https://www.ladspa.org/download/${pkgname}_${pkgver}.tgz;)
+sha512sums=('7df31a44c41622785b569ef79bef91cba098fed89ca65dcb31b9fdd751caff863cf42eb7ca2ffab08e883fbcd040ab1c7290a96abf58e908be44ab803d672e26')
+
+prepare(){
+  mv -v ${pkgname}_${pkgver} ${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
+  # inserting CFLAGS and LDFLAGS for full RELRO
+  sed -e "s|-O2|${CFLAGS} ${LDFLAGS}|" -i src/Makefile
+}
+
+build() {
+  cd ${pkgname}-${pkgver}/src
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -vDm 755 plugins/cmt.so -t "${pkgdir}/usr/lib/ladspa/"
+  # docs
+  install -vDm 644 {README,doc/*.html} \
+-t "${pkgdir}/usr/share/doc/${pkgname}/"
+}


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

2019-02-05 Thread David Runge via arch-commits
Date: Wednesday, February 6, 2019 @ 00:12:45
  Author: dvzrv
Revision: 429694

upgpkg: cmt 1.17-1

Upgrading to 1.17. Switching to https for source and url. Fixing Makefile for 
full RELRO.

Modified:
  cmt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 23:44:51 UTC (rev 429693)
+++ PKGBUILD2019-02-06 00:12:45 UTC (rev 429694)
@@ -3,25 +3,23 @@
 #Contributor: Robert Emil Berge 
 
 pkgname=cmt
-pkgver=1.16
-pkgrel=8
+pkgver=1.17
+pkgrel=1
 pkgdesc="LADSPA plugins for use with software synthesis and recording packages 
on Linux"
 arch=('x86_64')
 license=('GPL2')
-url="http://www.ladspa.org/cmt/overview.html;
+url="https://www.ladspa.org/cmt/overview.html;
 depends=('gcc-libs')
 makedepends=('ladspa')
 groups=('ladspa-plugins' 'pro-audio')
-source=("http://www.ladspa.org/download/${pkgname}_src_${pkgver}.tgz;)
-sha512sums=('be4aaa064183b6121b4ca8d7d2535cb9a3bcb557e3a2f22b45ec9775b0e296f70a9a7edf697b78095d6ef1564bb5459bb742649082ac724d1774c0790379af21')
+source=("https://www.ladspa.org/download/${pkgname}_${pkgver}.tgz;)
+sha512sums=('7df31a44c41622785b569ef79bef91cba098fed89ca65dcb31b9fdd751caff863cf42eb7ca2ffab08e883fbcd040ab1c7290a96abf58e908be44ab803d672e26')
 
 prepare(){
-  mv -v ${pkgname} ${pkgname}-${pkgver}
+  mv -v ${pkgname}_${pkgver} ${pkgname}-${pkgver}
   cd ${pkgname}-${pkgver}
-  # fix CFLAGS
-  sed -e "/^CFLAGS/ s/-O3/${CFLAGS}/" \
-  -e 's|-Werror||g' \
-  -i src/makefile
+  # inserting CFLAGS and LDFLAGS for full RELRO
+  sed -e "s|-O2|${CFLAGS} ${LDFLAGS}|" -i src/Makefile
 }
 
 build() {
@@ -33,5 +31,6 @@
   cd ${pkgname}-${pkgver}
   install -vDm 755 plugins/cmt.so -t "${pkgdir}/usr/lib/ladspa/"
   # docs
-  install -vDm 644 {README,doc/*.html} -t "${pkgdir}/usr/share/doc/${pkgname}/"
+  install -vDm 644 {README,doc/*.html} \
+-t "${pkgdir}/usr/share/doc/${pkgname}/"
 }


[arch-commits] Commit in firefox/repos (5 files)

2019-02-05 Thread Jan Steffens via arch-commits
Date: Tuesday, February 5, 2019 @ 23:56:11
  Author: heftig
Revision: 345314

archrelease: copy trunk to staging-x86_64

Added:
  firefox/repos/staging-x86_64/
  firefox/repos/staging-x86_64/PKGBUILD
(from rev 345313, firefox/trunk/PKGBUILD)
  firefox/repos/staging-x86_64/firefox-symbolic.svg
(from rev 345313, firefox/trunk/firefox-symbolic.svg)
  firefox/repos/staging-x86_64/firefox.desktop
(from rev 345313, firefox/trunk/firefox.desktop)
  firefox/repos/staging-x86_64/upload-symbol-archive
(from rev 345313, firefox/trunk/upload-symbol-archive)

---+
 PKGBUILD  |  165 +
 firefox-symbolic.svg  |   64 +
 firefox.desktop   |  311 
 upload-symbol-archive |   24 +++
 4 files changed, 564 insertions(+)

Copied: firefox/repos/staging-x86_64/PKGBUILD (from rev 345313, 
firefox/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-05 23:56:11 UTC (rev 345314)
@@ -0,0 +1,165 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Jakub Schmidtke 
+
+pkgname=firefox
+pkgver=65.0
+pkgrel=2
+pkgdesc="Standalone web browser from mozilla.org"
+arch=(x86_64)
+license=(MPL GPL LGPL)
+url="https://www.mozilla.org/firefox/;
+depends=(gtk3 mozilla-common libxt startup-notification mime-types dbus-glib
+ ffmpeg nss ttf-font libpulse)
+makedepends=(unzip zip diffutils python2-setuptools yasm mesa imake inetutils
+ xorg-server-xvfb autoconf2.13 rust mercurial clang llvm jack gtk2
+ python nodejs python2-psutil cbindgen nasm)
+optdepends=('networkmanager: Location detection via available WiFi networks'
+'libnotify: Notification integration'
+'pulseaudio: Audio support'
+'speech-dispatcher: Text-to-Speech'
+'hunspell-en_US: Spell checking, American English')
+options=(!emptydirs !makeflags)
+_repo=https://hg.mozilla.org/mozilla-unified
+source=("hg+$_repo#tag=FIREFOX_${pkgver//./_}_RELEASE"
+$pkgname.desktop firefox-symbolic.svg)
+sha256sums=('SKIP'
+'677e1bde4c6b3cff114345c211805c7c43085038ca0505718a11e96432e9811a'
+'9a1a572dc88014882d54ba2d3079a1cf5b28fa03c5976ed2cb763c93dabbd797')
+
+# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact foutre...@archlinux.org for
+# more information.
+_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
+
+# Mozilla API keys (see https://location.services.mozilla.com/api)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact hef...@archlinux.org for
+# more information.
+_mozilla_api_key=16674381-f021-49de-8622-3021c5942aff
+
+prepare() {
+  mkdir mozbuild
+  cd mozilla-unified
+
+  echo -n "$_google_api_key" >google-api-key
+  echo -n "$_mozilla_api_key" >mozilla-api-key
+
+  cat >.mozconfig 
+  
+
+  
+image/svg+xml
+http://purl.org/dc/dcmitype/StillImage; />
+Gnome Symbolic Icon Theme
+  
+
+  
+  
+  
+
+  
+  Gnome Symbolic Icon Theme
+  
+

Copied: firefox/repos/staging-x86_64/firefox.desktop (from rev 345313, 
firefox/trunk/firefox.desktop)
===
--- staging-x86_64/firefox.desktop  (rev 0)
+++ staging-x86_64/firefox.desktop  2019-02-05 23:56:11 UTC (rev 345314)
@@ -0,0 +1,311 @@
+[Desktop Entry]
+Version=1.0
+Name=Firefox
+GenericName=Web Browser
+GenericName[ar]=متصفح وِب
+GenericName[ast]=Restolador Web
+GenericName[bn]=ওয়েব ব্রাউজার
+GenericName[ca]=Navegador web

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

2019-02-05 Thread Jan Steffens via arch-commits
Date: Tuesday, February 5, 2019 @ 23:55:56
  Author: heftig
Revision: 345313

65.0-2: libvpx rebuild (actually turn off most system libs to match nightly 
better)

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 22:27:18 UTC (rev 345312)
+++ PKGBUILD2019-02-05 23:55:56 UTC (rev 345313)
@@ -4,13 +4,13 @@
 
 pkgname=firefox
 pkgver=65.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Standalone web browser from mozilla.org"
 arch=(x86_64)
 license=(MPL GPL LGPL)
 url="https://www.mozilla.org/firefox/;
 depends=(gtk3 mozilla-common libxt startup-notification mime-types dbus-glib
- ffmpeg nss ttf-font libpulse sqlite libvpx icu)
+ ffmpeg nss ttf-font libpulse)
 makedepends=(unzip zip diffutils python2-setuptools yasm mesa imake inetutils
  xorg-server-xvfb autoconf2.13 rust mercurial clang llvm jack gtk2
  python nodejs python2-psutil cbindgen nasm)
@@ -75,15 +75,8 @@
 ac_add_options --with-mozilla-api-keyfile=${PWD@Q}/mozilla-api-key
 
 # System libraries
-ac_add_options --enable-system-ffi
-ac_add_options --enable-system-sqlite
-ac_add_options --with-system-bz2
-ac_add_options --with-system-icu
-ac_add_options --with-system-jpeg
-ac_add_options --with-system-libvpx
 ac_add_options --with-system-nspr
 ac_add_options --with-system-nss
-ac_add_options --with-system-zlib
 
 # Features
 ac_add_options --enable-alsa


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

2019-02-05 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, February 5, 2019 @ 23:44:51
  Author: svenstaro
Revision: 429693

archrelease: copy trunk to community-x86_64

Added:
  gitlab-workhorse/repos/community-x86_64/PKGBUILD
(from rev 429692, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-x86_64/gitlab-workhorse.service
(from rev 429692, gitlab-workhorse/trunk/gitlab-workhorse.service)
Deleted:
  gitlab-workhorse/repos/community-x86_64/PKGBUILD
  gitlab-workhorse/repos/community-x86_64/gitlab-workhorse.service

--+
 PKGBUILD |   70 ++---
 gitlab-workhorse.service |   44 ++--
 2 files changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 23:44:43 UTC (rev 429692)
+++ PKGBUILD2019-02-05 23:44:51 UTC (rev 429693)
@@ -1,35 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Caleb Maclennan 
-# Contributor: Pavol (Lopo) Hluchy 
-
-pkgname=gitlab-workhorse
-pkgver=8.1.0
-pkgrel=1
-pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
-arch=('x86_64')
-url="https://gitlab.com/gitlab-org/gitlab-workhorse;
-license=('MIT')
-depends=('glibc')
-makedepends=('go-pie')
-source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
-"gitlab-workhorse.service")
-sha512sums=('a72c32990e2291d8c5cb0302d01a46a5a2341ffb99a529ffce82658399969f202860bf7c91394c03aad30ff345537e4618f3158d59a2151d5b52b460d0b5e68b'
-
'c5ce0e47fa186cf9374e9771e99df0346c3652a20dd43257a6d50003b083e78cb2ed65abdbd45cc4062114023f7b112793c25136e2d6b118e1ba30623f16be83')
-
-build() {
-  cd "${pkgname}-v${pkgver}-"*
-
-  make
-}
-
-package() {
-  cd "${pkgname}-v${pkgver}-"*
-
-  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
-  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
-  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
-  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gitlab-workhorse/repos/community-x86_64/PKGBUILD (from rev 429692, 
gitlab-workhorse/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 23:44:51 UTC (rev 429693)
@@ -0,0 +1,35 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.3.0
+pkgrel=1
+pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc')
+makedepends=('go-pie')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('5af66248fe63145e74c0c1ed57c01af0d8b5afb3c1f0e0c7eebbf3295612cbf39970439201a31f50ad68f971069766ae576b3e1ba266cb762a1159b5c7bb'
+
'c5ce0e47fa186cf9374e9771e99df0346c3652a20dd43257a6d50003b083e78cb2ed65abdbd45cc4062114023f7b112793c25136e2d6b118e1ba30623f16be83')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: gitlab-workhorse.service
===
--- gitlab-workhorse.service2019-02-05 23:44:43 UTC (rev 429692)
+++ gitlab-workhorse.service2019-02-05 23:44:51 UTC (rev 429693)
@@ -1,22 +0,0 @@
-[Unit]
-Description=Gitlab Workhorse
-Requires=gitlab-unicorn.service
-After=gitlab-unicorn.service
-
-[Service]
-User=gitlab
-Group=gitlab
-WorkingDirectory=/usr/share/webapps/gitlab
-SyslogIdentifier=gitlab-workhorse
-CapabilityBoundingSet=
-ProtectSystem=full
-ProtectHome=true
-NoNewPrivileges=true
-ExecStart=/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix 
-listenAddr /run/gitlab/gitlab-workhorse.socket -authBackend 
http://localhost:8080 -authSocket /var/lib/gitlab/sockets/gitlab.socket 
-documentRoot /usr/share/webapps/gitlab/public
-ExecStop=/usr/bin/kill -QUIT $MAINPID
-ExecReload=/usr/bin/kill -USR2 $MAINPID
-Restart=on-failure
-RestartSec=1
-
-[Install]
-WantedBy=multi-user.target


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

2019-02-05 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, February 5, 2019 @ 23:44:43
  Author: svenstaro
Revision: 429692

upgpkg: gitlab-workhorse 8.3.0-1

Modified:
  gitlab-workhorse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 23:43:53 UTC (rev 429691)
+++ PKGBUILD2019-02-05 23:44:43 UTC (rev 429692)
@@ -3,7 +3,7 @@
 # Contributor: Pavol (Lopo) Hluchy 
 
 pkgname=gitlab-workhorse
-pkgver=8.1.0
+pkgver=8.3.0
 pkgrel=1
 pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('go-pie')
 
source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
 "gitlab-workhorse.service")
-sha512sums=('a72c32990e2291d8c5cb0302d01a46a5a2341ffb99a529ffce82658399969f202860bf7c91394c03aad30ff345537e4618f3158d59a2151d5b52b460d0b5e68b'
+sha512sums=('5af66248fe63145e74c0c1ed57c01af0d8b5afb3c1f0e0c7eebbf3295612cbf39970439201a31f50ad68f971069766ae576b3e1ba266cb762a1159b5c7bb'
 
'c5ce0e47fa186cf9374e9771e99df0346c3652a20dd43257a6d50003b083e78cb2ed65abdbd45cc4062114023f7b112793c25136e2d6b118e1ba30623f16be83')
 
 build() {


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

2019-02-05 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, February 5, 2019 @ 23:43:46
  Author: svenstaro
Revision: 429690

upgpkg: gitlab-gitaly 1.17.0-1

Modified:
  gitlab-gitaly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 23:41:20 UTC (rev 429689)
+++ PKGBUILD2019-02-05 23:43:46 UTC (rev 429690)
@@ -4,7 +4,7 @@
 # commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
 # need this again at some point in the future.
 pkgname=gitlab-gitaly
-pkgver=1.14.0
+pkgver=1.17.0
 pkgrel=1
 pkgdesc="Speed up Git access using caching"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 backup=("etc/gitlab-gitaly/config.toml")
 
source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitaly/repository/archive?sha=v${pkgver};
 "gitlab-gitaly.service")
-sha512sums=('c2b2abcedf97a7dfa6f4de489e6e66549bc4ae17c270cbfbed8f4934132be9c5011205670daac54499722dca4586e093a11b98b7e915d80d8c0f92d94685a530'
+sha512sums=('d3bee79b0cb9eabe64a2f12ced0750d3b4f96e602b75b0a19676c42dcfb94f04eb7092d133521a3c5c8141d2b5100be8913cdc204fa12ecb430cc0a6072dab83'
 
'b330c0f42592322ad2131079ca554a13a364007182dded8c556198caff2c9ec642acf5bb7dfecb05de5a3d89bffec6588b6d05c8c7c5c771a46df3d296deed28')
 
 _homedir="/var/lib/gitlab"


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

2019-02-05 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, February 5, 2019 @ 23:43:53
  Author: svenstaro
Revision: 429691

archrelease: copy trunk to community-x86_64

Added:
  gitlab-gitaly/repos/community-x86_64/PKGBUILD
(from rev 429690, gitlab-gitaly/trunk/PKGBUILD)
  gitlab-gitaly/repos/community-x86_64/gitlab-gitaly.service
(from rev 429690, gitlab-gitaly/trunk/gitlab-gitaly.service)
Deleted:
  gitlab-gitaly/repos/community-x86_64/PKGBUILD
  gitlab-gitaly/repos/community-x86_64/gitlab-gitaly.service

---+
 PKGBUILD  |  138 
 gitlab-gitaly.service |   50 -
 2 files changed, 94 insertions(+), 94 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 23:43:46 UTC (rev 429690)
+++ PKGBUILD2019-02-05 23:43:53 UTC (rev 429691)
@@ -1,69 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
-# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
-# need this again at some point in the future.
-pkgname=gitlab-gitaly
-pkgver=1.14.0
-pkgrel=1
-pkgdesc="Speed up Git access using caching"
-arch=('x86_64')
-url="https://gitlab.com/gitlab-org/gitaly;
-license=('MIT')
-depends=(glibc ruby2.5 libxml2 libxslt)
-options=(!buildflags)
-makedepends=(go ruby2.5-bundler cmake)
-backup=("etc/gitlab-gitaly/config.toml")
-source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitaly/repository/archive?sha=v${pkgver};
-"gitlab-gitaly.service")
-sha512sums=('c2b2abcedf97a7dfa6f4de489e6e66549bc4ae17c270cbfbed8f4934132be9c5011205670daac54499722dca4586e093a11b98b7e915d80d8c0f92d94685a530'
-
'b330c0f42592322ad2131079ca554a13a364007182dded8c556198caff2c9ec642acf5bb7dfecb05de5a3d89bffec6588b6d05c8c7c5c771a46df3d296deed28')
-
-_homedir="/var/lib/gitlab"
-
-prepare() {
-  cd "gitaly-"*
-
-  sed -i "s/bundle install/bundle-2.5 install/" Makefile
-  sed -i "s/bundle config/bundle-2.5 config/" Makefile
-  sed -i "s/bundle show/bundle-2.5 show/" Makefile
-  sed -i "s/bundle/bundle-2.5/" internal/rubyserver/rubyserver.go
-  sed -i "s/bundle/bundle-2.5/" internal/linguist/linguist.go
-  sed -i "s/bundle/bundle-2.5/" _support/makegen.go
-  sed -i "s/\"ruby\"/\"ruby-2.5\"/" internal/linguist/linguist.go
-  sed -i "s/env ruby/env ruby-2.5/" ruby/bin/gitaly-ruby
-  sed -i "s/env ruby/env ruby-2.5/" ruby/bin/ruby-cd
-  sed -i "s/VERSION = .*/VERSION = ${pkgver}/" Makefile
-  sed -i "s|dir = \"/home/git/gitaly/ruby\"|dir = 
\"/usr/share/webapps/gitlab-gitaly/ruby\"|" config.toml.example
-  sed -i "s|dir = \"/home/git/gitlab-shell\"|dir = 
\"/usr/share/webapps/gitlab-shell\"|" config.toml.example
-  sed -i "s|bin_dir = \"/home/git/gitaly\"|bin_dir = \"/usr/bin\"|" 
config.toml.example
-
-  # https://github.com/bundler/bundler/issues/6882
-  sed -e '/BUNDLED WITH/,+1d' -i ruby/Gemfile.lock
-}
-
-build() {
-  cd "gitaly-"*
-
-  make build
-}
-
-package() {
-  cd "gitaly-"*
-
-  make PREFIX=/usr DESTDIR=${pkgdir} install
-  mkdir -p "${pkgdir}/etc/${pkgname}"
-  sed \
--e "s|^socket_path =.*|socket_path = 
\"${_homedir}/sockets/gitlab-gitaly.socket\"|" \
--e "s|^path =.*|path = \"${_homedir}/repositories\"|" \
-config.toml.example > "${pkgdir}/etc/${pkgname}/config.toml"
-
-  mkdir -p ${pkgdir}/usr/share/webapps/gitlab-gitaly
-  cp -r ruby ${pkgdir}/usr/share/webapps/gitlab-gitaly/ruby
-
-  install -Dm644 config.toml.example 
"${pkgdir}/usr/share/${pkgname}/config.toml.example"
-  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm0644 "${srcdir}/gitlab-gitaly.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-gitaly.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gitlab-gitaly/repos/community-x86_64/PKGBUILD (from rev 429690, 
gitlab-gitaly/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 23:43:53 UTC (rev 429691)
@@ -0,0 +1,69 @@
+# Maintainer: Sven-Hendrik Haase 
+
+# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
+# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
+# need this again at some point in the future.
+pkgname=gitlab-gitaly
+pkgver=1.17.0
+pkgrel=1
+pkgdesc="Speed up Git access using caching"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitaly;
+license=('MIT')
+depends=(glibc ruby2.5 libxml2 libxslt)
+options=(!buildflags)
+makedepends=(go ruby2.5-bundler cmake)
+backup=("etc/gitlab-gitaly/config.toml")
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitaly/repository/archive?sha=v${pkgver};
+"gitlab-gitaly.service")

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

2019-02-05 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, February 5, 2019 @ 23:41:20
  Author: svenstaro
Revision: 429689

archrelease: copy trunk to community-x86_64

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

-+
 PKGBUILD|  436 +++---
 gitlab-backup.service   |   40 ++--
 gitlab-backup.timer |   20 +-
 gitlab-mailroom.service |   44 ++--
 gitlab-sidekiq.service  |   62 +++---
 gitlab-unicorn.service  |   68 +++
 gitlab.install  |   40 ++--
 gitlab.logrotate|   22 +-
 gitlab.target   |   14 -
 gitlab.tmpfiles.d   |2 
 10 files changed, 374 insertions(+), 374 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 23:41:02 UTC (rev 429688)
+++ PKGBUILD2019-02-05 23:41:20 UTC (rev 429689)
@@ -1,218 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Pavol (Lopo) Hluchy 
-# Contributor: Jonas Heinrich 
-# Contributor: Massimiliano Torromeo 
-# Contributor: Tobias Hunger 
-# Contributor: Stefan Tatschner 
-# Contributor: Caleb Maclennan 
-
-# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
-# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
-# need this again at some point in the future.
-pkgname=gitlab
-pkgver=11.7.0
-pkgrel=1
-pkgdesc="Project management and code hosting application"
-arch=('x86_64')
-url="https://gitlab.com/gitlab-org/gitlab-ce;
-license=('MIT')
-options=(!buildflags)
-depends=('ruby2.5' 'ruby2.5-bundler' 'git' 'gitlab-workhorse' 'gitlab-gitaly' 
'openssh' 'redis' 'libxslt' 'icu' 're2' 'http-parser' 'nodejs')
-makedepends=('cmake' 'postgresql' 'mariadb' 'yarn' 'go' 'nodejs')
-optdepends=('postgresql: database backend'
-'mysql: database backend'
-'python2-docutils: reStructuredText markup language support'
-'smtp-server: mail server in order to receive mail notifications')
-backup=("etc/webapps/${pkgname}/application.rb"
-"etc/webapps/${pkgname}/gitlab.yml"
-"etc/webapps/${pkgname}/resque.yml"
-"etc/webapps/${pkgname}/unicorn.rb"
-"etc/logrotate.d/${pkgname}")
-source=("$pkgname-$pkgver.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-ce/repository/archive?sha=v${pkgver};
-gitlab-unicorn.service
-gitlab-sidekiq.service
-gitlab-backup.service
-gitlab-mailroom.service
-gitlab-backup.timer
-gitlab.target
-gitlab.tmpfiles.d
-gitlab.logrotate)
-install='gitlab.install'
-sha512sums=('288e2cd1c832ed52007b8ae32d378651d2f637861937f006899aaec37c04100cea1f2851575082071e9189ac602179f882700909275f3530309dbbec6389b4f3'
-
'd6d0604a726277f27a7596caf31909ff7d9854fd85f2902fd8a06eb581b38cc0e0fd6c10b3b16c84e0c629230501bc51d2f74c765761b43cdead139a521a327d'
-
'41ca8890aff1dd99b3c4ef283f70a172af772837ab6b1bda1d26710616a822f5179899ca9b3a96bc0b434f8f6d614b29b39b1596c0f284e5347ae9e06d40c1c4'
-
'2e49f4c2549c219d5d1c8572a7db7a700847bc8c520b44bdfc1742d3caf57d8336da5c0b74672f820349b8eab0fa1712dcec5588a4fb742ad98c8eb7ec2b5951'
-
'fdb698c86057574aecaa1f1503f3d3319e06d5e872c676d58590b48bb7b3483b837bc991136eb2cc4b2cea68b52d294b8c1b382c9659f14027a923ac3c17d6d5'
-

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

2019-02-05 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, February 5, 2019 @ 23:41:02
  Author: svenstaro
Revision: 429688

upgpkg: gitlab 11.7.4-1

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 23:14:52 UTC (rev 429687)
+++ PKGBUILD2019-02-05 23:41:02 UTC (rev 429688)
@@ -10,7 +10,7 @@
 # commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
 # need this again at some point in the future.
 pkgname=gitlab
-pkgver=11.7.0
+pkgver=11.7.4
 pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')
@@ -38,7 +38,7 @@
 gitlab.tmpfiles.d
 gitlab.logrotate)
 install='gitlab.install'
-sha512sums=('288e2cd1c832ed52007b8ae32d378651d2f637861937f006899aaec37c04100cea1f2851575082071e9189ac602179f882700909275f3530309dbbec6389b4f3'
+sha512sums=('c58f5167d216d7ac3182070a636b305fbb38f6bd9fc79646156e0b83c6553b1f20175d0ea63bba93a31fc2bcb53334bfa7bdfc204c9ab139b36e316ce47273fc'
 
'd6d0604a726277f27a7596caf31909ff7d9854fd85f2902fd8a06eb581b38cc0e0fd6c10b3b16c84e0c629230501bc51d2f74c765761b43cdead139a521a327d'
 
'41ca8890aff1dd99b3c4ef283f70a172af772837ab6b1bda1d26710616a822f5179899ca9b3a96bc0b434f8f6d614b29b39b1596c0f284e5347ae9e06d40c1c4'
 
'2e49f4c2549c219d5d1c8572a7db7a700847bc8c520b44bdfc1742d3caf57d8336da5c0b74672f820349b8eab0fa1712dcec5588a4fb742ad98c8eb7ec2b5951'


[arch-commits] Commit in firefox-developer-edition-i18n/repos/community-any (2 files)

2019-02-05 Thread Andrew Crerar via arch-commits
Date: Tuesday, February 5, 2019 @ 23:14:52
  Author: andrewsc
Revision: 429687

archrelease: copy trunk to community-any

Added:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD
(from rev 429686, firefox-developer-edition-i18n/trunk/PKGBUILD)
Deleted:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD

--+
 PKGBUILD |  464 ++---
 1 file changed, 232 insertions(+), 232 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 23:07:29 UTC (rev 429686)
+++ PKGBUILD2019-02-05 23:14:52 UTC (rev 429687)
@@ -1,232 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=66.0b4
-pkgrel=1
-pkgdesc="Language pack for Firefox Developer Edition"
-arch=('any')
-url="https://www.mozilla.com/;
-license=('MPL' 'GPL')
-
-_languages=(
-  'ach"Acholi"'
-  'af "Afrikaans"'
-  'an "Aragonese"'
-  'ar "Arabic"'
-  'as "Assamese"'
-  'ast"Asturian"'
-  'az "Azerbaijani"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn-BD  "Bengali (Bangladesh)"'
-  'bn-IN  "Bengali (India)"'
-  'br "Breton"'
-  'bs "Bosnian"'
-  'ca "Catalan"'
-  'cak"Maya Kaqchikel"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'en-ZA  "English (South African)"'
-  'eo "Esperanto"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-CL  "Spanish (Chile)"'
-  'es-ES  "Spanish (Spain)"'
-  'es-MX  "Spanish (Mexico)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fa "Persian"'
-  'ff "Fulah"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'gn "Guarani"'
-  'gu-IN  "Gujarati (India)"'
-  'he "Hebrew"'
-  'hi-IN  "Hindi (India)"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'ia "Interlingua"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'ka "Georgian"'
-  'kab"Kabyle"'
-  'kk "Kazakh"'
-  'km "Khmer"'
-  'kn "Kannada"'
-  'ko "Korean"'
-  'lij"Ligurian"'
-  'lt "Lithuanian"'
-  'lv "Latvian"'
-  'mai"Maithili"'
-  'mk "Macedonian"'
-  'ml "Malayalam"'
-  'mr "Marathi"'
-  'ms "Malay"'
-  'my "Burmese"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'ne-NP  "Nepali"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'or "Oriya"'
-  'pa-IN  "Punjabi (India)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'son"Songhai"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta "Tamil"'
-  'te "Telugu"'
-  'th "Thai"'
-  'tr "Turkish"'
-  'uk "Ukrainian"'
-  'ur "Urdu"'
-  'uz "Uzbek"'
-  'vi "Vietnamese"'
-  'xh "Xhosa"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://archive.mozilla.org/pub/devedition/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-developer-edition-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  
source+=("firefox-developer-edition-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox Developer Edition"
-  depends=("firefox-developer-edition>=$pkgver")
-  install -Dm644 firefox-developer-edition-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
-}
-
-sha512sums=('b85cd486108d34d93d78a778169634c40a00523ccf307209158cf3e5923171d26e6e0bc1299382e42bebd878db04b060cfc3d064683b5c185f6bd77f771c74aa'
-
'4877675713a791aead6b25b6a1c701a9d11d21acacc44f129be6e1b951df6a3860ea873b3d06c4446f7ae7954de352f9171f54e9480e5bdbb852b5acce82234b'
-
'0f38c54d93bfadd8038382c2fb5bb163bfc8e01211c3fdb35723f01edd31b8e3c5b56693cf9601382d72bc78c152d1d03bb6b35e612440c37738ca0d5679980e'
-
'85a00ed6745d7f90f7227e6c5fdb74b599d8cefd68fafa91440907f674f78cc2376ff2730bdfb7160671d87327cecb024c527c15ff6fa5b7bc11f46d6d57f446'
-
'362490e30ec9a870f52d7be2d0a80f3b7422eecada5532f7e1f64553d09137c9f6a2cca95eb17f8ceaae2280dcc5c839286b948c511c6d99e841335080c6dbcb'
-
'd4a7ed3032f3d8fb0be63dfa7fdd9ebe710141319f729c2a1f41d068f432776012c1a5d17efa3cb0d5d955e3157bc6218f3c045b5dc9c6414e874f4630af7211'
-

[arch-commits] Commit in python-ovirt-engine-sdk/trunk (PKGBUILD)

2019-02-05 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, February 5, 2019 @ 23:07:21
  Author: svenstaro
Revision: 429685

upgpkg: python-ovirt-engine-sdk 4.3.0-1

Modified:
  python-ovirt-engine-sdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 23:05:16 UTC (rev 429684)
+++ PKGBUILD2019-02-05 23:07:21 UTC (rev 429685)
@@ -3,7 +3,7 @@
 
 pkgbase='python-ovirt-engine-sdk'
 pkgname=('python-ovirt-engine-sdk' 'python2-ovirt-engine-sdk')
-pkgver=4.2.9
+pkgver=4.3.0
 pkgrel=1
 pkgdesc='Python access to the oVirt Engine API'
 arch=('x86_64')
@@ -10,8 +10,8 @@
 url='http://ovirt.org/develop/release-management/features/infra/python-sdk'
 makedepends=('python-setuptools' 'python2-setuptools' 'libxml2')
 license=('custom')
-source=("http://resources.ovirt.org/pub/ovirt-4.2/src/python-ovirt-engine-sdk4/ovirt-engine-sdk-python-${pkgver}.tar.gz;)
-sha512sums=('be8fc251f2d20b7e32940c0d5f1a9ba40478dcdc3b289a5d8da449cf1f7f98e8f514cab394adfd8b49a775849ca89cf2680fbf590659588b0403f2cc88e4f34b')
+source=("http://resources.ovirt.org/pub/ovirt-4.3/src/python-ovirt-engine-sdk4/ovirt-engine-sdk-python-${pkgver}.tar.gz;)
+sha512sums=('73921b7a2506926a708f6bda02c8b52d4da2145438e8e56e0e7718b9a425b703ed503250df94c6f9a22b5154ffaf5470ac289e6a23c5910bc92b2558dcfe433e')
 
 package_python-ovirt-engine-sdk() {
   depends=('python-pycurl' 'python-six')


[arch-commits] Commit in python-ovirt-engine-sdk/repos/community-x86_64 (2 files)

2019-02-05 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, February 5, 2019 @ 23:07:29
  Author: svenstaro
Revision: 429686

archrelease: copy trunk to community-x86_64

Added:
  python-ovirt-engine-sdk/repos/community-x86_64/PKGBUILD
(from rev 429685, python-ovirt-engine-sdk/trunk/PKGBUILD)
Deleted:
  python-ovirt-engine-sdk/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 23:07:21 UTC (rev 429685)
+++ PKGBUILD2019-02-05 23:07:29 UTC (rev 429686)
@@ -1,32 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Konstantin Shalygin 
-
-pkgbase='python-ovirt-engine-sdk'
-pkgname=('python-ovirt-engine-sdk' 'python2-ovirt-engine-sdk')
-pkgver=4.2.9
-pkgrel=1
-pkgdesc='Python access to the oVirt Engine API'
-arch=('x86_64')
-url='http://ovirt.org/develop/release-management/features/infra/python-sdk'
-makedepends=('python-setuptools' 'python2-setuptools' 'libxml2')
-license=('custom')
-source=("http://resources.ovirt.org/pub/ovirt-4.2/src/python-ovirt-engine-sdk4/ovirt-engine-sdk-python-${pkgver}.tar.gz;)
-sha512sums=('be8fc251f2d20b7e32940c0d5f1a9ba40478dcdc3b289a5d8da449cf1f7f98e8f514cab394adfd8b49a775849ca89cf2680fbf590659588b0403f2cc88e4f34b')
-
-package_python-ovirt-engine-sdk() {
-  depends=('python-pycurl' 'python-six')
-
-  cd "${srcdir}/ovirt-engine-sdk-python-${pkgver}"
-  python setup.py install -O1 --root="${pkgdir}"
-
-  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python2-ovirt-engine-sdk() {
-  depends=('python2-pycurl' 'python2-six' 'python2-enum34')
-
-  cd "${srcdir}/ovirt-engine-sdk-python-${pkgver}"
-  python2 setup.py install -O1 --root="${pkgdir}"
-
-  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-ovirt-engine-sdk/repos/community-x86_64/PKGBUILD (from rev 
429685, python-ovirt-engine-sdk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 23:07:29 UTC (rev 429686)
@@ -0,0 +1,32 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Konstantin Shalygin 
+
+pkgbase='python-ovirt-engine-sdk'
+pkgname=('python-ovirt-engine-sdk' 'python2-ovirt-engine-sdk')
+pkgver=4.3.0
+pkgrel=1
+pkgdesc='Python access to the oVirt Engine API'
+arch=('x86_64')
+url='http://ovirt.org/develop/release-management/features/infra/python-sdk'
+makedepends=('python-setuptools' 'python2-setuptools' 'libxml2')
+license=('custom')
+source=("http://resources.ovirt.org/pub/ovirt-4.3/src/python-ovirt-engine-sdk4/ovirt-engine-sdk-python-${pkgver}.tar.gz;)
+sha512sums=('73921b7a2506926a708f6bda02c8b52d4da2145438e8e56e0e7718b9a425b703ed503250df94c6f9a22b5154ffaf5470ac289e6a23c5910bc92b2558dcfe433e')
+
+package_python-ovirt-engine-sdk() {
+  depends=('python-pycurl' 'python-six')
+
+  cd "${srcdir}/ovirt-engine-sdk-python-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}"
+
+  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-ovirt-engine-sdk() {
+  depends=('python2-pycurl' 'python2-six' 'python2-enum34')
+
+  cd "${srcdir}/ovirt-engine-sdk-python-${pkgver}"
+  python2 setup.py install -O1 --root="${pkgdir}"
+
+  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2019-02-05 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, February 5, 2019 @ 23:05:16
  Author: svenstaro
Revision: 429684

archrelease: copy trunk to community-any

Added:
  python-keras-applications/repos/community-any/PKGBUILD
(from rev 429683, python-keras-applications/trunk/PKGBUILD)
Deleted:
  python-keras-applications/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 23:05:08 UTC (rev 429683)
+++ PKGBUILD2019-02-05 23:05:16 UTC (rev 429684)
@@ -1,23 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Oliver Harley 
-_pkgname=Keras_Applications
-pkgname=python-keras-applications
-pkgver=1.0.6
-pkgrel=2
-pkgdesc="Applications module of the Keras deep learning library"
-arch=('any')
-url="https://pypi.org/project/Keras-Applications/;
-license=('MIT')
-depends=('python' 'python-setuptools' 'python-numpy')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
-sha256sums=('a03af60ddc9c5afdae4d5c9a8dd4ca857550e0b793733a5072e0725829b87017')
-
-build() {
-  cd "$srcdir/${_pkgname}-${pkgver}"
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir/${_pkgname}-${pkgver}"
-  python setup.py install --root="${pkgdir}"/ --optimize=1
-}

Copied: python-keras-applications/repos/community-any/PKGBUILD (from rev 
429683, python-keras-applications/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 23:05:16 UTC (rev 429684)
@@ -0,0 +1,23 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Oliver Harley 
+_pkgname=Keras_Applications
+pkgname=python-keras-applications
+pkgver=1.0.7
+pkgrel=1
+pkgdesc="Applications module of the Keras deep learning library"
+arch=('any')
+url="https://pypi.org/project/Keras-Applications/;
+license=('MIT')
+depends=('python' 'python-setuptools' 'python-numpy')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
+sha256sums=('60607b2b98868983e5153bf1cc6aa468ba73adc93bc977a90edaa4bc595e69fa')
+
+build() {
+  cd "$srcdir/${_pkgname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir/${_pkgname}-${pkgver}"
+  python setup.py install --root="${pkgdir}"/ --optimize=1
+}


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

2019-02-05 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, February 5, 2019 @ 23:05:08
  Author: svenstaro
Revision: 429683

upgpkg: python-keras-applications 1.0.7-1

Modified:
  python-keras-applications/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 23:04:39 UTC (rev 429682)
+++ PKGBUILD2019-02-05 23:05:08 UTC (rev 429683)
@@ -2,8 +2,8 @@
 # Contributor: Oliver Harley 
 _pkgname=Keras_Applications
 pkgname=python-keras-applications
-pkgver=1.0.6
-pkgrel=2
+pkgver=1.0.7
+pkgrel=1
 pkgdesc="Applications module of the Keras deep learning library"
 arch=('any')
 url="https://pypi.org/project/Keras-Applications/;
@@ -10,7 +10,7 @@
 license=('MIT')
 depends=('python' 'python-setuptools' 'python-numpy')
 
source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
-sha256sums=('a03af60ddc9c5afdae4d5c9a8dd4ca857550e0b793733a5072e0725829b87017')
+sha256sums=('60607b2b98868983e5153bf1cc6aa468ba73adc93bc977a90edaa4bc595e69fa')
 
 build() {
   cd "$srcdir/${_pkgname}-${pkgver}"


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

2019-02-05 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, February 5, 2019 @ 23:04:39
  Author: svenstaro
Revision: 429682

archrelease: copy trunk to community-any

Added:
  python-keras-preprocessing/repos/community-any/PKGBUILD
(from rev 429681, python-keras-preprocessing/trunk/PKGBUILD)
Deleted:
  python-keras-preprocessing/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 23:04:28 UTC (rev 429681)
+++ PKGBUILD2019-02-05 23:04:39 UTC (rev 429682)
@@ -1,23 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Oliver Harley 
-_pkgname=Keras_Preprocessing
-pkgname=python-keras-preprocessing
-pkgver=1.0.5
-pkgrel=1
-pkgdesc="Preprocessing module of the Keras deep learning library"
-arch=('any')
-url="https://pypi.org/project/Keras-Preprocessing/;
-license=('MIT')
-depends=('python' 'python-setuptools' 'python-numpy')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
-sha256sums=('ef2e482c4336fcf7180244d06f4374939099daa3183816e82aee7755af35b754')
-
-build() {
-  cd "$srcdir/${_pkgname}-${pkgver}"
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir/${_pkgname}-${pkgver}"
-  python setup.py install --root="$pkgdir"/ --optimize=1
-}

Copied: python-keras-preprocessing/repos/community-any/PKGBUILD (from rev 
429681, python-keras-preprocessing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 23:04:39 UTC (rev 429682)
@@ -0,0 +1,23 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Oliver Harley 
+_pkgname=Keras_Preprocessing
+pkgname=python-keras-preprocessing
+pkgver=1.0.8
+pkgrel=1
+pkgdesc="Preprocessing module of the Keras deep learning library"
+arch=('any')
+url="https://pypi.org/project/Keras-Preprocessing/;
+license=('MIT')
+depends=('python' 'python-setuptools' 'python-numpy')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
+sha256sums=('6e669aa713727f0bc08f756616f64e0dfa75d86cfc0dcf33297ab05cef7d')
+
+build() {
+  cd "$srcdir/${_pkgname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir/${_pkgname}-${pkgver}"
+  python setup.py install --root="$pkgdir"/ --optimize=1
+}


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

2019-02-05 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, February 5, 2019 @ 23:04:28
  Author: svenstaro
Revision: 429681

upgpkg: python-keras-preprocessing 1.0.8-1

Modified:
  python-keras-preprocessing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 22:56:57 UTC (rev 429680)
+++ PKGBUILD2019-02-05 23:04:28 UTC (rev 429681)
@@ -2,7 +2,7 @@
 # Contributor: Oliver Harley 
 _pkgname=Keras_Preprocessing
 pkgname=python-keras-preprocessing
-pkgver=1.0.5
+pkgver=1.0.8
 pkgrel=1
 pkgdesc="Preprocessing module of the Keras deep learning library"
 arch=('any')
@@ -10,7 +10,7 @@
 license=('MIT')
 depends=('python' 'python-setuptools' 'python-numpy')
 
source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
-sha256sums=('ef2e482c4336fcf7180244d06f4374939099daa3183816e82aee7755af35b754')
+sha256sums=('6e669aa713727f0bc08f756616f64e0dfa75d86cfc0dcf33297ab05cef7d')
 
 build() {
   cd "$srcdir/${_pkgname}-${pkgver}"


[arch-commits] Commit in firefox-developer-edition-i18n/trunk (PKGBUILD)

2019-02-05 Thread Andrew Crerar via arch-commits
Date: Tuesday, February 5, 2019 @ 22:56:57
  Author: andrewsc
Revision: 429680

upgpkg: firefox-developer-edition-i18n 66.0b5-1

firefox-developer-edition-i18n: Updating to 66.0b5

Modified:
  firefox-developer-edition-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  196 ++---
 1 file changed, 98 insertions(+), 98 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 22:40:44 UTC (rev 429679)
+++ PKGBUILD2019-02-05 22:56:57 UTC (rev 429680)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=66.0b4
+pkgver=66.0b5
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -133,100 +133,100 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
 }
 
-sha512sums=('b85cd486108d34d93d78a778169634c40a00523ccf307209158cf3e5923171d26e6e0bc1299382e42bebd878db04b060cfc3d064683b5c185f6bd77f771c74aa'
-
'4877675713a791aead6b25b6a1c701a9d11d21acacc44f129be6e1b951df6a3860ea873b3d06c4446f7ae7954de352f9171f54e9480e5bdbb852b5acce82234b'
-
'0f38c54d93bfadd8038382c2fb5bb163bfc8e01211c3fdb35723f01edd31b8e3c5b56693cf9601382d72bc78c152d1d03bb6b35e612440c37738ca0d5679980e'
-
'85a00ed6745d7f90f7227e6c5fdb74b599d8cefd68fafa91440907f674f78cc2376ff2730bdfb7160671d87327cecb024c527c15ff6fa5b7bc11f46d6d57f446'
-
'362490e30ec9a870f52d7be2d0a80f3b7422eecada5532f7e1f64553d09137c9f6a2cca95eb17f8ceaae2280dcc5c839286b948c511c6d99e841335080c6dbcb'
-
'd4a7ed3032f3d8fb0be63dfa7fdd9ebe710141319f729c2a1f41d068f432776012c1a5d17efa3cb0d5d955e3157bc6218f3c045b5dc9c6414e874f4630af7211'
-
'66a158e53fee8872934b7fdb12f85ca7103cfd3d75aa36b63693caf65afa27d1f4cec5122c82757c6999ab05cad601bd30e1cc176dc2cd8b4a45441d96bf3edd'
-
'905b2301b96d873183d1d6840f1dd3cc5d0b0b90ea76a429b843541341d7524f2a41932b0503f4bbd94fe75a02ccd36dece21ed45ae09e5157dc407de0965ab1'
-
'd79786ccb58ab9020bb4640456ae1a47721e08598ecc26fc656b2f31ecdc7dc8f17d64565da297d9ae0c59f97c50e8c20a7ea7be95a9b6397f6d77880e5e425d'
-
'b1ab72b11a1761476198b6f493fb1ce29af32db85caed107c66420a21ede8beae6f3836f2ae4df4868d23e98c7d95d0626fb76d4408341c5326dcdb3269f2367'
-
'f4bc6503f47d056a46a304dc9374afb2080c07c5b802b2a26dd06ef22b34dd45114d630087cfb6069bdfc3715013a48745988ce8dd47233524a74391f482622a'
-
'be348b1020cdff344f1098970081b46d9b190f1cf76390c40b1b9dfd4e04b96c8d2fe4cf3974670ce7be65f3103d8def2195e76a4b55829a1f2a67bbf56e4c49'
-
'1f5801b6a6e8018f625d37fa4d5f10d12fe5a1bd0e52fa657e7745edb428d8a0ef188a43bc9ff244dacd89f32ca2393bf871baed6f058221b96e0cdf1f92a310'
-
'4e012fa059047fb81b6706d78b2813f50f838236f439ad38a14004db4cb3fedc8319681e45282242f95f8289ef1514c518e066ae16ae94bb349755c791f987fb'
-
'88ae9e2c36441a5c0c9ed96dc9693002b49274f394c5e80411bfeee78716bafb4b030b6aebab0e42443264c035bd38af931fb127212cbb100bb31dbcf935da2d'
-
'c5ffefe3a2d5ca75af30717bb7aa7c9df33732aa5e32e3453616130e529b570b7d5188724a333ed3105b8910c8a8741c92fffd14eae584be127b7fd9aeb23bb0'
-
'c42a896df7437838a1af9242c65bd395f74838134080620675751c39004bf473b08e71c623d2414c0e8929f839f70f7050cd0302bd1ac650adebf8f08750c62c'
-
'1c04da928af90e87e0b590ac2b010cb5ae70e627e9d37789549adecf30300e424dcf7b42c3ebed46ba7e620d51aa32baf2f4476b56d2b28d5ff92d12a6b99257'
-
'0fbabbd04ed32973cd5ac362942685668857c2840563f561d0eead1939af035ab23d8a55a1836f1fa28dee027f7d79bb52c8fa28c495d33c5c182697f7b70fbe'
-
'33ae01d24bb954c912e69600dd18dd347712621699ba0f98d25c2bfb013fc60aab1ad35fa117deac081681b7a82304c533b491997d1d53d12ce459fbbe3bec4f'
-
'955e84566b6545734dc83ac7adad009bc5dab42b6c485f9fc6cac9338c16ca17a93f613941736eec6084a5e796f98939f2c68c37ebc2d79fc29de5e3abaae6cf'
-
'39a61d852dfd32251f9270200599e5d247e731169f02760993fef00ec1b24a9c73f9e67363d2a4e7a80bc41c3e68d40a9585d9405b8dd40724b5676ffa184a9d'
-
'7d9d45a173c0e4e046e0d1fba91918314aa42b37b10c145ea332b0996bb7c259095c7d6a37bf3f597abc19395f284d4d3bc3705cbec18d8b35e9470c51c85500'
-
'dc03e66382f613223aae040fd59ac85ee55f1bb295aabafa4327e85b0a5bfe90c939c67f3ec5dc3b9e012f7abcf0fe583d54c9962e8c694169d17948a5d369d9'
-
'59c4dc267ccd92515ea36465184e26adfc4fd2526b698e1f9bb9a501b0aaebc44d0ede89507fa557db21c07b6436240e6f294c630731759bbeca3e56bdd9'
-
'cb13f33d166de5bc54d49bfb0add186d36455464922f238024e55e77717ce2928116623107d42525aa99dac4bce871895937eb7ac28ecf1a36927cbdcc84d318'
-
'fe7fb774ca6cea6bd1bc9409a8dda6a6b1f92e09b0fadcd941427b278e4b96b3edc18de5ebe97ce92281fc04bad93e84e758508a71a83daa23c832d1366b6a4b'
-
'571f4e1df9414974353a9de5efc467b52dd8e1726bb5210555c20cc9e03d3032d17109941c577f1c53d855450ca97ce60f4221a3c5a9338d951937618ae6ed92'
-

[arch-commits] Commit in firefox-developer-edition/repos/community-x86_64 (8 files)

2019-02-05 Thread Andrew Crerar via arch-commits
Date: Tuesday, February 5, 2019 @ 22:40:44
  Author: andrewsc
Revision: 429679

archrelease: copy trunk to community-x86_64

Added:
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 429676, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 429676, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 429678, firefox-developer-edition/trunk/firefox-install-dir.patch)
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg
(from rev 429678, firefox-developer-edition/trunk/firefox-symbolic.svg)
Deleted:
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg

---+
 PKGBUILD  |  348 ++--
 firefox-developer-edition.desktop |  622 ++--
 firefox-install-dir.patch |   84 ++--
 firefox-symbolic.svg  |  128 +++
 4 files changed, 591 insertions(+), 591 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 22:33:48 UTC (rev 429678)
+++ PKGBUILD2019-02-05 22:40:44 UTC (rev 429679)
@@ -1,174 +0,0 @@
-# Maintainer: Andrew Crerar 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=firefox-developer-edition
-pkgver=66.0b4
-pkgrel=1
-pkgdesc="Developer Edition of the popular Firefox web browser"
-arch=('x86_64')
-license=('MPL' 'GPL' 'LGPL')
-url="https://www.mozilla.org/firefox/channel/#developer;
-depends=('gtk3' 'mozilla-common' 'libxt' 'startup-notification' 'mime-types'
- 'dbus-glib' 'ffmpeg' 'nss' 'sqlite' 'ttf-font' 'libpulse')
-makedepends=('unzip' 'zip' 'diffutils' 'python2' 'python' 'yasm' 'mesa' 
'imake' 'inetutils'
- 'xorg-server-xvfb' 'autoconf2.13' 'rust' 'mercurial' 'clang' 
'llvm' 'jack'
- 'gtk2' 'nodejs' 'python2-psutil' 'cbindgen' 'nasm')
-optdepends=('networkmanager: Location detection via available WiFi networks'
-'libnotify: Notification integration'
-'pulseaudio: Audio support'
-'speech-dispatcher: Text-to-Speech'
-'hunspell-en_US: Spell Checking, American English')
-replaces=('firefox-developer')
-options=(!emptydirs !makeflags !strip)
-_repo=https://hg.mozilla.org/mozilla-unified
-source=("hg+$_repo#tag=DEVEDITION_${pkgver//./_}_RELEASE"
-"$pkgname".desktop
-firefox-symbolic.svg
-firefox-install-dir.patch)
-sha512sums=('SKIP'
-
'12617f60e01420350b8d9c7c1c3a2a5ba0f2c46df31b0e23e51093ebd68019ced7d193a01d964421b91e1b444ce4ab499523f21cd3a39a2ffac8883d096ac195'
-
'ba7db9a7c95a051bcd84e4c09c802fc55ee3c0d1d06ec1b169b04e414259b75bbe92fe584aee41a1e3f71e71c160df8bedf5393449e5024110ed27dbc0579ea8'
-
'8fdf6a65e78406251075168c8310bb12c9b8419b3e51f59b1aa6244ef48ef1d201aae8bfdd5faa1da79242d9967fce959cbeffa54991ff39691f16168111b248')
-
-# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact foutre...@archlinux.org for
-# more information.
-_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
-
-# Mozilla API keys (see https://location.services.mozilla.com/api)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact hef...@archlinux.org for
-# more information.
-_mozilla_api_key=16674381-f021-49de-8622-3021c5942aff
-
-prepare() {
-  cd mozilla-unified
-  patch -Np1 -i ../firefox-install-dir.patch
-
-  echo -n "$_google_api_key" > google-api-key
-  echo -n "$_mozilla_api_key" > mozilla-api-key
-
-  cat > .mozconfig << END
-ac_add_options --enable-application=browser
-
-ac_add_options --prefix=/usr
-ac_add_options --enable-release
-ac_add_options --enable-hardening
-ac_add_options --enable-optimize
-ac_add_options --enable-rust-simd
-ac_add_options --enable-lto
-export CC=clang
-export CXX=clang++
-export AR=llvm-ar
-export NM=llvm-nm
-export RANLIB=llvm-ranlib
-
-# Branding
-ac_add_options --with-branding=browser/branding/aurora
-ac_add_options --enable-update-channel=aurora
-ac_add_options --with-distribution-id=org.archlinux
-ac_add_options "MOZ_ALLOW_LEGACY_EXTENSIONS=1"
-export MOZILLA_OFFICIAL=1
-export MOZ_TELEMETRY_REPORTING=1
-export MOZ_REQUIRE_SIGNING=0
-
-# Keys
-ac_add_options --with-google-api-keyfile=${PWD@Q}/google-api-key
-ac_add_options --with-mozilla-api-keyfile=${PWD@Q}/mozilla-api-key
-
-# System libraries
-ac_add_options --with-system-zlib
-ac_add_options 

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

2019-02-05 Thread David Runge via arch-commits
Date: Tuesday, February 5, 2019 @ 22:33:48
  Author: dvzrv
Revision: 429678

archrelease: copy trunk to community-x86_64

Added:
  lv2/repos/community-x86_64/PKGBUILD
(from rev 429677, lv2/trunk/PKGBUILD)
Deleted:
  lv2/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 22:33:40 UTC (rev 429677)
+++ PKGBUILD2019-02-05 22:33:48 UTC (rev 429678)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: David Runge 
-# Contributor: Ray Rashif 
-
-pkgname=lv2
-pkgver=1.14.0
-pkgrel=3
-pkgdesc="Plugin standard for audio systems"
-url="http://lv2plug.in/;
-license=('LGPL' 'custom')
-arch=('x86_64')
-makedepends=('asciidoc' 'doxygen' 'gtk2' 'libsndfile' 'pygmentize'
-'python2-pygments' 'python2-rdflib' 'python2-six')
-optdepends=('libsndfile: Example sampler'
-'gtk2: Example sampler'
-'python2-pygments: Documentation generator script'
-'python2-rdflib: Documentation generator script')
-provides=('lv2core')
-conflicts=('lv2core')
-replaces=('lv2core')
-source=("http://lv2plug.in/spec/${pkgname}-${pkgver}.tar.bz2"{,.asc})
-sha512sums=('6991d848ed9f04a48ca3070efc15af83431f680aa8a8559a02b1666f7b8d43af8e089f78c3b14ad3345dac32fd1c8ad0faf3a3f56dddc07c6f0e0aeef4077498'
-'SKIP') # David Robillard
-validpgpkeys=('907D226E7E13FA337F014A083672782A9BF368F3')
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-  # fix python2 shebang
-  sed -e 's/python/python2/' -i lv2specgen/lv2specgen.py
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python2 waf configure --prefix=/usr \
---libdir=/usr/lib \
---docs \
---test
-  python2 waf build $MAKEFLAGS
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  python2 waf test
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python2 waf install --destdir="${pkgdir}"
-  # license
-  install -vDm644 COPYING \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  # docs
-  install -vDm644 {NEWS,README.md}\
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lv2/repos/community-x86_64/PKGBUILD (from rev 429677, 
lv2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 22:33:48 UTC (rev 429678)
@@ -0,0 +1,47 @@
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
+
+pkgname=lv2
+pkgver=1.16.0
+pkgrel=1
+pkgdesc="Plugin standard for audio systems"
+url="http://lv2plug.in/;
+license=('LGPL' 'custom')
+arch=('x86_64')
+makedepends=('asciidoc' 'doxygen' 'gtk2' 'libsndfile' 'pygmentize'
+'python-pygments' 'python-rdflib')
+optdepends=('libsndfile: Example sampler'
+'gtk2: Example scope and sampler'
+'python-pygments: Documentation generator script'
+'python-rdflib: Documentation generator script')
+source=("http://lv2plug.in/spec/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha512sums=('ead6d590cded5dd7a548d6ffe0f2f9f8efadfa7bb9e8b4fa0aea6664ccdfbb3ca697514bddebe695a9442fba5b62714b5cd45c1bf7d0aaef12ffe50972c2d88c'
+'SKIP')
+validpgpkeys=('907D226E7E13FA337F014A083672782A9BF368F3') # David Robillard 

+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python waf configure --prefix=/usr \
+--libdir=/usr/lib \
+--docs \
+--test
+  python waf build $MAKEFLAGS
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  python waf test
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python waf install --destdir="${pkgdir}"
+  # license
+  install -vDm 644 COPYING \
+-t "${pkgdir}/usr/share/licenses/${pkgname}/"
+  # docs
+  install -vDm 644 {NEWS,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-02-05 Thread David Runge via arch-commits
Date: Tuesday, February 5, 2019 @ 22:33:40
  Author: dvzrv
Revision: 429677

upgpkg: lv2 1.16.0-1

Upgrading to 1.16.0. Switching to python based make/optdepends. Removing 
python2 shebang fix.

Modified:
  lv2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 22:20:32 UTC (rev 429676)
+++ PKGBUILD2019-02-05 22:33:40 UTC (rev 429677)
@@ -2,54 +2,45 @@
 # Contributor: Ray Rashif 
 
 pkgname=lv2
-pkgver=1.14.0
-pkgrel=3
+pkgver=1.16.0
+pkgrel=1
 pkgdesc="Plugin standard for audio systems"
 url="http://lv2plug.in/;
 license=('LGPL' 'custom')
 arch=('x86_64')
 makedepends=('asciidoc' 'doxygen' 'gtk2' 'libsndfile' 'pygmentize'
-'python2-pygments' 'python2-rdflib' 'python2-six')
+'python-pygments' 'python-rdflib')
 optdepends=('libsndfile: Example sampler'
-'gtk2: Example sampler'
-'python2-pygments: Documentation generator script'
-'python2-rdflib: Documentation generator script')
-provides=('lv2core')
-conflicts=('lv2core')
-replaces=('lv2core')
-source=("http://lv2plug.in/spec/${pkgname}-${pkgver}.tar.bz2"{,.asc})
-sha512sums=('6991d848ed9f04a48ca3070efc15af83431f680aa8a8559a02b1666f7b8d43af8e089f78c3b14ad3345dac32fd1c8ad0faf3a3f56dddc07c6f0e0aeef4077498'
-'SKIP') # David Robillard
-validpgpkeys=('907D226E7E13FA337F014A083672782A9BF368F3')
+'gtk2: Example scope and sampler'
+'python-pygments: Documentation generator script'
+'python-rdflib: Documentation generator script')
+source=("http://lv2plug.in/spec/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha512sums=('ead6d590cded5dd7a548d6ffe0f2f9f8efadfa7bb9e8b4fa0aea6664ccdfbb3ca697514bddebe695a9442fba5b62714b5cd45c1bf7d0aaef12ffe50972c2d88c'
+'SKIP')
+validpgpkeys=('907D226E7E13FA337F014A083672782A9BF368F3') # David Robillard 

 
-prepare(){
-  cd "${pkgname}-${pkgver}"
-  # fix python2 shebang
-  sed -e 's/python/python2/' -i lv2specgen/lv2specgen.py
-}
-
 build() {
   cd "${pkgname}-${pkgver}"
-  python2 waf configure --prefix=/usr \
+  python waf configure --prefix=/usr \
 --libdir=/usr/lib \
 --docs \
 --test
-  python2 waf build $MAKEFLAGS
+  python waf build $MAKEFLAGS
 }
 
 check() {
   cd "${pkgname}-${pkgver}"
-  python2 waf test
+  python waf test
 }
 
 package() {
   cd "${pkgname}-${pkgver}"
-  python2 waf install --destdir="${pkgdir}"
+  python waf install --destdir="${pkgdir}"
   # license
-  install -vDm644 COPYING \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -vDm 644 COPYING \
+-t "${pkgdir}/usr/share/licenses/${pkgname}/"
   # docs
-  install -vDm644 {NEWS,README.md}\
+  install -vDm 644 {NEWS,README.md} \
 -t "${pkgdir}/usr/share/doc/${pkgname}"
 }
 


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

2019-02-05 Thread Jan Steffens via arch-commits
Date: Tuesday, February 5, 2019 @ 22:27:18
  Author: heftig
Revision: 345312

archrelease: copy trunk to extra-x86_64

Added:
  gnome-desktop/repos/extra-x86_64/PKGBUILD
(from rev 345311, gnome-desktop/trunk/PKGBUILD)
Deleted:
  gnome-desktop/repos/extra-x86_64/PKGBUILD
  gnome-desktop/repos/extra-x86_64/bwrap-var.diff

+
 PKGBUILD   |   95 ++-
 bwrap-var.diff |   15 
 2 files changed, 46 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 22:27:03 UTC (rev 345311)
+++ PKGBUILD2019-02-05 22:27:18 UTC (rev 345312)
@@ -1,49 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-desktop
-pkgver=3.30.2
-pkgrel=1
-epoch=1
-pkgdesc="Library with common API for various GNOME modules"
-url="https://gitlab.gnome.org/GNOME/gnome-desktop;
-arch=(x86_64)
-license=(GPL LGPL)
-depends=(gsettings-desktop-schemas gtk3 libxkbfile xkeyboard-config iso-codes 
libseccomp bubblewrap)
-makedepends=(gobject-introspection git autoconf-archive gtk-doc yelp-tools)
-_commit=8b7e4d1986450c4991e03de6b32bc98ee4f13c21  # tags/3.30.2^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-desktop.git#commit=$_commit;
-bwrap-var.diff)
-sha256sums=('SKIP'
-'f45d72715ff4893d71b186f5f547a7c466dbe9c6db097be28d32667c73bdee73')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  patch -Np1 -i ../bwrap-var.diff  # evince-thumbnailer needs fontconfig cache
-  gtkdocize
-  autoreconf -fvi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static --enable-gtk-doc \
---with-gnome-distributor="Arch Linux®" --enable-compile-warnings=yes
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-desktop/repos/extra-x86_64/PKGBUILD (from rev 345311, 
gnome-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 22:27:18 UTC (rev 345312)
@@ -0,0 +1,46 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-desktop
+pkgver=3.30.2.1
+pkgrel=1
+epoch=1
+pkgdesc="Library with common API for various GNOME modules"
+url="https://gitlab.gnome.org/GNOME/gnome-desktop;
+arch=(x86_64)
+license=(GPL LGPL)
+depends=(gsettings-desktop-schemas gtk3 libxkbfile xkeyboard-config iso-codes 
libseccomp bubblewrap)
+makedepends=(gobject-introspection git autoconf-archive gtk-doc yelp-tools)
+_commit=2da71b79c8e2574ec5ba3075ad9c1a8d5fd1b7ec  # tags/3.30.2.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-desktop.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  gtkdocize
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib --disable-static --enable-gtk-doc \
+--with-gnome-distributor="Arch Linux®" --enable-compile-warnings=yes
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: bwrap-var.diff
===
--- bwrap-var.diff  2019-02-05 22:27:03 UTC (rev 345311)
+++ bwrap-var.diff  2019-02-05 22:27:18 UTC (rev 345312)
@@ -1,15 +0,0 @@
- libgnome-desktop/gnome-desktop-thumbnail-script.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git c/libgnome-desktop/gnome-desktop-thumbnail-script.c 
i/libgnome-desktop/gnome-desktop-thumbnail-script.c
-index 14e2fed3..87da30f9 100644
 c/libgnome-desktop/gnome-desktop-thumbnail-script.c
-+++ i/libgnome-desktop/gnome-desktop-thumbnail-script.c
-@@ -515,6 +515,7 @@ add_bwrap (GPtrArray   *array,
- 
-   add_args (array,
-   "bwrap",
-+  "--ro-bind", "/var", "/var",
-   "--ro-bind", "/usr", "/usr",
-   "--ro-bind", "/lib", "/lib",
-   "--ro-bind", "/lib64", "/lib64",


[arch-commits] Commit in gnome-desktop/trunk (PKGBUILD bwrap-var.diff)

2019-02-05 Thread Jan Steffens via arch-commits
Date: Tuesday, February 5, 2019 @ 22:27:03
  Author: heftig
Revision: 345311

3.30.2.1-1

Modified:
  gnome-desktop/trunk/PKGBUILD
Deleted:
  gnome-desktop/trunk/bwrap-var.diff

+
 PKGBUILD   |   11 ---
 bwrap-var.diff |   15 ---
 2 files changed, 4 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 21:24:40 UTC (rev 345310)
+++ PKGBUILD2019-02-05 22:27:03 UTC (rev 345311)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnome-desktop
-pkgver=3.30.2
+pkgver=3.30.2.1
 pkgrel=1
 epoch=1
 pkgdesc="Library with common API for various GNOME modules"
@@ -11,11 +11,9 @@
 license=(GPL LGPL)
 depends=(gsettings-desktop-schemas gtk3 libxkbfile xkeyboard-config iso-codes 
libseccomp bubblewrap)
 makedepends=(gobject-introspection git autoconf-archive gtk-doc yelp-tools)
-_commit=8b7e4d1986450c4991e03de6b32bc98ee4f13c21  # tags/3.30.2^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-desktop.git#commit=$_commit;
-bwrap-var.diff)
-sha256sums=('SKIP'
-'f45d72715ff4893d71b186f5f547a7c466dbe9c6db097be28d32667c73bdee73')
+_commit=2da71b79c8e2574ec5ba3075ad9c1a8d5fd1b7ec  # tags/3.30.2.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-desktop.git#commit=$_commit;)
+sha256sums=('SKIP')
 
 pkgver() {
   cd $pkgname
@@ -24,7 +22,6 @@
 
 prepare() {
   cd $pkgname
-  patch -Np1 -i ../bwrap-var.diff  # evince-thumbnailer needs fontconfig cache
   gtkdocize
   autoreconf -fvi
 }

Deleted: bwrap-var.diff
===
--- bwrap-var.diff  2019-02-05 21:24:40 UTC (rev 345310)
+++ bwrap-var.diff  2019-02-05 22:27:03 UTC (rev 345311)
@@ -1,15 +0,0 @@
- libgnome-desktop/gnome-desktop-thumbnail-script.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git c/libgnome-desktop/gnome-desktop-thumbnail-script.c 
i/libgnome-desktop/gnome-desktop-thumbnail-script.c
-index 14e2fed3..87da30f9 100644
 c/libgnome-desktop/gnome-desktop-thumbnail-script.c
-+++ i/libgnome-desktop/gnome-desktop-thumbnail-script.c
-@@ -515,6 +515,7 @@ add_bwrap (GPtrArray   *array,
- 
-   add_args (array,
-   "bwrap",
-+  "--ro-bind", "/var", "/var",
-   "--ro-bind", "/usr", "/usr",
-   "--ro-bind", "/lib", "/lib",
-   "--ro-bind", "/lib64", "/lib64",


[arch-commits] Commit in firefox-developer-edition/trunk (PKGBUILD)

2019-02-05 Thread Andrew Crerar via arch-commits
Date: Tuesday, February 5, 2019 @ 22:20:32
  Author: andrewsc
Revision: 429676

upgpkg: firefox-developer-edition 66.0b5-1

firefox-developer-edition: Updating to 66.0b5

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 21:34:25 UTC (rev 429675)
+++ PKGBUILD2019-02-05 22:20:32 UTC (rev 429676)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=66.0b4
+pkgver=66.0b5
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')


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

2019-02-05 Thread Jelle van der Waa via arch-commits
Date: Tuesday, February 5, 2019 @ 21:34:14
  Author: jelle
Revision: 429674

upgpkg: python-scrypt 0.8.7-1

Upstream update

Modified:
  python-scrypt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 21:29:07 UTC (rev 429673)
+++ PKGBUILD2019-02-05 21:34:14 UTC (rev 429674)
@@ -2,8 +2,8 @@
 # Contributor: Daniel Micay 
 
 pkgname=('python-scrypt' 'python2-scrypt')
-pkgver=0.8.6
-pkgrel=6
+pkgver=0.8.7
+pkgrel=1
 pkgdesc='Bindings for the scrypt key derivation function library'
 arch=('x86_64')
 url='https://pypi.python.org/pypi/scrypt/'
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 options=('!emptydirs')
 source=(https://pypi.io/packages/source/s/scrypt/scrypt-${pkgver}.tar.gz)
-sha512sums=('f0f3bd61a5fcb55a1d6af5b7062202446c2c0595e88617f1e53c4ded6a9b1ab857fda9e8d153c0b3bbceee49a818dd428776522c6b0919b15096fd230b13ef60')
+sha512sums=('2919ceed50888bdfdad846db1ef5ec6ac8769ef00a6c44bbe2837318a4809854c2f4c957e7035593aa6cc47a42f431bb3a86004f9e21c1f33ade8a6f8f90be84')
 
 prepare() {
   cp -a scrypt-${pkgver}{,-py2}


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

2019-02-05 Thread Jelle van der Waa via arch-commits
Date: Tuesday, February 5, 2019 @ 21:34:25
  Author: jelle
Revision: 429675

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 21:34:14 UTC (rev 429674)
+++ PKGBUILD2019-02-05 21:34:25 UTC (rev 429675)
@@ -1,55 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Daniel Micay 
-
-pkgname=('python-scrypt' 'python2-scrypt')
-pkgver=0.8.6
-pkgrel=6
-pkgdesc='Bindings for the scrypt key derivation function library'
-arch=('x86_64')
-url='https://pypi.python.org/pypi/scrypt/'
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
-options=('!emptydirs')
-source=(https://pypi.io/packages/source/s/scrypt/scrypt-${pkgver}.tar.gz)
-sha512sums=('f0f3bd61a5fcb55a1d6af5b7062202446c2c0595e88617f1e53c4ded6a9b1ab857fda9e8d153c0b3bbceee49a818dd428776522c6b0919b15096fd230b13ef60')
-
-prepare() {
-  cp -a scrypt-${pkgver}{,-py2}
-  sed 's|env python$|env python2|' -i scrypt-${pkgver}-py2/scrypt/scrypt.py
-}
-
-build() {
-  (cd scrypt-${pkgver}
-python setup.py build
-  )
-  (cd scrypt-${pkgver}-py2
-python2 setup.py build
-  )
-}
-
-check() {
-  (cd scrypt-${pkgver}
-python setup.py test
-  )
-  (cd scrypt-${pkgver}-py2
-python2 setup.py test
-  )
-}
-
-package_python-scrypt() {
-  depends=('python' 'glibc')
-  cd scrypt-${pkgver}
-  python setup.py install --root="${pkgdir}" -O1 --skip-build
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-package_python2-scrypt() {
-  depends=('python2' 'glibc')
-  cd scrypt-${pkgver}-py2
-  python2 setup.py install --root="${pkgdir}" -O1 --skip-build
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-scrypt/repos/community-x86_64/PKGBUILD (from rev 429674, 
python-scrypt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 21:34:25 UTC (rev 429675)
@@ -0,0 +1,55 @@
+# Maintainer: Levente Polyak 
+# Contributor: Daniel Micay 
+
+pkgname=('python-scrypt' 'python2-scrypt')
+pkgver=0.8.7
+pkgrel=1
+pkgdesc='Bindings for the scrypt key derivation function library'
+arch=('x86_64')
+url='https://pypi.python.org/pypi/scrypt/'
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+options=('!emptydirs')
+source=(https://pypi.io/packages/source/s/scrypt/scrypt-${pkgver}.tar.gz)
+sha512sums=('2919ceed50888bdfdad846db1ef5ec6ac8769ef00a6c44bbe2837318a4809854c2f4c957e7035593aa6cc47a42f431bb3a86004f9e21c1f33ade8a6f8f90be84')
+
+prepare() {
+  cp -a scrypt-${pkgver}{,-py2}
+  sed 's|env python$|env python2|' -i scrypt-${pkgver}-py2/scrypt/scrypt.py
+}
+
+build() {
+  (cd scrypt-${pkgver}
+python setup.py build
+  )
+  (cd scrypt-${pkgver}-py2
+python2 setup.py build
+  )
+}
+
+check() {
+  (cd scrypt-${pkgver}
+python setup.py test
+  )
+  (cd scrypt-${pkgver}-py2
+python2 setup.py test
+  )
+}
+
+package_python-scrypt() {
+  depends=('python' 'glibc')
+  cd scrypt-${pkgver}
+  python setup.py install --root="${pkgdir}" -O1 --skip-build
+  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_python2-scrypt() {
+  depends=('python2' 'glibc')
+  cd scrypt-${pkgver}-py2
+  python2 setup.py install --root="${pkgdir}" -O1 --skip-build
+  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-05 Thread Jelle van der Waa via arch-commits
Date: Tuesday, February 5, 2019 @ 21:29:07
  Author: jelle
Revision: 429673

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 21:28:57 UTC (rev 429672)
+++ PKGBUILD2019-02-05 21:29:07 UTC (rev 429673)
@@ -1,55 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Eli Schwartz 
-# Contributor: lilydjwg 
-
-pkgbase=python-dateutil
-pkgname=('python-dateutil' 'python2-dateutil')
-pkgver=2.7.5
-pkgrel=1
-pkgdesc="Provides powerful extensions to the standard datetime module"
-arch=('any')
-license=('BSD' 'Apache')
-url="https://github.com/dateutil/dateutil;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
-checkdepends=('python-pytest' 'python-freezegun' 'python-hypothesis'
-  'python2-pytest' 'python2-freezegun' 'python2-hypothesis')
-source=("https://files.pythonhosted.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-sha256sums=('88f9287c0174266bb0d8cedd395cfba9c58e87e5ad86b2ce58859bc11be3cf02'
-'SKIP')
-validpgpkeys=('6B49ACBADCF6BD1CA20667ABCD54FCE3D964BEFB') # Paul Ganssle 

-
-prepare() {
-  cd "$srcdir"
-
-  cp -r  python-dateutil-$pkgver python2-dateutil-$pkgver
-}
-
-build() {
-  cd "$srcdir"/python-dateutil-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/python2-dateutil-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-dateutil-$pkgver
-  pytest
-
-  cd "$srcdir"/python2-dateutil-$pkgver
-  pytest2
-}
-
-package_python-dateutil() {
-depends=('python-six')
-  cd "$srcdir"/python-dateutil-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-dateutil() {
-depends=('python2-six')
-  cd "$srcdir"/python2-dateutil-$pkgver
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-dateutil/repos/community-any/PKGBUILD (from rev 429672, 
python-dateutil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 21:29:07 UTC (rev 429673)
@@ -0,0 +1,55 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Eli Schwartz 
+# Contributor: lilydjwg 
+
+pkgbase=python-dateutil
+pkgname=('python-dateutil' 'python2-dateutil')
+pkgver=2.8.0
+pkgrel=1
+pkgdesc="Provides powerful extensions to the standard datetime module"
+arch=('any')
+license=('BSD' 'Apache')
+url="https://github.com/dateutil/dateutil;
+makedepends=('python-setuptools-scm' 'python2-setuptools-scm' 'python-six' 
'python2-six')
+checkdepends=('python-pytest' 'python-freezegun' 'python-hypothesis'
+  'python2-pytest' 'python2-freezegun' 'python2-hypothesis')
+source=("https://files.pythonhosted.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+sha256sums=('c89805f6f4d64db21ed966fda138f8a5ed7a4fdbc1a8ee329ce1b74e3c74da9e'
+'SKIP')
+validpgpkeys=('6B49ACBADCF6BD1CA20667ABCD54FCE3D964BEFB') # Paul Ganssle 

+
+prepare() {
+  cd "$srcdir"
+
+  cp -r  python-dateutil-$pkgver python2-dateutil-$pkgver
+}
+
+build() {
+  cd "$srcdir"/python-dateutil-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/python2-dateutil-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-dateutil-$pkgver
+  pytest
+
+  cd "$srcdir"/python2-dateutil-$pkgver
+  pytest2
+}
+
+package_python-dateutil() {
+depends=('python-six')
+  cd "$srcdir"/python-dateutil-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-dateutil() {
+depends=('python2-six')
+  cd "$srcdir"/python2-dateutil-$pkgver
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-02-05 Thread Jelle van der Waa via arch-commits
Date: Tuesday, February 5, 2019 @ 21:28:57
  Author: jelle
Revision: 429672

upgpkg: python-dateutil 2.8.0-1

Upstream update.

Modified:
  python-dateutil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 19:45:01 UTC (rev 429671)
+++ PKGBUILD2019-02-05 21:28:57 UTC (rev 429672)
@@ -4,7 +4,7 @@
 
 pkgbase=python-dateutil
 pkgname=('python-dateutil' 'python2-dateutil')
-pkgver=2.7.5
+pkgver=2.8.0
 pkgrel=1
 pkgdesc="Provides powerful extensions to the standard datetime module"
 arch=('any')
@@ -14,7 +14,7 @@
 checkdepends=('python-pytest' 'python-freezegun' 'python-hypothesis'
   'python2-pytest' 'python2-freezegun' 'python2-hypothesis')
 
source=("https://files.pythonhosted.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-sha256sums=('88f9287c0174266bb0d8cedd395cfba9c58e87e5ad86b2ce58859bc11be3cf02'
+sha256sums=('c89805f6f4d64db21ed966fda138f8a5ed7a4fdbc1a8ee329ce1b74e3c74da9e'
 'SKIP')
 validpgpkeys=('6B49ACBADCF6BD1CA20667ABCD54FCE3D964BEFB') # Paul Ganssle 

 


[arch-commits] Commit in gst-plugins-good/trunk (2 files)

2019-02-05 Thread Jan Steffens via arch-commits
Date: Tuesday, February 5, 2019 @ 21:24:19
  Author: heftig
Revision: 345309

1.14.4-2

Added:
  gst-plugins-good/trunk/0001-vpx-Fix-build-against-libvpx-1.8.patch
Modified:
  gst-plugins-good/trunk/PKGBUILD

-+
 0001-vpx-Fix-build-against-libvpx-1.8.patch |   71 ++
 PKGBUILD|6 +-
 2 files changed, 76 insertions(+), 1 deletion(-)

Added: 0001-vpx-Fix-build-against-libvpx-1.8.patch
===
--- 0001-vpx-Fix-build-against-libvpx-1.8.patch (rev 0)
+++ 0001-vpx-Fix-build-against-libvpx-1.8.patch 2019-02-05 21:24:19 UTC (rev 
345309)
@@ -0,0 +1,71 @@
+From c481cb5f2209087ffc0094490bacab46eda2d06b Mon Sep 17 00:00:00 2001
+Message-Id: 

+From: "Jan Alexander Steffens (heftig)" 
+Date: Tue, 5 Feb 2019 22:14:18 +0100
+Subject: [PATCH] vpx: Fix build against libvpx 1.8
+
+The deprecated debug visualizer was removed.
+---
+ configure.ac| 4 
+ ext/vpx/gstvpxdec.c | 2 ++
+ ext/vpx/meson.build | 4 
+ 3 files changed, 10 insertions(+)
+
+diff --git a/configure.ac b/configure.ac
+index 5e4cff126..8c20e5081 100644
+--- a/configure.ac
 b/configure.ac
+@@ -1054,6 +1054,10 @@ AG_GST_CHECK_FEATURE(VPX, [VPX decoder], vpx, [
+   AC_DEFINE(HAVE_VPX_1_4, 1, [Defined if the VPX library version is 1.4 
or bigger])
+ ], [true])
+ 
++PKG_CHECK_MODULES(VPX_180, vpx >= 1.8.0, [
++  AC_DEFINE(HAVE_VPX_1_8, 1, [Defined if the VPX library version is 1.8 
or bigger])
++], [true])
++
+ LIBS="$OLD_LIBS"
+ CFLAGS="$OLD_CFLAGS"
+   fi
+diff --git a/ext/vpx/gstvpxdec.c b/ext/vpx/gstvpxdec.c
+index c3f0f625f..da4322513 100644
+--- a/ext/vpx/gstvpxdec.c
 b/ext/vpx/gstvpxdec.c
+@@ -62,18 +62,20 @@ gst_vpx_dec_post_processing_flags_get_type (void)
+ {C_FLAGS (VP8_DEBLOCK), "Deblock", "deblock"},
+ {C_FLAGS (VP8_DEMACROBLOCK), "Demacroblock", "demacroblock"},
+ {C_FLAGS (VP8_ADDNOISE), "Add noise", "addnoise"},
++#ifndef HAVE_VPX_1_8
+ {C_FLAGS (VP8_DEBUG_TXT_FRAME_INFO),
+   "Print frame information",
+ "visualize-frame-info"},
+ {C_FLAGS (VP8_DEBUG_TXT_MBLK_MODES),
+   "Show macroblock mode selection overlaid on image",
+ "visualize-macroblock-modes"},
+ {C_FLAGS (VP8_DEBUG_TXT_DC_DIFF),
+   "Show dc diff for each macro block overlaid on image",
+ "visualize-dc-diff"},
+ {C_FLAGS (VP8_DEBUG_TXT_RATE_INFO),
+   "Print video rate info",
+ "visualize-rate-info"},
++#endif
+ {C_FLAGS (VP8_MFQE), "Multi-frame quality enhancement", "mfqe"},
+ {0, NULL, NULL}
+   };
+diff --git a/ext/vpx/meson.build b/ext/vpx/meson.build
+index 6ed440728..0d2340b32 100644
+--- a/ext/vpx/meson.build
 b/ext/vpx/meson.build
+@@ -48,6 +48,10 @@ if vpx_dep.found()
+ vpx_args += '-DHAVE_VPX_1_4'
+   endif
+ 
++  if dependency('vpx', version : '>=1.8.0', required : false).found()
++vpx_args += '-DHAVE_VPX_1_8'
++  endif
++
+   gstvpx = library('gstvpx',
+ vpx_sources,
+ c_args : gst_plugins_good_args + vpx_args,
+-- 
+2.20.1
+

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 20:32:23 UTC (rev 345308)
+++ PKGBUILD2019-02-05 21:24:19 UTC (rev 345309)
@@ -3,7 +3,7 @@
 
 pkgname=gst-plugins-good
 pkgver=1.14.4
-pkgrel=1
+pkgrel=2
 pkgdesc="GStreamer Multimedia Framework Good Plugins"
 url="https://gstreamer.freedesktop.org/;
 arch=(x86_64)
@@ -15,8 +15,10 @@
 checkdepends=(gst-plugins-base)
 _commit=d88d1b0e43b140587f35c7c9bf390fae051e427d  # tags/1.14.4^0
 
source=("git+https://anongit.freedesktop.org/git/gstreamer/gst-plugins-good#commit=$_commit;
+0001-vpx-Fix-build-against-libvpx-1.8.patch
 "gst-common::git+https://anongit.freedesktop.org/git/gstreamer/common;)
 sha256sums=('SKIP'
+'8ffcb46a5f07d04509b1e81b63d121c63cd68e91409be942a27b9a50279335a8'
 'SKIP')
 
 pkgver() {
@@ -27,6 +29,8 @@
 prepare() {
   cd $pkgname
 
+  patch -Np1 -i ../0001-vpx-Fix-build-against-libvpx-1.8.patch
+
   git submodule init
   git config --local submodule.common.url "$srcdir/gst-common"
   git submodule update


[arch-commits] Commit in gst-plugins-good/repos (3 files)

2019-02-05 Thread Jan Steffens via arch-commits
Date: Tuesday, February 5, 2019 @ 21:24:40
  Author: heftig
Revision: 345310

archrelease: copy trunk to staging-x86_64

Added:
  gst-plugins-good/repos/staging-x86_64/
  
gst-plugins-good/repos/staging-x86_64/0001-vpx-Fix-build-against-libvpx-1.8.patch
(from rev 345309, 
gst-plugins-good/trunk/0001-vpx-Fix-build-against-libvpx-1.8.patch)
  gst-plugins-good/repos/staging-x86_64/PKGBUILD
(from rev 345309, gst-plugins-good/trunk/PKGBUILD)

-+
 0001-vpx-Fix-build-against-libvpx-1.8.patch |   71 ++
 PKGBUILD|   65 +++
 2 files changed, 136 insertions(+)

Copied: 
gst-plugins-good/repos/staging-x86_64/0001-vpx-Fix-build-against-libvpx-1.8.patch
 (from rev 345309, 
gst-plugins-good/trunk/0001-vpx-Fix-build-against-libvpx-1.8.patch)
===
--- staging-x86_64/0001-vpx-Fix-build-against-libvpx-1.8.patch  
(rev 0)
+++ staging-x86_64/0001-vpx-Fix-build-against-libvpx-1.8.patch  2019-02-05 
21:24:40 UTC (rev 345310)
@@ -0,0 +1,71 @@
+From c481cb5f2209087ffc0094490bacab46eda2d06b Mon Sep 17 00:00:00 2001
+Message-Id: 

+From: "Jan Alexander Steffens (heftig)" 
+Date: Tue, 5 Feb 2019 22:14:18 +0100
+Subject: [PATCH] vpx: Fix build against libvpx 1.8
+
+The deprecated debug visualizer was removed.
+---
+ configure.ac| 4 
+ ext/vpx/gstvpxdec.c | 2 ++
+ ext/vpx/meson.build | 4 
+ 3 files changed, 10 insertions(+)
+
+diff --git a/configure.ac b/configure.ac
+index 5e4cff126..8c20e5081 100644
+--- a/configure.ac
 b/configure.ac
+@@ -1054,6 +1054,10 @@ AG_GST_CHECK_FEATURE(VPX, [VPX decoder], vpx, [
+   AC_DEFINE(HAVE_VPX_1_4, 1, [Defined if the VPX library version is 1.4 
or bigger])
+ ], [true])
+ 
++PKG_CHECK_MODULES(VPX_180, vpx >= 1.8.0, [
++  AC_DEFINE(HAVE_VPX_1_8, 1, [Defined if the VPX library version is 1.8 
or bigger])
++], [true])
++
+ LIBS="$OLD_LIBS"
+ CFLAGS="$OLD_CFLAGS"
+   fi
+diff --git a/ext/vpx/gstvpxdec.c b/ext/vpx/gstvpxdec.c
+index c3f0f625f..da4322513 100644
+--- a/ext/vpx/gstvpxdec.c
 b/ext/vpx/gstvpxdec.c
+@@ -62,18 +62,20 @@ gst_vpx_dec_post_processing_flags_get_type (void)
+ {C_FLAGS (VP8_DEBLOCK), "Deblock", "deblock"},
+ {C_FLAGS (VP8_DEMACROBLOCK), "Demacroblock", "demacroblock"},
+ {C_FLAGS (VP8_ADDNOISE), "Add noise", "addnoise"},
++#ifndef HAVE_VPX_1_8
+ {C_FLAGS (VP8_DEBUG_TXT_FRAME_INFO),
+   "Print frame information",
+ "visualize-frame-info"},
+ {C_FLAGS (VP8_DEBUG_TXT_MBLK_MODES),
+   "Show macroblock mode selection overlaid on image",
+ "visualize-macroblock-modes"},
+ {C_FLAGS (VP8_DEBUG_TXT_DC_DIFF),
+   "Show dc diff for each macro block overlaid on image",
+ "visualize-dc-diff"},
+ {C_FLAGS (VP8_DEBUG_TXT_RATE_INFO),
+   "Print video rate info",
+ "visualize-rate-info"},
++#endif
+ {C_FLAGS (VP8_MFQE), "Multi-frame quality enhancement", "mfqe"},
+ {0, NULL, NULL}
+   };
+diff --git a/ext/vpx/meson.build b/ext/vpx/meson.build
+index 6ed440728..0d2340b32 100644
+--- a/ext/vpx/meson.build
 b/ext/vpx/meson.build
+@@ -48,6 +48,10 @@ if vpx_dep.found()
+ vpx_args += '-DHAVE_VPX_1_4'
+   endif
+ 
++  if dependency('vpx', version : '>=1.8.0', required : false).found()
++vpx_args += '-DHAVE_VPX_1_8'
++  endif
++
+   gstvpx = library('gstvpx',
+ vpx_sources,
+ c_args : gst_plugins_good_args + vpx_args,
+-- 
+2.20.1
+

Copied: gst-plugins-good/repos/staging-x86_64/PKGBUILD (from rev 345309, 
gst-plugins-good/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-05 21:24:40 UTC (rev 345310)
@@ -0,0 +1,65 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgname=gst-plugins-good
+pkgver=1.14.4
+pkgrel=2
+pkgdesc="GStreamer Multimedia Framework Good Plugins"
+url="https://gstreamer.freedesktop.org/;
+arch=(x86_64)
+license=(LGPL)
+depends=(libpulse jack libsoup gst-plugins-base-libs wavpack aalib taglib 
libdv libshout libvpx
+ gdk-pixbuf2 libcaca libavc1394 libiec61883 libxdamage v4l-utils cairo 
libgudev speex flac
+ libraw1394 lame mpg123 twolame)
+makedepends=(python gtk-doc autoconf-archive git gtk3 qt5-declarative 
qt5-x11extras qt5-wayland)
+checkdepends=(gst-plugins-base)
+_commit=d88d1b0e43b140587f35c7c9bf390fae051e427d  # tags/1.14.4^0
+source=("git+https://anongit.freedesktop.org/git/gstreamer/gst-plugins-good#commit=$_commit;
+0001-vpx-Fix-build-against-libvpx-1.8.patch
+"gst-common::git+https://anongit.freedesktop.org/git/gstreamer/common;)
+sha256sums=('SKIP'
+'8ffcb46a5f07d04509b1e81b63d121c63cd68e91409be942a27b9a50279335a8'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git 

[arch-commits] Commit in meson/repos/extra-any (5 files)

2019-02-05 Thread Jan Steffens via arch-commits
Date: Tuesday, February 5, 2019 @ 20:31:55
  Author: heftig
Revision: 345307

archrelease: copy trunk to extra-any

Added:
  meson/repos/extra-any/4878.patch
(from rev 345306, meson/trunk/4878.patch)
  meson/repos/extra-any/PKGBUILD
(from rev 345306, meson/trunk/PKGBUILD)
  meson/repos/extra-any/arch-meson
(from rev 345306, meson/trunk/arch-meson)
Deleted:
  meson/repos/extra-any/PKGBUILD
  meson/repos/extra-any/arch-meson

+
 4878.patch |   26 
 PKGBUILD   |  127 ++-
 arch-meson |   36 ++--
 3 files changed, 105 insertions(+), 84 deletions(-)

Copied: meson/repos/extra-any/4878.patch (from rev 345306, 
meson/trunk/4878.patch)
===
--- 4878.patch  (rev 0)
+++ 4878.patch  2019-02-05 20:31:55 UTC (rev 345307)
@@ -0,0 +1,26 @@
+From c5544aea8d8480262b9792ac85b8e61d1fb08f74 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Corentin=20No=C3=ABl?= 
+Date: Mon, 4 Feb 2019 13:49:01 +0100
+Subject: [PATCH] vala: Support position-independent executables
+
+---
+ mesonbuild/compilers/vala.py | 6 ++
+ 1 file changed, 6 insertions(+)
+
+diff --git a/mesonbuild/compilers/vala.py b/mesonbuild/compilers/vala.py
+index e64d57f366..5303298a62 100644
+--- a/mesonbuild/compilers/vala.py
 b/mesonbuild/compilers/vala.py
+@@ -49,6 +49,12 @@ def get_compile_only_args(self):
+ def get_pic_args(self):
+ return []
+ 
++def get_pie_args(self):
++return []
++
++def get_pie_link_args(self):
++return []
++
+ def get_always_args(self):
+ return ['-C']
+ 

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 20:31:41 UTC (rev 345306)
+++ PKGBUILD2019-02-05 20:31:55 UTC (rev 345307)
@@ -1,61 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Levente Polyak 
-# Contributor: Anatol Pomozov 
-
-pkgname=meson
-pkgver=0.49.1
-pkgrel=1
-pkgdesc='High productivity build system'
-url='http://mesonbuild.com/'
-arch=('any')
-license=('Apache')
-depends=('python-setuptools' 'ninja')
-checkdepends=('gcc-objc' 'vala' 'rust' 'gcc-fortran' 'mono' 'boost' 'qt4' 
'qt5-base' 'git' 'cython'
-  'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 'python-gobject' 
'gobject-introspection'
-  'itstool' 'gtk3' 'java-environment=8' 'gtk-doc' 'llvm' 'clang' 
'sdl2' 'graphviz'
-  'doxygen' 'vulkan-validation-layers' 'openssh' 'mercurial' 
'gtk-sharp-2' 'qt5-tools'
-  'libwmf' 'dmd' 'valgrind')
-source=(https://github.com/mesonbuild/meson/releases/download/${pkgver}/meson-${pkgver}.tar.gz{,.asc}
-arch-meson)
-sha512sums=('2a9a3d1e1eae3f9f21f47c0efb2ecd78861a71109fa5a660bf6403df2d5bd5c31fa2ef848080ca72d25257836b9e00e2fb89d5fc281647600ece0179c703cfe8'
-'SKIP'
-
'f2a5e0f331a5ccf25fc8a440472548fedde9dbf4d562ec13baf502cf549d6ed35d61933dedeb8fafef261a28d4b568e897a004d435475e73dc0ed6d3427ba5b7')
-validpgpkeys=('95181F4EED14FDF4E41B518D3BF4693BFEEB9428') # Jussi Pakkanen 

-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  # Succeeds for us?
-  mv 'test cases/failing/85 gtest dependency with version' 'test 
cases/frameworks/'
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-check() (
-  cd ${pkgname}-${pkgver}
-
-  # set for debug output
-  #export MESON_PRINT_TEST_OUTPUT=1
-
-  export LC_CTYPE=en_US.UTF-8
-  ./run_tests.py
-)
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-
-  install -d "${pkgdir}/usr/share/vim/vimfiles"
-  cp -rt "${pkgdir}/usr/share/vim/vimfiles" data/syntax-highlighting/vim/*/
-
-  install -Dt "${pkgdir}/usr/share/emacs/site-lisp" -m644 
data/syntax-highlighting/emacs/*
-  install -Dt "${pkgdir}/usr/share/zsh/site-functions" -m644 
data/shell-completions/zsh/*
-
-  # Arch packaging helper
-  install -D ../arch-meson -t "${pkgdir}/usr/bin"
-}
-
-# vim: ts=2 sw=2 et:

Copied: meson/repos/extra-any/PKGBUILD (from rev 345306, meson/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 20:31:55 UTC (rev 345307)
@@ -0,0 +1,66 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Levente Polyak 
+# Contributor: Anatol Pomozov 
+
+pkgname=meson
+pkgver=0.49.2
+pkgrel=1
+pkgdesc='High productivity build system'
+url='http://mesonbuild.com/'
+arch=('any')
+license=('Apache')
+depends=('python-setuptools' 'ninja')
+checkdepends=('gcc-objc' 'vala' 'rust' 'gcc-fortran' 'mono' 'boost' 'qt4' 
'qt5-base' 'git' 'cython'
+  'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 'python-gobject' 
'gobject-introspection'
+  'itstool' 'gtk3' 'java-environment=8' 'gtk-doc' 'llvm' 'clang' 
'sdl2' 'graphviz'
+  'doxygen' 'vulkan-validation-layers' 'openssh' 

[arch-commits] Commit in flatpak/repos/extra-x86_64 (9 files)

2019-02-05 Thread Jan Steffens via arch-commits
Date: Tuesday, February 5, 2019 @ 20:32:23
  Author: heftig
Revision: 345308

archrelease: copy trunk to extra-x86_64

Added:
  flatpak/repos/extra-x86_64/PKGBUILD
(from rev 345307, flatpak/trunk/PKGBUILD)
  flatpak/repos/extra-x86_64/flathub.flatpakrepo
(from rev 345307, flatpak/trunk/flathub.flatpakrepo)
  flatpak/repos/extra-x86_64/flatpak-bindir.sh
(from rev 345307, flatpak/trunk/flatpak-bindir.sh)
  flatpak/repos/extra-x86_64/flatpak.install
(from rev 345307, flatpak/trunk/flatpak.install)
  flatpak/repos/extra-x86_64/python3.diff
(from rev 345307, flatpak/trunk/python3.diff)
Deleted:
  flatpak/repos/extra-x86_64/PKGBUILD
  flatpak/repos/extra-x86_64/flathub.flatpakrepo
  flatpak/repos/extra-x86_64/flatpak-bindir.sh
  flatpak/repos/extra-x86_64/flatpak.install

-+
 PKGBUILD|  182 --
 flathub.flatpakrepo |   16 ++--
 flatpak-bindir.sh   |   14 +--
 flatpak.install |   18 ++--
 python3.diff|   32 
 5 files changed, 146 insertions(+), 116 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 20:31:55 UTC (rev 345307)
+++ PKGBUILD2019-02-05 20:32:23 UTC (rev 345308)
@@ -1,92 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=flatpak
-pkgver=1.2.0
-pkgrel=1
-pkgdesc="Linux application sandboxing and distribution framework (formerly 
xdg-app)"
-url="http://flatpak.org;
-arch=(x86_64)
-license=(LGPL2.1)
-depends=(dbus systemd glib2 libsoup polkit libxau ostree json-glib libseccomp 
libarchive
- python bubblewrap appstream-glib xdg-dbus-proxy)
-makedepends=(intltool gobject-introspection gtk-doc git docbook-xsl xmlto)
-checkdepends=(valgrind)
-install=flatpak.install
-_commit=7baac10cdbb9096e675377d8adf21a09e2ffd2e8  # tags/1.2.0^0
-source=("git+https://github.com/flatpak/flatpak#commit=$_commit;
-"git+https://github.com/projectatomic/bubblewrap;
-"git+https://gitlab.gnome.org/GNOME/libglnx.git;
-"git+https://github.com/flatpak/xdg-dbus-proxy;
-flatpak-bindir.sh flathub.flatpakrepo)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'cf20e4831bceaaee74e9298b4ad7c4d2d51085d43f62d1c6a2d2977d2f421e00'
-'3371dd250e61d9e1633630073fefda153cd4426f72f4afa0c3373ae2e8fea03a')
-
-prepare() {
-  cd $pkgname
-
-  # Post-1.1.3 fixes
-  git cherry-pick -n 96fde5b29c86635a2bf5ef4e191d0ba63cbfe2c0 \
- 2a25ecf6ee8e6cff6ef56aeccc220b4640feb168 \
- 2f28a940b3488604d04c9b8ed8b81aad6c9e3337 \
- f28e8af9680074e1a6b4e6c90cb337fe2d52f26e
-
-  git submodule init
-  git config --local submodule.bubblewrap.url "$srcdir/bubblewrap"
-  git config --local submodule.libglnx.url "$srcdir/libglnx"
-  git config --local submodule.dbus-proxy.url "$srcdir/xdg-dbus-proxy"
-  git submodule update
-
-  # https://github.com/flatpak/flatpak/issues/267
-  sed -i '/locale\/C\./d' tests/make-test-runtime.sh
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  cd $pkgname
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---disable-static \
---enable-gtk-doc \
---with-system-bubblewrap \
---with-system-dbus-proxy \
---with-priv-mode=setuid \
---with-dbus-config-dir=/usr/share/dbus-1/system.d
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname
-  # Xattr tests fail on tmpfs
-  make -k check || :
-}
-
-package() {
-  depends+=(xdg-desktop-portal)
-
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-
-  install -Dt "$pkgdir/etc/profile.d" -m644 ../flatpak-bindir.sh
-  install -Dt "$pkgdir/usr/share/flatpak" -m644 ../flathub.flatpakrepo
-
-  # Fixup mode to match polkit
-  install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d"
-}

Copied: flatpak/repos/extra-x86_64/PKGBUILD (from rev 345307, 
flatpak/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 20:32:23 UTC (rev 345308)
@@ -0,0 +1,90 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=flatpak
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="Linux application sandboxing and distribution framework (formerly 
xdg-app)"
+url="http://flatpak.org;
+arch=(x86_64)
+license=(LGPL2.1)
+depends=(dbus systemd glib2 libsoup polkit libxau ostree json-glib libseccomp 
libarchive
+ python bubblewrap appstream-glib xdg-dbus-proxy)
+makedepends=(intltool gobject-introspection gtk-doc git docbook-xsl xmlto)
+checkdepends=(valgrind)
+install=flatpak.install
+_commit=7b78a7d0afa58e8596e7994e2ced3b9419391439  # tags/1.2.1^0
+source=("git+https://github.com/flatpak/flatpak#commit=$_commit;
+

[arch-commits] Commit in flatpak/trunk (PKGBUILD python3.diff)

2019-02-05 Thread Jan Steffens via arch-commits
Date: Tuesday, February 5, 2019 @ 20:31:41
  Author: heftig
Revision: 345306

1.2.1-1: with passing tests

Added:
  flatpak/trunk/python3.diff
Modified:
  flatpak/trunk/PKGBUILD

--+
 PKGBUILD |   16 +++-
 python3.diff |   32 
 2 files changed, 39 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 20:30:53 UTC (rev 345305)
+++ PKGBUILD2019-02-05 20:31:41 UTC (rev 345306)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=flatpak
-pkgver=1.2.0
+pkgver=1.2.1
 pkgrel=1
 pkgdesc="Linux application sandboxing and distribution framework (formerly 
xdg-app)"
 url="http://flatpak.org;
@@ -12,16 +12,18 @@
 makedepends=(intltool gobject-introspection gtk-doc git docbook-xsl xmlto)
 checkdepends=(valgrind)
 install=flatpak.install
-_commit=7baac10cdbb9096e675377d8adf21a09e2ffd2e8  # tags/1.2.0^0
+_commit=7b78a7d0afa58e8596e7994e2ced3b9419391439  # tags/1.2.1^0
 source=("git+https://github.com/flatpak/flatpak#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libglnx.git;
 "git+https://github.com/projectatomic/bubblewrap;
-"git+https://gitlab.gnome.org/GNOME/libglnx.git;
 "git+https://github.com/flatpak/xdg-dbus-proxy;
+python3.diff
 flatpak-bindir.sh flathub.flatpakrepo)
 sha256sums=('SKIP'
 'SKIP'
 'SKIP'
 'SKIP'
+'4b2e70d10402e179a1fdcfc367a8be128e2ceaafb8b16a737e14c16596417cc5'
 'cf20e4831bceaaee74e9298b4ad7c4d2d51085d43f62d1c6a2d2977d2f421e00'
 '3371dd250e61d9e1633630073fefda153cd4426f72f4afa0c3373ae2e8fea03a')
 
@@ -28,11 +30,7 @@
 prepare() {
   cd $pkgname
 
-  # Post-1.1.3 fixes
-  git cherry-pick -n 96fde5b29c86635a2bf5ef4e191d0ba63cbfe2c0 \
- 2a25ecf6ee8e6cff6ef56aeccc220b4640feb168 \
- 2f28a940b3488604d04c9b8ed8b81aad6c9e3337 \
- f28e8af9680074e1a6b4e6c90cb337fe2d52f26e
+  patch -Np1 -i ../python3.diff
 
   git submodule init
   git config --local submodule.bubblewrap.url "$srcdir/bubblewrap"
@@ -75,7 +73,7 @@
 check() {
   cd $pkgname
   # Xattr tests fail on tmpfs
-  make -k check || :
+  make -k check || [[ -n $(find . -maxdepth 0 -fstype tmpfs) ]]
 }
 
 package() {

Added: python3.diff
===
--- python3.diff(rev 0)
+++ python3.diff2019-02-05 20:31:41 UTC (rev 345306)
@@ -0,0 +1,32 @@
+diff --git i/tests/test-webserver.sh w/tests/test-webserver.sh
+index 6d10b011..52128884 100755
+--- i/tests/test-webserver.sh
 w/tests/test-webserver.sh
+@@ -3,25 +3,25 @@
+ set -euo pipefail
+ 
+ dir=$1
+-cmd=${2:-python -m SimpleHTTPServer 0}
++cmd=${2:-python -m http.server 0}
+ test_tmpdir=$(pwd)
+ 
+ [ "$dir" != "" ] && cd ${dir}
+ echo "Running web server: PYTHONUNBUFFERED=1 setsid $cmd" >&2
+ touch ${test_tmpdir}/httpd-output
+ env PYTHONUNBUFFERED=1 setsid $cmd >${test_tmpdir}/httpd-output &
+ child_pid=$!
+ echo "Web server pid: $child_pid" >&2
+ 
+ for x in $(seq 300); do
+ echo "Waiting for web server ($x/300)..." >&2
+ # Snapshot the output
+ cp ${test_tmpdir}/httpd-output{,.tmp}
+ sed -ne 's/^/# httpd-output.tmp: /' < ${test_tmpdir}/httpd-output.tmp >&2
+ echo >&2
+ # If it's non-empty, see whether it matches our regexp
+ if test -s ${test_tmpdir}/httpd-output.tmp; then
+-sed -e 's,Serving HTTP on 0.0.0.0 port \([0-9]*\) \.\.\.,\1,' < 
${test_tmpdir}/httpd-output.tmp > ${test_tmpdir}/httpd-port
++sed -e 's,Serving HTTP on 0.0.0.0 port \([0-9]*\) .*,\1,' < 
${test_tmpdir}/httpd-output.tmp > ${test_tmpdir}/httpd-port
+ if ! cmp ${test_tmpdir}/httpd-output.tmp ${test_tmpdir}/httpd-port 
1>/dev/null; then
+ # If so, we've successfully extracted the port
+ break


[arch-commits] Commit in meson/trunk (4878.patch PKGBUILD arch-meson)

2019-02-05 Thread Jan Steffens via arch-commits
Date: Tuesday, February 5, 2019 @ 20:30:53
  Author: heftig
Revision: 345305

0.49.2-1

Added:
  meson/trunk/4878.patch
Modified:
  meson/trunk/PKGBUILD
  meson/trunk/arch-meson

+
 4878.patch |   26 ++
 PKGBUILD   |   11 ---
 arch-meson |   26 --
 3 files changed, 42 insertions(+), 21 deletions(-)

Added: 4878.patch
===
--- 4878.patch  (rev 0)
+++ 4878.patch  2019-02-05 20:30:53 UTC (rev 345305)
@@ -0,0 +1,26 @@
+From c5544aea8d8480262b9792ac85b8e61d1fb08f74 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Corentin=20No=C3=ABl?= 
+Date: Mon, 4 Feb 2019 13:49:01 +0100
+Subject: [PATCH] vala: Support position-independent executables
+
+---
+ mesonbuild/compilers/vala.py | 6 ++
+ 1 file changed, 6 insertions(+)
+
+diff --git a/mesonbuild/compilers/vala.py b/mesonbuild/compilers/vala.py
+index e64d57f366..5303298a62 100644
+--- a/mesonbuild/compilers/vala.py
 b/mesonbuild/compilers/vala.py
+@@ -49,6 +49,12 @@ def get_compile_only_args(self):
+ def get_pic_args(self):
+ return []
+ 
++def get_pie_args(self):
++return []
++
++def get_pie_link_args(self):
++return []
++
+ def get_always_args(self):
+ return ['-C']
+ 

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 19:43:01 UTC (rev 345304)
+++ PKGBUILD2019-02-05 20:30:53 UTC (rev 345305)
@@ -3,7 +3,7 @@
 # Contributor: Anatol Pomozov 
 
 pkgname=meson
-pkgver=0.49.1
+pkgver=0.49.2
 pkgrel=1
 pkgdesc='High productivity build system'
 url='http://mesonbuild.com/'
@@ -16,15 +16,20 @@
   'doxygen' 'vulkan-validation-layers' 'openssh' 'mercurial' 
'gtk-sharp-2' 'qt5-tools'
   'libwmf' 'dmd' 'valgrind')
 
source=(https://github.com/mesonbuild/meson/releases/download/${pkgver}/meson-${pkgver}.tar.gz{,.asc}
+4878.patch
 arch-meson)
-sha512sums=('2a9a3d1e1eae3f9f21f47c0efb2ecd78861a71109fa5a660bf6403df2d5bd5c31fa2ef848080ca72d25257836b9e00e2fb89d5fc281647600ece0179c703cfe8'
+sha512sums=('d07a5dfd699f1e4b00af39c377ec186c91718d9595cb0ab506b4b40c0c63ddd14eccbe8afb446635272c431e2a78032888be0bc8f6064044da53e8c0b5f7be3f'
 'SKIP'
-
'f2a5e0f331a5ccf25fc8a440472548fedde9dbf4d562ec13baf502cf549d6ed35d61933dedeb8fafef261a28d4b568e897a004d435475e73dc0ed6d3427ba5b7')
+
'ff1326c7b56da98eab615b40e07cba86d6ceee18d29e8b5c57ccf73980a7a466c8e5695cc0b96a36330cd0d51e52b8fed08456ebea6763edb736ae7116be2f4b'
+
'f451f8a7ef9cf1dd724c2ce20bb85a3f1611b87b2e7a17ef0fdbe8ab82a67389f818ea30a5adfe8413143e4eac77ea2e0b8234b5b2466b41a892e2bd0435376c')
 validpgpkeys=('95181F4EED14FDF4E41B518D3BF4693BFEEB9428') # Jussi Pakkanen 

 
 prepare() {
   cd ${pkgname}-${pkgver}
 
+  # https://github.com/mesonbuild/meson/issues/4884
+  patch -Np1 -i ../4878.patch
+
   # Succeeds for us?
   mv 'test cases/failing/85 gtest dependency with version' 'test 
cases/frameworks/'
 }

Modified: arch-meson
===
--- arch-meson  2019-02-05 19:43:01 UTC (rev 345304)
+++ arch-meson  2019-02-05 20:30:53 UTC (rev 345305)
@@ -2,22 +2,12 @@
 # Highly opinionated wrapper for Arch Linux packaging
 
 exec meson setup \
-  --prefix /usr \
-  --libdir /usr/lib \
-  --libexecdir /usr/lib \
-  --bindir /usr/bin \
-  --sbindir/usr/bin \
-  --includedir /usr/include \
-  --datadir/usr/share \
-  --mandir /usr/share/man \
-  --infodir/usr/share/info \
-  --localedir  /usr/share/locale \
-  --sysconfdir /etc \
-  --localstatedir  /var \
-  --sharedstatedir /var/lib \
-  --buildtype  release \
-  --auto-features  enabled \
-  --wrap-mode  nofallback \
-  -D   b_lto=true \
-  -D   b_pie=true \
+  --prefix/usr \
+  --libexecdirlib \
+  --sbindir   bin \
+  --buildtype plain \
+  --auto-features enabled \
+  --wrap-mode nodownload \
+  -D  b_lto=true \
+  -D  b_pie=true \
   "$@"


[arch-commits] Commit in (python-pymacaroons-pynacl)

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 19:45:01
  Author: demize
Revision: 429671

Drop python-pymacaroons-pynacl

Deleted:
  python-pymacaroons-pynacl/


[arch-commits] Commit in python-pymacaroons-pynacl/repos (community-any)

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 19:44:18
  Author: demize
Revision: 429670

db-remove: python-pymacaroons-pynacl removed by demize

Deleted:
  python-pymacaroons-pynacl/repos/community-any/


[arch-commits] Commit in matrix-synapse/repos (11 files)

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 19:43:35
  Author: demize
Revision: 429669

db-move: moved matrix-synapse from [community-testing] to [community] (any)

Added:
  matrix-synapse/repos/community-any/0001-Bump-python_dependencies.patch
(from rev 429668, 
matrix-synapse/repos/community-testing-any/0001-Bump-python_dependencies.patch)
  matrix-synapse/repos/community-any/PKGBUILD
(from rev 429668, matrix-synapse/repos/community-testing-any/PKGBUILD)
  matrix-synapse/repos/community-any/synapse.install
(from rev 429668, 
matrix-synapse/repos/community-testing-any/synapse.install)
  matrix-synapse/repos/community-any/synapse.service
(from rev 429668, 
matrix-synapse/repos/community-testing-any/synapse.service)
  matrix-synapse/repos/community-any/sysusers-synapse.conf
(from rev 429668, 
matrix-synapse/repos/community-testing-any/sysusers-synapse.conf)
Deleted:
  matrix-synapse/repos/community-any/0001-Bump-python_dependencies.patch
  matrix-synapse/repos/community-any/PKGBUILD
  matrix-synapse/repos/community-any/synapse.install
  matrix-synapse/repos/community-any/synapse.service
  matrix-synapse/repos/community-any/sysusers-synapse.conf
  matrix-synapse/repos/community-testing-any/

---+
 /0001-Bump-python_dependencies.patch  |   29 
 /PKGBUILD |   70 
 /synapse.install  |   25 +++
 /synapse.service  |   18 +
 /sysusers-synapse.conf|1 
 community-any/0001-Bump-python_dependencies.patch |   35 --
 community-any/PKGBUILD|   70 
 community-any/synapse.install |   25 ---
 community-any/synapse.service |   18 -
 community-any/sysusers-synapse.conf   |1 
 10 files changed, 143 insertions(+), 149 deletions(-)

Deleted: community-any/0001-Bump-python_dependencies.patch
===
--- community-any/0001-Bump-python_dependencies.patch   2019-02-05 19:42:54 UTC 
(rev 429668)
+++ community-any/0001-Bump-python_dependencies.patch   2019-02-05 19:43:35 UTC 
(rev 429669)
@@ -1,35 +0,0 @@
-From 3afc953a1b7447ae19a563269b316a86afa38215 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
-Date: Tue, 8 Jan 2019 20:09:50 +0100
-Subject: [PATCH] Bump python_dependencies
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: Johannes Löthberg 

- synapse/python_dependencies.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py
-index 69c5f9fe2..68bae2398 100644
 a/synapse/python_dependencies.py
-+++ b/synapse/python_dependencies.py
-@@ -53,12 +53,12 @@ REQUIREMENTS = [
- "sortedcontainers>=1.4.4",
- "psutil>=2.0.0",
- "pymacaroons-pynacl>=0.9.3",
--"msgpack-python>=0.4.2",
-+"msgpack>=0.4.2",
- "phonenumbers>=8.2.0",
- "six>=1.10",
- # prometheus_client 0.4.0 changed the format of counter metrics
- # (cf https://github.com/matrix-org/synapse/issues/4001)
--"prometheus_client>=0.0.18,<0.4.0",
-+"prometheus_client>=0.0.18,<0.6.0",
- # we use attr.s(slots), which arrived in 16.0.0
- "attrs>=16.0.0",
- "netaddr>=0.7.18",
--- 
-2.20.1
-

Copied: matrix-synapse/repos/community-any/0001-Bump-python_dependencies.patch 
(from rev 429668, 
matrix-synapse/repos/community-testing-any/0001-Bump-python_dependencies.patch)
===
--- community-any/0001-Bump-python_dependencies.patch   
(rev 0)
+++ community-any/0001-Bump-python_dependencies.patch   2019-02-05 19:43:35 UTC 
(rev 429669)
@@ -0,0 +1,29 @@
+From 0ffec97c70515e3ea3c2717a8eaa657fdd8fdf18 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
+Date: Tue, 8 Jan 2019 20:09:50 +0100
+Subject: [PATCH] Bump python_dependencies
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Johannes Löthberg 
+---
+ synapse/python_dependencies.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py
+index 756721e30..f8ee9e53f 100644
+--- a/synapse/python_dependencies.py
 b/synapse/python_dependencies.py
+@@ -62,7 +62,7 @@ REQUIREMENTS = [
+ "six>=1.10",
+ # prometheus_client 0.4.0 changed the format of counter metrics
+ # (cf https://github.com/matrix-org/synapse/issues/4001)
+-"prometheus_client>=0.0.18,<0.4.0",
++"prometheus_client>=0.0.18,<0.6.0",
+ 
+ # we use attr.s(slots), which arrived in 16.0.0
+ # Twisted 18.7.0 requires attrs>=17.4.0
+-- 
+2.20.1
+

Deleted: 

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

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 19:43:01
  Author: demize
Revision: 345304

db-move: moved python-pymacaroons from [testing] to [extra] (any)

Added:
  python-pymacaroons/repos/extra-any/
  python-pymacaroons/repos/extra-any/PKGBUILD
(from rev 345303, python-pymacaroons/repos/testing-any/PKGBUILD)
Deleted:
  python-pymacaroons/repos/testing-any/

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

Copied: python-pymacaroons/repos/extra-any/PKGBUILD (from rev 345303, 
python-pymacaroons/repos/testing-any/PKGBUILD)
===
--- extra-any/PKGBUILD  (rev 0)
+++ extra-any/PKGBUILD  2019-02-05 19:43:01 UTC (rev 345304)
@@ -0,0 +1,35 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgname=python-pymacaroons
+pkgver=0.13.0
+pkgrel=3
+
+pkgdesc='Python implementation of Macaroons. They’re better than cookies!'
+url='https://github.com/ecordell/pymacaroons'
+arch=('any')
+license=('MIT')
+
+depends=('python'
+ 'python-pynacl'
+ 'python-six')
+makedepends=('python'
+ 'python-setuptools')
+
+conflicts=('python-pymacaroons-pynacl')
+
+source=("pymacaroons-$pkgver.tar.gz::https://github.com/ecordell/pymacaroons/archive/v$pkgver.tar.gz;)
+
+sha256sums=('780c67643126afe56f57fdc0f82b952d08e01a4df7eefaa929766dfb6edf6580')
+
+build() {
+   cd "$srcdir"/pymacaroons-$pkgver
+   python setup.py build
+}
+
+package() {
+   cd pymacaroons-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :


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

2019-02-05 Thread Anatol Pomozov via arch-commits
Date: Tuesday, February 5, 2019 @ 19:42:54
  Author: anatolik
Revision: 429668

archrelease: copy trunk to community-x86_64

Added:
  crystal/repos/community-x86_64/PKGBUILD
(from rev 429667, crystal/trunk/PKGBUILD)
Deleted:
  crystal/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  142 ++---
 1 file changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 19:42:22 UTC (rev 429667)
+++ PKGBUILD2019-02-05 19:42:54 UTC (rev 429668)
@@ -1,71 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Jonne Haß 
-
-pkgname=crystal
-pkgver=0.27.1
-pkgrel=1
-pkgdesc='The Crystal Programming Language'
-arch=(x86_64)
-url='http://crystal-lang.org'
-license=(Apache)
-depends=(gc libatomic_ops pcre libevent llvm6-libs)
-makedepends=(libxml2 llvm6 crystal) # to compile version N we need crystal 
compiler of N-1 version
-checkdepends=(libyaml libxml2 gmp inetutils git)
-optdepends=('shards: crystal language package manager'
-'libyaml: For YAML support'
-'gmp: For BigInt support'
-'libxml2: For XML support')
-source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
-sha256sums=('c67274c149e797ca232d2ece50e906e7e3c9c66d6277ce7fa35819c022a82c1b')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's|Please install shards: https://github.com/ysbaddaden/shards|Please 
install shards: pacman -S shards|' src/compiler/crystal/command.cr
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  make release=1 \
-   FLAGS="--release --no-debug" \
-   CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-   CRYSTAL_CONFIG_VERSION="$pkgver" \
-   CRYSTAL_CONFIG_PATH="lib:/usr/lib/crystal" \
-   CRYSTAL_CACHE_DIR="/tmp/crystal"
-  make docs CRYSTAL_CACHE_DIR="/tmp/crystal"
-}
-
-check() {
-  cd $pkgname-$pkgver
-  return # tests require too much RAM, disable it temporary
-
-  make spec CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-CRYSTAL_CONFIG_VERSION="$pkgver" \
-CRYSTAL_CACHE_DIR="/tmp/crystal" \
-PATH=".build:$PATH"
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  # /usr/bin/crystalcompiled executable
-  # /usr/lib/crystal/   compiler src & core libs
-  # /usr/share/doc/crystal/api  api docs
-  # /usr/share/doc/crystal/samples/ samples
-
-  install -Dm755 ".build/crystal" "$pkgdir/usr/bin/crystal"
-
-  install -dm755 "$pkgdir/usr/lib" "$pkgdir/usr/share/man/man1"
-  cp -r src "$pkgdir/usr/lib/crystal"
-
-  install -dm755 "$pkgdir/usr/share/doc/crystal"
-  cp -r docs "$pkgdir/usr/share/doc/crystal/api"
-  cp -r samples "$pkgdir/usr/share/doc/crystal/"
-
-  install -Dm644 man/crystal.1 "$pkgdir/usr/share/man/man1/"
-
-  install -Dm644 etc/completion.bash 
"$pkgdir/usr/share/bash-completion/completions/crystal"
-  install -Dm644 etc/completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_crystal"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: crystal/repos/community-x86_64/PKGBUILD (from rev 429667, 
crystal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 19:42:54 UTC (rev 429668)
@@ -0,0 +1,71 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Jonne Haß 
+
+pkgname=crystal
+pkgver=0.27.2
+pkgrel=1
+pkgdesc='The Crystal Programming Language'
+arch=(x86_64)
+url='http://crystal-lang.org'
+license=(Apache)
+depends=(gc libatomic_ops pcre libevent llvm6-libs)
+makedepends=(libxml2 llvm6 crystal) # to compile version N we need crystal 
compiler of N-1 version
+checkdepends=(libyaml libxml2 gmp inetutils git)
+optdepends=('shards: crystal language package manager'
+'libyaml: For YAML support'
+'gmp: For BigInt support'
+'libxml2: For XML support')
+source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
+sha256sums=('d2fe8a025668b143e8ff70b3cd407765140ed10e52523dd08253139f9322171b')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's|Please install shards: https://github.com/ysbaddaden/shards|Please 
install shards: pacman -S shards|' src/compiler/crystal/command.cr
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  make release=1 \
+   FLAGS="--release --no-debug" \
+   CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
+   CRYSTAL_CONFIG_VERSION="$pkgver" \
+   CRYSTAL_CONFIG_PATH="lib:/usr/lib/crystal" \
+   CRYSTAL_CACHE_DIR="/tmp/crystal"
+  make docs CRYSTAL_CACHE_DIR="/tmp/crystal"
+}
+
+check() {
+  cd $pkgname-$pkgver
+  return # tests require too much RAM, disable it temporary
+
+  make spec CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
+CRYSTAL_CONFIG_VERSION="$pkgver" \
+CRYSTAL_CACHE_DIR="/tmp/crystal" \
+PATH=".build:$PATH"
+}
+
+package() {
+  cd 

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

2019-02-05 Thread Anatol Pomozov via arch-commits
Date: Tuesday, February 5, 2019 @ 19:42:22
  Author: anatolik
Revision: 429667

upgpkg: crystal 0.27.2-1

Modified:
  crystal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 19:33:32 UTC (rev 429666)
+++ PKGBUILD2019-02-05 19:42:22 UTC (rev 429667)
@@ -2,7 +2,7 @@
 # Contributor: Jonne Haß 
 
 pkgname=crystal
-pkgver=0.27.1
+pkgver=0.27.2
 pkgrel=1
 pkgdesc='The Crystal Programming Language'
 arch=(x86_64)
@@ -16,7 +16,7 @@
 'gmp: For BigInt support'
 'libxml2: For XML support')
 
source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
-sha256sums=('c67274c149e797ca232d2ece50e906e7e3c9c66d6277ce7fa35819c022a82c1b')
+sha256sums=('d2fe8a025668b143e8ff70b3cd407765140ed10e52523dd08253139f9322171b')
 
 prepare() {
   cd $pkgname-$pkgver


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

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 19:37:23
  Author: demize
Revision: 345303

archrelease: copy trunk to testing-any

Added:
  python-pymacaroons/repos/testing-any/PKGBUILD
(from rev 345302, python-pymacaroons/trunk/PKGBUILD)
Deleted:
  python-pymacaroons/repos/testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 19:37:08 UTC (rev 345302)
+++ PKGBUILD2019-02-05 19:37:23 UTC (rev 345303)
@@ -1,33 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Ivan Shapovalov 
-
-pkgname=python-pymacaroons
-pkgver=0.13.0
-pkgrel=2
-
-pkgdesc='Python implementation of Macaroons. They’re better than cookies!'
-url='https://github.com/ecordell/pymacaroons'
-arch=('any')
-license=('MIT')
-
-depends=('python'
- 'python-pynacl'
- 'python-six')
-makedepends=('python'
- 'python-setuptools')
-
-source=("pymacaroons-$pkgver.tar.gz::https://github.com/ecordell/pymacaroons/archive/v$pkgver.tar.gz;)
-
-sha256sums=('780c67643126afe56f57fdc0f82b952d08e01a4df7eefaa929766dfb6edf6580')
-
-build() {
-   cd "$srcdir"/pymacaroons-$pkgver
-   python setup.py build
-}
-
-package() {
-   cd pymacaroons-$pkgver
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :

Copied: python-pymacaroons/repos/testing-any/PKGBUILD (from rev 345302, 
python-pymacaroons/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 19:37:23 UTC (rev 345303)
@@ -0,0 +1,35 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgname=python-pymacaroons
+pkgver=0.13.0
+pkgrel=3
+
+pkgdesc='Python implementation of Macaroons. They’re better than cookies!'
+url='https://github.com/ecordell/pymacaroons'
+arch=('any')
+license=('MIT')
+
+depends=('python'
+ 'python-pynacl'
+ 'python-six')
+makedepends=('python'
+ 'python-setuptools')
+
+conflicts=('python-pymacaroons-pynacl')
+
+source=("pymacaroons-$pkgver.tar.gz::https://github.com/ecordell/pymacaroons/archive/v$pkgver.tar.gz;)
+
+sha256sums=('780c67643126afe56f57fdc0f82b952d08e01a4df7eefaa929766dfb6edf6580')
+
+build() {
+   cd "$srcdir"/pymacaroons-$pkgver
+   python setup.py build
+}
+
+package() {
+   cd pymacaroons-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :


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

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 19:37:08
  Author: demize
Revision: 345302

upgpkg: python-pymacaroons 0.13.0-3

Modified:
  python-pymacaroons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 19:20:33 UTC (rev 345301)
+++ PKGBUILD2019-02-05 19:37:08 UTC (rev 345302)
@@ -3,7 +3,7 @@
 
 pkgname=python-pymacaroons
 pkgver=0.13.0
-pkgrel=2
+pkgrel=3
 
 pkgdesc='Python implementation of Macaroons. They’re better than cookies!'
 url='https://github.com/ecordell/pymacaroons'
@@ -16,6 +16,8 @@
 makedepends=('python'
  'python-setuptools')
 
+conflicts=('python-pymacaroons-pynacl')
+
 
source=("pymacaroons-$pkgver.tar.gz::https://github.com/ecordell/pymacaroons/archive/v$pkgver.tar.gz;)
 
 sha256sums=('780c67643126afe56f57fdc0f82b952d08e01a4df7eefaa929766dfb6edf6580')


[arch-commits] Commit in matrix-synapse/repos (6 files)

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 19:33:32
  Author: demize
Revision: 429666

archrelease: copy trunk to community-testing-any

Added:
  matrix-synapse/repos/community-testing-any/
  matrix-synapse/repos/community-testing-any/0001-Bump-python_dependencies.patch
(from rev 429665, matrix-synapse/trunk/0001-Bump-python_dependencies.patch)
  matrix-synapse/repos/community-testing-any/PKGBUILD
(from rev 429665, matrix-synapse/trunk/PKGBUILD)
  matrix-synapse/repos/community-testing-any/synapse.install
(from rev 429665, matrix-synapse/trunk/synapse.install)
  matrix-synapse/repos/community-testing-any/synapse.service
(from rev 429665, matrix-synapse/trunk/synapse.service)
  matrix-synapse/repos/community-testing-any/sysusers-synapse.conf
(from rev 429665, matrix-synapse/trunk/sysusers-synapse.conf)

-+
 0001-Bump-python_dependencies.patch |   29 ++
 PKGBUILD|   70 ++
 synapse.install |   25 
 synapse.service |   18 
 sysusers-synapse.conf   |1 
 5 files changed, 143 insertions(+)

Copied: 
matrix-synapse/repos/community-testing-any/0001-Bump-python_dependencies.patch 
(from rev 429665, matrix-synapse/trunk/0001-Bump-python_dependencies.patch)
===
--- community-testing-any/0001-Bump-python_dependencies.patch   
(rev 0)
+++ community-testing-any/0001-Bump-python_dependencies.patch   2019-02-05 
19:33:32 UTC (rev 429666)
@@ -0,0 +1,29 @@
+From 0ffec97c70515e3ea3c2717a8eaa657fdd8fdf18 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
+Date: Tue, 8 Jan 2019 20:09:50 +0100
+Subject: [PATCH] Bump python_dependencies
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Johannes Löthberg 
+---
+ synapse/python_dependencies.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py
+index 756721e30..f8ee9e53f 100644
+--- a/synapse/python_dependencies.py
 b/synapse/python_dependencies.py
+@@ -62,7 +62,7 @@ REQUIREMENTS = [
+ "six>=1.10",
+ # prometheus_client 0.4.0 changed the format of counter metrics
+ # (cf https://github.com/matrix-org/synapse/issues/4001)
+-"prometheus_client>=0.0.18,<0.4.0",
++"prometheus_client>=0.0.18,<0.6.0",
+ 
+ # we use attr.s(slots), which arrived in 16.0.0
+ # Twisted 18.7.0 requires attrs>=17.4.0
+-- 
+2.20.1
+

Copied: matrix-synapse/repos/community-testing-any/PKGBUILD (from rev 429665, 
matrix-synapse/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2019-02-05 19:33:32 UTC (rev 429666)
@@ -0,0 +1,70 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgname=matrix-synapse
+pkgver=0.99.0
+pkgrel=1
+
+pkgdesc="Matrix reference homeserver"
+url="https://github.com/matrix-org/synapse;
+arch=('any')
+license=('Apache')
+
+depends=('python-jsonschema' 'python-twisted' 'python-service-identity'
+ 'python-pyopenssl' 'python-yaml' 'python-pyasn1' 'python-pynacl'
+ 'python-daemonize' 'python-bcrypt' 'python-frozendict'
+ 'python-pillow' 'python-ujson'
+ 'python-pysaml2' 'python-setuptools'
+ 'python-systemd' 'python-unpaddedbase64' 'python-canonicaljson'
+ 'python-signedjson' 'python-pymacaroons'
+ 'python-service-identity' 'python-msgpack'
+ 'python-phonenumbers' 'python-prometheus_client'
+ 'python-attrs' 'python-netaddr' 'python-sortedcontainers'
+ 'python-treq' 'python-psutil'
+ 'systemd')
+makedepends=('python-mock')
+checkdepends=('python-lxml' 'python-jinja')
+optdepends=('python-psycopg2: PostgreSQL support'
+'python-lxml: URL previewing'
+'python-jinja: e-mail notifications'
+'python-bleach: e-mail notifications'
+'python-psutil: metrics')
+
+source=("synapse-$pkgver.tar.gz::https://github.com/matrix-org/synapse/archive/v$pkgver.tar.gz;
+'synapse.service'
+'sysusers-synapse.conf'
+'0001-Bump-python_dependencies.patch')
+
+md5sums=('038d087aa4b813b61ae7a0c0ea27abde'
+ '276a99050f40601089255ea168bb7620'
+ 'ecd9f66fb57fe1a2e1e2df07a460a35b'
+ '62b94bdcd227ec2d097ba2eb28fe36df')
+
+backup=('etc/synapse/log_config.yaml')
+install=synapse.install
+
+prepare() {
+   cd synapse-$pkgver
+   patch -p1 <"$srcdir"/0001-Bump-python_dependencies.patch
+}
+
+build() {
+   cd synapse-$pkgver
+   python setup.py build
+}
+
+check() {
+   cd synapse-$pkgver
+   PYTHONPATH=. trial3 tests
+}
+
+package() {
+   install -Dm644 synapse.service 

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

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 19:33:03
  Author: demize
Revision: 429665

upgpkg: matrix-synapse 0.99.0-1

Modified:
  matrix-synapse/trunk/0001-Bump-python_dependencies.patch
  matrix-synapse/trunk/PKGBUILD

-+
 0001-Bump-python_dependencies.patch |   20 +++-
 PKGBUILD|8 
 2 files changed, 11 insertions(+), 17 deletions(-)

Modified: 0001-Bump-python_dependencies.patch
===
--- 0001-Bump-python_dependencies.patch 2019-02-05 19:11:21 UTC (rev 429664)
+++ 0001-Bump-python_dependencies.patch 2019-02-05 19:33:03 UTC (rev 429665)
@@ -1,4 +1,4 @@
-From 3afc953a1b7447ae19a563269b316a86afa38215 Mon Sep 17 00:00:00 2001
+From 0ffec97c70515e3ea3c2717a8eaa657fdd8fdf18 Mon Sep 17 00:00:00 2001
 From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
 Date: Tue, 8 Jan 2019 20:09:50 +0100
 Subject: [PATCH] Bump python_dependencies
@@ -8,28 +8,22 @@
 
 Signed-off-by: Johannes Löthberg 
 ---
- synapse/python_dependencies.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
+ synapse/python_dependencies.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py
-index 69c5f9fe2..68bae2398 100644
+index 756721e30..f8ee9e53f 100644
 --- a/synapse/python_dependencies.py
 +++ b/synapse/python_dependencies.py
-@@ -53,12 +53,12 @@ REQUIREMENTS = [
- "sortedcontainers>=1.4.4",
- "psutil>=2.0.0",
- "pymacaroons-pynacl>=0.9.3",
--"msgpack-python>=0.4.2",
-+"msgpack>=0.4.2",
- "phonenumbers>=8.2.0",
+@@ -62,7 +62,7 @@ REQUIREMENTS = [
  "six>=1.10",
  # prometheus_client 0.4.0 changed the format of counter metrics
  # (cf https://github.com/matrix-org/synapse/issues/4001)
 -"prometheus_client>=0.0.18,<0.4.0",
 +"prometheus_client>=0.0.18,<0.6.0",
+ 
  # we use attr.s(slots), which arrived in 16.0.0
- "attrs>=16.0.0",
- "netaddr>=0.7.18",
+ # Twisted 18.7.0 requires attrs>=17.4.0
 -- 
 2.20.1
 

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 19:11:21 UTC (rev 429664)
+++ PKGBUILD2019-02-05 19:33:03 UTC (rev 429665)
@@ -2,7 +2,7 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=matrix-synapse
-pkgver=0.34.1.1
+pkgver=0.99.0
 pkgrel=1
 
 pkgdesc="Matrix reference homeserver"
@@ -16,7 +16,7 @@
  'python-pillow' 'python-ujson'
  'python-pysaml2' 'python-setuptools'
  'python-systemd' 'python-unpaddedbase64' 'python-canonicaljson'
- 'python-signedjson' 'python-pymacaroons-pynacl'
+ 'python-signedjson' 'python-pymacaroons'
  'python-service-identity' 'python-msgpack'
  'python-phonenumbers' 'python-prometheus_client'
  'python-attrs' 'python-netaddr' 'python-sortedcontainers'
@@ -35,10 +35,10 @@
 'sysusers-synapse.conf'
 '0001-Bump-python_dependencies.patch')
 
-md5sums=('629ce375abd1fd20d45039a0debe3e92'
+md5sums=('038d087aa4b813b61ae7a0c0ea27abde'
  '276a99050f40601089255ea168bb7620'
  'ecd9f66fb57fe1a2e1e2df07a460a35b'
- '6a7ed53d1891acd37b13422b78f1cfbb')
+ '62b94bdcd227ec2d097ba2eb28fe36df')
 
 backup=('etc/synapse/log_config.yaml')
 install=synapse.install


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

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 19:20:00
  Author: demize
Revision: 345300

upgpkg: python-pymacaroons 0.13.0-2

Modified:
  python-pymacaroons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 19:18:57 UTC (rev 345299)
+++ PKGBUILD2019-02-05 19:20:00 UTC (rev 345300)
@@ -3,7 +3,7 @@
 
 pkgname=python-pymacaroons
 pkgver=0.13.0
-pkgrel=1
+pkgrel=2
 
 pkgdesc='Python implementation of Macaroons. They’re better than cookies!'
 url='https://github.com/ecordell/pymacaroons'


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

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 19:20:33
  Author: demize
Revision: 345301

archrelease: copy trunk to testing-any

Added:
  python-pymacaroons/repos/testing-any/
  python-pymacaroons/repos/testing-any/PKGBUILD
(from rev 345300, python-pymacaroons/trunk/PKGBUILD)

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

Copied: python-pymacaroons/repos/testing-any/PKGBUILD (from rev 345300, 
python-pymacaroons/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2019-02-05 19:20:33 UTC (rev 345301)
@@ -0,0 +1,33 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgname=python-pymacaroons
+pkgver=0.13.0
+pkgrel=2
+
+pkgdesc='Python implementation of Macaroons. They’re better than cookies!'
+url='https://github.com/ecordell/pymacaroons'
+arch=('any')
+license=('MIT')
+
+depends=('python'
+ 'python-pynacl'
+ 'python-six')
+makedepends=('python'
+ 'python-setuptools')
+
+source=("pymacaroons-$pkgver.tar.gz::https://github.com/ecordell/pymacaroons/archive/v$pkgver.tar.gz;)
+
+sha256sums=('780c67643126afe56f57fdc0f82b952d08e01a4df7eefaa929766dfb6edf6580')
+
+build() {
+   cd "$srcdir"/pymacaroons-$pkgver
+   python setup.py build
+}
+
+package() {
+   cd pymacaroons-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :


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

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 19:18:57
  Author: demize
Revision: 345299

Add PKGBUILD

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

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

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2019-02-05 19:18:57 UTC (rev 345299)
@@ -0,0 +1,33 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgname=python-pymacaroons
+pkgver=0.13.0
+pkgrel=1
+
+pkgdesc='Python implementation of Macaroons. They’re better than cookies!'
+url='https://github.com/ecordell/pymacaroons'
+arch=('any')
+license=('MIT')
+
+depends=('python'
+ 'python-pynacl'
+ 'python-six')
+makedepends=('python'
+ 'python-setuptools')
+
+source=("pymacaroons-$pkgver.tar.gz::https://github.com/ecordell/pymacaroons/archive/v$pkgver.tar.gz;)
+
+sha256sums=('780c67643126afe56f57fdc0f82b952d08e01a4df7eefaa929766dfb6edf6580')
+
+build() {
+   cd "$srcdir"/pymacaroons-$pkgver
+   python setup.py build
+}
+
+package() {
+   cd pymacaroons-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :


[arch-commits] Commit in firefox-ublock-origin/repos/community-any (PKGBUILD PKGBUILD)

2019-02-05 Thread Daniel M. Capella via arch-commits
Date: Tuesday, February 5, 2019 @ 19:11:21
  Author: polyzen
Revision: 429664

archrelease: copy trunk to community-any

Added:
  firefox-ublock-origin/repos/community-any/PKGBUILD
(from rev 429663, firefox-ublock-origin/trunk/PKGBUILD)
Deleted:
  firefox-ublock-origin/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 19:10:56 UTC (rev 429663)
+++ PKGBUILD2019-02-05 19:11:21 UTC (rev 429664)
@@ -1,19 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=firefox-ublock-origin
-pkgver=1.18.2
-pkgrel=1
-pkgdesc='Efficient blocker add-on for various browsers. Fast, potent, and lean'
-url=https://github.com/gorhill/uBlock
-arch=('any')
-license=('GPL3')
-groups=('firefox-addons')
-source=("https://addons.cdn.mozilla.net/user-media/addons/607454/ublock_origin-$pkgver-an+fx.xpi;)
-noextract=("${source##*/}")
-sha256sums=('e16599bd915ffa6827c5cff8cb22037b13f5a2ff534ead1e50d4e283d526b784')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ublo...@raymondhill.net.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-ublock-origin/repos/community-any/PKGBUILD (from rev 429663, 
firefox-ublock-origin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 19:11:21 UTC (rev 429664)
@@ -0,0 +1,19 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=firefox-ublock-origin
+pkgver=1.18.4
+pkgrel=1
+pkgdesc='Efficient blocker add-on for various browsers. Fast, potent, and lean'
+url=https://github.com/gorhill/uBlock
+arch=('any')
+license=('GPL3')
+groups=('firefox-addons')
+source=("https://addons.cdn.mozilla.net/user-media/addons/607454/ublock_origin-$pkgver-an+fx.xpi;)
+noextract=("${source##*/}")
+sha256sums=('b7aa57bd91943a2d3dd3621872e8700b2f59665db5c92fc54bca5049780cc91c')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ublo...@raymondhill.net.xpi
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in firefox-ublock-origin/trunk (PKGBUILD)

2019-02-05 Thread Daniel M. Capella via arch-commits
Date: Tuesday, February 5, 2019 @ 19:10:56
  Author: polyzen
Revision: 429663

upgpkg: firefox-ublock-origin 1.18.4-1

Modified:
  firefox-ublock-origin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 18:59:34 UTC (rev 429662)
+++ PKGBUILD2019-02-05 19:10:56 UTC (rev 429663)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=firefox-ublock-origin
-pkgver=1.18.2
+pkgver=1.18.4
 pkgrel=1
 pkgdesc='Efficient blocker add-on for various browsers. Fast, potent, and lean'
 url=https://github.com/gorhill/uBlock
@@ -10,7 +10,7 @@
 groups=('firefox-addons')
 
source=("https://addons.cdn.mozilla.net/user-media/addons/607454/ublock_origin-$pkgver-an+fx.xpi;)
 noextract=("${source##*/}")
-sha256sums=('e16599bd915ffa6827c5cff8cb22037b13f5a2ff534ead1e50d4e283d526b784')
+sha256sums=('b7aa57bd91943a2d3dd3621872e8700b2f59665db5c92fc54bca5049780cc91c')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ublo...@raymondhill.net.xpi


[arch-commits] Commit in (python-pymacaroons)

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 19:08:28
  Author: demize
Revision: 345298

mkdir python-pymacaroons

Added:
  python-pymacaroons/


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

2019-02-05 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, February 5, 2019 @ 18:59:23
  Author: jlichtblau
Revision: 429661

upgpkg: gammu 1.40.0-1 - new upstream release

Modified:
  gammu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 18:53:32 UTC (rev 429660)
+++ PKGBUILD2019-02-05 18:59:23 UTC (rev 429661)
@@ -4,8 +4,8 @@
 # Contributor: Aurelien Foret 
 
 pkgname=gammu
-pkgver=1.39.0
-pkgrel=3
+pkgver=1.40.0
+pkgrel=1
 pkgdesc="GNU All Mobile Management Utilities"
 arch=('x86_64')
 url="http://wammu.eu/gammu/;
@@ -15,7 +15,7 @@
 checkdepends=('libdbi-drivers')
 optdepends=('dialog: support for the gammu-config script' 'python2: for python 
bindings')
 source=(https://dl.cihar.com/$pkgname/releases/$pkgname-$pkgver.tar.xz)
-sha256sums=('66d1d991d7a993fdf254d4c425f0fdd38c9cca15b1735936695a486067a6a9f8')
+sha256sums=('a760a3520d9f3a16a4ed73cefaabdbd86125bec73c6fa056ca3f0a4be8478dd6')
 
 prepare() {
   cd $pkgname-$pkgver


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

2019-02-05 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, February 5, 2019 @ 18:59:34
  Author: jlichtblau
Revision: 429662

archrelease: copy trunk to community-x86_64

Added:
  gammu/repos/community-x86_64/PKGBUILD
(from rev 429661, gammu/trunk/PKGBUILD)
Deleted:
  gammu/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 18:59:23 UTC (rev 429661)
+++ PKGBUILD2019-02-05 18:59:34 UTC (rev 429662)
@@ -1,44 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Ray Rashif 
-# Contributor: Corrado Primier 
-# Contributor: Aurelien Foret 
-
-pkgname=gammu
-pkgver=1.39.0
-pkgrel=3
-pkgdesc="GNU All Mobile Management Utilities"
-arch=('x86_64')
-url="http://wammu.eu/gammu/;
-license=('GPL')
-depends=('glib2' 'bluez-libs' 'curl' 'libdbi' 'mariadb-libs' 'postgresql-libs' 
'libusb' 'libgudev')
-makedepends=('cmake' 'doxygen' 'python2')
-checkdepends=('libdbi-drivers')
-optdepends=('dialog: support for the gammu-config script' 'python2: for python 
bindings')
-source=(https://dl.cihar.com/$pkgname/releases/$pkgname-$pkgver.tar.xz)
-sha256sums=('66d1d991d7a993fdf254d4c425f0fdd38c9cca15b1735936695a486067a6a9f8')
-
-prepare() {
-  cd $pkgname-$pkgver
-# bash completion dir change
-  sed -i 's,COMPLETIONSDIR "/etc/bash_completion.d",COMPLETIONSDIR 
"/usr/share/bash-completion/completions",' contrib/CMakeLists.txt
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  cmake . -DCMAKE_INSTALL_PREFIX="/usr" -DLIB_SUFFIX=""
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-
-  # tests can be flaky on slower hardware due to timing
-  make test
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: gammu/repos/community-x86_64/PKGBUILD (from rev 429661, 
gammu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 18:59:34 UTC (rev 429662)
@@ -0,0 +1,44 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Ray Rashif 
+# Contributor: Corrado Primier 
+# Contributor: Aurelien Foret 
+
+pkgname=gammu
+pkgver=1.40.0
+pkgrel=1
+pkgdesc="GNU All Mobile Management Utilities"
+arch=('x86_64')
+url="http://wammu.eu/gammu/;
+license=('GPL')
+depends=('glib2' 'bluez-libs' 'curl' 'libdbi' 'mariadb-libs' 'postgresql-libs' 
'libusb' 'libgudev')
+makedepends=('cmake' 'doxygen' 'python2')
+checkdepends=('libdbi-drivers')
+optdepends=('dialog: support for the gammu-config script' 'python2: for python 
bindings')
+source=(https://dl.cihar.com/$pkgname/releases/$pkgname-$pkgver.tar.xz)
+sha256sums=('a760a3520d9f3a16a4ed73cefaabdbd86125bec73c6fa056ca3f0a4be8478dd6')
+
+prepare() {
+  cd $pkgname-$pkgver
+# bash completion dir change
+  sed -i 's,COMPLETIONSDIR "/etc/bash_completion.d",COMPLETIONSDIR 
"/usr/share/bash-completion/completions",' contrib/CMakeLists.txt
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  cmake . -DCMAKE_INSTALL_PREFIX="/usr" -DLIB_SUFFIX=""
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  # tests can be flaky on slower hardware due to timing
+  make test
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}


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

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 18:53:25
  Author: demize
Revision: 429659

archrelease: copy trunk to community-x86_64

Added:
  dovecot/repos/community-x86_64/PKGBUILD
(from rev 429658, dovecot/trunk/PKGBUILD)
  dovecot/repos/community-x86_64/dovecot.ld.so.conf
(from rev 429658, dovecot/trunk/dovecot.ld.so.conf)
  dovecot/repos/community-x86_64/dovecot.sysusersd
(from rev 429658, dovecot/trunk/dovecot.sysusersd)
  dovecot/repos/community-x86_64/dovecot.tmpfilesd
(from rev 429658, dovecot/trunk/dovecot.tmpfilesd)
  dovecot/repos/community-x86_64/fix-mysql-double-free.patch
(from rev 429658, dovecot/trunk/fix-mysql-double-free.patch)
Deleted:
  dovecot/repos/community-x86_64/PKGBUILD
  dovecot/repos/community-x86_64/dovecot.ld.so.conf
  dovecot/repos/community-x86_64/dovecot.sysusersd
  dovecot/repos/community-x86_64/dovecot.tmpfilesd
  dovecot/repos/community-x86_64/fix-mysql-double-free.patch

-+
 PKGBUILD|  234 +-
 dovecot.ld.so.conf  |2 
 dovecot.sysusersd   |4 
 dovecot.tmpfilesd   |2 
 fix-mysql-double-free.patch |   72 ++--
 5 files changed, 157 insertions(+), 157 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 18:53:18 UTC (rev 429658)
+++ PKGBUILD2019-02-05 18:53:25 UTC (rev 429659)
@@ -1,117 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Thore Bödecker 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: Paul Mattal 
-# Contributor: Federico Quagliata (quaqo) 
-# Contributor: GARETTE Emmanuel 
-
-# --->>> remember to rebuild/bump pigeonhole in one step <<<---
-
-pkgname=dovecot
-pkgver=2.3.4
-pkgrel=3
-
-pkgdesc="An IMAP and POP3 server written with security primarily in mind"
-url="https://dovecot.org/;
-arch=('x86_64')
-license=("LGPL")
-
-depends=('krb5' 'openssl' 'sqlite' 'mariadb-libs' 'libsodium'
- 'postgresql-libs' 'bzip2' 'lz4' 'expat' 'curl' 'pam')
-makedepends=('libcap' 'libldap' 'clucene' 'libsodium')
-optdepends=('libldap: ldap plugin'
-'xz: imap zlib  plugin'
-'clucene: alternative FTS indexer')
-
-provides=('imap-server' 'pop3-server')
-
-source=("https://dovecot.org/releases/2.3/${pkgname}-${pkgver}.tar.gz"{,.sig}
-'dovecot.sysusersd'
-'dovecot.tmpfilesd'
-'dovecot.ld.so.conf'
-'fix-mysql-double-free.patch')
-
-sha256sums=('d91b76eff8df6185c1799f1b279f780105bdeeea27e3286b42f4cab18efbef05'
-'SKIP'
-'c5e3a8ffe23e5deb4f7893d9877d972347c2ee45c4ebf713de85c537e47cfcaf'
-'0b0625b1e66ca6a95d506fd00d6a68e70620c8ea28606e2528953ffb1806b08e'
-'a457a1691cfa82495fc0503bfa4b61e54b149e63400fe0f568dff2c24a3f7858'
-'a97bd93b07c96e03d3c7540c8cd6c2d465a12728f31d9164ea4546e257e8a203')
-
-validpgpkeys=(
-  'E643F0BDFDCD04D9FFCB6279C948525140558AC9' # Timo Sirainen 
-  '2BE74AAB3EE754DFB9C80D3318A348AEED409DA1' # Dovecot Community Edition
-)
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -l -i "$srcdir/${filename##*/}"
-fi
-  done
-
-  # fix path in helper script
-  sed -i 
's:OPENSSLCONFIG=${OPENSSLCONFIG-dovecot-openssl.cnf}:OPENSSLCONFIG=${OPENSSLCONFIG-
 /etc/ssl/dovecot-openssl.cnf}:' doc/mkcert.sh
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
---libexecdir=/usr/lib \
---with-moduledir=/usr/lib/dovecot/modules \
---with-systemdsystemunitdir=/usr/lib/systemd/system \
---disable-static \
---with-nss \
---with-pam \
---with-mysql \
---with-pgsql \
---with-sqlite \
---with-ssl=openssl \
---with-ssldir=/etc/ssl \
---with-gssapi \
---with-ldap=plugin \
---with-zlib \
---with-bzlib \
---with-lzma \
---with-lz4 \
---with-libcap \
---with-solr \
---with-lucene \
---with-sodium \
---with-docs
-
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  # system user/group dovenull - 74
-  # system user/group dovecot  - 76
-
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "${srcdir}/dovecot.sysusersd" \
-"${pkgdir}/usr/lib/sysusers.d/dovecot.conf"
-  install -Dm644 "${srcdir}/dovecot.tmpfilesd" \
-"${pkgdir}/usr/lib/tmpfiles.d/dovecot.conf"
-  install -d -m755 "${pkgdir}/etc/dovecot/conf.d"
-  rm -f "${pkgdir}/etc/dovecot/README"
-
-  # install mkcert helper script
-  install -m 755  doc/mkcert.sh "${pkgdir}/usr/lib/dovecot/mkcert.sh"
-
-  # add dovecot libdir
-  install -Dm644 "${srcdir}/dovecot.ld.so.conf" 

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

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 18:53:07
  Author: demize
Revision: 429657

upgpkg: dovecot 2.3.4.1-1

https://dovecot.org/list/dovecot-news/2019-February/000394.html

Fixes CVE-2019-3814

Modified:
  dovecot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 18:25:31 UTC (rev 429656)
+++ PKGBUILD2019-02-05 18:53:07 UTC (rev 429657)
@@ -9,8 +9,8 @@
 # --->>> remember to rebuild/bump pigeonhole in one step <<<---
 
 pkgname=dovecot
-pkgver=2.3.4
-pkgrel=3
+pkgver=2.3.4.1
+pkgrel=1
 
 pkgdesc="An IMAP and POP3 server written with security primarily in mind"
 url="https://dovecot.org/;
@@ -32,7 +32,7 @@
 'dovecot.ld.so.conf'
 'fix-mysql-double-free.patch')
 
-sha256sums=('d91b76eff8df6185c1799f1b279f780105bdeeea27e3286b42f4cab18efbef05'
+sha256sums=('b8873e2ce5c33e58963bb7a8d2ff8427c09dbfdd63e13a0b0f4502864043aa07'
 'SKIP'
 'c5e3a8ffe23e5deb4f7893d9877d972347c2ee45c4ebf713de85c537e47cfcaf'
 '0b0625b1e66ca6a95d506fd00d6a68e70620c8ea28606e2528953ffb1806b08e'


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

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 18:53:32
  Author: demize
Revision: 429660

archrelease: copy trunk to community-x86_64

Added:
  pigeonhole/repos/community-x86_64/PKGBUILD
(from rev 429659, pigeonhole/trunk/PKGBUILD)
Deleted:
  pigeonhole/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 18:53:25 UTC (rev 429659)
+++ PKGBUILD2019-02-05 18:53:32 UTC (rev 429660)
@@ -1,53 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Thore Bödecker 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: Peter Lewis 
-# Contributor: Sebastian Köhler 
-
-# This must be built against the version of dovecot being used,
-# else mail delivery will fail.
-# Specify the version of dovecot to be used here:
-_dcpkgver=2.3.4
-# Make sure to bump pkgrel if changing this.
-
-pkgname=pigeonhole
-pkgver=0.5.4
-pkgrel=1
-
-pkgdesc='Sieve implementation for Dovecot'
-url='http://pigeonhole.dovecot.org/'
-arch=('x86_64')
-license=('LGPL')
-
-depends=("dovecot=${_dcpkgver}")
-
-conflicts=('dovecot-sieve' 'pigeonhole-hg')
-
-source=("https://pigeonhole.dovecot.org/releases/2.3/dovecot-2.3-pigeonhole-${pkgver}.tar.gz"{,.sig})
-
-sha256sums=('547999e67a001abc5e654c7e35653d3fe057fa9a47a24257e39a79c41ef08516'
-'SKIP')
-validpgpkeys=('42F3CD50D4F25A41833BEE3704D62B1E3DFBB4F4') # Stephan Bosch 

-
-build() {
-  cd "dovecot-2.3-pigeonhole-${pkgver}"
-
-  ./configure \
---prefix=/usr \
---with-dovecot=/usr/lib/dovecot \
---with-moduledir=/usr/lib/dovecot/modules \
---disable-static
-  make
-}
-
-check() {
-  cd "dovecot-2.3-pigeonhole-${pkgver}"
-  make check
-}
-
-package() {
-  cd "dovecot-2.3-pigeonhole-${pkgver}"
-
-  make DESTDIR="$pkgdir" install
-}

Copied: pigeonhole/repos/community-x86_64/PKGBUILD (from rev 429659, 
pigeonhole/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 18:53:32 UTC (rev 429660)
@@ -0,0 +1,53 @@
+# Maintainer: Johannes Löthberg 
+# Maintainer: Thore Bödecker 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: Peter Lewis 
+# Contributor: Sebastian Köhler 
+
+# This must be built against the version of dovecot being used,
+# else mail delivery will fail.
+# Specify the version of dovecot to be used here:
+_dcpkgver=2.3.4.1
+# Make sure to bump pkgrel if changing this.
+
+pkgname=pigeonhole
+pkgver=0.5.4
+pkgrel=2
+
+pkgdesc='Sieve implementation for Dovecot'
+url='http://pigeonhole.dovecot.org/'
+arch=('x86_64')
+license=('LGPL')
+
+depends=("dovecot=${_dcpkgver}")
+
+conflicts=('dovecot-sieve' 'pigeonhole-hg')
+
+source=("https://pigeonhole.dovecot.org/releases/2.3/dovecot-2.3-pigeonhole-${pkgver}.tar.gz"{,.sig})
+
+sha256sums=('547999e67a001abc5e654c7e35653d3fe057fa9a47a24257e39a79c41ef08516'
+'SKIP')
+validpgpkeys=('42F3CD50D4F25A41833BEE3704D62B1E3DFBB4F4') # Stephan Bosch 

+
+build() {
+  cd "dovecot-2.3-pigeonhole-${pkgver}"
+
+  ./configure \
+--prefix=/usr \
+--with-dovecot=/usr/lib/dovecot \
+--with-moduledir=/usr/lib/dovecot/modules \
+--disable-static
+  make
+}
+
+check() {
+  cd "dovecot-2.3-pigeonhole-${pkgver}"
+  make check
+}
+
+package() {
+  cd "dovecot-2.3-pigeonhole-${pkgver}"
+
+  make DESTDIR="$pkgdir" install
+}


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

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 18:53:18
  Author: demize
Revision: 429658

upgpkg: pigeonhole 0.5.4-2

Modified:
  pigeonhole/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 18:53:07 UTC (rev 429657)
+++ PKGBUILD2019-02-05 18:53:18 UTC (rev 429658)
@@ -8,12 +8,12 @@
 # This must be built against the version of dovecot being used,
 # else mail delivery will fail.
 # Specify the version of dovecot to be used here:
-_dcpkgver=2.3.4
+_dcpkgver=2.3.4.1
 # Make sure to bump pkgrel if changing this.
 
 pkgname=pigeonhole
 pkgver=0.5.4
-pkgrel=1
+pkgrel=2
 
 pkgdesc='Sieve implementation for Dovecot'
 url='http://pigeonhole.dovecot.org/'


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

2019-02-05 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, February 5, 2019 @ 18:25:20
  Author: jlichtblau
Revision: 429655

upgpkg: josm 14760-1 - new upstream release

Modified:
  josm/trunk/PKGBUILD
  josm/trunk/josm.changelog

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 18:23:25 UTC (rev 429654)
+++ PKGBUILD2019-02-05 18:25:20 UTC (rev 429655)
@@ -2,7 +2,7 @@
 # Contributor: Michele Schäuble 
 
 pkgname=josm
-pkgver=14620
+pkgver=14760
 pkgrel=1
 pkgdesc="An editor for OpenStreetMap written in Java"
 arch=('any')
@@ -15,7 +15,7 @@
 
https://josm.openstreetmap.de/export/HEAD/$pkgname/trunk/linux/tested/usr/share/applications/$pkgname.desktop
 $pkgname.conf.d)
 noextract=($pkgname-tested.jar)
-sha256sums=('7689034ec9e192552c669d7daf5ad6458a4f57d1f0d57a22e9ba5356b912f67a'
+sha256sums=('51774d689a221f5a9217faaef5f8c1035cb5668e2ca59ab1bad69f11c72f40f9'
 '9b18b076fd371fc87b851a700bb1fff6547b061769af57a3abc9af83405c16d2'
 'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
 

Modified: josm.changelog
===
--- josm.changelog  2019-02-05 18:23:25 UTC (rev 429654)
+++ josm.changelog  2019-02-05 18:25:20 UTC (rev 429655)
@@ -1,3 +1,6 @@
+2019-02-05 Jaroslav Lichtblau 
+   * josm 14760-1
+
 2019-01-01 Jaroslav Lichtblau 
* josm 14620-1
 


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

2019-02-05 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, February 5, 2019 @ 18:23:25
  Author: jlichtblau
Revision: 429654

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 429653, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 429653, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 429653, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 429653, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 429653, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  186 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 18:23:09 UTC (rev 429653)
+++ PKGBUILD2019-02-05 18:23:25 UTC (rev 429654)
@@ -1,93 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=1.0.0
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-# options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('27435f9ef7c276736ec16781ad6b27fecb28053b8ffb16e0bae40c1e9bb62225'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

[arch-commits] Commit in josm/repos/community-any (6 files)

2019-02-05 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, February 5, 2019 @ 18:25:31
  Author: jlichtblau
Revision: 429656

archrelease: copy trunk to community-any

Added:
  josm/repos/community-any/PKGBUILD
(from rev 429655, josm/trunk/PKGBUILD)
  josm/repos/community-any/josm.changelog
(from rev 429655, josm/trunk/josm.changelog)
  josm/repos/community-any/josm.conf.d
(from rev 429655, josm/trunk/josm.conf.d)
Deleted:
  josm/repos/community-any/PKGBUILD
  josm/repos/community-any/josm.changelog
  josm/repos/community-any/josm.conf.d

+
 PKGBUILD   |  102 -
 josm.changelog |  609 +++
 josm.conf.d|8 
 3 files changed, 361 insertions(+), 358 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 18:25:20 UTC (rev 429655)
+++ PKGBUILD2019-02-05 18:25:31 UTC (rev 429656)
@@ -1,51 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Michele Schäuble 
-
-pkgname=josm
-pkgver=14620
-pkgrel=1
-pkgdesc="An editor for OpenStreetMap written in Java"
-arch=('any')
-url="http://josm.openstreetmap.de/;
-license=('GPL')
-depends=('java-runtime>=8' 'libxtst' 'ttf-font')
-changelog=$pkgname.changelog
-backup=('etc/conf.d/josm')
-source=(https://josm.openstreetmap.de/$pkgname-tested.jar
-
https://josm.openstreetmap.de/export/HEAD/$pkgname/trunk/linux/tested/usr/share/applications/$pkgname.desktop
-$pkgname.conf.d)
-noextract=($pkgname-tested.jar)
-sha256sums=('7689034ec9e192552c669d7daf5ad6458a4f57d1f0d57a22e9ba5356b912f67a'
-'9b18b076fd371fc87b851a700bb1fff6547b061769af57a3abc9af83405c16d2'
-'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
-
-prepare() {
-  cd "${srcdir}"
-  bsdtar -xf $pkgname-tested.jar images/logo.svg
-}
-
-package() {
-  cd "${srcdir}"
-
-  install -Dm644 $pkgname-tested.jar 
"${pkgdir}"/usr/share/java/$pkgname/$pkgname.jar
-
-#.desktop and icon file
-  install -Dm644 "${srcdir}"/${pkgname}.desktop 
${pkgdir}/usr/share/applications/$pkgname.desktop
-  install -Dm644 images/logo.svg "${pkgdir}"/usr/share/pixmaps/$pkgname.svg
-
-#executable file
-  install -d "${pkgdir}"/usr/bin
-  cat <<"EOF" >"${pkgdir}"/usr/bin/$pkgname 
-#!/bin/sh
-# source application-specific settings
-while true; do
-JOSM_ARGS=
-[ -f /etc/conf.d/josm ] && . /etc/conf.d/josm
-CLASSPATH="/usr/share/java/josm/josm.jar"
-java ${JOSM_ARGS} -cp "${CLASSPATH}" -Djosm.restart=true 
org.openstreetmap.josm.gui.MainApplication "$@"
-[ $? -eq 9 ] || break
-done
-EOF
-  chmod 755 "${pkgdir}"/usr/bin/$pkgname
-  install -Dm644 "${srcdir}"/$pkgname.conf.d "${pkgdir}"/etc/conf.d/$pkgname
-}

Copied: josm/repos/community-any/PKGBUILD (from rev 429655, josm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 18:25:31 UTC (rev 429656)
@@ -0,0 +1,51 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Michele Schäuble 
+
+pkgname=josm
+pkgver=14760
+pkgrel=1
+pkgdesc="An editor for OpenStreetMap written in Java"
+arch=('any')
+url="http://josm.openstreetmap.de/;
+license=('GPL')
+depends=('java-runtime>=8' 'libxtst' 'ttf-font')
+changelog=$pkgname.changelog
+backup=('etc/conf.d/josm')
+source=(https://josm.openstreetmap.de/$pkgname-tested.jar
+
https://josm.openstreetmap.de/export/HEAD/$pkgname/trunk/linux/tested/usr/share/applications/$pkgname.desktop
+$pkgname.conf.d)
+noextract=($pkgname-tested.jar)
+sha256sums=('51774d689a221f5a9217faaef5f8c1035cb5668e2ca59ab1bad69f11c72f40f9'
+'9b18b076fd371fc87b851a700bb1fff6547b061769af57a3abc9af83405c16d2'
+'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
+
+prepare() {
+  cd "${srcdir}"
+  bsdtar -xf $pkgname-tested.jar images/logo.svg
+}
+
+package() {
+  cd "${srcdir}"
+
+  install -Dm644 $pkgname-tested.jar 
"${pkgdir}"/usr/share/java/$pkgname/$pkgname.jar
+
+#.desktop and icon file
+  install -Dm644 "${srcdir}"/${pkgname}.desktop 
${pkgdir}/usr/share/applications/$pkgname.desktop
+  install -Dm644 images/logo.svg "${pkgdir}"/usr/share/pixmaps/$pkgname.svg
+
+#executable file
+  install -d "${pkgdir}"/usr/bin
+  cat <<"EOF" >"${pkgdir}"/usr/bin/$pkgname 
+#!/bin/sh
+# source application-specific settings
+while true; do
+JOSM_ARGS=
+[ -f /etc/conf.d/josm ] && . /etc/conf.d/josm
+CLASSPATH="/usr/share/java/josm/josm.jar"
+java ${JOSM_ARGS} -cp "${CLASSPATH}" -Djosm.restart=true 
org.openstreetmap.josm.gui.MainApplication "$@"
+[ $? -eq 9 ] || break
+done
+EOF
+  chmod 755 "${pkgdir}"/usr/bin/$pkgname
+  install -Dm644 "${srcdir}"/$pkgname.conf.d "${pkgdir}"/etc/conf.d/$pkgname
+}

Deleted: josm.changelog
===
--- josm.changelog  2019-02-05 18:25:20 UTC (rev 429655)
+++ josm.changelog  2019-02-05 18:25:31 UTC (rev 429656)
@@ -1,303 

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

2019-02-05 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, February 5, 2019 @ 18:23:09
  Author: jlichtblau
Revision: 429653

upgpkg: syncthing 1.0.1-1 - new upstream release

Modified:
  syncthing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 17:43:12 UTC (rev 429652)
+++ PKGBUILD2019-02-05 18:23:09 UTC (rev 429653)
@@ -5,7 +5,7 @@
 # Contributor: korjjj 
 
 pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=1.0.0
+pkgver=1.0.1
 pkgrel=1
 arch=('x86_64')
 url="http://syncthing.net/;
@@ -18,7 +18,7 @@
 syncthing-relaysrv.tmpfiles
 syncthing-relaysrv.service)
 validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('27435f9ef7c276736ec16781ad6b27fecb28053b8ffb16e0bae40c1e9bb62225'
+sha256sums=('c36291efcea790df9db3b67a39a64e32a77332489abdae8260a295dae9015a3d'
 'SKIP'
 '6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
 'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'


[arch-commits] Commit in php/repos/extra-x86_64 (18 files)

2019-02-05 Thread Pierre Schmitz via arch-commits
Date: Tuesday, February 5, 2019 @ 18:31:35
  Author: pierre
Revision: 345297

archrelease: copy trunk to extra-x86_64

Added:
  php/repos/extra-x86_64/PKGBUILD
(from rev 345296, php/trunk/PKGBUILD)
  php/repos/extra-x86_64/apache.conf
(from rev 345296, php/trunk/apache.conf)
  php/repos/extra-x86_64/apache.patch
(from rev 345296, php/trunk/apache.patch)
  php/repos/extra-x86_64/enchant-2.patch
(from rev 345296, php/trunk/enchant-2.patch)
  php/repos/extra-x86_64/freetype.patch
(from rev 345296, php/trunk/freetype.patch)
  php/repos/extra-x86_64/generate_patches
(from rev 345296, php/trunk/generate_patches)
  php/repos/extra-x86_64/php-fpm.patch
(from rev 345296, php/trunk/php-fpm.patch)
  php/repos/extra-x86_64/php-fpm.tmpfiles
(from rev 345296, php/trunk/php-fpm.tmpfiles)
  php/repos/extra-x86_64/php.ini.patch
(from rev 345296, php/trunk/php.ini.patch)
Deleted:
  php/repos/extra-x86_64/PKGBUILD
  php/repos/extra-x86_64/apache.conf
  php/repos/extra-x86_64/apache.patch
  php/repos/extra-x86_64/enchant-2.patch
  php/repos/extra-x86_64/freetype.patch
  php/repos/extra-x86_64/generate_patches
  php/repos/extra-x86_64/php-fpm.patch
  php/repos/extra-x86_64/php-fpm.tmpfiles
  php/repos/extra-x86_64/php.ini.patch

--+
 PKGBUILD |  684 ++---
 apache.conf  |   26 +-
 apache.patch |   20 -
 enchant-2.patch  |  122 -
 freetype.patch   |   76 ++---
 generate_patches |   94 +++
 php-fpm.patch|  148 +--
 php-fpm.tmpfiles |2 
 php.ini.patch|  156 ++--
 9 files changed, 664 insertions(+), 664 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 18:31:11 UTC (rev 345296)
+++ PKGBUILD2019-02-05 18:31:35 UTC (rev 345297)
@@ -1,342 +0,0 @@
-# Maintainer: Pierre Schmitz 
-
-pkgbase=php
-pkgname=('php'
- 'php-cgi'
- 'php-apache'
- 'php-fpm'
- 'php-embed'
- 'php-phpdbg'
- 'php-dblib'
- 'php-enchant'
- 'php-gd'
- 'php-imap'
- 'php-intl'
- 'php-sodium'
- 'php-odbc'
- 'php-pgsql'
- 'php-pspell'
- 'php-snmp'
- 'php-sqlite'
- 'php-tidy'
- 'php-xsl')
-pkgver=7.3.1
-pkgrel=2
-arch=('x86_64')
-license=('PHP')
-url='https://secure.php.net/'
-makedepends=('apache' 'aspell' 'c-client' 'db' 'enchant' 'gd' 'gmp' 'icu' 
'libsodium' 'libxslt' 'libzip' 'net-snmp'
- 'postgresql-libs' 'sqlite' 'systemd' 'tidy' 'unixodbc' 'curl' 
'libtool' 'postfix' 'freetds' 'pcre2' 'libnsl')
-checkdepends=('procps-ng')
-source=("https://php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
-'apache.patch' 'apache.conf' 'php-fpm.patch' 'php-fpm.tmpfiles' 
'php.ini.patch'
-'enchant-2.patch' 'freetype.patch')
-sha256sums=('cfe93e40be0350cd53c4a579f52fe5d8faf9c6db047f650a4566a2276bf33362'
-'SKIP'
-'62e5ceea3c90a3c6eab1166488f876e766efcfd7d4e973c44060a9e72d51a98a'
-'ebc0af1ef3a6baccb013d0ccb29923895a7b22ff2d032e3bba802dc6328301ce'
-'3de3c76930874c81824c23aa033cb9e66631659fd31f925d7c58f0479aeb18a9'
-'640dba0d960bfeaae9ad38d2826d3f6b5d6c175a4d3e16664eefff29141faad5'
-'ba63ff727d911882726e4e5e513249d29e9ccc842ebee10a07b160b4718ba20d'
-'3992491eebaf5b31f6b00095a7276d11682f9a8aaff473bfb25afbdcfa6eba32'
-'07c4648669dc05afc3c1ad5a4739768079c423b817eabf5296ca3d1ea5ffd163')
-validpgpkeys=('CBAF69F173A0FEA4B537F470D66C9593118BCCB6'
-  'F38252826ACD957EF380D39F2F7956BC5DA04B5D')
-
-prepare() {
-   cd ${srcdir}/${pkgbase}-${pkgver}
-
-   patch -p0 -i ${srcdir}/apache.patch
-   patch -p0 -i ${srcdir}/php-fpm.patch
-   patch -p0 -i ${srcdir}/php.ini.patch
-   patch -p1 -i ${srcdir}/enchant-2.patch
-   patch -p1 -i ${srcdir}/freetype.patch
-   autoconf
-
-   rm tests/output/stream_isatty_*.phpt
-}
-
-build() {
-   # http://site.icu-project.org/download/61#TOC-Migration-Issues
-   CPPFLAGS+=' -DU_USING_ICU_NAMESPACE=1'
-
-   local _phpconfig="--srcdir=../${pkgbase}-${pkgver} \
-   --config-cache \
-   --prefix=/usr \
-   --sbindir=/usr/bin \
-   --sysconfdir=/etc/php \
-   --localstatedir=/var \
-   --with-layout=GNU \
-   --with-config-file-path=/etc/php \
-   --with-config-file-scan-dir=/etc/php/conf.d \
-   --disable-rpath \
-   --mandir=/usr/share/man \
-   --without-pear \
-   "
-
-   local _phpextensions="\
-   --enable-bcmath=shared \
-   --enable-calendar=shared \
-   --enable-dba=shared \
-   --enable-exif=shared \
-   --enable-ftp=shared \
-   --enable-intl=shared \
-   --enable-mbstring 

[arch-commits] Commit in php/trunk (PKGBUILD php.ini.patch)

2019-02-05 Thread Pierre Schmitz via arch-commits
Date: Tuesday, February 5, 2019 @ 18:31:11
  Author: pierre
Revision: 345296

upgpkg: php 7.3.2-1

Modified:
  php/trunk/PKGBUILD
  php/trunk/php.ini.patch

---+
 PKGBUILD  |8 
 php.ini.patch |4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 17:39:02 UTC (rev 345295)
+++ PKGBUILD2019-02-05 18:31:11 UTC (rev 345296)
@@ -20,8 +20,8 @@
  'php-sqlite'
  'php-tidy'
  'php-xsl')
-pkgver=7.3.1
-pkgrel=2
+pkgver=7.3.2
+pkgrel=1
 arch=('x86_64')
 license=('PHP')
 url='https://secure.php.net/'
@@ -31,13 +31,13 @@
 source=("https://php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
 'apache.patch' 'apache.conf' 'php-fpm.patch' 'php-fpm.tmpfiles' 
'php.ini.patch'
 'enchant-2.patch' 'freetype.patch')
-sha256sums=('cfe93e40be0350cd53c4a579f52fe5d8faf9c6db047f650a4566a2276bf33362'
+sha256sums=('010b868b4456644ae227d05ad236c8b0a1f57dc6320e7e5ad75e86c5baf0a9a8'
 'SKIP'
 '62e5ceea3c90a3c6eab1166488f876e766efcfd7d4e973c44060a9e72d51a98a'
 'ebc0af1ef3a6baccb013d0ccb29923895a7b22ff2d032e3bba802dc6328301ce'
 '3de3c76930874c81824c23aa033cb9e66631659fd31f925d7c58f0479aeb18a9'
 '640dba0d960bfeaae9ad38d2826d3f6b5d6c175a4d3e16664eefff29141faad5'
-'ba63ff727d911882726e4e5e513249d29e9ccc842ebee10a07b160b4718ba20d'
+'2e8794638f3218602ae542feabd1f7414faac895ac72aff3736ddba02b65b942'
 '3992491eebaf5b31f6b00095a7276d11682f9a8aaff473bfb25afbdcfa6eba32'
 '07c4648669dc05afc3c1ad5a4739768079c423b817eabf5296ca3d1ea5ffd163')
 validpgpkeys=('CBAF69F173A0FEA4B537F470D66C9593118BCCB6'

Modified: php.ini.patch
===
--- php.ini.patch   2019-02-05 17:39:02 UTC (rev 345295)
+++ php.ini.patch   2019-02-05 18:31:11 UTC (rev 345296)
@@ -1,6 +1,6 @@
 --- php.ini-production.orig
 +++ php.ini-production
-@@ -752,7 +752,7 @@
+@@ -754,7 +754,7 @@
  
  ; Directory in which the loadable extensions (modules) reside.
  ; http://php.net/extension-dir
@@ -9,7 +9,7 @@
  ; On windows:
  ;extension_dir = "ext"
  
-@@ -900,48 +900,44 @@
+@@ -902,48 +902,44 @@
  ; deprecated in a future PHP major version. So, when it is possible, please
  ; move to the new ('extension=) syntax.
  ;


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

2019-02-05 Thread Maxime Gauduin via arch-commits
Date: Tuesday, February 5, 2019 @ 17:43:12
  Author: alucryd
Revision: 429652

archrelease: copy trunk to community-x86_64

Added:
  musescore/repos/community-x86_64/PKGBUILD
(from rev 429651, musescore/trunk/PKGBUILD)
Deleted:
  musescore/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 17:43:01 UTC (rev 429651)
+++ PKGBUILD2019-02-05 17:43:12 UTC (rev 429652)
@@ -1,48 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Stefan Husmann 
-# Contributor: Cristian Maureira 
-# Contributor: Dr.Egg 
-
-pkgname=musescore
-pkgver=3.0.1
-pkgrel=1
-pkgdesc='Create, play and print beautiful sheet music'
-arch=(x86_64)
-url='http://musescore.org/'
-license=(GPL)
-depends=(
-  alsa-lib
-  libpulse
-  libsndfile
-  libvorbisfile.so
-  portaudio
-  portmidi
-  qt5-base
-  qt5-declarative
-  qt5-svg
-  qt5-tools
-  qt5-webengine
-  qt5-xmlpatterns
-  zlib
-)
-makedepends=(
-  cmake
-  doxygen
-  git
-  lame
-  qt5-script
-  texlive-core
-)
-optdepends=('lame: MP3 export')
-source=(git+https://github.com/musescore/MuseScore.git#tag=v${pkgver})
-sha256sums=('SKIP')
-
-build() {
-  make PREFIX='/usr' -C MuseScore release
-}
-
-package() {
-  make DESTDIR="${pkgdir}" -C MuseScore/build.release install
-}
-
-# vim: ts=2 sw=2 et:

Copied: musescore/repos/community-x86_64/PKGBUILD (from rev 429651, 
musescore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 17:43:12 UTC (rev 429652)
@@ -0,0 +1,48 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Stefan Husmann 
+# Contributor: Cristian Maureira 
+# Contributor: Dr.Egg 
+
+pkgname=musescore
+pkgver=3.0.2
+pkgrel=1
+pkgdesc='Create, play and print beautiful sheet music'
+arch=(x86_64)
+url='http://musescore.org/'
+license=(GPL)
+depends=(
+  alsa-lib
+  libpulse
+  libsndfile
+  libvorbisfile.so
+  portaudio
+  portmidi
+  qt5-base
+  qt5-declarative
+  qt5-svg
+  qt5-tools
+  qt5-webengine
+  qt5-xmlpatterns
+  zlib
+)
+makedepends=(
+  cmake
+  doxygen
+  git
+  lame
+  qt5-script
+  texlive-core
+)
+optdepends=('lame: MP3 export')
+source=(git+https://github.com/musescore/MuseScore.git#tag=v${pkgver})
+sha256sums=('SKIP')
+
+build() {
+  make PREFIX='/usr' -C MuseScore release
+}
+
+package() {
+  make DESTDIR="${pkgdir}" -C MuseScore/build.release install
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-05 Thread Maxime Gauduin via arch-commits
Date: Tuesday, February 5, 2019 @ 17:43:01
  Author: alucryd
Revision: 429651

upgpkg: musescore 3.0.2-1

Modified:
  musescore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 17:41:07 UTC (rev 429650)
+++ PKGBUILD2019-02-05 17:43:01 UTC (rev 429651)
@@ -4,7 +4,7 @@
 # Contributor: Dr.Egg 
 
 pkgname=musescore
-pkgver=3.0.1
+pkgver=3.0.2
 pkgrel=1
 pkgdesc='Create, play and print beautiful sheet music'
 arch=(x86_64)


[arch-commits] Commit in (4 files)

2019-02-05 Thread Felix Yan via arch-commits
Date: Tuesday, February 5, 2019 @ 17:40:47
  Author: felixonmars
Revision: 429649

addpkg: libeatmydata 105.r16.g96f8f0e-1

Added:
  libeatmydata/
  libeatmydata/repos/
  libeatmydata/trunk/
  libeatmydata/trunk/PKGBUILD

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

Added: libeatmydata/trunk/PKGBUILD
===
--- libeatmydata/trunk/PKGBUILD (rev 0)
+++ libeatmydata/trunk/PKGBUILD 2019-02-05 17:40:47 UTC (rev 429649)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: goetzc
+# Contributor: Jonathan Squirawski 
+
+pkgname=libeatmydata
+pkgver=105.r16.g96f8f0e
+_commit=96f8f0e8291cbc0131529fcb03d4c7df1fe7792c
+pkgrel=1
+pkgdesc='Library and utilities designed to disable fsync and friends.'
+arch=('i686' 'x86_64')
+url='https://github.com/stewartsmith/libeatmydata'
+license=('GPL3')
+depends=('bash')
+makedepends=('git')
+source=("git+https://github.com/stewartsmith/${pkgname}/#commit=$_commit;)
+md5sums=('SKIP')
+
+pkgver() {
+  cd libeatmydata
+  git describe --tags | sed 's/^libeatmydata-//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+build() {
+  cd libeatmydata
+  autoreconf -i
+  ./configure --prefix=/usr --libexecdir=/usr/lib/libeatmydata
+  make
+}
+
+check() {
+  cd libeatmydata
+  make check || warning "Tests need strace permission to run"
+}
+
+package() {
+  cd libeatmydata
+  make DESTDIR="$pkgdir" install
+}


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

2019-02-05 Thread Felix Yan via arch-commits
Date: Tuesday, February 5, 2019 @ 17:41:07
  Author: felixonmars
Revision: 429650

archrelease: copy trunk to community-x86_64

Added:
  libeatmydata/repos/community-x86_64/
  libeatmydata/repos/community-x86_64/PKGBUILD
(from rev 429649, libeatmydata/trunk/PKGBUILD)

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

Copied: libeatmydata/repos/community-x86_64/PKGBUILD (from rev 429649, 
libeatmydata/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-02-05 17:41:07 UTC (rev 429650)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: goetzc
+# Contributor: Jonathan Squirawski 
+
+pkgname=libeatmydata
+pkgver=105.r16.g96f8f0e
+_commit=96f8f0e8291cbc0131529fcb03d4c7df1fe7792c
+pkgrel=1
+pkgdesc='Library and utilities designed to disable fsync and friends.'
+arch=('i686' 'x86_64')
+url='https://github.com/stewartsmith/libeatmydata'
+license=('GPL3')
+depends=('bash')
+makedepends=('git')
+source=("git+https://github.com/stewartsmith/${pkgname}/#commit=$_commit;)
+md5sums=('SKIP')
+
+pkgver() {
+  cd libeatmydata
+  git describe --tags | sed 's/^libeatmydata-//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+build() {
+  cd libeatmydata
+  autoreconf -i
+  ./configure --prefix=/usr --libexecdir=/usr/lib/libeatmydata
+  make
+}
+
+check() {
+  cd libeatmydata
+  make check || warning "Tests need strace permission to run"
+}
+
+package() {
+  cd libeatmydata
+  make DESTDIR="$pkgdir" install
+}


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

2019-02-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 5, 2019 @ 17:39:02
  Author: arojas
Revision: 345295

archrelease: copy trunk to staging-x86_64

Added:
  xine-lib/repos/staging-x86_64/
  xine-lib/repos/staging-x86_64/PKGBUILD
(from rev 345294, xine-lib/trunk/PKGBUILD)
  xine-lib/repos/staging-x86_64/xine-lib-imagemagick7.patch
(from rev 345294, xine-lib/trunk/xine-lib-imagemagick7.patch)

-+
 PKGBUILD|   53 ++
 xine-lib-imagemagick7.patch |   13 ++
 2 files changed, 66 insertions(+)

Copied: xine-lib/repos/staging-x86_64/PKGBUILD (from rev 345294, 
xine-lib/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-05 17:39:02 UTC (rev 345295)
@@ -0,0 +1,53 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=xine-lib
+pkgver=1.2.9
+pkgrel=8
+pkgdesc="A multimedia playback engine"
+arch=('x86_64')
+url="http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama' 'libnsl')
+makedepends=('wavpack' 'faad2' 'libmng' 'libmagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 'libdvdnav'
+ 'libmpcdec' 'libcaca' 'libbluray' 'libvdpau' 'glu' 'gdk-pixbuf2')
+optdepends=('libmagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libdvdnav: for using the dvd plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'libvdpau: for using the VDPAU plugin' \
+'smbclient: for using the samba plugin' \
+'gdk-pixbuf2: for using the gdk-pixbuf plugin')
+source=(https://downloads.sourceforge.net/project/xine/xine-lib/$pkgver/xine-lib-$pkgver.tar.xz
+xine-lib-imagemagick7.patch)
+sha1sums=('ad6e72b7d8ff6172a8a170ab1bc38577ae321371'
+  '7604ce72297f5b123a0bb53ebf5f1606e2ec0bad')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../xine-lib-imagemagick7.patch # PLD linux patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--with-external-dvdnav \
+--disable-optimizations 
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: xine-lib/repos/staging-x86_64/xine-lib-imagemagick7.patch (from rev 
345294, xine-lib/trunk/xine-lib-imagemagick7.patch)
===
--- staging-x86_64/xine-lib-imagemagick7.patch  (rev 0)
+++ staging-x86_64/xine-lib-imagemagick7.patch  2019-02-05 17:39:02 UTC (rev 
345295)
@@ -0,0 +1,13 @@
+http://git.pld-linux.org/?p=packages/xine-lib.git;a=blob;f=imagemagick7.patch;h=d050323cdf509c9bb5f8edbad90084e8ce5c1b38;hb=HEAD
+
+--- xine-lib-1.2.6/src/video_dec/image.c
 xine-lib-1.2.6/src/video_dec/image.c
+@@ -39,7 +39,7 @@
+ #define LOG
+ */
+ 
+-#include 
++#include 
+ #ifdef PACKAGE_NAME
+ #undef PACKAGE_BUGREPORT
+ #undef PACKAGE_NAME


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

2019-02-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 5, 2019 @ 17:38:33
  Author: arojas
Revision: 345294

libvpx 1.8 rebuild

Modified:
  xine-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 17:11:11 UTC (rev 345293)
+++ PKGBUILD2019-02-05 17:38:33 UTC (rev 345294)
@@ -2,7 +2,7 @@
 
 pkgname=xine-lib
 pkgver=1.2.9
-pkgrel=7
+pkgrel=8
 pkgdesc="A multimedia playback engine"
 arch=('x86_64')
 url="http://www.xine-project.org;


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

2019-02-05 Thread Felix Yan via arch-commits
Date: Tuesday, February 5, 2019 @ 17:35:15
  Author: felixonmars
Revision: 429645

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 17:34:55 UTC (rev 429644)
+++ PKGBUILD2019-02-05 17:35:15 UTC (rev 429645)
@@ -1,80 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.5.0
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-mock'
-  'python2-mock' 'python-pandas' 'python2-pandas' 
'python-dpcontracts'
-  'python2-dpcontracts' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-lark-parser' 'python2-lark-parser')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('5db8fc2c85cf44b2d6638503a5d44326a3e3f7fc8d9246b108eb1ce7eea57d71037fbedf6c8fdfc98faaf509a68a7bbbf08cc05030086d057834a0c9897bbf82')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-
-  cp -a hypothesis-$pkgver{,-py2}
-
-  rm -r hypothesis-$pkgver/hypothesis-python/tests/py2
-  rm -r hypothesis-$pkgver-py2/hypothesis-python/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  mv tests/django ../
-  # https://github.com/python/typing/issues/612
-  python2 setup.py pytest || warning "Tests failed"
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module'
-  'python-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module'
-  'python2-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 429644, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 17:35:15 UTC (rev 429645)
@@ -0,0 +1,80 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=4.5.1
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-mock'
+  'python2-mock' 'python-pandas' 'python2-pandas' 
'python-dpcontracts'
+   

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

2019-02-05 Thread Felix Yan via arch-commits
Date: Tuesday, February 5, 2019 @ 17:34:55
  Author: felixonmars
Revision: 429644

upgpkg: python-hypothesis 4.5.1-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 17:34:46 UTC (rev 429643)
+++ PKGBUILD2019-02-05 17:34:55 UTC (rev 429644)
@@ -2,7 +2,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.5.0
+pkgver=4.5.1
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python2-dpcontracts' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-lark-parser' 'python2-lark-parser')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('5db8fc2c85cf44b2d6638503a5d44326a3e3f7fc8d9246b108eb1ce7eea57d71037fbedf6c8fdfc98faaf509a68a7bbbf08cc05030086d057834a0c9897bbf82')
+sha512sums=('15db83dccda726e2c7b1b70f81cf417603e12c0e297224e1acdc6a32d1a88661b9e90ade5604bd917786bfc58bace3986ca718ddf48c129b6223ba19e6c56a0d')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2019-02-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 5, 2019 @ 17:34:46
  Author: arojas
Revision: 429643

archrelease: copy trunk to community-staging-x86_64

Added:
  mediastreamer/repos/community-staging-x86_64/
  mediastreamer/repos/community-staging-x86_64/PKGBUILD
(from rev 429642, mediastreamer/trunk/PKGBUILD)
  mediastreamer/repos/community-staging-x86_64/libsrtp2.diff
(from rev 429642, mediastreamer/trunk/libsrtp2.diff)

---+
 PKGBUILD  |   40 +
 libsrtp2.diff |  241 
 2 files changed, 281 insertions(+)

Copied: mediastreamer/repos/community-staging-x86_64/PKGBUILD (from rev 429642, 
mediastreamer/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-05 17:34:46 UTC (rev 429643)
@@ -0,0 +1,40 @@
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Sergej Pupykin 
+# Contributor: Adrià Arrufat 
+# Contributor: Mark Lee 
+
+pkgname=mediastreamer
+pkgver=2.16.1
+pkgrel=6
+pkgdesc="A library written in C that allows you to create and run audio and 
video streams"
+arch=(x86_64)
+url="https://github.com/BelledonneCommunications/mediastreamer2;
+license=(GPL)
+depends=(ortp ffmpeg libxv libupnp bzrtp glew libsrtp)
+# xxd from Vim is needed to build
+makedepends=(intltool vim bcunit)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/mediastreamer2/archive/$pkgver.tar.gz;
+libsrtp2.diff)
+sha256sums=('25e0557d5b992d256a6df07466ba3c10587bdf899850b46a31e79b91147e5910'
+'faec3586e3ff8315d79fb5ef5bcc4d630ee66e63a9c6a25f28d113765fa28e58')
+validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
+
+prepare() {
+  cd ${pkgname}2-$pkgver
+  patch -Np1 -i ../libsrtp2.diff
+  ./autogen.sh
+}
+
+build() {
+  cd ${pkgname}2-$pkgver
+  export CFLAGS="$CFLAGS -DMS2_GIT_VERSION=\"\\\"unknown\\\"\""
+  ./configure --prefix=/usr \
+--enable-glx --enable-xv --enable-zrtp --enable-external-ortp 
--disable-strict
+  make
+}
+
+package() {
+  cd ${pkgname}2-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: mediastreamer/repos/community-staging-x86_64/libsrtp2.diff (from rev 
429642, mediastreamer/trunk/libsrtp2.diff)
===
--- community-staging-x86_64/libsrtp2.diff  (rev 0)
+++ community-staging-x86_64/libsrtp2.diff  2019-02-05 17:34:46 UTC (rev 
429643)
@@ -0,0 +1,241 @@
+diff -u -r mediastreamer2-2.16.1/configure.ac 
mediastreamer2-2.16.1-libsrtp2/configure.ac
+--- mediastreamer2-2.16.1/configure.ac 2017-07-21 15:00:47.0 +0200
 mediastreamer2-2.16.1-libsrtp2/configure.ac2018-01-13 
00:06:22.194089121 +0100
+@@ -1041,7 +1041,7 @@
+ 
+ dnl check for libsrtp support (secure rtp)
+ AC_ARG_WITH(srtp,
+-  AC_HELP_STRING([--with-srtp], [Set prefix where libsrtp can be found or 
"none" to disable (ex:/usr or /usr/local) [[default=/usr]]]),
++  AC_HELP_STRING([--with-srtp], [Set prefix where libsrtp2 can be found 
or "none" to disable (ex:/usr or /usr/local) [[default=/usr]]]),
+   [srtp_prefix=$withval],
+   [if test "$prefix" != "NONE"; then
+   srtp_prefix=$prefix
+@@ -1051,22 +1051,22 @@
+ 
+ if test "${srtp_prefix}" != "none" ; then
+   if test "${srtp_prefix}" != "/usr" ; then
+-  SRTP_CFLAGS="-I${srtp_prefix}/include 
-I${srtp_prefix}/include/srtp"
++  SRTP_CFLAGS="-I${srtp_prefix}/include 
-I${srtp_prefix}/include/srtp2"
+   SRTP_LIBS="-L${srtp_prefix}/lib"
+   fi
+-  SRTP_LIBS="$SRTP_LIBS -lsrtp"
++  SRTP_LIBS="$SRTP_LIBS -lsrtp2"
+ 
+   dnl check srtp headers
+   CPPFLAGS_save=$CPPFLAGS
+   CPPFLAGS="$CPPFLAGS $SRTP_CFLAGS"
+-  AC_CHECK_HEADER([srtp/srtp.h],have_srtp_headers=yes)
++  AC_CHECK_HEADER([srtp2/srtp.h],have_srtp_headers=yes)
+   CPPFLAGS=$CPPFLAGS_save
+ 
+   dnl check for srtp lib
+   LDFLAGS_save=$LDFLAGS
+   LDFLAGS="$LDFLAGS $SRTP_LIBS"
+   LIBS_save=$LIBS
+-  AC_CHECK_LIB(srtp,[srtp_init, 
crypto_policy_set_aes_cm_256_hmac_sha1_80, 
crypto_policy_set_aes_cm_256_hmac_sha1_32], have_srtp_lib=yes)
++  AC_CHECK_LIB(srtp2,[srtp_init, 
srtp_crypto_policy_set_aes_cm_256_hmac_sha1_80, 
srtp_crypto_policy_set_aes_cm_256_hmac_sha1_32], have_srtp_lib=yes)
+   LDFLAGS=$LDFLAGS_save
+   LIBS=$LIBS_save
+ 
+@@ -1075,9 +1075,9 @@
+   LIBS_save=$LIBS
+   LDFLAGS="$LDFLAGS $SRTP_LIBS"
+   AC_CHECK_LIB(
+-  srtp,
++  srtp2,
+   sha1_update,[
+-  AC_MSG_WARN([This libsrtp version exports 
symbols conflicting with polarssl, resulting in a bad execution path. libsrtp 
will be statically linked])
++  AC_MSG_WARN([This libsrtp2 version exports 
symbols 

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

2019-02-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 5, 2019 @ 17:29:59
  Author: arojas
Revision: 429640

libvpx 1.8 rebuild

Modified:
  mediastreamer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 17:29:39 UTC (rev 429639)
+++ PKGBUILD2019-02-05 17:29:59 UTC (rev 429640)
@@ -6,7 +6,7 @@
 
 pkgname=mediastreamer
 pkgver=2.16.1
-pkgrel=5
+pkgrel=6
 pkgdesc="A library written in C that allows you to create and run audio and 
video streams"
 arch=(x86_64)
 url="https://github.com/BelledonneCommunications/mediastreamer2;


[arch-commits] Commit in sagemath/repos (15 files)

2019-02-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 5, 2019 @ 17:29:39
  Author: arojas
Revision: 429639

archrelease: copy trunk to community-staging-x86_64

Added:
  sagemath/repos/community-staging-x86_64/
  sagemath/repos/community-staging-x86_64/PKGBUILD
(from rev 429638, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-staging-x86_64/fes02.patch
(from rev 429638, sagemath/trunk/fes02.patch)
  sagemath/repos/community-staging-x86_64/latte-count.patch
(from rev 429638, sagemath/trunk/latte-count.patch)
  sagemath/repos/community-staging-x86_64/package.patch
(from rev 429638, sagemath/trunk/package.patch)
  sagemath/repos/community-staging-x86_64/sagemath-cremona.patch
(from rev 429638, sagemath/trunk/sagemath-cremona.patch)
  sagemath/repos/community-staging-x86_64/sagemath-cypari2.patch
(from rev 429638, sagemath/trunk/sagemath-cypari2.patch)
  sagemath/repos/community-staging-x86_64/sagemath-ecl-sigfpe.patch
(from rev 429638, sagemath/trunk/sagemath-ecl-sigfpe.patch)
  sagemath/repos/community-staging-x86_64/sagemath-env.patch
(from rev 429638, sagemath/trunk/sagemath-env.patch)
  sagemath/repos/community-staging-x86_64/sagemath-numpy-1.16.patch
(from rev 429638, sagemath/trunk/sagemath-numpy-1.16.patch)
  sagemath/repos/community-staging-x86_64/sagemath-python3-notebook.patch
(from rev 429638, sagemath/trunk/sagemath-python3-notebook.patch)
  sagemath/repos/community-staging-x86_64/sagemath-singular-4.1.1.p4.patch
(from rev 429638, sagemath/trunk/sagemath-singular-4.1.1.p4.patch)
  sagemath/repos/community-staging-x86_64/sagemath-sphinx-1.8.patch
(from rev 429638, sagemath/trunk/sagemath-sphinx-1.8.patch)
  sagemath/repos/community-staging-x86_64/sagemath-threejs.patch
(from rev 429638, sagemath/trunk/sagemath-threejs.patch)
  sagemath/repos/community-staging-x86_64/test-optional.patch
(from rev 429638, sagemath/trunk/test-optional.patch)

--+
 PKGBUILD |  161 
 fes02.patch  |   57 ++
 latte-count.patch|   89 
 package.patch|   39 ++
 sagemath-cremona.patch   |   31 +
 sagemath-cypari2.patch   |  711 +
 sagemath-ecl-sigfpe.patch|  147 +++
 sagemath-env.patch   |  162 
 sagemath-numpy-1.16.patch|   85 
 sagemath-python3-notebook.patch  |   27 +
 sagemath-singular-4.1.1.p4.patch |   78 
 sagemath-sphinx-1.8.patch|   28 +
 sagemath-threejs.patch   |   11 
 test-optional.patch  |   25 +
 14 files changed, 1651 insertions(+)

Copied: sagemath/repos/community-staging-x86_64/PKGBUILD (from rev 429638, 
sagemath/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-05 17:29:39 UTC (rev 429639)
@@ -0,0 +1,161 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Evgeniy Alekseev 
+# Contributor: Daniel Wallace 
+# Contributor: Thomas Dziedzic 
+# Contributor: Osman Ugus 
+# Contributor: Stefan Husmann 
+
+pkgbase=sagemath
+pkgname=(sagemath sagemath-jupyter)
+pkgver=8.6
+pkgrel=3
+pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab"
+arch=(x86_64)
+url="http://www.sagemath.org;
+license=(GPL)
+depends=(ipython2 ppl palp brial cliquer maxima-ecl gfan sympow nauty 
python2-rpy2 python2-fpylll python2-psutil python2-cypari2
+  python2-matplotlib python2-scipy python2-sympy python2-networkx 
python2-pillow python2-future gap flintqs lcalc lrcalc arb
+  eclib gmp-ecm zn_poly gd python2-cvxopt pynac linbox m4rie rubiks 
pari-galdata pari-seadata-small planarity rankwidth tachyon
+  sage-data-combinatorial_designs sage-data-elliptic_curves sage-data-graphs 
sage-data-polytopes_db sage-data-conway_polynomials
+  libgiac libhomfly libbraiding three.js openblas)
+optdepends=('cython2: to compile cython code' 'python2-pkgconfig: to compile 
cython code'
+  'jmol: 3D plots' 'sage-notebook: Flask notebook interface (deprecated)'
+  'sagemath-doc: Documentation and inline help' 'python2-igraph: igraph 
backend for graph theory'
+  'coin-or-cbc: COIN backend for numerical computations' 'coin-or-csdp: for 
computing Lovász theta-function of graphs'
+  'buckygen: for generating fullerene graphs' 'plantri: for generating some 
classes of graphs' 'benzene: for generating fusenes and benzenoids'
+  'ffmpeg: to export animations to video' 'imagemagick: to show animations'
+  'coxeter: Coxeter groups implementation'
+  'lrs: Algorithms for linear reverse search used in game theory and for 
computing volume of polytopes'
+  'libfes: exhaustive search of solutions for boolean equations' 
'python2-pynormaliz: Normaliz backend for polyhedral computations'
+  'latte-integrale: integral point count in polyhedra' 'polymake: polymake 
backend for polyhedral 

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

2019-02-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 5, 2019 @ 17:28:54
  Author: arojas
Revision: 429638

eclib 20190205 rebuild

Modified:
  sagemath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 17:05:43 UTC (rev 429637)
+++ PKGBUILD2019-02-05 17:28:54 UTC (rev 429638)
@@ -8,7 +8,7 @@
 pkgbase=sagemath
 pkgname=(sagemath sagemath-jupyter)
 pkgver=8.6
-pkgrel=2
+pkgrel=3
 pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab"
 arch=(x86_64)
 url="http://www.sagemath.org;


[arch-commits] Commit in zabbix/repos (15 files)

2019-02-05 Thread Florian Pritz via arch-commits
Date: Tuesday, February 5, 2019 @ 17:11:11
  Author: bluewind
Revision: 345293

archrelease: copy trunk to testing-x86_64

Added:
  zabbix/repos/testing-x86_64/
  zabbix/repos/testing-x86_64/PKGBUILD
(from rev 345292, zabbix/trunk/PKGBUILD)
  zabbix/repos/testing-x86_64/zabbix-agent.service
(from rev 345292, zabbix/trunk/zabbix-agent.service)
  zabbix/repos/testing-x86_64/zabbix-agent.sysusers
(from rev 345292, zabbix/trunk/zabbix-agent.sysusers)
  zabbix/repos/testing-x86_64/zabbix-agent.tmpfiles
(from rev 345292, zabbix/trunk/zabbix-agent.tmpfiles)
  zabbix/repos/testing-x86_64/zabbix-proxy-mysql.service
(from rev 345292, zabbix/trunk/zabbix-proxy-mysql.service)
  zabbix/repos/testing-x86_64/zabbix-proxy-pgsql.service
(from rev 345292, zabbix/trunk/zabbix-proxy-pgsql.service)
  zabbix/repos/testing-x86_64/zabbix-proxy-sqlite.service
(from rev 345292, zabbix/trunk/zabbix-proxy-sqlite.service)
  zabbix/repos/testing-x86_64/zabbix-proxy.sysusers
(from rev 345292, zabbix/trunk/zabbix-proxy.sysusers)
  zabbix/repos/testing-x86_64/zabbix-proxy.tmpfiles
(from rev 345292, zabbix/trunk/zabbix-proxy.tmpfiles)
  zabbix/repos/testing-x86_64/zabbix-server-mysql.service
(from rev 345292, zabbix/trunk/zabbix-server-mysql.service)
  zabbix/repos/testing-x86_64/zabbix-server-pgsql.service
(from rev 345292, zabbix/trunk/zabbix-server-pgsql.service)
  zabbix/repos/testing-x86_64/zabbix-server.install
(from rev 345292, zabbix/trunk/zabbix-server.install)
  zabbix/repos/testing-x86_64/zabbix-server.sysusers
(from rev 345292, zabbix/trunk/zabbix-server.sysusers)
  zabbix/repos/testing-x86_64/zabbix-server.tmpfiles
(from rev 345292, zabbix/trunk/zabbix-server.tmpfiles)

-+
 PKGBUILD|  181 ++
 zabbix-agent.service|   11 ++
 zabbix-agent.sysusers   |1 
 zabbix-agent.tmpfiles   |1 
 zabbix-proxy-mysql.service  |   18 
 zabbix-proxy-pgsql.service  |   18 
 zabbix-proxy-sqlite.service |   18 
 zabbix-proxy.sysusers   |1 
 zabbix-proxy.tmpfiles   |1 
 zabbix-server-mysql.service |   18 
 zabbix-server-pgsql.service |   18 
 zabbix-server.install   |   12 ++
 zabbix-server.sysusers  |1 
 zabbix-server.tmpfiles  |1 
 14 files changed, 300 insertions(+)

Copied: zabbix/repos/testing-x86_64/PKGBUILD (from rev 345292, 
zabbix/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-02-05 17:11:11 UTC (rev 345293)
@@ -0,0 +1,181 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Florian Pritz 
+
+pkgbase=zabbix
+pkgname=(zabbix-server zabbix-agent zabbix-proxy zabbix-frontend-php)
+pkgver=4.0.4
+pkgrel=1
+arch=(x86_64)
+url='https://www.zabbix.com/'
+license=(GPL)
+makedepends=(postgresql-libs libxml2 unixodbc net-snmp mariadb-libs libldap 
libevent)
+source=(https://downloads.sourceforge.net/sourceforge/zabbix/zabbix-${pkgver}.tar.gz
+zabbix-agent.{service,sysusers,tmpfiles}
+zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles}
+zabbix-proxy{-sqlite,-mysql,-pgsql}.service 
zabbix-proxy.{sysusers,tmpfiles})
+
+sha512sums=('cf07c6dc3ea4b3722790d6db9219b81be7cb06cc11925a335b38bc3a7ad3fc395b45f6ba77edaf41eed545796ed2979c7b2f3b11b67fa6f39b76b58320642adb'
+
'8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444'
+
'3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc'
+
'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d'
+
'b35155a5d151eb7258bca62d53e7099a05605e58adac9d1510e12c2219abc22f931e92ea5d36bf86900e30982e893e429235d983a7823610d76c15082c373d1f'
+
'ac968d9954e5d9523eb7a9b8dcbcef40d4b47c1db3b2ff86d5fbc3f1871fcd03aff14f5b0cfeeeb494fdeb2d95e2e32b8622297c714a90d22c68ab3b3b914475'
+
'4254d3b13ff0d19a8e207f709c10ea59dbb6d4f333d862b1611a0fa4ced199e9a32313e88d8abadc129c1e4001b182c0545bcc84117d218116a8c524de88850e'
+
'b6d548a26f845ef1a39724e3273aa521715272e20a0038144f86d377a26dfec6e3e129404cfda77632cad2f5cd6bab4a33f70a26c8c67b0d0b2abb3678ad2d83'
+
'7b5829caa77c6b5da8c2195ab840f0020f722a94f01a437324afdbe2a4372a594dcca6d63d2fdda5cfad81353ab4e4e0b2c6b67436203266dd44740a5e03b58e'
+
'94701f34fe5df4859c6a4d0459c16062374e8f89f4f51c414e71c9c2db14f61e087721e68dddb3e8d88bf1c097477c1a21e27ba4705fd07d88c60adb41acc1be'
+
'c772a7f7fe5c0715db27a15f8cb1aee7e92677d1fa2d922fae42440cac8c2acc3d3ceba0bb2103fd7907b129618cf50e6a34dd221c8474c9cea9badaeaadf80b'
+

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

2019-02-05 Thread Florian Pritz via arch-commits
Date: Tuesday, February 5, 2019 @ 17:11:02
  Author: bluewind
Revision: 345292

upgpkg: zabbix 4.0.4-1

upstream update

Modified:
  zabbix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 16:47:51 UTC (rev 345291)
+++ PKGBUILD2019-02-05 17:11:02 UTC (rev 345292)
@@ -3,8 +3,8 @@
 
 pkgbase=zabbix
 pkgname=(zabbix-server zabbix-agent zabbix-proxy zabbix-frontend-php)
-pkgver=4.0.3
-pkgrel=2
+pkgver=4.0.4
+pkgrel=1
 arch=(x86_64)
 url='https://www.zabbix.com/'
 license=(GPL)
@@ -14,7 +14,7 @@
 zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles}
 zabbix-proxy{-sqlite,-mysql,-pgsql}.service 
zabbix-proxy.{sysusers,tmpfiles})
 
-sha512sums=('ee8feec85a01c7617d3420529afa59550982c3c51173f8de484a8833099d33cccb84fa4e82f7199bc0ed8af687eb206ae50e4853b824bfbe784f67964cc15e37'
+sha512sums=('cf07c6dc3ea4b3722790d6db9219b81be7cb06cc11925a335b38bc3a7ad3fc395b45f6ba77edaf41eed545796ed2979c7b2f3b11b67fa6f39b76b58320642adb'
 
'8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444'
 
'3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc'
 
'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d'


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

2019-02-05 Thread Bruno Pagani via arch-commits
Date: Tuesday, February 5, 2019 @ 17:05:43
  Author: archange
Revision: 429637

archrelease: copy trunk to community-x86_64

Added:
  cozy-stack/repos/community-x86_64/PKGBUILD
(from rev 429636, cozy-stack/trunk/PKGBUILD)
  cozy-stack/repos/community-x86_64/cozy-stack.service
(from rev 429636, cozy-stack/trunk/cozy-stack.service)
  cozy-stack/repos/community-x86_64/cozy-stack.sysusers
(from rev 429636, cozy-stack/trunk/cozy-stack.sysusers)
  cozy-stack/repos/community-x86_64/cozy-stack.tmpfiles
(from rev 429636, cozy-stack/trunk/cozy-stack.tmpfiles)
  cozy-stack/repos/community-x86_64/cozy.yml
(from rev 429636, cozy-stack/trunk/cozy.yml)
Deleted:
  cozy-stack/repos/community-x86_64/PKGBUILD
  cozy-stack/repos/community-x86_64/cozy-stack.service
  cozy-stack/repos/community-x86_64/cozy-stack.sysusers
  cozy-stack/repos/community-x86_64/cozy-stack.tmpfiles
  cozy-stack/repos/community-x86_64/cozy.yml

-+
 PKGBUILD|  100 +-
 cozy-stack.service  |   66 -
 cozy-stack.sysusers |2 -
 cozy-stack.tmpfiles |6 +--
 cozy.yml|   56 ++--
 5 files changed, 115 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 17:05:28 UTC (rev 429636)
+++ PKGBUILD2019-02-05 17:05:43 UTC (rev 429637)
@@ -1,50 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=cozy-stack
-pkgver=1.1.1
-pkgrel=2
-epoch=1
-pkgdesc="Digital home: brings all your web services in the same private space 
– Stack component"
-arch=('x86_64')
-url="https://cozy.io;
-license=('AGPL3')
-backup=('etc/cozy/cozy.yml')
-depends=('couchdb' 'imagemagick' 'git')
-makedepends=('go-pie')
-#optdepends=('cozy-coclyco: X.509 certificates management for instances'
-optdepends=('nodejs: konnectors without isolation'
-'nsjail: isolated konnectors'
-'smtp-forwarder: to allow sending mail to users')
-source=("https://apt.cozy.io/debian/pool/testing/c/${pkgname}/${pkgname}_${pkgver}.orig.tar.xz;
-"cozy.yml"
-"${pkgname}.service"
-"${pkgname}.sysusers"
-"${pkgname}.tmpfiles")
-sha256sums=('94fd156abf468a68d676f42916436b2357bd661bb90f3cf191ddc26a9760ff22'
-'ecfcdf3e2dfec1bdeae15a843c41c9a77b713fe66a4094e1b95dce9514af31e8'
-'ad9b40170e2b07d5aa5ea6d444ad16c96bb39adb5ff579db5cc39cb4e2ec3f91'
-'a6bea52350e85163c3141509a52903223fa0f6e7390b1b1f9336c326a8fff984'
-'fd333c2fd0de859890204554f52a5c64b953664f6cb262b20bb839aa70ed9ecb')
-
-build() {
-export GOPATH="${srcdir}"/cozy-stack
-cd cozy-stack/src/github.com/cozy/cozy-stack
-go build -v -o "${srcdir}"/bin/cozy-stack \
- -gcflags "all=-trimpath=${GOPATH}" \
- -asmflags "all=-trimpath=${GOPATH}" \
- -ldflags "-X 
github.com/cozy/cozy-stack/pkg/config.Version=${pkgver} \
-   -X 
github.com/cozy/cozy-stack/pkg/config.BuildTime=$(date -u 
+"%Y-%m-%dT%H:%M:%SZ") \
-   -X 
github.com/cozy/cozy-stack/pkg/config.BuildMode=production \
-   -linkmode external -extldflags ${LDFLAGS} -s -w"
-}
-
-package() {
-install -Dm755 bin/cozy-stack -t "${pkgdir}"/usr/bin/
-install -Dm644 cozy.yml -t "${pkgdir}"/etc/cozy/
-install -Dm644 cozy-stack/src/github.com/cozy/cozy-stack/cozy.example.yaml 
-t "${pkgdir}"/usr/share/cozy/
-install -Dm755 
cozy-stack/src/github.com/cozy/cozy-stack/scripts/konnector-node-run.sh -t 
"${pkgdir}"/usr/share/cozy/
-install -Dm755 
cozy-stack/src/github.com/cozy/cozy-stack/scripts/konnector-nsjail-run.sh -t 
"${pkgdir}"/usr/share/cozy/
-install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
-install -Dm644 ${pkgname}.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
-install -Dm644 ${pkgname}.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
-}

Copied: cozy-stack/repos/community-x86_64/PKGBUILD (from rev 429636, 
cozy-stack/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 17:05:43 UTC (rev 429637)
@@ -0,0 +1,50 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=cozy-stack
+pkgver=1.2.0
+pkgrel=1
+epoch=1
+pkgdesc="Digital home: brings all your web services in the same private space 
– Stack component"
+arch=('x86_64')
+url="https://cozy.io;
+license=('AGPL3')
+backup=('etc/cozy/cozy.yml')
+depends=('couchdb' 'imagemagick' 'git')
+makedepends=('go-pie')
+#optdepends=('cozy-coclyco: X.509 certificates management for instances'
+optdepends=('nodejs: konnectors without isolation'
+'nsjail: isolated konnectors'
+'smtp-forwarder: to allow sending mail to users')
+source=("https://apt.cozy.io/debian/pool/testing/c/${pkgname}/${pkgname}_${pkgver}.orig.tar.xz;
+

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

2019-02-05 Thread Bruno Pagani via arch-commits
Date: Tuesday, February 5, 2019 @ 17:05:28
  Author: archange
Revision: 429636

upgpkg: cozy-stack 1:1.2.0-1

Modified:
  cozy-stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 16:56:04 UTC (rev 429635)
+++ PKGBUILD2019-02-05 17:05:28 UTC (rev 429636)
@@ -1,8 +1,8 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=cozy-stack
-pkgver=1.1.1
-pkgrel=2
+pkgver=1.2.0
+pkgrel=1
 epoch=1
 pkgdesc="Digital home: brings all your web services in the same private space 
– Stack component"
 arch=('x86_64')
@@ -20,7 +20,7 @@
 "${pkgname}.service"
 "${pkgname}.sysusers"
 "${pkgname}.tmpfiles")
-sha256sums=('94fd156abf468a68d676f42916436b2357bd661bb90f3cf191ddc26a9760ff22'
+sha256sums=('dadcff186233f6b1fa2f79102531ee5666a6ba65951d3069667126288c0fcac1'
 'ecfcdf3e2dfec1bdeae15a843c41c9a77b713fe66a4094e1b95dce9514af31e8'
 'ad9b40170e2b07d5aa5ea6d444ad16c96bb39adb5ff579db5cc39cb4e2ec3f91'
 'a6bea52350e85163c3141509a52903223fa0f6e7390b1b1f9336c326a8fff984'


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

2019-02-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 5, 2019 @ 16:56:04
  Author: arojas
Revision: 429635

archrelease: copy trunk to community-staging-x86_64

Added:
  eclib/repos/community-staging-x86_64/PKGBUILD
(from rev 429634, eclib/trunk/PKGBUILD)
Deleted:
  eclib/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 16:54:53 UTC (rev 429634)
+++ PKGBUILD2019-02-05 16:56:04 UTC (rev 429635)
@@ -1,26 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=eclib
-pkgver=20190205
-pkgrel=1
-pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
-arch=(x86_64)
-url="https://github.com/JohnCremona/eclib/;
-license=(GPL)
-depends=(flint pari boost-libs)
-makedepends=(boost)
-source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz;)
-sha256sums=('cbbc9ef14ee4a238e28f53cca00ea639f8cb71ccb202e7b455d9a5eab998d1ad')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh
-  LDFLAGS+=' -lpthread' ./configure --prefix=/usr --with-flint=/usr 
--with-boost
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make install DESTDIR="$pkgdir"
-}
-

Copied: eclib/repos/community-staging-x86_64/PKGBUILD (from rev 429634, 
eclib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-05 16:56:04 UTC (rev 429635)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=eclib
+pkgver=20190205.1
+pkgrel=1
+pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
+arch=(x86_64)
+url="https://github.com/JohnCremona/eclib/;
+license=(GPL)
+depends=(flint pari boost-libs)
+makedepends=(boost)
+source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz;)
+sha256sums=('022cf2c303024acbcc2c16cbd8148f69eb6355aceec8744d51ae8c5a73a05192')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --with-flint=/usr --with-boost
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}
+


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

2019-02-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 5, 2019 @ 16:54:53
  Author: arojas
Revision: 429634

Update to 20190205.1

Modified:
  eclib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 16:32:30 UTC (rev 429633)
+++ PKGBUILD2019-02-05 16:54:53 UTC (rev 429634)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=eclib
-pkgver=20190205
+pkgver=20190205.1
 pkgrel=1
 pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
 arch=(x86_64)
@@ -10,12 +10,12 @@
 depends=(flint pari boost-libs)
 makedepends=(boost)
 source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz;)
-sha256sums=('cbbc9ef14ee4a238e28f53cca00ea639f8cb71ccb202e7b455d9a5eab998d1ad')
+sha256sums=('022cf2c303024acbcc2c16cbd8148f69eb6355aceec8744d51ae8c5a73a05192')
 
 build() {
   cd $pkgname-$pkgver
   ./autogen.sh
-  LDFLAGS+=' -lpthread' ./configure --prefix=/usr --with-flint=/usr 
--with-boost
+  ./configure --prefix=/usr --with-flint=/usr --with-boost
   make
 }
 


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

2019-02-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 5, 2019 @ 16:47:51
  Author: arojas
Revision: 345291

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick/repos/extra-x86_64/IM7-GS-policy.patch
(from rev 345290, imagemagick/trunk/IM7-GS-policy.patch)
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 345290, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/arch-fonts.diff
(from rev 345290, imagemagick/trunk/arch-fonts.diff)
Deleted:
  imagemagick/repos/extra-x86_64/IM7-GS-policy.patch
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/arch-fonts.diff

-+
 IM7-GS-policy.patch |   20 +--
 PKGBUILD|  270 +-
 arch-fonts.diff |  214 +++
 3 files changed, 252 insertions(+), 252 deletions(-)

Deleted: IM7-GS-policy.patch
===
--- IM7-GS-policy.patch 2019-02-05 16:47:25 UTC (rev 345290)
+++ IM7-GS-policy.patch 2019-02-05 16:47:51 UTC (rev 345291)
@@ -1,10 +0,0 @@
 ImageMagick-7.0.8-13/config/policy.xml.orig2018-10-22 
15:13:51.713995553 +
-+++ ImageMagick-7.0.8-13/config/policy.xml 2018-10-22 15:14:22.650737457 
+
-@@ -68,6 +68,7 @@
-   
-   
-   
-+  
-   
-   
-   

Copied: imagemagick/repos/extra-x86_64/IM7-GS-policy.patch (from rev 345290, 
imagemagick/trunk/IM7-GS-policy.patch)
===
--- IM7-GS-policy.patch (rev 0)
+++ IM7-GS-policy.patch 2019-02-05 16:47:51 UTC (rev 345291)
@@ -0,0 +1,10 @@
+--- ImageMagick-7.0.8-13/config/policy.xml.orig2018-10-22 
15:13:51.713995553 +
 ImageMagick-7.0.8-13/config/policy.xml 2018-10-22 15:14:22.650737457 
+
+@@ -68,6 +68,7 @@
+   
+   
+   
++  
+   
+   
+   

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 16:47:25 UTC (rev 345290)
+++ PKGBUILD2019-02-05 16:47:51 UTC (rev 345291)
@@ -1,135 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick
-pkgname=(libmagick imagemagick imagemagick-doc)
-pkgver=7.0.8.25
-pkgrel=1
-pkgdesc="An image viewing/manipulation program"
-url="https://www.imagemagick.org/;
-arch=(x86_64)
-license=(custom)
-depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng libxml2)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp
- chrpath ocl-icd glu ghostpcl ghostxps libheif jbigkit)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://www.imagemagick.org/download/releases/$_tarname.tar.xz{,.asc}
-arch-fonts.diff IM7-GS-policy.patch)
-sha256sums=('e69a55a30711958a2309669c37a42ec499b16c29f3651e764c6f393f5f80fb71'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73'
-'f20c09860da65a4259ec9627ceeca7d993949b7460fa199c5ffd874633814cf6')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-shopt -s extglob
-
-prepare() {
-  mkdir -p binpkg/usr/lib/pkgconfig {binpkg,docpkg}/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -p1 -i ../arch-fonts.diff
-
-  # Work around ghostscript security issues 
https://bugs.archlinux.org/task/59778
-  patch -p1 -i ../IM7-GS-policy.patch
-}
-
-build() {
-  cd $_tarname
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---with-gslib \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-djvu \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  sed -e '/validate-formats/d' -i Makefile # these fail due to the security 
patch
-  make check
-)
-
-package_libmagick() {
-  pkgdesc+=" (library)"
-  optdepends=('ghostscript: PS/PDF support'
-  'libheif: HEIF support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'pango: Text rendering')
-  

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

2019-02-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 5, 2019 @ 16:47:25
  Author: arojas
Revision: 345290

Update to 7.0.8.26

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-05 16:36:18 UTC (rev 345289)
+++ PKGBUILD2019-02-05 16:47:25 UTC (rev 345290)
@@ -2,7 +2,7 @@
 
 pkgbase=imagemagick
 pkgname=(libmagick imagemagick imagemagick-doc)
-pkgver=7.0.8.25
+pkgver=7.0.8.26
 pkgrel=1
 pkgdesc="An image viewing/manipulation program"
 url="https://www.imagemagick.org/;
@@ -16,7 +16,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://www.imagemagick.org/download/releases/$_tarname.tar.xz{,.asc}
 arch-fonts.diff IM7-GS-policy.patch)
-sha256sums=('e69a55a30711958a2309669c37a42ec499b16c29f3651e764c6f393f5f80fb71'
+sha256sums=('04c07773c47f401c321297a42f908c00036ec7f9908adbd667db2b182352a272'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73'
 'f20c09860da65a4259ec9627ceeca7d993949b7460fa199c5ffd874633814cf6')


  1   2   >