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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 06:59:49
  Author: felixonmars
Revision: 319567

archrelease: copy trunk to extra-any

Added:
  python-setuptools/repos/extra-any/PKGBUILD
(from rev 319566, python-setuptools/trunk/PKGBUILD)
Deleted:
  python-setuptools/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 06:59:26 UTC (rev 319566)
+++ PKGBUILD2018-03-18 06:59:49 UTC (rev 319567)
@@ -1,96 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=38.6.0
-pkgrel=1
-epoch=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="http://pypi.python.org/pypi/setuptools";
-makedepends=('python-packaging' 'python2-packaging' 'python-appdirs' 
'python2-appdirs' 'python-pip'
- 'python2-pip')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-flake8'
-  'python2-pytest-flake8' 'python-mock' 'python2-mock' 
'python-pytest-fixture-config'
-  'python2-pytest-fixture-config' 'python-pytest-virtualenv' 
'python2-pytest-virtualenv'
-  'python-wheel' 'python2-wheel' 'git')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz";)
-sha512sums=('7a70a33bc8c5026d1bf87a7ed3903018c03cbd472bf757fb5b8be7f0efcbeb823d0a612ddaacc67aef48f4336a1b7bb17f63336efef4cd690f91176d876c749d')
-
-prepare() {
-  # Don't download and install deps
-  sed -i '/pip.main(args)/d' setuptools-$pkgver/bootstrap.py
-
-  rm -r setuptools-$pkgver/pkg_resources/_vendor
-
-  # Remove post-release tag since we are using stable tags
-  sed -e '/tag_build = .post/d' \
-  -e '/tag_date = 1/d' \
-  -i setuptools-$pkgver/setup.cfg
-
-  # 'Clean' installation is expected to fail since we removed bundled packages
-  sed -i '/^def test_clean_env_install/i import 
pytest\n\n...@pytest.mark.xfail' 
setuptools-$pkgver/setuptools/tests/test_virtualenv.py
-
-  # Tests failed. Importing an unbundled new setuptools in a virtualenv does 
not work, but this won't
-  # affect normal virtualenv usage (which don't have to import the unbundled 
setuptools in *current*
-  # dir.
-  sed -e '/^def test_pip_upgrade_from_source/i @pytest.mark.xfail' \
-  -e '/^def test_test_command_install_requirements/i @pytest.mark.xfail' \
-  -i setuptools-$pkgver/setuptools/tests/test_virtualenv.py
-
-  cp -a setuptools-$pkgver{,-py2}
-
-  cd "$srcdir"/setuptools-$pkgver
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
-
-  export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
-}
-
-build() {
-  cd "$srcdir"/setuptools-$pkgver
-  python bootstrap.py
-  python setup.py build
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  python2 bootstrap.py
-  python2 setup.py build
-}
-
-check() { (
-  # Workaround UTF-8 tests by setting LC_CTYPE
-  export LC_CTYPE=en_US.UTF-8
-
-  # https://github.com/pypa/setuptools/pull/810
-  export PYTHONDONTWRITEBYTECODE=1
-
-  cd "$srcdir"/setuptools-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  python2 setup.py pytest
-)}
-
-package_python-setuptools() {
-  depends=('python-packaging' 'python-appdirs')
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd "$srcdir"/setuptools-$pkgver
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-}
-
-package_python2-setuptools() {
-  depends=('python2-packaging' 'python2-appdirs')
-  provides=('python2-distribute')
-  replaces=('python2-distribute')
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-  rm "$pkgdir"/usr/bin/easy_install
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 319566, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 06:59:49 UTC (rev 319567)
@@ -0,0 +1,92 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=39.0.0
+pkgrel=1
+epoch=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
+arch=('any')
+license=('PSF')
+url="http://pypi.python.org/pypi/setuptools";
+makedepends=('python-packaging' 'python2-packaging' 'python-appdirs' 
'python2-appdirs')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-flake8'
+  'python2-

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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 06:59:26
  Author: felixonmars
Revision: 319566

upgpkg: python-setuptools 1:39.0.0-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-17 20:16:03 UTC (rev 319565)
+++ PKGBUILD2018-03-18 06:59:26 UTC (rev 319566)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=38.6.0
+pkgver=39.0.0
 pkgrel=1
 epoch=1
 pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
@@ -11,21 +11,17 @@
 arch=('any')
 license=('PSF')
 url="http://pypi.python.org/pypi/setuptools";
-makedepends=('python-packaging' 'python2-packaging' 'python-appdirs' 
'python2-appdirs' 'python-pip'
- 'python2-pip')
+makedepends=('python-packaging' 'python2-packaging' 'python-appdirs' 
'python2-appdirs')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-flake8'
   'python2-pytest-flake8' 'python-mock' 'python2-mock' 
'python-pytest-fixture-config'
   'python2-pytest-fixture-config' 'python-pytest-virtualenv' 
'python2-pytest-virtualenv'
-  'python-wheel' 'python2-wheel' 'git')
+  'python-wheel' 'python2-wheel' 'python-pip' 'python2-pip' 'git')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz";)
-sha512sums=('7a70a33bc8c5026d1bf87a7ed3903018c03cbd472bf757fb5b8be7f0efcbeb823d0a612ddaacc67aef48f4336a1b7bb17f63336efef4cd690f91176d876c749d')
+sha512sums=('7c7aa05a994af9a0c1d308f1b75597463c5babe50cc71136d3eaf38f24527c8e3c7727dc28a6d81e3f9c2426fbb46339ff95fad7d5b6a65be86f30bb21a2e564')
 
 prepare() {
-  # Don't download and install deps
-  sed -i '/pip.main(args)/d' setuptools-$pkgver/bootstrap.py
+  rm -r setuptools-$pkgver/{pkg_resources,setuptools}/_vendor
 
-  rm -r setuptools-$pkgver/pkg_resources/_vendor
-
   # Remove post-release tag since we are using stable tags
   sed -e '/tag_build = .post/d' \
   -e '/tag_date = 1/d' \


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 07:04:35
  Author: felixonmars
Revision: 309012

upgpkg: haskell-cracknum 2.0-1

rebuild with crackNum,2.0

Modified:
  haskell-cracknum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 06:03:43 UTC (rev 309011)
+++ PKGBUILD2018-03-18 07:04:35 UTC (rev 309012)
@@ -4,8 +4,8 @@
 
 _hkgname=crackNum
 pkgname=haskell-cracknum
-pkgver=1.9
-pkgrel=3
+pkgver=2.0
+pkgrel=1
 pkgdesc="Crack various integer, floating-point data formats"
 url="https://github.com/LeventErkok/crackNum";
 license=("custom:BSD3")
@@ -13,7 +13,7 @@
 depends=('ghc-libs' 'haskell-ieee754' 'haskell-data-binary-ieee754' 
'haskell-floatinghex')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('1bcd9342fab2517a39d75006f030efcdbc8e3174c529222ea883b99e9eeacecfed6fa603792488c5ea4f117f389dffe3443de23ae481f4c0ca2980666f3f8262')
+sha512sums=('b356c06a502d7f5dfc617c0fe2aa04005fda4e5e45edc66442ef5e6fd939c716ac321e462b17605247866f8d8b779188e9735202073f7e2710b4fc4bfb9789b4')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 07:04:53
  Author: felixonmars
Revision: 309013

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-cracknum/repos/community-staging-x86_64/PKGBUILD (from rev 
309012, haskell-cracknum/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-03-18 07:04:53 UTC (rev 309013)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=crackNum
+pkgname=haskell-cracknum
+pkgver=2.0
+pkgrel=1
+pkgdesc="Crack various integer, floating-point data formats"
+url="https://github.com/LeventErkok/crackNum";
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ieee754' 'haskell-data-binary-ieee754' 
'haskell-floatinghex')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('b356c06a502d7f5dfc617c0fe2aa04005fda4e5e45edc66442ef5e6fd939c716ac321e462b17605247866f8d8b779188e9735202073f7e2710b4fc4bfb9789b4')
+
+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
+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-sbv/repos (2 files)

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 07:10:16
  Author: felixonmars
Revision: 309015

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 309014, haskell-sbv/trunk/PKGBUILD)

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

Copied: haskell-sbv/repos/community-staging-x86_64/PKGBUILD (from rev 309014, 
haskell-sbv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-03-18 07:10:16 UTC (rev 309015)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sbv
+pkgname=haskell-sbv
+pkgver=7.5
+pkgrel=25
+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-mtl' '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')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('008675fec1f966c80605c5cc089293cd7f0ff3db69e076510af3b2ea22468c874b280d8e72cf5f3bc2fbf4ab4f446d11d7a312515da4235a1a3ca8a38df1b555')
+
+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-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 07:09:57
  Author: felixonmars
Revision: 309014

upgpkg: haskell-sbv 7.5-25

rebuild with crackNum,2.0

Modified:
  haskell-sbv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 07:04:53 UTC (rev 309013)
+++ PKGBUILD2018-03-18 07:09:57 UTC (rev 309014)
@@ -5,7 +5,7 @@
 _hkgname=sbv
 pkgname=haskell-sbv
 pkgver=7.5
-pkgrel=24
+pkgrel=25
 pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
 url="http://leventerkok.github.com/sbv";
 license=("custom:BSD3")


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 07:13:20
  Author: felixonmars
Revision: 309016

upgpkg: cryptol 2.5.0-38

rebuild with crackNum,2.0

Modified:
  cryptol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 07:10:16 UTC (rev 309015)
+++ PKGBUILD2018-03-18 07:13:20 UTC (rev 309016)
@@ -3,7 +3,7 @@
 
 pkgname=cryptol
 pkgver=2.5.0
-pkgrel=37
+pkgrel=38
 pkgdesc="The Language of Cryptography"
 url="http://www.cryptol.net";
 license=("custom:BSD3")


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 07:13:41
  Author: felixonmars
Revision: 309017

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: cryptol/repos/community-staging-x86_64/PKGBUILD (from rev 309016, 
cryptol/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-03-18 07:13:41 UTC (rev 309017)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=cryptol
+pkgver=2.5.0
+pkgrel=38
+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-old-time'
+ 'haskell-presburger' 'haskell-quickcheck' 'haskell-random' 
'haskell-sbv' 'haskell-smtlib'
+ 'haskell-simple-smt' 'haskell-syb' 'haskell-text' 'haskell-tf-random'
+ 'haskell-transformers-base' 'haskell-utf8-string' 'haskell-mtl' 
'haskell-ansi-terminal')
+makedepends=('ghc' 'alex' 'happy')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz";)
+sha512sums=('e528c2b75853f559a0e122286734fce373150a458a5af2a74020240629f9f550747f30f50c16d261326e94f4060497af43951f0253dc6885043cf21aab849265')
+
+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 krita/trunk (PKGBUILD)

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 09:10:23
  Author: arojas
Revision: 319568

Update to 4.0.0

Modified:
  krita/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 06:59:49 UTC (rev 319567)
+++ PKGBUILD2018-03-18 09:10:23 UTC (rev 319568)
@@ -2,20 +2,20 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=krita
-pkgver=3.3.3
-pkgrel=2
+pkgver=4.0.0
+pkgrel=1
 pkgdesc="Edit and paint images"
 arch=(x86_64)
 url="https://krita.org";
 license=(GPL3)
-depends=(kio kitemmodels gsl libraw exiv2 openexr fftw curl boost-libs)
-makedepends=(extra-cmake-modules kdoctools python boost eigen vc poppler-qt5 
opencolorio)
-optdepends=('poppler-qt5: PDF filter' 'ffmpeg: to save animations' 
'opencolorio: for the LUT docker' "krita-plugin-gmic: G'MIC plugin")
+depends=(kio kitemmodels gsl libraw exiv2 openexr fftw curl boost-libs giflib 
hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python boost eigen vc poppler-qt5 
opencolorio python-pyqt5)
+optdepends=('poppler-qt5: PDF filter' 'ffmpeg: to save animations' 
'opencolorio: for the LUT docker'
+"krita-plugin-gmic: G'MIC plugin" 'python-pyqt5: for the Python 
plugins')
 conflicts=(calligra-krita krita-l10n)
 replaces=(calligra-krita krita-l10n)
-source=("https://download.kde.org/stable/krita/$pkgver/$pkgname-$pkgver.tar.gz"{,.sig})
-sha256sums=('bec04e3392e9b311477c5c6a50e2201b43a3afda91d9b24a0fc8e3399585865d'
-'SKIP')
+source=("https://download.kde.org/stable/krita/$pkgver/$pkgname-$pkgver.tar.gz";)
 # {,.sig}
+sha256sums=('09c4765e602c7f76e988cef4fe278a43a17933c8fb57c108b4f7f73bf7315593')
 validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD') # Boudewijn Rempt 

 
 prepare() {


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

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 09:13:09
  Author: arojas
Revision: 319569

archrelease: copy trunk to testing-x86_64

Added:
  krita/repos/testing-x86_64/
  krita/repos/testing-x86_64/PKGBUILD
(from rev 319568, krita/trunk/PKGBUILD)

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

Copied: krita/repos/testing-x86_64/PKGBUILD (from rev 319568, 
krita/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-03-18 09:13:09 UTC (rev 319569)
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 262594 2016-03-26 20:49:29Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgname=krita
+pkgver=4.0.0
+pkgrel=1
+pkgdesc="Edit and paint images"
+arch=(x86_64)
+url="https://krita.org";
+license=(GPL3)
+depends=(kio kitemmodels gsl libraw exiv2 openexr fftw curl boost-libs giflib 
hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python boost eigen vc poppler-qt5 
opencolorio python-pyqt5)
+optdepends=('poppler-qt5: PDF filter' 'ffmpeg: to save animations' 
'opencolorio: for the LUT docker'
+"krita-plugin-gmic: G'MIC plugin" 'python-pyqt5: for the Python 
plugins')
+conflicts=(calligra-krita krita-l10n)
+replaces=(calligra-krita krita-l10n)
+source=("https://download.kde.org/stable/krita/$pkgver/$pkgname-$pkgver.tar.gz";)
 # {,.sig}
+sha256sums=('09c4765e602c7f76e988cef4fe278a43a17933c8fb57c108b4f7f73bf7315593')
+validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD') # Boudewijn Rempt 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 09:57:39
  Author: felixonmars
Revision: 309022

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-language-javascript/repos/community-staging-x86_64/
  haskell-language-javascript/repos/community-staging-x86_64/PKGBUILD
(from rev 309021, haskell-language-javascript/trunk/PKGBUILD)

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

Copied: haskell-language-javascript/repos/community-staging-x86_64/PKGBUILD 
(from rev 309021, haskell-language-javascript/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-03-18 09:57:39 UTC (rev 309022)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=language-javascript
+pkgname=haskell-language-javascript
+pkgver=0.6.0.11
+pkgrel=1
+pkgdesc="Parser for JavaScript"
+url="https://github.com/erikd/language-javascript";
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-mtl" "haskell-text" 
"haskell-utf8-string")
+makedepends=('alex' 'happy' 'ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('da14499347a4125fc3689ce63a219b90754bfd5ee215936eb466a07a8cbd1b6201704bfdb2be67bd2cbebbb6e8ef3bf3dc75cb091990105d9bbcb66e812ffa18')
+
+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
+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-language-javascript/trunk (PKGBUILD)

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 09:57:21
  Author: felixonmars
Revision: 309021

upgpkg: haskell-language-javascript 0.6.0.11-1

rebuild with language-javascript,0.6.0.11

Modified:
  haskell-language-javascript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 09:40:17 UTC (rev 309020)
+++ PKGBUILD2018-03-18 09:57:21 UTC (rev 309021)
@@ -4,8 +4,8 @@
 
 _hkgname=language-javascript
 pkgname=haskell-language-javascript
-pkgver=0.6.0.10
-pkgrel=7
+pkgver=0.6.0.11
+pkgrel=1
 pkgdesc="Parser for JavaScript"
 url="https://github.com/erikd/language-javascript";
 license=("custom:BSD3")
@@ -13,7 +13,7 @@
 depends=('ghc-libs' "haskell-blaze-builder" "haskell-mtl" "haskell-text" 
"haskell-utf8-string")
 makedepends=('alex' 'happy' 'ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('e7ed807c269a165543ff3e32454f84d31c19c8a6140f66688e00fdf0f44f1a5acd36b38ab71bb48be768ba3500d3fdbb88404b75cf41b5310941a28933014e5c')
+sha512sums=('da14499347a4125fc3689ce63a219b90754bfd5ee215936eb466a07a8cbd1b6201704bfdb2be67bd2cbebbb6e8ef3bf3dc75cb091990105d9bbcb66e812ffa18')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 09:58:34
  Author: felixonmars
Revision: 309024

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hjsmin/repos/community-staging-x86_64/PKGBUILD (from rev 
309023, haskell-hjsmin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-03-18 09:58:34 UTC (rev 309024)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hjsmin
+pkgname=haskell-hjsmin
+pkgver=0.2.0.2
+pkgrel=23
+pkgdesc="Haskell implementation of a javascript minifier"
+url="https://github.com/erikd/hjsmin";
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-language-javascript"
+ "haskell-optparse-applicative" "haskell-text")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('ffd67972cef49b5026995e9852e603035513e18089df9f77c35ec084ee3487904018aea018a08408ab53f441aa5200efdd7f5a28191cd814c5e2fc91c2552902')
+
+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
+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-hjsmin/trunk (PKGBUILD)

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 09:58:14
  Author: felixonmars
Revision: 309023

upgpkg: haskell-hjsmin 0.2.0.2-23

rebuild with language-javascript,0.6.0.11

Modified:
  haskell-hjsmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 09:57:39 UTC (rev 309022)
+++ PKGBUILD2018-03-18 09:58:14 UTC (rev 309023)
@@ -5,7 +5,7 @@
 _hkgname=hjsmin
 pkgname=haskell-hjsmin
 pkgver=0.2.0.2
-pkgrel=22
+pkgrel=23
 pkgdesc="Haskell implementation of a javascript minifier"
 url="https://github.com/erikd/hjsmin";
 license=("custom:BSD3")


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 09:59:47
  Author: felixonmars
Revision: 309026

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-static/repos/community-staging-x86_64/
  haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD
(from rev 309025, haskell-yesod-static/trunk/PKGBUILD)

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

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
309025, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-03-18 09:59:47 UTC (rev 309026)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.5.3.1
+pkgrel=114
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-async" "haskell-attoparsec" 
"haskell-base64-bytestring"
+ "haskell-blaze-builder" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptonite" "haskell-cryptonite-conduit" "haskell-memory" 
"haskell-css-text"
+ "haskell-data-default" "haskell-exceptions" "haskell-file-embed" 
"haskell-hashable"
+ "haskell-hjsmin" "haskell-http-types" "haskell-mime-types" 
"haskell-old-time"
+ "haskell-resourcet" "haskell-text" "haskell-unix-compat" 
"haskell-unordered-containers"
+ "haskell-wai" "haskell-wai-app-static" "haskell-yesod-core")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('1ba2061e05d7374579e6ada4760db569817e957ae7adcbde49deab88cb60d2940475b530d017b12dc92ae9acc722c4ac46750e65ec23e485097ccb6e54d123a2')
+
+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
+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-yesod-static/trunk (PKGBUILD)

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 09:59:30
  Author: felixonmars
Revision: 309025

upgpkg: haskell-yesod-static 1.5.3.1-114

rebuild with language-javascript,0.6.0.11

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 09:58:34 UTC (rev 309024)
+++ PKGBUILD2018-03-18 09:59:30 UTC (rev 309025)
@@ -5,7 +5,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.5.3.1
-pkgrel=113
+pkgrel=114
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 10:01:36
  Author: felixonmars
Revision: 309028

archrelease: copy trunk to community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 309027, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
309027, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-03-18 10:01:36 UTC (rev 309028)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.2.3
+pkgrel=22
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="http://tamarin-prover.github.io";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' 'haskell-hunit' 'haskell-binary-orphans'
+ 'haskell-blaze-builder' 'haskell-blaze-html' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-fclabels' 'haskell-file-embed' 'haskell-gitrev' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-mtl' 'haskell-parsec' 
'haskell-resourcet' 'haskell-safe'
+ 'haskell-shakespeare' 'haskell-text' 'haskell-threads' 'haskell-wai' 
'haskell-warp'
+ 'haskell-yesod-core' 'haskell-yesod-static' 
'haskell-tamarin-prover-utils'
+ 'haskell-tamarin-prover-term' 'haskell-tamarin-prover-theory')
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz";)
+sha512sums=('3ec371f0abf1a391bbc2be0b3e3940b5f634515e443a6535ab3b8a5c6514004bbada35838b63e2c1e5edcbbdb230eae5be03dd8464f8516d3301bf02aad3d5ff')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests
+runhaskell Setup build
+
+cd plugins/sapic
+make -j1
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/filetype.vim
+install -Dm644 etc/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+install -Dm644 etc/sapic.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 10:01:18
  Author: felixonmars
Revision: 309027

upgpkg: tamarin-prover 1.2.3-22

rebuild with language-javascript,0.6.0.11

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 09:59:47 UTC (rev 309026)
+++ PKGBUILD2018-03-18 10:01:18 UTC (rev 309027)
@@ -4,7 +4,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.2.3
-pkgrel=21
+pkgrel=22
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="http://tamarin-prover.github.io";
 license=("GPL")


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 10:02:59
  Author: felixonmars
Revision: 309029

upgpkg: hledger-web 1.5.1-7

rebuild with language-javascript,0.6.0.11

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 10:01:36 UTC (rev 309028)
+++ PKGBUILD2018-03-18 10:02:59 UTC (rev 309029)
@@ -4,7 +4,7 @@
 
 pkgname=hledger-web
 pkgver=1.5.1
-pkgrel=6
+pkgrel=7
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org";
 license=("GPL")


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 10:03:17
  Author: felixonmars
Revision: 309030

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-web/repos/community-staging-x86_64/
  hledger-web/repos/community-staging-x86_64/PKGBUILD
(from rev 309029, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 309029, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-03-18 10:03:17 UTC (rev 309030)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.5.1
+pkgrel=7
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-base-compat' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-clientsession' 'haskell-cmdargs' 
'haskell-data-default'
+ 'haskell-hjsmin' 'haskell-http-conduit' 'haskell-http-client' 
'haskell-hunit'
+ 'haskell-conduit-extra' 'haskell-safe' 'haskell-shakespeare' 
'haskell-text' 'haskell-wai'
+ 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 
'haskell-json'
+ 'haskell-megaparsec' 'haskell-mtl' 'haskell-parsec')
+makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('95028853f0a5c86832a4d0488e0f82c8bfda7f0b3f1f21a585efa12f5e882b63a9cb85a028bab5c33b60cafbba1b56608f254b4efa877f60f26356840d74cc9b')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 10:09:34
  Author: felixonmars
Revision: 309032

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 10:09:16
  Author: felixonmars
Revision: 309031

upgpkg: git-annex 6.20180316-2

rebuild with language-javascript,0.6.0.11

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 10:03:17 UTC (rev 309030)
+++ PKGBUILD2018-03-18 10:09:16 UTC (rev 309031)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20180316
-pkgrel=1
+pkgrel=2
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/";
 license=("AGPL3")


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

2018-03-18 Thread Bartłomiej Piotrowski via arch-commits
Date: Sunday, March 18, 2018 @ 10:22:09
  Author: bpiotrowski
Revision: 319570

2.8-1: new upstream release

Modified:
  bash-completion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 09:13:09 UTC (rev 319569)
+++ PKGBUILD2018-03-18 10:22:09 UTC (rev 319570)
@@ -2,16 +2,18 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=bash-completion
-pkgver=2.7
-pkgrel=2
+pkgver=2.8
+pkgrel=1
 pkgdesc='Programmable completion for the bash shell'
-arch=('any')
+arch=(any)
 url='https://github.com/scop/bash-completion'
 license=(GPL2)
 depends=(bash)
 options=(!emptydirs !makeflags)
-source=($url/releases/download/$pkgver/$pkgname-$pkgver.tar.xz)
-sha1sums=('2260342127086cfedd4801f796fdaaa051411a14')
+source=($url/releases/download/$pkgver/$pkgname-$pkgver.tar.xz{,.sig})
+validpgpkeys=(A558062B6D5DA1347CD468D52B0AE2C1B09B07CB)
+sha1sums=('102d618c60fa001165153b58751d07f230aec7e8'
+  'SKIP')
 
 build() {
   cd $pkgname-$pkgver
@@ -30,5 +32,5 @@
   rm "$pkgdir/usr/share/bash-completion/completions/makepkg"
 
   # remove completions which overlap with util-linux
-  rm "$pkgdir/usr/share/bash-completion/completions"/{{u,}mount,rfkill}
+  rm "$pkgdir/usr/share/bash-completion/completions"/{u,}mount
 }


[arch-commits] Commit in ruby-nats-pure/repos/community-any (4 files)

2018-03-18 Thread Thore Bödecker via arch-commits
Date: Sunday, March 18, 2018 @ 10:21:57
  Author: foxxx0
Revision: 309034

archrelease: copy trunk to community-any

Added:
  ruby-nats-pure/repos/community-any/LICENSE
(from rev 309033, ruby-nats-pure/trunk/LICENSE)
  ruby-nats-pure/repos/community-any/PKGBUILD
(from rev 309033, ruby-nats-pure/trunk/PKGBUILD)
Deleted:
  ruby-nats-pure/repos/community-any/LICENSE
  ruby-nats-pure/repos/community-any/PKGBUILD

--+
 LICENSE  |   42 ++--
 PKGBUILD |   71 ++---
 2 files changed, 57 insertions(+), 56 deletions(-)

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 10:21:45 UTC (rev 309033)
+++ PKGBUILD2018-03-18 10:21:57 UTC (rev 309034)
@@ -1,35 +0,0 @@
-# Maintainer: Thore Bödecker 
-# Contributor: Tim Meusel 
-
-_gemname='nats-pure'
-pkgname="ruby-${_gemname}"
-pkgver=0.2.4
-pkgrel=2
-pkgdesc="Ruby client for the NATS messaging system"
-url="https://nats.io";
-arch=('any')
-license=('MIT')
-depends=('ruby')
-options=('!emptydirs')
-source=("https://rubygems.org/gems/${_gemname}-${pkgver}.gem";
-'LICENSE')
-noextract=("${_gemname}-${pkgver}.gem")
-sha512sums=('32cd6df93a050004d116b25a0db1b8c3844aaa8f3047b431eaf5285531b4b3ae791272d1e2e20c19fa529ab0329d579b2c8a4393723e3a9fa31410102e9fad11'
-
'ec05133944c3dc861ae437ce8681f54a871b614ff020fd4db1b3b3eb75f9e61b682d1cceb5a3335e479e3541072abd4abc8f272d2e4d8803f97fe9f58b08')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-
-  gem install \
---ignore-dependencies \
---no-user-install \
--i "${pkgdir}${_gemdir}" \
--n "${pkgdir}/usr/bin" \
-${_gemname}-${pkgver}.gem
-
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-
-  install -D -m644 "${srcdir}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-nats-pure/repos/community-any/PKGBUILD (from rev 309033, 
ruby-nats-pure/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 10:21:57 UTC (rev 309034)
@@ -0,0 +1,36 @@
+# Maintainer: Thore Bödecker 
+# Contributor: Tim Meusel 

[arch-commits] Commit in ruby-nats-pure/trunk (PKGBUILD)

2018-03-18 Thread Thore Bödecker via arch-commits
Date: Sunday, March 18, 2018 @ 10:21:45
  Author: foxxx0
Revision: 309033

upgpkg: ruby-nats-pure 0.4.0-1

update to 0.4.0

Modified:
  ruby-nats-pure/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 10:09:34 UTC (rev 309032)
+++ PKGBUILD2018-03-18 10:21:45 UTC (rev 309033)
@@ -3,18 +3,19 @@
 
 _gemname='nats-pure'
 pkgname="ruby-${_gemname}"
-pkgver=0.2.4
-pkgrel=2
+pkgver=0.4.0
+pkgrel=1
 pkgdesc="Ruby client for the NATS messaging system"
 url="https://nats.io";
 arch=('any')
 license=('MIT')
 depends=('ruby')
+makedepends=('ruby-rdoc')
 options=('!emptydirs')
 source=("https://rubygems.org/gems/${_gemname}-${pkgver}.gem";
 'LICENSE')
 noextract=("${_gemname}-${pkgver}.gem")
-sha512sums=('32cd6df93a050004d116b25a0db1b8c3844aaa8f3047b431eaf5285531b4b3ae791272d1e2e20c19fa529ab0329d579b2c8a4393723e3a9fa31410102e9fad11'
+sha512sums=('198a07de4bebb2735748038d688c2ff1f1843a6329619be1144105bb8780918048c024cc3c0595ea7761d6bc3bbc031efcc627303f4c885961fb28655169109f'
 
'ec05133944c3dc861ae437ce8681f54a871b614ff020fd4db1b3b3eb75f9e61b682d1cceb5a3335e479e3541072abd4abc8f272d2e4d8803f97fe9f58b08')
 
 package() {


[arch-commits] Commit in bash-completion/repos (testing-any testing-any/PKGBUILD)

2018-03-18 Thread Bartłomiej Piotrowski via arch-commits
Date: Sunday, March 18, 2018 @ 10:22:19
  Author: bpiotrowski
Revision: 319571

archrelease: copy trunk to testing-any

Added:
  bash-completion/repos/testing-any/
  bash-completion/repos/testing-any/PKGBUILD
(from rev 319570, bash-completion/trunk/PKGBUILD)

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

Copied: bash-completion/repos/testing-any/PKGBUILD (from rev 319570, 
bash-completion/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2018-03-18 10:22:19 UTC (rev 319571)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=bash-completion
+pkgver=2.8
+pkgrel=1
+pkgdesc='Programmable completion for the bash shell'
+arch=(any)
+url='https://github.com/scop/bash-completion'
+license=(GPL2)
+depends=(bash)
+options=(!emptydirs !makeflags)
+source=($url/releases/download/$pkgver/$pkgname-$pkgver.tar.xz{,.sig})
+validpgpkeys=(A558062B6D5DA1347CD468D52B0AE2C1B09B07CB)
+sha1sums=('102d618c60fa001165153b58751d07f230aec7e8'
+  'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # bash-completion is sourced in /etc/bash.bashrc so that non-bash shell 
don't source it
+  rm "$pkgdir/etc/profile.d/bash_completion.sh"
+
+  # remove Slackware's makepkg completion
+  rm "$pkgdir/usr/share/bash-completion/completions/makepkg"
+
+  # remove completions which overlap with util-linux
+  rm "$pkgdir/usr/share/bash-completion/completions"/{u,}mount
+}


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

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 11:02:13
  Author: arojas
Revision: 319572

Update to 0.6.4

Modified:
  nbxmpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 10:22:19 UTC (rev 319571)
+++ PKGBUILD2018-03-18 11:02:13 UTC (rev 319572)
@@ -3,7 +3,7 @@
 
 pkgbase=nbxmpp
 pkgname=('python-nbxmpp' 'python2-nbxmpp')
-pkgver=0.6.3
+pkgver=0.6.4
 pkgrel=1
 arch=('any')
 url="https://dev.gajim.org/gajim/python-nbxmpp/";
@@ -10,7 +10,7 @@
 license=('GPL3')
 makedepends=('python' 'python2')
 
source=($pkgbase-$pkgver.tar.gz::https://dev.gajim.org/gajim/python-nbxmpp/repository/$pkgbase-$pkgver/archive.tar.gz)
-sha1sums=('80d44536f48c4d6a44ca6b92eced64edbb3ca963')
+sha1sums=('64bfe02108b930055f8a77b93c06f1c2ef9c20e0')
 
 prepare() {
   cp -r python-nbxmpp-* ${pkgbase}-${pkgver}


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

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 11:02:51
  Author: arojas
Revision: 319573

archrelease: copy trunk to extra-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 11:02:13 UTC (rev 319572)
+++ PKGBUILD2018-03-18 11:02:51 UTC (rev 319573)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgbase=nbxmpp
-pkgname=('python-nbxmpp' 'python2-nbxmpp')
-pkgver=0.6.3
-pkgrel=1
-arch=('any')
-url="https://dev.gajim.org/gajim/python-nbxmpp/";
-license=('GPL3')
-makedepends=('python' 'python2')
-source=($pkgbase-$pkgver.tar.gz::https://dev.gajim.org/gajim/python-nbxmpp/repository/$pkgbase-$pkgver/archive.tar.gz)
-sha1sums=('80d44536f48c4d6a44ca6b92eced64edbb3ca963')
-
-prepare() {
-  cp -r python-nbxmpp-* ${pkgbase}-${pkgver}
-  cp -r python-nbxmpp-* ${pkgbase}-${pkgver}-python2
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}-python2
-  python2 setup.py build
-  cd ../${pkgbase}-${pkgver}
-  python setup.py build
-}
-
-package_python-nbxmpp() {
-  pkgdesc="A Python 3 library to use Jabber/XMPP networks in a non-blocking 
way"
-  depends=('python')
-  cd ${pkgbase}-${pkgver}
-  python setup.py install --root="${pkgdir}"
-}
-
-package_python2-nbxmpp() {
-  pkgdesc="A Python 2 library to use Jabber/XMPP networks in a non-blocking 
way"
-  depends=('python2')
-  cd ${pkgbase}-${pkgver}-python2
-  python2 setup.py install --root="${pkgdir}"
-}

Copied: nbxmpp/repos/extra-any/PKGBUILD (from rev 319572, nbxmpp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 11:02:51 UTC (rev 319573)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgbase=nbxmpp
+pkgname=('python-nbxmpp' 'python2-nbxmpp')
+pkgver=0.6.4
+pkgrel=1
+arch=('any')
+url="https://dev.gajim.org/gajim/python-nbxmpp/";
+license=('GPL3')
+makedepends=('python' 'python2')
+source=($pkgbase-$pkgver.tar.gz::https://dev.gajim.org/gajim/python-nbxmpp/repository/$pkgbase-$pkgver/archive.tar.gz)
+sha1sums=('64bfe02108b930055f8a77b93c06f1c2ef9c20e0')
+
+prepare() {
+  cp -r python-nbxmpp-* ${pkgbase}-${pkgver}
+  cp -r python-nbxmpp-* ${pkgbase}-${pkgver}-python2
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}-python2
+  python2 setup.py build
+  cd ../${pkgbase}-${pkgver}
+  python setup.py build
+}
+
+package_python-nbxmpp() {
+  pkgdesc="A Python 3 library to use Jabber/XMPP networks in a non-blocking 
way"
+  depends=('python')
+  cd ${pkgbase}-${pkgver}
+  python setup.py install --root="${pkgdir}"
+}
+
+package_python2-nbxmpp() {
+  pkgdesc="A Python 2 library to use Jabber/XMPP networks in a non-blocking 
way"
+  depends=('python2')
+  cd ${pkgbase}-${pkgver}-python2
+  python2 setup.py install --root="${pkgdir}"
+}


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

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 11:24:16
  Author: arojas
Revision: 319574

Update to 1.0.0

Modified:
  gajim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 11:02:51 UTC (rev 319573)
+++ PKGBUILD2018-03-18 11:24:16 UTC (rev 319574)
@@ -2,33 +2,33 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=gajim
-pkgver=0.16.9
+pkgver=1.0.0
 pkgrel=1
 pkgdesc="A full featured and easy to use Jabber client"
 arch=('any')
 url="https://www.gajim.org/";
 license=('GPL3')
-depends=('pygtk' 'python2-pyopenssl' 'python2-pyasn1' 'python2-nbxmpp' 
'ca-certificates' 'bind-tools')
+depends=('python-gobject' 'python-cairo' 'python-pyopenssl' 'python-pyasn1' 
'python-nbxmpp'
+ 'ca-certificates' 'bind-tools' 'hicolor-icon-theme')
 makedepends=('intltool')
-optdepends=('python2-dbus: dbus support'
+optdepends=('python-dbus: dbus support'
 'gtkspell: for spelling support'
 'libxss: for idle module'
 'notification-daemon: for desktop notification'
-'python2-gnomekeyring: for GnomeKeyring support'
-'python2-crypto: support for E2E encryption'
-'python2-docutils: for RST generator support'
+'python-keyring: password storage'
+'python-crypto: support for E2E encryption'
+'python-docutils: for RST generator support'
 'gupnp-igd: for UPnP-IGD support'
-'python2-gnupg: for PGP encryption')
+'python-gnupg: for PGP encryption')
 source=(https://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2)
-sha1sums=('5e329aa769cc098ffeea94894bd8b4ad200293a1')
+sha1sums=('05d5177af4a09b041aa03d488524c6859fa51130')
 
 build() {
   cd ${pkgname}-${pkgver}
-  PYTHON=python2 ./configure --prefix=/usr --enable-site-packages
-  make
+  python setup.py build
 }
 
 package() {
   cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
+  python setup.py install --root="$pkgdir" --optimize=1
 }


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

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 11:24:44
  Author: arojas
Revision: 319575

archrelease: copy trunk to extra-any

Added:
  gajim/repos/extra-any/PKGBUILD
(from rev 319574, gajim/trunk/PKGBUILD)
Deleted:
  gajim/repos/extra-any/PKGBUILD

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

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

Copied: gajim/repos/extra-any/PKGBUILD (from rev 319574, gajim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 11:24:44 UTC (rev 319575)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=gajim
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="A full featured and easy to use Jabber client"
+arch=('any')
+url="https://www.gajim.org/";
+license=('GPL3')
+depends=('python-gobject' 'python-cairo' 'python-pyopenssl' 'python-pyasn1' 
'python-nbxmpp'
+ 'ca-certificates' 'bind-tools' 'hicolor-icon-theme')
+makedepends=('intltool')
+optdepends=('python-dbus: dbus support'
+'gtkspell: for spelling support'
+'libxss: for idle module'
+'notification-daemon: for desktop notification'
+'python-keyring: password storage'
+'python-crypto: support for E2E encryption'
+'python-docutils: for RST generator support'
+'gupnp-igd: for UPnP-IGD support'
+'python-gnupg: for PGP encryption')
+source=(https://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2)
+sha1sums=('05d5177af4a09b041aa03d488524c6859fa51130')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2018-03-18 Thread Pierre Neidhardt via arch-commits
Date: Sunday, March 18, 2018 @ 11:45:19
  Author: ambrevar
Revision: 309041

upgpkg: qutebrowser 1.2.1-1

qutebrowser 1.2.1

Modified:
  qutebrowser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 10:48:35 UTC (rev 309040)
+++ PKGBUILD2018-03-18 11:45:19 UTC (rev 309041)
@@ -2,7 +2,7 @@
 # Contributor: Florian Bruhin (The Compiler) 
 
 pkgname=qutebrowser
-pkgver=1.2.0
+pkgver=1.2.1
 pkgrel=1
 pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
 arch=("any")
@@ -23,10 +23,8 @@

"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz";

"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc";)
 validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
-sha256sums=(
-   "9e42ad864781fe83aac34901b423daac2392ec636872fb8915de202d698c407d"
-   "SKIP"
-)
+sha256sums=('1ce6cf2634f06d3e715c53b50e4d042ba04aa39207ec318039a2a333e2d46beb'
+'SKIP')
 
 build() {
cd "$srcdir/$pkgname-$pkgver"


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

2018-03-18 Thread Pierre Neidhardt via arch-commits
Date: Sunday, March 18, 2018 @ 12:47:41
  Author: ambrevar
Revision: 309042

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 11:45:19 UTC (rev 309041)
+++ PKGBUILD2018-03-18 12:47:41 UTC (rev 309042)
@@ -1,40 +0,0 @@
-# Maintainer: Pierre Neidhardt 
-# Contributor: Florian Bruhin (The Compiler) 
-
-pkgname=qutebrowser
-pkgver=1.2.0
-pkgrel=1
-pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
-arch=("any")
-url="http://www.qutebrowser.org/";
-license=("GPL")
-depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
-   "python-pyqt5>=5.7" "python-yaml" "qt5-base>=5.7.1" "qt5-webengine")
-makedepends=("asciidoc")
-optdepends=("gst-libav: media playback"
-   "gst-plugins-base: media playback"
-   "gst-plugins-good: media playback"
-   "gst-plugins-bad: media playback"
-   "gst-plugins-ugly: media playback"
-   "pdfjs: displaying PDF in-browser"
-   "qt5-webkit: alternative backend")
-options=(!emptydirs)
-source=(
-   
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz";
-   
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc";)
-validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
-sha256sums=(
-   "9e42ad864781fe83aac34901b423daac2392ec636872fb8915de202d698c407d"
-   "SKIP"
-)
-
-build() {
-   cd "$srcdir/$pkgname-$pkgver"
-   a2x -f manpage doc/qutebrowser.1.asciidoc
-   python setup.py build
-}
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-   make -f misc/Makefile DESTDIR="$pkgdir" install
-}

Copied: qutebrowser/repos/community-any/PKGBUILD (from rev 309041, 
qutebrowser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 12:47:41 UTC (rev 309042)
@@ -0,0 +1,38 @@
+# Maintainer: Pierre Neidhardt 
+# Contributor: Florian Bruhin (The Compiler) 
+
+pkgname=qutebrowser
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
+arch=("any")
+url="http://www.qutebrowser.org/";
+license=("GPL")
+depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
+   "python-pyqt5>=5.7" "python-yaml" "qt5-base>=5.7.1" "qt5-webengine")
+makedepends=("asciidoc")
+optdepends=("gst-libav: media playback"
+   "gst-plugins-base: media playback"
+   "gst-plugins-good: media playback"
+   "gst-plugins-bad: media playback"
+   "gst-plugins-ugly: media playback"
+   "pdfjs: displaying PDF in-browser"
+   "qt5-webkit: alternative backend")
+options=(!emptydirs)
+source=(
+   
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz";
+   
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc";)
+validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
+sha256sums=('1ce6cf2634f06d3e715c53b50e4d042ba04aa39207ec318039a2a333e2d46beb'
+'SKIP')
+
+build() {
+   cd "$srcdir/$pkgname-$pkgver"
+   a2x -f manpage doc/qutebrowser.1.asciidoc
+   python setup.py build
+}
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+   make -f misc/Makefile DESTDIR="$pkgdir" install
+}


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

2018-03-18 Thread Bartłomiej Piotrowski via arch-commits
Date: Sunday, March 18, 2018 @ 13:16:53
  Author: bpiotrowski
Revision: 309043

1.0.0rc5+19+g69663f0b-1

Modified:
  runc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 12:47:41 UTC (rev 309042)
+++ PKGBUILD2018-03-18 13:16:53 UTC (rev 309043)
@@ -2,46 +2,40 @@
 # Maintainer: Sébastien "Seblu" Luttringer
 
 pkgname=runc
-pkgver=0.1.1
-pkgrel=4
+pkgver=1.0.0rc5+19+g69663f0b
+pkgrel=1
 pkgdesc='CLI tool for managing OCI compliant containers'
-arch=('x86_64')
+arch=(x86_64)
 url='https://runc.io/'
-license=('Apache')
-depends=('glibc' 'libseccomp')
-makedepends=('git' 'go-pie' 'go-md2man')
-source=("runc.io::git+https://github.com/opencontainers/runc.git#tag=v$pkgver";)
+license=(Apache)
+depends=(glibc libseccomp)
+makedepends=(git go-pie go-md2man)
+_commit=69663f0bd4b60df09991c08812a60108003fa340  # master
+source=(git+https://github.com/opencontainers/runc.git#commit=$_commit)
 md5sums=('SKIP')
 
+pkgver() {
+  cd runc
+  git describe | sed 's/^v//;s/-//;s/-/+/g'
+}
+
 prepare() {
-  cd runc.io
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  :
+  mkdir -p src/github.com/opencontainers
+  cp -r runc src/github.com/opencontainers/
 }
 
 build() {
-  mkdir -p src/github.com/opencontainers
-  cd src/github.com/opencontainers
-  ln -fs "$srcdir/runc.io"
-  cd runc.io
-  export GOPATH="$srcdir" BUILDTAGS='seccomp'
-  make
-  man/md2man-all.sh 2>/dev/null
+  cd src/github.com/opencontainers/runc
+  GOPATH="$srcdir" BUILDTAGS='seccomp' make runc man
 }
 
 package() {
-  cd runc.io
+  cd src/github.com/opencontainers/runc
+
   install -Dm755 runc "$pkgdir/usr/bin/runc"
-  # man pages
-  install -dm755 "$pkgdir/usr/share/man"
-  mv man/man*/ "$pkgdir/usr/share/man"
+  install -Dm644 contrib/completions/bash/runc \
+"$pkgdir/usr/share/bash-completion/completions/runc"
+  
+  install -d "$pkgdir/usr/share/man/man8"
+  install -m644 man/man8/*.8 "$pkgdir/usr/share/man/man8"
 }
-
-# vim:set ts=2 sw=2 et:


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

2018-03-18 Thread Bartłomiej Piotrowski via arch-commits
Date: Sunday, March 18, 2018 @ 13:17:15
  Author: bpiotrowski
Revision: 309044

archrelease: copy trunk to community-testing-x86_64

Added:
  runc/repos/community-testing-x86_64/
  runc/repos/community-testing-x86_64/PKGBUILD
(from rev 309043, runc/trunk/PKGBUILD)

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

Copied: runc/repos/community-testing-x86_64/PKGBUILD (from rev 309043, 
runc/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-03-18 13:17:15 UTC (rev 309044)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer
+
+pkgname=runc
+pkgver=1.0.0rc5+19+g69663f0b
+pkgrel=1
+pkgdesc='CLI tool for managing OCI compliant containers'
+arch=(x86_64)
+url='https://runc.io/'
+license=(Apache)
+depends=(glibc libseccomp)
+makedepends=(git go-pie go-md2man)
+_commit=69663f0bd4b60df09991c08812a60108003fa340  # master
+source=(git+https://github.com/opencontainers/runc.git#commit=$_commit)
+md5sums=('SKIP')
+
+pkgver() {
+  cd runc
+  git describe | sed 's/^v//;s/-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir -p src/github.com/opencontainers
+  cp -r runc src/github.com/opencontainers/
+}
+
+build() {
+  cd src/github.com/opencontainers/runc
+  GOPATH="$srcdir" BUILDTAGS='seccomp' make runc man
+}
+
+package() {
+  cd src/github.com/opencontainers/runc
+
+  install -Dm755 runc "$pkgdir/usr/bin/runc"
+  install -Dm644 contrib/completions/bash/runc \
+"$pkgdir/usr/share/bash-completion/completions/runc"
+  
+  install -d "$pkgdir/usr/share/man/man8"
+  install -m644 man/man8/*.8 "$pkgdir/usr/share/man/man8"
+}


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

2018-03-18 Thread Dan Printzell via arch-commits
Date: Sunday, March 18, 2018 @ 14:23:17
  Author: wild
Revision: 309046

archrelease: copy trunk to staging-x86_64

Added:
  ldc/repos/staging-x86_64/
  ldc/repos/staging-x86_64/PKGBUILD
(from rev 309045, ldc/trunk/PKGBUILD)
  ldc/repos/staging-x86_64/ldc2.conf
(from rev 309045, ldc/trunk/ldc2.conf)

---+
 PKGBUILD  |  111 
 ldc2.conf |   19 ++
 2 files changed, 130 insertions(+)

Copied: ldc/repos/staging-x86_64/PKGBUILD (from rev 309045, ldc/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-03-18 14:23:17 UTC (rev 309046)
@@ -0,0 +1,111 @@
+# $Id$
+# Maintainer:
+# Contributor: Mihails Strasuns 
+# Contributor: Sven-Hendrik Haase 
+
+pkgname=('ldc' 'liblphobos')
+groups=('dlang' 'dlang-ldc')
+pkgver=1.8.0
+_pkgcommit=df860d03c918f6988370d48f89c61c27ebbede74
+_dversion=2.078.3
+_llvmversion=6.0.0
+epoch=1
+pkgrel=2
+pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D 
runtime and libphobos2"
+arch=('x86_64')
+url="https://github.com/ldc-developers/ldc";
+license=('BSD')
+makedepends=('git' 'cmake' 'llvm' 'ldc')
+
+source=(
+"git+https://github.com/ldc-developers/ldc#commit=$_pkgcommit";
+"git+https://github.com/ldc-developers/druntime.git";
+"git+https://github.com/ldc-developers/phobos.git";
+"git+https://github.com/ldc-developers/dmd-testsuite.git";
+"ldc2.conf"
+)
+
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'55ba34319db861a761797ac0075b0b1f5f4d37a243075aedb628aeedc77cc9d6')
+
+prepare() {
+cd "$srcdir/ldc"
+
+git submodule init
+git config submodule.druntime.url "$srcdir/druntime"
+git config submodule.phobos.url "$srcdir/phobos"
+git config submodule.tests/d2/dmd-testsuite.url "$srcdir/dmd-testsuite"
+git submodule update
+
+# libclang_rt* -> clang/_llvmversion/lib/linux/libclang_rt*
+sed -i "s/libclang_rt/clang\/$_llvmversion\/lib\/linux\/&/g" 
driver/linker-gcc.cpp
+}
+
+build() {
+cd "$srcdir/ldc"
+
+mkdir -p build && cd build
+
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
+-DBUILD_SHARED_LIBS=BOTH \
+-DLDC_WITH_LLD=OFF \
+..
+make
+}
+
+check() {
+cd "$srcdir/ldc/build"
+   make all-test-runners
+}
+
+package_ldc() {
+depends=('liblphobos' 'llvm-libs' 'llvm' 'clang')
+backup=('etc/ldc2.conf')
+provides=("d-compiler=$_dversion")
+
+cd "$srcdir/ldc/build"
+make install DESTDIR="$pkgdir"
+
+# move bash-completion
+mkdir -p "$pkgdir/usr/share/bash-completion/completions/"
+mv "$pkgdir/etc/bash_completion.d/ldc2" 
"$pkgdir/usr/share/bash-completion/completions/"
+rm -rf "$pkgdir/etc/bash_completion.d"
+
+# remove liblphobos files
+rm -rf "$pkgdir/usr/include"
+rm -rf "$pkgdir/usr/lib"
+
+# symlinks
+ln -s /usr/share/bash-completion/completions/ldc2 
"$pkgdir/usr/share/bash-completion/completions/ldc"
+ln -s /usr/bin/ldc2 "$pkgdir/usr/bin/ldc"
+ln -s /usr/bin/ldmd2 "$pkgdir/usr/bin/ldmd"
+
+# licenses
+install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+# default configuration files
+install -D -m644 "$srcdir/ldc2.conf" "$pkgdir/etc/ldc2.conf"
+}
+
+package_liblphobos() {
+provides=('d-runtime' 'd-stdlib')
+depends=('curl')
+options=('staticlibs')
+
+cd "$srcdir/ldc/build"
+make install DESTDIR="$pkgdir"
+
+# remove ldc files
+rm -rf "$pkgdir/usr/bin/"
+rm -rf "$pkgdir/etc/"
+
+# licenses
+install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: ldc/repos/staging-x86_64/ldc2.conf (from rev 309045, 
ldc/trunk/ldc2.conf)
===
--- staging-x86_64/ldc2.conf(rev 0)
+++ staging-x86_64/ldc2.conf2018-03-18 14:23:17 UTC (rev 309046)
@@ -0,0 +1,19 @@
+// See comments in driver/config.d in ldc source tree for grammar description 
of
+// this config file.
+
+// The default group is required
+default:
+{
+// default switches injected before all explicit command-line switches
+switches = [
+"-I/usr/include/dlang/ldc/ldc",
+"-I/usr/include/dlang/ldc",
+"-L--no-warn-search-mismatch",
+"-defaultlib=phobos2-ldc,druntime-ldc",
+"-link-defaultlib-shared"
+];
+// default switches appended after all explicit command-line switches
+post-switches = [
+"-L-L/usr/lib"
+];
+};


[arch-commits] Commit in ldc/trunk (PKGBUILD ldc2.conf)

2018-03-18 Thread Dan Printzell via arch-commits
Date: Sunday, March 18, 2018 @ 14:23:09
  Author: wild
Revision: 309045

upgpkg: ldc 1:1.8.0-2

Staging release for LLVM 6.0, also added check()

Modified:
  ldc/trunk/PKGBUILD
  ldc/trunk/ldc2.conf

---+
 PKGBUILD  |   13 +
 ldc2.conf |3 +--
 2 files changed, 10 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 13:17:15 UTC (rev 309044)
+++ PKGBUILD2018-03-18 14:23:09 UTC (rev 309045)
@@ -8,9 +8,9 @@
 pkgver=1.8.0
 _pkgcommit=df860d03c918f6988370d48f89c61c27ebbede74
 _dversion=2.078.3
-_llvmversion=5.0.1
+_llvmversion=6.0.0
 epoch=1
-pkgrel=1
+pkgrel=2
 pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D 
runtime and libphobos2"
 arch=('x86_64')
 url="https://github.com/ldc-developers/ldc";
@@ -29,7 +29,7 @@
 'SKIP'
 'SKIP'
 'SKIP'
-'d4008223bca1071d2b319cd7d337a31008c79602dfefc3bd2e0ab8dc141f3b56')
+'55ba34319db861a761797ac0075b0b1f5f4d37a243075aedb628aeedc77cc9d6')
 
 prepare() {
 cd "$srcdir/ldc"
@@ -60,8 +60,13 @@
 make
 }
 
+check() {
+cd "$srcdir/ldc/build"
+   make all-test-runners
+}
+
 package_ldc() {
-depends=('liblphobos' 'llvm-libs' 'llvm')
+depends=('liblphobos' 'llvm-libs' 'llvm' 'clang')
 backup=('etc/ldc2.conf')
 provides=("d-compiler=$_dversion")
 

Modified: ldc2.conf
===
--- ldc2.conf   2018-03-18 13:17:15 UTC (rev 309044)
+++ ldc2.conf   2018-03-18 14:23:09 UTC (rev 309045)
@@ -14,7 +14,6 @@
 ];
 // default switches appended after all explicit command-line switches
 post-switches = [
-"-L-L/usr/lib",
-"-L-L/usr/lib/clang/5.0.1/lib/linux/"
+"-L-L/usr/lib"
 ];
 };


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

2018-03-18 Thread Dan Printzell via arch-commits
Date: Sunday, March 18, 2018 @ 14:29:18
  Author: wild
Revision: 309047

archrelease: copy trunk to community-staging-x86_64

Added:
  ldc/repos/community-staging-x86_64/
  ldc/repos/community-staging-x86_64/PKGBUILD
(from rev 309046, ldc/trunk/PKGBUILD)
  ldc/repos/community-staging-x86_64/ldc2.conf
(from rev 309046, ldc/trunk/ldc2.conf)

---+
 PKGBUILD  |  111 
 ldc2.conf |   19 ++
 2 files changed, 130 insertions(+)

Copied: ldc/repos/community-staging-x86_64/PKGBUILD (from rev 309046, 
ldc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-03-18 14:29:18 UTC (rev 309047)
@@ -0,0 +1,111 @@
+# $Id$
+# Maintainer:
+# Contributor: Mihails Strasuns 
+# Contributor: Sven-Hendrik Haase 
+
+pkgname=('ldc' 'liblphobos')
+groups=('dlang' 'dlang-ldc')
+pkgver=1.8.0
+_pkgcommit=df860d03c918f6988370d48f89c61c27ebbede74
+_dversion=2.078.3
+_llvmversion=6.0.0
+epoch=1
+pkgrel=2
+pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D 
runtime and libphobos2"
+arch=('x86_64')
+url="https://github.com/ldc-developers/ldc";
+license=('BSD')
+makedepends=('git' 'cmake' 'llvm' 'ldc')
+
+source=(
+"git+https://github.com/ldc-developers/ldc#commit=$_pkgcommit";
+"git+https://github.com/ldc-developers/druntime.git";
+"git+https://github.com/ldc-developers/phobos.git";
+"git+https://github.com/ldc-developers/dmd-testsuite.git";
+"ldc2.conf"
+)
+
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'55ba34319db861a761797ac0075b0b1f5f4d37a243075aedb628aeedc77cc9d6')
+
+prepare() {
+cd "$srcdir/ldc"
+
+git submodule init
+git config submodule.druntime.url "$srcdir/druntime"
+git config submodule.phobos.url "$srcdir/phobos"
+git config submodule.tests/d2/dmd-testsuite.url "$srcdir/dmd-testsuite"
+git submodule update
+
+# libclang_rt* -> clang/_llvmversion/lib/linux/libclang_rt*
+sed -i "s/libclang_rt/clang\/$_llvmversion\/lib\/linux\/&/g" 
driver/linker-gcc.cpp
+}
+
+build() {
+cd "$srcdir/ldc"
+
+mkdir -p build && cd build
+
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
+-DBUILD_SHARED_LIBS=BOTH \
+-DLDC_WITH_LLD=OFF \
+..
+make
+}
+
+check() {
+cd "$srcdir/ldc/build"
+   make all-test-runners
+}
+
+package_ldc() {
+depends=('liblphobos' 'llvm-libs' 'llvm' 'clang')
+backup=('etc/ldc2.conf')
+provides=("d-compiler=$_dversion")
+
+cd "$srcdir/ldc/build"
+make install DESTDIR="$pkgdir"
+
+# move bash-completion
+mkdir -p "$pkgdir/usr/share/bash-completion/completions/"
+mv "$pkgdir/etc/bash_completion.d/ldc2" 
"$pkgdir/usr/share/bash-completion/completions/"
+rm -rf "$pkgdir/etc/bash_completion.d"
+
+# remove liblphobos files
+rm -rf "$pkgdir/usr/include"
+rm -rf "$pkgdir/usr/lib"
+
+# symlinks
+ln -s /usr/share/bash-completion/completions/ldc2 
"$pkgdir/usr/share/bash-completion/completions/ldc"
+ln -s /usr/bin/ldc2 "$pkgdir/usr/bin/ldc"
+ln -s /usr/bin/ldmd2 "$pkgdir/usr/bin/ldmd"
+
+# licenses
+install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+# default configuration files
+install -D -m644 "$srcdir/ldc2.conf" "$pkgdir/etc/ldc2.conf"
+}
+
+package_liblphobos() {
+provides=('d-runtime' 'd-stdlib')
+depends=('curl')
+options=('staticlibs')
+
+cd "$srcdir/ldc/build"
+make install DESTDIR="$pkgdir"
+
+# remove ldc files
+rm -rf "$pkgdir/usr/bin/"
+rm -rf "$pkgdir/etc/"
+
+# licenses
+install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: ldc/repos/community-staging-x86_64/ldc2.conf (from rev 309046, 
ldc/trunk/ldc2.conf)
===
--- community-staging-x86_64/ldc2.conf  (rev 0)
+++ community-staging-x86_64/ldc2.conf  2018-03-18 14:29:18 UTC (rev 309047)
@@ -0,0 +1,19 @@
+// See comments in driver/config.d in ldc source tree for grammar description 
of
+// this config file.
+
+// The default group is required
+default:
+{
+// default switches injected before all explicit command-line switches
+switches = [
+"-I/usr/include/dlang/ldc/ldc",
+"-I/usr/include/dlang/ldc",
+"-L--no-warn-search-mismatch",
+"-defaultlib=phobos2-ldc,druntime-ldc",
+"-link-defaultlib-shared"
+];
+// default switches appended after all explicit command-line switches
+post-switches = [
+"-L-L/usr/lib"
+];
+};


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 14:45:49
  Author: felixonmars
Revision: 309048

upgpkg: dingo 0.13-4

enable server auto selection by default

Modified:
  dingo/trunk/PKGBUILD
  dingo/trunk/dingo.service

---+
 PKGBUILD  |4 ++--
 dingo.service |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 14:29:18 UTC (rev 309047)
+++ PKGBUILD2018-03-18 14:45:49 UTC (rev 309048)
@@ -3,7 +3,7 @@
 
 pkgname=dingo
 pkgver=0.13
-pkgrel=3
+pkgrel=4
 pkgdesc="A DNS client in Go that supports Google DNS over HTTPS"
 arch=('x86_64')
 url="https://github.com/pforemski/dingo";
@@ -13,7 +13,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/pforemski/dingo/archive/$pkgver.tar.gz";
 dingo.service)
 
sha512sums=('24748a726aea598f6f8785bfe0bc349608e7106860fa73f4e3da12936035c249e8bdfee0e2d162d876beecf60b5cdfbce6cd0f09b040ce7b1db2d901bc0fd350'
-
'90bfe184b3407d32d58f69e1ee33d8b42492fc0791614fcbe06f7345052bebbc97fca897b30c9617d1e95874fc4a528d47978d25059331b720187515d50b5e07')
+
'82180643e2083963eb935b9a5a7ba0bec5dd711fd8e95ac62e46bccc094c5195b519baea07e3434b0ad34d6513959b0bc4058e11a7d8640d700b78d217292f0f')
 
 prepare() {
   mkdir .gopath

Modified: dingo.service
===
--- dingo.service   2018-03-18 14:29:18 UTC (rev 309047)
+++ dingo.service   2018-03-18 14:45:49 UTC (rev 309048)
@@ -5,7 +5,7 @@
 [Service]
 Type=simple
 User=nobody
-ExecStart=/usr/bin/dingo
+ExecStart=/usr/bin/dingo -gdns:auto
 
 [Install]
 WantedBy=multi-user.target


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 14:46:57
  Author: felixonmars
Revision: 309049

archrelease: copy trunk to community-x86_64

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

---+
 PKGBUILD  |   68 
 dingo.service |   22 +-
 2 files changed, 45 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 14:45:49 UTC (rev 309048)
+++ PKGBUILD2018-03-18 14:46:57 UTC (rev 309049)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=dingo
-pkgver=0.13
-pkgrel=3
-pkgdesc="A DNS client in Go that supports Google DNS over HTTPS"
-arch=('i686' 'x86_64')
-url="https://github.com/pforemski/dingo";
-license=('GPL3')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pforemski/dingo/archive/$pkgver.tar.gz";
-dingo.service)
-sha512sums=('24748a726aea598f6f8785bfe0bc349608e7106860fa73f4e3da12936035c249e8bdfee0e2d162d876beecf60b5cdfbce6cd0f09b040ce7b1db2d901bc0fd350'
-
'90bfe184b3407d32d58f69e1ee33d8b42492fc0791614fcbe06f7345052bebbc97fca897b30c9617d1e95874fc4a528d47978d25059331b720187515d50b5e07')
-
-prepare() {
-  mkdir .gopath
-  export GOPATH="$srcdir/.gopath"
-
-  go get github.com/miekg/dns github.com/patrickmn/go-cache 
golang.org/x/net/http2
-}
-
-build() {
-  cd dingo-$pkgver
-  go build -o dingo # -gccgoflags "$CFLAGS $LDFLAGS"
-}
-
-package() {
-  cd dingo-$pkgver
-  install -Dm755 dingo "$pkgdir"/usr/bin/dingo
-  install -Dm644 ../dingo.service 
"$pkgdir"/usr/lib/systemd/system/dingo.service
-}

Copied: dingo/repos/community-x86_64/PKGBUILD (from rev 309048, 
dingo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 14:46:57 UTC (rev 309049)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=dingo
+pkgver=0.13
+pkgrel=4
+pkgdesc="A DNS client in Go that supports Google DNS over HTTPS"
+arch=('x86_64')
+url="https://github.com/pforemski/dingo";
+license=('GPL3')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pforemski/dingo/archive/$pkgver.tar.gz";
+dingo.service)
+sha512sums=('24748a726aea598f6f8785bfe0bc349608e7106860fa73f4e3da12936035c249e8bdfee0e2d162d876beecf60b5cdfbce6cd0f09b040ce7b1db2d901bc0fd350'
+
'82180643e2083963eb935b9a5a7ba0bec5dd711fd8e95ac62e46bccc094c5195b519baea07e3434b0ad34d6513959b0bc4058e11a7d8640d700b78d217292f0f')
+
+prepare() {
+  mkdir .gopath
+  export GOPATH="$srcdir/.gopath"
+
+  go get github.com/miekg/dns github.com/patrickmn/go-cache 
golang.org/x/net/http2
+}
+
+build() {
+  cd dingo-$pkgver
+  go build -o dingo # -gccgoflags "$CFLAGS $LDFLAGS"
+}
+
+package() {
+  cd dingo-$pkgver
+  install -Dm755 dingo "$pkgdir"/usr/bin/dingo
+  install -Dm644 ../dingo.service 
"$pkgdir"/usr/lib/systemd/system/dingo.service
+}

Deleted: dingo.service
===
--- dingo.service   2018-03-18 14:45:49 UTC (rev 309048)
+++ dingo.service   2018-03-18 14:46:57 UTC (rev 309049)
@@ -1,11 +0,0 @@
-[Unit]
-Description=Dingo Secure DNS resolver
-Wants=network.target
-
-[Service]
-Type=simple
-User=nobody
-ExecStart=/usr/bin/dingo
-
-[Install]
-WantedBy=multi-user.target

Copied: dingo/repos/community-x86_64/dingo.service (from rev 309048, 
dingo/trunk/dingo.service)
===
--- dingo.service   (rev 0)
+++ dingo.service   2018-03-18 14:46:57 UTC (rev 309049)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Dingo Secure DNS resolver
+Wants=network.target
+
+[Service]
+Type=simple
+User=nobody
+ExecStart=/usr/bin/dingo -gdns:auto
+
+[Install]
+WantedBy=multi-user.target


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

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 15:40:32
  Author: anthraxx
Revision: 309051

archrelease: copy trunk to community-x86_64

Added:
  metasploit/repos/community-x86_64/PKGBUILD
(from rev 309050, metasploit/trunk/PKGBUILD)
  metasploit/repos/community-x86_64/metasploit-dont-restrict-aggregator.patch
(from rev 309050, 
metasploit/trunk/metasploit-dont-restrict-aggregator.patch)
Deleted:
  metasploit/repos/community-x86_64/PKGBUILD
  metasploit/repos/community-x86_64/metasploit-dont-restrict-aggregator.patch

---+
 PKGBUILD  |  128 ++--
 metasploit-dont-restrict-aggregator.patch |  112 
 2 files changed, 120 insertions(+), 120 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 15:40:24 UTC (rev 309050)
+++ PKGBUILD2018-03-18 15:40:32 UTC (rev 309051)
@@ -1,64 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sabart Otto - Seberm 
-# Contributor: Tobias Veit - nIcE 
-
-pkgname=metasploit
-pkgver=4.16.44
-pkgrel=1
-pkgdesc='Advanced open-source platform for developing, testing, and using 
exploit code'
-url='https://www.metasploit.com/'
-arch=('x86_64')
-license=('BSD')
-depends=('ruby' 'libpcap' 'postgresql-libs' 'ruby-bundler' 'sqlite' 'libxslt' 
'git')
-optdepends=('ruby-pg: database support')
-options=('!strip' '!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/rapid7/metasploit-framework/archive/${pkgver}.tar.gz
-metasploit-dont-restrict-aggregator.patch)
-sha256sums=('4ed7f4c84ac0f5ebaedd2ca3731269d515beb001065155812ccee0998014636a'
-'28008fbc74852a0e939bde209a0faa715eae08a56b2e10c53e1535d50a727609')
-sha512sums=('7fc4571d08d931688502a690cdd2167f3ee1a88c4a253f243c412068ff179884f1fcd9557dc61c501898b3e3fb4f1ca3eecaa7ba2b1bb39d36ff74af95c16782'
-
'fcc1d1f8f2f5f337de25d674571403d62c24501f91c04914e8a9d0960fe7f248f66b44ad83f014d8e30a5b394882bd35588f226b53cec607ddd122f133eaa361')
-
-prepare() {
-  cd ${pkgname}-framework-${pkgver}
-  bundle config build.nokogiri --use-system-libraries
-  sed 's|git ls-files|find -type f|' -i metasploit-framework.gemspec
-  patch -Rp1 < "${srcdir}/metasploit-dont-restrict-aggregator.patch"
-  sed "s|'grpc', '1.8.3'|'grpc', '1.10.0'|g" -i Gemfile
-  sed -r 's|(grpc \(.*)1.8.3\)|\11.10.0)|g' -i Gemfile.lock
-}
-
-build() {
-  cd ${pkgname}-framework-${pkgver}
-  bundle install -j"$(nproc)" --no-cache --deployment
-  find vendor/bundle/ruby -exec chmod o+r '{}' \;
-}
-
-package() {
-  cd ${pkgname}-framework-${pkgver}
-
-  install -d "${pkgdir}/opt/${pkgname}" "${pkgdir}/usr/bin"
-  cp -r . "${pkgdir}/opt/${pkgname}"
-
-  for f in "${pkgdir}"/opt/${pkgname}/msf*; do
-local _msffile="${pkgdir}/usr/bin/`basename "${f}"`"
-echo -e "#!/bin/sh\nBUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec 
ruby /opt/${pkgname}/`basename "${f}"` \"\$@\"" > "${_msffile}"
-chmod 755 "${_msffile}"
-  done
-
-  (cd "${pkgdir}/opt/${pkgname}"
-for f in tools/*/*.rb; do
-  install -Dm 755 "${f}" ".${f}"
-  echo -e "#!/bin/sh\nBUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec 
ruby /opt/${pkgname}/."${f}" \"\$@\"" > "${f}"
-  chmod 755 "${f}"
-done
-  )
-
-  install -Dm 644 external/zsh/_* -t "${pkgdir}/usr/share/zsh/site-functions"
-  install -Dm 644 LICENSE COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -d "${pkgdir}/usr/share/doc"
-  mv "${pkgdir}/opt/${pkgname}/documentation" 
"${pkgdir}/usr/share/doc/${pkgname}"
-  rm "${pkgdir}/usr/bin/msfupdate"
-}
-
-# vim: ts=2 sw=2 et:

Copied: metasploit/repos/community-x86_64/PKGBUILD (from rev 309050, 
metasploit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 15:40:32 UTC (rev 309051)
@@ -0,0 +1,64 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sabart Otto - Seberm 
+# Contributor: Tobias Veit - nIcE 
+
+pkgname=metasploit
+pkgver=4.16.45
+pkgrel=1
+pkgdesc='Advanced open-source platform for developing, testing, and using 
exploit code'
+url='https://www.metasploit.com/'
+arch=('x86_64')
+license=('BSD')
+depends=('ruby' 'libpcap' 'postgresql-libs' 'ruby-bundler' 'sqlite' 'libxslt' 
'git')
+optdepends=('ruby-pg: database support')
+options=('!strip' '!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/rapid7/metasploit-framework/archive/${pkgver}.tar.gz
+metasploit-dont-restrict-aggregator.patch)
+sha256sums=('16c9d2ff56e716847187fe3b1437b5a1a5a7e45530101b179199a815b6911796'
+'28008fbc74852a0e939bde209a0faa715eae08a56b2e10c53e1535d50a727609')
+sha512sums=('89c51d40484a42bea023f7289e1793def04b5184fa75ead25968bb4725a87398620f64d437e11d8f8a160b7c5e3649ca79a6743eb54e0416ffdf3a39f81b55ea'
+
'fcc1d1f8f2f5f337de25d674571403d62c24501f91c04914e8a9d0960fe7f248f66b44ad83f014d8e30a5b394882bd35588f226

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

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 15:40:24
  Author: anthraxx
Revision: 309050

upgpkg: metasploit 4.16.45-1

Modified:
  metasploit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 14:46:57 UTC (rev 309049)
+++ PKGBUILD2018-03-18 15:40:24 UTC (rev 309050)
@@ -3,7 +3,7 @@
 # Contributor: Tobias Veit - nIcE 
 
 pkgname=metasploit
-pkgver=4.16.44
+pkgver=4.16.45
 pkgrel=1
 pkgdesc='Advanced open-source platform for developing, testing, and using 
exploit code'
 url='https://www.metasploit.com/'
@@ -14,9 +14,9 @@
 options=('!strip' '!emptydirs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/rapid7/metasploit-framework/archive/${pkgver}.tar.gz
 metasploit-dont-restrict-aggregator.patch)
-sha256sums=('4ed7f4c84ac0f5ebaedd2ca3731269d515beb001065155812ccee0998014636a'
+sha256sums=('16c9d2ff56e716847187fe3b1437b5a1a5a7e45530101b179199a815b6911796'
 '28008fbc74852a0e939bde209a0faa715eae08a56b2e10c53e1535d50a727609')
-sha512sums=('7fc4571d08d931688502a690cdd2167f3ee1a88c4a253f243c412068ff179884f1fcd9557dc61c501898b3e3fb4f1ca3eecaa7ba2b1bb39d36ff74af95c16782'
+sha512sums=('89c51d40484a42bea023f7289e1793def04b5184fa75ead25968bb4725a87398620f64d437e11d8f8a160b7c5e3649ca79a6743eb54e0416ffdf3a39f81b55ea'
 
'fcc1d1f8f2f5f337de25d674571403d62c24501f91c04914e8a9d0960fe7f248f66b44ad83f014d8e30a5b394882bd35588f226b53cec607ddd122f133eaa361')
 
 prepare() {


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

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 15:44:48
  Author: anthraxx
Revision: 309052

upgpkg: ruby-nio4r 2.3.0-1

Modified:
  ruby-nio4r/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 15:40:32 UTC (rev 309051)
+++ PKGBUILD2018-03-18 15:44:48 UTC (rev 309052)
@@ -2,7 +2,7 @@
 
 _gemname=nio4r
 pkgname=ruby-${_gemname}
-pkgver=2.2.0
+pkgver=2.3.0
 pkgrel=1
 pkgdesc='Abstract, cross-platform stateful I/O selector API for Ruby'
 url='https://github.com/celluloid/nio4r'
@@ -9,10 +9,11 @@
 arch=('x86_64')
 license=('MIT')
 depends=('ruby')
+makedepends=('ruby-rdoc')
 options=('!emptydirs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/celluloid/nio4r/archive/v${pkgver}.tar.gz)
-sha256sums=('fc6ed694a571f7cc3406581660beedfbf195eec82d01697ca202a43487bb1a46')
-sha512sums=('dd884d7fa2544638c3b81903c7ce92358af4ff4c0a3b6798162d272db93dbd179509fa822e7d05cc87d16e0482763256adc3d3b923524b89bd70fe12b8060076')
+sha256sums=('fbf59977bf84978baa05b6b7b1ed5e8256f8d6cb1a4cd09d831577cf3a48cb35')
+sha512sums=('d29ad8f3b6248468b60cb59c36b97940e9f3633523715adb9b9813d8be138f1b8a3e58688073d532525ef69f46f788eb9a915599031f938d2fb14f1b7d09800d')
 
 prepare() {
   cd ${_gemname}-${pkgver}


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

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 15:44:56
  Author: anthraxx
Revision: 309053

archrelease: copy trunk to community-x86_64

Added:
  ruby-nio4r/repos/community-x86_64/PKGBUILD
(from rev 309052, ruby-nio4r/trunk/PKGBUILD)
Deleted:
  ruby-nio4r/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 15:44:48 UTC (rev 309052)
+++ PKGBUILD2018-03-18 15:44:56 UTC (rev 309053)
@@ -1,38 +0,0 @@
-# Maintainer: Levente Polyak 
-
-_gemname=nio4r
-pkgname=ruby-${_gemname}
-pkgver=2.2.0
-pkgrel=1
-pkgdesc='Abstract, cross-platform stateful I/O selector API for Ruby'
-url='https://github.com/celluloid/nio4r'
-arch=('x86_64')
-license=('MIT')
-depends=('ruby')
-options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/celluloid/nio4r/archive/v${pkgver}.tar.gz)
-sha256sums=('fc6ed694a571f7cc3406581660beedfbf195eec82d01697ca202a43487bb1a46')
-sha512sums=('dd884d7fa2544638c3b81903c7ce92358af4ff4c0a3b6798162d272db93dbd179509fa822e7d05cc87d16e0482763256adc3d3b923524b89bd70fe12b8060076')
-
-prepare() {
-  cd ${_gemname}-${pkgver}
-  sed 's|git ls-files|find|' -i ${_gemname}.gemspec
-}
-
-build() {
-  cd ${_gemname}-${pkgver}
-  gem build ${_gemname}.gemspec
-}
-
-package() {
-  cd ${_gemname}-${pkgver}
-  local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies --no-user-install -i 
"${pkgdir}/${_gemdir}" -n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  install -Dm 644 README.md CHANGES.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  cp -r examples "${pkgdir}/usr/share/doc/${pkgname}"
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-  find "${pkgdir}/${_gemdir}" \( -name 'mkmf.log' -or -name 'gem_make.out' \) 
-delete
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-nio4r/repos/community-x86_64/PKGBUILD (from rev 309052, 
ruby-nio4r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 15:44:56 UTC (rev 309053)
@@ -0,0 +1,39 @@
+# Maintainer: Levente Polyak 
+
+_gemname=nio4r
+pkgname=ruby-${_gemname}
+pkgver=2.3.0
+pkgrel=1
+pkgdesc='Abstract, cross-platform stateful I/O selector API for Ruby'
+url='https://github.com/celluloid/nio4r'
+arch=('x86_64')
+license=('MIT')
+depends=('ruby')
+makedepends=('ruby-rdoc')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/celluloid/nio4r/archive/v${pkgver}.tar.gz)
+sha256sums=('fbf59977bf84978baa05b6b7b1ed5e8256f8d6cb1a4cd09d831577cf3a48cb35')
+sha512sums=('d29ad8f3b6248468b60cb59c36b97940e9f3633523715adb9b9813d8be138f1b8a3e58688073d532525ef69f46f788eb9a915599031f938d2fb14f1b7d09800d')
+
+prepare() {
+  cd ${_gemname}-${pkgver}
+  sed 's|git ls-files|find|' -i ${_gemname}.gemspec
+}
+
+build() {
+  cd ${_gemname}-${pkgver}
+  gem build ${_gemname}.gemspec
+}
+
+package() {
+  cd ${_gemname}-${pkgver}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i 
"${pkgdir}/${_gemdir}" -n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 README.md CHANGES.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  cp -r examples "${pkgdir}/usr/share/doc/${pkgname}"
+  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
+  find "${pkgdir}/${_gemdir}" \( -name 'mkmf.log' -or -name 'gem_make.out' \) 
-delete
+}
+
+# vim: ts=2 sw=2 et:


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

2018-03-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, March 18, 2018 @ 15:55:15
  Author: jelle
Revision: 309054

Fix FS#57877 only ship Python-zeroconf

python2 support is dead \o/

Modified:
  python-zeroconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 15:44:56 UTC (rev 309053)
+++ PKGBUILD2018-03-18 15:55:15 UTC (rev 309054)
@@ -1,30 +1,27 @@
 # Maintainer: Jelle van der Waa 
 # Contributor: Maxim Andersson 
 
-pkgbase=python-zeroconf
-pkgname=('python-zeroconf' 'python2-zeroconf')
+pkgname=python-zeroconf
 pkgver=0.20.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A pure python implementation of multicast DNS service discovery"
 arch=('any')
 url="https://github.com/jstasiak/python-zeroconf";
 license=('LGPL')
-makedepends=('python-setuptools' 'python2-setuptools')
+depends=('python' 'python-netifaces' 'python-six')
+makedepends=('python-setuptools')
 source=("https://github.com/jstasiak/${pkgname}/archive/${pkgver}.tar.gz";)
 sha256sums=('5829f2e68ca6ab06d25e661a7640cf1d215bf4167d952f81086f1fbfb4ef9dbb')
 
-package_python-zeroconf() {
-  depends=('python' 'python-netifaces' 'python-six')
+build() {
   cd "${pkgbase}-${pkgver}"
-
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+  python3 setup.py build
 }
 
-package_python2-zeroconf() {
-  depends=('python2' 'python2-netifaces' 'python2-six')
+package() {
   cd "${pkgbase}-${pkgver}"
 
-  python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
 }
 
 # vim:set ts=2 sw=2 et:


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

2018-03-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, March 18, 2018 @ 15:55:46
  Author: jelle
Revision: 309055

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 15:55:15 UTC (rev 309054)
+++ PKGBUILD2018-03-18 15:55:46 UTC (rev 309055)
@@ -1,30 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Maxim Andersson 
-
-pkgbase=python-zeroconf
-pkgname=('python-zeroconf' 'python2-zeroconf')
-pkgver=0.20.0
-pkgrel=1
-pkgdesc="A pure python implementation of multicast DNS service discovery"
-arch=('any')
-url="https://github.com/jstasiak/python-zeroconf";
-license=('LGPL')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://github.com/jstasiak/${pkgname}/archive/${pkgver}.tar.gz";)
-sha256sums=('5829f2e68ca6ab06d25e661a7640cf1d215bf4167d952f81086f1fbfb4ef9dbb')
-
-package_python-zeroconf() {
-  depends=('python' 'python-netifaces' 'python-six')
-  cd "${pkgbase}-${pkgver}"
-
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-}
-
-package_python2-zeroconf() {
-  depends=('python2' 'python2-netifaces' 'python2-six')
-  cd "${pkgbase}-${pkgver}"
-
-  python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-zeroconf/repos/community-any/PKGBUILD (from rev 309054, 
python-zeroconf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 15:55:46 UTC (rev 309055)
@@ -0,0 +1,27 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Maxim Andersson 
+
+pkgname=python-zeroconf
+pkgver=0.20.0
+pkgrel=2
+pkgdesc="A pure python implementation of multicast DNS service discovery"
+arch=('any')
+url="https://github.com/jstasiak/python-zeroconf";
+license=('LGPL')
+depends=('python' 'python-netifaces' 'python-six')
+makedepends=('python-setuptools')
+source=("https://github.com/jstasiak/${pkgname}/archive/${pkgver}.tar.gz";)
+sha256sums=('5829f2e68ca6ab06d25e661a7640cf1d215bf4167d952f81086f1fbfb4ef9dbb')
+
+build() {
+  cd "${pkgbase}-${pkgver}"
+  python3 setup.py build
+}
+
+package() {
+  cd "${pkgbase}-${pkgver}"
+
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 15:57:21
  Author: anthraxx
Revision: 309056

upgpkg: ruby-async 1.3.0-1

Modified:
  ruby-async/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 15:55:46 UTC (rev 309055)
+++ PKGBUILD2018-03-18 15:57:21 UTC (rev 309056)
@@ -2,7 +2,7 @@
 
 _gemname=async
 pkgname=ruby-${_gemname}
-pkgver=1.2.2
+pkgver=1.3.0
 pkgrel=1
 pkgdesc='Composable asynchronous I/O'
 url='https://github.com/socketry/async'
@@ -11,8 +11,8 @@
 depends=('ruby' 'ruby-nio4r' 'ruby-timers' 'ruby-rdoc')
 options=('!emptydirs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/socketry/async/archive/v${pkgver}.tar.gz)
-sha256sums=('2d09019a833dff44fb506a5561bb7484efec72384c9b01dc5dbb0dd5319ca7c5')
-sha512sums=('f8a0e0e3fbd42c6ccfb210e625f6ec38d8127cadec3df26ad621b69350e0b6aad248ab3475f965d15eb6037a304e9a352d66563c53a228779c0357a2602605cd')
+sha256sums=('d3553fb30b341268ff2f3abbd84e75c4df7845e1d1b5da189ac43ce37786d4f0')
+sha512sums=('392f1651c2e38e4cc4c5cd8b7378ccec1567332396ac4dc1f26ca512abda5dd52c631804925564ad625f95d57d03a5ffa6211ab48b0d1eb8aafb3760fe423165')
 
 prepare() {
   cd ${_gemname}-${pkgver}


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

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 15:57:37
  Author: anthraxx
Revision: 309057

archrelease: copy trunk to community-any

Added:
  ruby-async/repos/community-any/PKGBUILD
(from rev 309056, ruby-async/trunk/PKGBUILD)
Deleted:
  ruby-async/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 15:57:21 UTC (rev 309056)
+++ PKGBUILD2018-03-18 15:57:37 UTC (rev 309057)
@@ -1,36 +0,0 @@
-# Maintainer: Levente Polyak 
-
-_gemname=async
-pkgname=ruby-${_gemname}
-pkgver=1.2.2
-pkgrel=1
-pkgdesc='Composable asynchronous I/O'
-url='https://github.com/socketry/async'
-arch=('any')
-license=('MIT')
-depends=('ruby' 'ruby-nio4r' 'ruby-timers' 'ruby-rdoc')
-options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/socketry/async/archive/v${pkgver}.tar.gz)
-sha256sums=('2d09019a833dff44fb506a5561bb7484efec72384c9b01dc5dbb0dd5319ca7c5')
-sha512sums=('f8a0e0e3fbd42c6ccfb210e625f6ec38d8127cadec3df26ad621b69350e0b6aad248ab3475f965d15eb6037a304e9a352d66563c53a228779c0357a2602605cd')
-
-prepare() {
-  cd ${_gemname}-${pkgver}
-  sed 's|git ls-files|find|' -i ${_gemname}.gemspec
-  sed 's|~>|>=|g' -i ${_gemname}.gemspec # don't give a fuck about rubys bla 
bla
-}
-
-build() {
-  cd ${_gemname}-${pkgver}
-  gem build ${_gemname}.gemspec
-}
-
-package() {
-  cd ${_gemname}-${pkgver}
-  local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies --no-user-install -i 
"${pkgdir}/${_gemdir}" -n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  rm "${pkgdir}"/${_gemdir}/cache/${_gemname}-${pkgver}.gem
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-async/repos/community-any/PKGBUILD (from rev 309056, 
ruby-async/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 15:57:37 UTC (rev 309057)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+
+_gemname=async
+pkgname=ruby-${_gemname}
+pkgver=1.3.0
+pkgrel=1
+pkgdesc='Composable asynchronous I/O'
+url='https://github.com/socketry/async'
+arch=('any')
+license=('MIT')
+depends=('ruby' 'ruby-nio4r' 'ruby-timers' 'ruby-rdoc')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/socketry/async/archive/v${pkgver}.tar.gz)
+sha256sums=('d3553fb30b341268ff2f3abbd84e75c4df7845e1d1b5da189ac43ce37786d4f0')
+sha512sums=('392f1651c2e38e4cc4c5cd8b7378ccec1567332396ac4dc1f26ca512abda5dd52c631804925564ad625f95d57d03a5ffa6211ab48b0d1eb8aafb3760fe423165')
+
+prepare() {
+  cd ${_gemname}-${pkgver}
+  sed 's|git ls-files|find|' -i ${_gemname}.gemspec
+  sed 's|~>|>=|g' -i ${_gemname}.gemspec # don't give a fuck about rubys bla 
bla
+}
+
+build() {
+  cd ${_gemname}-${pkgver}
+  gem build ${_gemname}.gemspec
+}
+
+package() {
+  cd ${_gemname}-${pkgver}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i 
"${pkgdir}/${_gemdir}" -n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  rm "${pkgdir}"/${_gemdir}/cache/${_gemname}-${pkgver}.gem
+}
+
+# vim: ts=2 sw=2 et:


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

2018-03-18 Thread Eli Schwartz via arch-commits
Date: Sunday, March 18, 2018 @ 15:58:38
  Author: eschwartz
Revision: 309058

upgpkg: firefox-extension-https-everywhere 2018.3.13-1

upstream release

Modified:
  firefox-extension-https-everywhere/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 15:57:37 UTC (rev 309057)
+++ PKGBUILD2018-03-18 15:58:38 UTC (rev 309058)
@@ -4,7 +4,7 @@
 
 _pkgname=https-everywhere
 pkgname=firefox-extension-${_pkgname}
-pkgver=2018.2.26
+pkgver=2018.3.13
 pkgrel=1
 pkgdesc="Plugin for firefox which ensures you are using https whenever it's 
possible."
 arch=('any')
@@ -16,7 +16,7 @@
 
source=("${_pkgname}-${pkgver}.xpi::https://www.eff.org/files/https-everywhere-${pkgver}-eff.xpi";
 
"${_pkgname}-${pkgver}.xpi.sig::https://www.eff.org/files/https-everywhere-${pkgver}-eff.xpi.sig";)
 noextract=("${_pkgname}-${pkgver}.xpi")
-sha256sums=('28894b8ba8bbc5162d55203c62a67d9c66fb21b895447f569f8ba91bd7f59550'
+sha256sums=('83ea9c3aa1c155a11fbbe16277f0dfc061dd76313795126405aa6d6da24a1c67'
 'SKIP')
 validpgpkeys=('1073E74EB38BD6D19476CBF8EA9DBF9FB761A677') # William Budington 

 


[arch-commits] Commit in firefox-extension-https-everywhere/repos/community-any (2 files)

2018-03-18 Thread Eli Schwartz via arch-commits
Date: Sunday, March 18, 2018 @ 15:59:04
  Author: eschwartz
Revision: 309059

archrelease: copy trunk to community-any

Added:
  firefox-extension-https-everywhere/repos/community-any/PKGBUILD
(from rev 309058, firefox-extension-https-everywhere/trunk/PKGBUILD)
Deleted:
  firefox-extension-https-everywhere/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 15:58:38 UTC (rev 309058)
+++ PKGBUILD2018-03-18 15:59:04 UTC (rev 309059)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Eli Schwartz 
-# Contributor: Hyacinthe Cartiaux 
-
-_pkgname=https-everywhere
-pkgname=firefox-extension-${_pkgname}
-pkgver=2018.2.26
-pkgrel=1
-pkgdesc="Plugin for firefox which ensures you are using https whenever it's 
possible."
-arch=('any')
-url="https://www.eff.org/https-everywhere";
-license=('GPL2')
-groups=('firefox-addons')
-depends=("firefox")
-makedepends=("unzip")
-source=("${_pkgname}-${pkgver}.xpi::https://www.eff.org/files/https-everywhere-${pkgver}-eff.xpi";
-
"${_pkgname}-${pkgver}.xpi.sig::https://www.eff.org/files/https-everywhere-${pkgver}-eff.xpi.sig";)
-noextract=("${_pkgname}-${pkgver}.xpi")
-sha256sums=('28894b8ba8bbc5162d55203c62a67d9c66fb21b895447f569f8ba91bd7f59550'
-'SKIP')
-validpgpkeys=('1073E74EB38BD6D19476CBF8EA9DBF9FB761A677') # William Budington 

-
-prepare() {
-  cd "$srcdir"
-
-  unzip -qqo "${_pkgname}-${pkgver}.xpi" -d "${_pkgname}-${pkgver}"
-}
-
-package() {
-  cd "${srcdir}"
-
-  if [[ -f ${_pkgname}-${pkgver}/install.rdf ]]; then
-_extension_id="$(sed -n '/.*\(.*\)<\/em:id>.*/{s//\1/p;q}' 
${_pkgname}-${pkgver}/install.rdf)"
-  else
-_extension_id="$(sed -n 's/.*"id": "\(.*\)".*/\1/p' 
${_pkgname}-${pkgver}/manifest.json)"
-  fi
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  # Should this extension be unpacked or not?
-  if grep -q 'true' ${_pkgname}-${pkgver}/install.rdf 
2>/dev/null; then
-install -dm755 "${_extension_dest}"
-cp -R ${_pkgname}-${pkgver}/* "${_extension_dest}"
-chmod -R ugo+rX "${_extension_dest}"
-  else
-install -Dm644 ${_pkgname}-${pkgver}.xpi "${_extension_dest}.xpi"
-  fi
-}

Copied: firefox-extension-https-everywhere/repos/community-any/PKGBUILD (from 
rev 309058, firefox-extension-https-everywhere/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 15:59:04 UTC (rev 309059)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Eli Schwartz 
+# Contributor: Hyacinthe Cartiaux 
+
+_pkgname=https-everywhere
+pkgname=firefox-extension-${_pkgname}
+pkgver=2018.3.13
+pkgrel=1
+pkgdesc="Plugin for firefox which ensures you are using https whenever it's 
possible."
+arch=('any')
+url="https://www.eff.org/https-everywhere";
+license=('GPL2')
+groups=('firefox-addons')
+depends=("firefox")
+makedepends=("unzip")
+source=("${_pkgname}-${pkgver}.xpi::https://www.eff.org/files/https-everywhere-${pkgver}-eff.xpi";
+
"${_pkgname}-${pkgver}.xpi.sig::https://www.eff.org/files/https-everywhere-${pkgver}-eff.xpi.sig";)
+noextract=("${_pkgname}-${pkgver}.xpi")
+sha256sums=('83ea9c3aa1c155a11fbbe16277f0dfc061dd76313795126405aa6d6da24a1c67'
+'SKIP')
+validpgpkeys=('1073E74EB38BD6D19476CBF8EA9DBF9FB761A677') # William Budington 

+
+prepare() {
+  cd "$srcdir"
+
+  unzip -qqo "${_pkgname}-${pkgver}.xpi" -d "${_pkgname}-${pkgver}"
+}
+
+package() {
+  cd "${srcdir}"
+
+  if [[ -f ${_pkgname}-${pkgver}/install.rdf ]]; then
+_extension_id="$(sed -n '/.*\(.*\)<\/em:id>.*/{s//\1/p;q}' 
${_pkgname}-${pkgver}/install.rdf)"
+  else
+_extension_id="$(sed -n 's/.*"id": "\(.*\)".*/\1/p' 
${_pkgname}-${pkgver}/manifest.json)"
+  fi
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  # Should this extension be unpacked or not?
+  if grep -q 'true' ${_pkgname}-${pkgver}/install.rdf 
2>/dev/null; then
+install -dm755 "${_extension_dest}"
+cp -R ${_pkgname}-${pkgver}/* "${_extension_dest}"
+chmod -R ugo+rX "${_extension_dest}"
+  else
+install -Dm644 ${_pkgname}-${pkgver}.xpi "${_extension_dest}.xpi"
+  fi
+}


[arch-commits] Commit in ruby-async-io/repos/community-any (PKGBUILD PKGBUILD)

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 15:59:47
  Author: anthraxx
Revision: 309061

archrelease: copy trunk to community-any

Added:
  ruby-async-io/repos/community-any/PKGBUILD
(from rev 309060, ruby-async-io/trunk/PKGBUILD)
Deleted:
  ruby-async-io/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 15:59:35 UTC (rev 309060)
+++ PKGBUILD2018-03-18 15:59:47 UTC (rev 309061)
@@ -1,36 +0,0 @@
-# Maintainer: Levente Polyak 
-
-_gemname=async-io
-pkgname=ruby-${_gemname}
-pkgver=1.3.0
-pkgrel=1
-pkgdesc='Provides support for asynchonous TCP, UDP, UNIX and SSL sockets'
-url='https://github.com/socketry/async-io'
-arch=('any')
-license=('MIT')
-depends=('ruby' 'ruby-async' 'ruby-rdoc')
-options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/socketry/async-io/archive/v${pkgver}.tar.gz)
-sha256sums=('7264798ecbb5cc014e3ab4baff5d54881e00ec3aaaf6820648ba7836bf1ae5a7')
-sha512sums=('52d3980af528db2ce2204d9e8ea11ed1a27702f956f848d1e6156b816689fe4a6086d5490bbfe50e3a057daf19309e04509a7d53f9a50361064402bb451e2b8b')
-
-prepare() {
-  cd ${_gemname}-${pkgver}
-  sed 's|git ls-files|find|' -i ${_gemname}.gemspec
-  sed 's|~>|>=|g' -i ${_gemname}.gemspec # don't give a fuck about rubys bla 
bla
-}
-
-build() {
-  cd ${_gemname}-${pkgver}
-  gem build ${_gemname}.gemspec
-}
-
-package() {
-  cd ${_gemname}-${pkgver}
-  local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies --no-user-install -i 
"${pkgdir}/${_gemdir}" -n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  rm "${pkgdir}"/${_gemdir}/cache/${_gemname}-${pkgver}.gem
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-async-io/repos/community-any/PKGBUILD (from rev 309060, 
ruby-async-io/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 15:59:47 UTC (rev 309061)
@@ -0,0 +1,37 @@
+# Maintainer: Levente Polyak 
+
+_gemname=async-io
+pkgname=ruby-${_gemname}
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='Provides support for asynchonous TCP, UDP, UNIX and SSL sockets'
+url='https://github.com/socketry/async-io'
+arch=('any')
+license=('MIT')
+depends=('ruby' 'ruby-async')
+makedepends=('ruby-rdoc')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/socketry/async-io/archive/v${pkgver}.tar.gz)
+sha256sums=('cc47b33b8f7e076b319376ecff0cf7b14a35350fb74b184a3e0d2998e6a5a765')
+sha512sums=('723e7e27c0ee42025fb5e0beff1f4689d4410653553632a5f5a57f1f5c160e8dc083c06e200dc887078b8ff7d2c84d3b5a80c9d3993616f39222da9214d7401d')
+
+prepare() {
+  cd ${_gemname}-${pkgver}
+  sed 's|git ls-files|find|' -i ${_gemname}.gemspec
+  sed 's|~>|>=|g' -i ${_gemname}.gemspec # don't give a fuck about rubys bla 
bla
+}
+
+build() {
+  cd ${_gemname}-${pkgver}
+  gem build ${_gemname}.gemspec
+}
+
+package() {
+  cd ${_gemname}-${pkgver}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i 
"${pkgdir}/${_gemdir}" -n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  rm "${pkgdir}"/${_gemdir}/cache/${_gemname}-${pkgver}.gem
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in ruby-async-io/trunk (PKGBUILD)

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 15:59:35
  Author: anthraxx
Revision: 309060

upgpkg: ruby-async-io 1.4.0-1

Modified:
  ruby-async-io/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 15:59:04 UTC (rev 309059)
+++ PKGBUILD2018-03-18 15:59:35 UTC (rev 309060)
@@ -2,17 +2,18 @@
 
 _gemname=async-io
 pkgname=ruby-${_gemname}
-pkgver=1.3.0
+pkgver=1.4.0
 pkgrel=1
 pkgdesc='Provides support for asynchonous TCP, UDP, UNIX and SSL sockets'
 url='https://github.com/socketry/async-io'
 arch=('any')
 license=('MIT')
-depends=('ruby' 'ruby-async' 'ruby-rdoc')
+depends=('ruby' 'ruby-async')
+makedepends=('ruby-rdoc')
 options=('!emptydirs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/socketry/async-io/archive/v${pkgver}.tar.gz)
-sha256sums=('7264798ecbb5cc014e3ab4baff5d54881e00ec3aaaf6820648ba7836bf1ae5a7')
-sha512sums=('52d3980af528db2ce2204d9e8ea11ed1a27702f956f848d1e6156b816689fe4a6086d5490bbfe50e3a057daf19309e04509a7d53f9a50361064402bb451e2b8b')
+sha256sums=('cc47b33b8f7e076b319376ecff0cf7b14a35350fb74b184a3e0d2998e6a5a765')
+sha512sums=('723e7e27c0ee42025fb5e0beff1f4689d4410653553632a5f5a57f1f5c160e8dc083c06e200dc887078b8ff7d2c84d3b5a80c9d3993616f39222da9214d7401d')
 
 prepare() {
   cd ${_gemname}-${pkgver}


[arch-commits] Commit in wireshark/repos/community-x86_64 (8 files)

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 16:11:26
  Author: anthraxx
Revision: 309063

archrelease: copy trunk to community-x86_64

Added:
  wireshark/repos/community-x86_64/PKGBUILD
(from rev 309062, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-x86_64/do_not_use_svn_version.patch
(from rev 309062, wireshark/trunk/do_not_use_svn_version.patch)
  wireshark/repos/community-x86_64/wireshark.install
(from rev 309062, wireshark/trunk/wireshark.install)
  wireshark/repos/community-x86_64/wireshark.sysusers
(from rev 309062, wireshark/trunk/wireshark.sysusers)
Deleted:
  wireshark/repos/community-x86_64/PKGBUILD
  wireshark/repos/community-x86_64/do_not_use_svn_version.patch
  wireshark/repos/community-x86_64/wireshark.install
  wireshark/repos/community-x86_64/wireshark.sysusers

--+
 PKGBUILD |  202 -
 do_not_use_svn_version.patch |   26 ++---
 wireshark.install|   16 +--
 wireshark.sysusers   |2 
 4 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 16:11:16 UTC (rev 309062)
+++ PKGBUILD2018-03-18 16:11:26 UTC (rev 309063)
@@ -1,101 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Timothy Redaelli 
-# Contributor: Guillaume ALAUX 
-# Contributor: Florian Pritz 
-
-pkgname=('wireshark-cli' 'wireshark-common' 'wireshark-gtk' 'wireshark-qt')
-pkgbase=wireshark
-pkgver=2.5.0
-pkgrel=1
-arch=('x86_64')
-license=('GPL2')
-makedepends=('c-ares' 'geoip' 'qt5-tools' 'qt5-multimedia' 'gtk3' 'krb5' 
'libpcap' 'bash' 'libssh'
- 'gnutls' 'portaudio' 'lua52' 'python' 'desktop-file-utils' 
'hicolor-icon-theme')
-options=('!emptydirs')
-url='https://www.wireshark.org/'
-source=(https://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.xz
-wireshark.sysusers
-do_not_use_svn_version.patch)
-sha256sums=('3da390e6874cb89bf885c284016fddd6db08543ef4c28747a92f95738618bc28'
-'df07748152443c7d727bd51cd57af950c345b7141986b4f0e476cd6aa3623ac4'
-'3981bb46f592e319f9c679c5e215ae0af828044a3b64d49d2cf0305ecacf4691')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  # Avoid ugly "svn rev unknown from unknown" version string
-  patch -p1 < "${srcdir}/do_not_use_svn_version.patch"
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  ./autogen.sh
-  ./configure \
-  --prefix=/usr \
-  --with-qt=5 \
-  --with-gtk=3 \
-  --with-pcap \
-  --with-zlib \
-  --with-lua \
-  --with-portaudio \
-  --with-ssl \
-  --with-krb5 \
-  --with-c-ares \
-  --with-geoip
-  make all
-}
-
-package_wireshark-cli() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
-  depends=('c-ares' 'geoip' 'krb5' 'libgcrypt' 'libcap' 'libpcap' 'gnutls' 
'glib2' 'lua52' 'libssh' 'libxml2' 'libnghttp2')
-  install=wireshark.install
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  make DESTDIR="${pkgdir}" uninstall-local
-
-  # wireshark uid group is 150
-  install -Dm644 "${srcdir}/wireshark.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/wireshark.conf"
-  chgrp 150 "${pkgdir}/usr/bin/dumpcap"
-  chmod 754 "${pkgdir}/usr/bin/dumpcap"
-  rm "${pkgdir}/usr/bin/wireshark" "${pkgdir}/usr/bin/wireshark-gtk"
-
-  # headers
-  install -Dm 644 *.h -t "${pkgdir}/usr/include/${pkgbase}"
-  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes epan/wmem 
wiretap wsutil; do
-install -Dm 644 ${d}/*.h -t "${pkgdir}/usr/include/${pkgbase}/${d}"
-  done
-}
-
-package_wireshark-common() {
-  pkgdesc='Common files used by wireshark-gtk and wireshark-qt'
-  depends=('hicolor-icon-theme' 'shared-mime-info' 'xdg-utils')
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install-data-local
-  rm "${pkgdir}"/usr/share/applications/wireshark{,-gtk}.desktop
-}
-
-package_wireshark-gtk() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
-  depends=('desktop-file-utils' 'gtk3' 'portaudio' 'wireshark-cli' 
'wireshark-common')
-  replaces=(wireshark)
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-  install -Dm 755 .libs/wireshark-gtk "${pkgdir}/usr/bin/wireshark-gtk"
-  install -Dm 644 wireshark-gtk.desktop -t "${pkgdir}/usr/share/applications"
-}
-
-package_wireshark-qt() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - Qt 
frontend'
-  depends=('desktop-file-utils' 'qt5-multimedia' 'wireshark-cli' 
'wireshark-common')
-
-  cd ${pkgbase}-${pkgver}
-  install -Dm 755 .libs/wireshark "${pkgdir}/usr/bin/wireshark"
-  install -Dm 644 wireshark.desktop -t "${pkgdir}/usr/share/applications"
-}
-
-# vim: ts=2 sw=2 et:

Copied: wireshark/repos/community-x86_64/PKGBUILD (from rev 309062, 
wireshark/trunk/PKGBUILD)
===
--- PKGBUILD  

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

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 16:11:16
  Author: anthraxx
Revision: 309062

upgpkg: wireshark 2.5.1-1

Modified:
  wireshark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 15:59:47 UTC (rev 309061)
+++ PKGBUILD2018-03-18 16:11:16 UTC (rev 309062)
@@ -5,7 +5,7 @@
 
 pkgname=('wireshark-cli' 'wireshark-common' 'wireshark-gtk' 'wireshark-qt')
 pkgbase=wireshark
-pkgver=2.5.0
+pkgver=2.5.1
 pkgrel=1
 arch=('x86_64')
 license=('GPL2')
@@ -16,7 +16,7 @@
 source=(https://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.xz
 wireshark.sysusers
 do_not_use_svn_version.patch)
-sha256sums=('3da390e6874cb89bf885c284016fddd6db08543ef4c28747a92f95738618bc28'
+sha256sums=('fe104b795d65b7658f60dd9dca52f122cc754ab2a10955332051a168261cfee3'
 'df07748152443c7d727bd51cd57af950c345b7141986b4f0e476cd6aa3623ac4'
 '3981bb46f592e319f9c679c5e215ae0af828044a3b64d49d2cf0305ecacf4691')
 


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

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 16:12:59
  Author: anthraxx
Revision: 319576

upgpkg: trayer 1.1.8-1

Modified:
  trayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 11:24:44 UTC (rev 319575)
+++ PKGBUILD2018-03-18 16:12:59 UTC (rev 319576)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=trayer
-pkgver=1.1.7
+pkgver=1.1.8
 pkgrel=1
 pkgdesc='lightweight GTK2-based systray for UNIX desktop'
 url='https://github.com/sargon/trayer-srg'
@@ -13,7 +13,7 @@
 provides=('trayer-srg')
 conflicts=('trayer-srg')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sargon/trayer-srg/archive/trayer-${pkgver}.tar.gz)
-sha512sums=('5bb049af01c3f3f62dc8a5c1932985b92c98e4e2083aebd1dc09256746e097239be54ebc739801773878882a5c8f168a4a13bdac292388f79079ad52c41b2cad')
+sha512sums=('5ae92fdcee64ad1ca59846874dcd4bd4859adeeb80a86f1ed97d62e6306f8ec62d1ee26dba251257242dc25d158a6a550e69f2fcc8739242a2311e37fe1ce310')
 
 build() {
   cd trayer-srg-${pkgname}-${pkgver}


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

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 16:13:09
  Author: anthraxx
Revision: 319577

archrelease: copy trunk to extra-x86_64

Added:
  trayer/repos/extra-x86_64/PKGBUILD
(from rev 319576, trayer/trunk/PKGBUILD)
Deleted:
  trayer/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 16:12:59 UTC (rev 319576)
+++ PKGBUILD2018-03-18 16:13:09 UTC (rev 319577)
@@ -1,31 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Eric Bélanger 
-
-pkgname=trayer
-pkgver=1.1.7
-pkgrel=1
-pkgdesc='lightweight GTK2-based systray for UNIX desktop'
-url='https://github.com/sargon/trayer-srg'
-arch=('x86_64')
-license=('MIT')
-depends=('gtk2')
-makedepends=('libxmu')
-provides=('trayer-srg')
-conflicts=('trayer-srg')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sargon/trayer-srg/archive/trayer-${pkgver}.tar.gz)
-sha512sums=('5bb049af01c3f3f62dc8a5c1932985b92c98e4e2083aebd1dc09256746e097239be54ebc739801773878882a5c8f168a4a13bdac292388f79079ad52c41b2cad')
-
-build() {
-  cd trayer-srg-${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd trayer-srg-${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 man/trayer.1 -t "${pkgdir}/usr/share/man/man1"
-  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: trayer/repos/extra-x86_64/PKGBUILD (from rev 319576, 
trayer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 16:13:09 UTC (rev 319577)
@@ -0,0 +1,31 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgname=trayer
+pkgver=1.1.8
+pkgrel=1
+pkgdesc='lightweight GTK2-based systray for UNIX desktop'
+url='https://github.com/sargon/trayer-srg'
+arch=('x86_64')
+license=('MIT')
+depends=('gtk2')
+makedepends=('libxmu')
+provides=('trayer-srg')
+conflicts=('trayer-srg')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sargon/trayer-srg/archive/trayer-${pkgver}.tar.gz)
+sha512sums=('5ae92fdcee64ad1ca59846874dcd4bd4859adeeb80a86f1ed97d62e6306f8ec62d1ee26dba251257242dc25d158a6a550e69f2fcc8739242a2311e37fe1ce310')
+
+build() {
+  cd trayer-srg-${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd trayer-srg-${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 man/trayer.1 -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 16:14:49
  Author: anthraxx
Revision: 309064

upgpkg: vim-gitgutter 490.37bdd03-1

Modified:
  vim-gitgutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 16:11:26 UTC (rev 309063)
+++ PKGBUILD2018-03-18 16:14:49 UTC (rev 309064)
@@ -1,8 +1,8 @@
 # Maintainer: Levente Polyak 
 
 pkgname=vim-gitgutter
-_gitcommit=72226496b335193d7ac7ed5b043cfd8ec95db499
-pkgver=487.7222649
+_gitcommit=37bdd03d176c5e182c7e8dbdc79c3f71d2a04898
+pkgver=490.37bdd03
 pkgrel=1
 pkgdesc='Vim plugin which shows a git diff in the gutter (sign column)'
 url='https://github.com/airblade/vim-gitgutter'


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

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 16:14:57
  Author: anthraxx
Revision: 309065

archrelease: copy trunk to community-any

Added:
  vim-gitgutter/repos/community-any/PKGBUILD
(from rev 309064, vim-gitgutter/trunk/PKGBUILD)
Deleted:
  vim-gitgutter/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 16:14:49 UTC (rev 309064)
+++ PKGBUILD2018-03-18 16:14:57 UTC (rev 309065)
@@ -1,30 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=vim-gitgutter
-_gitcommit=72226496b335193d7ac7ed5b043cfd8ec95db499
-pkgver=487.7222649
-pkgrel=1
-pkgdesc='Vim plugin which shows a git diff in the gutter (sign column)'
-url='https://github.com/airblade/vim-gitgutter'
-arch=('any')
-license=('MIT')
-depends=('vim' 'git')
-groups=('vim-plugins')
-source=(${pkgname}::"git+https://github.com/airblade/vim-gitgutter#commit=${_gitcommit}";)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd ${pkgname}
-  printf "%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
-}
-
-package() {
-  cd ${pkgname}
-  _installpath="${pkgdir}/usr/share/vim/vimfiles"
-  install -d "${_installpath}"
-  cp -r -t "${_installpath}" autoload doc plugin
-  install -Dm 644 README.mkd -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENCE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: vim-gitgutter/repos/community-any/PKGBUILD (from rev 309064, 
vim-gitgutter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 16:14:57 UTC (rev 309065)
@@ -0,0 +1,30 @@
+# Maintainer: Levente Polyak 
+
+pkgname=vim-gitgutter
+_gitcommit=37bdd03d176c5e182c7e8dbdc79c3f71d2a04898
+pkgver=490.37bdd03
+pkgrel=1
+pkgdesc='Vim plugin which shows a git diff in the gutter (sign column)'
+url='https://github.com/airblade/vim-gitgutter'
+arch=('any')
+license=('MIT')
+depends=('vim' 'git')
+groups=('vim-plugins')
+source=(${pkgname}::"git+https://github.com/airblade/vim-gitgutter#commit=${_gitcommit}";)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  printf "%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
+}
+
+package() {
+  cd ${pkgname}
+  _installpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -d "${_installpath}"
+  cp -r -t "${_installpath}" autoload doc plugin
+  install -Dm 644 README.mkd -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENCE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 16:16:46
  Author: anthraxx
Revision: 319579

archrelease: copy trunk to extra-x86_64

Added:
  libpqxx/repos/extra-x86_64/PKGBUILD
(from rev 319578, libpqxx/trunk/PKGBUILD)
Deleted:
  libpqxx/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 16:16:38 UTC (rev 319578)
+++ PKGBUILD2018-03-18 16:16:46 UTC (rev 319579)
@@ -1,35 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Giovanni Scafora 
-
-pkgname=libpqxx
-pkgver=6.1.0
-pkgrel=1
-pkgdesc='C++ client API for PostgreSQL'
-url='http://pqxx.org/development/libpqxx/'
-arch=('x86_64')
-license=('custom')
-depends=('postgresql-libs>=9.1')
-makedepends=('python2' 'xmlto' 'doxygen')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jtv/libpqxx/archive/${pkgver}.tar.gz)
-sha256sums=('a36899821e4bc354f424c041d43a7f5c0def24d2b7bb3f486d0e6b131520603f')
-sha512sums=('5b44e043bb73ad5c461782e55c0c18e391cf0db4526b4edcb607c6eb9617fc1197c541ebf845ddfd7e6b9136f1fd7530f1b2d9a9098efe85a5398567342277f3')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed 's|python|python2|' -i tools/splitconfig
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --enable-shared
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make prefix="${pkgdir}/usr" install
-  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: libpqxx/repos/extra-x86_64/PKGBUILD (from rev 319578, 
libpqxx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 16:16:46 UTC (rev 319579)
@@ -0,0 +1,35 @@
+# Maintainer: Levente Polyak 
+# Contributor: Giovanni Scafora 
+
+pkgname=libpqxx
+pkgver=6.1.1
+pkgrel=1
+pkgdesc='C++ client API for PostgreSQL'
+url='http://pqxx.org/development/libpqxx/'
+arch=('x86_64')
+license=('custom')
+depends=('postgresql-libs>=9.1')
+makedepends=('python2' 'xmlto' 'doxygen')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jtv/libpqxx/archive/${pkgver}.tar.gz)
+sha256sums=('7b4f37dab4b17b71ef415ffa37f5102ef6bc12647e42f0abaaf6febeeefb8b1e')
+sha512sums=('1a8756d587a1780a827aec888eb5a7e86918604e63a74f5a1c7c31b830356a8c46cf6704e03078c8cfebea5907abe2cb9b7fa6dd25c9e39eae2b370df7084b0b')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed 's|python|python2|' -i tools/splitconfig
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --enable-shared
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make prefix="${pkgdir}/usr" install
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2018-03-18 Thread Levente Polyak via arch-commits
Date: Sunday, March 18, 2018 @ 16:16:38
  Author: anthraxx
Revision: 319578

upgpkg: libpqxx 6.1.1-1

Modified:
  libpqxx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 16:13:09 UTC (rev 319577)
+++ PKGBUILD2018-03-18 16:16:38 UTC (rev 319578)
@@ -2,7 +2,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=libpqxx
-pkgver=6.1.0
+pkgver=6.1.1
 pkgrel=1
 pkgdesc='C++ client API for PostgreSQL'
 url='http://pqxx.org/development/libpqxx/'
@@ -11,8 +11,8 @@
 depends=('postgresql-libs>=9.1')
 makedepends=('python2' 'xmlto' 'doxygen')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jtv/libpqxx/archive/${pkgver}.tar.gz)
-sha256sums=('a36899821e4bc354f424c041d43a7f5c0def24d2b7bb3f486d0e6b131520603f')
-sha512sums=('5b44e043bb73ad5c461782e55c0c18e391cf0db4526b4edcb607c6eb9617fc1197c541ebf845ddfd7e6b9136f1fd7530f1b2d9a9098efe85a5398567342277f3')
+sha256sums=('7b4f37dab4b17b71ef415ffa37f5102ef6bc12647e42f0abaaf6febeeefb8b1e')
+sha512sums=('1a8756d587a1780a827aec888eb5a7e86918604e63a74f5a1c7c31b830356a8c46cf6704e03078c8cfebea5907abe2cb9b7fa6dd25c9e39eae2b370df7084b0b')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2018-03-18 Thread Jan Steffens via arch-commits
Date: Sunday, March 18, 2018 @ 17:36:56
  Author: heftig
Revision: 319580

0.10.9-1

Modified:
  flatpak-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 16:16:46 UTC (rev 319579)
+++ PKGBUILD2018-03-18 17:36:56 UTC (rev 319580)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=flatpak-builder
-pkgver=0.10.6
+pkgver=0.10.9
 pkgrel=1
 pkgdesc="Tool to build flatpaks from source"
 url="http://flatpak.org";
@@ -12,7 +12,7 @@
 makedepends=(intltool gobject-introspection git docbook-xsl xmlto libdwarf)
 checkdepends=(python2 valgrind)
 replaces=('flatpak<0.9.10')
-_commit=0ee2315818b6fab15830cd26d8aa53eb3f69a561  # tags/0.10.6^0
+_commit=1b9efca966e090b49d59a6d8c4d8118b200193fb  # tags/0.10.9^0
 source=("git+https://github.com/flatpak/flatpak-builder#commit=$_commit";
 "git+https://git.gnome.org/browse/libglnx";)
 sha256sums=('SKIP'


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

2018-03-18 Thread Jan Steffens via arch-commits
Date: Sunday, March 18, 2018 @ 17:37:35
  Author: heftig
Revision: 319581

archrelease: copy trunk to extra-x86_64

Added:
  flatpak-builder/repos/extra-x86_64/PKGBUILD
(from rev 319580, flatpak-builder/trunk/PKGBUILD)
Deleted:
  flatpak-builder/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 17:36:56 UTC (rev 319580)
+++ PKGBUILD2018-03-18 17:37:35 UTC (rev 319581)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=flatpak-builder
-pkgver=0.10.6
-pkgrel=1
-pkgdesc="Tool to build flatpaks from source"
-url="http://flatpak.org";
-arch=(x86_64)
-license=(LGPL2.1)
-depends=(flatpak binutils elfutils unzip tar git bzr patch rpmextract cpio 
appstream-glib)
-makedepends=(intltool gobject-introspection git docbook-xsl xmlto libdwarf)
-checkdepends=(python2 valgrind)
-replaces=('flatpak<0.9.10')
-_commit=0ee2315818b6fab15830cd26d8aa53eb3f69a561  # tags/0.10.6^0
-source=("git+https://github.com/flatpak/flatpak-builder#commit=$_commit";
-"git+https://git.gnome.org/browse/libglnx";)
-sha256sums=('SKIP'
-'SKIP')
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.libglnx.url "$srcdir/libglnx"
-  git submodule update
-
-  # https://github.com/flatpak/flatpak/issues/267
-  sed -i '/locale\/C\./d' tests/make-test-runtime.sh
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  cd $pkgname
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---libexecdir=/usr/lib/$pkgname \
---disable-static \
---with-dwarf-header=/usr/include/libdwarf
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname
-  # Xattr tests fail on tmpfs
-  make -k check || :
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: flatpak-builder/repos/extra-x86_64/PKGBUILD (from rev 319580, 
flatpak-builder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 17:37:35 UTC (rev 319581)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=flatpak-builder
+pkgver=0.10.9
+pkgrel=1
+pkgdesc="Tool to build flatpaks from source"
+url="http://flatpak.org";
+arch=(x86_64)
+license=(LGPL2.1)
+depends=(flatpak binutils elfutils unzip tar git bzr patch rpmextract cpio 
appstream-glib)
+makedepends=(intltool gobject-introspection git docbook-xsl xmlto libdwarf)
+checkdepends=(python2 valgrind)
+replaces=('flatpak<0.9.10')
+_commit=1b9efca966e090b49d59a6d8c4d8118b200193fb  # tags/0.10.9^0
+source=("git+https://github.com/flatpak/flatpak-builder#commit=$_commit";
+"git+https://git.gnome.org/browse/libglnx";)
+sha256sums=('SKIP'
+'SKIP')
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.libglnx.url "$srcdir/libglnx"
+  git submodule update
+
+  # https://github.com/flatpak/flatpak/issues/267
+  sed -i '/locale\/C\./d' tests/make-test-runtime.sh
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib/$pkgname \
+--disable-static \
+--with-dwarf-header=/usr/include/libdwarf
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname
+  # Xattr tests fail on tmpfs
+  make -k check || :
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 18:40:18
  Author: arojas
Revision: 309067

archrelease: copy trunk to community-any

Added:
  gajim/repos/community-any/
  gajim/repos/community-any/PKGBUILD
(from rev 309066, gajim/trunk/PKGBUILD)

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

Copied: gajim/repos/community-any/PKGBUILD (from rev 309066, 
gajim/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-03-18 18:40:18 UTC (rev 309067)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=gajim
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="A full featured and easy to use Jabber client"
+arch=('any')
+url="https://www.gajim.org/";
+license=('GPL3')
+depends=('python-gobject' 'python-cairo' 'python-pyopenssl' 'python-pyasn1' 
'python-nbxmpp'
+ 'ca-certificates' 'bind-tools' 'hicolor-icon-theme')
+makedepends=('intltool')
+optdepends=('python-dbus: dbus support'
+'gtkspell: for spelling support'
+'libxss: for idle module'
+'notification-daemon: for desktop notification'
+'python-keyring: password storage'
+'python-crypto: support for E2E encryption'
+'python-docutils: for RST generator support'
+'gupnp-igd: for UPnP-IGD support'
+'python-gnupg: for PGP encryption')
+source=(https://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2)
+sha1sums=('05d5177af4a09b041aa03d488524c6859fa51130')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 18:40:12
  Author: arojas
Revision: 309066

extra2community: Moving gajim from extra to community

Added:
  gajim/
  gajim/repos/
  gajim/trunk/
  gajim/trunk/PKGBUILD

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

Added: gajim/trunk/PKGBUILD
===
--- gajim/trunk/PKGBUILD(rev 0)
+++ gajim/trunk/PKGBUILD2018-03-18 18:40:12 UTC (rev 309066)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=gajim
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="A full featured and easy to use Jabber client"
+arch=('any')
+url="https://www.gajim.org/";
+license=('GPL3')
+depends=('python-gobject' 'python-cairo' 'python-pyopenssl' 'python-pyasn1' 
'python-nbxmpp'
+ 'ca-certificates' 'bind-tools' 'hicolor-icon-theme')
+makedepends=('intltool')
+optdepends=('python-dbus: dbus support'
+'gtkspell: for spelling support'
+'libxss: for idle module'
+'notification-daemon: for desktop notification'
+'python-keyring: password storage'
+'python-crypto: support for E2E encryption'
+'python-docutils: for RST generator support'
+'gupnp-igd: for UPnP-IGD support'
+'python-gnupg: for PGP encryption')
+source=(https://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2)
+sha1sums=('05d5177af4a09b041aa03d488524c6859fa51130')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --root="$pkgdir" --optimize=1
+}


Property changes on: gajim/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 18:41:10
  Author: arojas
Revision: 309069

archrelease: copy trunk to community-any

Added:
  nbxmpp/repos/community-any/
  nbxmpp/repos/community-any/PKGBUILD
(from rev 309068, nbxmpp/trunk/PKGBUILD)

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

Copied: nbxmpp/repos/community-any/PKGBUILD (from rev 309068, 
nbxmpp/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-03-18 18:41:10 UTC (rev 309069)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgbase=nbxmpp
+pkgname=('python-nbxmpp' 'python2-nbxmpp')
+pkgver=0.6.4
+pkgrel=1
+arch=('any')
+url="https://dev.gajim.org/gajim/python-nbxmpp/";
+license=('GPL3')
+makedepends=('python' 'python2')
+source=($pkgbase-$pkgver.tar.gz::https://dev.gajim.org/gajim/python-nbxmpp/repository/$pkgbase-$pkgver/archive.tar.gz)
+sha1sums=('64bfe02108b930055f8a77b93c06f1c2ef9c20e0')
+
+prepare() {
+  cp -r python-nbxmpp-* ${pkgbase}-${pkgver}
+  cp -r python-nbxmpp-* ${pkgbase}-${pkgver}-python2
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}-python2
+  python2 setup.py build
+  cd ../${pkgbase}-${pkgver}
+  python setup.py build
+}
+
+package_python-nbxmpp() {
+  pkgdesc="A Python 3 library to use Jabber/XMPP networks in a non-blocking 
way"
+  depends=('python')
+  cd ${pkgbase}-${pkgver}
+  python setup.py install --root="${pkgdir}"
+}
+
+package_python2-nbxmpp() {
+  pkgdesc="A Python 2 library to use Jabber/XMPP networks in a non-blocking 
way"
+  depends=('python2')
+  cd ${pkgbase}-${pkgver}-python2
+  python2 setup.py install --root="${pkgdir}"
+}


[arch-commits] Commit in (gajim)

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 18:40:35
  Author: arojas
Revision: 319583

extra2community: Moving gajim from extra to community

Deleted:
  gajim/


[arch-commits] Commit in (nbxmpp)

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 18:41:30
  Author: arojas
Revision: 319585

extra2community: Moving nbxmpp from extra to community

Deleted:
  nbxmpp/


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

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 18:41:05
  Author: arojas
Revision: 309068

extra2community: Moving nbxmpp from extra to community

Added:
  nbxmpp/
  nbxmpp/repos/
  nbxmpp/trunk/
  nbxmpp/trunk/PKGBUILD

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

Added: nbxmpp/trunk/PKGBUILD
===
--- nbxmpp/trunk/PKGBUILD   (rev 0)
+++ nbxmpp/trunk/PKGBUILD   2018-03-18 18:41:05 UTC (rev 309068)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgbase=nbxmpp
+pkgname=('python-nbxmpp' 'python2-nbxmpp')
+pkgver=0.6.4
+pkgrel=1
+arch=('any')
+url="https://dev.gajim.org/gajim/python-nbxmpp/";
+license=('GPL3')
+makedepends=('python' 'python2')
+source=($pkgbase-$pkgver.tar.gz::https://dev.gajim.org/gajim/python-nbxmpp/repository/$pkgbase-$pkgver/archive.tar.gz)
+sha1sums=('64bfe02108b930055f8a77b93c06f1c2ef9c20e0')
+
+prepare() {
+  cp -r python-nbxmpp-* ${pkgbase}-${pkgver}
+  cp -r python-nbxmpp-* ${pkgbase}-${pkgver}-python2
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}-python2
+  python2 setup.py build
+  cd ../${pkgbase}-${pkgver}
+  python setup.py build
+}
+
+package_python-nbxmpp() {
+  pkgdesc="A Python 3 library to use Jabber/XMPP networks in a non-blocking 
way"
+  depends=('python')
+  cd ${pkgbase}-${pkgver}
+  python setup.py install --root="${pkgdir}"
+}
+
+package_python2-nbxmpp() {
+  pkgdesc="A Python 2 library to use Jabber/XMPP networks in a non-blocking 
way"
+  depends=('python2')
+  cd ${pkgbase}-${pkgver}-python2
+  python2 setup.py install --root="${pkgdir}"
+}


Property changes on: nbxmpp/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in noto-fonts-emoji/trunk (3 files)

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 18:46:15
  Author: arojas
Revision: 319586

Drop B&W font and fontconfig files (FS#57887)

Modified:
  noto-fonts-emoji/trunk/PKGBUILD
Deleted:
  noto-fonts-emoji/trunk/66-noto-color-emoji.conf
  noto-fonts-emoji/trunk/66-noto-emoji.conf

--+
 66-noto-color-emoji.conf |   35 ---
 66-noto-emoji.conf   |   18 --
 PKGBUILD |   15 ---
 3 files changed, 4 insertions(+), 64 deletions(-)

Deleted: 66-noto-color-emoji.conf
===
--- 66-noto-color-emoji.conf2018-03-18 18:41:30 UTC (rev 319585)
+++ 66-noto-color-emoji.conf2018-03-18 18:46:15 UTC (rev 319586)
@@ -1,35 +0,0 @@
-
-
-
-  
-
-  Noto Color Emoji
-
-
-  true
-
-  
-
-  
-  
-emoji
-Noto Color Emoji
-  
-
-  
-  
-Apple Color Emoji
-Noto Color Emoji
-sans-serif
-  
-  
-Segoe UI Emoji
-Noto Color Emoji
-sans-serif
-  
-  
-EmojiOne Color
-Noto Color Emoji
-sans-serif
-  
-

Deleted: 66-noto-emoji.conf
===
--- 66-noto-emoji.conf  2018-03-18 18:41:30 UTC (rev 319585)
+++ 66-noto-emoji.conf  2018-03-18 18:46:15 UTC (rev 319586)
@@ -1,18 +0,0 @@
-
-
-
-  
-
-  Noto Emoji
-
-
-  true
-
-  
-
-  
-  
-emoji
-Noto Emoji
-  
-

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 18:41:30 UTC (rev 319585)
+++ PKGBUILD2018-03-18 18:46:15 UTC (rev 319586)
@@ -5,25 +5,18 @@
 _pkgver=2018-01-02
 _commit=bf112244987f281f0c313d46becfe823ae7b965d
 pkgver=${_pkgver//-}
-pkgrel=1
+pkgrel=2
 pkgdesc="Google Noto emoji fonts"
 arch=(any)
 url="https://www.google.com/get/noto/";
 license=(custom:OFL)
 depends=(fontconfig)
-source=($pkgname-$pkgver.zip::"https://github.com/googlei18n/noto-emoji/archive/$_commit.zip";
-66-noto-color-emoji.conf 66-noto-emoji.conf)
-sha256sums=('1ac40c497e83c7eef1ad26e405de73f6733f7939d8a7c348d00241f3653100a0'
-'5df9fbf693abe3ba663362375d0e02c17345860c54809166be2c22c4e83fc567'
-'ba85f8cdeec0fb505848ec18ef94ccf31aff9ad4690f0c7bcd12098d9df187f4')
+source=($pkgname-$pkgver.zip::"https://github.com/googlei18n/noto-emoji/archive/$_commit.zip";)
+sha256sums=('1ac40c497e83c7eef1ad26e405de73f6733f7939d8a7c348d00241f3653100a0')
 
 package() {
   cd noto-emoji-*
   mkdir -p "$pkgdir"/usr/share/fonts/noto
-  install -m644 fonts/*.ttf "$pkgdir"/usr/share/fonts/noto
+  install -m644 fonts/NotoColorEmoji.ttf "$pkgdir"/usr/share/fonts/noto
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-# Install fontconfig files
-  mkdir -p "$pkgdir"/etc/fonts/conf.avail
-  install -m644 "$srcdir"/*.conf "$pkgdir"/etc/fonts/conf.avail/
 }


[arch-commits] Commit in noto-fonts-emoji/repos/extra-any (4 files)

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 18:47:44
  Author: arojas
Revision: 319587

archrelease: copy trunk to extra-any

Added:
  noto-fonts-emoji/repos/extra-any/PKGBUILD
(from rev 319586, noto-fonts-emoji/trunk/PKGBUILD)
Deleted:
  noto-fonts-emoji/repos/extra-any/66-noto-color-emoji.conf
  noto-fonts-emoji/repos/extra-any/66-noto-emoji.conf
  noto-fonts-emoji/repos/extra-any/PKGBUILD

--+
 66-noto-color-emoji.conf |   35 --
 66-noto-emoji.conf   |   18 ---
 PKGBUILD |   51 +++--
 3 files changed, 22 insertions(+), 82 deletions(-)

Deleted: 66-noto-color-emoji.conf
===
--- 66-noto-color-emoji.conf2018-03-18 18:46:15 UTC (rev 319586)
+++ 66-noto-color-emoji.conf2018-03-18 18:47:44 UTC (rev 319587)
@@ -1,35 +0,0 @@
-
-
-
-  
-
-  Noto Color Emoji
-
-
-  true
-
-  
-
-  
-  
-emoji
-Noto Color Emoji
-  
-
-  
-  
-Apple Color Emoji
-Noto Color Emoji
-sans-serif
-  
-  
-Segoe UI Emoji
-Noto Color Emoji
-sans-serif
-  
-  
-EmojiOne Color
-Noto Color Emoji
-sans-serif
-  
-

Deleted: 66-noto-emoji.conf
===
--- 66-noto-emoji.conf  2018-03-18 18:46:15 UTC (rev 319586)
+++ 66-noto-emoji.conf  2018-03-18 18:47:44 UTC (rev 319587)
@@ -1,18 +0,0 @@
-
-
-
-  
-
-  Noto Emoji
-
-
-  true
-
-  
-
-  
-  
-emoji
-Noto Emoji
-  
-

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 18:46:15 UTC (rev 319586)
+++ PKGBUILD2018-03-18 18:47:44 UTC (rev 319587)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=noto-fonts-emoji
-_pkgver=2018-01-02
-_commit=bf112244987f281f0c313d46becfe823ae7b965d
-pkgver=${_pkgver//-}
-pkgrel=1
-pkgdesc="Google Noto emoji fonts"
-arch=(any)
-url="https://www.google.com/get/noto/";
-license=(custom:OFL)
-depends=(fontconfig)
-source=($pkgname-$pkgver.zip::"https://github.com/googlei18n/noto-emoji/archive/$_commit.zip";
-66-noto-color-emoji.conf 66-noto-emoji.conf)
-sha256sums=('1ac40c497e83c7eef1ad26e405de73f6733f7939d8a7c348d00241f3653100a0'
-'5df9fbf693abe3ba663362375d0e02c17345860c54809166be2c22c4e83fc567'
-'ba85f8cdeec0fb505848ec18ef94ccf31aff9ad4690f0c7bcd12098d9df187f4')
-
-package() {
-  cd noto-emoji-*
-  mkdir -p "$pkgdir"/usr/share/fonts/noto
-  install -m644 fonts/*.ttf "$pkgdir"/usr/share/fonts/noto
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-# Install fontconfig files
-  mkdir -p "$pkgdir"/etc/fonts/conf.avail
-  install -m644 "$srcdir"/*.conf "$pkgdir"/etc/fonts/conf.avail/
-}

Copied: noto-fonts-emoji/repos/extra-any/PKGBUILD (from rev 319586, 
noto-fonts-emoji/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 18:47:44 UTC (rev 319587)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=noto-fonts-emoji
+_pkgver=2018-01-02
+_commit=bf112244987f281f0c313d46becfe823ae7b965d
+pkgver=${_pkgver//-}
+pkgrel=2
+pkgdesc="Google Noto emoji fonts"
+arch=(any)
+url="https://www.google.com/get/noto/";
+license=(custom:OFL)
+depends=(fontconfig)
+source=($pkgname-$pkgver.zip::"https://github.com/googlei18n/noto-emoji/archive/$_commit.zip";)
+sha256sums=('1ac40c497e83c7eef1ad26e405de73f6733f7939d8a7c348d00241f3653100a0')
+
+package() {
+  cd noto-emoji-*
+  mkdir -p "$pkgdir"/usr/share/fonts/noto
+  install -m644 fonts/NotoColorEmoji.ttf "$pkgdir"/usr/share/fonts/noto
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in (4 files)

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 18:50:37
  Author: felixonmars
Revision: 309070

addpkg: haskell-hspec-contrib 0.4.0-1

Added:
  haskell-hspec-contrib/
  haskell-hspec-contrib/repos/
  haskell-hspec-contrib/trunk/
  haskell-hspec-contrib/trunk/PKGBUILD

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

Added: haskell-hspec-contrib/trunk/PKGBUILD
===
--- haskell-hspec-contrib/trunk/PKGBUILD(rev 0)
+++ haskell-hspec-contrib/trunk/PKGBUILD2018-03-18 18:50:37 UTC (rev 
309070)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-contrib
+pkgname=haskell-hspec-contrib
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="Contributed functionality for Hspec"
+url="http://hspec.github.io/";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hspec-core' 'haskell-hunit')
+makedepends=('ghc' 'haskell-hspec' 'haskell-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('252206e594a1674b600c990308e124e40115b269272f65d568baecfcfc349f87649f881ffbe7548023728c946e854b67ca4aa9b2e2354130ea3eadcdcb06a5ed')
+
+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"
+}


Property changes on: haskell-hspec-contrib/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 18:50:56
  Author: felixonmars
Revision: 309071

archrelease: copy trunk to community-x86_64

Added:
  haskell-hspec-contrib/repos/community-x86_64/
  haskell-hspec-contrib/repos/community-x86_64/PKGBUILD
(from rev 309070, haskell-hspec-contrib/trunk/PKGBUILD)

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

Copied: haskell-hspec-contrib/repos/community-x86_64/PKGBUILD (from rev 309070, 
haskell-hspec-contrib/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-03-18 18:50:56 UTC (rev 309071)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-contrib
+pkgname=haskell-hspec-contrib
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="Contributed functionality for Hspec"
+url="http://hspec.github.io/";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hspec-core' 'haskell-hunit')
+makedepends=('ghc' 'haskell-hspec' 'haskell-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('252206e594a1674b600c990308e124e40115b269272f65d568baecfcfc349f87649f881ffbe7548023728c946e854b67ca4aa9b2e2354130ea3eadcdcb06a5ed')
+
+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-shelly/trunk (PKGBUILD)

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 18:53:21
  Author: felixonmars
Revision: 309073

upgpkg: haskell-shelly 1.7.2-1

rebuild with shelly,1.7.2

Modified:
  haskell-shelly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 18:53:18 UTC (rev 309072)
+++ PKGBUILD2018-03-18 18:53:21 UTC (rev 309073)
@@ -4,8 +4,8 @@
 
 _hkgname=shelly
 pkgname=haskell-shelly
-pkgver=1.7.1
-pkgrel=3
+pkgver=1.7.2
+pkgrel=1
 pkgdesc="Shell-like (systems) programming in Haskell"
 url="https://github.com/yesodweb/Shelly.hs";
 license=("custom:BSD3")
@@ -14,12 +14,12 @@
  'haskell-system-fileio' 'haskell-monad-control' 'haskell-lifted-base'
  'haskell-lifted-async' 'haskell-exceptions' 
'haskell-enclosed-exceptions' 'haskell-text'
  'haskell-async' 'haskell-transformers-base')
-makedepends=('ghc' 'haskell-hunit' 'haskell-hspec')
+makedepends=('ghc' 'haskell-hunit' 'haskell-hspec' 'haskell-hspec-contrib')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('0409be10d66fcd6d283b2032fdc39e674187d7d29a4ef0eb61dd251bc3518b1863ab70185abe963ba0eb4601a0a96013b6f83b5c73255b06aaec9914b1628ffd')
+sha512sums=('bee82f8b6433f244d84984fdfaa262ac3c6712d54f37882e503a9de6ace6f7a3da497ba81bedc7e33d0db6f37a464605e4c245fd90a829666df692ad912b7fb3')
 
 build() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
+cd $_hkgname-$pkgver
 
 runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
 --prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
@@ -38,7 +38,7 @@
 }
 
 package() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
+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"


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

2018-03-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, March 18, 2018 @ 18:53:18
  Author: jelle
Revision: 309072

upgpkg: pyflame 1.6.3-1

Modified:
  pyflame/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 18:50:56 UTC (rev 309071)
+++ PKGBUILD2018-03-18 18:53:18 UTC (rev 309072)
@@ -1,6 +1,6 @@
 # Maintainer: Jelle van der Waa 
 pkgname=pyflame
-pkgver=1.3.1
+pkgver=1.6.3
 pkgrel=1
 pkgdesc="A tool for generating flame graphs for Python (2) processes."
 arch=('x86_64')
@@ -7,11 +7,11 @@
 url="https://github.com/uber/pyflame";
 license=('APACHE')
 depends=('gcc-libs')
-makedepends=('python' 'python2')
+makedepends=('python')
 checkdepends=('python-virtualenv')
 conflicts=('pyflame-git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/uber/pyflame/archive/v1.3.1.tar.gz";)
-sha256sums=('b51ddba3d1525c4a779254354b42972582f361fd46006a7736566a51401c8a1c')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/uber/pyflame/archive/v$pkgver.tar.gz";)
+sha256sums=('9b7c09302f7b7ce27b57c45b78494a1170cad1e994ec8168c1bb1c6175c217b8')
 
 build() {
   cd "$pkgname-$pkgver"
@@ -24,3 +24,8 @@
   cd "$pkgname-$pkgver"
   make DESTDIR="$pkgdir/" install
 }
+
+check() {
+  cd "$pkgname-$pkgver"
+#make check
+}


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

2018-03-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, March 18, 2018 @ 18:53:37
  Author: jelle
Revision: 309074

archrelease: copy trunk to community-x86_64

Added:
  pyflame/repos/community-x86_64/PKGBUILD
(from rev 309073, pyflame/trunk/PKGBUILD)
Deleted:
  pyflame/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 18:53:21 UTC (rev 309073)
+++ PKGBUILD2018-03-18 18:53:37 UTC (rev 309074)
@@ -1,26 +0,0 @@
-# Maintainer: Jelle van der Waa 
-pkgname=pyflame
-pkgver=1.3.1
-pkgrel=1
-pkgdesc="A tool for generating flame graphs for Python (2) processes."
-arch=('i686' 'x86_64')
-url="https://github.com/uber/pyflame";
-license=('APACHE')
-depends=('gcc-libs')
-makedepends=('python' 'python2')
-checkdepends=('python-virtualenv')
-conflicts=('pyflame-git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/uber/pyflame/archive/v1.3.1.tar.gz";)
-sha256sums=('b51ddba3d1525c4a779254354b42972582f361fd46006a7736566a51401c8a1c')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-}

Copied: pyflame/repos/community-x86_64/PKGBUILD (from rev 309073, 
pyflame/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 18:53:37 UTC (rev 309074)
@@ -0,0 +1,31 @@
+# Maintainer: Jelle van der Waa 
+pkgname=pyflame
+pkgver=1.6.3
+pkgrel=1
+pkgdesc="A tool for generating flame graphs for Python (2) processes."
+arch=('x86_64')
+url="https://github.com/uber/pyflame";
+license=('APACHE')
+depends=('gcc-libs')
+makedepends=('python')
+checkdepends=('python-virtualenv')
+conflicts=('pyflame-git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/uber/pyflame/archive/v$pkgver.tar.gz";)
+sha256sums=('9b7c09302f7b7ce27b57c45b78494a1170cad1e994ec8168c1bb1c6175c217b8')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+#make check
+}


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 18:53:40
  Author: felixonmars
Revision: 309075

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-shelly/repos/community-staging-x86_64/PKGBUILD (from rev 
309073, haskell-shelly/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-03-18 18:53:40 UTC (rev 309075)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shelly
+pkgname=haskell-shelly
+pkgver=1.7.2
+pkgrel=1
+pkgdesc="Shell-like (systems) programming in Haskell"
+url="https://github.com/yesodweb/Shelly.hs";
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-mtl' 'haskell-unix-compat' 
'haskell-system-filepath'
+ 'haskell-system-fileio' 'haskell-monad-control' 'haskell-lifted-base'
+ 'haskell-lifted-async' 'haskell-exceptions' 
'haskell-enclosed-exceptions' 'haskell-text'
+ 'haskell-async' 'haskell-transformers-base')
+makedepends=('ghc' 'haskell-hunit' 'haskell-hspec' 'haskell-hspec-contrib')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('bee82f8b6433f244d84984fdfaa262ac3c6712d54f37882e503a9de6ace6f7a3da497ba81bedc7e33d0db6f37a464605e4c245fd90a829666df692ad912b7fb3')
+
+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-lifted -f-build-examples
+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 c2hs/trunk (PKGBUILD)

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 18:55:23
  Author: felixonmars
Revision: 309076

upgpkg: c2hs 0.28.3-17

rebuild with shelly,1.7.2

Modified:
  c2hs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 18:53:40 UTC (rev 309075)
+++ PKGBUILD2018-03-18 18:55:23 UTC (rev 309076)
@@ -4,7 +4,7 @@
 
 pkgname=c2hs
 pkgver=0.28.3
-pkgrel=16
+pkgrel=17
 pkgdesc="C->Haskell FFI tool that gives some cross-language type safety"
 url="https://github.com/haskell/c2hs";
 license=("GPL2")


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 18:55:47
  Author: felixonmars
Revision: 309077

archrelease: copy trunk to community-staging-x86_64

Added:
  c2hs/repos/community-staging-x86_64/
  c2hs/repos/community-staging-x86_64/PKGBUILD
(from rev 309076, c2hs/trunk/PKGBUILD)

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

Copied: c2hs/repos/community-staging-x86_64/PKGBUILD (from rev 309076, 
c2hs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-03-18 18:55:47 UTC (rev 309077)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=c2hs
+pkgver=0.28.3
+pkgrel=17
+pkgdesc="C->Haskell FFI tool that gives some cross-language type safety"
+url="https://github.com/haskell/c2hs";
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-dlist" "haskell-language-c")
+makedepends=('ghc' 'haskell-test-framework' 'haskell-test-framework-hunit' 
'haskell-hunit'
+ 'haskell-shelly' 'haskell-text')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('17306b6ee41623d1c017581ed7aef6118a66c30a4698fa95d588b30ac625a6571906bb1fffecf7b86296667390d18cfe5ee2ade85098075f2ca982922b358b3a')
+
+prepare() {
+sed -i 's/cmd "ghc"/cmd "ghc" "-dynamic"/' c2hs-$pkgver/tests/test-*.hs
+sed -i 's/HC=ghc/HC="ghc -dynamic"/' c2hs-$pkgver/tests/system/Makefile
+sed -i 's/"ghc", \["-/"ghc", ["-dynamic", "-/' c2hs-$pkgver/tests/test-*.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" 
--enable-tests \
+-f-regression -fbase3
+runhaskell Setup build
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+}


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 18:56:21
  Author: felixonmars
Revision: 309078

upgpkg: haskell-gnuidn 0.2.2-25

rebuild with shelly,1.7.2

Modified:
  haskell-gnuidn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 18:55:47 UTC (rev 309077)
+++ PKGBUILD2018-03-18 18:56:21 UTC (rev 309078)
@@ -5,7 +5,7 @@
 _hkgname=gnuidn
 pkgname=haskell-gnuidn
 pkgver=0.2.2
-pkgrel=24
+pkgrel=25
 pkgdesc="Bindings for GNU IDN"
 url="https://john-millikin.com/software/haskell-gnuidn/";
 license=("GPL3")


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 18:56:36
  Author: felixonmars
Revision: 309079

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-gnuidn/repos/community-staging-x86_64/PKGBUILD (from rev 
309078, haskell-gnuidn/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-03-18 18:56:36 UTC (rev 309079)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=gnuidn
+pkgname=haskell-gnuidn
+pkgver=0.2.2
+pkgrel=25
+pkgdesc="Bindings for GNU IDN"
+url="https://john-millikin.com/software/haskell-gnuidn/";
+license=("GPL3")
+arch=('x86_64')
+depends=('ghc-libs' "libidn" "haskell-text")
+makedepends=('c2hs' 'ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('4ac894ba4cc4fb9fd90ccea55fda342cd0dadc863a091d31287b19117ec1e545a23b7fb69db02bbb8ee9eb84856acb51f3ab0d7778f4ca3da290dfcbc7ef27ac')
+
+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
+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}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/license.txt"
+}


[arch-commits] Commit in haskell-network-protocol-xmpp/trunk (PKGBUILD)

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 18:57:12
  Author: felixonmars
Revision: 309080

upgpkg: haskell-network-protocol-xmpp 0.4.8-30

rebuild with shelly,1.7.2

Modified:
  haskell-network-protocol-xmpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 18:56:36 UTC (rev 309079)
+++ PKGBUILD2018-03-18 18:57:12 UTC (rev 309080)
@@ -5,7 +5,7 @@
 _hkgname=network-protocol-xmpp
 pkgname=haskell-network-protocol-xmpp
 pkgver=0.4.8
-pkgrel=29
+pkgrel=30
 pkgdesc="Client library for the XMPP protocol."
 url="https://john-millikin.com/software/haskell-xmpp/";
 license=("GPL3")


[arch-commits] Commit in haskell-network-protocol-xmpp/repos (2 files)

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 18:57:27
  Author: felixonmars
Revision: 309081

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-network-protocol-xmpp/repos/community-staging-x86_64/
  haskell-network-protocol-xmpp/repos/community-staging-x86_64/PKGBUILD
(from rev 309080, haskell-network-protocol-xmpp/trunk/PKGBUILD)

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

Copied: haskell-network-protocol-xmpp/repos/community-staging-x86_64/PKGBUILD 
(from rev 309080, haskell-network-protocol-xmpp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-03-18 18:57:27 UTC (rev 309081)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=network-protocol-xmpp
+pkgname=haskell-network-protocol-xmpp
+pkgver=0.4.8
+pkgrel=30
+pkgdesc="Client library for the XMPP protocol."
+url="https://john-millikin.com/software/haskell-xmpp/";
+license=("GPL3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-gnuidn" "haskell-gnutls" "haskell-gsasl" 
"haskell-libxml-sax"
+ "haskell-monads-tf" "haskell-network" "haskell-text" 
"haskell-xml-types")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('029cbb1a0ea6691fd886b326eee7a24e8300bbece1f0c0f564b43b0e344f4107ca980d97342271cab0b9c1333fc445ac10f7dfae41dd2b6e6ea995bfb810311e')
+
+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
+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}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/license.txt"
+}


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 18:58:40
  Author: felixonmars
Revision: 319588

upgpkg: python-setuptools 1:39.0.1-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 18:47:44 UTC (rev 319587)
+++ PKGBUILD2018-03-18 18:58:40 UTC (rev 319588)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=39.0.0
+pkgver=39.0.1
 pkgrel=1
 epoch=1
 pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
@@ -17,7 +17,7 @@
   'python2-pytest-fixture-config' 'python-pytest-virtualenv' 
'python2-pytest-virtualenv'
   'python-wheel' 'python2-wheel' 'python-pip' 'python2-pip' 'git')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz";)
-sha512sums=('7c7aa05a994af9a0c1d308f1b75597463c5babe50cc71136d3eaf38f24527c8e3c7727dc28a6d81e3f9c2426fbb46339ff95fad7d5b6a65be86f30bb21a2e564')
+sha512sums=('34df8f10e89825975c82059c759690a2cc1486fc84c71a76875b92c2452529fbdd628e11e3043e479ea3f031af18b37a37b86d2a8d2505c300188eccdc109332')
 
 prepare() {
   rm -r setuptools-$pkgver/{pkg_resources,setuptools}/_vendor


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 18:58:55
  Author: felixonmars
Revision: 309082

upgpkg: agda-stdlib 0.15-1

Modified:
  agda-stdlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 18:57:27 UTC (rev 309081)
+++ PKGBUILD2018-03-18 18:58:55 UTC (rev 309082)
@@ -3,7 +3,7 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=agda-stdlib
-pkgver=0.14
+pkgver=0.15
 pkgrel=1
 pkgdesc="Agda standard libraries"
 url="https://github.com/agda/agda-stdlib";
@@ -13,7 +13,7 @@
 makedepends=('ghc' 'haskell-filemanip')
 options=('staticlibs')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/agda/agda-stdlib/archive/v$pkgver.tar.gz";)
-sha512sums=('fcb785110c72fa8d298346150827766bdcb308502a4b915b56b6bb43aff9b5f93fd23932e08a78d97ec723ad0f2ea49c7f132b3b8cc8a535f9cde49387c95c51')
+sha512sums=('4274b73ea2fa3bd778e345ee9459fa31c01b47ddf127b733efd572ca65a531ab49bdcd09cff2600b9229aad23cee55324653c62280421676036ff587f64abb4b')
 
 build() {
 cd $pkgname-$pkgver


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 18:58:59
  Author: felixonmars
Revision: 319589

archrelease: copy trunk to extra-any

Added:
  python-setuptools/repos/extra-any/PKGBUILD
(from rev 319588, python-setuptools/trunk/PKGBUILD)
Deleted:
  python-setuptools/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  184 ++---
 1 file changed, 92 insertions(+), 92 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 18:58:40 UTC (rev 319588)
+++ PKGBUILD2018-03-18 18:58:59 UTC (rev 319589)
@@ -1,92 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=39.0.0
-pkgrel=1
-epoch=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="http://pypi.python.org/pypi/setuptools";
-makedepends=('python-packaging' 'python2-packaging' 'python-appdirs' 
'python2-appdirs')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-flake8'
-  'python2-pytest-flake8' 'python-mock' 'python2-mock' 
'python-pytest-fixture-config'
-  'python2-pytest-fixture-config' 'python-pytest-virtualenv' 
'python2-pytest-virtualenv'
-  'python-wheel' 'python2-wheel' 'python-pip' 'python2-pip' 'git')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz";)
-sha512sums=('7c7aa05a994af9a0c1d308f1b75597463c5babe50cc71136d3eaf38f24527c8e3c7727dc28a6d81e3f9c2426fbb46339ff95fad7d5b6a65be86f30bb21a2e564')
-
-prepare() {
-  rm -r setuptools-$pkgver/{pkg_resources,setuptools}/_vendor
-
-  # Remove post-release tag since we are using stable tags
-  sed -e '/tag_build = .post/d' \
-  -e '/tag_date = 1/d' \
-  -i setuptools-$pkgver/setup.cfg
-
-  # 'Clean' installation is expected to fail since we removed bundled packages
-  sed -i '/^def test_clean_env_install/i import 
pytest\n\n...@pytest.mark.xfail' 
setuptools-$pkgver/setuptools/tests/test_virtualenv.py
-
-  # Tests failed. Importing an unbundled new setuptools in a virtualenv does 
not work, but this won't
-  # affect normal virtualenv usage (which don't have to import the unbundled 
setuptools in *current*
-  # dir.
-  sed -e '/^def test_pip_upgrade_from_source/i @pytest.mark.xfail' \
-  -e '/^def test_test_command_install_requirements/i @pytest.mark.xfail' \
-  -i setuptools-$pkgver/setuptools/tests/test_virtualenv.py
-
-  cp -a setuptools-$pkgver{,-py2}
-
-  cd "$srcdir"/setuptools-$pkgver
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
-
-  export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
-}
-
-build() {
-  cd "$srcdir"/setuptools-$pkgver
-  python bootstrap.py
-  python setup.py build
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  python2 bootstrap.py
-  python2 setup.py build
-}
-
-check() { (
-  # Workaround UTF-8 tests by setting LC_CTYPE
-  export LC_CTYPE=en_US.UTF-8
-
-  # https://github.com/pypa/setuptools/pull/810
-  export PYTHONDONTWRITEBYTECODE=1
-
-  cd "$srcdir"/setuptools-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  python2 setup.py pytest
-)}
-
-package_python-setuptools() {
-  depends=('python-packaging' 'python-appdirs')
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd "$srcdir"/setuptools-$pkgver
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-}
-
-package_python2-setuptools() {
-  depends=('python2-packaging' 'python2-appdirs')
-  provides=('python2-distribute')
-  replaces=('python2-distribute')
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-  rm "$pkgdir"/usr/bin/easy_install
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 319588, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 18:58:59 UTC (rev 319589)
@@ -0,0 +1,92 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=39.0.1
+pkgrel=1
+epoch=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
+arch=('any')
+license=('PSF')
+url="http://pypi.python.org/pypi/setuptools";
+makedepends=('python-packaging' 'python2-packaging' 'python-appdirs' 
'python2-appdirs')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-flake8'
+  'python2-pytest-flake8' 'python-mock' 'python2-mock' 
'python-pytest-fixture-config'
+  'python2-py

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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 18:59:24
  Author: felixonmars
Revision: 309084

archrelease: copy trunk to community-x86_64

Added:
  agda-stdlib/repos/community-x86_64/PKGBUILD
(from rev 309082, agda-stdlib/trunk/PKGBUILD)
Deleted:
  agda-stdlib/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 18:59:23 UTC (rev 309083)
+++ PKGBUILD2018-03-18 18:59:24 UTC (rev 309084)
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 152508 2015-12-10 18:09:47Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=agda-stdlib
-pkgver=0.14
-pkgrel=1
-pkgdesc="Agda standard libraries"
-url="https://github.com/agda/agda-stdlib";
-license=("MIT")
-arch=('i686' 'x86_64')
-depends=('agda')
-makedepends=('ghc' 'haskell-filemanip')
-options=('staticlibs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/agda/agda-stdlib/archive/v$pkgver.tar.gz";)
-sha512sums=('fcb785110c72fa8d298346150827766bdcb308502a4b915b56b6bb43aff9b5f93fd23932e08a78d97ec723ad0f2ea49c7f132b3b8cc8a535f9cde49387c95c51')
-
-build() {
-cd $pkgname-$pkgver
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanill
-runhaskell Setup build
-
-dist/build/GenerateEverything/GenerateEverything
-
-agda -i. -isrc Everything.agda
-agda --html -i. -isrc README.agda
-}
-
-package() {
-cd $pkgname-$pkgver
-install -dm755 "$pkgdir"/usr/share/agda/lib/prim
-cp -pr Everything.agda* src/* "$pkgdir"/usr/share/agda/lib/prim
-install -D -m644 LICENCE "$pkgdir"/usr/share/licenses/$pkgname/LICENCE
-}

Copied: agda-stdlib/repos/community-x86_64/PKGBUILD (from rev 309082, 
agda-stdlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 18:59:24 UTC (rev 309084)
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 152508 2015-12-10 18:09:47Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=agda-stdlib
+pkgver=0.15
+pkgrel=1
+pkgdesc="Agda standard libraries"
+url="https://github.com/agda/agda-stdlib";
+license=("MIT")
+arch=('x86_64')
+depends=('agda')
+makedepends=('ghc' 'haskell-filemanip')
+options=('staticlibs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/agda/agda-stdlib/archive/v$pkgver.tar.gz";)
+sha512sums=('4274b73ea2fa3bd778e345ee9459fa31c01b47ddf127b733efd572ca65a531ab49bdcd09cff2600b9229aad23cee55324653c62280421676036ff587f64abb4b')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanill
+runhaskell Setup build
+
+dist/build/GenerateEverything/GenerateEverything
+
+agda -i. -isrc Everything.agda
+agda --html -i. -isrc README.agda
+}
+
+package() {
+cd $pkgname-$pkgver
+install -dm755 "$pkgdir"/usr/share/agda/lib/prim
+cp -pr Everything.agda* src/* "$pkgdir"/usr/share/agda/lib/prim
+install -D -m644 LICENCE "$pkgdir"/usr/share/licenses/$pkgname/LICENCE
+}


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 19:02:52
  Author: felixonmars
Revision: 319590

upgpkg: cmake 3.10.3-1

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 18:58:59 UTC (rev 319589)
+++ PKGBUILD2018-03-18 19:02:52 UTC (rev 319590)
@@ -4,8 +4,8 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.10.2
-pkgrel=2
+pkgver=3.10.3
+pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
 url="http://www.cmake.org/";
@@ -16,7 +16,7 @@
 'libxkbcommon-x11: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz";
 'cmake-3.10-boost-1.66-support.patch')
-sha512sums=('f58fdd025285c9ff5396c0bd0d9573fc8a498fcbe5c11b336cb8ad6154ca6bc875c1a5e22d6654ba98596791ecf89ae8adffb83450839fa1275756b0af5bf82b'
+sha512sums=('1ba6381321cb34c3c050548a1346d3b92d590a196d8aff7435c079cd485d01f7a6cd650ad97d00931aff424fcdc195bbaa6d9d7db679bf02f72f586c7b528ae4'
 
'edc24a0e057056427e15b0b4c23828c8d0d23a69061d0ede9ae1bb6104bece53157480f63361b48994ea9f3b12f5bcd9f1d56c4f7d5c4b1b88c8e1a7b6ee5b68')
 
 prepare() {


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 19:03:11
  Author: felixonmars
Revision: 319591

archrelease: copy trunk to extra-x86_64

Added:
  cmake/repos/extra-x86_64/PKGBUILD
(from rev 319590, cmake/trunk/PKGBUILD)
  cmake/repos/extra-x86_64/cmake-3.10-boost-1.66-support.patch
(from rev 319590, cmake/trunk/cmake-3.10-boost-1.66-support.patch)
  cmake/repos/extra-x86_64/rebuild.list
(from rev 319590, cmake/trunk/rebuild.list)
Deleted:
  cmake/repos/extra-x86_64/PKGBUILD
  cmake/repos/extra-x86_64/cmake-3.10-boost-1.66-support.patch
  cmake/repos/extra-x86_64/rebuild.list

-+
 PKGBUILD|  118 +++
 cmake-3.10-boost-1.66-support.patch |  518 +-
 rebuild.list|6 
 3 files changed, 321 insertions(+), 321 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 19:02:52 UTC (rev 319590)
+++ PKGBUILD2018-03-18 19:03:11 UTC (rev 319591)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=cmake
-pkgver=3.10.2
-pkgrel=2
-pkgdesc='A cross-platform open-source make system'
-arch=('x86_64')
-url="http://www.cmake.org/";
-license=('custom')
-depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp' 'libuv' 'rhash')
-makedepends=('qt5-base' 'python-sphinx' 'emacs')
-optdepends=('qt5-base: cmake-gui'
-'libxkbcommon-x11: cmake-gui')
-source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz";
-'cmake-3.10-boost-1.66-support.patch')
-sha512sums=('f58fdd025285c9ff5396c0bd0d9573fc8a498fcbe5c11b336cb8ad6154ca6bc875c1a5e22d6654ba98596791ecf89ae8adffb83450839fa1275756b0af5bf82b'
-
'edc24a0e057056427e15b0b4c23828c8d0d23a69061d0ede9ae1bb6104bece53157480f63361b48994ea9f3b12f5bcd9f1d56c4f7d5c4b1b88c8e1a7b6ee5b68')
-
-prepare() {
- cd ${pkgname}-${pkgver}  
- patch -p1 -i "${srcdir}/cmake-3.10-boost-1.66-support.patch"
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./bootstrap --prefix=/usr \
---mandir=/share/man \
---docdir=/share/doc/cmake \
---sphinx-man \
---system-libs \
---qt-gui \
---parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  vimpath="${pkgdir}/usr/share/vim/vimfiles"
-  install -d "${vimpath}"/{help,indent,syntax}
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/indent/cmake.vim \
-"${vimpath}"/indent/
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/syntax/cmake.vim \
-"${vimpath}"/syntax/
-
-  install -d "${pkgdir}"/usr/share/emacs/site-lisp/
-  emacs -batch -f batch-byte-compile \
-"${pkgdir}"/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el \
-"${pkgdir}"/usr/share/emacs/site-lisp/
-
-  install -Dm644 Copyright.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: cmake/repos/extra-x86_64/PKGBUILD (from rev 319590, 
cmake/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 19:03:11 UTC (rev 319591)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=cmake
+pkgver=3.10.3
+pkgrel=1
+pkgdesc='A cross-platform open-source make system'
+arch=('x86_64')
+url="http://www.cmake.org/";
+license=('custom')
+depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp' 'libuv' 'rhash')
+makedepends=('qt5-base' 'python-sphinx' 'emacs')
+optdepends=('qt5-base: cmake-gui'
+'libxkbcommon-x11: cmake-gui')
+source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz";
+'cmake-3.10-boost-1.66-support.patch')
+sha512sums=('1ba6381321cb34c3c050548a1346d3b92d590a196d8aff7435c079cd485d01f7a6cd650ad97d00931aff424fcdc195bbaa6d9d7db679bf02f72f586c7b528ae4'
+
'edc24a0e057056427e15b0b4c23828c8d0d23a69061d0ede9ae1bb6104bece53157480f63361b48994ea9f3b12f5bcd9f1d56c4f7d5c4b1b88c8e1a7b6ee5b68')
+
+prepare() {
+ cd ${pkgname}-${pkgver}  
+ patch -p1 -i "${srcdir}/cmake-3.10-boost-1.66-support.patch"
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./bootstrap --prefix=/usr \
+--mandir=/share/man \
+--docdir=/share/doc/cmake \
+--sphinx-man \
+--system-libs \
+--qt-gui \
+--parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  vimpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -d "${vimpath}"/{help,indent,syntax}
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/indent/cmake.vim \
+"${vimpath}"/indent/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/syntax/cmake.vim \
+"${vimpath}"/syntax/
+
+  install -d "${pkgdir}"/usr/share/emacs/site-lisp/
+  ema

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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 19:05:07
  Author: felixonmars
Revision: 309089

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 19:04:50 UTC (rev 309088)
+++ PKGBUILD2018-03-18 19:05:07 UTC (rev 309089)
@@ -1,51 +0,0 @@
-# $Id: PKGBUILD 140810 2015-09-19 13:17:30Z fyan $
-# Maintainer: Felix Yan 
-
-pkgbase=python-pycontracts
-pkgname=(python-pycontracts python2-pycontracts)
-pkgver=1.8.2
-pkgrel=1
-pkgdesc='Declare constraints on function parameters and return values'
-arch=('any')
-url="https://andreacensi.github.io/contracts";
-license=('GPL')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pyparsing' 
'python2-pyparsing'
- 'python-decorator' 'python2-decorator' 'python-six' 'python2-six')
-checkdepends=('python-nose' 'python2-nose')
-source=("https://pypi.io/packages/source/P/PyContracts/PyContracts-$pkgver.tar.gz";)
-sha512sums=('3ab81218fdb487b0f2e80db92de8ace91832a2aaeb8703f0eab2928338d5d7bc71d55f585b942be8d0c1e04d3602f6d754a307aca6d9e758c6d1fe5a361fc18e')
-
-prepare() {
-  cp -a PyContracts-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/PyContracts-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/PyContracts-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/PyContracts-$pkgver
-  python setup.py nosetests
-
-  cd "$srcdir"/PyContracts-$pkgver-py2
-  rm -r src/contracts-py3k-test
-  python2 setup.py nosetests
-}
-
-package_python-pycontracts() {
-  depends=('python-pyparsing' 'python-decorator' 'python-six')
-
-  cd PyContracts-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-pycontracts() {
-  depends=('python2-pyparsing' 'python2-decorator' 'python2-six')
-
-  cd PyContracts-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-pycontracts/repos/community-any/PKGBUILD (from rev 309088, 
python-pycontracts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 19:05:07 UTC (rev 309089)
@@ -0,0 +1,51 @@
+# $Id: PKGBUILD 140810 2015-09-19 13:17:30Z fyan $
+# Maintainer: Felix Yan 
+
+pkgbase=python-pycontracts
+pkgname=(python-pycontracts python2-pycontracts)
+pkgver=1.8.3
+pkgrel=1
+pkgdesc='Declare constraints on function parameters and return values'
+arch=('any')
+url="https://andreacensi.github.io/contracts";
+license=('GPL')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pyparsing' 
'python2-pyparsing'
+ 'python-decorator' 'python2-decorator' 'python-six' 'python2-six')
+checkdepends=('python-nose' 'python2-nose')
+source=("https://pypi.io/packages/source/P/PyContracts/PyContracts-$pkgver.tar.gz";)
+sha512sums=('470c093caaa1289da6f9bf40a3ea4e7b4099a3702a0941e398aaf0507a70630b64499b4f718bbb404ae36433433d534df4d0089dda9a5576895f9c2aff5b82fb')
+
+prepare() {
+  cp -a PyContracts-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/PyContracts-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/PyContracts-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/PyContracts-$pkgver
+  python setup.py nosetests
+
+  cd "$srcdir"/PyContracts-$pkgver-py2
+  rm -r src/contracts-py3k-test
+  python2 setup.py nosetests
+}
+
+package_python-pycontracts() {
+  depends=('python-pyparsing' 'python-decorator' 'python-six')
+
+  cd PyContracts-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-pycontracts() {
+  depends=('python2-pyparsing' 'python2-decorator' 'python2-six')
+
+  cd PyContracts-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2018-03-18 Thread Felix Yan via arch-commits
Date: Sunday, March 18, 2018 @ 19:04:50
  Author: felixonmars
Revision: 309088

upgpkg: python-pycontracts 1.8.3-1

Modified:
  python-pycontracts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 18:59:31 UTC (rev 309087)
+++ PKGBUILD2018-03-18 19:04:50 UTC (rev 309088)
@@ -3,7 +3,7 @@
 
 pkgbase=python-pycontracts
 pkgname=(python-pycontracts python2-pycontracts)
-pkgver=1.8.2
+pkgver=1.8.3
 pkgrel=1
 pkgdesc='Declare constraints on function parameters and return values'
 arch=('any')
@@ -13,7 +13,7 @@
  'python-decorator' 'python2-decorator' 'python-six' 'python2-six')
 checkdepends=('python-nose' 'python2-nose')
 
source=("https://pypi.io/packages/source/P/PyContracts/PyContracts-$pkgver.tar.gz";)
-sha512sums=('3ab81218fdb487b0f2e80db92de8ace91832a2aaeb8703f0eab2928338d5d7bc71d55f585b942be8d0c1e04d3602f6d754a307aca6d9e758c6d1fe5a361fc18e')
+sha512sums=('470c093caaa1289da6f9bf40a3ea4e7b4099a3702a0941e398aaf0507a70630b64499b4f718bbb404ae36433433d534df4d0089dda9a5576895f9c2aff5b82fb')
 
 prepare() {
   cp -a PyContracts-$pkgver{,-py2}


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

2018-03-18 Thread Anatol Pomozov via arch-commits
Date: Sunday, March 18, 2018 @ 19:11:42
  Author: anatolik
Revision: 309090

upgpkg: tt-rss 1:17.4.r441.ge35a4673-1

Modified:
  tt-rss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 19:05:07 UTC (rev 309089)
+++ PKGBUILD2018-03-18 19:11:42 UTC (rev 309090)
@@ -6,7 +6,7 @@
 # Contributor: Erik Mank 
 
 pkgname=tt-rss
-pkgver=17.4.r180.g820873de
+pkgver=17.4.r441.ge35a4673
 pkgrel=1
 epoch=1
 pkgdesc='Web-based news feed (RSS/Atom) aggregator'
@@ -19,7 +19,7 @@
 'postgresql'
 'php-gd: for coloured feed badges')
 makedepends=('git')
-_commit=820873de9fe3a79aa6a7ac3e71ac62d71b55918b
+_commit=e35a46733fe48d2cd1e64bd7020531b0587f1bbe
 # periodic releases are over https://tt-rss.org/forum/viewtopic.php?f=10&t=3262
 source=(git+https://tt-rss.org/gitlab/fox/tt-rss.git#commit=$_commit
 service)


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

2018-03-18 Thread Anatol Pomozov via arch-commits
Date: Sunday, March 18, 2018 @ 19:12:09
  Author: anatolik
Revision: 309091

archrelease: copy trunk to testing-any

Added:
  tt-rss/repos/testing-any/
  tt-rss/repos/testing-any/PKGBUILD
(from rev 309090, tt-rss/trunk/PKGBUILD)
  tt-rss/repos/testing-any/service
(from rev 309090, tt-rss/trunk/service)

--+
 PKGBUILD |   53 +
 service  |   12 
 2 files changed, 65 insertions(+)

Copied: tt-rss/repos/testing-any/PKGBUILD (from rev 309090, 
tt-rss/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2018-03-18 19:12:09 UTC (rev 309091)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer:  Anatol Pomozov 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Clément Démoulins 
+# Contributor: David Rosenstrauch 
+# Contributor: Erik Mank 
+
+pkgname=tt-rss
+pkgver=17.4.r441.ge35a4673
+pkgrel=1
+epoch=1
+pkgdesc='Web-based news feed (RSS/Atom) aggregator'
+arch=(any)
+url='http://tt-rss.org'
+license=(GPL)
+backup=(etc/webapps/tt-rss/config.php)
+depends=(php)
+optdepends=('mysql'
+'postgresql'
+'php-gd: for coloured feed badges')
+makedepends=('git')
+_commit=e35a46733fe48d2cd1e64bd7020531b0587f1bbe
+# periodic releases are over https://tt-rss.org/forum/viewtopic.php?f=10&t=3262
+source=(git+https://tt-rss.org/gitlab/fox/tt-rss.git#commit=$_commit
+service)
+sha1sums=('SKIP'
+  'e3277cd1d717e7803cdc41a0275dcc7c188ef8db')
+
+pkgver() {
+  cd tt-rss
+  git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+package() {
+  cd tt-rss
+  _instdir="$pkgdir"/usr/share/webapps/$pkgname
+
+  install -d "$_instdir"
+  cp -ra * "$_instdir/"
+
+  install -Dm640 -g http config.php-dist 
"$pkgdir"/etc/webapps/tt-rss/config.php
+  ln -s /etc/webapps/tt-rss/config.php "$_instdir"/config.php
+
+  install -d "$pkgdir"/var/lib/tt-rss
+  mv "$_instdir"/{lock,feed-icons,cache} "$pkgdir"/var/lib/tt-rss
+  ln -s /var/lib/tt-rss/lock "$_instdir"/lock
+  ln -s /var/lib/tt-rss/feed-icons "$_instdir"/feed-icons
+  ln -s /var/lib/tt-rss/cache "$_instdir"/cache
+  chown -R 33:33 "$pkgdir"/var/lib/tt-rss
+  chmod -R 777 "$pkgdir"/var/lib/tt-rss/*
+
+  install -Dm644 "$srcdir"/service 
"$pkgdir"/usr/lib/systemd/system/tt-rss.service
+}

Copied: tt-rss/repos/testing-any/service (from rev 309090, tt-rss/trunk/service)
===
--- testing-any/service (rev 0)
+++ testing-any/service 2018-03-18 19:12:09 UTC (rev 309091)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Tiny Tiny RSS feeds update daemon
+After=network.target mysqld.service postgresql.service
+
+[Service]
+ExecStart=/usr/bin/php /usr/share/webapps/tt-rss/update.php --daemon
+User=http
+StandardOutput=null
+StandardError=syslog
+
+[Install]
+WantedBy=multi-user.target


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

2018-03-18 Thread Anatol Pomozov via arch-commits
Date: Sunday, March 18, 2018 @ 19:19:45
  Author: anatolik
Revision: 309092

archrelease: copy trunk to community-testing-any

Added:
  tt-rss/repos/community-testing-any/
  tt-rss/repos/community-testing-any/PKGBUILD
(from rev 309091, tt-rss/trunk/PKGBUILD)
  tt-rss/repos/community-testing-any/service
(from rev 309091, tt-rss/trunk/service)

--+
 PKGBUILD |   53 +
 service  |   12 
 2 files changed, 65 insertions(+)

Copied: tt-rss/repos/community-testing-any/PKGBUILD (from rev 309091, 
tt-rss/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2018-03-18 19:19:45 UTC (rev 309092)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer:  Anatol Pomozov 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Clément Démoulins 
+# Contributor: David Rosenstrauch 
+# Contributor: Erik Mank 
+
+pkgname=tt-rss
+pkgver=17.4.r441.ge35a4673
+pkgrel=1
+epoch=1
+pkgdesc='Web-based news feed (RSS/Atom) aggregator'
+arch=(any)
+url='http://tt-rss.org'
+license=(GPL)
+backup=(etc/webapps/tt-rss/config.php)
+depends=(php)
+optdepends=('mysql'
+'postgresql'
+'php-gd: for coloured feed badges')
+makedepends=('git')
+_commit=e35a46733fe48d2cd1e64bd7020531b0587f1bbe
+# periodic releases are over https://tt-rss.org/forum/viewtopic.php?f=10&t=3262
+source=(git+https://tt-rss.org/gitlab/fox/tt-rss.git#commit=$_commit
+service)
+sha1sums=('SKIP'
+  'e3277cd1d717e7803cdc41a0275dcc7c188ef8db')
+
+pkgver() {
+  cd tt-rss
+  git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+package() {
+  cd tt-rss
+  _instdir="$pkgdir"/usr/share/webapps/$pkgname
+
+  install -d "$_instdir"
+  cp -ra * "$_instdir/"
+
+  install -Dm640 -g http config.php-dist 
"$pkgdir"/etc/webapps/tt-rss/config.php
+  ln -s /etc/webapps/tt-rss/config.php "$_instdir"/config.php
+
+  install -d "$pkgdir"/var/lib/tt-rss
+  mv "$_instdir"/{lock,feed-icons,cache} "$pkgdir"/var/lib/tt-rss
+  ln -s /var/lib/tt-rss/lock "$_instdir"/lock
+  ln -s /var/lib/tt-rss/feed-icons "$_instdir"/feed-icons
+  ln -s /var/lib/tt-rss/cache "$_instdir"/cache
+  chown -R 33:33 "$pkgdir"/var/lib/tt-rss
+  chmod -R 777 "$pkgdir"/var/lib/tt-rss/*
+
+  install -Dm644 "$srcdir"/service 
"$pkgdir"/usr/lib/systemd/system/tt-rss.service
+}

Copied: tt-rss/repos/community-testing-any/service (from rev 309091, 
tt-rss/trunk/service)
===
--- community-testing-any/service   (rev 0)
+++ community-testing-any/service   2018-03-18 19:19:45 UTC (rev 309092)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Tiny Tiny RSS feeds update daemon
+After=network.target mysqld.service postgresql.service
+
+[Service]
+ExecStart=/usr/bin/php /usr/share/webapps/tt-rss/update.php --daemon
+User=http
+StandardOutput=null
+StandardError=syslog
+
+[Install]
+WantedBy=multi-user.target


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

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 19:21:53
  Author: arojas
Revision: 319592

add back signature

Modified:
  krita/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 19:03:11 UTC (rev 319591)
+++ PKGBUILD2018-03-18 19:21:53 UTC (rev 319592)
@@ -14,8 +14,9 @@
 "krita-plugin-gmic: G'MIC plugin" 'python-pyqt5: for the Python 
plugins')
 conflicts=(calligra-krita krita-l10n)
 replaces=(calligra-krita krita-l10n)
-source=("https://download.kde.org/stable/krita/$pkgver/$pkgname-$pkgver.tar.gz";)
 # {,.sig}
-sha256sums=('09c4765e602c7f76e988cef4fe278a43a17933c8fb57c108b4f7f73bf7315593')
+source=("https://download.kde.org/stable/krita/$pkgver/$pkgname-$pkgver.tar.gz"{,.sig})
+sha256sums=('09c4765e602c7f76e988cef4fe278a43a17933c8fb57c108b4f7f73bf7315593'
+'SKIP')
 validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD') # Boudewijn Rempt 

 
 prepare() {
@@ -25,7 +26,6 @@
 build() {
   cd build
   cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_LIBDIR=lib \
 -DBUILD_TESTING=OFF


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

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 19:23:51
  Author: arojas
Revision: 309093

Update to 0.28.1

Modified:
  cython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 19:19:45 UTC (rev 309092)
+++ PKGBUILD2018-03-18 19:23:51 UTC (rev 309093)
@@ -5,7 +5,7 @@
 
 pkgname=(cython cython2)
 pkgbase=cython
-pkgver=0.28
+pkgver=0.28.1
 pkgrel=1
 pkgdesc="C-Extensions for Python"
 arch=(x86_64)
@@ -13,7 +13,7 @@
 license=(APACHE)
 makedepends=(python-setuptools python2-setuptools)
 
source=($pkgbase-$pkgver.tar.gz::"https://github.com/cython/cython/archive/$pkgver.tar.gz";)
-sha256sums=('2d02344e94c746165800c3ba8bf63ca9075b605f07881a5faca0b243d25c6f8e')
+sha256sums=('f4303561823c5deb3d07c6edc085abf8a1150c3d2cddb14942e21ba9d1455522')
 
 prepare() {
   cp -r cython-$pkgver cython2-$pkgver


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

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 19:24:25
  Author: arojas
Revision: 309094

archrelease: copy trunk to community-x86_64

Added:
  cython/repos/community-x86_64/PKGBUILD
(from rev 309093, cython/trunk/PKGBUILD)
Deleted:
  cython/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 19:23:51 UTC (rev 309093)
+++ PKGBUILD2018-03-18 19:24:25 UTC (rev 309094)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Sergej Pupykin 
-# Contributor: Igor Scabini 
-
-pkgname=(cython cython2)
-pkgbase=cython
-pkgver=0.28
-pkgrel=1
-pkgdesc="C-Extensions for Python"
-arch=(x86_64)
-url="http://cython.org";
-license=(APACHE)
-makedepends=(python-setuptools python2-setuptools)
-source=($pkgbase-$pkgver.tar.gz::"https://github.com/cython/cython/archive/$pkgver.tar.gz";)
-sha256sums=('2d02344e94c746165800c3ba8bf63ca9075b605f07881a5faca0b243d25c6f8e')
-
-prepare() {
-  cp -r cython-$pkgver cython2-$pkgver
-  find cython2-$pkgver -name '*.py' | xargs sed -e 's|/usr/bin/env 
python|/usr/bin/env python2|' -e 's|/usr/bin/python|/usr/bin/python2|' -i
-}
-
-build() {
-  cd cython-$pkgver
-  python setup.py build
-
-  cd ../cython2-$pkgver
-  python2 setup.py build
-}
-
-package_cython() {
-  depends=(python python-setuptools)
-
-  cd cython-$pkgver
-  python setup.py install --root="$pkgdir" --skip-build
-
-  for f in cygdb cython cythonize; do
-mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}3
-ln -s ${f}3 "$pkgdir"/usr/bin/$f
-  done
-}
-
-package_cython2() {
-  depends=(python2 python2-setuptools)
-
-  cd cython2-$pkgver
-  python2 setup.py install --root="$pkgdir" --skip-build
-
-  for f in cygdb cython cythonize; do
-mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}2
-  done
-}

Copied: cython/repos/community-x86_64/PKGBUILD (from rev 309093, 
cython/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 19:24:25 UTC (rev 309094)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+# Contributor: Igor Scabini 
+
+pkgname=(cython cython2)
+pkgbase=cython
+pkgver=0.28.1
+pkgrel=1
+pkgdesc="C-Extensions for Python"
+arch=(x86_64)
+url="http://cython.org";
+license=(APACHE)
+makedepends=(python-setuptools python2-setuptools)
+source=($pkgbase-$pkgver.tar.gz::"https://github.com/cython/cython/archive/$pkgver.tar.gz";)
+sha256sums=('f4303561823c5deb3d07c6edc085abf8a1150c3d2cddb14942e21ba9d1455522')
+
+prepare() {
+  cp -r cython-$pkgver cython2-$pkgver
+  find cython2-$pkgver -name '*.py' | xargs sed -e 's|/usr/bin/env 
python|/usr/bin/env python2|' -e 's|/usr/bin/python|/usr/bin/python2|' -i
+}
+
+build() {
+  cd cython-$pkgver
+  python setup.py build
+
+  cd ../cython2-$pkgver
+  python2 setup.py build
+}
+
+package_cython() {
+  depends=(python python-setuptools)
+
+  cd cython-$pkgver
+  python setup.py install --root="$pkgdir" --skip-build
+
+  for f in cygdb cython cythonize; do
+mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}3
+ln -s ${f}3 "$pkgdir"/usr/bin/$f
+  done
+}
+
+package_cython2() {
+  depends=(python2 python2-setuptools)
+
+  cd cython2-$pkgver
+  python2 setup.py install --root="$pkgdir" --skip-build
+
+  for f in cygdb cython cythonize; do
+mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}2
+  done
+}


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

2018-03-18 Thread Christian Hesse via arch-commits
Date: Sunday, March 18, 2018 @ 19:27:40
  Author: eworm
Revision: 319593

upgpkg: dnsmasq 2.79-1

new upstream release

Modified:
  dnsmasq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 19:21:53 UTC (rev 319592)
+++ PKGBUILD2018-03-18 19:27:40 UTC (rev 319593)
@@ -5,8 +5,8 @@
 # Contributor: Tom Newsom 
 
 pkgname=dnsmasq
-pkgver=2.78
-pkgrel=2
+pkgver=2.79
+pkgrel=1
 pkgdesc="Lightweight, easy to configure DNS forwarder and DHCP server"
 url="http://www.thekelleys.org.uk/dnsmasq/doc.html";
 arch=('x86_64')
@@ -15,23 +15,15 @@
 backup=('etc/dnsmasq.conf')
 validpgpkeys=('D6EACBD6EE46B834248D111215CDDA6AE19135A2') # Simon Kelley 

 source=("http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.xz"{,.asc}
-'0001-DNSSEC-fix-for-wildcard-NSEC-records.patch'
 'dnsmasq-sysusers.conf'
 'dnsmasq.service')
-sha256sums=('89949f438c74b0c7543f06689c319484bd126cc4b1f8c745c742ab397681252b'
+sha256sums=('78ad74f5ca14fd85a8bac93f764cd9d60b27579e90eabd3687ca7b030e67861f'
 'SKIP'
-'2fe981f3eb947407fc48cc92509823d68416390137ddab3fe35e1dda454d85f0'
 '7f6ff6a709038ae580758f4b6a754451d7f7ce22957b88a36b97f7b643d3c2ab'
 '983a3c7a68ce114cf7b44f0d9c59b74c266647a9e5ac34c1d1d5161610bc57fe')
 
 _build_copts="-DHAVE_DNSSEC -DHAVE_DBUS -DHAVE_IDN -DHAVE_CONNTRACK"
 
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  patch -Np1 < "${srcdir}"/0001-DNSSEC-fix-for-wildcard-NSEC-records.patch
-}
-
 build() {
   cd "$pkgname-$pkgver"
 


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

2018-03-18 Thread Christian Hesse via arch-commits
Date: Sunday, March 18, 2018 @ 19:27:45
  Author: eworm
Revision: 319594

archrelease: copy trunk to testing-x86_64

Added:
  dnsmasq/repos/testing-x86_64/
  dnsmasq/repos/testing-x86_64/0001-DNSSEC-fix-for-wildcard-NSEC-records.patch
(from rev 319593, 
dnsmasq/trunk/0001-DNSSEC-fix-for-wildcard-NSEC-records.patch)
  dnsmasq/repos/testing-x86_64/PKGBUILD
(from rev 319593, dnsmasq/trunk/PKGBUILD)
  dnsmasq/repos/testing-x86_64/dnsmasq-sysusers.conf
(from rev 319593, dnsmasq/trunk/dnsmasq-sysusers.conf)
  dnsmasq/repos/testing-x86_64/dnsmasq.service
(from rev 319593, dnsmasq/trunk/dnsmasq.service)

-+
 0001-DNSSEC-fix-for-wildcard-NSEC-records.patch |  203 ++
 PKGBUILD|   60 ++
 dnsmasq-sysusers.conf   |1 
 dnsmasq.service |   14 +
 4 files changed, 278 insertions(+)

Copied: 
dnsmasq/repos/testing-x86_64/0001-DNSSEC-fix-for-wildcard-NSEC-records.patch 
(from rev 319593, dnsmasq/trunk/0001-DNSSEC-fix-for-wildcard-NSEC-records.patch)
===
--- testing-x86_64/0001-DNSSEC-fix-for-wildcard-NSEC-records.patch  
(rev 0)
+++ testing-x86_64/0001-DNSSEC-fix-for-wildcard-NSEC-records.patch  
2018-03-18 19:27:45 UTC (rev 319594)
@@ -0,0 +1,203 @@
+From 4fe6744a220eddd3f1749b40cac3dfc510787de6 Mon Sep 17 00:00:00 2001
+From: Simon Kelley 
+Date: Fri, 19 Jan 2018 12:26:08 +
+Subject: DNSSEC fix for wildcard NSEC records. CVE-2017-15107 applies.
+
+It's OK for NSEC records to be expanded from wildcards,
+but in that case, the proof of non-existence is only valid
+starting at the wildcard name, *. NOT the name expanded
+from the wildcard. Without this check it's possible for an
+attacker to craft an NSEC which wrongly proves non-existence
+in a domain which includes a wildcard for NSEC.
+---
+ src/dnssec.c | 117 ---
+ 2 files changed, 114 insertions(+), 15 deletions(-)
+
+diff --git a/src/dnssec.c b/src/dnssec.c
+index eb6c11c..a54a0b4 100644
+--- a/src/dnssec.c
 b/src/dnssec.c
+@@ -103,15 +103,17 @@ static void from_wire(char *name)
+ static int count_labels(char *name)
+ {
+   int i;
+-
++  char *p;
++  
+   if (*name == 0)
+ return 0;
+ 
+-  for (i = 0; *name; name++)
+-if (*name == '.')
++  for (p = name, i = 0; *p; p++)
++if (*p == '.')
+   i++;
+ 
+-  return i+1;
++  /* Don't count empty first label. */
++  return *name == '.' ? i : i+1;
+ }
+ 
+ /* Implement RFC1982 wrapped compare for 32-bit numbers */
+@@ -1094,8 +1096,8 @@ static int hostname_cmp(const char *a, const char *b)
+ }
+ }
+ 
+-static int prove_non_existence_nsec(struct dns_header *header, size_t plen, 
unsigned char **nsecs, int nsec_count,
+-  char *workspace1, char *workspace2, char 
*name, int type, int *nons)
++static int prove_non_existence_nsec(struct dns_header *header, size_t plen, 
unsigned char **nsecs, unsigned char **labels, int nsec_count,
++  char *workspace1_in, char *workspace2, char 
*name, int type, int *nons)
+ {
+   int i, rc, rdlen;
+   unsigned char *p, *psave;
+@@ -1108,6 +1110,9 @@ static int prove_non_existence_nsec(struct dns_header 
*header, size_t plen, unsi
+   /* Find NSEC record that proves name doesn't exist */
+   for (i = 0; i < nsec_count; i++)
+ {
++  char *workspace1 = workspace1_in;
++  int sig_labels, name_labels;
++
+   p = nsecs[i];
+   if (!extract_name(header, plen, &p, workspace1, 1, 10))
+   return 0;
+@@ -1116,7 +1121,27 @@ static int prove_non_existence_nsec(struct dns_header 
*header, size_t plen, unsi
+   psave = p;
+   if (!extract_name(header, plen, &p, workspace2, 1, 10))
+   return 0;
+-  
++
++  /* If NSEC comes from wildcard expansion, use original wildcard
++   as name for computation. */
++  sig_labels = *labels[i];
++  name_labels = count_labels(workspace1);
++
++  if (sig_labels < name_labels)
++  {
++int k;
++for (k = name_labels - sig_labels; k != 0; k--)
++  {
++while (*workspace1 != '.' && *workspace1 != 0)
++  workspace1++;
++if (k != 1 && *workspace1 == '.')
++  workspace1++;
++  }
++
++workspace1--;
++*workspace1 = '*';
++  }
++
+   rc = hostname_cmp(workspace1, name);
+   
+   if (rc == 0)
+@@ -1514,24 +1539,26 @@ static int prove_non_existence_nsec3(struct dns_header 
*header, size_t plen, uns
+ 
+ static int prove_non_existence(struct dns_header *header, size_t plen, char 
*keyname, char *name, int qtype, int qclass, char *wildname, int *nons)
+ {
+-  static unsigned char **nsecset = NULL;
+-  static int nsecset_sz = 0;
++  static unsigned char **nsecset = NULL, **rrsig

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

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 19:34:48
  Author: arojas
Revision: 319595

Update to 7.0.7.27

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 19:27:45 UTC (rev 319594)
+++ PKGBUILD2018-03-18 19:34:48 UTC (rev 319595)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=(libmagick imagemagick imagemagick-doc)
-pkgver=7.0.7.26
+pkgver=7.0.7.27
 pkgrel=1
 pkgdesc="An image viewing/manipulation program"
 url="https://www.imagemagick.org/";
@@ -17,7 +17,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('229025088479ac8c979c4fd1ac21d20976f8135b9e03c47f78c7ffb7108ca7bf'
+sha256sums=('543776f09d69e3ca29b1b83a9c0223185ba26bec673593840b4d7face6ea253b'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae


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

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 19:35:24
  Author: arojas
Revision: 319596

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 319595, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/arch-fonts.diff
(from rev 319595, imagemagick/trunk/arch-fonts.diff)
Deleted:
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/arch-fonts.diff

-+
 PKGBUILD|  282 +++---
 arch-fonts.diff |  214 
 2 files changed, 248 insertions(+), 248 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 19:34:48 UTC (rev 319595)
+++ PKGBUILD2018-03-18 19:35:24 UTC (rev 319596)
@@ -1,141 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick
-pkgname=(libmagick imagemagick imagemagick-doc)
-pkgver=7.0.7.26
-pkgrel=1
-pkgdesc="An image viewing/manipulation program"
-url="https://www.imagemagick.org/";
-arch=(x86_64)
-license=(custom)
-depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp
- chrpath ocl-icd glu ghostpcl ghostxps)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
-arch-fonts.diff)
-sha256sums=('229025088479ac8c979c4fd1ac21d20976f8135b9e03c47f78c7ffb7108ca7bf'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-shopt -s extglob
-
-prepare() {
-  mkdir -p binpkg/usr/lib/pkgconfig {binpkg,docpkg}/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -Np1 -i ../arch-fonts.diff
-
-  # Don't run auto(re)conf; assumes use of git
-}
-
-build() {
-  cd $_tarname
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---with-gslib \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-djvu \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc \
---without-jbig
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  make check
-)
-
-package_libmagick() {
-  pkgdesc+=" (library)"
-  optdepends=('ghostscript: PS/PDF support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'pango: Text rendering')
-  
backup=(etc/$_relname/{coder,colors,delegates,log,magic,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
-  options=('!emptydirs' libtool)
-
-  cd $_tarname
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/etc/$_relname/type-{apple,urw-base35,windows}.xml
-  rm "$pkgdir"/usr/lib/*.la
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-
-# Split 'imagemagick'
-  cd ../binpkg
-  mv "$pkgdir/usr/bin" usr/
-  mv "$pkgdir/usr/lib/perl5" usr/lib/
-  mv "$pkgdir/usr/share/man" usr/share/
-
-# Split docs
-  mv "$pkgdir/usr/share/doc" "$srcdir/docpkg/usr/share/"
-}
-
-package_imagemagick() {
-  depends=("libmagick=$pkgver-$pkgrel")
-  optdepends=('imagemagick-doc: manual and API docs')
-  options=('!emptydirs')
-
-  mv binpkg/* "$pkgdir"
-
-  find "$pkgdir/usr/lib/perl5" -name '*.so' -exec chrpath -d {} +
-
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-_perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-_perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-
-  cd $_tarname
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-}
-
-package_imagemagick-doc() {
-  pkgdesc+=" (manual and API docs)"
-  depends=()
-
-  mv docpkg/* "$pkgdir"
-
-  cd $_tarname
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-}

Copied: imagem

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

2018-03-18 Thread Antonio Rojas via arch-commits
Date: Sunday, March 18, 2018 @ 19:44:04
  Author: arojas
Revision: 319597

Update to 6.9.9.39

Modified:
  imagemagick6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-18 19:35:24 UTC (rev 319596)
+++ PKGBUILD2018-03-18 19:44:04 UTC (rev 319597)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick6
 pkgname=(libmagick6 imagemagick6)
-pkgver=6.9.9.38
+pkgver=6.9.9.39
 pkgrel=1
 pkgdesc="An image viewing/manipulation program (version 6)"
 url="https://legacy.imagemagick.org/";
@@ -17,7 +17,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('38633f004752b12edbf3e149e7c1b18224d51699a645e5d6c4f214474da737e0'
+sha256sums=('56130c16790d8d38c3a1888cc07074d5b50ffb718243e0c56e4c88839edbf931'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae


  1   2   >