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

2018-06-15 Thread Gaëtan Bisson via arch-commits
Date: Saturday, June 16, 2018 @ 05:37:41
  Author: bisson
Revision: 327012

archrelease: copy trunk to testing-x86_64

Added:
  pinentry/repos/testing-x86_64/
  pinentry/repos/testing-x86_64/PKGBUILD
(from rev 327011, pinentry/trunk/PKGBUILD)
  pinentry/repos/testing-x86_64/pinentry
(from rev 327011, pinentry/trunk/pinentry)

--+
 PKGBUILD |   46 ++
 pinentry |6 ++
 2 files changed, 52 insertions(+)

Copied: pinentry/repos/testing-x86_64/PKGBUILD (from rev 327011, 
pinentry/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-06-16 05:37:41 UTC (rev 327012)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Maintainer: Gaetan Bisson 
+
+pkgname=pinentry
+pkgver=1.1.0
+pkgrel=4
+pkgdesc='Collection of simple PIN or passphrase entry dialogs which utilize 
the Assuan protocol'
+url='http://gnupg.org/related_software/pinentry/'
+arch=('x86_64')
+license=('GPL')
+depends=('ncurses' 'libcap' 'libassuan' 'libsecret')
+makedepends=('gtk2' 'qt5-base' 'gcr')
+optdepends=('gtk2: gtk2 backend'
+'qt5-base: qt backend'
+'gcr: gnome3 backend')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6')
+source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+'pinentry')
+sha256sums=('68076686fa724a290ea49cdf0d1c0c1500907d1b759a3bcbfbec0293e8f56570'
+'SKIP'
+'4f51d67c8cf92f2bb535e07d2ba7dc8972535dae077c678102a34fb87f3b3a9c')
+
+backup=('usr/bin/pinentry')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --enable-pinentry-tty \
+   --enable-pinentry-curses \
+   --enable-fallback-curses \
+   --enable-pinentry-emacs \
+   --enable-pinentry-gtk2 \
+   --enable-pinentry-gnome3 \
+   --enable-pinentry-qt \
+   --enable-libsecret \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install ../pinentry "${pkgdir}/usr/bin/pinentry"
+}

Copied: pinentry/repos/testing-x86_64/pinentry (from rev 327011, 
pinentry/trunk/pinentry)
===
--- testing-x86_64/pinentry (rev 0)
+++ testing-x86_64/pinentry 2018-06-16 05:37:41 UTC (rev 327012)
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+test -e /usr/lib/libgtk-x11-2.0.so.0 &&
+exec /usr/bin/pinentry-gtk-2  "$@"
+
+exec /usr/bin/pinentry-curses "$@"


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

2018-06-15 Thread Gaëtan Bisson via arch-commits
Date: Saturday, June 16, 2018 @ 05:37:18
  Author: bisson
Revision: 327011

implement FS#58979

Modified:
  pinentry/trunk/PKGBUILD
  pinentry/trunk/pinentry

--+
 PKGBUILD |   10 ++
 pinentry |5 -
 2 files changed, 10 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 21:29:58 UTC (rev 327010)
+++ PKGBUILD2018-06-16 05:37:18 UTC (rev 327011)
@@ -4,7 +4,7 @@
 
 pkgname=pinentry
 pkgver=1.1.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Collection of simple PIN or passphrase entry dialogs which utilize 
the Assuan protocol'
 url='http://gnupg.org/related_software/pinentry/'
 arch=('x86_64')
@@ -14,13 +14,15 @@
 optdepends=('gtk2: gtk2 backend'
 'qt5-base: qt backend'
 'gcr: gnome3 backend')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6')
 
source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
 'pinentry')
 sha256sums=('68076686fa724a290ea49cdf0d1c0c1500907d1b759a3bcbfbec0293e8f56570'
 'SKIP'
-'95f298d20fce379ca6ac696b269ae4d276372e07c3e90e2d473dd8d14d5b682d')
-validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6')
+'4f51d67c8cf92f2bb535e07d2ba7dc8972535dae077c678102a34fb87f3b3a9c')
 
+backup=('usr/bin/pinentry')
+
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure \
@@ -40,5 +42,5 @@
 package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
-   install -Dt "${pkgdir}/usr/bin" ../pinentry
+   install ../pinentry "${pkgdir}/usr/bin/pinentry"
 }

Modified: pinentry
===
--- pinentry2018-06-15 21:29:58 UTC (rev 327010)
+++ pinentry2018-06-16 05:37:18 UTC (rev 327011)
@@ -1,3 +1,6 @@
 #!/bin/sh
-test -e /usr/lib/libgtk-x11-2.0.so.0 && exec /usr/bin/pinentry-gtk-2  "$@"
+
+test -e /usr/lib/libgtk-x11-2.0.so.0 &&
+exec /usr/bin/pinentry-gtk-2  "$@"
+
 exec /usr/bin/pinentry-curses "$@"


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 16, 2018 @ 03:18:22
  Author: felixonmars
Revision: 343347

archrelease: copy trunk to community-staging-x86_64

Added:
  cryptol/repos/community-staging-x86_64/
  cryptol/repos/community-staging-x86_64/PKGBUILD
(from rev 343346, cryptol/trunk/PKGBUILD)

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

Copied: cryptol/repos/community-staging-x86_64/PKGBUILD (from rev 343346, 
cryptol/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-06-16 03:18:22 UTC (rev 343347)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=cryptol
+pkgver=2.5.0.20180515
+_commit=9fccc0086700b0e409bd9b0989e52d62863c714e
+pkgrel=22
+pkgdesc="The Language of Cryptography"
+url="http://www.cryptol.net;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'z3' 'haskell-base-compat' 'haskell-async' 
'haskell-gitrev' 'haskell-graphscc'
+ 'haskell-heredoc' 'haskell-monad-control' 'haskell-monadlib' 
'haskell-random' 'haskell-sbv'
+ 'haskell-simple-smt' 'haskell-strict' 'haskell-tf-random' 
'haskell-transformers-base'
+ 'haskell-ansi-terminal' 'haskell-blaze-html')
+makedepends=('ghc' 'alex' 'happy')
+source=("$pkgname-$_commit.tar.gz::https://github.com/GaloisInc/cryptol/archive/$_commit.tar.gz;)
+sha512sums=('d9e98541b978acb8dafc5daf35a3fc75a523914e713b4cdc2e8e01a424b39556c625e2956dd495cabf67cf99cac0b4021563f0b62b2f355b1af0645dc8d9de1b')
+
+prepare() {
+mv $pkgname-$_commit $pkgname-$pkgver
+
+cd $pkgname-$pkgver
+sed -i 's/<.*0.10/<1/' $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-static -f-relocatable
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 16, 2018 @ 03:18:00
  Author: felixonmars
Revision: 343346

upgpkg: cryptol 2.5.0.20180515-22

rebuild with sbv 7.9

Modified:
  cryptol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-16 03:15:32 UTC (rev 343345)
+++ PKGBUILD2018-06-16 03:18:00 UTC (rev 343346)
@@ -4,7 +4,7 @@
 pkgname=cryptol
 pkgver=2.5.0.20180515
 _commit=9fccc0086700b0e409bd9b0989e52d62863c714e
-pkgrel=21
+pkgrel=22
 pkgdesc="The Language of Cryptography"
 url="http://www.cryptol.net;
 license=("custom:BSD3")


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 16, 2018 @ 03:15:32
  Author: felixonmars
Revision: 343345

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-sbv/repos/community-staging-x86_64/PKGBUILD (from rev 343344, 
haskell-sbv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-06-16 03:15:32 UTC (rev 343345)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sbv
+pkgname=haskell-sbv
+pkgver=7.9
+pkgrel=1
+pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
+url="http://leventerkok.github.com/sbv;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-quickcheck' 'haskell-cracknum' 
'haskell-async'
+ 'haskell-random' 'haskell-syb' 'haskell-data-binary-ieee754'
+ 'haskell-generic-deriving')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'hlint' 'haskell-tasty' 
'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('970f326cc44d8cc219915f37d29c3e792a5bc2d153d408917013147ff7e2097b317b5cad0e79a595e272d3dcbc4a26507ba5fdf5b01582470afc303d18076d0c')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 16, 2018 @ 03:15:12
  Author: felixonmars
Revision: 343344

upgpkg: haskell-sbv 7.9-1

rebuild with sbv 7.9

Modified:
  haskell-sbv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-16 03:11:33 UTC (rev 343343)
+++ PKGBUILD2018-06-16 03:15:12 UTC (rev 343344)
@@ -4,8 +4,8 @@
 
 _hkgname=sbv
 pkgname=haskell-sbv
-pkgver=7.8
-pkgrel=15
+pkgver=7.9
+pkgrel=1
 pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
 url="http://leventerkok.github.com/sbv;
 license=("custom:BSD3")
@@ -16,7 +16,7 @@
 makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'hlint' 'haskell-tasty' 
'haskell-tasty-golden'
  'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('ec7e7d715d6a82b0201c91a83deae238b6c366316a3734d6916327fc9849de0b1263541ff57e0689a43f4ca0f7c1e073a3c99b18adc30288067594e6458c5f61')
+sha512sums=('970f326cc44d8cc219915f37d29c3e792a5bc2d153d408917013147ff7e2097b317b5cad0e79a595e272d3dcbc4a26507ba5fdf5b01582470afc303d18076d0c')
 
 build() {
 cd $_hkgname-$pkgver


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 16, 2018 @ 03:11:12
  Author: felixonmars
Revision: 343342

upgpkg: python-pytest-django 3.3.0-1

Modified:
  python-pytest-django/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-16 03:09:46 UTC (rev 343341)
+++ PKGBUILD2018-06-16 03:11:12 UTC (rev 343342)
@@ -3,7 +3,7 @@
 
 pkgbase=python-pytest-django
 pkgname=('python-pytest-django' 'python2-pytest-django')
-pkgver=3.2.1
+pkgver=3.3.0
 pkgrel=1
 pkgdesc="A Django plugin for py.test"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-pytest' 'python2-pytest' 'python-setuptools-scm' 
'python2-setuptools-scm')
 checkdepends=('python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-django/archive/$pkgver.tar.gz;)
-sha512sums=('231a885238b3e958c52c0f1443564e2db17fc17e574783ec2e5ae15003a633bebb8962a4b1122c2f9d8e296cd2ff8d823d0322a440b62b7edbb93b084b6ecfe9')
+sha512sums=('6cfef1de87d646358b17b0245196338933a3da92b78b1a69c66c461eb3995d06dc5bc4fe65252688c8a92e20af6946cf1128f83709ea7cb43a402f88be746969')
 
 prepare() {
   sed -i 's/setuptools_scm==1.11.1/setuptools_scm/' 
pytest-django-$pkgver/setup.py


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 16, 2018 @ 03:11:33
  Author: felixonmars
Revision: 343343

archrelease: copy trunk to community-any

Added:
  python-pytest-django/repos/community-any/PKGBUILD
(from rev 343342, python-pytest-django/trunk/PKGBUILD)
Deleted:
  python-pytest-django/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-16 03:11:12 UTC (rev 343342)
+++ PKGBUILD2018-06-16 03:11:33 UTC (rev 343343)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-pytest-django
-pkgname=('python-pytest-django' 'python2-pytest-django')
-pkgver=3.2.1
-pkgrel=1
-pkgdesc="A Django plugin for py.test"
-arch=('any')
-license=('BSD')
-url="https://github.com/pytest-dev/pytest-django;
-makedepends=('python-pytest' 'python2-pytest' 'python-setuptools-scm' 
'python2-setuptools-scm')
-checkdepends=('python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-django/archive/$pkgver.tar.gz;)
-sha512sums=('231a885238b3e958c52c0f1443564e2db17fc17e574783ec2e5ae15003a633bebb8962a4b1122c2f9d8e296cd2ff8d823d0322a440b62b7edbb93b084b6ecfe9')
-
-prepare() {
-  sed -i 's/setuptools_scm==1.11.1/setuptools_scm/' 
pytest-django-$pkgver/setup.py
-
-  cp -a pytest-django-$pkgver{,-py2}
-
-  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-}
-
-build() {
-  cd "$srcdir"/pytest-django-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pytest-django-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir"/pytest-django-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH:$PWD" \
-  DJANGO_SETTINGS_MODULE=pytest_django_test.settings_sqlite \
-py.test tests
-
-  cd "$srcdir"/pytest-django-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH:$PWD" \
-  DJANGO_SETTINGS_MODULE=pytest_django_test.settings_sqlite \
-py.test2 tests
-}
-
-package_python-pytest-django() {
-  depends=('python-pytest')
-
-  cd pytest-django-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-pytest-django() {
-  depends=('python2-pytest')
-
-  cd pytest-django-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-pytest-django/repos/community-any/PKGBUILD (from rev 343342, 
python-pytest-django/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-16 03:11:33 UTC (rev 343343)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-django
+pkgname=('python-pytest-django' 'python2-pytest-django')
+pkgver=3.3.0
+pkgrel=1
+pkgdesc="A Django plugin for py.test"
+arch=('any')
+license=('BSD')
+url="https://github.com/pytest-dev/pytest-django;
+makedepends=('python-pytest' 'python2-pytest' 'python-setuptools-scm' 
'python2-setuptools-scm')
+checkdepends=('python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-django/archive/$pkgver.tar.gz;)
+sha512sums=('6cfef1de87d646358b17b0245196338933a3da92b78b1a69c66c461eb3995d06dc5bc4fe65252688c8a92e20af6946cf1128f83709ea7cb43a402f88be746969')
+
+prepare() {
+  sed -i 's/setuptools_scm==1.11.1/setuptools_scm/' 
pytest-django-$pkgver/setup.py
+
+  cp -a pytest-django-$pkgver{,-py2}
+
+  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/pytest-django-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pytest-django-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pytest-django-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH:$PWD" \
+  DJANGO_SETTINGS_MODULE=pytest_django_test.settings_sqlite \
+py.test tests
+
+  cd "$srcdir"/pytest-django-$pkgver-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  
PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH:$PWD" \
+  DJANGO_SETTINGS_MODULE=pytest_django_test.settings_sqlite \
+py.test2 tests
+}
+
+package_python-pytest-django() {
+  depends=('python-pytest')
+
+  cd pytest-django-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+

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

2018-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 16, 2018 @ 03:09:46
  Author: felixonmars
Revision: 343341

archrelease: copy trunk to community-x86_64

Added:
  trojan/repos/community-x86_64/PKGBUILD
(from rev 343340, trojan/trunk/PKGBUILD)
Deleted:
  trojan/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-16 03:09:23 UTC (rev 343340)
+++ PKGBUILD2018-06-16 03:09:46 UTC (rev 343341)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: GreaterFire 
-
-pkgname=trojan
-pkgver=1.4.1
-pkgrel=1
-pkgdesc="An unidentifiable mechanism that helps you bypass GFW"
-arch=('x86_64')
-url="https://github.com/trojan-gfw/trojan;
-license=('GPL3')
-depends=('boost-libs' 'ca-certificates')
-makedepends=('cmake' 'boost')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/trojan-gfw/$pkgname/archive/v$pkgver.tar.gz;)
-backup=('etc/trojan.json')
-sha512sums=('21f65f4d4cafe7828c68946788805289c8f8e17a4b1747863ea73fd4df680636b92c79644e4d40e4cefc841b7a134d60a83b2ff8f1db47e7e89695242f7edb09')
-
-build() {
-  cd $pkgname-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DSYSTEMD_SERVICE=ON -DCONFIG_PREFIX= 
.
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: trojan/repos/community-x86_64/PKGBUILD (from rev 343340, 
trojan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-16 03:09:46 UTC (rev 343341)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: GreaterFire 
+
+pkgname=trojan
+pkgver=1.4.2
+pkgrel=1
+pkgdesc="An unidentifiable mechanism that helps you bypass GFW"
+arch=('x86_64')
+url="https://github.com/trojan-gfw/trojan;
+license=('GPL3')
+depends=('boost-libs' 'ca-certificates')
+makedepends=('cmake' 'boost')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/trojan-gfw/$pkgname/archive/v$pkgver.tar.gz;)
+backup=('etc/trojan.json')
+sha512sums=('d96b05dc805eaefe19ea4c0eee2e2f5dc9663dce58232708fa30635b30677964b0991f48e5962a6f55d522a087bc7ea94db2e3637f38f7fab273b9822eb43bb9')
+
+build() {
+  cd $pkgname-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DSYSTEMD_SERVICE=ON .
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Saturday, June 16, 2018 @ 03:09:23
  Author: felixonmars
Revision: 343340

upgpkg: trojan 1.4.2-1

Modified:
  trojan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 20:54:36 UTC (rev 343339)
+++ PKGBUILD2018-06-16 03:09:23 UTC (rev 343340)
@@ -3,7 +3,7 @@
 # Contributor: GreaterFire 
 
 pkgname=trojan
-pkgver=1.4.1
+pkgver=1.4.2
 pkgrel=1
 pkgdesc="An unidentifiable mechanism that helps you bypass GFW"
 arch=('x86_64')
@@ -13,11 +13,11 @@
 makedepends=('cmake' 'boost')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/trojan-gfw/$pkgname/archive/v$pkgver.tar.gz;)
 backup=('etc/trojan.json')
-sha512sums=('21f65f4d4cafe7828c68946788805289c8f8e17a4b1747863ea73fd4df680636b92c79644e4d40e4cefc841b7a134d60a83b2ff8f1db47e7e89695242f7edb09')
+sha512sums=('d96b05dc805eaefe19ea4c0eee2e2f5dc9663dce58232708fa30635b30677964b0991f48e5962a6f55d522a087bc7ea94db2e3637f38f7fab273b9822eb43bb9')
 
 build() {
   cd $pkgname-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DSYSTEMD_SERVICE=ON -DCONFIG_PREFIX= 
.
+  cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DSYSTEMD_SERVICE=ON .
   make
 }
 


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

2018-06-15 Thread Anatol Pomozov via arch-commits
Date: Friday, June 15, 2018 @ 21:29:58
  Author: anatolik
Revision: 327010

archrelease: copy trunk to testing-x86_64

Added:
  ethtool/repos/testing-x86_64/
  ethtool/repos/testing-x86_64/PKGBUILD
(from rev 327009, ethtool/trunk/PKGBUILD)

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

Copied: ethtool/repos/testing-x86_64/PKGBUILD (from rev 327009, 
ethtool/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-06-15 21:29:58 UTC (rev 327010)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Paul Mattal 
+# Contributor: Martin Kemp 
+
+pkgname=ethtool
+pkgver=4.17
+pkgrel=1
+epoch=1
+pkgdesc="Utility for controlling network drivers and hardware"
+arch=('x86_64')
+url="https://www.kernel.org/pub/software/network/ethtool/;
+license=('GPL')
+depends=('glibc')
+source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.{xz,sign})
+sha1sums=('4e0d0d6ad1db01b04334522cd368bbcc7849cf75'
+  'SKIP')
+validpgpkeys=(CE4A4D080F0D304F23B9EBDD972D5BF4DC613806) # John W. Linville 

+
+build() {
+cd $pkgname-$pkgver
+./configure --prefix=/usr --mandir=/usr/share/man --sbindir=/usr/bin
+make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+cd $pkgname-$pkgver
+make DESTDIR="$pkgdir" install
+}


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

2018-06-15 Thread Anatol Pomozov via arch-commits
Date: Friday, June 15, 2018 @ 21:29:32
  Author: anatolik
Revision: 327009

upgpkg: ethtool 1:4.17-1

Modified:
  ethtool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 21:27:10 UTC (rev 327008)
+++ PKGBUILD2018-06-15 21:29:32 UTC (rev 327009)
@@ -4,7 +4,7 @@
 # Contributor: Martin Kemp 
 
 pkgname=ethtool
-pkgver=4.16
+pkgver=4.17
 pkgrel=1
 epoch=1
 pkgdesc="Utility for controlling network drivers and hardware"
@@ -13,7 +13,7 @@
 license=('GPL')
 depends=('glibc')
 
source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.{xz,sign})
-sha1sums=('9ab8a1b10bfd719220a9bc7903b850ff6154fd8f'
+sha1sums=('4e0d0d6ad1db01b04334522cd368bbcc7849cf75'
   'SKIP')
 validpgpkeys=(CE4A4D080F0D304F23B9EBDD972D5BF4DC613806) # John W. Linville 

 


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

2018-06-15 Thread Antonio Rojas via arch-commits
Date: Friday, June 15, 2018 @ 21:27:10
  Author: arojas
Revision: 327008

archrelease: copy trunk to extra-x86_64

Added:
  pyside2/repos/extra-x86_64/PKGBUILD
(from rev 327007, pyside2/trunk/PKGBUILD)
Deleted:
  pyside2/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 21:26:47 UTC (rev 327007)
+++ PKGBUILD2018-06-15 21:27:10 UTC (rev 327008)
@@ -1,78 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgbase=pyside2
-pkgname=(python-pyside2 python2-pyside2)
-_qtver=5.11.0
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=(x86_64)
-url='http://qt-project.org/'
-license=(GPL3 LGPL3 FDL custom)
-pkgdesc='Enables the use of Qt5 APIs in Python applications'
-makedepends=(python-setuptools python2-setuptools clang llvm cmake libxslt
- qt5-xmlpatterns qt5-multimedia qt5-tools qt5-sensors qt5-charts 
qt5-webengine qt5-datavis3d
- qt5-websockets qt5-speech qt5-3d qt5-svg qt5-script qt5-scxml 
qt5-x11extras)
-groups=(qt qt5)
-_pkgfqn=pyside-setup-everywhere-src-${_qtver}
-source=("http://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz;)
-sha256sums=('fbc412c4544bca308291a08a5173a949ca530d801f00b8337902a5067e490922')
-
-prepare() {
-  cp -r ${_pkgfqn} ${_pkgfqn}-py2
-}
-
-build() {
-  cd ${_pkgfqn}
-  python setup.py build
-
-  cd ../${_pkgfqn}-py2
-  python2 setup.py build
-}
-
-package_python-pyside2() {
-  depends=(python qt5-base)
-  optdepends=('clang: for shiboken'
-  'qt5-svg: QtSvg bindings'
-  'qt5-script: QtScript bindings'
-  'qt5-speech: QtTextToSpeech bindings'
-  'qt5-websockets: QtWebSockets bindings'
-  'qt5-webengine: QtWebEngine bindings'
-  'qt5-datavis3d: QtDataVisualization bindings'
-  'qt5-scxml: QtScxml bindings'
-  'qt5-sensors: QtSensors bindings'
-  'qt5-3d: Qt3D bindings'
-  'qt5-x11extras: QtX11Extras bindings'
-  'qt5-charts: QtCharts bindings'
-  'qt5-tools: QtHelp bindings')
-  cd ${_pkgfqn}
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}
-
-package_python2-pyside2() {
-  depends=(python2 qt5-base)
-  optdepends=('clang: for shiboken'
-  'qt5-svg: QtSvg bindings'
-  'qt5-script: QtScript bindings'
-  'qt5-speech: QtTextToSpeech bindings'
-  'qt5-websockets: QtWebSockets bindings'
-  'qt5-webengine: QtWebEngine bindings'
-  'qt5-datavis3d: QtDataVisualization bindings'
-  'qt5-scxml: QtScxml bindings'
-  'qt5-sensors: QtSensors bindings'
-  'qt5-3d: Qt3D bindings'
-  'qt5-x11extras: QtX11Extras bindings'
-  'qt5-charts: QtCharts bindings'
-  'qt5-tools: QtHelp bindings')
-  cd ${_pkgfqn}-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-
-  # Fix conflict with python-pyside2
-  rm -r "$pkgdir"/usr/bin
-}

Copied: pyside2/repos/extra-x86_64/PKGBUILD (from rev 327007, 
pyside2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 21:27:10 UTC (rev 327008)
@@ -0,0 +1,88 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgbase=pyside2
+pkgname=(pyside2 python-pyside2 python2-pyside2)
+_qtver=5.11.0
+pkgver=${_qtver/-/}
+pkgrel=2
+arch=(x86_64)
+url='http://qt-project.org/'
+license=(LGPL)
+pkgdesc='Enables the use of Qt5 APIs in Python applications'
+makedepends=(shiboken2 python-shiboken2 python2-shiboken2 cmake
+ qt5-multimedia qt5-tools qt5-sensors qt5-charts qt5-webengine 
qt5-datavis3d
+ qt5-websockets qt5-speech qt5-3d qt5-svg qt5-script qt5-scxml 
qt5-x11extras)
+groups=(qt qt5)
+_pkgfqn=pyside-setup-everywhere-src-${_qtver}
+source=("http://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz;)
+sha256sums=('fbc412c4544bca308291a08a5173a949ca530d801f00b8337902a5067e490922')
+
+prepare() {
+  mkdir -p build{,2}
+}
+
+build() {
+  cd build
+  cmake ../${_pkgfqn}/sources/pyside2 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF \
+-DUSE_PYTHON_VERSION=3
+  make
+
+  cd ../build2
+  cmake ../${_pkgfqn}/sources/pyside2 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF \
+-DUSE_PYTHON_VERSION=2
+  make
+}
+
+package_pyside2() {
+  depends=()
+
+  cd build
+  make DESTDIR="$pkgdir" install
+# 

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

2018-06-15 Thread Antonio Rojas via arch-commits
Date: Friday, June 15, 2018 @ 21:26:47
  Author: arojas
Revision: 327007

Build using cmake so that files are properly installed in the filesystem

Modified:
  pyside2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 20:51:19 UTC (rev 327006)
+++ PKGBUILD2018-06-15 21:26:47 UTC (rev 327007)
@@ -2,16 +2,16 @@
 # Maintainer: Felix Yan 
 
 pkgbase=pyside2
-pkgname=(python-pyside2 python2-pyside2)
+pkgname=(pyside2 python-pyside2 python2-pyside2)
 _qtver=5.11.0
 pkgver=${_qtver/-/}
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url='http://qt-project.org/'
-license=(GPL3 LGPL3 FDL custom)
+license=(LGPL)
 pkgdesc='Enables the use of Qt5 APIs in Python applications'
-makedepends=(python-setuptools python2-setuptools clang llvm cmake libxslt
- qt5-xmlpatterns qt5-multimedia qt5-tools qt5-sensors qt5-charts 
qt5-webengine qt5-datavis3d
+makedepends=(shiboken2 python-shiboken2 python2-shiboken2 cmake
+ qt5-multimedia qt5-tools qt5-sensors qt5-charts qt5-webengine 
qt5-datavis3d
  qt5-websockets qt5-speech qt5-3d qt5-svg qt5-script qt5-scxml 
qt5-x11extras)
 groups=(qt qt5)
 _pkgfqn=pyside-setup-everywhere-src-${_qtver}
@@ -19,21 +19,37 @@
 sha256sums=('fbc412c4544bca308291a08a5173a949ca530d801f00b8337902a5067e490922')
 
 prepare() {
-  cp -r ${_pkgfqn} ${_pkgfqn}-py2
+  mkdir -p build{,2}
 }
 
 build() {
-  cd ${_pkgfqn}
-  python setup.py build
+  cd build
+  cmake ../${_pkgfqn}/sources/pyside2 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF \
+-DUSE_PYTHON_VERSION=3
+  make
 
-  cd ../${_pkgfqn}-py2
-  python2 setup.py build
+  cd ../build2
+  cmake ../${_pkgfqn}/sources/pyside2 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF \
+-DUSE_PYTHON_VERSION=2
+  make
 }
 
+package_pyside2() {
+  depends=()
+
+  cd build
+  make DESTDIR="$pkgdir" install
+# Provided in python-pyside2
+  rm -r "$pkgdir"/usr/lib/{python*,lib*,cmake/*/*python*}
+}
+
 package_python-pyside2() {
-  depends=(python qt5-base)
-  optdepends=('clang: for shiboken'
-  'qt5-svg: QtSvg bindings'
+  depends=(python-shiboken2 qt5-base)
+  optdepends=('qt5-svg: QtSvg bindings'
   'qt5-script: QtScript bindings'
   'qt5-speech: QtTextToSpeech bindings'
   'qt5-websockets: QtWebSockets bindings'
@@ -45,17 +61,15 @@
   'qt5-x11extras: QtX11Extras bindings'
   'qt5-charts: QtCharts bindings'
   'qt5-tools: QtHelp bindings')
-  cd ${_pkgfqn}
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+  cd build
+  make DESTDIR="$pkgdir" install
+# Provided in pyside2
+  rm -r 
"$pkgdir"/usr/{include,share,lib/{pkgconfig,cmake/*/PySide2Config{.cmake,Version.cmake}}}
 }
 
 package_python2-pyside2() {
-  depends=(python2 qt5-base)
-  optdepends=('clang: for shiboken'
-  'qt5-svg: QtSvg bindings'
+  depends=(python2-shiboken2 qt5-base)
+  optdepends=('qt5-svg: QtSvg bindings'
   'qt5-script: QtScript bindings'
   'qt5-speech: QtTextToSpeech bindings'
   'qt5-websockets: QtWebSockets bindings'
@@ -67,12 +81,8 @@
   'qt5-x11extras: QtX11Extras bindings'
   'qt5-charts: QtCharts bindings'
   'qt5-tools: QtHelp bindings')
-  cd ${_pkgfqn}-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-
-  # Fix conflict with python-pyside2
-  rm -r "$pkgdir"/usr/bin
+  cd build2
+  make DESTDIR="$pkgdir" install
+# Provided in pyside2
+  rm -r 
"$pkgdir"/usr/{include,share,lib/{pkgconfig,cmake/*/PySide2Config{.cmake,Version.cmake}}}
 }


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

2018-06-15 Thread Maxime Gauduin via arch-commits
Date: Friday, June 15, 2018 @ 20:54:36
  Author: alucryd
Revision: 343339

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 20:54:29 UTC (rev 343338)
+++ PKGBUILD2018-06-15 20:54:36 UTC (rev 343339)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Steven Allen 
-# Contributor: Limao Luo 
-# Contributor: Wieland Hoffmann 
-# Contributor: Amr Hassan 
-
-pkgbase=python-pylast
-pkgname=('python-pylast' 'python2-pylast')
-pkgver=2.2.0
-pkgrel=1
-pkgdesc='A Python interface to Last.fm and Libre.fm'
-arch=('any')
-url='https://github.com/pylast/pylast'
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("python-pylast-${pkgver}.tar.gz::https://github.com/pylast/pylast/archive/${pkgver}.tar.gz;)
-sha256sums=('b0d26b28e120c53bcebf55b52dc419c5fecbaeeb57fa67b67c3693343912bc04')
-
-prepare() {
-  cp -r {,python-}pylast-${pkgver}
-  mv {,python2-}pylast-${pkgver}
-}
-
-build() {
-  for py in python{,2}; do
-pushd ${py}-pylast-${pkgver}
-${py} setup.py build
-popd
-  done
-}
-
-package_python-pylast() {
-  depends=('python-six')
-
-  cd python-pylast-${pkgver}
-
-  python setup.py install --root="${pkgdir}" --optimize='1' --skip-build
-}
-
-package_python2-pylast() {
-  depends=('python2-six')
-
-  cd python2-pylast-${pkgver}
-
-  python2 setup.py install --root="${pkgdir}" --optimize='1' --skip-build
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-pylast/repos/community-any/PKGBUILD (from rev 343338, 
python-pylast/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 20:54:36 UTC (rev 343339)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Steven Allen 
+# Contributor: Limao Luo 
+# Contributor: Wieland Hoffmann 
+# Contributor: Amr Hassan 
+
+pkgbase=python-pylast
+pkgname=('python-pylast' 'python2-pylast')
+pkgver=2.3.0
+pkgrel=1
+pkgdesc='A Python interface to Last.fm and Libre.fm'
+arch=('any')
+url='https://github.com/pylast/pylast'
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("python-pylast-${pkgver}.tar.gz::https://github.com/pylast/pylast/archive/${pkgver}.tar.gz;)
+sha256sums=('d82f57c7d1ecccfe6ab8137cae7bee7bb591b4d9f829704eea2a11271e200a94')
+
+prepare() {
+  cp -r {,python-}pylast-${pkgver}
+  mv {,python2-}pylast-${pkgver}
+}
+
+build() {
+  for py in python{,2}; do
+pushd ${py}-pylast-${pkgver}
+${py} setup.py build
+popd
+  done
+}
+
+package_python-pylast() {
+  depends=('python-six')
+
+  cd python-pylast-${pkgver}
+
+  python setup.py install --root="${pkgdir}" --optimize='1' --skip-build
+}
+
+package_python2-pylast() {
+  depends=('python2-six')
+
+  cd python2-pylast-${pkgver}
+
+  python2 setup.py install --root="${pkgdir}" --optimize='1' --skip-build
+}
+
+# vim: ts=2 sw=2 et:


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

2018-06-15 Thread Maxime Gauduin via arch-commits
Date: Friday, June 15, 2018 @ 20:54:29
  Author: alucryd
Revision: 343338

upgpkg: python-pylast 2.3.0-1

Modified:
  python-pylast/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 19:44:12 UTC (rev 343337)
+++ PKGBUILD2018-06-15 20:54:29 UTC (rev 343338)
@@ -7,7 +7,7 @@
 
 pkgbase=python-pylast
 pkgname=('python-pylast' 'python2-pylast')
-pkgver=2.2.0
+pkgver=2.3.0
 pkgrel=1
 pkgdesc='A Python interface to Last.fm and Libre.fm'
 arch=('any')
@@ -15,7 +15,7 @@
 license=('Apache')
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=("python-pylast-${pkgver}.tar.gz::https://github.com/pylast/pylast/archive/${pkgver}.tar.gz;)
-sha256sums=('b0d26b28e120c53bcebf55b52dc419c5fecbaeeb57fa67b67c3693343912bc04')
+sha256sums=('d82f57c7d1ecccfe6ab8137cae7bee7bb591b4d9f829704eea2a11271e200a94')
 
 prepare() {
   cp -r {,python-}pylast-${pkgver}


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

2018-06-15 Thread Maxime Gauduin via arch-commits
Date: Friday, June 15, 2018 @ 20:51:08
  Author: alucryd
Revision: 327005

upgpkg: mkvtoolnix 24.0.0-1

Modified:
  mkvtoolnix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 18:22:28 UTC (rev 327004)
+++ PKGBUILD2018-06-15 20:51:08 UTC (rev 327005)
@@ -5,8 +5,8 @@
 
 pkgbase=mkvtoolnix
 pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
-pkgver=23.0.0
-pkgrel=2
+pkgver=24.0.0
+pkgrel=1
 pkgdesc='Set of tools to create, edit and inspect Matroska files'
 arch=('x86_64')
 url='https://www.bunkus.org/videotools/mkvtoolnix/'
@@ -15,7 +15,7 @@
  'libmatroska' 'libogg' 'libvorbis' 'qt5-multimedia' 'ruby-rake'
  'zlib')
 
source=("http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-${pkgver}.tar.xz;)
-sha256sums=('1da0b0cca24f6d45ef614e864bbec0043af0b53062f86a524fe799cc355c1d68')
+sha256sums=('7a57caa192150f428fbdf18abfcb8061ce9284c95d3615b88315e66f32321c08')
 
 build() {
   cd mkvtoolnix-${pkgver}


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

2018-06-15 Thread Maxime Gauduin via arch-commits
Date: Friday, June 15, 2018 @ 20:51:19
  Author: alucryd
Revision: 327006

archrelease: copy trunk to extra-x86_64

Added:
  mkvtoolnix/repos/extra-x86_64/PKGBUILD
(from rev 327005, mkvtoolnix/trunk/PKGBUILD)
Deleted:
  mkvtoolnix/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 20:51:08 UTC (rev 327005)
+++ PKGBUILD2018-06-15 20:51:19 UTC (rev 327006)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Maintainer: Maxime Gauduin 
-# Contributor: xduugu 
-
-pkgbase=mkvtoolnix
-pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
-pkgver=23.0.0
-pkgrel=2
-pkgdesc='Set of tools to create, edit and inspect Matroska files'
-arch=('x86_64')
-url='https://www.bunkus.org/videotools/mkvtoolnix/'
-license=('GPL')
-makedepends=('boost' 'boost-libs' 'cmark' 'docbook-xsl' 'file' 'flac' 'libebml'
- 'libmatroska' 'libogg' 'libvorbis' 'qt5-multimedia' 'ruby-rake'
- 'zlib')
-source=("http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-${pkgver}.tar.xz;)
-sha256sums=('1da0b0cca24f6d45ef614e864bbec0043af0b53062f86a524fe799cc355c1d68')
-
-build() {
-  cd mkvtoolnix-${pkgver}
-
-  ./configure \
---prefix='/usr' \
---disable-qt
-  rake apps:mkvinfo $MAKEFLAGS
-  mv src/mkvinfo{,-cli}
-
-  ./configure \
---prefix='/usr' \
---disable-update-check
-  rake $MAKEFLAGS
-}
-
-package_mkvtoolnix-cli() {
-  depends=('boost-libs' 'file' 'flac' 'gcc-libs' 'glibc' 'libogg' 'zlib'
-   'libebml.so' 'libmatroska.so' 'libvorbis.so')
-
-  cd mkvtoolnix-${pkgver}
-
-  rake DESTDIR="${pkgdir}" install
-  install -m 755 src/mkvinfo-cli "${pkgdir}"/usr/bin/mkvinfo
-  rm -rf "${pkgdir}"/usr/share/{applications,icons,mime,mkvtoolnix}
-  find "${pkgdir}" -name mkvtoolnix-gui* -delete
-}
-
-package_mkvtoolnix-gui() {
-  depends=('cmark' 'hicolor-icon-theme' 'mkvtoolnix-cli' 'qt5-base'
-   'qt5-multimedia')
-
-  cd mkvtoolnix-${pkgver}
-
-  rake DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/share/locale
-  for t in mkv{extract,info,merge,propedit}; do
-find "${pkgdir}" -name $t* -delete
-  done
-}
-
-# vim: ts=2 sw=2 et:

Copied: mkvtoolnix/repos/extra-x86_64/PKGBUILD (from rev 327005, 
mkvtoolnix/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 20:51:19 UTC (rev 327006)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Maintainer: Maxime Gauduin 
+# Contributor: xduugu 
+
+pkgbase=mkvtoolnix
+pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
+pkgver=24.0.0
+pkgrel=1
+pkgdesc='Set of tools to create, edit and inspect Matroska files'
+arch=('x86_64')
+url='https://www.bunkus.org/videotools/mkvtoolnix/'
+license=('GPL')
+makedepends=('boost' 'boost-libs' 'cmark' 'docbook-xsl' 'file' 'flac' 'libebml'
+ 'libmatroska' 'libogg' 'libvorbis' 'qt5-multimedia' 'ruby-rake'
+ 'zlib')
+source=("http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-${pkgver}.tar.xz;)
+sha256sums=('7a57caa192150f428fbdf18abfcb8061ce9284c95d3615b88315e66f32321c08')
+
+build() {
+  cd mkvtoolnix-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--disable-qt
+  rake apps:mkvinfo $MAKEFLAGS
+  mv src/mkvinfo{,-cli}
+
+  ./configure \
+--prefix='/usr' \
+--disable-update-check
+  rake $MAKEFLAGS
+}
+
+package_mkvtoolnix-cli() {
+  depends=('boost-libs' 'file' 'flac' 'gcc-libs' 'glibc' 'libogg' 'zlib'
+   'libebml.so' 'libmatroska.so' 'libvorbis.so')
+
+  cd mkvtoolnix-${pkgver}
+
+  rake DESTDIR="${pkgdir}" install
+  install -m 755 src/mkvinfo-cli "${pkgdir}"/usr/bin/mkvinfo
+  rm -rf "${pkgdir}"/usr/share/{applications,icons,mime,mkvtoolnix}
+  find "${pkgdir}" -name mkvtoolnix-gui* -delete
+}
+
+package_mkvtoolnix-gui() {
+  depends=('cmark' 'hicolor-icon-theme' 'mkvtoolnix-cli' 'qt5-base'
+   'qt5-multimedia')
+
+  cd mkvtoolnix-${pkgver}
+
+  rake DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/share/locale
+  for t in mkv{extract,info,merge,propedit}; do
+find "${pkgdir}" -name $t* -delete
+  done
+}
+
+# vim: ts=2 sw=2 et:


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

2018-06-15 Thread Dan Printzell via arch-commits
Date: Friday, June 15, 2018 @ 19:44:03
  Author: wild
Revision: 343336

upgpkg: dcd 0.9.9-1

Updated to 0.9.9

Modified:
  dcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 19:41:06 UTC (rev 343335)
+++ PKGBUILD2018-06-15 19:44:03 UTC (rev 343336)
@@ -4,9 +4,9 @@
 # Contributor: Mihails Strasuns 
 
 pkgname=('dcd')
-pkgver=0.9.8
+pkgver=0.9.9
 pkgrel=1
-_pkgcommit=717023b8b38c0f75687936272f81f274e4728f26
+_pkgcommit=c7ea7e081ed9ad2d85e9f981fd047d7fcdb2cf51
 pkgdesc="D Completion Daemon: auto-complete for the D programming language"
 arch=('x86_64')
 url="https://github.com/Hackerpilot/DCD;


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

2018-06-15 Thread Dan Printzell via arch-commits
Date: Friday, June 15, 2018 @ 19:44:12
  Author: wild
Revision: 343337

archrelease: copy trunk to community-x86_64

Added:
  dcd/repos/community-x86_64/PKGBUILD
(from rev 343336, dcd/trunk/PKGBUILD)
  dcd/repos/community-x86_64/dcd.conf
(from rev 343336, dcd/trunk/dcd.conf)
  dcd/repos/community-x86_64/dcd.service
(from rev 343336, dcd/trunk/dcd.service)
Deleted:
  dcd/repos/community-x86_64/PKGBUILD
  dcd/repos/community-x86_64/dcd.conf
  dcd/repos/community-x86_64/dcd.service

-+
 PKGBUILD|  150 +-
 dcd.conf|2 
 dcd.service |   26 +-
 3 files changed, 89 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 19:44:03 UTC (rev 343336)
+++ PKGBUILD2018-06-15 19:44:12 UTC (rev 343337)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Dan Printzell 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Mihails Strasuns 
-
-pkgname=('dcd')
-pkgver=0.9.8
-pkgrel=1
-_pkgcommit=717023b8b38c0f75687936272f81f274e4728f26
-pkgdesc="D Completion Daemon: auto-complete for the D programming language"
-arch=('x86_64')
-url="https://github.com/Hackerpilot/DCD;
-license=('GPL3')
-groups=('dlang')
-makedepends=('ldc' 'git')
-depends=('liblphobos')
-
-source=(
-   "git+https://github.com/dlang-community/DCD#commit=$_pkgcommit;
-   "git+https://github.com/msgpack/msgpack-d;
-   "git+https://github.com/economicmodeling/containers;
-   "git+https://github.com/dlang-community/libdparse;
-   "git+https://github.com/dlang-community/dsymbol;
-   "dcd.service"
-   "dcd.conf"
-)
-
-sha256sums=(
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   '7d3483ee92e42101d07395775aac5f0b277780f847c3823879fb35d1f2a9fbb3'
-   'fb765020c49a918b157f5be2cabd71c16bbb050ddd762f1e08c84d1eddd4c97b'
-)
-
-prepare() {
-   cd "$srcdir/DCD"
-
-   git submodule init
-   git config submodule.msgpack-d.url "$srcdir/msgpack-d"
-   git config submodule.containers.url "$srcdir/containers"
-   git config submodule.libdparse.url "$srcdir/libdparse"
-   git config submodule.dsymbol.url "$srcdir/dsymbol"
-   git submodule update
-
-   # Only LDC have -O5
-   sed -i "/-O5/ a -flto=full -linker=gold 
-link-defaultlib-shared=false" makefile
-}
-
-build() {
-   cd "$srcdir/DCD"
-
-   make ldc
-}
-
-package() {
-   # binaries
-   install -Dm755 "$srcdir/DCD/bin/dcd-server" "$pkgdir/usr/bin/dcd-server"
-   install -Dm755 "$srcdir/DCD/bin/dcd-client" "$pkgdir/usr/bin/dcd-client"
-
-   # documentation
-   install -d "$pkgdir/usr/share/man/man1/"
-   find "$srcdir/DCD/man1/" -type f -exec install -m 644 "{}" 
"$pkgdir/usr/share/man/man1/" \;
-
-   # license
-   install -Dm644 "$srcdir/DCD/License.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-   # systemd service
-   install -Dm644 "$srcdir/dcd.service" 
"$pkgdir/usr/lib/systemd/system/dcd.service"
-
-   # global config
-   install -Dm644 "$srcdir/dcd.conf" "$pkgdir/etc/dcd.conf"
-}

Copied: dcd/repos/community-x86_64/PKGBUILD (from rev 343336, 
dcd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 19:44:12 UTC (rev 343337)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Dan Printzell 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Mihails Strasuns 
+
+pkgname=('dcd')
+pkgver=0.9.9
+pkgrel=1
+_pkgcommit=c7ea7e081ed9ad2d85e9f981fd047d7fcdb2cf51
+pkgdesc="D Completion Daemon: auto-complete for the D programming language"
+arch=('x86_64')
+url="https://github.com/Hackerpilot/DCD;
+license=('GPL3')
+groups=('dlang')
+makedepends=('ldc' 'git')
+depends=('liblphobos')
+
+source=(
+   "git+https://github.com/dlang-community/DCD#commit=$_pkgcommit;
+   "git+https://github.com/msgpack/msgpack-d;
+   "git+https://github.com/economicmodeling/containers;
+   "git+https://github.com/dlang-community/libdparse;
+   "git+https://github.com/dlang-community/dsymbol;
+   "dcd.service"
+   "dcd.conf"
+)
+
+sha256sums=(
+   'SKIP'
+   'SKIP'
+   'SKIP'
+   'SKIP'
+   'SKIP'
+   '7d3483ee92e42101d07395775aac5f0b277780f847c3823879fb35d1f2a9fbb3'
+   'fb765020c49a918b157f5be2cabd71c16bbb050ddd762f1e08c84d1eddd4c97b'
+)
+
+prepare() {
+   cd "$srcdir/DCD"
+
+   git submodule init
+   git config submodule.msgpack-d.url "$srcdir/msgpack-d"
+   git config submodule.containers.url "$srcdir/containers"
+   git config submodule.libdparse.url "$srcdir/libdparse"
+   git config submodule.dsymbol.url "$srcdir/dsymbol"
+   git submodule update
+
+   # Only LDC have -O5
+   sed -i "/-O5/ a -flto=full -linker=gold 
-link-defaultlib-shared=false" makefile
+}
+
+build() {
+   cd "$srcdir/DCD"
+
+   make ldc

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

2018-06-15 Thread Dan Printzell via arch-commits
Date: Friday, June 15, 2018 @ 19:41:06
  Author: wild
Revision: 343335

archrelease: copy trunk to community-x86_64

Added:
  dscanner/repos/community-x86_64/PKGBUILD
(from rev 343334, dscanner/trunk/PKGBUILD)
Deleted:
  dscanner/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 19:40:59 UTC (rev 343334)
+++ PKGBUILD2018-06-15 19:41:06 UTC (rev 343335)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Dan Printzell 
-
-pkgname=('dscanner')
-pkgver=0.5.6
-pkgrel=1
-_pkgcommit=4b394c2a7d1a01a7279faadcbf9443e4c76dec96
-pkgdesc="Swiss-army knife for D source code"
-arch=('x86_64')
-url="https://github.com/dlang-community/D-Scanner;
-license=("custom")
-groups=('dlang')
-makedepends=('ldc' 'git')
-depends=('liblphobos')
-
-source=(
-   "git+https://github.com/dlang-community/D-Scanner#commit=$_pkgcommit;
-   "git+https://github.com/dlang-community/libdparse;
-   "git+https://github.com/burner/inifiled;
-   "git+https://github.com/economicmodeling/containers;
-   "git+https://github.com/dlang-community/dsymbol;
-   "git+https://github.com/economicmodeling/libddoc;
-   "git+https://github.com/dlang-community/stdx-allocator;
-)
-sha256sums=(
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   'SKIP'
-)
-
-prepare() {
-   cd "$srcdir/D-Scanner"
-
-   git submodule init
-   git config submodule.libdparse.url "$srcdir/libdparse"
-   git config submodule.inifiled.url "$srcdir/inifiled"
-   git config submodule.containers.url "$srcdir/containers"
-   git config submodule.dsymbol.url "$srcdir/dsymbol"
-   git config submodule.libddoc.url "$srcdir/libddoc"
-   git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
-   git submodule update
-
-   # Only LDC have -O5
-   sed -i "s/-O5/-O5 -flto=full -linker=gold 
-link-defaultlib-shared=false/g" makefile
-}
-
-build() {
-   cd "$srcdir/D-Scanner"
-   make ldc
-}
-
-package() {
-   # binaries
-   install -Dm755 "$srcdir/D-Scanner/bin/dscanner" 
"$pkgdir/usr/bin/dscanner"
-
-   # license
-   install -Dm644 "$srcdir/D-Scanner/LICENSE_1_0.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: dscanner/repos/community-x86_64/PKGBUILD (from rev 343334, 
dscanner/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 19:41:06 UTC (rev 343335)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Dan Printzell 
+
+pkgname=('dscanner')
+pkgver=0.5.7
+pkgrel=1
+_pkgcommit=76d8a30d2307d5d4e9c1a3972808752199449694
+pkgdesc="Swiss-army knife for D source code"
+arch=('x86_64')
+url="https://github.com/dlang-community/D-Scanner;
+license=("custom")
+groups=('dlang')
+makedepends=('ldc' 'git')
+depends=('liblphobos')
+
+source=(
+   "git+https://github.com/dlang-community/D-Scanner#commit=$_pkgcommit;
+   "git+https://github.com/dlang-community/libdparse;
+   "git+https://github.com/burner/inifiled;
+   "git+https://github.com/economicmodeling/containers;
+   "git+https://github.com/dlang-community/dsymbol;
+   "git+https://github.com/economicmodeling/libddoc;
+   "git+https://github.com/dlang-community/stdx-allocator;
+)
+sha256sums=(
+   'SKIP'
+   'SKIP'
+   'SKIP'
+   'SKIP'
+   'SKIP'
+   'SKIP'
+   'SKIP'
+)
+
+prepare() {
+   cd "$srcdir/D-Scanner"
+
+   git submodule init
+   git config submodule.libdparse.url "$srcdir/libdparse"
+   git config submodule.inifiled.url "$srcdir/inifiled"
+   git config submodule.containers.url "$srcdir/containers"
+   git config submodule.dsymbol.url "$srcdir/dsymbol"
+   git config submodule.libddoc.url "$srcdir/libddoc"
+   git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
+   git submodule update
+
+   # Only LDC have -O5
+   sed -i "s/-O5/-O5 -flto=full -linker=gold 
-link-defaultlib-shared=false/g" makefile
+}
+
+build() {
+   cd "$srcdir/D-Scanner"
+   make ldc
+}
+
+package() {
+   # binaries
+   install -Dm755 "$srcdir/D-Scanner/bin/dscanner" 
"$pkgdir/usr/bin/dscanner"
+
+   # license
+   install -Dm644 "$srcdir/D-Scanner/LICENSE_1_0.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2018-06-15 Thread Dan Printzell via arch-commits
Date: Friday, June 15, 2018 @ 19:40:59
  Author: wild
Revision: 343334

upgpkg: dscanner 0.5.7-1

Updated to 0.5.7

Modified:
  dscanner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 18:30:10 UTC (rev 34)
+++ PKGBUILD2018-06-15 19:40:59 UTC (rev 343334)
@@ -2,9 +2,9 @@
 # Maintainer: Dan Printzell 
 
 pkgname=('dscanner')
-pkgver=0.5.6
+pkgver=0.5.7
 pkgrel=1
-_pkgcommit=4b394c2a7d1a01a7279faadcbf9443e4c76dec96
+_pkgcommit=76d8a30d2307d5d4e9c1a3972808752199449694
 pkgdesc="Swiss-army knife for D source code"
 arch=('x86_64')
 url="https://github.com/dlang-community/D-Scanner;


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

2018-06-15 Thread Antonio Rojas via arch-commits
Date: Friday, June 15, 2018 @ 18:22:28
  Author: arojas
Revision: 327004

archrelease: copy trunk to extra-x86_64

Added:
  shiboken2/repos/
  shiboken2/repos/extra-x86_64/
  shiboken2/repos/extra-x86_64/PKGBUILD
(from rev 327003, shiboken2/trunk/PKGBUILD)

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

Copied: shiboken2/repos/extra-x86_64/PKGBUILD (from rev 327003, 
shiboken2/trunk/PKGBUILD)
===
--- repos/extra-x86_64/PKGBUILD (rev 0)
+++ repos/extra-x86_64/PKGBUILD 2018-06-15 18:22:28 UTC (rev 327004)
@@ -0,0 +1,63 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgbase=shiboken2
+pkgname=(shiboken2 python-shiboken2 python2-shiboken2)
+_qtver=5.11.0
+pkgver=${_qtver/-/}
+pkgrel=2
+arch=(x86_64)
+url='http://qt-project.org/'
+license=(GPL2 LGPL)
+pkgdesc='Generates bindings for C++ libraries using CPython source code'
+makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python python2)
+_pkgfqn=pyside-setup-everywhere-src-${_qtver}
+source=("http://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz;)
+sha256sums=('fbc412c4544bca308291a08a5173a949ca530d801f00b8337902a5067e490922')
+
+prepare() {
+  mkdir -p build{,2}
+}
+
+build() {
+  cd build
+  cmake ../${_pkgfqn}/sources/shiboken2 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF \
+-DUSE_PYTHON_VERSION=3
+  make
+
+  cd ../build2
+  cmake ../${_pkgfqn}/sources/shiboken2 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF \
+-DUSE_PYTHON_VERSION=2
+  make
+}
+
+package_shiboken2() {
+  depends=(clang libxslt qt5-xmlpatterns)
+
+  cd build
+  make DESTDIR="$pkgdir" install
+# Provided in python-shiboken
+  rm -r "$pkgdir"/usr/lib/{cmake/*/*python*,python*,libshiboken*}
+}
+
+package_python-shiboken2() {
+  depends=(python)
+
+  cd build
+  make DESTDIR="$pkgdir" install
+# Provided in shiboken
+  rm -r 
"$pkgdir"/usr/{bin,include,lib/{cmake/*/Shiboken2Config{,Version}.cmake,pkgconfig},share}
+}
+
+package_python2-shiboken2() {
+  depends=(python2)
+
+  cd build2
+  make DESTDIR="$pkgdir" install
+# Provided in shiboken
+  rm -r 
"$pkgdir"/usr/{bin,include,lib/{cmake/*/Shiboken2Config{,Version}.cmake,pkgconfig},share}
+}


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

2018-06-15 Thread Antonio Rojas via arch-commits
Date: Friday, June 15, 2018 @ 18:21:56
  Author: arojas
Revision: 327003

Split shiboken2 from pyside2

Added:
  shiboken2/
  shiboken2/trunk/
  shiboken2/trunk/PKGBUILD

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

Added: shiboken2/trunk/PKGBUILD
===
--- shiboken2/trunk/PKGBUILD(rev 0)
+++ shiboken2/trunk/PKGBUILD2018-06-15 18:21:56 UTC (rev 327003)
@@ -0,0 +1,63 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgbase=shiboken2
+pkgname=(shiboken2 python-shiboken2 python2-shiboken2)
+_qtver=5.11.0
+pkgver=${_qtver/-/}
+pkgrel=2
+arch=(x86_64)
+url='http://qt-project.org/'
+license=(GPL2 LGPL)
+pkgdesc='Generates bindings for C++ libraries using CPython source code'
+makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python python2)
+_pkgfqn=pyside-setup-everywhere-src-${_qtver}
+source=("http://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz;)
+sha256sums=('fbc412c4544bca308291a08a5173a949ca530d801f00b8337902a5067e490922')
+
+prepare() {
+  mkdir -p build{,2}
+}
+
+build() {
+  cd build
+  cmake ../${_pkgfqn}/sources/shiboken2 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF \
+-DUSE_PYTHON_VERSION=3
+  make
+
+  cd ../build2
+  cmake ../${_pkgfqn}/sources/shiboken2 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF \
+-DUSE_PYTHON_VERSION=2
+  make
+}
+
+package_shiboken2() {
+  depends=(clang libxslt qt5-xmlpatterns)
+
+  cd build
+  make DESTDIR="$pkgdir" install
+# Provided in python-shiboken
+  rm -r "$pkgdir"/usr/lib/{cmake/*/*python*,python*,libshiboken*}
+}
+
+package_python-shiboken2() {
+  depends=(python)
+
+  cd build
+  make DESTDIR="$pkgdir" install
+# Provided in shiboken
+  rm -r 
"$pkgdir"/usr/{bin,include,lib/{cmake/*/Shiboken2Config{,Version}.cmake,pkgconfig},share}
+}
+
+package_python2-shiboken2() {
+  depends=(python2)
+
+  cd build2
+  make DESTDIR="$pkgdir" install
+# Provided in shiboken
+  rm -r 
"$pkgdir"/usr/{bin,include,lib/{cmake/*/Shiboken2Config{,Version}.cmake,pkgconfig},share}
+}


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 18:09:08
  Author: felixonmars
Revision: 343331

upgpkg: python-faker 0.8.16-1

Modified:
  python-faker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 18:08:37 UTC (rev 343330)
+++ PKGBUILD2018-06-15 18:09:08 UTC (rev 343331)
@@ -5,7 +5,7 @@
 
 pkgbase=python-faker
 pkgname=(python-faker python2-faker)
-pkgver=0.8.15
+pkgver=0.8.16
 pkgrel=1
 pkgdesc='Faker generates fake data for you.'
 arch=('any')
@@ -17,7 +17,7 @@
   'python-mock' 'python2-mock' 'python-email-validator' 
'python2-email-validator'
   'python2-ipaddress')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/joke2k/faker/archive/v$pkgver.tar.gz;)
-sha512sums=('dbcc44a8d5e17a5d444e9c1e923796c8bad9a1cb19fcea18c5c9a8526952474be33b3cf26f0e46e5d7d7c2a65facbe5b24f80cd9eb0aff39e5aff8668aba65ba')
+sha512sums=('c411d746a50e06a11d681f621fcfc907ae02c56dcb6d76b304f3624aecb93245041c450ac4b537db44803ace29dd0cf1fcead8dee85fc39a43ada595c241643e')
 
 prepare() {
   cp -a faker-$pkgver{,-py2}


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 18:09:31
  Author: felixonmars
Revision: 343332

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 18:09:08 UTC (rev 343331)
+++ PKGBUILD2018-06-15 18:09:31 UTC (rev 343332)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jeremy "Ichimonji10" Audet 
-# Contributor: dnuux 
-
-pkgbase=python-faker
-pkgname=(python-faker python2-faker)
-pkgver=0.8.15
-pkgrel=1
-pkgdesc='Faker generates fake data for you.'
-arch=('any')
-url='http://www.joke2k.net/faker/'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-dateutil' 
'python2-dateutil'
- 'python-text-unidecode' 'python2-text-unidecode')
-checkdepends=('python-ukpostcodeparser' 'python2-ukpostcodeparser'
-  'python-mock' 'python2-mock' 'python-email-validator' 
'python2-email-validator'
-  'python2-ipaddress')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/joke2k/faker/archive/v$pkgver.tar.gz;)
-sha512sums=('dbcc44a8d5e17a5d444e9c1e923796c8bad9a1cb19fcea18c5c9a8526952474be33b3cf26f0e46e5d7d7c2a65facbe5b24f80cd9eb0aff39e5aff8668aba65ba')
-
-prepare() {
-  cp -a faker-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/faker-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/faker-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/faker-$pkgver
-  python setup.py test
-
-  cd "$srcdir"/faker-$pkgver-py2
-  python2 setup.py test
-}
-
-package_python-faker() {
-  depends=('python-setuptools' 'python-dateutil' 'python-text-unidecode')
-  provides=("python-fake-factory=$pkgver")
-  conflicts=('python-fake-factory')
-  replaces=('python-fake-factory')
-
-  cd "$srcdir"/faker-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
-}
-
-package_python2-faker() {
-  depends=('python2-setuptools' 'python2-dateutil' 'python2-text-unidecode' 
'python2-ipaddress')
-  provides=("python2-fake-factory=$pkgver")
-  conflicts=('python2-fake-factory')
-  replaces=('python2-fake-factory')
-
-  cd "$srcdir"/faker-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/faker{,2}
-  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-faker/repos/community-any/PKGBUILD (from rev 343331, 
python-faker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 18:09:31 UTC (rev 343332)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jeremy "Ichimonji10" Audet 
+# Contributor: dnuux 
+
+pkgbase=python-faker
+pkgname=(python-faker python2-faker)
+pkgver=0.8.16
+pkgrel=1
+pkgdesc='Faker generates fake data for you.'
+arch=('any')
+url='http://www.joke2k.net/faker/'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-dateutil' 
'python2-dateutil'
+ 'python-text-unidecode' 'python2-text-unidecode')
+checkdepends=('python-ukpostcodeparser' 'python2-ukpostcodeparser'
+  'python-mock' 'python2-mock' 'python-email-validator' 
'python2-email-validator'
+  'python2-ipaddress')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/joke2k/faker/archive/v$pkgver.tar.gz;)
+sha512sums=('c411d746a50e06a11d681f621fcfc907ae02c56dcb6d76b304f3624aecb93245041c450ac4b537db44803ace29dd0cf1fcead8dee85fc39a43ada595c241643e')
+
+prepare() {
+  cp -a faker-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/faker-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/faker-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/faker-$pkgver
+  python setup.py test
+
+  cd "$srcdir"/faker-$pkgver-py2
+  python2 setup.py test
+}
+
+package_python-faker() {
+  depends=('python-setuptools' 'python-dateutil' 'python-text-unidecode')
+  provides=("python-fake-factory=$pkgver")
+  conflicts=('python-fake-factory')
+  replaces=('python-fake-factory')
+
+  cd "$srcdir"/faker-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
+}
+
+package_python2-faker() {
+  depends=('python2-setuptools' 'python2-dateutil' 'python2-text-unidecode' 
'python2-ipaddress')
+  provides=("python2-fake-factory=$pkgver")
+  conflicts=('python2-fake-factory')
+  replaces=('python2-fake-factory')
+
+  cd "$srcdir"/faker-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  mv "$pkgdir"/usr/bin/faker{,2}
+  

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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 18:08:37
  Author: felixonmars
Revision: 343330

archrelease: copy trunk to community-any

Added:
  nodejs-emojione/repos/community-any/PKGBUILD
(from rev 343329, nodejs-emojione/trunk/PKGBUILD)
Deleted:
  nodejs-emojione/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 18:08:15 UTC (rev 343329)
+++ PKGBUILD2018-06-15 18:08:37 UTC (rev 343330)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-_npmname=emojione
-pkgname=nodejs-$_npmname
-pkgver=3.1.4
-pkgrel=1
-pkgdesc="A complete set of emojis designed for the web"
-arch=('any')
-url="http://www.emojione.com;
-license=('MIT')
-depends=('nodejs')
-makedepends=('npm')
-source=("https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz;)
-noextract=($_npmname-$pkgver.tgz)
-sha512sums=('47469ab6d0e4a5b02a0d48894b212a09baf353fdbd5521f5f13fbbf0fe085ffb58e9d4ce425646441c019d73fd221045e8290501fab8bf003122399bae3c8b8d')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$_npmname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/$_npmname/LICENSE.md" 
"$pkgdir/usr/share/licenses/$pkgname/"
-
-  # Fix permissions
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-}

Copied: nodejs-emojione/repos/community-any/PKGBUILD (from rev 343329, 
nodejs-emojione/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 18:08:37 UTC (rev 343330)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_npmname=emojione
+pkgname=nodejs-$_npmname
+pkgver=3.1.5
+pkgrel=1
+pkgdesc="A complete set of emojis designed for the web"
+arch=('any')
+url="http://www.emojione.com;
+license=('MIT')
+depends=('nodejs')
+makedepends=('npm')
+source=("https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz;)
+noextract=($_npmname-$pkgver.tgz)
+sha512sums=('3bbfbb3b3465b788d5d1ebb03ea87fa485051153875bab7163a8a9e04e3273a53bdbbd02383dafd68c5536bb001b6e422d642ae198c188141ad3e335899c9a51')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$_npmname-$pkgver.tgz
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/$_npmname/LICENSE.md" 
"$pkgdir/usr/share/licenses/$pkgname/"
+
+  # Fix permissions
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+}


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 18:08:15
  Author: felixonmars
Revision: 343329

upgpkg: nodejs-emojione 3.1.5-1

Modified:
  nodejs-emojione/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 16:56:33 UTC (rev 343328)
+++ PKGBUILD2018-06-15 18:08:15 UTC (rev 343329)
@@ -3,7 +3,7 @@
 
 _npmname=emojione
 pkgname=nodejs-$_npmname
-pkgver=3.1.4
+pkgver=3.1.5
 pkgrel=1
 pkgdesc="A complete set of emojis designed for the web"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('npm')
 source=("https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz;)
 noextract=($_npmname-$pkgver.tgz)
-sha512sums=('47469ab6d0e4a5b02a0d48894b212a09baf353fdbd5521f5f13fbbf0fe085ffb58e9d4ce425646441c019d73fd221045e8290501fab8bf003122399bae3c8b8d')
+sha512sums=('3bbfbb3b3465b788d5d1ebb03ea87fa485051153875bab7163a8a9e04e3273a53bdbbd02383dafd68c5536bb001b6e422d642ae198c188141ad3e335899c9a51')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$_npmname-$pkgver.tgz


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

2018-06-15 Thread Andrew Crerar via arch-commits
Date: Friday, June 15, 2018 @ 16:56:33
  Author: andrewsc
Revision: 343328

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  466 ++---
 1 file changed, 233 insertions(+), 233 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 16:56:03 UTC (rev 343327)
+++ PKGBUILD2018-06-15 16:56:33 UTC (rev 343328)
@@ -1,233 +0,0 @@
-# $Id$
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=61.0b13
-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=('edb2aa7a91eb4149cfbb279d6ce8e8f99634895bc4ef4e4c7cdc607db84676c01b46406d76d584b4630adcb537f237a893d6a59ab27cc4e2aa703ce45af4a7be'
-
'80731e6516c86d089a80b4f704f02018397bb04183d4e6b6b37ebac9f6eada699a838826d35cb0241f88f3bb86b7658e2524774b6190b4dcf5d83f07213a8bb0'
-
'bb0619466bc1a5dd9b321811aa772bfcc5c4c84f3fc73087a4b908107b2023c51f52c9dc258cb50cf7e2d0c7ec351fced017c96c4d4a441768b37668896a7023'
-
'422e20fc7d6a9b1f8fc69ae98f31d63a015505c9955c0d0a948399ac8114c05370d0d366321eae85be483f7af9cd1671ff541e5dcaaf0dcd4481c8e8bbf21568'
-
'e135768ff3ace3860678f0ef896d5b85a750b24ebb60f6659d08462ee650f71eab3cc51b1a6e9555070b0ca8525baac2ba563badcc0f171233a62f669413d61e'
-
'f59dba7aa5372766dd904453993dc3f3989958c433906dcb1cdcf4eb4a905aaf01f01d65a11709d18cd0b56d64df109556eb8ddcc2ecaa6a9fd96454954c9b30'
-

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

2018-06-15 Thread Andrew Crerar via arch-commits
Date: Friday, June 15, 2018 @ 16:56:03
  Author: andrewsc
Revision: 343327

upgpkg: firefox-developer-edition-i18n 61.0b14-1

firefox-developer-edition-i18n: Updating to 61.0b14

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

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 16:44:31 UTC (rev 343326)
+++ PKGBUILD2018-06-15 16:56:03 UTC (rev 343327)
@@ -2,7 +2,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=61.0b13
+pkgver=61.0b14
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -134,100 +134,100 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
 }
 
-sha512sums=('edb2aa7a91eb4149cfbb279d6ce8e8f99634895bc4ef4e4c7cdc607db84676c01b46406d76d584b4630adcb537f237a893d6a59ab27cc4e2aa703ce45af4a7be'
-
'80731e6516c86d089a80b4f704f02018397bb04183d4e6b6b37ebac9f6eada699a838826d35cb0241f88f3bb86b7658e2524774b6190b4dcf5d83f07213a8bb0'
-
'bb0619466bc1a5dd9b321811aa772bfcc5c4c84f3fc73087a4b908107b2023c51f52c9dc258cb50cf7e2d0c7ec351fced017c96c4d4a441768b37668896a7023'
-
'422e20fc7d6a9b1f8fc69ae98f31d63a015505c9955c0d0a948399ac8114c05370d0d366321eae85be483f7af9cd1671ff541e5dcaaf0dcd4481c8e8bbf21568'
-
'e135768ff3ace3860678f0ef896d5b85a750b24ebb60f6659d08462ee650f71eab3cc51b1a6e9555070b0ca8525baac2ba563badcc0f171233a62f669413d61e'
-
'f59dba7aa5372766dd904453993dc3f3989958c433906dcb1cdcf4eb4a905aaf01f01d65a11709d18cd0b56d64df109556eb8ddcc2ecaa6a9fd96454954c9b30'
-
'5171a42a3dc8d748ae2afba0411bbba937c86ff2b11d5ebebef2383b5824f830387a92f6b71b8a27c5441c12dee46f6463b1c09879c54ee2237ad524c25d7553'
-
'e313003449e2961c2a771c8036f12ce9c10a4a90a4cbabb829d92e1afb7a54113fd3082788574f613560082fae5e95c13d03633459a0031bec5d911e3286'
-
'c7609ca7205157a5ec6a554cf039d8e3051d72f51721e4164efc927dacd5873c3b5efc2b3ff31c3bea9204b20a5f632667be7b9afe655b9fbce01d72333b0686'
-
'3a6840f88f7c848429e4ff1d659c3f367d6ba5f5d508558ab72325556e6cdc8929b1c1a110bfd070bc2dc3c8c297053004f59e183e3e07f44cf73378c7a74e3b'
-
'5700e52ba26ec4708aa452f419cfb75787190378fe71690cd05e632d334627d0244f800f98a6e7252aaec88f379a84eb6c8a23d54867d3cace17d88e3eb05797'
-
'805bd7e48af84800b9b3c4635bfe1657b998b5ec6acdfd7aafd75b340d6961250525936b1629b5f501e970b0c6cdcef13b42de8ba4ccca6dec3b80c15c27eb50'
-
'a843ebce90497bd19b90944162e55bf96f5070aa4416276b1e8e45df63d787fd03e6a2fd6a1fd725576b4410bd8d269a382eda1d181660ae806c1f18b297f2b9'
-
'd381297a72605b8ca58e3009ecc3421b8bbdd06d54e13d58578292650cd1762395ac1f269b1d4c4ed29c113d23eea843d52687db612d7ab22fe2e47a8ba4d561'
-
'930b3f87837706dffb64579120f6fe491e80ebb70dd22dece9ff059cb5b04b04ecc84d25e0894520efb24b4eba84de9e99ca84dc87db1b02911a98dd5b05eaf8'
-
'957e610cc9b2945a196fa302fb09cb22d6f9f3917efd5eeefc5ebefd39c7c5060994feffd21ebd573b6381b524ed23977dbcb970e9bde0f011cdc2fd114ac346'
-
'0a83d67326aba57898d88465d9260322e747908a5813cfd6d4da355fd97ce17a229fbbca7dce44d3d1f0bea23823cf08f30379bcb6790cd367e0753f68579d37'
-
'c4658dfce00f7ad7126e5d0da567ed1117fd90ae4cc6444adde05f3d080d2a69a45fde430e37bbda24085259d252ae33945bd444d908930b2893a98b2b8dc9a6'
-
'448b88d1e9fffd4ff758488012b9646ab0affe4c946df0701a6df08c931948ab133ab0da28af83b861aac05859220d034fc184c5cf41e9d9ae7fe7e36d397e3d'
-
'35059edad3b907f27df228dd566b017a65d6292b6c847cc3c033f3cd0b5c3d48bf93992d4e0105d48a852798d04ffd4248b3779e9990e69aad6870d48a3dcf7e'
-
'6b1e986a97f3d4585e561ab99f3eadb5c48fd58e498d3789dfc2e198810ef217c58ed2277c272bda342f66a2b2ee5f5b71fc20743d2f5adf8b2297b6a685'
-
'a89903df3893475d472d65ecd89938855d9b409b745ec8731dba53dd69b2c9f0732b33975270fd2bfe3c51264734fc469cddfeddba121f869a12851665a37501'
-
'6c6f2cf060c1cb2d4901ded61817e864c435aa9f777dd47fc1528c4e79a604be73053a8cb3dd6b463661a3c7a7582678af46df60f834ca4df92b10664a085a87'
-
'a0fd4174b38b8f78a9ce8299aa4ba443e0da57dd74c75825e80e3311a1ee72ad89187cf0105e9aa9602bc3d674a586529b8456de75159931a1d1104fcbf3334d'
-
'ce662cdd7696abda4fddc6c8b678642eb669c91cd6a91bc0102bd56e1a71a5be2b12cf030a308054e96cb5a0b7cf908c48e10870a728533fa67591db0533428f'
-
'f9711bc13f624ee64fc68df30a37742a2d72d8736556dc87a8bb1a71251831baa1468727c9942059a0f9e427d468c3040547eca1178d97f7ef1c3a61f1fb4455'
-
'ce181b49b97de7d32b20aee6201282c9f3d0ae5467e0c4b3d6dd8b53efd4472453a40e7ee0c7ce751b91c96ddea8ba869161d6613959e67c4c8cea694aac19f7'
-
'd2eecee28a963ac90814cb38c621dcd296fde8c6ad1c48fff766f2e9c3babf58fbb386298a26cd8a32987a5e9954a468df0d6b7bd7968649a4769e27860eed8a'
-

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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 16:44:31
  Author: felixonmars
Revision: 343326

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 16:44:09 UTC (rev 343325)
+++ PKGBUILD2018-06-15 16:44:31 UTC (rev 343326)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-aniso8601
-pkgname=(python-aniso8601 python2-aniso8601)
-pkgver=3.0.0
-pkgrel=1
-pkgdesc="A library for parsing ISO 8601 strings."
-url="https://bitbucket.org/nielsenb/aniso8601;
-license=('BSD')
-arch=('any')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-dateutil' 
'python2-dateutil')
-source=("$pkgbase-$pkgver.tar.gz::https://bitbucket.org/nielsenb/aniso8601/get/v$pkgver.tar.gz;)
-sha512sums=('6d8d3958a83cbd5981e0f01256fd5b6f666c280617caee655303581836f75e8bf552fa1706da678cc028e7f4ec9a239fd1c72d0650debeb53f06fad5b8624d31')
-
-prepare() {
-  mv nielsenb-aniso8601-* aniso8601-$pkgver
-  cp -a aniso8601-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/aniso8601-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/aniso8601-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/aniso8601-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/aniso8601-$pkgver-py2
-  python2 setup.py pytest
-}
-
-package_python-aniso8601() {
-  depends=('python')
-
-  cd aniso8601-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-aniso8601() {
-  depends=('python2')
-
-  cd aniso8601-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-aniso8601/repos/community-any/PKGBUILD (from rev 343325, 
python-aniso8601/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 16:44:31 UTC (rev 343326)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-aniso8601
+pkgname=(python-aniso8601 python2-aniso8601)
+pkgver=3.0.2
+pkgrel=1
+pkgdesc="A library for parsing ISO 8601 strings."
+url="https://bitbucket.org/nielsenb/aniso8601;
+license=('BSD')
+arch=('any')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-dateutil' 
'python2-dateutil')
+source=("$pkgbase-$pkgver.tar.gz::https://bitbucket.org/nielsenb/aniso8601/get/v$pkgver.tar.gz;)
+sha512sums=('828d5c509fff869036b3a616d7f8591d09eae38d05d9143e9218a000edd739d39f9354171380e848beb9f8904a90c8814d45eff0506caab1842014506376225a')
+
+prepare() {
+  mv nielsenb-aniso8601-* aniso8601-$pkgver
+  cp -a aniso8601-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/aniso8601-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/aniso8601-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/aniso8601-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/aniso8601-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-aniso8601() {
+  depends=('python')
+
+  cd aniso8601-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-aniso8601() {
+  depends=('python2')
+
+  cd aniso8601-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-06-15 Thread Andrew Crerar via arch-commits
Date: Friday, June 15, 2018 @ 16:44:07
  Author: andrewsc
Revision: 343324

archrelease: copy trunk to community-x86_64

Added:
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 343323, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 343323, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 343323, firefox-developer-edition/trunk/firefox-install-dir.patch)
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg
(from rev 343323, 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  |  344 +--
 firefox-developer-edition.desktop |  622 ++--
 firefox-install-dir.patch |   84 ++--
 firefox-symbolic.svg  |  128 +++
 4 files changed, 589 insertions(+), 589 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 16:43:29 UTC (rev 343323)
+++ PKGBUILD2018-06-15 16:44:07 UTC (rev 343324)
@@ -1,172 +0,0 @@
-# $Id$
-# Maintainer: Andrew Crerar 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=firefox-developer-edition
-pkgver=61.0b13
-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' 'hunspell-en_US' 'sqlite' 'ttf-font' 
'libpulse')
-makedepends=('unzip' 'zip' 'diffutils' 'python2' 'python' 'yasm' 'mesa' 
'imake' 'gconf' 'inetutils'
- 'xorg-server-xvfb' 'autoconf2.13' 'rust' 'mercurial' 'clang' 
'llvm' 'jack' 'gtk2')
-optdepends=('networkmanager: Location detection via available WiFi networks'
-'libnotify: Notification integration'
-'pulseaudio: Audio support'
-'speech-dispatcher: Text-to-Speech')
-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() {
-  mkdir path
-  ln -s /usr/bin/python2 path/python
-
-  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-gold
-ac_add_options --enable-pie
-ac_add_options --enable-optimize="-O2"
-ac_add_options --enable-rust-simd
-
-# Branding
-ac_add_options --with-branding=browser/branding/aurora
-ac_add_options --enable-update-channel=aurora
-ac_add_options --with-distribution-id=org.archlinux
-export MOZILLA_OFFICIAL=1
-export MOZ_TELEMETRY_REPORTING=1
-export MOZ_ADDON_SIGNING=1
-export MOZ_REQUIRE_SIGNING=0
-ac_add_options "MOZ_ALLOW_LEGACY_EXTENSIONS=1"
-
-# 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 --with-system-bz2
-ac_add_options --enable-system-sqlite
-ac_add_options --enable-system-ffi
-
-# Features

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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 16:44:09
  Author: felixonmars
Revision: 343325

upgpkg: python-aniso8601 3.0.2-1

Modified:
  python-aniso8601/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 16:44:07 UTC (rev 343324)
+++ PKGBUILD2018-06-15 16:44:09 UTC (rev 343325)
@@ -3,7 +3,7 @@
 
 pkgbase=python-aniso8601
 pkgname=(python-aniso8601 python2-aniso8601)
-pkgver=3.0.0
+pkgver=3.0.2
 pkgrel=1
 pkgdesc="A library for parsing ISO 8601 strings."
 url="https://bitbucket.org/nielsenb/aniso8601;
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-dateutil' 
'python2-dateutil')
 
source=("$pkgbase-$pkgver.tar.gz::https://bitbucket.org/nielsenb/aniso8601/get/v$pkgver.tar.gz;)
-sha512sums=('6d8d3958a83cbd5981e0f01256fd5b6f666c280617caee655303581836f75e8bf552fa1706da678cc028e7f4ec9a239fd1c72d0650debeb53f06fad5b8624d31')
+sha512sums=('828d5c509fff869036b3a616d7f8591d09eae38d05d9143e9218a000edd739d39f9354171380e848beb9f8904a90c8814d45eff0506caab1842014506376225a')
 
 prepare() {
   mv nielsenb-aniso8601-* aniso8601-$pkgver


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

2018-06-15 Thread Andrew Crerar via arch-commits
Date: Friday, June 15, 2018 @ 16:43:29
  Author: andrewsc
Revision: 343323

upgpkg: firefox-developer-edition 61.0b14-1

firefox-developer-edition: Updating to 61.0b14

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 16:15:20 UTC (rev 343322)
+++ PKGBUILD2018-06-15 16:43:29 UTC (rev 343323)
@@ -3,7 +3,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=61.0b13
+pkgver=61.0b14
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')


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

2018-06-15 Thread Christian Rebischke via arch-commits
Date: Friday, June 15, 2018 @ 16:15:20
  Author: shibumi
Revision: 343322

archrelease: copy trunk to community-x86_64

Added:
  libvirt-python/repos/community-x86_64/PKGBUILD
(from rev 343321, libvirt-python/trunk/PKGBUILD)
  libvirt-python/repos/community-x86_64/libvirt-python.install
(from rev 343321, libvirt-python/trunk/libvirt-python.install)
Deleted:
  libvirt-python/repos/community-x86_64/PKGBUILD
  libvirt-python/repos/community-x86_64/libvirt-python.install

+
 PKGBUILD   |   68 +++
 libvirt-python.install |6 ++--
 2 files changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 16:15:12 UTC (rev 343321)
+++ PKGBUILD2018-06-15 16:15:20 UTC (rev 343322)
@@ -1,34 +0,0 @@
-# ${Id}: PKGBUILD 101980 2013-12-03 09:48:38Z spupykin ${}
-# Maintainer: Christian Rebischke 
-# Contributor: Sergej Pupykin 
-# Contributor: Jonathan Wiersma 
-
-pkgbase=libvirt-python
-pkgname=('libvirt-python2' 'libvirt-python')
-pkgver=4.3.0
-pkgrel=1
-pkgdesc="libvirt python binding"
-arch=('x86_64')
-url="https://pypi.python.org/pypi/libvirt-python;
-license=('LGPL')
-makedepends=('python' 'python2' 'libvirt')
-options=('emptydirs')
-validpgpkeys=('C74415BA7C9C7F78F02E1DC34606B8A5DE95BC1F')
-source=("http://libvirt.org/sources/python/libvirt-python-${pkgver}.tar.gz;)
-sha512sums=('4b2b4a2590e968ff4401d8429319c94b1b9c08a40b089f461af5a4912acf2c504f60652c80b161c253c00e41d22c100c2e180159e45d84c352c59dca69172cfc')
-
-package_libvirt-python2() {
-  depends=('python2' 'libvirt')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  python2 setup.py clean
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-}
-
-package_libvirt-python() {
-  depends=('python' 'libvirt')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  python setup.py clean
-  python setup.py install --root="${pkgdir}" --optimize=1
-}

Copied: libvirt-python/repos/community-x86_64/PKGBUILD (from rev 343321, 
libvirt-python/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 16:15:20 UTC (rev 343322)
@@ -0,0 +1,34 @@
+# ${Id}: PKGBUILD 101980 2013-12-03 09:48:38Z spupykin ${}
+# Maintainer: Christian Rebischke 
+# Contributor: Sergej Pupykin 
+# Contributor: Jonathan Wiersma 
+
+pkgbase=libvirt-python
+pkgname=('libvirt-python2' 'libvirt-python')
+pkgver=4.4.0
+pkgrel=1
+pkgdesc="libvirt python binding"
+arch=('x86_64')
+url="https://pypi.python.org/pypi/libvirt-python;
+license=('LGPL')
+makedepends=('python' 'python2' 'libvirt')
+options=('emptydirs')
+validpgpkeys=('C74415BA7C9C7F78F02E1DC34606B8A5DE95BC1F')
+source=("http://libvirt.org/sources/python/libvirt-python-${pkgver}.tar.gz;)
+sha512sums=('b4e740895c22aca20d8fc1cfadc9276e91e0a74aa7bad75d15de14be6704be8386055b700ea65045acfaabf3bfe8fa51e5d814e625e46d01b3ac0221419d25da')
+
+package_libvirt-python2() {
+  depends=('python2' 'libvirt')
+
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  python2 setup.py clean
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+}
+
+package_libvirt-python() {
+  depends=('python' 'libvirt')
+
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  python setup.py clean
+  python setup.py install --root="${pkgdir}" --optimize=1
+}

Deleted: libvirt-python.install
===
--- libvirt-python.install  2018-06-15 16:15:12 UTC (rev 343321)
+++ libvirt-python.install  2018-06-15 16:15:20 UTC (rev 343322)
@@ -1,3 +0,0 @@
-post_remove() {
-   rm -f /usr/lib/python[0-9].[0-9]/site-packages/libvirt.pyc
-}

Copied: libvirt-python/repos/community-x86_64/libvirt-python.install (from rev 
343321, libvirt-python/trunk/libvirt-python.install)
===
--- libvirt-python.install  (rev 0)
+++ libvirt-python.install  2018-06-15 16:15:20 UTC (rev 343322)
@@ -0,0 +1,3 @@
+post_remove() {
+   rm -f /usr/lib/python[0-9].[0-9]/site-packages/libvirt.pyc
+}


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

2018-06-15 Thread Christian Rebischke via arch-commits
Date: Friday, June 15, 2018 @ 16:15:12
  Author: shibumi
Revision: 343321

upgpkg: libvirt-python 4.4.0-1

Modified:
  libvirt-python/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 15:28:51 UTC (rev 343320)
+++ PKGBUILD2018-06-15 16:15:12 UTC (rev 343321)
@@ -5,7 +5,7 @@
 
 pkgbase=libvirt-python
 pkgname=('libvirt-python2' 'libvirt-python')
-pkgver=4.3.0
+pkgver=4.4.0
 pkgrel=1
 pkgdesc="libvirt python binding"
 arch=('x86_64')
@@ -15,7 +15,7 @@
 options=('emptydirs')
 validpgpkeys=('C74415BA7C9C7F78F02E1DC34606B8A5DE95BC1F')
 source=("http://libvirt.org/sources/python/libvirt-python-${pkgver}.tar.gz;)
-sha512sums=('4b2b4a2590e968ff4401d8429319c94b1b9c08a40b089f461af5a4912acf2c504f60652c80b161c253c00e41d22c100c2e180159e45d84c352c59dca69172cfc')
+sha512sums=('b4e740895c22aca20d8fc1cfadc9276e91e0a74aa7bad75d15de14be6704be8386055b700ea65045acfaabf3bfe8fa51e5d814e625e46d01b3ac0221419d25da')
 
 package_libvirt-python2() {
   depends=('python2' 'libvirt')


[arch-commits] Commit in iwd/trunk (PKGBUILD iwd@.service)

2018-06-15 Thread Christian Rebischke via arch-commits
Date: Friday, June 15, 2018 @ 15:28:46
  Author: shibumi
Revision: 343319

upgpkg: iwd 0.3-1

This release comes with a fixed version of iwd.service.
So there is no need for iwd@.service anymore.

Modified:
  iwd/trunk/PKGBUILD
Deleted:
  iwd/trunk/iwd@.service

--+
 PKGBUILD |   14 +-
 iwd@.service |   12 
 2 files changed, 5 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 14:30:56 UTC (rev 343318)
+++ PKGBUILD2018-06-15 15:28:46 UTC (rev 343319)
@@ -1,18 +1,16 @@
 # Maintainer: Christian Rebischke 
 
 pkgname=iwd
-pkgver=0.2
-pkgrel=2
+pkgver=0.3
+pkgrel=1
 pkgdesc='Internet Wireless Daemon'
 arch=('x86_64')
 url='https://git.kernel.org/cgit/network/wireless/iwd.git/'
 license=('LGPL')
 depends=('glibc')
-source=("https://www.kernel.org/pub/linux/network/wireless/iwd-${pkgver}.tar"{.xz,.sign}
-   'iwd@.service')
-sha512sums=('f4d038ad9aaef51c352be1bb638d4495be888ed3c6b63c5d321be4d4f1ed17eb01f311872ce70fa2a56c37355a7151163426b5e483df5aec8ade2ac72ac1b3a8'
-'SKIP'
-   'SKIP')
+source=("https://www.kernel.org/pub/linux/network/wireless/iwd-${pkgver}.tar"{.xz,.sign})
+sha512sums=('9c34d98ecae18955cc39cb7a58c0724b500902e2070ebbc1967fa4e2ed3633e01052a6bcb592b8bbb806307d8f0db8271a0ac7ad105f8a8f42915b8627e429f6'
+'SKIP')
 validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659')
 
 build() {
@@ -27,8 +25,6 @@
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}"
   make install DESTDIR="${pkgdir}"
-   rm "${pkgdir}/usr/lib/systemd/system/iwd.service"
-   install -Dm644 "${srcdir}/iwd@.service" 
"${pkgdir}/usr/lib/systemd/system/iwd@.service"
 }
 
 # vim: set ts=2 sw=2 ft=sh noet:

Deleted: iwd@.service
===
--- iwd@.service2018-06-15 14:30:56 UTC (rev 343318)
+++ iwd@.service2018-06-15 15:28:46 UTC (rev 343319)
@@ -1,12 +0,0 @@
-[Unit]
-Description=Internet Wireless Daemon (IWD)
-Requires=sys-subsystem-net-devices-%i.device
-After=sys-subsystem-net-devices-%i.device
-Before=network.target
-Wants=network.target
-
-[Service]
-ExecStart=/usr/lib/iwd/iwd -i %I
-
-[Install]
-Alias=multi-user.target.wants/iwd@%i.service


[arch-commits] Commit in iwd/repos/community-x86_64 (PKGBUILD PKGBUILD iwd@.service)

2018-06-15 Thread Christian Rebischke via arch-commits
Date: Friday, June 15, 2018 @ 15:28:51
  Author: shibumi
Revision: 343320

archrelease: copy trunk to community-x86_64

Added:
  iwd/repos/community-x86_64/PKGBUILD
(from rev 343319, iwd/trunk/PKGBUILD)
Deleted:
  iwd/repos/community-x86_64/PKGBUILD
  iwd/repos/community-x86_64/iwd@.service

--+
 PKGBUILD |   64 ++---
 iwd@.service |   12 --
 2 files changed, 30 insertions(+), 46 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 15:28:46 UTC (rev 343319)
+++ PKGBUILD2018-06-15 15:28:51 UTC (rev 343320)
@@ -1,34 +0,0 @@
-# Maintainer: Christian Rebischke 
-
-pkgname=iwd
-pkgver=0.2
-pkgrel=2
-pkgdesc='Internet Wireless Daemon'
-arch=('x86_64')
-url='https://git.kernel.org/cgit/network/wireless/iwd.git/'
-license=('LGPL')
-depends=('glibc')
-source=("https://www.kernel.org/pub/linux/network/wireless/iwd-${pkgver}.tar"{.xz,.sign}
-   'iwd@.service')
-sha512sums=('f4d038ad9aaef51c352be1bb638d4495be888ed3c6b63c5d321be4d4f1ed17eb01f311872ce70fa2a56c37355a7151163426b5e483df5aec8ade2ac72ac1b3a8'
-'SKIP'
-   'SKIP')
-validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --libexecdir=/usr/lib/iwd \
-   --localstatedir=/var
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make install DESTDIR="${pkgdir}"
-   rm "${pkgdir}/usr/lib/systemd/system/iwd.service"
-   install -Dm644 "${srcdir}/iwd@.service" 
"${pkgdir}/usr/lib/systemd/system/iwd@.service"
-}
-
-# vim: set ts=2 sw=2 ft=sh noet:

Copied: iwd/repos/community-x86_64/PKGBUILD (from rev 343319, 
iwd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 15:28:51 UTC (rev 343320)
@@ -0,0 +1,30 @@
+# Maintainer: Christian Rebischke 
+
+pkgname=iwd
+pkgver=0.3
+pkgrel=1
+pkgdesc='Internet Wireless Daemon'
+arch=('x86_64')
+url='https://git.kernel.org/cgit/network/wireless/iwd.git/'
+license=('LGPL')
+depends=('glibc')
+source=("https://www.kernel.org/pub/linux/network/wireless/iwd-${pkgver}.tar"{.xz,.sign})
+sha512sums=('9c34d98ecae18955cc39cb7a58c0724b500902e2070ebbc1967fa4e2ed3633e01052a6bcb592b8bbb806307d8f0db8271a0ac7ad105f8a8f42915b8627e429f6'
+'SKIP')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --libexecdir=/usr/lib/iwd \
+   --localstatedir=/var
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make install DESTDIR="${pkgdir}"
+}
+
+# vim: set ts=2 sw=2 ft=sh noet:

Deleted: iwd@.service
===
--- iwd@.service2018-06-15 15:28:46 UTC (rev 343319)
+++ iwd@.service2018-06-15 15:28:51 UTC (rev 343320)
@@ -1,12 +0,0 @@
-[Unit]
-Description=Internet Wireless Daemon (IWD)
-Requires=sys-subsystem-net-devices-%i.device
-After=sys-subsystem-net-devices-%i.device
-Before=network.target
-Wants=network.target
-
-[Service]
-ExecStart=/usr/lib/iwd/iwd -i %I
-
-[Install]
-Alias=multi-user.target.wants/iwd@%i.service


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

2018-06-15 Thread Antonio Rojas via arch-commits
Date: Friday, June 15, 2018 @ 14:30:56
  Author: arojas
Revision: 343318

archrelease: copy trunk to community-any

Added:
  jmol/repos/community-any/PKGBUILD
(from rev 343317, jmol/trunk/PKGBUILD)
Deleted:
  jmol/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 14:30:30 UTC (rev 343317)
+++ PKGBUILD2018-06-15 14:30:56 UTC (rev 343318)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: James Spencer 
-
-pkgname=jmol
-pkgver=14.29.16
-pkgrel=1
-pkgdesc="a Java 3D viewer for chemical structures"
-arch=(any)
-url="https://jmol.sourceforge.net;
-license=(LGPL)
-depends=(java-runtime)
-makedepends=(unzip)
-source=("https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.tar.gz;)
-sha256sums=('82a80f0ee7d1f913f6459d6adf66e8735a88a28eb23a3f9d884b6fcf816d4242')
-
-package() {
-  cd $pkgname-$pkgver
-
-  mkdir -p "$pkgdir"/usr/share/$pkgname
-  mkdir -p "$pkgdir"/usr/bin
-
-  unzip jsmol.zip -d "$pkgdir"/usr/share/
-  rm jsmol.zip
-
-  cp *.jar jmol.sh "$pkgdir"/usr/share/$pkgname
-  ln -s /usr/share/$pkgname/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
-}

Copied: jmol/repos/community-any/PKGBUILD (from rev 343317, jmol/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 14:30:56 UTC (rev 343318)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: James Spencer 
+
+pkgname=jmol
+pkgver=14.29.17
+pkgrel=1
+pkgdesc="a Java 3D viewer for chemical structures"
+arch=(any)
+url="https://jmol.sourceforge.net;
+license=(LGPL)
+depends=(java-runtime)
+makedepends=(unzip)
+source=("https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.tar.gz;)
+sha256sums=('5347e0df0781620d8e1cb7b933cd76ca04d19aef57ceea1b153f2988e25eddb6')
+
+package() {
+  cd $pkgname-$pkgver
+
+  mkdir -p "$pkgdir"/usr/share/$pkgname
+  mkdir -p "$pkgdir"/usr/bin
+
+  unzip jsmol.zip -d "$pkgdir"/usr/share/
+  rm jsmol.zip
+
+  cp *.jar jmol.sh "$pkgdir"/usr/share/$pkgname
+  ln -s /usr/share/$pkgname/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
+}


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

2018-06-15 Thread Antonio Rojas via arch-commits
Date: Friday, June 15, 2018 @ 14:30:30
  Author: arojas
Revision: 343317

Update to 14.29.17

Modified:
  jmol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 14:07:09 UTC (rev 343316)
+++ PKGBUILD2018-06-15 14:30:30 UTC (rev 343317)
@@ -3,7 +3,7 @@
 # Contributor: James Spencer 
 
 pkgname=jmol
-pkgver=14.29.16
+pkgver=14.29.17
 pkgrel=1
 pkgdesc="a Java 3D viewer for chemical structures"
 arch=(any)
@@ -12,7 +12,7 @@
 depends=(java-runtime)
 makedepends=(unzip)
 
source=("https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.tar.gz;)
-sha256sums=('82a80f0ee7d1f913f6459d6adf66e8735a88a28eb23a3f9d884b6fcf816d4242')
+sha256sums=('5347e0df0781620d8e1cb7b933cd76ca04d19aef57ceea1b153f2988e25eddb6')
 
 package() {
   cd $pkgname-$pkgver


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

2018-06-15 Thread Eli Schwartz via arch-commits
Date: Friday, June 15, 2018 @ 14:06:52
  Author: eschwartz
Revision: 343315

upgpkg: python-markdown-math 0.6-1

upstream release
add tests

Modified:
  python-markdown-math/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 14:01:51 UTC (rev 343314)
+++ PKGBUILD2018-06-15 14:06:52 UTC (rev 343315)
@@ -4,19 +4,17 @@
 
 pkgbase=python-markdown-math
 pkgname=('python-markdown-math' 'python2-markdown-math')
-pkgver=0.5
-pkgrel=2
+pkgver=0.6
+pkgrel=1
 pkgdesc="Math extension for Python-Markdown"
 arch=('any')
 url="https://github.com/mitya57/python-markdown-math;
 license=('BSD')
 makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://files.pythonhosted.org/packages/source/${pkgbase:0:1}/${pkgbase}/${pkgbase}-${pkgver}.tar.gz"{,.asc}
-# license not in PyPI 
https://github.com/mitya57/python-markdown-math/issues/20
-"${pkgbase}-${pkgver}.LICENSE::${url}/raw/${pkgver}/LICENSE")
-sha256sums=('8f8803c92ac0847d18bd82a51fdb6acec90b2b54a4990650e627a0d4d3a78445'
-'SKIP'
-'790098f2d689d037aed29c5e11d185390bc1c122a6b97f91c0ccfa90f6fcdbae')
+checkdepends=('python-markdown' 'python2-markdown')
+source=("https://files.pythonhosted.org/packages/source/${pkgbase:0:1}/${pkgbase}/${pkgbase}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('c68d8cb9695cb7b435484403dc18941d1bad0ff148e4166d9417046a0d5d3022'
+'SKIP')
 validpgpkeys=('F24299FF1BBC9018B906A4CB6026936D2F1C8AE0') # Dmitry Shachnev 

 
 build() {
@@ -26,18 +24,25 @@
 python2 setup.py build
 }
 
+check() {
+cd "python-markdown-math-${pkgver}"
+
+python setup.py test
+python2 setup.py test
+}
+
 package_python-markdown-math() {
-depends=('python')
+depends=('python-markdown')
 
 cd "python-markdown-math-${pkgver}"
 python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 ../${pkgbase}-${pkgver}.LICENSE 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }
 
 package_python2-markdown-math() {
-depends=('python2')
+depends=('python2-markdown')
 
 cd "python-markdown-math-${pkgver}"
 python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 ../${pkgbase}-${pkgver}.LICENSE 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }


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

2018-06-15 Thread Eli Schwartz via arch-commits
Date: Friday, June 15, 2018 @ 14:07:09
  Author: eschwartz
Revision: 343316

archrelease: copy trunk to community-any

Added:
  python-markdown-math/repos/community-any/PKGBUILD
(from rev 343315, python-markdown-math/trunk/PKGBUILD)
Deleted:
  python-markdown-math/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 14:06:52 UTC (rev 343315)
+++ PKGBUILD2018-06-15 14:07:09 UTC (rev 343316)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Jiachen YANG 
-# AUR Maintainer: Marcus Scheunemann
-
-pkgbase=python-markdown-math
-pkgname=('python-markdown-math' 'python2-markdown-math')
-pkgver=0.5
-pkgrel=2
-pkgdesc="Math extension for Python-Markdown"
-arch=('any')
-url="https://github.com/mitya57/python-markdown-math;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://files.pythonhosted.org/packages/source/${pkgbase:0:1}/${pkgbase}/${pkgbase}-${pkgver}.tar.gz"{,.asc}
-# license not in PyPI 
https://github.com/mitya57/python-markdown-math/issues/20
-"${pkgbase}-${pkgver}.LICENSE::${url}/raw/${pkgver}/LICENSE")
-sha256sums=('8f8803c92ac0847d18bd82a51fdb6acec90b2b54a4990650e627a0d4d3a78445'
-'SKIP'
-'790098f2d689d037aed29c5e11d185390bc1c122a6b97f91c0ccfa90f6fcdbae')
-validpgpkeys=('F24299FF1BBC9018B906A4CB6026936D2F1C8AE0') # Dmitry Shachnev 

-
-build() {
-cd "python-markdown-math-${pkgver}"
-
-python setup.py build
-python2 setup.py build
-}
-
-package_python-markdown-math() {
-depends=('python')
-
-cd "python-markdown-math-${pkgver}"
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 ../${pkgbase}-${pkgver}.LICENSE 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python2-markdown-math() {
-depends=('python2')
-
-cd "python-markdown-math-${pkgver}"
-python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 ../${pkgbase}-${pkgver}.LICENSE 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-markdown-math/repos/community-any/PKGBUILD (from rev 343315, 
python-markdown-math/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 14:07:09 UTC (rev 343316)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Jiachen YANG 
+# AUR Maintainer: Marcus Scheunemann
+
+pkgbase=python-markdown-math
+pkgname=('python-markdown-math' 'python2-markdown-math')
+pkgver=0.6
+pkgrel=1
+pkgdesc="Math extension for Python-Markdown"
+arch=('any')
+url="https://github.com/mitya57/python-markdown-math;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-markdown' 'python2-markdown')
+source=("https://files.pythonhosted.org/packages/source/${pkgbase:0:1}/${pkgbase}/${pkgbase}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('c68d8cb9695cb7b435484403dc18941d1bad0ff148e4166d9417046a0d5d3022'
+'SKIP')
+validpgpkeys=('F24299FF1BBC9018B906A4CB6026936D2F1C8AE0') # Dmitry Shachnev 

+
+build() {
+cd "python-markdown-math-${pkgver}"
+
+python setup.py build
+python2 setup.py build
+}
+
+check() {
+cd "python-markdown-math-${pkgver}"
+
+python setup.py test
+python2 setup.py test
+}
+
+package_python-markdown-math() {
+depends=('python-markdown')
+
+cd "python-markdown-math-${pkgver}"
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-markdown-math() {
+depends=('python2-markdown')
+
+cd "python-markdown-math-${pkgver}"
+python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2018-06-15 Thread Eli Schwartz via arch-commits
Date: Friday, June 15, 2018 @ 14:01:51
  Author: eschwartz
Revision: 343314

archrelease: copy trunk to community-x86_64

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

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

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

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

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

2018-06-15 Thread Eli Schwartz via arch-commits
Date: Friday, June 15, 2018 @ 14:01:33
  Author: eschwartz
Revision: 343313

upgpkg: calibre 3.26.1-1

upstream release

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 13:26:47 UTC (rev 343312)
+++ PKGBUILD2018-06-15 14:01:33 UTC (rev 343313)
@@ -8,7 +8,7 @@
 # Contributor: Larry Hajali 
 
 pkgname=calibre
-pkgver=3.26.0
+pkgver=3.26.1
 pkgrel=1
 pkgdesc="Ebook management application"
 arch=('x86_64')
@@ -28,7 +28,7 @@
 )
 source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
 "https://calibre-ebook.com/signatures/${pkgname}-${pkgver}.tar.xz.sig;)
-sha256sums=('fecd0015e4fac7bd0deff7b5c9df503275e43de457aa3459b8ff4aee624143eb'
+sha256sums=('4016d2f8206e5e3724dbebb0a0fbea1f2d22e48f3bbb7f217c8372f34a02a344'
 'SKIP')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
 


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

2018-06-15 Thread Jiachen Yang via arch-commits
Date: Friday, June 15, 2018 @ 13:26:47
  Author: farseerfc
Revision: 343312

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 13:25:56 UTC (rev 343311)
+++ PKGBUILD2018-06-15 13:26:47 UTC (rev 343312)
@@ -1,62 +0,0 @@
-# Maintainer: Jiachen Yang 
-# AUR Maintainer: Hyacinthe Cartiaux 
-# Contributor: Bartosz Chmura 
-# Contributor: Alessio Sergi 
-# Contributor: alfplayer
-# Contributor: menta
-
-pkgname=retext
-pkgver=7.0.3
-pkgrel=1
-pkgdesc="A simple editor for Markdown and ReStructuredText markup languages"
-arch=('any')
-url="https://github.com/retext-project/retext;
-license=('GPL3')
-# for desktop integration: 'shared-mime-info' 'xdg-utils' 'desktop-file-utils'
-# for toolbar icons (see http://sourceforge.net/p/retext/tickets/44/): 'gconf'
-depends=('python-pyqt5' 'python-markups>=2.0.0' 'shared-mime-info' 'xdg-utils' 
'desktop-file-utils' 'hicolor-icon-theme' 'python-markdown' 
'python-markdown-math')
-makedepends=('imagemagick' 'qt5-tools' 'python-setuptools')
-optdepends=('python-docutils: for reStructuredText language support'
-'qt5-webkit: for WebKit preview'
-'python-pyenchant: for spell checking support')
-source=("https://github.com/retext-project/$pkgname/archive/$pkgver.tar.gz;
-"x-retext-markdown.xml"
-"x-retext-rst.xml")
-sha256sums=('ba32bd24776ba4f925d6a58ebd554880dd566d260c7c99e65cd71db3d7cadc89'
-'b51611479d3224eec2b58264ed91ace3eccb502b7b806dae3e7a3ab4aab8c4b8'
-'6fef80cccb14813d9cc74810c397a6cd7831d1ca243536759a47c6e8b6cc977a')
-
-prepare () {
-cd "$srcdir/retext-${pkgver}"
-#cd "$srcdir/retext"
-}
-
-build () {
-cd "$srcdir/retext-${pkgver}"
-#cd "$srcdir/retext"
-python3 setup.py build
-}
-
-package () {
-cd "$srcdir/retext-${pkgver}"
-#cd "$srcdir/retext"
-python3 setup.py install --root="$pkgdir" -O1
-
-# create /usr/share/* dirs
-_SHAREDIR="$pkgdir/usr/share"
-install -d -m 755 $_SHAREDIR/{applications,mime/packages}
-
-# install icons
-_ICONSDIR="$_SHAREDIR/icons/hicolor"
-for size in 16 22 24 32 48 128; do
-  install -d -m 755 $_ICONSDIR/${size}x${size}/apps
-  convert -resize $size icons/$pkgname.png 
$_ICONSDIR/${size}x${size}/apps/$pkgname.png
-done
-install -d -m 755 $_ICONSDIR/scalable/apps
-install -m 644 icons/$pkgname.svg $_ICONSDIR/scalable/apps/$pkgname.svg
-
-# install mime files
-install -m 644 $srcdir/x-retext-{markdown,rst}.xml 
$_SHAREDIR/mime/packages/
-}
-
-# vim:set ts=2 sw=2 et:

Copied: retext/repos/community-any/PKGBUILD (from rev 343311, 
retext/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 13:26:47 UTC (rev 343312)
@@ -0,0 +1,59 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Hyacinthe Cartiaux 
+# Contributor: Bartosz Chmura 
+# Contributor: Alessio Sergi 
+# Contributor: alfplayer
+# Contributor: menta
+
+_pkgname=ReText
+pkgname=retext
+pkgver=7.0.3
+pkgrel=2
+pkgdesc="A simple editor for Markdown and ReStructuredText markup languages"
+arch=('any')
+url="https://github.com/retext-project/retext;
+license=('GPL3')
+# for desktop integration: 'shared-mime-info' 'xdg-utils' 'desktop-file-utils'
+# for toolbar icons (see http://sourceforge.net/p/retext/tickets/44/): 'gconf'
+depends=('python-pyqt5' 'python-markups>=2.0.0' 'shared-mime-info' 'xdg-utils'
+ 'desktop-file-utils' 'hicolor-icon-theme' 'python-markdown')
+makedepends=('imagemagick' 'qt5-tools' 'python-setuptools')
+optdepends=('python-docutils: for reStructuredText language support'
+'qt5-webkit: for WebKit preview'
+'python-pyenchant: for spell checking support')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc}
+"x-retext-markdown.xml"
+"x-retext-rst.xml")
+sha256sums=('e549697c9b7254930c8529e5b1d44155980fcd3d182d95be39b01387af71673c'
+'SKIP'
+'b51611479d3224eec2b58264ed91ace3eccb502b7b806dae3e7a3ab4aab8c4b8'
+'6fef80cccb14813d9cc74810c397a6cd7831d1ca243536759a47c6e8b6cc977a')
+validpgpkeys=('F24299FF1BBC9018B906A4CB6026936D2F1C8AE0') # Dmitry Shachnev 

+
+build () {
+cd 

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

2018-06-15 Thread Jiachen Yang via arch-commits
Date: Friday, June 15, 2018 @ 13:25:56
  Author: farseerfc
Revision: 343311

upgpkg: retext 7.0.3-2

retext: update for python-markups depends

Modified:
  retext/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 13:18:28 UTC (rev 343310)
+++ PKGBUILD2018-06-15 13:25:56 UTC (rev 343311)
@@ -5,9 +5,10 @@
 # Contributor: alfplayer
 # Contributor: menta
 
+_pkgname=ReText
 pkgname=retext
 pkgver=7.0.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A simple editor for Markdown and ReStructuredText markup languages"
 arch=('any')
 url="https://github.com/retext-project/retext;
@@ -14,32 +15,28 @@
 license=('GPL3')
 # for desktop integration: 'shared-mime-info' 'xdg-utils' 'desktop-file-utils'
 # for toolbar icons (see http://sourceforge.net/p/retext/tickets/44/): 'gconf'
-depends=('python-pyqt5' 'python-markups>=2.0.0' 'shared-mime-info' 'xdg-utils' 
'desktop-file-utils' 'hicolor-icon-theme' 'python-markdown' 
'python-markdown-math')
+depends=('python-pyqt5' 'python-markups>=2.0.0' 'shared-mime-info' 'xdg-utils'
+ 'desktop-file-utils' 'hicolor-icon-theme' 'python-markdown')
 makedepends=('imagemagick' 'qt5-tools' 'python-setuptools')
 optdepends=('python-docutils: for reStructuredText language support'
 'qt5-webkit: for WebKit preview'
 'python-pyenchant: for spell checking support')
-source=("https://github.com/retext-project/$pkgname/archive/$pkgver.tar.gz;
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc}
 "x-retext-markdown.xml"
 "x-retext-rst.xml")
-sha256sums=('ba32bd24776ba4f925d6a58ebd554880dd566d260c7c99e65cd71db3d7cadc89'
+sha256sums=('e549697c9b7254930c8529e5b1d44155980fcd3d182d95be39b01387af71673c'
+'SKIP'
 'b51611479d3224eec2b58264ed91ace3eccb502b7b806dae3e7a3ab4aab8c4b8'
 '6fef80cccb14813d9cc74810c397a6cd7831d1ca243536759a47c6e8b6cc977a')
+validpgpkeys=('F24299FF1BBC9018B906A4CB6026936D2F1C8AE0') # Dmitry Shachnev 

 
-prepare () {
-cd "$srcdir/retext-${pkgver}"
-#cd "$srcdir/retext"
-}
-
 build () {
-cd "$srcdir/retext-${pkgver}"
-#cd "$srcdir/retext"
+cd "$srcdir/${_pkgname}-${pkgver}"
 python3 setup.py build
 }
 
 package () {
-cd "$srcdir/retext-${pkgver}"
-#cd "$srcdir/retext"
+cd "$srcdir/${_pkgname}-${pkgver}"
 python3 setup.py install --root="$pkgdir" -O1
 
 # create /usr/share/* dirs


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 13:18:16
  Author: felixonmars
Revision: 343309

upgpkg: acorn 5.7.1-1

Modified:
  acorn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 13:03:45 UTC (rev 343308)
+++ PKGBUILD2018-06-15 13:18:16 UTC (rev 343309)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=acorn
-pkgver=5.7.0
+pkgver=5.7.1
 pkgrel=1
 pkgdesc='A tiny, fast JavaScript parser, written completely in JavaScript.'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('npm')
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('6bee7031a48865c579043dbabeb497427b4494dca1f955df2e6c0c9fb4cab6fc2eea9be0ffce23e7c22b6f0afd545bc2a155b124caaec35640a667f8a4747153')
+sha512sums=('77e9dbc415062a0ec0ae9b2f6e796aeb599cd767a4dc463c11095d33718f021589d545710ba4c319b22f50c354ea86c15f78b5fa9b42233578bead2014f10655')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 13:18:28
  Author: felixonmars
Revision: 343310

archrelease: copy trunk to community-any

Added:
  acorn/repos/community-any/PKGBUILD
(from rev 343309, acorn/trunk/PKGBUILD)
Deleted:
  acorn/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 13:18:16 UTC (rev 343309)
+++ PKGBUILD2018-06-15 13:18:28 UTC (rev 343310)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=acorn
-pkgver=5.7.0
-pkgrel=1
-pkgdesc='A tiny, fast JavaScript parser, written completely in JavaScript.'
-arch=('any')
-url='https://github.com/ternjs/acorn'
-license=('MIT')
-depends=('nodejs')
-makedepends=('npm')
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('6bee7031a48865c579043dbabeb497427b4494dca1f955df2e6c0c9fb4cab6fc2eea9be0ffce23e7c22b6f0afd545bc2a155b124caaec35640a667f8a4747153')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: acorn/repos/community-any/PKGBUILD (from rev 343309, 
acorn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 13:18:28 UTC (rev 343310)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=acorn
+pkgver=5.7.1
+pkgrel=1
+pkgdesc='A tiny, fast JavaScript parser, written completely in JavaScript.'
+arch=('any')
+url='https://github.com/ternjs/acorn'
+license=('MIT')
+depends=('nodejs')
+makedepends=('npm')
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('77e9dbc415062a0ec0ae9b2f6e796aeb599cd767a4dc463c11095d33718f021589d545710ba4c319b22f50c354ea86c15f78b5fa9b42233578bead2014f10655')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+}


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

2018-06-15 Thread NicoHood via arch-commits
Date: Friday, June 15, 2018 @ 13:03:45
  Author: nicohood
Revision: 343308

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 13:03:09 UTC (rev 343307)
+++ PKGBUILD2018-06-15 13:03:45 UTC (rev 343308)
@@ -1,42 +0,0 @@
-# Maintainer: NicoHood 
-# PGP ID: 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161
-# Contributor: Sven Klomp 
-
-_pkgname=python-gnupg
-pkgbase=python-gnupg
-pkgname=('python-gnupg' 'python2-gnupg')
-pkgdesc="A Python wrapper for GnuPG"
-pkgver=0.4.2
-pkgrel=1
-url="https://pythonhosted.org/python-gnupg/;
-license=("BSD")
-arch=("any")
-makedepends=('python' 'python2')
-source=("https://pypi.io/packages/source/p/python-gnupg/${_pkgname}-${pkgver}.tar.gz;
-   
"https://pypi.io/packages/source/p/python-gnupg/${_pkgname}-${pkgver}.tar.gz.asc;)
-sha512sums=('7d4745a407b22764cc376dd5a1e7000e1ebb4c450a6817987e06bca7a19c315953a36511d184bfafb1512ceddad3aa4cac6bfa1ac17e0109245ff7e3e79e8d42'
-'SKIP')
-validpgpkeys=('CA749061914EAC138E66EADB9147B477339A9B86') # Vinay Sajip (CODE 
SIGNING KEY) 
-
-prepare() {
-# Create a copy for the python2 package
-cp -r "${_pkgname}-${pkgver}" "python2-${_pkgname}-${pkgver}"
-}
-
-package_python-gnupg() {
-pkgdesc="A Python 3 wrapper for GnuPG"
-depends=('python' 'gnupg')
-
-cd "${srcdir}/${_pkgname}-${pkgver}"
-python setup.py install --root="${pkgdir}" --optimize=1
-install -D -m644 LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-gnupg() {
-pkgdesc="A Python 2 wrapper for GnuPG"
-depends=('python2' 'gnupg')
-
-cd "${srcdir}/python2-${_pkgname}-${pkgver}"
-python2 setup.py install --root="${pkgdir}" --optimize=1
-install -D -m644 LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-gnupg/repos/community-any/PKGBUILD (from rev 343307, 
python-gnupg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 13:03:45 UTC (rev 343308)
@@ -0,0 +1,42 @@
+# Maintainer: NicoHood 
+# PGP ID: 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161
+# Contributor: Sven Klomp 
+
+_pkgname=python-gnupg
+pkgbase=python-gnupg
+pkgname=('python-gnupg' 'python2-gnupg')
+pkgdesc="A Python wrapper for GnuPG"
+pkgver=0.4.3
+pkgrel=1
+url="https://pythonhosted.org/python-gnupg/;
+license=("BSD")
+arch=("any")
+makedepends=('python' 'python2')
+source=("https://pypi.io/packages/source/p/python-gnupg/${_pkgname}-${pkgver}.tar.gz;
+   
"https://pypi.io/packages/source/p/python-gnupg/${_pkgname}-${pkgver}.tar.gz.asc;)
+sha512sums=('9381acb1246b6ceec4de21091f2ce57dba9c6600dfb52ddee181effbd2e749d18935e6b6bb2183816064e9129cd1bb3ebfdd28a5dcddc9be1c56261a501067d8'
+'SKIP')
+validpgpkeys=('CA749061914EAC138E66EADB9147B477339A9B86') # Vinay Sajip (CODE 
SIGNING KEY) 
+
+prepare() {
+# Create a copy for the python2 package
+cp -r "${_pkgname}-${pkgver}" "python2-${_pkgname}-${pkgver}"
+}
+
+package_python-gnupg() {
+pkgdesc="A Python 3 wrapper for GnuPG"
+depends=('python' 'gnupg')
+
+cd "${srcdir}/${_pkgname}-${pkgver}"
+python setup.py install --root="${pkgdir}" --optimize=1
+install -D -m644 LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-gnupg() {
+pkgdesc="A Python 2 wrapper for GnuPG"
+depends=('python2' 'gnupg')
+
+cd "${srcdir}/python2-${_pkgname}-${pkgver}"
+python2 setup.py install --root="${pkgdir}" --optimize=1
+install -D -m644 LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2018-06-15 Thread NicoHood via arch-commits
Date: Friday, June 15, 2018 @ 13:03:09
  Author: nicohood
Revision: 343307

upgpkg: python-gnupg 0.4.3-1

Modified:
  python-gnupg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 10:54:05 UTC (rev 343306)
+++ PKGBUILD2018-06-15 13:03:09 UTC (rev 343307)
@@ -6,7 +6,7 @@
 pkgbase=python-gnupg
 pkgname=('python-gnupg' 'python2-gnupg')
 pkgdesc="A Python wrapper for GnuPG"
-pkgver=0.4.2
+pkgver=0.4.3
 pkgrel=1
 url="https://pythonhosted.org/python-gnupg/;
 license=("BSD")
@@ -14,7 +14,7 @@
 makedepends=('python' 'python2')
 
source=("https://pypi.io/packages/source/p/python-gnupg/${_pkgname}-${pkgver}.tar.gz;

"https://pypi.io/packages/source/p/python-gnupg/${_pkgname}-${pkgver}.tar.gz.asc;)
-sha512sums=('7d4745a407b22764cc376dd5a1e7000e1ebb4c450a6817987e06bca7a19c315953a36511d184bfafb1512ceddad3aa4cac6bfa1ac17e0109245ff7e3e79e8d42'
+sha512sums=('9381acb1246b6ceec4de21091f2ce57dba9c6600dfb52ddee181effbd2e749d18935e6b6bb2183816064e9129cd1bb3ebfdd28a5dcddc9be1c56261a501067d8'
 'SKIP')
 validpgpkeys=('CA749061914EAC138E66EADB9147B477339A9B86') # Vinay Sajip (CODE 
SIGNING KEY) 
 


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

2018-06-15 Thread Jan Steffens via arch-commits
Date: Friday, June 15, 2018 @ 11:56:30
  Author: heftig
Revision: 327002

archrelease: copy trunk to extra-x86_64

Added:
  totem/repos/extra-x86_64/PKGBUILD
(from rev 327001, totem/trunk/PKGBUILD)
Deleted:
  totem/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 11:55:47 UTC (rev 327001)
+++ PKGBUILD2018-06-15 11:56:30 UTC (rev 327002)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=totem
-pkgver=3.26.0+37+g84700147
-pkgrel=1
-pkgdesc="Movie player for the GNOME desktop based on GStreamer"
-url="https://wiki.gnome.org/Apps/Videos;
-arch=(x86_64)
-license=(GPL2 custom)
-depends=(totem-plparser iso-codes libpeas clutter-gtk clutter-gst grilo 
gsettings-desktop-schemas
- dconf python-gobject python-xdg gnome-desktop gst-plugins-base 
gst-plugins-good
- gst-plugins-bad)
-makedepends=(libnautilus-extension lirc itstool docbook-xsl python-pylint
- gobject-introspection git appstream-glib gtk-doc meson intltool)
-optdepends=('gst-plugins-ugly: Extra media codecs'
-'gst-libav: Extra media codecs'
-'lirc-utils: Infrared Remote Control plugin'
-'grilo-plugins: Media discovery'
-'python-dbus: MPRIS plugin')
-groups=(gnome)
-conflicts=(totem-plugin)
-replaces=(totem-plugin)
-_commit=84700147475c3272400c7aa70aaec0a8807bb08e  # master
-source=("git+https://git.gnome.org/browse/totem#commit=$_commit;
-"git+https://git.gnome.org/browse/libgd;)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^V_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.subprojects/libgd.url "$srcdir/libgd"
-  git submodule update
-}
-
-build() {
-  arch-meson $pkgname build -D enable-gtk-doc=true -D enable-vala=no -D 
b_lto=false
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-  install -Dm644 $pkgname/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: totem/repos/extra-x86_64/PKGBUILD (from rev 327001, 
totem/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 11:56:30 UTC (rev 327002)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=totem
+pkgver=3.26.1
+pkgrel=1
+pkgdesc="Movie player for the GNOME desktop based on GStreamer"
+url="https://wiki.gnome.org/Apps/Videos;
+arch=(x86_64)
+license=(GPL2 custom)
+depends=(totem-plparser iso-codes libpeas clutter-gtk clutter-gst grilo 
gsettings-desktop-schemas
+ dconf python-gobject python-xdg gnome-desktop gst-plugins-base 
gst-plugins-good
+ gst-plugins-bad)
+makedepends=(libnautilus-extension lirc itstool docbook-xsl python-pylint
+ gobject-introspection git appstream-glib gtk-doc meson intltool)
+optdepends=('gst-plugins-ugly: Extra media codecs'
+'gst-libav: Extra media codecs'
+'lirc-utils: Infrared Remote Control plugin'
+'grilo-plugins: Media discovery'
+'python-dbus: MPRIS plugin')
+groups=(gnome)
+conflicts=(totem-plugin)
+replaces=(totem-plugin)
+_commit=a1250298555107734bbe7fdcb7e566197e2c4117  # tags/V_3_26_1^0
+source=("git+https://gitlab.gnome.org/GNOME/totem.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libgd.git;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^V_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.subprojects/libgd.url "$srcdir/libgd"
+  git submodule update
+}
+
+build() {
+  arch-meson $pkgname build -D enable-gtk-doc=true -D enable-vala=no -D 
b_lto=false
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING
+}


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

2018-06-15 Thread Jan Steffens via arch-commits
Date: Friday, June 15, 2018 @ 11:55:47
  Author: heftig
Revision: 327001

3.26.1-1

Modified:
  totem/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 01:55:07 UTC (rev 327000)
+++ PKGBUILD2018-06-15 11:55:47 UTC (rev 327001)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=totem
-pkgver=3.26.0+37+g84700147
+pkgver=3.26.1
 pkgrel=1
 pkgdesc="Movie player for the GNOME desktop based on GStreamer"
 url="https://wiki.gnome.org/Apps/Videos;
@@ -22,9 +22,9 @@
 groups=(gnome)
 conflicts=(totem-plugin)
 replaces=(totem-plugin)
-_commit=84700147475c3272400c7aa70aaec0a8807bb08e  # master
-source=("git+https://git.gnome.org/browse/totem#commit=$_commit;
-"git+https://git.gnome.org/browse/libgd;)
+_commit=a1250298555107734bbe7fdcb7e566197e2c4117  # tags/V_3_26_1^0
+source=("git+https://gitlab.gnome.org/GNOME/totem.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libgd.git;)
 sha256sums=('SKIP'
 'SKIP')
 
@@ -48,5 +48,5 @@
 
 package() {
   DESTDIR="$pkgdir" ninja -C build install
-  install -Dm644 $pkgname/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING
 }


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 10:48:20
  Author: felixonmars
Revision: 343300

upgpkg: hopenpgp-tools 0.21.1-12

rebuild with prettyprinter 1.2.1

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 10:47:06 UTC (rev 343299)
+++ PKGBUILD2018-06-15 10:48:20 UTC (rev 343300)
@@ -4,7 +4,7 @@
 
 pkgname=hopenpgp-tools
 pkgver=0.21.1
-pkgrel=11
+pkgrel=12
 pkgdesc="hOpenPGP-based command-line tools"
 url="http://floss.scru.org/hopenpgp-tools;
 license=("AGPL3")


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 10:48:40
  Author: felixonmars
Revision: 343301

archrelease: copy trunk to community-staging-x86_64

Added:
  hopenpgp-tools/repos/community-staging-x86_64/
  hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD
(from rev 343300, hopenpgp-tools/trunk/PKGBUILD)

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

Copied: hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD (from rev 
343300, hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-06-15 10:48:40 UTC (rev 343301)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.21.1
+pkgrel=12
+pkgdesc="hOpenPGP-based command-line tools"
+url="http://floss.scru.org/hopenpgp-tools;
+license=("AGPL3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-crypto-pubkey'
+ 'haskell-cryptohash' 'haskell-errors' 'haskell-fgl' 
'haskell-graphviz' 'haskell-hopenpgp'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-ixset-typed'
+ 'haskell-lens' 'haskell-monad-loops' 'haskell-openpgp-asciiarmor'
+ 'haskell-optparse-applicative' 'haskell-prettyprinter'
+ 'haskell-prettyprinter-ansi-terminal' 
'haskell-prettyprinter-convert-ansi-wl-pprint'
+ 'haskell-resourcet' 'haskell-time-locale-compat' 'haskell-yaml')
+makedepends=('alex' 'happy' 'ghc')
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('0f079cdc3d99c5e2679810c38d57e40a045bf91c26fd734c50a7715f803efa9367d2ee389dd8362c1c1d00f75227370b481e9b1fb74ad41c8fb0fc51c5c71e38')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}


[arch-commits] Commit in haskell-prettyprinter-convert-ansi-wl-pprint/repos (2 files)

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 10:47:06
  Author: felixonmars
Revision: 343299

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-prettyprinter-convert-ansi-wl-pprint/repos/community-staging-x86_64/
  
haskell-prettyprinter-convert-ansi-wl-pprint/repos/community-staging-x86_64/PKGBUILD
(from rev 343298, 
haskell-prettyprinter-convert-ansi-wl-pprint/trunk/PKGBUILD)

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

Copied: 
haskell-prettyprinter-convert-ansi-wl-pprint/repos/community-staging-x86_64/PKGBUILD
 (from rev 343298, haskell-prettyprinter-convert-ansi-wl-pprint/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-06-15 10:47:06 UTC (rev 343299)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=prettyprinter-convert-ansi-wl-pprint
+pkgname=haskell-prettyprinter-convert-ansi-wl-pprint
+pkgver=1.1
+pkgrel=8
+pkgdesc="Converter from ansi-wl-pprint documents to prettyprinter-based ones."
+url="https://github.com/quchen/prettyprinter;
+license=('custom:BSD2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-ansi-wl-pprint' 
'haskell-prettyprinter'
+ 'haskell-prettyprinter-ansi-terminal')
+makedepends=('ghc' 'haskell-doctest')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('d5587fd33e5175149781c21d577a2e18b4f84731ed9deb692f22ea25f85212ac13b300176b13ae3f54d07fb3a720fda6c5561052d68f4832dc255fbf85c05aea')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}


[arch-commits] Commit in haskell-prettyprinter-convert-ansi-wl-pprint/trunk (PKGBUILD)

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 10:46:43
  Author: felixonmars
Revision: 343298

upgpkg: haskell-prettyprinter-convert-ansi-wl-pprint 1.1-8

rebuild with prettyprinter 1.2.1

Modified:
  haskell-prettyprinter-convert-ansi-wl-pprint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 10:46:11 UTC (rev 343297)
+++ PKGBUILD2018-06-15 10:46:43 UTC (rev 343298)
@@ -4,7 +4,7 @@
 _hkgname=prettyprinter-convert-ansi-wl-pprint
 pkgname=haskell-prettyprinter-convert-ansi-wl-pprint
 pkgver=1.1
-pkgrel=7
+pkgrel=8
 pkgdesc="Converter from ansi-wl-pprint documents to prettyprinter-based ones."
 url="https://github.com/quchen/prettyprinter;
 license=('custom:BSD2')


[arch-commits] Commit in haskell-prettyprinter-ansi-terminal/repos (2 files)

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 10:46:11
  Author: felixonmars
Revision: 343297

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-prettyprinter-ansi-terminal/repos/community-staging-x86_64/
  haskell-prettyprinter-ansi-terminal/repos/community-staging-x86_64/PKGBUILD
(from rev 343296, haskell-prettyprinter-ansi-terminal/trunk/PKGBUILD)

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

Copied: 
haskell-prettyprinter-ansi-terminal/repos/community-staging-x86_64/PKGBUILD 
(from rev 343296, haskell-prettyprinter-ansi-terminal/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-06-15 10:46:11 UTC (rev 343297)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=prettyprinter-ansi-terminal
+pkgname=haskell-prettyprinter-ansi-terminal
+pkgver=1.1.1.2
+pkgrel=11
+pkgdesc="ANSI terminal backend for the prettyprinter package."
+url="https://github.com/quchen/prettyprinter-ansi-terminal;
+license=('custom:BSD2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-prettyprinter')
+makedepends=('ghc' 'haskell-doctest')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('b2ac6c76ce6570b285370c9b1a466272aa5a3ba86a9f1de996392d750d212ff62a743e9c3c28f7de7951c9b270d64c97cb695166b65d642751942d682ff1a71b')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-buildReadme
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}


[arch-commits] Commit in haskell-prettyprinter-ansi-terminal/trunk (PKGBUILD)

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 10:45:51
  Author: felixonmars
Revision: 343296

upgpkg: haskell-prettyprinter-ansi-terminal 1.1.1.2-11

rebuild with prettyprinter 1.2.1

Modified:
  haskell-prettyprinter-ansi-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 10:45:18 UTC (rev 343295)
+++ PKGBUILD2018-06-15 10:45:51 UTC (rev 343296)
@@ -4,7 +4,7 @@
 _hkgname=prettyprinter-ansi-terminal
 pkgname=haskell-prettyprinter-ansi-terminal
 pkgver=1.1.1.2
-pkgrel=10
+pkgrel=11
 pkgdesc="ANSI terminal backend for the prettyprinter package."
 url="https://github.com/quchen/prettyprinter-ansi-terminal;
 license=('custom:BSD2')


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 10:45:18
  Author: felixonmars
Revision: 343295

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hopenpgp/repos/community-staging-x86_64/PKGBUILD (from rev 
343294, haskell-hopenpgp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-06-15 10:45:18 UTC (rev 343295)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hOpenPGP
+pkgname=haskell-hopenpgp
+pkgver=2.7
+pkgrel=18
+pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
+url="http://floss.scru.org/hOpenPGP/;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-asn1-encoding' 
'haskell-attoparsec'
+ 'haskell-base16-bytestring' 'haskell-base64-bytestring' 
'haskell-bifunctors'
+ 'haskell-bzlib' 'haskell-binary-conduit' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-crypto-cipher-types' 'haskell-errors' 
'haskell-hashable'
+ 'haskell-incremental-parser' 'haskell-ixset-typed' 'haskell-lens' 
'haskell-memory'
+ 'haskell-monad-loops' 'haskell-nettle' 'haskell-network-uri' 
'haskell-newtype'
+ 'haskell-openpgp-asciiarmor' 'haskell-prettyprinter' 
'haskell-resourcet' 'haskell-split'
+ 'haskell-time-locale-compat' 'haskell-unliftio-core' 
'haskell-unordered-containers'
+ 'haskell-wl-pprint-extras' 'haskell-zlib')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('6432f54853af4562b5c61f0d97fe40dd4a5872f07e07c470ae41e951b11cbe00f491ce469c5d0caa897ba046c44e65fcaff0e4c9db825126b35f7aa15fc6bb40')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 10:43:32
  Author: felixonmars
Revision: 343294

upgpkg: haskell-hopenpgp 2.7-18

rebuild with prettyprinter 1.2.1

Modified:
  haskell-hopenpgp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 10:41:53 UTC (rev 343293)
+++ PKGBUILD2018-06-15 10:43:32 UTC (rev 343294)
@@ -4,7 +4,7 @@
 _hkgname=hOpenPGP
 pkgname=haskell-hopenpgp
 pkgver=2.7
-pkgrel=17
+pkgrel=18
 pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
 url="http://floss.scru.org/hOpenPGP/;
 license=('MIT')


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 10:41:53
  Author: felixonmars
Revision: 343293

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-prettyprinter/repos/community-staging-x86_64/PKGBUILD (from rev 
343292, haskell-prettyprinter/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-06-15 10:41:53 UTC (rev 343293)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=prettyprinter
+pkgname=haskell-prettyprinter
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="A modern, easy to use, well-documented, extensible prettyprinter."
+url="https://github.com/hspec/prettyprinter;
+license=('custom:BSD2')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-doctest' 'haskell-pgp-wordlist' 'haskell-tasty' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('910643bc38c90efa4c982bda9fbf70e9eb6a679af879950bf4a9cbb5b1a5564f17f2f9c22e34daf50d7a38966542dd988d50ae43512278f9c323bb8b747379da')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-buildReadme
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 10:41:35
  Author: felixonmars
Revision: 343292

upgpkg: haskell-prettyprinter 1.2.1-1

rebuild with prettyprinter 1.2.1

Modified:
  haskell-prettyprinter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 10:38:54 UTC (rev 343291)
+++ PKGBUILD2018-06-15 10:41:35 UTC (rev 343292)
@@ -3,8 +3,8 @@
 
 _hkgname=prettyprinter
 pkgname=haskell-prettyprinter
-pkgver=1.2.0.1
-pkgrel=10
+pkgver=1.2.1
+pkgrel=1
 pkgdesc="A modern, easy to use, well-documented, extensible prettyprinter."
 url="https://github.com/hspec/prettyprinter;
 license=('custom:BSD2')
@@ -13,7 +13,7 @@
 makedepends=('ghc' 'haskell-doctest' 'haskell-pgp-wordlist' 'haskell-tasty' 
'haskell-tasty-hunit'
  'haskell-tasty-quickcheck')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('f51e546915d799a07f7b7a60c53f1cd1491535bcad6199341c14aeb96250da85f5527b94ad19e2c297fcf4b02d4561c2eaad1458c4b9c870fb0dcfeb142d9771')
+sha512sums=('910643bc38c90efa4c982bda9fbf70e9eb6a679af879950bf4a9cbb5b1a5564f17f2f9c22e34daf50d7a38966542dd988d50ae43512278f9c323bb8b747379da')
 
 build() {
 cd $_hkgname-$pkgver


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 10:38:54
  Author: felixonmars
Revision: 343291

archrelease: copy trunk to community-any

Added:
  acorn/repos/community-any/PKGBUILD
(from rev 343290, acorn/trunk/PKGBUILD)
Deleted:
  acorn/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 10:38:32 UTC (rev 343290)
+++ PKGBUILD2018-06-15 10:38:54 UTC (rev 343291)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=acorn
-pkgver=5.6.2
-pkgrel=1
-pkgdesc='A tiny, fast JavaScript parser, written completely in JavaScript.'
-arch=('any')
-url='https://github.com/ternjs/acorn'
-license=('MIT')
-depends=('nodejs')
-makedepends=('npm')
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('cd4ce8d44e5d236132f3ef367a07e7b6dc8c94c676cb40fcc4e08edcf34f3e5617a65f0d66f17a424f4bf4112d26cfb8dc5a8499f055883a9ce5dd5c9110e0bb')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: acorn/repos/community-any/PKGBUILD (from rev 343290, 
acorn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 10:38:54 UTC (rev 343291)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=acorn
+pkgver=5.7.0
+pkgrel=1
+pkgdesc='A tiny, fast JavaScript parser, written completely in JavaScript.'
+arch=('any')
+url='https://github.com/ternjs/acorn'
+license=('MIT')
+depends=('nodejs')
+makedepends=('npm')
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('6bee7031a48865c579043dbabeb497427b4494dca1f955df2e6c0c9fb4cab6fc2eea9be0ffce23e7c22b6f0afd545bc2a155b124caaec35640a667f8a4747153')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+}


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 10:38:32
  Author: felixonmars
Revision: 343290

upgpkg: acorn 5.7.0-1

Modified:
  acorn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 08:35:48 UTC (rev 343289)
+++ PKGBUILD2018-06-15 10:38:32 UTC (rev 343290)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=acorn
-pkgver=5.6.2
+pkgver=5.7.0
 pkgrel=1
 pkgdesc='A tiny, fast JavaScript parser, written completely in JavaScript.'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('npm')
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('cd4ce8d44e5d236132f3ef367a07e7b6dc8c94c676cb40fcc4e08edcf34f3e5617a65f0d66f17a424f4bf4112d26cfb8dc5a8499f055883a9ce5dd5c9110e0bb')
+sha512sums=('6bee7031a48865c579043dbabeb497427b4494dca1f955df2e6c0c9fb4cab6fc2eea9be0ffce23e7c22b6f0afd545bc2a155b124caaec35640a667f8a4747153')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2018-06-15 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, June 15, 2018 @ 08:35:48
  Author: svenstaro
Revision: 343289

archrelease: copy trunk to community-any

Added:
  ansible/repos/community-any/PKGBUILD
(from rev 343288, ansible/trunk/PKGBUILD)
Deleted:
  ansible/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 08:35:42 UTC (rev 343288)
+++ PKGBUILD2018-06-15 08:35:48 UTC (rev 343289)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Daniel Wallace 
-# Contributor: Chris 
-# Contributor: m0ikz 
-# Contributor: atweiden 
-
-pkgname=ansible
-pkgver=2.5.4
-pkgrel=1
-pkgdesc='Radically simple IT automation platform'
-arch=('any')
-url='https://www.ansible.com'
-license=('GPL3')
-depends=('python' 'python-yaml' 'python-paramiko' 'python-jinja' 
'python-crypto')
-provides=('python-ansible')
-replaces=('python-ansible')
-conflicts=('python-ansible')
-optdepends=('sshpass: for ssh connections with password'
-'python-passlib: crypt values for vars_prompt'
-'python-pyopenssl: openssl modules'
-'python-netaddr: for the ipaddr filter'
-'python-systemd: log to journal'
-'python-pywinrm: connect to Windows machines'
-'python-dnspython: for dig lookup'
-'python-ovirt-engine-sdk: ovirt support'
-'python-boto3: aws_s3 module'
-'python-jmespath: json_query support'
-'acme-tiny: openssl_certificate module')
-makedepends=('asciidoc' 'fakeroot' 'python-setuptools')
-backup=('etc/ansible/ansible.cfg')
-source=("https://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz;)
-sha512sums=('4e39547c5df38e407b06e5f20f7caa50e599fa6283693afdbc2c808565593e908b2067b71fb287c4ad0aab8f283c8bb29bea438d534f827a37ed416c7325ea82')
-
-prepare() {
-  cp -r ${pkgname}-${pkgver} "${srcdir}"/${pkgname}-${pkgver}-python
-}
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  python setup.py build
-
-  cd "${srcdir}"/${pkgname}-${pkgver}-python
-  python setup.py build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install -O1 --root="${pkgdir}"
-  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/ansible/COPYING
-
-  install -d "${pkgdir}"/usr/share/ansible/doc
-  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
-  install -Dm644 examples/ansible.cfg "${pkgdir}"/etc/ansible/ansible.cfg
-
-  install -d "${pkgdir}"/usr/share/man/man1
-  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
"${pkgdir}"/usr/share/man/man1
-}

Copied: ansible/repos/community-any/PKGBUILD (from rev 343288, 
ansible/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 08:35:48 UTC (rev 343289)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Daniel Wallace 
+# Contributor: Chris 
+# Contributor: m0ikz 
+# Contributor: atweiden 
+
+pkgname=ansible
+pkgver=2.5.5
+pkgrel=1
+pkgdesc='Radically simple IT automation platform'
+arch=('any')
+url='https://www.ansible.com'
+license=('GPL3')
+depends=('python' 'python-yaml' 'python-paramiko' 'python-jinja' 
'python-crypto')
+provides=('python-ansible')
+replaces=('python-ansible')
+conflicts=('python-ansible')
+optdepends=('sshpass: for ssh connections with password'
+'python-passlib: crypt values for vars_prompt'
+'python-pyopenssl: openssl modules'
+'python-netaddr: for the ipaddr filter'
+'python-systemd: log to journal'
+'python-pywinrm: connect to Windows machines'
+'python-dnspython: for dig lookup'
+'python-ovirt-engine-sdk: ovirt support'
+'python-boto3: aws_s3 module'
+'python-jmespath: json_query support'
+'acme-tiny: openssl_certificate module')
+makedepends=('asciidoc' 'fakeroot' 'python-setuptools')
+backup=('etc/ansible/ansible.cfg')
+source=("https://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz;)
+sha512sums=('a3d50539d2a109dc0bbcdb440e0800b917f63141dce935e6426cb6bdc51e3a93e02f05c23714c24ab00b19842a86677b8d2f2455d20ca15410fa8d3c8ba379ca')
+
+prepare() {
+  cp -r ${pkgname}-${pkgver} "${srcdir}"/${pkgname}-${pkgver}-python
+}
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  python setup.py build
+
+  cd "${srcdir}"/${pkgname}-${pkgver}-python
+  python setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}"
+  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/ansible/COPYING
+
+  install -d "${pkgdir}"/usr/share/ansible/doc
+  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
+  install -Dm644 

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

2018-06-15 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, June 15, 2018 @ 08:35:42
  Author: svenstaro
Revision: 343288

upgpkg: ansible 2.5.5-1

Modified:
  ansible/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 07:42:28 UTC (rev 343287)
+++ PKGBUILD2018-06-15 08:35:42 UTC (rev 343288)
@@ -7,7 +7,7 @@
 # Contributor: atweiden 
 
 pkgname=ansible
-pkgver=2.5.4
+pkgver=2.5.5
 pkgrel=1
 pkgdesc='Radically simple IT automation platform'
 arch=('any')
@@ -31,7 +31,7 @@
 makedepends=('asciidoc' 'fakeroot' 'python-setuptools')
 backup=('etc/ansible/ansible.cfg')
 source=("https://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz;)
-sha512sums=('4e39547c5df38e407b06e5f20f7caa50e599fa6283693afdbc2c808565593e908b2067b71fb287c4ad0aab8f283c8bb29bea438d534f827a37ed416c7325ea82')
+sha512sums=('a3d50539d2a109dc0bbcdb440e0800b917f63141dce935e6426cb6bdc51e3a93e02f05c23714c24ab00b19842a86677b8d2f2455d20ca15410fa8d3c8ba379ca')
 
 prepare() {
   cp -r ${pkgname}-${pkgver} "${srcdir}"/${pkgname}-${pkgver}-python


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 07:42:28
  Author: felixonmars
Revision: 343287

archrelease: copy trunk to community-x86_64

Added:
  v2ray/repos/community-x86_64/PKGBUILD
(from rev 343286, v2ray/trunk/PKGBUILD)
  v2ray/repos/community-x86_64/v2ray.service
(from rev 343286, v2ray/trunk/v2ray.service)
Deleted:
  v2ray/repos/community-x86_64/PKGBUILD
  v2ray/repos/community-x86_64/v2ray.service

---+
 PKGBUILD  |   92 
 v2ray.service |   26 +++
 2 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 07:42:09 UTC (rev 343286)
+++ PKGBUILD2018-06-15 07:42:28 UTC (rev 343287)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: pandada8 
-
-pkgname=v2ray
-pkgver=3.25.1
-pkgrel=1
-pkgdesc="A platform for building proxies to bypass network restrictions"
-arch=('x86_64')
-url="https://github.com/v2ray/v2ray-core;
-license=('MIT')
-makedepends=('go' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/v2ray-core/archive/v$pkgver.tar.gz;
-'v2ray.service')
-sha512sums=('ffa1846a2675302ad82208189a8d7d5c5c0150c275e829a6d371864a14aa7e13f21e3666983c481425f1ff3f85bc6de75493f062e6220eb8ff130f0e740661bf'
-
'bebb87f43b3920be8efde9aece9c4305323cd7d3a65a3b2441f0dbd0098c02a18ca89a5b08833eee70482cffae2c8e7b7237bb5a4d1076e3c30d273898e2bedb')
-
-prepare() {
-  export GOPATH="$srcdir/build"
-  go get v2ray.com/core github.com/miekg/dns golang.org/x/sys/unix 
v2ray.com/ext/assert \
- github.com/gorilla/websocket golang.org/x/crypto/chacha20poly1305 
golang.org/x/crypto/sha3 \
- v2ray.com/ext golang.org/x/net/proxy 
github.com/google/go-github/github golang.org/x/oauth2 \
- github.com/gogo/protobuf/proto google.golang.org/grpc
-  go install v2ray.com/ext/tools/build/vbuild
-}
-
-build() {
-  cd v2ray-core-$pkgver
-  "$GOPATH"/bin/vbuild
-}
-
-check() {
-  cd v2ray-core-$pkgver
-  go test -p 1 -tags json -v v2ray.com/core/...
-}
-
-package() {
-  cd v2ray-core-$pkgver
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/v2ray/LICENSE
-  install -Dm644 release/config/systemd/v2ray.service 
${pkgdir}/usr/lib/systemd/system/v2ray.service
-  sed -i '/ExecStart/c\ExecStart=/usr/bin/env v2ray.location.asset=/etc/v2ray 
/usr/bin/v2ray -config /etc/v2ray/config.json' 
"$pkgdir"/usr/lib/systemd/system/v2ray.service
-  install -Dm644 release/config/geoip.dat release/config/geosite.dat 
release/config/*.json -t "$pkgdir"/etc/v2ray/
-  install -Dm755 "$GOPATH"/bin/v2ray-custom-linux-64/{v2ray,v2ctl} -t 
"$pkgdir"/usr/bin/
-
-  install -Dm644 "$srcdir"/v2ray.service 
"$pkgdir"/usr/lib/systemd/system/v2ray@.service
-}

Copied: v2ray/repos/community-x86_64/PKGBUILD (from rev 343286, 
v2ray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 07:42:28 UTC (rev 343287)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: pandada8 
+
+pkgname=v2ray
+pkgver=3.26
+pkgrel=1
+pkgdesc="A platform for building proxies to bypass network restrictions"
+arch=('x86_64')
+url="https://github.com/v2ray/v2ray-core;
+license=('MIT')
+makedepends=('go' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/v2ray-core/archive/v$pkgver.tar.gz;
+'v2ray.service')
+sha512sums=('b28a1d3caeca93a75cfe01c125701ed7ce5fb1b57c3387f6d6af80a7dabca1e9916e9fc700856d46798ff47a1d89f85736fa1bb4bd04aedfa2bd83e1789e0a42'
+
'bebb87f43b3920be8efde9aece9c4305323cd7d3a65a3b2441f0dbd0098c02a18ca89a5b08833eee70482cffae2c8e7b7237bb5a4d1076e3c30d273898e2bedb')
+
+prepare() {
+  export GOPATH="$srcdir/build"
+  go get v2ray.com/core github.com/miekg/dns golang.org/x/sys/unix 
v2ray.com/ext/assert \
+ github.com/gorilla/websocket golang.org/x/crypto/chacha20poly1305 
golang.org/x/crypto/sha3 \
+ v2ray.com/ext golang.org/x/net/proxy 
github.com/google/go-github/github golang.org/x/oauth2 \
+ github.com/gogo/protobuf/proto google.golang.org/grpc
+  go install v2ray.com/ext/tools/build/vbuild
+}
+
+build() {
+  cd v2ray-core-$pkgver
+  "$GOPATH"/bin/vbuild
+}
+
+check() {
+  cd v2ray-core-$pkgver
+  go test -p 1 -tags json -v v2ray.com/core/...
+}
+
+package() {
+  cd v2ray-core-$pkgver
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/v2ray/LICENSE
+  install -Dm644 release/config/systemd/v2ray.service 
${pkgdir}/usr/lib/systemd/system/v2ray.service
+  sed -i '/ExecStart/c\ExecStart=/usr/bin/env v2ray.location.asset=/etc/v2ray 
/usr/bin/v2ray -config /etc/v2ray/config.json' 
"$pkgdir"/usr/lib/systemd/system/v2ray.service
+  install -Dm644 release/config/geoip.dat release/config/geosite.dat 
release/config/*.json -t "$pkgdir"/etc/v2ray/
+  install -Dm755 "$GOPATH"/bin/v2ray-custom-linux-64/{v2ray,v2ctl} -t 
"$pkgdir"/usr/bin/
+
+  install 

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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 07:42:09
  Author: felixonmars
Revision: 343286

upgpkg: v2ray 3.26-1

Modified:
  v2ray/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 07:35:58 UTC (rev 343285)
+++ PKGBUILD2018-06-15 07:42:09 UTC (rev 343286)
@@ -3,7 +3,7 @@
 # Contributor: pandada8 
 
 pkgname=v2ray
-pkgver=3.25.1
+pkgver=3.26
 pkgrel=1
 pkgdesc="A platform for building proxies to bypass network restrictions"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('go' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/v2ray-core/archive/v$pkgver.tar.gz;
 'v2ray.service')
-sha512sums=('ffa1846a2675302ad82208189a8d7d5c5c0150c275e829a6d371864a14aa7e13f21e3666983c481425f1ff3f85bc6de75493f062e6220eb8ff130f0e740661bf'
+sha512sums=('b28a1d3caeca93a75cfe01c125701ed7ce5fb1b57c3387f6d6af80a7dabca1e9916e9fc700856d46798ff47a1d89f85736fa1bb4bd04aedfa2bd83e1789e0a42'
 
'bebb87f43b3920be8efde9aece9c4305323cd7d3a65a3b2441f0dbd0098c02a18ca89a5b08833eee70482cffae2c8e7b7237bb5a4d1076e3c30d273898e2bedb')
 
 prepare() {


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 07:35:58
  Author: felixonmars
Revision: 343285

archrelease: copy trunk to community-any

Added:
  blinksocks/repos/community-any/PKGBUILD
(from rev 343284, blinksocks/trunk/PKGBUILD)
  blinksocks/repos/community-any/blinksocks@.service
(from rev 343284, blinksocks/trunk/blinksocks@.service)
Deleted:
  blinksocks/repos/community-any/PKGBUILD
  blinksocks/repos/community-any/blinksocks@.service

-+
 PKGBUILD|   56 +-
 blinksocks@.service |   20 -
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 07:34:49 UTC (rev 343284)
+++ PKGBUILD2018-06-15 07:35:58 UTC (rev 343285)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=blinksocks
-pkgver=3.3.0
-pkgrel=1
-pkgdesc='A framework for building composable proxy protocol stack.'
-arch=('any')
-url='https://github.com/blinksocks/blinksocks'
-license=('Apache')
-depends=('nodejs' 'semver')
-makedepends=('npm')
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz
-blinksocks@.service)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('81c63ce23073c177dcafb626adc401c19d9305f686d5cdafc609cfb8a4924004869b0ce0d963c622a2d62b77197d926b76b0f9ed826ee3f2071a541e891f95ce'
-
'709153bb95492cf0d6fa070ad8eef16220a97896731f688ec79e03cfddf112b4475fff589490740a8dae33b7bc4c1a331a4baf0d190eaf219f193fbb8128abeb')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-
-  # Why 777? :/
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  rm -r "$pkgdir"/usr/lib/node_modules/blinksocks/node_modules/{,.bin/}semver
-
-  install -Dm644 "$srcdir/blinksocks@.service" 
"$pkgdir/usr/lib/systemd/system/blinksocks@.service"
-}

Copied: blinksocks/repos/community-any/PKGBUILD (from rev 343284, 
blinksocks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 07:35:58 UTC (rev 343285)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=blinksocks
+pkgver=3.3.1
+pkgrel=1
+pkgdesc='A framework for building composable proxy protocol stack.'
+arch=('any')
+url='https://github.com/blinksocks/blinksocks'
+license=('Apache')
+depends=('nodejs' 'semver')
+makedepends=('npm')
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz
+blinksocks@.service)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('f10ba98660ba4ad859b43753c278a1d368c966fefc9570294f776062d087f79cc0a961cd12bf14054af3cd7621c4536317061da0cbaeef2cbe53e75bb3b49556'
+
'709153bb95492cf0d6fa070ad8eef16220a97896731f688ec79e03cfddf112b4475fff589490740a8dae33b7bc4c1a331a4baf0d190eaf219f193fbb8128abeb')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+
+  # Why 777? :/
+  chmod -R u=rwX,go=rX "$pkgdir"
+
+  rm -r "$pkgdir"/usr/lib/node_modules/blinksocks/node_modules/{,.bin/}semver
+
+  install -Dm644 "$srcdir/blinksocks@.service" 
"$pkgdir/usr/lib/systemd/system/blinksocks@.service"
+}

Deleted: blinksocks@.service
===
--- blinksocks@.service 2018-06-15 07:34:49 UTC (rev 343284)
+++ blinksocks@.service 2018-06-15 07:35:58 UTC (rev 343285)
@@ -1,10 +0,0 @@
-[Unit]
-Description=Blinksocks Service
-After=network-online.target
-
-[Service]
-ExecStart=/usr/bin/blinksocks /etc/blinksocks/%i.json
-Restart=on-failure
-
-[Install]
-WantedBy=multi-user.target
\ No newline at end of file

Copied: blinksocks/repos/community-any/blinksocks@.service (from rev 343284, 
blinksocks/trunk/blinksocks@.service)
===
--- blinksocks@.service (rev 0)
+++ blinksocks@.service 2018-06-15 07:35:58 UTC (rev 343285)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Blinksocks Service
+After=network-online.target
+
+[Service]
+ExecStart=/usr/bin/blinksocks /etc/blinksocks/%i.json
+Restart=on-failure
+
+[Install]
+WantedBy=multi-user.target
\ No newline at end of file


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 07:34:49
  Author: felixonmars
Revision: 343284

upgpkg: blinksocks 3.3.1-1

Modified:
  blinksocks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 07:29:08 UTC (rev 343283)
+++ PKGBUILD2018-06-15 07:34:49 UTC (rev 343284)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=blinksocks
-pkgver=3.3.0
+pkgver=3.3.1
 pkgrel=1
 pkgdesc='A framework for building composable proxy protocol stack.'
 arch=('any')
@@ -13,7 +13,7 @@
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz
 blinksocks@.service)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('81c63ce23073c177dcafb626adc401c19d9305f686d5cdafc609cfb8a4924004869b0ce0d963c622a2d62b77197d926b76b0f9ed826ee3f2071a541e891f95ce'
+sha512sums=('f10ba98660ba4ad859b43753c278a1d368c966fefc9570294f776062d087f79cc0a961cd12bf14054af3cd7621c4536317061da0cbaeef2cbe53e75bb3b49556'
 
'709153bb95492cf0d6fa070ad8eef16220a97896731f688ec79e03cfddf112b4475fff589490740a8dae33b7bc4c1a331a4baf0d190eaf219f193fbb8128abeb')
 
 package() {


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 07:29:08
  Author: felixonmars
Revision: 343283

archrelease: copy trunk to community-any

Added:
  python-cached-property/repos/community-any/PKGBUILD
(from rev 343282, python-cached-property/trunk/PKGBUILD)
Deleted:
  python-cached-property/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 07:28:44 UTC (rev 343282)
+++ PKGBUILD2018-06-15 07:29:08 UTC (rev 343283)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-cached-property
-pkgname=('python-cached-property' 'python2-cached-property')
-pkgver=1.4.2
-pkgrel=1
-pkgdesc="A decorator for caching properties in classes"
-arch=('any')
-license=('BSD')
-url="https://github.com/pydanny/cached-property;
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python2-pytest' 'python-freezegun' 
'python2-freezegun')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/pydanny/cached-property/archive/$pkgver.tar.gz;)
-sha512sums=('dbe24114ab986ed8c3c5dad766d7c1c0ce87bbcc0ebfbba2505fc2878358239df09b92d3fbcbaa5cfde264d4f4b9c305b5f5216a6e9158d3872e5837bd581c6f')
-
-prepare() {
-  cp -a cached-property-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/cached-property-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/cached-property-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/cached-property-$pkgver
-  py.test
-
-  cd "$srcdir"/cached-property-$pkgver-py2
-  py.test2
-}
-
-package_python-cached-property() {
-  depends=('python')
-
-  cd cached-property-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-cached-property() {
-  depends=('python2')
-
-  cd cached-property-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-cached-property/repos/community-any/PKGBUILD (from rev 343282, 
python-cached-property/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 07:29:08 UTC (rev 343283)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-cached-property
+pkgname=('python-cached-property' 'python2-cached-property')
+pkgver=1.4.3
+pkgrel=1
+pkgdesc="A decorator for caching properties in classes"
+arch=('any')
+license=('BSD')
+url="https://github.com/pydanny/cached-property;
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest' 'python-freezegun' 
'python2-freezegun')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pydanny/cached-property/archive/$pkgver.tar.gz;)
+sha512sums=('d2a4d7239c0208866616a7c0c418ff145de541a1abaa53ba11862a3c133b7bc8c1e5c34a5b0b10381cc5ac89d27a83bc5caa9f0a066c9806cd7b96d5249ea075')
+
+prepare() {
+  cp -a cached-property-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/cached-property-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/cached-property-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/cached-property-$pkgver
+  py.test
+
+  cd "$srcdir"/cached-property-$pkgver-py2
+  py.test2
+}
+
+package_python-cached-property() {
+  depends=('python')
+
+  cd cached-property-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-cached-property() {
+  depends=('python2')
+
+  cd cached-property-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-06-15 Thread Felix Yan via arch-commits
Date: Friday, June 15, 2018 @ 07:28:44
  Author: felixonmars
Revision: 343282

upgpkg: python-cached-property 1.4.3-1

Modified:
  python-cached-property/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 06:32:34 UTC (rev 343281)
+++ PKGBUILD2018-06-15 07:28:44 UTC (rev 343282)
@@ -3,7 +3,7 @@
 
 pkgbase=python-cached-property
 pkgname=('python-cached-property' 'python2-cached-property')
-pkgver=1.4.2
+pkgver=1.4.3
 pkgrel=1
 pkgdesc="A decorator for caching properties in classes"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-pytest' 'python2-pytest' 'python-freezegun' 
'python2-freezegun')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/pydanny/cached-property/archive/$pkgver.tar.gz;)
-sha512sums=('dbe24114ab986ed8c3c5dad766d7c1c0ce87bbcc0ebfbba2505fc2878358239df09b92d3fbcbaa5cfde264d4f4b9c305b5f5216a6e9158d3872e5837bd581c6f')
+sha512sums=('d2a4d7239c0208866616a7c0c418ff145de541a1abaa53ba11862a3c133b7bc8c1e5c34a5b0b10381cc5ac89d27a83bc5caa9f0a066c9806cd7b96d5249ea075')
 
 prepare() {
   cp -a cached-property-$pkgver{,-py2}


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

2018-06-15 Thread Baptiste Jonglez via arch-commits
Date: Friday, June 15, 2018 @ 06:32:34
  Author: zorun
Revision: 343281

archrelease: copy trunk to community-x86_64

Added:
  
ring-gnome/repos/community-x86_64/0001-settings-check-if-g_get_user_special_dir-fails.patch
(from rev 343280, 
ring-gnome/trunk/0001-settings-check-if-g_get_user_special_dir-fails.patch)
  ring-gnome/repos/community-x86_64/PKGBUILD
(from rev 343280, ring-gnome/trunk/PKGBUILD)
Deleted:
  
ring-gnome/repos/community-x86_64/0001-settings-check-if-g_get_user_special_dir-fails.patch
  ring-gnome/repos/community-x86_64/PKGBUILD

---+
 0001-settings-check-if-g_get_user_special_dir-fails.patch |   72 +-
 PKGBUILD  |   86 ++--
 2 files changed, 79 insertions(+), 79 deletions(-)

Deleted: 0001-settings-check-if-g_get_user_special_dir-fails.patch
===
--- 0001-settings-check-if-g_get_user_special_dir-fails.patch   2018-06-15 
06:32:23 UTC (rev 343280)
+++ 0001-settings-check-if-g_get_user_special_dir-fails.patch   2018-06-15 
06:32:34 UTC (rev 343281)
@@ -1,36 +0,0 @@
-From 1946b536d75fc47f16bf3accb9b18c98145280b1 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?S=C3=A9bastien=20Blin?=
- 
-Date: Tue, 17 Apr 2018 09:47:47 -0400
-Subject: [PATCH] settings: check if g_get_user_special_dir fails
-
-g_get_user_special_dir can return a nullptr, so the string
-construction will fails badly. Must be checked or fallback to
-G_USER_DIRECTORY_DESKTOP ($HOME/Desktop)
-
-Change-Id: I04b72221f14091db2cfd880a9b35b8ab92e46ae4
-Reviewed-by: Philippe Gorley 

- src/generalsettingsview.cpp | 6 +-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/src/generalsettingsview.cpp b/src/generalsettingsview.cpp
-index 4c6a15a..4fa2d9c 100644
 a/src/generalsettingsview.cpp
-+++ b/src/generalsettingsview.cpp
-@@ -248,7 +248,11 @@ general_settings_view_init(GeneralSettingsView *self)
- auto* download_directory_variant = g_settings_get_value(priv->settings, 
"download-folder");
- char* download_directory_value;
- g_variant_get(download_directory_variant, "", 
_directory_value);
--std::string default_download_dir = g_get_user_special_dir 
(G_USER_DIRECTORY_DOWNLOAD);
-+std::string default_download_dir = {};
-+if (auto* directory = g_get_user_special_dir (G_USER_DIRECTORY_DOWNLOAD))
-+default_download_dir = directory;
-+else
-+default_download_dir = g_get_user_special_dir 
(G_USER_DIRECTORY_DESKTOP);
- auto current_value = std::string(download_directory_value);
- if (current_value.empty()) {
- g_settings_set_value(priv->settings, "download-folder", 
g_variant_new("s", default_download_dir.c_str()));
--- 
-2.17.0
-

Copied: 
ring-gnome/repos/community-x86_64/0001-settings-check-if-g_get_user_special_dir-fails.patch
 (from rev 343280, 
ring-gnome/trunk/0001-settings-check-if-g_get_user_special_dir-fails.patch)
===
--- 0001-settings-check-if-g_get_user_special_dir-fails.patch   
(rev 0)
+++ 0001-settings-check-if-g_get_user_special_dir-fails.patch   2018-06-15 
06:32:34 UTC (rev 343281)
@@ -0,0 +1,36 @@
+From 1946b536d75fc47f16bf3accb9b18c98145280b1 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?S=C3=A9bastien=20Blin?=
+ 
+Date: Tue, 17 Apr 2018 09:47:47 -0400
+Subject: [PATCH] settings: check if g_get_user_special_dir fails
+
+g_get_user_special_dir can return a nullptr, so the string
+construction will fails badly. Must be checked or fallback to
+G_USER_DIRECTORY_DESKTOP ($HOME/Desktop)
+
+Change-Id: I04b72221f14091db2cfd880a9b35b8ab92e46ae4
+Reviewed-by: Philippe Gorley 
+---
+ src/generalsettingsview.cpp | 6 +-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/src/generalsettingsview.cpp b/src/generalsettingsview.cpp
+index 4c6a15a..4fa2d9c 100644
+--- a/src/generalsettingsview.cpp
 b/src/generalsettingsview.cpp
+@@ -248,7 +248,11 @@ general_settings_view_init(GeneralSettingsView *self)
+ auto* download_directory_variant = g_settings_get_value(priv->settings, 
"download-folder");
+ char* download_directory_value;
+ g_variant_get(download_directory_variant, "", 
_directory_value);
+-std::string default_download_dir = g_get_user_special_dir 
(G_USER_DIRECTORY_DOWNLOAD);
++std::string default_download_dir = {};
++if (auto* directory = g_get_user_special_dir (G_USER_DIRECTORY_DOWNLOAD))
++default_download_dir = directory;
++else
++default_download_dir = g_get_user_special_dir 
(G_USER_DIRECTORY_DESKTOP);
+ auto current_value = std::string(download_directory_value);
+ if (current_value.empty()) {
+ g_settings_set_value(priv->settings, "download-folder", 
g_variant_new("s", default_download_dir.c_str()));
+-- 
+2.17.0
+

Deleted: PKGBUILD

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

2018-06-15 Thread Baptiste Jonglez via arch-commits
Date: Friday, June 15, 2018 @ 06:32:23
  Author: zorun
Revision: 343280

upgpkg: ring-gnome 3:20180613.1.85cf38c-1

Modified:
  ring-gnome/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 06:31:51 UTC (rev 343279)
+++ PKGBUILD2018-06-15 06:32:23 UTC (rev 343280)
@@ -1,7 +1,7 @@
 # Maintainer: Baptiste Jonglez 
 
 pkgname=ring-gnome
-pkgver=20180524.1.e0687ef
+pkgver=20180613.1.85cf38c
 pkgrel=1
 epoch=3
 pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (GNOME client)"
@@ -14,7 +14,7 @@
  "qt5-base" "gtk-update-icon-cache" "desktop-file-utils"
  "evolution-data-server" "libnotify" "libcanberra" "libnm")
 makedepends=('git' 'cmake')
-source=("git+https://gerrit-ring.savoirfairelinux.com/ring-client-gnome#commit=75d49c7e383b6ab48c75b7ce99eb9d3a251a3e74;)
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-client-gnome#commit=b95686c2b96a2b0ecbfe6361097fecae9a0cc1e9;)
 sha256sums=('SKIP')
 
 build() {


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

2018-06-15 Thread Baptiste Jonglez via arch-commits
Date: Friday, June 15, 2018 @ 06:31:21
  Author: zorun
Revision: 343276

upgpkg: ring-daemon 2:20180613.1.85cf38c-1

Modified:
  ring-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 06:31:10 UTC (rev 343275)
+++ PKGBUILD2018-06-15 06:31:21 UTC (rev 343276)
@@ -1,8 +1,8 @@
 # Maintainer: Baptiste Jonglez 
 
 pkgname=ring-daemon
-pkgver=20180524.1.e0687ef
-pkgrel=3
+pkgver=20180613.1.85cf38c
+pkgrel=1
 epoch=2
 _pjprojectver=2.7.2
 pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (daemon)"
@@ -16,7 +16,7 @@
  'libsecp256k1' 'util-linux' 'opus')
 makedepends=('git' 'boost' 'msgpack-c' 'autoconf-archive')
 #checkdepends=('cppunit')
-source=("git+https://gerrit-ring.savoirfairelinux.com/ring-daemon#commit=82b0e9d5fbc6518009b0a42a4ebf9da68eafc132;
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-daemon#commit=ca17451116f974090e624a9a221b6c694a9822ce;
 
"http://www.pjsip.org/release/${_pjprojectver}/pjproject-${_pjprojectver}.tar.bz2;)
 noextract=("pjproject-${_pjprojectver}.tar.bz2")
 sha256sums=('SKIP'


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

2018-06-15 Thread Baptiste Jonglez via arch-commits
Date: Friday, June 15, 2018 @ 06:30:58
  Author: zorun
Revision: 343274

archrelease: copy trunk to community-x86_64

Added:
  opendht/repos/community-x86_64/PKGBUILD
(from rev 343273, opendht/trunk/PKGBUILD)
Deleted:
  opendht/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 06:30:42 UTC (rev 343273)
+++ PKGBUILD2018-06-15 06:30:58 UTC (rev 343274)
@@ -1,58 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-pkgname=opendht
-pkgver=1.7.2
-pkgrel=2
-epoch=1
-pkgdesc="A C++11 implementation of the Kademlia DHT (Distributed Hash Table)"
-arch=('x86_64')
-depends=('gnutls' 'nettle' 'readline' 'argon2' 'jsoncpp' 'restbed')
-makedepends=('msgpack-c' 'cmake' 'cython' 'systemd' 'cppunit')
-optdepends=('python: to use the Python bindings')
-url="https://github.com/savoirfairelinux/opendht;
-license=('GPL3')
-source=("https://github.com/savoirfairelinux/opendht/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('5030f011eba421f67847ee94d906aabbdf409268cdc1119e15bb8f2863ed0bbc')
-sha512sums=('dcb70c8f38f067f1035cbfdc7897a8245bacaef547afa48652e56e39e4641f7bb1ea6bc2bf3e46f8454cdbe3743eab318eca9fb6a02921d5f5fa792748a14cd1')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  msg2 'Building...'
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_BUILD_TYPE=None \
--DOPENDHT_TESTS=ON \
--DOPENDHT_DOCUMENTATION=OFF \
--DOPENDHT_STATIC=OFF \
--DOPENDHT_SYSTEMD=ON \
--DOPENDHT_LTO=ON \
--DOPENDHT_TOOLS=ON \
--DOPENDHT_PYTHON=ON \
--DOPENDHT_PROXY_SERVER=ON \
--DOPENDHT_PROXY_CLIENT=ON \
--DOPENDHT_PUSH_NOTIFICATIONS=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  cd build
-  make test
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  msg2 'Installing...'
-  cd build
-  make DESTDIR="$pkgdir" install
-  cd ..
-
-  msg2 'Installing documentation...'
-  install -D -m644 README.md "${pkgdir}/usr/share/doc/opendht/README.md"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: opendht/repos/community-x86_64/PKGBUILD (from rev 343273, 
opendht/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 06:30:58 UTC (rev 343274)
@@ -0,0 +1,58 @@
+# Maintainer: Baptiste Jonglez 
+pkgname=opendht
+pkgver=1.7.3rc4
+pkgrel=1
+epoch=1
+pkgdesc="A C++11 implementation of the Kademlia DHT (Distributed Hash Table)"
+arch=('x86_64')
+depends=('gnutls' 'nettle' 'readline' 'argon2' 'jsoncpp' 'restbed')
+makedepends=('msgpack-c' 'cmake' 'cython' 'systemd' 'cppunit')
+optdepends=('python: to use the Python bindings')
+url="https://github.com/savoirfairelinux/opendht;
+license=('GPL3')
+source=("https://github.com/savoirfairelinux/opendht/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('5fced76228ca2603cd9f80a5537fc568cc9f19d139107a03dc1f0c40e9489476')
+sha512sums=('894499d4a49b664fb5372e36453fcd03f0aa5600be3e58eb03304422725de8caddbf03251d7c02d0a98c2bb82d7c31029d09fb244f24afe8cca03994cf9fd959')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_BUILD_TYPE=None \
+-DOPENDHT_TESTS=ON \
+-DOPENDHT_DOCUMENTATION=OFF \
+-DOPENDHT_STATIC=OFF \
+-DOPENDHT_SYSTEMD=ON \
+-DOPENDHT_LTO=ON \
+-DOPENDHT_TOOLS=ON \
+-DOPENDHT_PYTHON=ON \
+-DOPENDHT_PROXY_SERVER=ON \
+-DOPENDHT_PROXY_CLIENT=ON \
+-DOPENDHT_PUSH_NOTIFICATIONS=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd build
+  make test
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  msg2 'Installing...'
+  cd build
+  make DESTDIR="$pkgdir" install
+  cd ..
+
+  msg2 'Installing documentation...'
+  install -D -m644 README.md "${pkgdir}/usr/share/doc/opendht/README.md"
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-06-15 Thread Baptiste Jonglez via arch-commits
Date: Friday, June 15, 2018 @ 06:31:32
  Author: zorun
Revision: 343277

archrelease: copy trunk to community-x86_64

Added:
  ring-daemon/repos/community-x86_64/PKGBUILD
(from rev 343276, ring-daemon/trunk/PKGBUILD)
Deleted:
  ring-daemon/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 06:31:21 UTC (rev 343276)
+++ PKGBUILD2018-06-15 06:31:32 UTC (rev 343277)
@@ -1,70 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=ring-daemon
-pkgver=20180524.1.e0687ef
-pkgrel=3
-epoch=2
-_pjprojectver=2.7.2
-pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (daemon)"
-arch=("x86_64")
-url="https://ring.cx;
-license=('GPL3')
-groups=("ring")
-depends=('opendht' 'yaml-cpp' 'alsa-lib' 'libpulse' 'jack' 'jsoncpp'
- 'libsamplerate' 'libsndfile' 'dbus-c++' 'ffmpeg' 'gnutls'
- 'expat' 'gsm' 'libupnp' 'libnatpmp' 'libva' 'libvdpau' 'restbed'
- 'libsecp256k1' 'util-linux' 'opus')
-makedepends=('git' 'boost' 'msgpack-c' 'autoconf-archive')
-#checkdepends=('cppunit')
-source=("git+https://gerrit-ring.savoirfairelinux.com/ring-daemon#commit=82b0e9d5fbc6518009b0a42a4ebf9da68eafc132;
-
"http://www.pjsip.org/release/${_pjprojectver}/pjproject-${_pjprojectver}.tar.bz2;)
-noextract=("pjproject-${_pjprojectver}.tar.bz2")
-sha256sums=('SKIP'
-'9c2c828abab7626edf18e04b041ef274bfaa86f99adf2c25ff56f1509e813772')
-sha512sums=('SKIP'
-
'3d355ffcbbeed62cfc711e574a987dc06043ccf4f2625820adffa89167022b8306fcee3fada71d3d45e7b902fc9c65ac8221de101cbafed25362a3921f702afd')
-
-prepare() {
-  cd "${pkgname}"
-  cp ../pjproject-${_pjprojectver}.tar.bz2 contrib/tarballs
-  mkdir contrib/native
-  autoreconf -fvi
-}
-
-build() {
-  cd "${pkgname}/contrib/native"
-  ../bootstrap \
-  --disable-downloads \
-  --disable-all \
-  --enable-pjproject
-  make DEPS_pjproject=
-
-  cd ../..
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---sysconfdir=/etc \
---enable-ipv6
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-# Disabled because some tests (TURN) use the network.
-#check() {
-#  cd "${pkgname}"
-#  make -k check
-#}
-
-package() {
-  cd "${pkgname}"
-
-  msg2 'Installing...'
-  make DESTDIR="$pkgdir" install
-
-  msg2 'Cleaning up pkgdir...'
-  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
-  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ring-daemon/repos/community-x86_64/PKGBUILD (from rev 343276, 
ring-daemon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 06:31:32 UTC (rev 343277)
@@ -0,0 +1,70 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ring-daemon
+pkgver=20180613.1.85cf38c
+pkgrel=1
+epoch=2
+_pjprojectver=2.7.2
+pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (daemon)"
+arch=("x86_64")
+url="https://ring.cx;
+license=('GPL3')
+groups=("ring")
+depends=('opendht' 'yaml-cpp' 'alsa-lib' 'libpulse' 'jack' 'jsoncpp'
+ 'libsamplerate' 'libsndfile' 'dbus-c++' 'ffmpeg' 'gnutls'
+ 'expat' 'gsm' 'libupnp' 'libnatpmp' 'libva' 'libvdpau' 'restbed'
+ 'libsecp256k1' 'util-linux' 'opus')
+makedepends=('git' 'boost' 'msgpack-c' 'autoconf-archive')
+#checkdepends=('cppunit')
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-daemon#commit=ca17451116f974090e624a9a221b6c694a9822ce;
+
"http://www.pjsip.org/release/${_pjprojectver}/pjproject-${_pjprojectver}.tar.bz2;)
+noextract=("pjproject-${_pjprojectver}.tar.bz2")
+sha256sums=('SKIP'
+'9c2c828abab7626edf18e04b041ef274bfaa86f99adf2c25ff56f1509e813772')
+sha512sums=('SKIP'
+
'3d355ffcbbeed62cfc711e574a987dc06043ccf4f2625820adffa89167022b8306fcee3fada71d3d45e7b902fc9c65ac8221de101cbafed25362a3921f702afd')
+
+prepare() {
+  cd "${pkgname}"
+  cp ../pjproject-${_pjprojectver}.tar.bz2 contrib/tarballs
+  mkdir contrib/native
+  autoreconf -fvi
+}
+
+build() {
+  cd "${pkgname}/contrib/native"
+  ../bootstrap \
+  --disable-downloads \
+  --disable-all \
+  --enable-pjproject
+  make DEPS_pjproject=
+
+  cd ../..
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--sysconfdir=/etc \
+--enable-ipv6
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+# Disabled because some tests (TURN) use the network.
+#check() {
+#  cd "${pkgname}"
+#  make -k check
+#}
+
+package() {
+  cd "${pkgname}"
+
+  msg2 'Installing...'
+  make DESTDIR="$pkgdir" install
+
+  msg2 'Cleaning up pkgdir...'
+  find 

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

2018-06-15 Thread Baptiste Jonglez via arch-commits
Date: Friday, June 15, 2018 @ 06:31:10
  Author: zorun
Revision: 343275

archrelease: copy trunk to community-x86_64

Added:
  opendht/repos/community-x86_64/PKGBUILD
(from rev 343274, opendht/trunk/PKGBUILD)
Deleted:
  opendht/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 06:30:58 UTC (rev 343274)
+++ PKGBUILD2018-06-15 06:31:10 UTC (rev 343275)
@@ -1,58 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-pkgname=opendht
-pkgver=1.7.3rc4
-pkgrel=1
-epoch=1
-pkgdesc="A C++11 implementation of the Kademlia DHT (Distributed Hash Table)"
-arch=('x86_64')
-depends=('gnutls' 'nettle' 'readline' 'argon2' 'jsoncpp' 'restbed')
-makedepends=('msgpack-c' 'cmake' 'cython' 'systemd' 'cppunit')
-optdepends=('python: to use the Python bindings')
-url="https://github.com/savoirfairelinux/opendht;
-license=('GPL3')
-source=("https://github.com/savoirfairelinux/opendht/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('5fced76228ca2603cd9f80a5537fc568cc9f19d139107a03dc1f0c40e9489476')
-sha512sums=('894499d4a49b664fb5372e36453fcd03f0aa5600be3e58eb03304422725de8caddbf03251d7c02d0a98c2bb82d7c31029d09fb244f24afe8cca03994cf9fd959')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  msg2 'Building...'
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_BUILD_TYPE=None \
--DOPENDHT_TESTS=ON \
--DOPENDHT_DOCUMENTATION=OFF \
--DOPENDHT_STATIC=OFF \
--DOPENDHT_SYSTEMD=ON \
--DOPENDHT_LTO=ON \
--DOPENDHT_TOOLS=ON \
--DOPENDHT_PYTHON=ON \
--DOPENDHT_PROXY_SERVER=ON \
--DOPENDHT_PROXY_CLIENT=ON \
--DOPENDHT_PUSH_NOTIFICATIONS=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  cd build
-  make test
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  msg2 'Installing...'
-  cd build
-  make DESTDIR="$pkgdir" install
-  cd ..
-
-  msg2 'Installing documentation...'
-  install -D -m644 README.md "${pkgdir}/usr/share/doc/opendht/README.md"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: opendht/repos/community-x86_64/PKGBUILD (from rev 343274, 
opendht/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 06:31:10 UTC (rev 343275)
@@ -0,0 +1,58 @@
+# Maintainer: Baptiste Jonglez 
+pkgname=opendht
+pkgver=1.7.3rc4
+pkgrel=1
+epoch=1
+pkgdesc="A C++11 implementation of the Kademlia DHT (Distributed Hash Table)"
+arch=('x86_64')
+depends=('gnutls' 'nettle' 'readline' 'argon2' 'jsoncpp' 'restbed')
+makedepends=('msgpack-c' 'cmake' 'cython' 'systemd' 'cppunit')
+optdepends=('python: to use the Python bindings')
+url="https://github.com/savoirfairelinux/opendht;
+license=('GPL3')
+source=("https://github.com/savoirfairelinux/opendht/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('5fced76228ca2603cd9f80a5537fc568cc9f19d139107a03dc1f0c40e9489476')
+sha512sums=('894499d4a49b664fb5372e36453fcd03f0aa5600be3e58eb03304422725de8caddbf03251d7c02d0a98c2bb82d7c31029d09fb244f24afe8cca03994cf9fd959')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_BUILD_TYPE=None \
+-DOPENDHT_TESTS=ON \
+-DOPENDHT_DOCUMENTATION=OFF \
+-DOPENDHT_STATIC=OFF \
+-DOPENDHT_SYSTEMD=ON \
+-DOPENDHT_LTO=ON \
+-DOPENDHT_TOOLS=ON \
+-DOPENDHT_PYTHON=ON \
+-DOPENDHT_PROXY_SERVER=ON \
+-DOPENDHT_PROXY_CLIENT=ON \
+-DOPENDHT_PUSH_NOTIFICATIONS=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd build
+  make test
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  msg2 'Installing...'
+  cd build
+  make DESTDIR="$pkgdir" install
+  cd ..
+
+  msg2 'Installing documentation...'
+  install -D -m644 README.md "${pkgdir}/usr/share/doc/opendht/README.md"
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-06-15 Thread Baptiste Jonglez via arch-commits
Date: Friday, June 15, 2018 @ 06:31:51
  Author: zorun
Revision: 343279

archrelease: copy trunk to community-x86_64

Added:
  libringclient/repos/community-x86_64/PKGBUILD
(from rev 343278, libringclient/trunk/PKGBUILD)
Deleted:
  libringclient/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-15 06:31:40 UTC (rev 343278)
+++ PKGBUILD2018-06-15 06:31:51 UTC (rev 343279)
@@ -1,40 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=libringclient
-pkgver=20180524.1.e0687ef
-pkgrel=1
-epoch=2
-pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (client communication library)"
-arch=("x86_64")
-url="https://ring.cx;
-license=('GPL3')
-groups=("ring")
-depends=("ring-daemon" "qt5-base")
-makedepends=('git' 'cmake' 'qt5-tools')
-source=("git+https://gerrit-ring.savoirfairelinux.com/ring-lrc#commit=b3c8ce3856e48ee325ebcce69dc7d89f4ba78e4b;)
-md5sums=('SKIP')
-
-build() {
-  cd "ring-lrc"
-
-  msg2 'Building...'
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd "ring-lrc/build"
-
-  msg2 'Installing...'
-  make DESTDIR="$pkgdir" install
-
-  msg2 'Cleaning up pkgdir...'
-  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
-  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libringclient/repos/community-x86_64/PKGBUILD (from rev 343278, 
libringclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-15 06:31:51 UTC (rev 343279)
@@ -0,0 +1,40 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=libringclient
+pkgver=20180613.1.85cf38c
+pkgrel=1
+epoch=2
+pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (client communication library)"
+arch=("x86_64")
+url="https://ring.cx;
+license=('GPL3')
+groups=("ring")
+depends=("ring-daemon" "qt5-base")
+makedepends=('git' 'cmake' 'qt5-tools')
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-lrc#commit=5896aeb7e495b423d4bd5b8f5fe36f67dd0bd86a;)
+md5sums=('SKIP')
+
+build() {
+  cd "ring-lrc"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "ring-lrc/build"
+
+  msg2 'Installing...'
+  make DESTDIR="$pkgdir" install
+
+  msg2 'Cleaning up pkgdir...'
+  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
+  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-06-15 Thread Baptiste Jonglez via arch-commits
Date: Friday, June 15, 2018 @ 06:31:40
  Author: zorun
Revision: 343278

upgpkg: libringclient 2:20180613.1.85cf38c-1

Modified:
  libringclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 06:31:32 UTC (rev 343277)
+++ PKGBUILD2018-06-15 06:31:40 UTC (rev 343278)
@@ -1,7 +1,7 @@
 # Maintainer: Baptiste Jonglez 
 
 pkgname=libringclient
-pkgver=20180524.1.e0687ef
+pkgver=20180613.1.85cf38c
 pkgrel=1
 epoch=2
 pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (client communication library)"
@@ -11,7 +11,7 @@
 groups=("ring")
 depends=("ring-daemon" "qt5-base")
 makedepends=('git' 'cmake' 'qt5-tools')
-source=("git+https://gerrit-ring.savoirfairelinux.com/ring-lrc#commit=b3c8ce3856e48ee325ebcce69dc7d89f4ba78e4b;)
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-lrc#commit=5896aeb7e495b423d4bd5b8f5fe36f67dd0bd86a;)
 md5sums=('SKIP')
 
 build() {


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

2018-06-15 Thread Baptiste Jonglez via arch-commits
Date: Friday, June 15, 2018 @ 06:30:42
  Author: zorun
Revision: 343273

upgpkg: opendht 1:1.7.3rc4-1

Modified:
  opendht/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-15 04:01:58 UTC (rev 343272)
+++ PKGBUILD2018-06-15 06:30:42 UTC (rev 343273)
@@ -1,7 +1,7 @@
 # Maintainer: Baptiste Jonglez 
 pkgname=opendht
-pkgver=1.7.2
-pkgrel=2
+pkgver=1.7.3rc4
+pkgrel=1
 epoch=1
 pkgdesc="A C++11 implementation of the Kademlia DHT (Distributed Hash Table)"
 arch=('x86_64')
@@ -11,8 +11,8 @@
 url="https://github.com/savoirfairelinux/opendht;
 license=('GPL3')
 
source=("https://github.com/savoirfairelinux/opendht/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('5030f011eba421f67847ee94d906aabbdf409268cdc1119e15bb8f2863ed0bbc')
-sha512sums=('dcb70c8f38f067f1035cbfdc7897a8245bacaef547afa48652e56e39e4641f7bb1ea6bc2bf3e46f8454cdbe3743eab318eca9fb6a02921d5f5fa792748a14cd1')
+sha256sums=('5fced76228ca2603cd9f80a5537fc568cc9f19d139107a03dc1f0c40e9489476')
+sha512sums=('894499d4a49b664fb5372e36453fcd03f0aa5600be3e58eb03304422725de8caddbf03251d7c02d0a98c2bb82d7c31029d09fb244f24afe8cca03994cf9fd959')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"