[arch-commits] Commit in (texlive-genericextra texlive-htmlxml texlive-plainextra)

2017-12-02 Thread Rémy Oudompheng via arch-commits
Date: Sunday, December 3, 2017 @ 07:24:24
  Author: remy
Revision: 311526

Remove deleted TeXLive packages

They were merged into others for TeXLive 2017 release

Deleted:
  texlive-genericextra/
  texlive-htmlxml/
  texlive-plainextra/


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

2017-12-02 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 03:19:37
  Author: felixonmars
Revision: 271967

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 271966, postgrest/trunk/PKGBUILD)

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 271966, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-03 03:19:37 UTC (rev 271967)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=0.4.3.0
+pkgrel=8
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hasql' 'haskell-hasql-pool' 'haskell-protolude' 
'haskell-text'
+ 'haskell-warp' 'haskell-base64-bytestring' 'haskell-retry' 
'haskell-aeson'
+ 'haskell-ansi-wl-pprint' 'haskell-case-insensitive' 'haskell-cassava'
+ 'haskell-configurator-ng' 'haskell-contravariant' 'haskell-either'
+ 'haskell-hasql-transaction' 'haskell-heredoc' 'haskell-http' 
'haskell-http-types'
+ 'haskell-insert-ordered-containers' 
'haskell-interpolatedstring-perl6' 'haskell-jose0.5'
+ 'haskell-lens' 'haskell-lens-aeson' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-parsec' 'haskell-ranged-sets' 'haskell-regex-tdfa' 
'haskell-safe'
+ 'haskell-scientific' 'haskell-swagger2' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-wai' 'haskell-wai-cors' 'haskell-wai-extra' 
'haskell-wai-middleware-static'
+ 'haskell-cookie')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-hjsonschema' 
'haskell-hjsonpointer')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;)
+sha512sums=('e07d7e3aa0a830c5e8be8c2ed31236e0b12b97b4a5eaa1a3034bffc395cf7722150700b66e278faba24995435c85cb0eb846c40479ce8224ffe82c25d658')
+
+prepare() {
+sed -i 's/==/>=/' $pkgname-$pkgver/$pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-CI
+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
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createdb postgrest_test
+
+# TODO: it shouldn't take this long to finish
+# POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test
+
+# Disabled: uses stack
+# test/io-tests.sh
+
+pifpaf_stop
+}
+
+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 postgrest/trunk (PKGBUILD)

2017-12-02 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 03:19:12
  Author: felixonmars
Revision: 271966

upgpkg: postgrest 0.4.3.0-8

rebuild with wai-cors,0.2.6

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 03:16:35 UTC (rev 271965)
+++ PKGBUILD2017-12-03 03:19:12 UTC (rev 271966)
@@ -4,7 +4,7 @@
 
 pkgname=postgrest
 pkgver=0.4.3.0
-pkgrel=7
+pkgrel=8
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2017-12-02 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 03:16:35
  Author: felixonmars
Revision: 271965

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-cors/repos/community-staging-x86_64/
  haskell-wai-cors/repos/community-staging-x86_64/PKGBUILD
(from rev 271964, haskell-wai-cors/trunk/PKGBUILD)

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

Copied: haskell-wai-cors/repos/community-staging-x86_64/PKGBUILD (from rev 
271964, haskell-wai-cors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-03 03:16:35 UTC (rev 271965)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-cors
+pkgname=haskell-wai-cors
+pkgver=0.2.6
+pkgrel=1
+pkgdesc="CORS for WAI"
+url="https://github.com/larskuhtz/wai-cors;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-attoparsec" "haskell-base-unicode-symbols" 
"haskell-case-insensitive"
+ "haskell-http-types" "haskell-wai" "haskell-mtl")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('aa1454096e6243edd48cf52d2e9ad27f174fe934b2256c58bec84c6da2de899e523ff70af783e458fe5f95d51371d2111d8f979cc89a0ecbf646b23a74ae6617')
+
+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-wai-cors/trunk (PKGBUILD)

2017-12-02 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 03:16:14
  Author: felixonmars
Revision: 271964

upgpkg: haskell-wai-cors 0.2.6-1

rebuild with wai-cors,0.2.6

Modified:
  haskell-wai-cors/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 03:15:06 UTC (rev 271963)
+++ PKGBUILD2017-12-03 03:16:14 UTC (rev 271964)
@@ -4,8 +4,8 @@
 
 _hkgname=wai-cors
 pkgname=haskell-wai-cors
-pkgver=0.2.5
-pkgrel=7
+pkgver=0.2.6
+pkgrel=1
 pkgdesc="CORS for WAI"
 url="https://github.com/larskuhtz/wai-cors;
 license=("MIT")
@@ -14,7 +14,7 @@
  "haskell-http-types" "haskell-wai" "haskell-mtl")
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('631bc8f9590ff52b06dbfd684a5f378059cd90ecace6ffa8ed27d9d708e352d0dc1e2b07b108f6a8ff0d13b1301fc7f40d117ec97ed3ef7a1c71459a3325ba98')
+sha512sums=('aa1454096e6243edd48cf52d2e9ad27f174fe934b2256c58bec84c6da2de899e523ff70af783e458fe5f95d51371d2111d8f979cc89a0ecbf646b23a74ae6617')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2017-12-02 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 03:15:06
  Author: felixonmars
Revision: 271963

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 03:14:39 UTC (rev 271962)
+++ PKGBUILD2017-12-03 03:15:06 UTC (rev 271963)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.39.0
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
-  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('0e7ef55cedde24296307cc97df068574c7bd26a5f416812f147d2ed374ff437881dfc236f49171b3601da9a169ba28ed8f8a3b7d0dd2b9b0f25b6f98abe2cb89')
-
-prepare() {
-  # Make tests faster
-  sed -i 's/ -n 2$/ -n 16/' hypothesis-python-$pkgver/tox.ini
-
-  cp -a hypothesis-python-$pkgver{,-py2}
-
-  rm -r hypothesis-python-$pkgver/tests/py2
-  rm -r hypothesis-python-$pkgver-py2/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  mv tests/django ../
-  python2 setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 271962, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 03:15:06 UTC (rev 271963)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.40.0
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
+  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
+  'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)

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

2017-12-02 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 03:14:39
  Author: felixonmars
Revision: 271962

upgpkg: python-hypothesis 3.40.0-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 03:11:04 UTC (rev 271961)
+++ PKGBUILD2017-12-03 03:14:39 UTC (rev 271962)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.39.0
+pkgver=3.40.0
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('0e7ef55cedde24296307cc97df068574c7bd26a5f416812f147d2ed374ff437881dfc236f49171b3601da9a169ba28ed8f8a3b7d0dd2b9b0f25b6f98abe2cb89')
+sha512sums=('7ec53fd8daddeaf98bc1cc2492a38022c024d1b463cafdb21de3e4ff51afb88001927bee9e4ea4d02b62e368da8f850d74e6e98f98f55f56cdf994b9aed09806')
 
 prepare() {
   # Make tests faster


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

2017-12-02 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 03:11:04
  Author: felixonmars
Revision: 271961

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 03:10:39 UTC (rev 271960)
+++ PKGBUILD2017-12-03 03:11:04 UTC (rev 271961)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=criterion
-pkgname=haskell-criterion
-pkgver=1.2.4.0
-pkgrel=2
-pkgdesc="Robust, reliable performance measurement and analysis"
-url="http://www.serpentine.com/criterion;
-license=("custom:BSD3")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 'haskell-cassava' 
'haskell-code-page'
- 'haskell-exceptions' 'haskell-glob' 'haskell-js-flot' 
'haskell-js-jquery'
- 'haskell-microstache' 'haskell-mtl' 'haskell-mwc-random' 
'haskell-optparse-applicative'
- 'haskell-parsec' 'haskell-semigroups' 'haskell-statistics' 
'haskell-text'
- 'haskell-transformers-compat' 'haskell-vector' 
'haskell-vector-algorithms')
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('162db865396b6a1047bb18aafbd169de10d49b9e6a70619de74b233e05adce79ffe0e5e40e21413764527488c3550a0a46b0f87feaa7a10883877b0985af4c51')
-
-build() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
--f-fast
-runhaskell Setup build
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-package() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
-
-install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
-install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
-runhaskell Setup copy --destdir="${pkgdir}"
-install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
-}

Copied: haskell-criterion/repos/community-x86_64/PKGBUILD (from rev 271960, 
haskell-criterion/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 03:11:04 UTC (rev 271961)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=criterion
+pkgname=haskell-criterion
+pkgver=1.2.5.0
+pkgrel=1
+pkgdesc="Robust, reliable performance measurement and analysis"
+url="http://www.serpentine.com/criterion;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 'haskell-cassava' 
'haskell-code-page'
+ 'haskell-exceptions' 'haskell-glob' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-microstache' 'haskell-mtl' 'haskell-mwc-random' 
'haskell-optparse-applicative'
+ 'haskell-parsec' 'haskell-semigroups' 'haskell-statistics' 
'haskell-text'
+ 'haskell-transformers-compat' 'haskell-vector' 
'haskell-vector-algorithms')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('6a65d411ebd05b92ccb401ae0cd3835541a83b1f367fed5197e45b680af8e6accc5e6f4e70f9d931ee7567dc1f697a8b3993da7059b8060730728b9d71cae1a1')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-fast -f-embed-data-files
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 

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

2017-12-02 Thread Felix Yan via arch-commits
Date: Sunday, December 3, 2017 @ 03:10:39
  Author: felixonmars
Revision: 271960

upgpkg: haskell-criterion 1.2.5.0-1

Modified:
  haskell-criterion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 03:01:02 UTC (rev 271959)
+++ PKGBUILD2017-12-03 03:10:39 UTC (rev 271960)
@@ -4,8 +4,8 @@
 
 _hkgname=criterion
 pkgname=haskell-criterion
-pkgver=1.2.4.0
-pkgrel=2
+pkgver=1.2.5.0
+pkgrel=1
 pkgdesc="Robust, reliable performance measurement and analysis"
 url="http://www.serpentine.com/criterion;
 license=("custom:BSD3")
@@ -17,7 +17,7 @@
  'haskell-transformers-compat' 'haskell-vector' 
'haskell-vector-algorithms')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('162db865396b6a1047bb18aafbd169de10d49b9e6a70619de74b233e05adce79ffe0e5e40e21413764527488c3550a0a46b0f87feaa7a10883877b0985af4c51')
+sha512sums=('6a65d411ebd05b92ccb401ae0cd3835541a83b1f367fed5197e45b680af8e6accc5e6f4e70f9d931ee7567dc1f697a8b3993da7059b8060730728b9d71cae1a1')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
@@ -25,7 +25,7 @@
 runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
 --prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
 --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
--f-fast
+-f-fast -f-embed-data-files
 runhaskell Setup build
 runhaskell Setup register --gen-script
 runhaskell Setup unregister --gen-script


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

2017-12-02 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 03:01:02
  Author: dvzrv
Revision: 271959

archrelease: copy trunk to community-testing-x86_64

Added:
  g2reverb/repos/community-testing-x86_64/
  g2reverb/repos/community-testing-x86_64/PKGBUILD
(from rev 271958, g2reverb/trunk/PKGBUILD)

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

Copied: g2reverb/repos/community-testing-x86_64/PKGBUILD (from rev 271958, 
g2reverb/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-03 03:01:02 UTC (rev 271959)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+
+pkgname=g2reverb
+pkgver=0.7.1
+pkgrel=3
+pkgdesc="LADSPA stereo reverb plugin based on greverb"
+arch=('x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/;
+license=('GPL2')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=("${url}../downloads/${pkgname}-${pkgver}.tar.bz2")
+sha512sums=('ff6f8de5f41e031e0841acb0e60a0ee9c7be9b7c4375ccda4c0f406b4e789ab84e2b2d52c31ec1bf2be75309a2068d5a167c94568346c7251df9c513b4c6c189')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+
+  # plugin
+  install -Dm755 "${pkgname}.so" "${pkgdir}/usr/lib/ladspa/${pkgname}.so"
+  install -Dm644 AUTHORS "${pkgdir}/usr/share/doc/${pkgname}/AUTHORS"
+  install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
+}


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

2017-12-02 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 03:00:52
  Author: dvzrv
Revision: 271958

upgpkg: g2reverb 0.7.1-3

Updating maintainer. Switching to correct license (GPL2). Switching to 
sha512sums. Adding various docs. Minor fixes.

Modified:
  g2reverb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 02:43:25 UTC (rev 271957)
+++ PKGBUILD2017-12-03 03:00:52 UTC (rev 271958)
@@ -1,27 +1,29 @@
 # $Id$
-# Maintainer : speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 
 pkgname=g2reverb
 pkgver=0.7.1
-pkgrel=2
+pkgrel=3
 pkgdesc="LADSPA stereo reverb plugin based on greverb"
 arch=('x86_64')
 url="http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/;
-license=('GPL')
+license=('GPL2')
 groups=('ladspa-plugins')
 depends=('ladspa')
-source=("${url}../downloads/$pkgname-$pkgver.tar.bz2")
-md5sums=('072c2af1f0ed526be432ede7e7a529ae')
+source=("${url}../downloads/${pkgname}-${pkgver}.tar.bz2")
+sha512sums=('ff6f8de5f41e031e0841acb0e60a0ee9c7be9b7c4375ccda4c0f406b4e789ab84e2b2d52c31ec1bf2be75309a2068d5a167c94568346c7251df9c513b4c6c189')
 
 build() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
   make
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
 
   # plugin
-  install -Dm755 $pkgname.so \
-"$pkgdir/usr/lib/ladspa/$pkgname.so"
+  install -Dm755 "${pkgname}.so" "${pkgdir}/usr/lib/ladspa/${pkgname}.so"
+  install -Dm644 AUTHORS "${pkgdir}/usr/share/doc/${pkgname}/AUTHORS"
+  install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
 }


[arch-commits] Commit in fox-devel/repos/community-testing-x86_64 (PKGBUILD PKGBUILD)

2017-12-02 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 02:43:25
  Author: dvzrv
Revision: 271957

archrelease: copy trunk to community-testing-x86_64

Added:
  fox-devel/repos/community-testing-x86_64/PKGBUILD
(from rev 271956, fox-devel/trunk/PKGBUILD)
Deleted:
  fox-devel/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-03 02:38:44 UTC (rev 271956)
+++ PKGBUILD2017-12-03 02:43:25 UTC (rev 271957)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: Dany Martineau 
-
-pkgname=fox-devel
-pkgver=1.7.61
-pkgrel=1
-pkgdesc="Free Objects for X: GUI Toolkit for C++, development version."
-arch=('x86_64')
-url="http://www.fox-toolkit.org/;
-license=('LGPL' 'custom')
-depends=('glu' 'libsm' 'libtiff' 'libxcursor' 'libxft' 'libxi' 'libxrandr')
-makedepends=('mesa')
-provides=("fox=${pkgver}")
-source=("${url/www/ftp}pub/fox-${pkgver}.tar.gz")
-sha512sums=('d7e02b881818682df19a4c60b48d9d58fc50dc97409e75d2eac5556c56ad996613a16d63804042e4fdd76b5d0d38cfc538e3ca6fab464968da8d4d71ec46aff1')
-
-build() {
-  cd "fox-${pkgver}"
-  ./configure   --prefix=/usr \
---enable-static=no \
---enable-release \
---with-xft=yes \
---with-opengl=yes \
---with-xim \
---with-xshm \
---with-shape \
---with-xcursor \
---with-xrender \
---with-xrandr \
---with-xfixes \
---with-xinput
-  make
-}
-
-package() {
-  cd "fox-${pkgver}"
-  make DESTDIR="${pkgdir}/" install
-
-  # license
-  install -Dm644 LICENSE_ADDENDUM \
-  "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  # rename files to prevent conflicts with fox
-  for _binary in `find "${pkgdir}"/usr/bin -type f`; do
-mv ${_binary} "${_binary}-devel"
-  done;
-  for _man in `find "${pkgdir}"/usr/share/man -type f`; do
-mv ${_man} "$(dirname ${_man})/$(basename ${_man})-devel.1"
-  done;
-}

Copied: fox-devel/repos/community-testing-x86_64/PKGBUILD (from rev 271956, 
fox-devel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-03 02:43:25 UTC (rev 271957)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: Dany Martineau 
+
+pkgname=fox-devel
+pkgver=1.7.61
+pkgrel=2
+pkgdesc="Free Objects for X: GUI Toolkit for C++, development version."
+arch=('x86_64')
+url="http://www.fox-toolkit.org/;
+license=('LGPL' 'custom')
+depends=('glu' 'libsm' 'libtiff' 'libxcursor' 'libxft' 'libxi' 'libxrandr')
+makedepends=('mesa')
+provides=("fox=${pkgver}")
+source=("${url/www/ftp}pub/fox-${pkgver}.tar.gz")
+sha512sums=('d7e02b881818682df19a4c60b48d9d58fc50dc97409e75d2eac5556c56ad996613a16d63804042e4fdd76b5d0d38cfc538e3ca6fab464968da8d4d71ec46aff1')
+
+build() {
+  cd "fox-${pkgver}"
+  ./configure   --prefix=/usr \
+--enable-static=no \
+--enable-release \
+--with-xft=yes \
+--with-opengl=yes \
+--with-xim \
+--with-xshm \
+--with-shape \
+--with-xcursor \
+--with-xrender \
+--with-xrandr \
+--with-xfixes \
+--with-xinput
+  make
+}
+
+package() {
+  cd "fox-${pkgver}"
+  make DESTDIR="${pkgdir}/" install
+
+  # license
+  install -Dm644 LICENSE_ADDENDUM \
+  "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  # rename files to prevent conflicts with fox
+  for _binary in `find "${pkgdir}"/usr/bin -type f`; do
+mv ${_binary} "${_binary}-devel"
+  done;
+  for _man in `find "${pkgdir}"/usr/share/man -type f`; do
+mv ${_man} "$(dirname ${_man})/$(basename ${_man})-devel.1"
+  done;
+}


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

2017-12-02 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 02:38:44
  Author: dvzrv
Revision: 271956

upgpkg: fox-devel 1.7.61-2

Updating maintainer. Switching to sha512sums. Minor fixes.

Modified:
  fox-devel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 02:36:13 UTC (rev 271955)
+++ PKGBUILD2017-12-03 02:38:44 UTC (rev 271956)
@@ -5,7 +5,7 @@
 
 pkgname=fox-devel
 pkgver=1.7.61
-pkgrel=1
+pkgrel=2
 pkgdesc="Free Objects for X: GUI Toolkit for C++, development version."
 arch=('x86_64')
 url="http://www.fox-toolkit.org/;


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

2017-12-02 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 02:36:02
  Author: dvzrv
Revision: 271954

upgpkg: fox-devel 1.7.61-1

Updating maintainer. Switching to sha512sums. Minor fixes.

Modified:
  fox-devel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 02:00:08 UTC (rev 271953)
+++ PKGBUILD2017-12-03 02:36:02 UTC (rev 271954)
@@ -1,5 +1,6 @@
 # $Id$
-# Maintainer : speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 # Contributor: Dany Martineau 
 
 pkgname=fox-devel
@@ -11,12 +12,12 @@
 license=('LGPL' 'custom')
 depends=('glu' 'libsm' 'libtiff' 'libxcursor' 'libxft' 'libxi' 'libxrandr')
 makedepends=('mesa')
-provides=("fox=$pkgver")
-source=("${url/www/ftp}pub/fox-$pkgver.tar.gz")
-sha256sums=('a4778167bf4073ca68d2db24dcebac7e6a9af0c6567ddccc6379d085d053ce48')
+provides=("fox=${pkgver}")
+source=("${url/www/ftp}pub/fox-${pkgver}.tar.gz")
+sha512sums=('d7e02b881818682df19a4c60b48d9d58fc50dc97409e75d2eac5556c56ad996613a16d63804042e4fdd76b5d0d38cfc538e3ca6fab464968da8d4d71ec46aff1')
 
 build() {
-  cd fox-$pkgver
+  cd "fox-${pkgver}"
   ./configure   --prefix=/usr \
 --enable-static=no \
 --enable-release \
@@ -34,17 +35,18 @@
 }
 
 package() {
-  cd fox-$pkgver
-  make DESTDIR="$pkgdir/" install
+  cd "fox-${pkgver}"
+  make DESTDIR="${pkgdir}/" install
 
   # license
-  install -Dm644 LICENSE_ADDENDUM "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 LICENSE_ADDENDUM \
+  "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 
-  # rename apps to prevent conflicts with fox
-  for _f in `find "$pkgdir"/usr/bin -type f`; do
-mv $_f $_f-1.7
+  # rename files to prevent conflicts with fox
+  for _binary in `find "${pkgdir}"/usr/bin -type f`; do
+mv ${_binary} "${_binary}-devel"
   done;
-  for _f in `find "$pkgdir"/usr/share/man -type f`; do
-mv $_f `dirname $_f`/`basename $_f .1`-1.7.1
+  for _man in `find "${pkgdir}"/usr/share/man -type f`; do
+mv ${_man} "$(dirname ${_man})/$(basename ${_man})-devel.1"
   done;
 }


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

2017-12-02 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 02:36:13
  Author: dvzrv
Revision: 271955

archrelease: copy trunk to community-testing-x86_64

Added:
  fox-devel/repos/community-testing-x86_64/
  fox-devel/repos/community-testing-x86_64/PKGBUILD
(from rev 271954, fox-devel/trunk/PKGBUILD)

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

Copied: fox-devel/repos/community-testing-x86_64/PKGBUILD (from rev 271954, 
fox-devel/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-03 02:36:13 UTC (rev 271955)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: Dany Martineau 
+
+pkgname=fox-devel
+pkgver=1.7.61
+pkgrel=1
+pkgdesc="Free Objects for X: GUI Toolkit for C++, development version."
+arch=('x86_64')
+url="http://www.fox-toolkit.org/;
+license=('LGPL' 'custom')
+depends=('glu' 'libsm' 'libtiff' 'libxcursor' 'libxft' 'libxi' 'libxrandr')
+makedepends=('mesa')
+provides=("fox=${pkgver}")
+source=("${url/www/ftp}pub/fox-${pkgver}.tar.gz")
+sha512sums=('d7e02b881818682df19a4c60b48d9d58fc50dc97409e75d2eac5556c56ad996613a16d63804042e4fdd76b5d0d38cfc538e3ca6fab464968da8d4d71ec46aff1')
+
+build() {
+  cd "fox-${pkgver}"
+  ./configure   --prefix=/usr \
+--enable-static=no \
+--enable-release \
+--with-xft=yes \
+--with-opengl=yes \
+--with-xim \
+--with-xshm \
+--with-shape \
+--with-xcursor \
+--with-xrender \
+--with-xrandr \
+--with-xfixes \
+--with-xinput
+  make
+}
+
+package() {
+  cd "fox-${pkgver}"
+  make DESTDIR="${pkgdir}/" install
+
+  # license
+  install -Dm644 LICENSE_ADDENDUM \
+  "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  # rename files to prevent conflicts with fox
+  for _binary in `find "${pkgdir}"/usr/bin -type f`; do
+mv ${_binary} "${_binary}-devel"
+  done;
+  for _man in `find "${pkgdir}"/usr/share/man -type f`; do
+mv ${_man} "$(dirname ${_man})/$(basename ${_man})-devel.1"
+  done;
+}


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

2017-12-02 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 02:00:08
  Author: dvzrv
Revision: 271953

archrelease: copy trunk to community-testing-x86_64

Added:
  fil-plugins/repos/community-testing-x86_64/
  fil-plugins/repos/community-testing-x86_64/PKGBUILD
(from rev 271952, fil-plugins/trunk/PKGBUILD)

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

Copied: fil-plugins/repos/community-testing-x86_64/PKGBUILD (from rev 271952, 
fil-plugins/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-03 02:00:08 UTC (rev 271953)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+
+pkgname=fil-plugins
+pkgver=0.3.0
+pkgrel=3
+pkgdesc="LADSPA four-band parametric equaliser plugins"
+arch=('x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/;
+license=('GPL2')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=("${url}../downloads/FIL-plugins-$pkgver.tar.bz2")
+sha512sums=('9054d2bdbceb2a55d7772958f3bdcc03fb1bd15109de931bee07f3ab55f437c4076c5a740187252a406142c9438febe269c5b25364eddab3191de75ca56a81b1')
+
+build() {
+  cd "FIL-plugins-${pkgver}"
+  make
+}
+
+package() {
+  cd "FIL-plugins-${pkgver}"
+
+  # plugin
+  install -Dm755 filters.so "${pkgdir}/usr/lib/ladspa/filters.so"
+  install -Dm755 AUTHORS "${pkgdir}/usr/share/doc/${pkgname}/AUTHORS"
+  install -Dm755 README "${pkgdir}/usr/share/doc/${pkgname}/README"
+}


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

2017-12-02 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 01:59:59
  Author: dvzrv
Revision: 271952

upgpkg: fil-plugins 0.3.0-3

Updating maintainer. Switching to correct license (GPL2). Switching to 
sha512sums.
Installing various docs. Minor fixes.

Modified:
  fil-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 01:47:50 UTC (rev 271951)
+++ PKGBUILD2017-12-03 01:59:59 UTC (rev 271952)
@@ -1,27 +1,29 @@
 # $Id$
-# Maintainer : speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 
 pkgname=fil-plugins
 pkgver=0.3.0
-pkgrel=2
+pkgrel=3
 pkgdesc="LADSPA four-band parametric equaliser plugins"
 arch=('x86_64')
 url="http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/;
-license=('GPL')
+license=('GPL2')
 groups=('ladspa-plugins')
 depends=('ladspa')
 source=("${url}../downloads/FIL-plugins-$pkgver.tar.bz2")
-md5sums=('39f34be516752a9740a65547e1128124')
+sha512sums=('9054d2bdbceb2a55d7772958f3bdcc03fb1bd15109de931bee07f3ab55f437c4076c5a740187252a406142c9438febe269c5b25364eddab3191de75ca56a81b1')
 
 build() {
-  cd "$srcdir/FIL-plugins-$pkgver"
+  cd "FIL-plugins-${pkgver}"
   make
 }
 
 package() {
-  cd "$srcdir/FIL-plugins-$pkgver"
+  cd "FIL-plugins-${pkgver}"
 
   # plugin
-  install -Dm755 filters.so \
-"$pkgdir/usr/lib/ladspa/filters.so"
+  install -Dm755 filters.so "${pkgdir}/usr/lib/ladspa/filters.so"
+  install -Dm755 AUTHORS "${pkgdir}/usr/share/doc/${pkgname}/AUTHORS"
+  install -Dm755 README "${pkgdir}/usr/share/doc/${pkgname}/README"
 }


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

2017-12-02 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 01:47:36
  Author: dvzrv
Revision: 271950

upgpkg: dssi-vst 0.9.2-6

Updating maintainer. Switching to sha512sums. Retabbing.
Removing (now) useless CARCH check. Minor fixes.

Modified:
  dssi-vst/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 00:47:31 UTC (rev 271949)
+++ PKGBUILD2017-12-03 01:47:36 UTC (rev 271950)
@@ -1,46 +1,45 @@
 # $Id$
-# Maintainer : speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 # Contributor: Ray Rashif 
 
 pkgname=dssi-vst
 pkgver=0.9.2
-pkgrel=5
+pkgrel=6
 pkgdesc="DSSI adapter/wrapper for win32 VST plug-ins"
 arch=('x86_64')
 url="http://www.breakfastquay.com/dssi-vst/;
-license=('GPL')
+license=('GPL2')
 depends=('wine' 'jack' 'liblo')
 makedepends=('dssi' 'ladspa')
-source=("http://code.breakfastquay.com/attachments/download/10/$pkgname-$pkgver.tar.bz2;
-   "$pkgname-winexec.patch")
-md5sums=('5c569200571de76dac18be4eb6fbd9c8'
- '3e445482c8c5302de43be806f0c7506f')
+source=("http://code.breakfastquay.com/attachments/download/10/${pkgname}-${pkgver}.tar.bz2;
+  "$pkgname-winexec.patch")
+sha512sums=('647faa1f39dd6ffb13a23f23d5b150afa3fa20a4cb7c28fed8e71ff9b835e84f5410b24bf3b8c65fbdc147667e086cc165469f68da0132fa7a9c06b6ca17561f'
+
'2f4474554fec716a63ff7a54c06872aad79eda100df74b108afbcc7307116d6b9159c270d84f14112e5c52bbe543c18bcd455fc6022cf6266ffea086baf602d8')
 
 prepare() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
 
   # fix executable extension issue
-  patch -p1 -i ../$pkgname-winexec.patch
+  patch -p1 -i "${srcdir}/${pkgname}-winexec.patch"
 
   # use CXXFLAGS in build
   sed -i "/m32/! s/CXXFLAGS)/& $CXXFLAGS/" Makefile
 
-  # [x86_64] use /usr/lib32/dssi
-  if [[ $CARCH = x86_64 ]]; then
-sed -i '/\/dssi-vst/s|DSSIDIR|&32|' Makefile
-sed -i '/DSSI_PATH/s|\(/usr/lib\)\(/dssi\)|&:\132\2|' remotevstclient.cpp
-  fi
+  # /usr/lib32/dssi
+  sed -i '/\/dssi-vst/s|DSSIDIR|&32|' Makefile
+  sed -i '/DSSI_PATH/s|\(/usr/lib\)\(/dssi\)|&:\132\2|' remotevstclient.cpp
 }
 
 build() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
   make
 }
 
 package() {
-  cd $pkgname-$pkgver
-  make BINDIR="$pkgdir/usr/bin" \
-   DSSIDIR="$pkgdir/usr/lib/dssi" \
-   DSSIDIR32="$pkgdir/usr/lib32/dssi" \
-   LADSPADIR="$pkgdir/usr/lib/ladspa" install
+  cd "${pkgname}-${pkgver}"
+  make BINDIR="${pkgdir}/usr/bin" \
+DSSIDIR="${pkgdir}/usr/lib/dssi" \
+DSSIDIR32="${pkgdir}/usr/lib32/dssi" \
+  LADSPADIR="${pkgdir}/usr/lib/ladspa" install
 }


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

2017-12-02 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 01:47:50
  Author: dvzrv
Revision: 271951

archrelease: copy trunk to community-testing-x86_64

Added:
  dssi-vst/repos/community-testing-x86_64/
  dssi-vst/repos/community-testing-x86_64/PKGBUILD
(from rev 271950, dssi-vst/trunk/PKGBUILD)
  dssi-vst/repos/community-testing-x86_64/dssi-vst-winexec.patch
(from rev 271950, dssi-vst/trunk/dssi-vst-winexec.patch)

+
 PKGBUILD   |   45 +
 dssi-vst-winexec.patch |   23 +++
 2 files changed, 68 insertions(+)

Copied: dssi-vst/repos/community-testing-x86_64/PKGBUILD (from rev 271950, 
dssi-vst/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-03 01:47:50 UTC (rev 271951)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: Ray Rashif 
+
+pkgname=dssi-vst
+pkgver=0.9.2
+pkgrel=6
+pkgdesc="DSSI adapter/wrapper for win32 VST plug-ins"
+arch=('x86_64')
+url="http://www.breakfastquay.com/dssi-vst/;
+license=('GPL2')
+depends=('wine' 'jack' 'liblo')
+makedepends=('dssi' 'ladspa')
+source=("http://code.breakfastquay.com/attachments/download/10/${pkgname}-${pkgver}.tar.bz2;
+  "$pkgname-winexec.patch")
+sha512sums=('647faa1f39dd6ffb13a23f23d5b150afa3fa20a4cb7c28fed8e71ff9b835e84f5410b24bf3b8c65fbdc147667e086cc165469f68da0132fa7a9c06b6ca17561f'
+
'2f4474554fec716a63ff7a54c06872aad79eda100df74b108afbcc7307116d6b9159c270d84f14112e5c52bbe543c18bcd455fc6022cf6266ffea086baf602d8')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+
+  # fix executable extension issue
+  patch -p1 -i "${srcdir}/${pkgname}-winexec.patch"
+
+  # use CXXFLAGS in build
+  sed -i "/m32/! s/CXXFLAGS)/& $CXXFLAGS/" Makefile
+
+  # /usr/lib32/dssi
+  sed -i '/\/dssi-vst/s|DSSIDIR|&32|' Makefile
+  sed -i '/DSSI_PATH/s|\(/usr/lib\)\(/dssi\)|&:\132\2|' remotevstclient.cpp
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make BINDIR="${pkgdir}/usr/bin" \
+DSSIDIR="${pkgdir}/usr/lib/dssi" \
+DSSIDIR32="${pkgdir}/usr/lib32/dssi" \
+  LADSPADIR="${pkgdir}/usr/lib/ladspa" install
+}

Copied: dssi-vst/repos/community-testing-x86_64/dssi-vst-winexec.patch (from 
rev 271950, dssi-vst/trunk/dssi-vst-winexec.patch)
===
--- community-testing-x86_64/dssi-vst-winexec.patch 
(rev 0)
+++ community-testing-x86_64/dssi-vst-winexec.patch 2017-12-03 01:47:50 UTC 
(rev 271951)
@@ -0,0 +1,23 @@
+Thanks to Fernando Lopez-Lezcano 
+Reviewed by speps 
+
+diff -aur dssi-vst-0.9.2/Makefile dssi-vst-0.9.2.patched/Makefile
+--- dssi-vst-0.9.2/Makefile2010-05-04 11:01:29.0 +0200
 dssi-vst-0.9.2.patched/Makefile2014-03-28 18:24:41.128287015 +0100
+@@ -38,12 +38,15 @@
+ all:  $(TARGETS)
+ 
+ install:  all
++  mkdir -p $(DSSIDIR)
+   mkdir -p $(DSSIDIR)/dssi-vst
+   mkdir -p $(LADSPADIR)
+   mkdir -p $(BINDIR)
+   install dssi-vst.so $(DSSIDIR)
+   install dssi-vst.so $(LADSPADIR)
+-  install dssi-vst-server.exe.so dssi-vst-server 
dssi-vst-scanner.exe.so dssi-vst-scanner dssi-vst_gui $(DSSIDIR)/dssi-vst
++  install dssi-vst-server.exe.so dssi-vst-scanner.exe.so 
dssi-vst_gui $(DSSIDIR)/dssi-vst
++  install dssi-vst-server.exe $(DSSIDIR)/dssi-vst/dssi-vst-server
++  install dssi-vst-scanner.exe 
$(DSSIDIR)/dssi-vst/dssi-vst-scanner
+   install vsthost $(BINDIR)
+ 
+ clean:


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

2017-12-02 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 00:47:22
  Author: dvzrv
Revision: 271948

upgpkg: drumstick 1.1.0-2

Updating maintainer. Switching to correct license (GPL2). Switching to https 
for source.
Switching to sha512sums. Removing unneeded out-of-tree build. Installing 
various docs.

Modified:
  drumstick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 00:44:09 UTC (rev 271947)
+++ PKGBUILD2017-12-03 00:47:22 UTC (rev 271948)
@@ -1,33 +1,34 @@
 # $Id$
-# Maintainer : speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 # Contributor: Dany Martineau 
 
 pkgname=drumstick
 pkgver=1.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="MIDI libraries for Qt5/C++"
 arch=('x86_64')
 url="http://drumstick.sourceforge.net/;
-license=('GPL')
+license=('GPL2')
 depends=('desktop-file-utils' 'fluidsynth' 'hicolor-icon-theme' 
'shared-mime-info' 'qt5-svg')
 makedepends=('cmake' 'doxygen' 'docbook-xsl')
-source=("http://downloads.sourceforge.net/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2;)
-md5sums=('8b72ff32bbd3887c53b282a7111e683f')
+source=("https://downloads.sourceforge.net/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2;)
+sha512sums=('1099b80e1d2819a8343e877742c5f01c114419b2c63a965717bcff2c220aa218f40ac3860cf9496d3586663e73a6c2c7b62aee74c51229578a5ae3044da208da')
 
-prepare() {
-  cd $pkgname-$pkgver
-  [ -d b ] || mkdir b
-}
-
 build() {
-  cd $pkgname-$pkgver/b
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DLIB_SUFFIX=
+  cd "${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_SUFFIX=
   make
 }
 
 package() {
-  cd $pkgname-$pkgver/b
-  make DESTDIR="$pkgdir/" install
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}/" install
+  install -Dm644 AUTHORS "${pkgdir}/usr/share/doc/${pkgname}/AUTHORS"
+  install -Dm644 ChangeLog "${pkgdir}/usr/share/doc/${pkgname}/ChangeLog"
+  install -Dm644 NEWS "${pkgdir}/usr/share/doc/${pkgname}/NEWS"
+  install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
+  install -Dm644 TODO "${pkgdir}/usr/share/doc/${pkgname}/TODO"
 }


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

2017-12-02 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 00:47:31
  Author: dvzrv
Revision: 271949

archrelease: copy trunk to community-testing-x86_64

Added:
  drumstick/repos/community-testing-x86_64/
  drumstick/repos/community-testing-x86_64/PKGBUILD
(from rev 271948, drumstick/trunk/PKGBUILD)

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

Copied: drumstick/repos/community-testing-x86_64/PKGBUILD (from rev 271948, 
drumstick/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-03 00:47:31 UTC (rev 271949)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: Dany Martineau 
+
+pkgname=drumstick
+pkgver=1.1.0
+pkgrel=2
+pkgdesc="MIDI libraries for Qt5/C++"
+arch=('x86_64')
+url="http://drumstick.sourceforge.net/;
+license=('GPL2')
+depends=('desktop-file-utils' 'fluidsynth' 'hicolor-icon-theme' 
'shared-mime-info' 'qt5-svg')
+makedepends=('cmake' 'doxygen' 'docbook-xsl')
+source=("https://downloads.sourceforge.net/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2;)
+sha512sums=('1099b80e1d2819a8343e877742c5f01c114419b2c63a965717bcff2c220aa218f40ac3860cf9496d3586663e73a6c2c7b62aee74c51229578a5ae3044da208da')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_SUFFIX=
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}/" install
+  install -Dm644 AUTHORS "${pkgdir}/usr/share/doc/${pkgname}/AUTHORS"
+  install -Dm644 ChangeLog "${pkgdir}/usr/share/doc/${pkgname}/ChangeLog"
+  install -Dm644 NEWS "${pkgdir}/usr/share/doc/${pkgname}/NEWS"
+  install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
+  install -Dm644 TODO "${pkgdir}/usr/share/doc/${pkgname}/TODO"
+}


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

2017-12-02 Thread Christian Rebischke via arch-commits
Date: Sunday, December 3, 2017 @ 00:44:09
  Author: shibumi
Revision: 271947

archrelease: copy trunk to community-x86_64

Added:
  vault/repos/community-x86_64/
  vault/repos/community-x86_64/PKGBUILD
(from rev 271946, vault/trunk/PKGBUILD)
  vault/repos/community-x86_64/vault.hcl
(from rev 271946, vault/trunk/vault.hcl)
  vault/repos/community-x86_64/vault.install
(from rev 271946, vault/trunk/vault.install)
  vault/repos/community-x86_64/vault.service
(from rev 271946, vault/trunk/vault.service)

---+
 PKGBUILD  |   42 ++
 vault.hcl |   19 +++
 vault.install |   29 +
 vault.service |   22 ++
 4 files changed, 112 insertions(+)

Copied: vault/repos/community-x86_64/PKGBUILD (from rev 271946, 
vault/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-12-03 00:44:09 UTC (rev 271947)
@@ -0,0 +1,42 @@
+# Maintainer : Christian Rebischke 
+pkgname='vault'
+pkgdesc='A tool for managing secrets'
+pkgver='0.9.0'
+pkgrel='2'
+url='https://vaultproject.io/'
+license=('MPL')
+arch=('x86_64')
+makedepends=('go-pie' 'git')
+depends=('glibc')
+install='vault.install'
+backup=('etc/vault.hcl')
+_vault_commit='bdac1854478538052ba5b7ec9a9ec688d35a3335'
+source=("git+https://github.com/hashicorp/vault#commit=${_vault_commit};
+'vault.service'
+'vault.hcl')
+sha512sums=('SKIP'
+
'1e67fe594198e42faf81eeb78eaa9904d832a04580c82cd5639b983bab850a01f33f4b43de43b4e3403ee7820236ab49c8b91a26981c47b9a2c6938b4c0b6be3'
+
'46106cc76151eef2dd5e4b2caa6a96aae4d6ce1ecbf977dcc8667a3f6c829cbea95133622adafcb15cdfaa066ecc94c73c983e7613ee2f6573694981569729fe')
+
+prepare () {
+  export GOPATH="${srcdir}"
+  export PATH="$PATH:$GOPATH/bin"
+  mkdir -p src/github.com/hashicorp/
+  mv ${pkgname} src/github.com/hashicorp/
+}
+
+build () {
+  cd src/github.com/hashicorp/${pkgname}
+  go build -o vault-binary
+}
+
+package () {
+  cd src/github.com/hashicorp/${pkgname}
+   install -Dm755 vault-binary "${pkgdir}/usr/bin/vault"
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+   install -Dm644 "${srcdir}/vault.hcl" "${pkgdir}/etc/vault.hcl"
+   install -Dm644 "${srcdir}/vault.service" 
"${pkgdir}/usr/lib/systemd/system/vault.service"
+   for file in README.md CHANGELOG.md ; do
+   install -Dm644 "${file}" 
"${pkgdir}/usr/share/doc/${pkgname}/${file}"
+   done
+}

Copied: vault/repos/community-x86_64/vault.hcl (from rev 271946, 
vault/trunk/vault.hcl)
===
--- community-x86_64/vault.hcl  (rev 0)
+++ community-x86_64/vault.hcl  2017-12-03 00:44:09 UTC (rev 271947)
@@ -0,0 +1,19 @@
+/*
+ * Vault configuration. See: https://vaultproject.io/docs/config/
+ */
+
+backend "file" {
+   path = "/var/lib/vault"
+}
+
+listener "tcp" {
+   /*
+* By default Vault listens on localhost only.
+* Make sure to enable TLS support otherwise.
+*
+* Note that VAULT_ADDR=http://127.0.0.1:8200 must
+* be set in the environment in order for the client
+* to work because it uses HTTPS by default.
+*/
+   tls_disable = 1
+}

Copied: vault/repos/community-x86_64/vault.install (from rev 271946, 
vault/trunk/vault.install)
===
--- community-x86_64/vault.install  (rev 0)
+++ community-x86_64/vault.install  2017-12-03 00:44:09 UTC (rev 271947)
@@ -0,0 +1,29 @@
+# vim: ft=sh ts=4 sw=4 et
+
+post_install () {
+getent passwd vault > /dev/null || useradd \
+-s /bin/nologin -c 'Vault daemon' -d /var/lib/vault -M -r -U vault
+if [[ ! -d /var/lib/vault ]] ; then
+mkdir /var/lib/vault
+chown vault:vault /var/lib/vault
+fi
+setcap cap_ipc_lock=+ep /usr/bin/vault
+}
+
+post_upgrade () {
+if [[ -d /var/lib/vault ]] ; then
+local badperms=false
+while read -r path ; do
+if [[ $(stat --format=%U:%G "${path}") != vault:vault ]]
+then
+badperms=true
+break
+fi
+done < <( find /var/lib/vault )
+if ${badperms} ; then
+echo 'Bad permissions detected in /var/lib/vault, fixing...'
+chown -R vault:vault /var/lib/vault
+fi
+fi
+post_install
+}

Copied: vault/repos/community-x86_64/vault.service (from rev 271946, 
vault/trunk/vault.service)
===
--- community-x86_64/vault.service  (rev 0)
+++ community-x86_64/vault.service  2017-12-03 00:44:09 UTC (rev 271947)
@@ -0,0 +1,22 @@

[arch-commits] Commit in (7 files)

2017-12-02 Thread Christian Rebischke via arch-commits
Date: Sunday, December 3, 2017 @ 00:43:53
  Author: shibumi
Revision: 271946

added vault package 

Added:
  vault/
  vault/repos/
  vault/trunk/
  vault/trunk/PKGBUILD
  vault/trunk/vault.hcl
  vault/trunk/vault.install
  vault/trunk/vault.service

---+
 PKGBUILD  |   42 ++
 vault.hcl |   19 +++
 vault.install |   29 +
 vault.service |   22 ++
 4 files changed, 112 insertions(+)

Added: vault/trunk/PKGBUILD
===
--- vault/trunk/PKGBUILD(rev 0)
+++ vault/trunk/PKGBUILD2017-12-03 00:43:53 UTC (rev 271946)
@@ -0,0 +1,42 @@
+# Maintainer : Christian Rebischke 
+pkgname='vault'
+pkgdesc='A tool for managing secrets'
+pkgver='0.9.0'
+pkgrel='2'
+url='https://vaultproject.io/'
+license=('MPL')
+arch=('x86_64')
+makedepends=('go-pie' 'git')
+depends=('glibc')
+install='vault.install'
+backup=('etc/vault.hcl')
+_vault_commit='bdac1854478538052ba5b7ec9a9ec688d35a3335'
+source=("git+https://github.com/hashicorp/vault#commit=${_vault_commit};
+'vault.service'
+'vault.hcl')
+sha512sums=('SKIP'
+
'1e67fe594198e42faf81eeb78eaa9904d832a04580c82cd5639b983bab850a01f33f4b43de43b4e3403ee7820236ab49c8b91a26981c47b9a2c6938b4c0b6be3'
+
'46106cc76151eef2dd5e4b2caa6a96aae4d6ce1ecbf977dcc8667a3f6c829cbea95133622adafcb15cdfaa066ecc94c73c983e7613ee2f6573694981569729fe')
+
+prepare () {
+  export GOPATH="${srcdir}"
+  export PATH="$PATH:$GOPATH/bin"
+  mkdir -p src/github.com/hashicorp/
+  mv ${pkgname} src/github.com/hashicorp/
+}
+
+build () {
+  cd src/github.com/hashicorp/${pkgname}
+  go build -o vault-binary
+}
+
+package () {
+  cd src/github.com/hashicorp/${pkgname}
+   install -Dm755 vault-binary "${pkgdir}/usr/bin/vault"
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+   install -Dm644 "${srcdir}/vault.hcl" "${pkgdir}/etc/vault.hcl"
+   install -Dm644 "${srcdir}/vault.service" 
"${pkgdir}/usr/lib/systemd/system/vault.service"
+   for file in README.md CHANGELOG.md ; do
+   install -Dm644 "${file}" 
"${pkgdir}/usr/share/doc/${pkgname}/${file}"
+   done
+}


Property changes on: vault/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: vault/trunk/vault.hcl
===
--- vault/trunk/vault.hcl   (rev 0)
+++ vault/trunk/vault.hcl   2017-12-03 00:43:53 UTC (rev 271946)
@@ -0,0 +1,19 @@
+/*
+ * Vault configuration. See: https://vaultproject.io/docs/config/
+ */
+
+backend "file" {
+   path = "/var/lib/vault"
+}
+
+listener "tcp" {
+   /*
+* By default Vault listens on localhost only.
+* Make sure to enable TLS support otherwise.
+*
+* Note that VAULT_ADDR=http://127.0.0.1:8200 must
+* be set in the environment in order for the client
+* to work because it uses HTTPS by default.
+*/
+   tls_disable = 1
+}

Added: vault/trunk/vault.install
===
--- vault/trunk/vault.install   (rev 0)
+++ vault/trunk/vault.install   2017-12-03 00:43:53 UTC (rev 271946)
@@ -0,0 +1,29 @@
+# vim: ft=sh ts=4 sw=4 et
+
+post_install () {
+getent passwd vault > /dev/null || useradd \
+-s /bin/nologin -c 'Vault daemon' -d /var/lib/vault -M -r -U vault
+if [[ ! -d /var/lib/vault ]] ; then
+mkdir /var/lib/vault
+chown vault:vault /var/lib/vault
+fi
+setcap cap_ipc_lock=+ep /usr/bin/vault
+}
+
+post_upgrade () {
+if [[ -d /var/lib/vault ]] ; then
+local badperms=false
+while read -r path ; do
+if [[ $(stat --format=%U:%G "${path}") != vault:vault ]]
+then
+badperms=true
+break
+fi
+done < <( find /var/lib/vault )
+if ${badperms} ; then
+echo 'Bad permissions detected in /var/lib/vault, fixing...'
+chown -R vault:vault /var/lib/vault
+fi
+fi
+post_install
+}

Added: vault/trunk/vault.service
===
--- vault/trunk/vault.service   (rev 0)
+++ vault/trunk/vault.service   2017-12-03 00:43:53 UTC (rev 271946)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Vault server
+Requires=basic.target network.target
+After=basic.target network.target
+
+[Service]
+User=vault
+Group=vault
+PrivateTmp=yes
+ProtectSystem=full
+ProtectHome=read-only
+CapabilityBoundingSet=CAP_IPC_LOCK
+Environment=GOMAXPROCS=2
+ExecStart=/bin/vault server -config=/etc/vault/vault.hcl
+KillSignal=SIGINT
+TimeoutStopSec=30s

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

2017-12-02 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 00:21:56
  Author: dvzrv
Revision: 271945

archrelease: copy trunk to community-testing-x86_64

Added:
  drumkv1/repos/community-testing-x86_64/
  drumkv1/repos/community-testing-x86_64/PKGBUILD
(from rev 271944, drumkv1/trunk/PKGBUILD)

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

Copied: drumkv1/repos/community-testing-x86_64/PKGBUILD (from rev 271944, 
drumkv1/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-03 00:21:56 UTC (rev 271945)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+
+pkgname=drumkv1
+pkgver=0.8.5
+pkgrel=1
+pkgdesc="An old-school drum-kit sampler"
+arch=(x86_64)
+url="https://drumkv1.sourceforge.io/;
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
+ 'hicolor-icon-theme' 'shared-mime-info')
+makedepends=('qt5-tools')
+source=("https://download.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('4fcb709c98c233e5f6f52f362d6c4ff2d89409d6c95e38275672613acf82202a088fa92ab21d0c0c0d689a84c91af08bda76737284ead31e4df247287105990d')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+  --libdir=/usr/lib
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-12-02 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 00:21:24
  Author: dvzrv
Revision: 271944

upgpkg: drumkv1 0.8.5-1

Updating maintainer. Upgrading to 0.8.5. Switching to sha512sums. Minor fixes.

Modified:
  drumkv1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 22:12:59 UTC (rev 271943)
+++ PKGBUILD2017-12-03 00:21:24 UTC (rev 271944)
@@ -1,8 +1,9 @@
 # $Id$
-# Maintainer: speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 
 pkgname=drumkv1
-pkgver=0.8.4
+pkgver=0.8.5
 pkgrel=1
 pkgdesc="An old-school drum-kit sampler"
 arch=(x86_64)
@@ -12,11 +13,11 @@
 depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
  'hicolor-icon-theme' 'shared-mime-info')
 makedepends=('qt5-tools')
-source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('ec6107f84b7967df1162e1c60c24da65')
+source=("https://download.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('4fcb709c98c233e5f6f52f362d6c4ff2d89409d6c95e38275672613acf82202a088fa92ab21d0c0c0d689a84c91af08bda76737284ead31e4df247287105990d')
 
 build() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
   ./configure --prefix=/usr \
   --libdir=/usr/lib
   make
@@ -23,7 +24,7 @@
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
   make DESTDIR="$pkgdir/" install
 }
 


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

2017-12-02 Thread David Runge via arch-commits
Date: Saturday, December 2, 2017 @ 20:56:09
  Author: dvzrv
Revision: 271928

archrelease: copy trunk to community-testing-x86_64

Added:
  cwiid/repos/community-testing-x86_64/
  cwiid/repos/community-testing-x86_64/PKGBUILD
(from rev 271927, cwiid/trunk/PKGBUILD)
  cwiid/repos/community-testing-x86_64/cwiid.install
(from rev 271927, cwiid/trunk/cwiid.install)

---+
 PKGBUILD  |   49 +
 cwiid.install |   10 ++
 2 files changed, 59 insertions(+)

Copied: cwiid/repos/community-testing-x86_64/PKGBUILD (from rev 271927, 
cwiid/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-02 20:56:09 UTC (rev 271928)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer : David Runge 
+# Contributor: speps 
+# Contributor: Ray Rashif 
+# Contributor: Wieland Hoffmann 
+# Contributor: Birger Moellering 
+# 2012/03/21 : 
+# 2012/06/05 : 
+
+pkgname=cwiid
+pkgver=0.6.00+svn201
+pkgrel=2
+pkgdesc="Linux Nintendo Wiimote interface"
+arch=('x86_64')
+url="http://abstrakraft.org/cwiid;
+depends=('bluez-libs' 'gtk2' 'python2')
+license=('GPL')
+install="$pkgname.install"
+source=("https://github.com/abstrakraft/cwiid/archive/svn_history.tar.gz;)
+sha512sums=('25c105c37ae0778b6e47c4a02bfc74380f3b3dcc4cb71a3968a243a7de33c55d8b6d7860d826d1d5a6a197223fdb6022effd27d40394ca7007d997694438739b')
+
+prepare() {
+  cd "${pkgname}-svn_history"
+  # fixing ldconfig use in configure
+  sed -i '/ldconfig/s/WITH/ENABLE/' configure.ac
+  autoreconf -fi
+}
+
+build() {
+  cd "${pkgname}-svn_history"
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --with-python=python2 \
+  --enable-ldconfig=no
+
+  LDFLAGS+=" -pthread -lpthread -lbluetooth" \
+  make
+}
+
+package() {
+  cd "${pkgname}-svn_history"
+  make DESTDIR="${pkgdir}" install
+
+  # wminput README
+  install -Dm644 wminput/README \
+"${pkgdir}/usr/share/doc/${pkgname}/wminput/README"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: cwiid/repos/community-testing-x86_64/cwiid.install (from rev 271927, 
cwiid/trunk/cwiid.install)
===
--- community-testing-x86_64/cwiid.install  (rev 0)
+++ community-testing-x86_64/cwiid.install  2017-12-02 20:56:09 UTC (rev 
271928)
@@ -0,0 +1,10 @@
+post_install() {
+  echo "==> In order to use wminput ensure you load the uinput kernel"
+  echo "==> module and have assigned correct access to /dev/uinput"
+}
+
+post_upgrade() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-12-02 Thread David Runge via arch-commits
Date: Saturday, December 2, 2017 @ 20:55:03
  Author: dvzrv
Revision: 271927

upgpkg: cwiid 0.6.00+svn201-2

Updating maintainer. Switching to sha512sums. Using autoreconf in prepare().
Fixing LDFLAGS in build() to properly use pthread and bluetooth. Minor fixes.

Modified:
  cwiid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 20:44:35 UTC (rev 271926)
+++ PKGBUILD2017-12-02 20:55:03 UTC (rev 271927)
@@ -1,5 +1,6 @@
 # $Id$
-# Maintainer : speps 
+# Maintainer : David Runge 
+# Contributor: speps 
 # Contributor: Ray Rashif 
 # Contributor: Wieland Hoffmann 
 # Contributor: Birger Moellering 
@@ -8,7 +9,7 @@
 
 pkgname=cwiid
 pkgver=0.6.00+svn201
-pkgrel=1
+pkgrel=2
 pkgdesc="Linux Nintendo Wiimote interface"
 arch=('x86_64')
 url="http://abstrakraft.org/cwiid;
@@ -16,33 +17,33 @@
 license=('GPL')
 install="$pkgname.install"
 source=("https://github.com/abstrakraft/cwiid/archive/svn_history.tar.gz;)
-md5sums=('e1bc290504dc53f02581866eed0b85c3')
+sha512sums=('25c105c37ae0778b6e47c4a02bfc74380f3b3dcc4cb71a3968a243a7de33c55d8b6d7860d826d1d5a6a197223fdb6022effd27d40394ca7007d997694438739b')
 
 prepare() {
-  cd $pkgname-svn_history
+  cd "${pkgname}-svn_history"
+  # fixing ldconfig use in configure
   sed -i '/ldconfig/s/WITH/ENABLE/' configure.ac
-  aclocal
-  autoconf -f
+  autoreconf -fi
 }
 
 build() {
-  cd $pkgname-svn_history
+  cd "${pkgname}-svn_history"
   ./configure --prefix=/usr \
   --sysconfdir=/etc \
   --with-python=python2 \
   --enable-ldconfig=no
 
-  LDFLAGS+="$(pkg-config --libs bluez) -lpthread" \
+  LDFLAGS+=" -pthread -lpthread -lbluetooth" \
   make
 }
 
 package() {
-  cd $pkgname-svn_history
-  make DESTDIR="$pkgdir" install
+  cd "${pkgname}-svn_history"
+  make DESTDIR="${pkgdir}" install
 
   # wminput README
   install -Dm644 wminput/README \
-"$pkgdir/usr/share/doc/$pkgname/wminput/README"
+"${pkgdir}/usr/share/doc/${pkgname}/wminput/README"
 }
 
 # vim:set ts=2 sw=2 et:


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

2017-12-02 Thread Jelle van der Waa via arch-commits
Date: Saturday, December 2, 2017 @ 20:44:35
  Author: jelle
Revision: 271926

archrelease: copy trunk to community-testing-any

Added:
  python-pyenchant/repos/community-testing-any/
  
python-pyenchant/repos/community-testing-any/0001-Add-enchant-2-compatibility.patch
(from rev 271925, 
python-pyenchant/trunk/0001-Add-enchant-2-compatibility.patch)
  python-pyenchant/repos/community-testing-any/PKGBUILD
(from rev 271925, python-pyenchant/trunk/PKGBUILD)

+
 0001-Add-enchant-2-compatibility.patch |   70 +++
 PKGBUILD   |   53 +++
 2 files changed, 123 insertions(+)

Copied: 
python-pyenchant/repos/community-testing-any/0001-Add-enchant-2-compatibility.patch
 (from rev 271925, 
python-pyenchant/trunk/0001-Add-enchant-2-compatibility.patch)
===
--- community-testing-any/0001-Add-enchant-2-compatibility.patch
(rev 0)
+++ community-testing-any/0001-Add-enchant-2-compatibility.patch
2017-12-02 20:44:35 UTC (rev 271926)
@@ -0,0 +1,70 @@
+From 4ecabbdb345a4f84e97e05abb970e8ca83e6b52e Mon Sep 17 00:00:00 2001
+From: Jelle van der Waa 
+Date: Sat, 2 Dec 2017 21:13:42 +0100
+Subject: [PATCH] Add enchant 2 compatibility
+
+Remove is_in_session of which the function is removed in Enchant 2.0 and
+was already deprecated.
+---
+ enchant/__init__.py | 9 -
+ enchant/_enchant.py | 6 --
+ enchant/pypwl.py| 6 --
+ 3 files changed, 21 deletions(-)
+
+diff --git a/enchant/__init__.py b/enchant/__init__.py
+index 016d32f..56ecbeb 100644
+--- a/enchant/__init__.py
 b/enchant/__init__.py
+@@ -715,15 +715,6 @@ class Dict(_EnchantObject):
+ word = self._StringClass(word)
+ return _e.dict_is_removed(self._this,word.encode())
+ 
+-def is_in_session(self,word):
+-"""Check whether a word is in the session list."""
+-warnings.warn("Dict.is_in_session is deprecated, "\
+-  "please use Dict.is_added",
+-  category=DeprecationWarning,stacklevel=2)
+-self._check_this()
+-word = self._StringClass(word)
+-return _e.dict_is_in_session(self._this,word.encode())
+-
+ def store_replacement(self,mis,cor):
+ """Store a replacement spelling for a miss-spelled word.
+ 
+diff --git a/enchant/_enchant.py b/enchant/_enchant.py
+index a07058d..cf77908 100644
+--- a/enchant/_enchant.py
 b/enchant/_enchant.py
+@@ -309,12 +309,6 @@ dict_is_removed1.restype = c_int
+ def dict_is_removed(dict,word):
+ return dict_is_removed1(dict,word,len(word))
+ 
+-dict_is_in_session1 = e.enchant_dict_is_in_session
+-dict_is_in_session1.argtypes = [t_dict,c_char_p,c_size_t]
+-dict_is_in_session1.restype = c_int
+-def dict_is_in_session(dict,word):
+-return dict_is_in_session1(dict,word,len(word))
+-
+ dict_store_replacement1 = e.enchant_dict_store_replacement
+ dict_store_replacement1.argtypes = 
[t_dict,c_char_p,c_size_t,c_char_p,c_size_t]
+ dict_store_replacement1.restype = None
+diff --git a/enchant/pypwl.py b/enchant/pypwl.py
+index 3a2248f..282c015 100644
+--- a/enchant/pypwl.py
 b/enchant/pypwl.py
+@@ -247,12 +247,6 @@ class PyPWL:
+ """Add a word to the session list."""
+ self._words.insert(word)
+ 
+-def is_in_session(self,word):
+-"""Check whether a word is in the session list."""
+-warnings.warn("PyPWL.is_in_session is deprecated, please use 
PyPWL.is_added",category=DeprecationWarning)
+-# Consider all words to be in the session list
+-return self.check(word)
+-
+ def store_replacement(self,mis,cor):
+ """Store a replacement spelling for a miss-spelled word.
+ 
+-- 
+2.15.1
+

Copied: python-pyenchant/repos/community-testing-any/PKGBUILD (from rev 271925, 
python-pyenchant/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-12-02 20:44:35 UTC (rev 271926)
@@ -0,0 +1,53 @@
+# $Id$
+# Contributor: Pierre Buard 
+# Contributor: Allan McRae 
+# Contributor: Sebastien Piccand 
+# Contributor: Daniel J Griffiths 
+# Maintainer: Jelle van der Waa 
+
+pkgname=('python-pyenchant' 'python2-pyenchant')
+pkgver=1.6.11
+pkgrel=2
+arch=('any')
+url="https://pypi.python.org/pypi/pyenchant;
+license=('LGPL')
+makedepends=('python2-setuptools' 'python-setuptools' 'enchant')
+source=('https://pypi.python.org/packages/f3/00/c04496277b1e681d0f500baf7ac8f3c7f1d21b9ea97ed951ed4ac5635fda/pyenchant-1.6.11.tar.gz'
+'0001-Add-enchant-2-compatibility.patch')
+md5sums=('a97f46c6bf0133318759e099117e91a8'
+ 'b25bd3e7e3b6c19d24d2209214673e41')
+
+prepare() 

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

2017-12-02 Thread Jelle van der Waa via arch-commits
Date: Saturday, December 2, 2017 @ 20:44:13
  Author: jelle
Revision: 271925

upgpkg: python-pyenchant 1.6.11-2

Remove enchant's deprecated is_in_session function.
Which is removed in enchant 2.

Added:
  python-pyenchant/trunk/0001-Add-enchant-2-compatibility.patch
Modified:
  python-pyenchant/trunk/PKGBUILD

+
 0001-Add-enchant-2-compatibility.patch |   70 +++
 PKGBUILD   |   13 -
 2 files changed, 80 insertions(+), 3 deletions(-)

Added: 0001-Add-enchant-2-compatibility.patch
===
--- 0001-Add-enchant-2-compatibility.patch  (rev 0)
+++ 0001-Add-enchant-2-compatibility.patch  2017-12-02 20:44:13 UTC (rev 
271925)
@@ -0,0 +1,70 @@
+From 4ecabbdb345a4f84e97e05abb970e8ca83e6b52e Mon Sep 17 00:00:00 2001
+From: Jelle van der Waa 
+Date: Sat, 2 Dec 2017 21:13:42 +0100
+Subject: [PATCH] Add enchant 2 compatibility
+
+Remove is_in_session of which the function is removed in Enchant 2.0 and
+was already deprecated.
+---
+ enchant/__init__.py | 9 -
+ enchant/_enchant.py | 6 --
+ enchant/pypwl.py| 6 --
+ 3 files changed, 21 deletions(-)
+
+diff --git a/enchant/__init__.py b/enchant/__init__.py
+index 016d32f..56ecbeb 100644
+--- a/enchant/__init__.py
 b/enchant/__init__.py
+@@ -715,15 +715,6 @@ class Dict(_EnchantObject):
+ word = self._StringClass(word)
+ return _e.dict_is_removed(self._this,word.encode())
+ 
+-def is_in_session(self,word):
+-"""Check whether a word is in the session list."""
+-warnings.warn("Dict.is_in_session is deprecated, "\
+-  "please use Dict.is_added",
+-  category=DeprecationWarning,stacklevel=2)
+-self._check_this()
+-word = self._StringClass(word)
+-return _e.dict_is_in_session(self._this,word.encode())
+-
+ def store_replacement(self,mis,cor):
+ """Store a replacement spelling for a miss-spelled word.
+ 
+diff --git a/enchant/_enchant.py b/enchant/_enchant.py
+index a07058d..cf77908 100644
+--- a/enchant/_enchant.py
 b/enchant/_enchant.py
+@@ -309,12 +309,6 @@ dict_is_removed1.restype = c_int
+ def dict_is_removed(dict,word):
+ return dict_is_removed1(dict,word,len(word))
+ 
+-dict_is_in_session1 = e.enchant_dict_is_in_session
+-dict_is_in_session1.argtypes = [t_dict,c_char_p,c_size_t]
+-dict_is_in_session1.restype = c_int
+-def dict_is_in_session(dict,word):
+-return dict_is_in_session1(dict,word,len(word))
+-
+ dict_store_replacement1 = e.enchant_dict_store_replacement
+ dict_store_replacement1.argtypes = 
[t_dict,c_char_p,c_size_t,c_char_p,c_size_t]
+ dict_store_replacement1.restype = None
+diff --git a/enchant/pypwl.py b/enchant/pypwl.py
+index 3a2248f..282c015 100644
+--- a/enchant/pypwl.py
 b/enchant/pypwl.py
+@@ -247,12 +247,6 @@ class PyPWL:
+ """Add a word to the session list."""
+ self._words.insert(word)
+ 
+-def is_in_session(self,word):
+-"""Check whether a word is in the session list."""
+-warnings.warn("PyPWL.is_in_session is deprecated, please use 
PyPWL.is_added",category=DeprecationWarning)
+-# Consider all words to be in the session list
+-return self.check(word)
+-
+ def store_replacement(self,mis,cor):
+ """Store a replacement spelling for a miss-spelled word.
+ 
+-- 
+2.15.1
+

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 19:46:26 UTC (rev 271924)
+++ PKGBUILD2017-12-02 20:44:13 UTC (rev 271925)
@@ -7,14 +7,21 @@
 
 pkgname=('python-pyenchant' 'python2-pyenchant')
 pkgver=1.6.11
-pkgrel=1
+pkgrel=2
 arch=('any')
 url="https://pypi.python.org/pypi/pyenchant;
 license=('LGPL')
 makedepends=('python2-setuptools' 'python-setuptools' 'enchant')
-source=('https://pypi.python.org/packages/f3/00/c04496277b1e681d0f500baf7ac8f3c7f1d21b9ea97ed951ed4ac5635fda/pyenchant-1.6.11.tar.gz')
-md5sums=('a97f46c6bf0133318759e099117e91a8')
+source=('https://pypi.python.org/packages/f3/00/c04496277b1e681d0f500baf7ac8f3c7f1d21b9ea97ed951ed4ac5635fda/pyenchant-1.6.11.tar.gz'
+'0001-Add-enchant-2-compatibility.patch')
+md5sums=('a97f46c6bf0133318759e099117e91a8'
+ 'b25bd3e7e3b6c19d24d2209214673e41')
 
+prepare() {
+  cd pyenchant-${pkgver}
+  patch -Np1 -i "${srcdir}/0001-Add-enchant-2-compatibility.patch"
+}
+
 build() {
   cp -r pyenchant-${pkgver} pyenchant2-${pkgver}
 


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

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 20:29:56
  Author: arojas
Revision: 311495

archrelease: copy trunk to extra-x86_64

Added:
  intel-tbb/repos/extra-x86_64/PKGBUILD
(from rev 311494, intel-tbb/trunk/PKGBUILD)
Deleted:
  intel-tbb/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 20:29:21 UTC (rev 311494)
+++ PKGBUILD2017-12-02 20:29:56 UTC (rev 311495)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Stéphane Gaudreault 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Denis Martinez 
-
-pkgname=intel-tbb
-pkgver=2018_20170726
-_pkgver=2018
-pkgrel=1
-pkgdesc='High level abstract threading library'
-arch=(i686 x86_64)
-url='http://www.threadingbuildingblocks.org/'
-license=(GPL)
-depends=(gcc-libs)
-source=(https://github.com/01org/tbb/archive/$_pkgver.tar.gz)
-sha256sums=('94f643f1edfaccb57d64b503c7c96f00dec64e8635c054bbaa33855d72c5822d')
-
-build() {
-  cd tbb-$_pkgver
-  export CXXFLAGS+=" -fno-lifetime-dse" # FS#49898
-  make
-}
-
-package() {
-  cd tbb-$_pkgver
-  install -d "$pkgdir"/usr/lib
-  install -m755 build/linux_*/*.so* "$pkgdir"/usr/lib
-  install -d "$pkgdir"/usr/include
-  cp -a include/tbb "$pkgdir"/usr/include
-}

Copied: intel-tbb/repos/extra-x86_64/PKGBUILD (from rev 311494, 
intel-tbb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 20:29:56 UTC (rev 311495)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:
+# Contributor: Stéphane Gaudreault 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Denis Martinez 
+
+pkgname=intel-tbb
+pkgver=2018_20170919
+_pkgver=2018_U1
+pkgrel=1
+pkgdesc='High level abstract threading library'
+arch=(x86_64)
+url='http://www.threadingbuildingblocks.org/'
+license=(GPL)
+depends=(gcc-libs)
+source=(https://github.com/01org/tbb/archive/$_pkgver.tar.gz)
+sha256sums=('c6462217d4ecef2b44fce63cfdf31f9db4f6ff493869899d497a5aef68b05fc5')
+
+build() {
+  cd tbb-$_pkgver
+  export CXXFLAGS+=" -fno-lifetime-dse" # FS#49898
+  make
+}
+
+package() {
+  cd tbb-$_pkgver
+  install -d "$pkgdir"/usr/lib
+  install -m755 build/linux_*/*.so* "$pkgdir"/usr/lib
+  install -d "$pkgdir"/usr/include
+  cp -a include/tbb "$pkgdir"/usr/include
+}


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

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 20:29:21
  Author: arojas
Revision: 311494

Update to 2018_20170919

Modified:
  intel-tbb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 20:12:20 UTC (rev 311493)
+++ PKGBUILD2017-12-02 20:29:21 UTC (rev 311494)
@@ -5,8 +5,8 @@
 # Contributor: Denis Martinez 
 
 pkgname=intel-tbb
-pkgver=2018_20170726
-_pkgver=2018
+pkgver=2018_20170919
+_pkgver=2018_U1
 pkgrel=1
 pkgdesc='High level abstract threading library'
 arch=(x86_64)
@@ -14,7 +14,7 @@
 license=(GPL)
 depends=(gcc-libs)
 source=(https://github.com/01org/tbb/archive/$_pkgver.tar.gz)
-sha256sums=('94f643f1edfaccb57d64b503c7c96f00dec64e8635c054bbaa33855d72c5822d')
+sha256sums=('c6462217d4ecef2b44fce63cfdf31f9db4f6ff493869899d497a5aef68b05fc5')
 
 build() {
   cd tbb-$_pkgver


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

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 20:12:20
  Author: arojas
Revision: 311493

archrelease: copy trunk to extra-x86_64

Added:
  sddm/repos/extra-x86_64/PKGBUILD
(from rev 311492, sddm/trunk/PKGBUILD)
  sddm/repos/extra-x86_64/sddm.sysusers
(from rev 311492, sddm/trunk/sddm.sysusers)
  sddm/repos/extra-x86_64/sddm.tmpfiles
(from rev 311492, sddm/trunk/sddm.tmpfiles)
Deleted:
  sddm/repos/extra-x86_64/PKGBUILD
  sddm/repos/extra-x86_64/sddm.sysusers
  sddm/repos/extra-x86_64/sddm.tmpfiles

---+
 PKGBUILD  |   92 
 sddm.sysusers |3 +
 sddm.tmpfiles |2 -
 3 files changed, 49 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 20:11:42 UTC (rev 311492)
+++ PKGBUILD2017-12-02 20:12:20 UTC (rev 311493)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=sddm
-pkgver=0.16.0
-pkgrel=1
-pkgdesc='QML based X11 and Wayland display manager'
-arch=('i686' 'x86_64')
-url='http://github.com/sddm/sddm'
-license=('GPL')
-depends=('qt5-declarative' 'xorg-xauth' 'xorg-server')
-makedepends=('extra-cmake-modules' 'python-docutils' 'qt5-tools')
-backup=('usr/share/sddm/scripts/Xsetup'
-'etc/pam.d/sddm'
-'etc/sddm.conf')
-provides=('display-manager')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz;
-sddm.sysusers sddm.tmpfiles)
-sha256sums=('83a34a5f7a5af5e62f0c1bb8a9ce79c7c0ee55b3e0a9bb7ca437dc42f8ce4292'
-'421d6d137a32b7a749427f4ab770e5adeef7dac66b138ab6e216ddc0cf4e2cb6'
-'db625f2a3649d6d203e1e1b187a054d5c6263cadf7edd824774d8ace52219677')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBEXECDIR=/usr/lib/sddm \
--DDBUS_CONFIG_FILENAME=sddm_org.freedesktop.DisplayManager.conf \
--DBUILD_MAN_PAGES=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 "$srcdir"/sddm.sysusers "$pkgdir"/usr/lib/sysusers.d/sddm.conf
-  install -Dm644 "$srcdir"/sddm.tmpfiles "$pkgdir"/usr/lib/tmpfiles.d/sddm.conf
-}

Copied: sddm/repos/extra-x86_64/PKGBUILD (from rev 311492, sddm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 20:12:20 UTC (rev 311493)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=sddm
+pkgver=0.16.0
+pkgrel=2
+pkgdesc='QML based X11 and Wayland display manager'
+arch=('x86_64')
+url='http://github.com/sddm/sddm'
+license=('GPL')
+depends=('qt5-declarative' 'xorg-xauth' 'xorg-server')
+makedepends=('extra-cmake-modules' 'python-docutils' 'qt5-tools')
+backup=('usr/share/sddm/scripts/Xsetup'
+'etc/pam.d/sddm'
+'etc/sddm.conf')
+provides=('display-manager')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz;
+sddm.sysusers sddm.tmpfiles)
+sha256sums=('83a34a5f7a5af5e62f0c1bb8a9ce79c7c0ee55b3e0a9bb7ca437dc42f8ce4292'
+'9fce66f325d170c61caed57816f4bc72e9591df083e89da114a3bb16b0a0e60f'
+'db625f2a3649d6d203e1e1b187a054d5c6263cadf7edd824774d8ace52219677')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_LIBEXECDIR=/usr/lib/sddm \
+-DDBUS_CONFIG_FILENAME=sddm_org.freedesktop.DisplayManager.conf \
+-DBUILD_MAN_PAGES=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "$srcdir"/sddm.sysusers "$pkgdir"/usr/lib/sysusers.d/sddm.conf
+  install -Dm644 "$srcdir"/sddm.tmpfiles "$pkgdir"/usr/lib/tmpfiles.d/sddm.conf
+}

Deleted: sddm.sysusers
===
--- sddm.sysusers   2017-12-02 20:11:42 UTC (rev 311492)
+++ sddm.sysusers   2017-12-02 20:12:20 UTC (rev 311493)
@@ -1 +0,0 @@
-u sddm - "Simple Desktop Display Manager" /var/lib/sddm

Copied: sddm/repos/extra-x86_64/sddm.sysusers (from rev 311492, 
sddm/trunk/sddm.sysusers)
===
--- sddm.sysusers   (rev 0)
+++ sddm.sysusers   2017-12-02 20:12:20 UTC (rev 311493)
@@ -0,0 +1,2 @@
+u sddm - "Simple Desktop Display Manager" /var/lib/sddm
+m sddm video

Deleted: sddm.tmpfiles
===

[arch-commits] Commit in sddm/trunk (PKGBUILD sddm.sysusers)

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 20:11:42
  Author: arojas
Revision: 311492

Add sddm user to video group, may help with FS#55960

Modified:
  sddm/trunk/PKGBUILD
  sddm/trunk/sddm.sysusers

---+
 PKGBUILD  |4 ++--
 sddm.sysusers |1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 19:45:48 UTC (rev 311491)
+++ PKGBUILD2017-12-02 20:11:42 UTC (rev 311492)
@@ -5,7 +5,7 @@
 
 pkgname=sddm
 pkgver=0.16.0
-pkgrel=1
+pkgrel=2
 pkgdesc='QML based X11 and Wayland display manager'
 arch=('x86_64')
 url='http://github.com/sddm/sddm'
@@ -19,7 +19,7 @@
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz;
 sddm.sysusers sddm.tmpfiles)
 sha256sums=('83a34a5f7a5af5e62f0c1bb8a9ce79c7c0ee55b3e0a9bb7ca437dc42f8ce4292'
-'421d6d137a32b7a749427f4ab770e5adeef7dac66b138ab6e216ddc0cf4e2cb6'
+'9fce66f325d170c61caed57816f4bc72e9591df083e89da114a3bb16b0a0e60f'
 'db625f2a3649d6d203e1e1b187a054d5c6263cadf7edd824774d8ace52219677')
 
 prepare() {

Modified: sddm.sysusers
===
--- sddm.sysusers   2017-12-02 19:45:48 UTC (rev 311491)
+++ sddm.sysusers   2017-12-02 20:11:42 UTC (rev 311492)
@@ -1 +1,2 @@
 u sddm - "Simple Desktop Display Manager" /var/lib/sddm
+m sddm video


[arch-commits] Commit in (impressive)

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 19:46:26
  Author: jlichtblau
Revision: 271924

impressive removed from community

Deleted:
  impressive/


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

2017-12-02 Thread Jan Steffens via arch-commits
Date: Saturday, December 2, 2017 @ 19:45:48
  Author: heftig
Revision: 311491

attempt at a split imagemagick6 package

Added:
  imagemagick6/trunk/PKGBUILD
(from rev 311490, imagemagick/trunk/PKGBUILD)
  imagemagick6/trunk/arch-fonts.diff
(from rev 311490, imagemagick/trunk/arch-fonts.diff)

-+
 PKGBUILD|  125 ++
 arch-fonts.diff |  107 ++
 2 files changed, 232 insertions(+)

Copied: imagemagick6/trunk/PKGBUILD (from rev 311490, 
imagemagick/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 19:45:48 UTC (rev 311491)
@@ -0,0 +1,125 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgbase=imagemagick6
+pkgname=(libmagick6 imagemagick6)
+pkgver=6.9.9.25
+pkgrel=2
+pkgdesc="An image viewing/manipulation program (version 6)"
+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)
+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=('cea13c9419d691879cf52c4e967967c392e8f76c0a6013f51c3bae90efc6480f'
+'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 \
+--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_libmagick6() {
+  pkgdesc="${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=('!docs' '!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/lib/pkgconfig/!(*Q16HDRI*) usr/lib/pkgconfig/
+  mv "$pkgdir/usr/share/man" usr/share/
+}
+
+package_imagemagick6() {
+  depends=("libmagick6=$pkgver-$pkgrel")
+  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
+}

Copied: imagemagick6/trunk/arch-fonts.diff (from rev 311490, 
imagemagick/trunk/arch-fonts.diff)
===
--- arch-fonts.diff (rev 0)
+++ arch-fonts.diff 2017-12-02 19:45:48 UTC (rev 311491)
@@ -0,0 +1,107 @@
+diff -u -r ImageMagick-6.9.9-25/config/type-dejavu.xml.in 
ImageMagick-6.9.9-25-archfonts/config/type-dejavu.xml.in
+--- 

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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 19:41:46
  Author: jlichtblau
Revision: 271922

offlineimap - FS#55561 fix

Modified:
  offlineimap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 19:38:18 UTC (rev 271921)
+++ PKGBUILD2017-12-02 19:41:46 UTC (rev 271922)
@@ -13,6 +13,7 @@
 license=('GPL')
 depends=('python2-six')
 makedepends=('asciidoc')
+optdepends=('python2-pysocks: for SOCKS5 proxy functionality')
 changelog=$pkgname.changelog
 
source=($pkgname-$pkgver.tar.gz::https://github.com/OfflineIMAP/offlineimap/archive/v${pkgver}.tar.gz)
 sha256sums=('c6fe4a99458542b52f101d2569cb7ca6d2c758bc0eba3731d4e6263af48c6454')


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

2017-12-02 Thread Jan Steffens via arch-commits
Date: Saturday, December 2, 2017 @ 19:39:39
  Author: heftig
Revision: 311490

Add imagemagick6

Added:
  imagemagick6/
  imagemagick6/repos/
  imagemagick6/trunk/


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 19:38:18
  Author: jlichtblau
Revision: 271921

syncthing-gtk - FS#54028 fixed

Modified:
  syncthing-gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 19:32:51 UTC (rev 271920)
+++ PKGBUILD2017-12-02 19:38:18 UTC (rev 271921)
@@ -16,7 +16,8 @@
 makedepends=('python2-setuptools')
 optdepends=('python2-nautilus: file manager integration for Nautilus'
 'python2-caja: file manager integration for Caja'
-'librsvg: to shown menu icons correctly if not using traditional 
window header')
+'librsvg: to show menu icons correctly if not using traditional 
window header'
+'libappindicator-gtk3: to show tray icon in Plasma 5')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
 sha256sums=('a500665ce2ebd04cf0f51e0b65690dddc258bc495a74b6311604fefe9f3e16ef')
 


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 19:32:51
  Author: jlichtblau
Revision: 271920

FS#53931 implemented

Modified:
  powertop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 19:19:54 UTC (rev 271919)
+++ PKGBUILD2017-12-02 19:32:51 UTC (rev 271920)
@@ -11,6 +11,7 @@
 url='https://01.org/powertop/'
 license=('GPL2')
 depends=('gcc-libs' 'libnl' 'ncurses' 'pciutils')
+optdepends=('xorg-xset: for the --calibrate function')
 changelog=$pkgname.changelog
 
source=($pkgname-$pkgver.tar.gz::https://github.com/fenrus75/powertop/archive/v$pkgver.tar.gz)
 sha256sums=('5daf009271a028c55f0d5da7e5cf85ce08f832831957828f0379faf721f5bad1')


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

2017-12-02 Thread David Runge via arch-commits
Date: Saturday, December 2, 2017 @ 19:19:54
  Author: dvzrv
Revision: 271919

archrelease: copy trunk to community-testing-x86_64

Added:
  clxclient/repos/community-testing-x86_64/
  clxclient/repos/community-testing-x86_64/PKGBUILD
(from rev 271918, clxclient/trunk/PKGBUILD)

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

Copied: clxclient/repos/community-testing-x86_64/PKGBUILD (from rev 271918, 
clxclient/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-02 19:19:54 UTC (rev 271919)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: Christoph Zeiler 
+# Contributor: Tom K 
+# Contributor: Shinlun Hsieh 
+# Contributor: Philipp Überbacher 
+
+pkgname=clxclient
+pkgver=3.9.0
+pkgrel=3
+pkgdesc="C++ wrapper library around the X Window System API"
+arch=('x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/;
+license=('LGPL')
+depends=('gcc-libs' 'libxft')
+makedepends=('clthreads')
+source=("${url}downloads/${pkgname}-${pkgver}.tar.bz2")
+sha512sums=('4bbd621ceeebf3dfc36f0a3d02c63ba1c0e818e691e5c9681e737710824f53a58c682fb2475a7a2bba4f2dfd520166b782977320ceb73de39448cf512e26c842')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # patch call to ldconfig to be not global (upstream fix requested)
+  sed -i 's/ldconfig/& -N $(PREFIX)\/$(LIBDIR)/' Makefile
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  make PREFIX="${pkgdir}/usr" LIBDIR=lib
+}
+
+package(){
+  cd "${pkgname}-${pkgver}"
+  # install of include dir due to broken Makefile (upstream fix requested)
+  install -d "${pkgdir}/usr/include"
+  make PREFIX="${pkgdir}/usr" LIBDIR=lib install
+}
+


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

2017-12-02 Thread David Runge via arch-commits
Date: Saturday, December 2, 2017 @ 19:19:22
  Author: dvzrv
Revision: 271918

upgpkg: clxclient 3.9.0-3

Updating maintainer. Switching to sha512sums. Adding info to fix of Makefile. 
Adding info on install fix (again, Makefile). Minor fixes.

Modified:
  clxclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 19:15:25 UTC (rev 271917)
+++ PKGBUILD2017-12-02 19:19:22 UTC (rev 271918)
@@ -1,5 +1,6 @@
 # $Id$
-# Maintainer : speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 # Contributor: Christoph Zeiler 
 # Contributor: Tom K 
 # Contributor: Shinlun Hsieh 
@@ -7,7 +8,7 @@
 
 pkgname=clxclient
 pkgver=3.9.0
-pkgrel=2
+pkgrel=3
 pkgdesc="C++ wrapper library around the X Window System API"
 arch=('x86_64')
 url="http://kokkinizita.linuxaudio.org/linuxaudio/;
@@ -14,23 +15,24 @@
 license=('LGPL')
 depends=('gcc-libs' 'libxft')
 makedepends=('clthreads')
-source=("${url}downloads/$pkgname-$pkgver.tar.bz2")
-md5sums=('bd6df73f688c9be1b3afef58283d7ef5')
+source=("${url}downloads/${pkgname}-${pkgver}.tar.bz2")
+sha512sums=('4bbd621ceeebf3dfc36f0a3d02c63ba1c0e818e691e5c9681e737710824f53a58c682fb2475a7a2bba4f2dfd520166b782977320ceb73de39448cf512e26c842')
 
 prepare() {
   cd "$pkgname-$pkgver"
-  # call ldconfig locally
-  sed -i 's/ldconfig/& -N $(DESTDIR)$(PREFIX)\/$(LIBDIR)/' Makefile
+  # patch call to ldconfig to be not global (upstream fix requested)
+  sed -i 's/ldconfig/& -N $(PREFIX)\/$(LIBDIR)/' Makefile
 }
 
 build() {
-  cd "$pkgname-$pkgver"
-  make PREFIX="$pkgdir/usr" LIBDIR=lib
+  cd "${pkgname}-${pkgver}"
+  make PREFIX="${pkgdir}/usr" LIBDIR=lib
 }
 
 package(){
-  cd "$pkgname-$pkgver"
-  install -d "$pkgdir/usr/include"
-  make PREFIX="$pkgdir/usr" LIBDIR=lib install
+  cd "${pkgname}-${pkgver}"
+  # install of include dir due to broken Makefile (upstream fix requested)
+  install -d "${pkgdir}/usr/include"
+  make PREFIX="${pkgdir}/usr" LIBDIR=lib install
 }
 


[arch-commits] Commit in (xnee)

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 19:15:25
  Author: jlichtblau
Revision: 271917

xnee removed from community

Deleted:
  xnee/


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 19:06:43
  Author: jlichtblau
Revision: 271914

upgpkg: newsboat 2.10.1-2 - FS#56519 fixed

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

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 19:00:32 UTC (rev 271913)
+++ PKGBUILD2017-12-02 19:06:43 UTC (rev 271914)
@@ -4,13 +4,13 @@
 
 pkgname=newsboat
 pkgver=2.10.1
-pkgrel=1
+pkgrel=2
 pkgdesc="An RSS/Atom feed reader for text terminals"
 arch=('x86_64')
 url="https://newsboat.org/;
 license=('custom: MIT')
 depends=('curl' 'json-c' 'libxml2' 'sqlite' 'stfl')
-makedepends=('swig' 'gettext')
+makedepends=('swig' 'gettext' 'asciidoc')
 replaces=('newsbeuter')
 changelog=$pkgname.changelog
 options=('!emptydirs')
@@ -23,6 +23,7 @@
   cd "${srcdir}"/$pkgname-$pkgver
 
   make prefix=/usr
+  make doc
 }
 
 package() {

Modified: newsboat.changelog
===
--- newsboat.changelog  2017-12-02 19:00:32 UTC (rev 271913)
+++ newsboat.changelog  2017-12-02 19:06:43 UTC (rev 271914)
@@ -1,3 +1,6 @@
+2017-12-02 Jaroslav Lichtblau 
+   * newsboat 2.10.1-2 FS#56519 fixed
+
 2017-10-21 Jaroslav Lichtblau 
* newsboat 2.10.1-1
 


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 19:06:54
  Author: jlichtblau
Revision: 271915

archrelease: copy trunk to community-x86_64

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

+
 PKGBUILD   |   67 
 newsboat.changelog |  105 ++-
 2 files changed, 88 insertions(+), 84 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 19:06:43 UTC (rev 271914)
+++ PKGBUILD2017-12-02 19:06:54 UTC (rev 271915)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Sven Pfleiderer 
-
-pkgname=newsboat
-pkgver=2.10.1
-pkgrel=1
-pkgdesc="An RSS/Atom feed reader for text terminals"
-arch=('i686' 'x86_64')
-url="https://newsboat.org/;
-license=('custom: MIT')
-depends=('curl' 'json-c' 'libxml2' 'sqlite' 'stfl')
-makedepends=('swig' 'gettext')
-replaces=('newsbeuter')
-changelog=$pkgname.changelog
-options=('!emptydirs')
-source=(https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
-validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') #Newsboat project 

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

Copied: newsboat/repos/community-x86_64/PKGBUILD (from rev 271914, 
newsboat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 19:06:54 UTC (rev 271915)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Sven Pfleiderer 
+
+pkgname=newsboat
+pkgver=2.10.1
+pkgrel=2
+pkgdesc="An RSS/Atom feed reader for text terminals"
+arch=('x86_64')
+url="https://newsboat.org/;
+license=('custom: MIT')
+depends=('curl' 'json-c' 'libxml2' 'sqlite' 'stfl')
+makedepends=('swig' 'gettext' 'asciidoc')
+replaces=('newsbeuter')
+changelog=$pkgname.changelog
+options=('!emptydirs')
+source=(https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
+validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') #Newsboat project 

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

Deleted: newsboat.changelog
===
--- newsboat.changelog  2017-12-02 19:06:43 UTC (rev 271914)
+++ newsboat.changelog  2017-12-02 19:06:54 UTC (rev 271915)
@@ -1,51 +0,0 @@
-2017-10-21 Jaroslav Lichtblau 
-   * newsboat 2.10.1-1
-
-2017-10-21 Jaroslav Lichtblau 
-   * newsboat 2.10-1 moving over to the new maintained fork of newsbeuter
-
-2015-09-13 Jaroslav Lichtblau 
-   * newsbeuter 2.9-4 ncurses6 re-rebuild
-
-2015-09-13 Jaroslav Lichtblau 
-   * newsbeuter 2.9-3 segmentation fault on podcasts downloads #167 fix
-
-2015-02-19 Jaroslav Lichtblau 
-   * newsbeuter 2.9-1
-
-2014-01-27 Jaroslav Lichtblau 
-   * newsbeuter 2.8-1
-
-2013-09-02 Jaroslav Lichtblau 
-   * newsbeuter 2.7-1
-
-2013-03-28 Jaroslav Lichtblau 
-   * newsbeuter 2.6-1
-
-2013-03-07 Andrea Scarpino 
-   * ruby 2.0 rebuild
-
-2012-02-23 Jaroslav Lichtblau 
-   * newsbeuter 2.5-1
-
-2011-01-06 Jaroslav Lichtblau 
-   * newsbeuter 2.4-1
-
-2010-06-26 Jaroslav Lichtblau 
-   * Update to major release v2.3
-   * FS#19744 fixed - non-working locale
-
-2010-03-17 Jaroslav Lichtblau 
-   * Update to major release v2.2
-
-2009-12-19 Jaroslav Lichtblau 
-   * Update to major release v2.1
-
-2009-10-28 Biru Ionut 
-   * Fixed FS#16857
-
-2009-10-26 Jaroslav Lichtblau 
-   * Fixed FS#16850 
-

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

2017-12-02 Thread Jan Steffens via arch-commits
Date: Saturday, December 2, 2017 @ 19:05:05
  Author: heftig
Revision: 311489

overhaul

Added:
  imagemagick/trunk/arch-fonts.diff
Modified:
  imagemagick/trunk/PKGBUILD
Deleted:
  imagemagick/trunk/perlmagick.rpath.patch

+
 PKGBUILD   |  150 +--
 arch-fonts.diff|  107 +
 perlmagick.rpath.patch |   11 ---
 3 files changed, 188 insertions(+), 80 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 16:46:53 UTC (rev 311488)
+++ PKGBUILD2017-12-02 19:05:05 UTC (rev 311489)
@@ -2,98 +2,110 @@
 # Maintainer: Eric Bélanger 
 
 pkgbase=imagemagick
-pkgname=('imagemagick' 'imagemagick-doc')
+pkgname=(imagemagick imagemagick-doc)
 pkgver=6.9.9.25
 pkgrel=1
-arch=('x86_64')
-url="http://www.imagemagick.org/;
-license=('custom')
-makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript'
- 'openexr' 'libwmf' 'librsvg' 'libxml2' 'liblqr' 'openjpeg2' 
'libraw' 'libraqm'
- 'opencl-headers' 'opencl-icd-loader' 'libwebp' 'subversion' 'glu')
-source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
-perlmagick.rpath.patch)
+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)
+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=('5d78b1b50c6d71aee9d5aba8d2c2d1f26b739d432a0cfef5afb8316a45e58771'
 'SKIP'
-'17218bbecc17f3c7a86935a09d5a47e46113a1fc28f7d91c2fe495019cc36088')
-validpgpkeys=('D8272EF51DA223E4D05B466989AB63D48277377A')
+'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
+validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
 
 prepare() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  sed '/AC_PATH_XTRA/d' -i configure.ac
-  patch -p0 -i "${srcdir}/perlmagick.rpath.patch"
-  autoreconf --force --install
+  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 ImageMagick-${pkgver%.*}-${pkgver##*.}
-  [[ $CARCH = "i686" ]] && EXTRAOPTS="--with-gcc-arch=i686"
-  [[ $CARCH = "x86_64" ]] && EXTRAOPTS="--with-gcc-arch=x86-64"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --with-modules \
---enable-hdri --with-wmf --with-openexr --with-xml \
---with-webp --with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \
---with-perl --with-perl-options="INSTALLDIRS=vendor" --with-lqr 
--with-rsvg \
---enable-opencl --with-openjp2 --without-gvc --without-djvu 
--without-autotrace \
---without-jbig --without-fpx --without-dps --without-fftw $EXTRAOPTS
+  cd $_tarname
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-dejavu-font-dir=/usr/share/fonts/TTF \
+--with-gs-font-dir=/usr/share/fonts/gsfonts \
+--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 ImageMagick-${pkgver%.*}-${pkgver##*.}
-#  make check
-}
+check() (
+  cd $_tarname
+  ulimit -n 4096
+  make check
+)
 
 package_imagemagick() {
-  pkgdesc="An image viewing/manipulation program"
-  depends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'liblqr' 'libraqm' 
'opencl-icd-loader')
-  optdepends=('imagemagick-doc: for additional information'
-  'ghostscript: for Ghostscript support' 
-  'openexr: for OpenEXR support' 
- 'openjpeg2: for JP2 support' 
-  'libwmf: for WMF support' 
-  'librsvg: for SVG support' 
-  'libxml2: for XML support' 
-  'libpng: for PNG support' 
- 'libwebp: for WEBP support'
-  'libraw: for DNG support')
-  backup=("etc/ImageMagick-${pkgver%%.*}/coder.xml"
-  "etc/ImageMagick-${pkgver%%.*}/colors.xml"
-  "etc/ImageMagick-${pkgver%%.*}/delegates.xml"
-  "etc/ImageMagick-${pkgver%%.*}/log.xml"
-  

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

2017-12-02 Thread David Runge via arch-commits
Date: Saturday, December 2, 2017 @ 19:00:18
  Author: dvzrv
Revision: 271910

upgpkg: clthreads 2.4.0-3

Updating maintainer. Switching to sha512sums. Adding comment about install fix 
(due to broken install target in Makefile). Minor fixes.

Modified:
  clthreads/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 18:43:38 UTC (rev 271909)
+++ PKGBUILD2017-12-02 19:00:18 UTC (rev 271910)
@@ -1,5 +1,6 @@
 # $Id$
-# Maintainer : speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 # Contributor: Christoph Zeiler 
 # Contributor: Tom K 
 # Contributor: Shinlun Hsieh 
@@ -7,22 +8,23 @@
 
 pkgname=clthreads
 pkgver=2.4.0
-pkgrel=2
+pkgrel=3
 pkgdesc="C++ wrapper library around the POSIX threads API"
 arch=('x86_64')
 url="http://kokkinizita.linuxaudio.org/linuxaudio/;
 license=('LGPL')
 depends=('gcc-libs')
-source=("${url}downloads/$pkgname-$pkgver.tar.bz2")
-md5sums=('90b650f1f5c9f39f4d77f73aca3c53be')
+source=("${url}downloads/${pkgname}-${pkgver}.tar.bz2")
+sha512sums=('c307d9611e0530469b36367f05721e6676d7bb186be97d38b851e66d9f670663ceceedf065823b27ac5864725d52cc2f462fd8d96f1398a202e30d82910ec58b')
 
 build() {
-  cd "$pkgname-$pkgver"
+  cd "${pkgname}-${pkgver}"
   make
 }
 
 package(){
-  cd "$pkgname-$pkgver"
-  install -d "$pkgdir/usr/include"
-  make PREFIX="$pkgdir/usr" LIBDIR=lib install
+  cd "${pkgname}-${pkgver}"
+  # mandatory fix for broken Makefile behavior (upstream fix is requested)
+  install -d "${pkgdir}/usr/include"
+  make PREFIX="${pkgdir}/usr" LIBDIR=lib install
 }


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

2017-12-02 Thread David Runge via arch-commits
Date: Saturday, December 2, 2017 @ 19:00:29
  Author: dvzrv
Revision: 271912

archrelease: copy trunk to community-testing-x86_64

Added:
  clthreads/repos/community-testing-x86_64/
  clthreads/repos/community-testing-x86_64/PKGBUILD
(from rev 271911, clthreads/trunk/PKGBUILD)

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

Copied: clthreads/repos/community-testing-x86_64/PKGBUILD (from rev 271911, 
clthreads/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-02 19:00:29 UTC (rev 271912)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: Christoph Zeiler 
+# Contributor: Tom K 
+# Contributor: Shinlun Hsieh 
+# Contributor: Philipp Überbacher 
+
+pkgname=clthreads
+pkgver=2.4.0
+pkgrel=3
+pkgdesc="C++ wrapper library around the POSIX threads API"
+arch=('x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/;
+license=('LGPL')
+depends=('gcc-libs')
+source=("${url}downloads/${pkgname}-${pkgver}.tar.bz2")
+sha512sums=('c307d9611e0530469b36367f05721e6676d7bb186be97d38b851e66d9f670663ceceedf065823b27ac5864725d52cc2f462fd8d96f1398a202e30d82910ec58b')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  make
+}
+
+package(){
+  cd "${pkgname}-${pkgver}"
+  # mandatory fix for broken Makefile behavior (upstream fix is requested)
+  install -d "${pkgdir}/usr/include"
+  make PREFIX="${pkgdir}/usr" LIBDIR=lib install
+}


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 19:00:32
  Author: jlichtblau
Revision: 271913

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 19:00:29 UTC (rev 271912)
+++ PKGBUILD2017-12-02 19:00:32 UTC (rev 271913)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov
-# Contributor: Massimiliano Torromeo 
-
-pkgbase=python-daemon
-pkgname=(python-daemon python2-daemon)
-pkgver=2.1.2
-pkgrel=2
-pkgdesc='Library to implement a well-behaved Unix daemon process'
-arch=(any)
-url='https://pypi.python.org/pypi/python-daemon'
-license=(Apache)
-makedepends=(python-setuptools python2-setuptools python-docutils 
python2-docutils python-lockfile python2-lockfile)
-checkdepends=(python-mock python2-mock python-testscenarios 
python2-testscenarios)
-source=(https://pypi.python.org/packages/b2/fb/a280d65f81e9d69989c8d6c4e0bb18d7280cdcd6d406a2cc3f4eb47d4402/$pkgbase-$pkgver.tar.gz{,.asc})
-validpgpkeys=('517CF14BB2F398B0CB354855B8B24C06AC128405') # Ben Finney
-sha1sums=('e333e9031424611b8974d2b2d2804dd26c4fae8e'
-  'SKIP')
-
-prepare() {
-  cp -a python-daemon-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/python-daemon-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/python-daemon-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/python-daemon-$pkgver"
-# test fails
-#  python setup.py test
-
-  cd "$srcdir/python-daemon-$pkgver-py2"
-  python2 setup.py test
-}
-
-package_python-daemon() {
-  depends=(python python-lockfile)
-
-  cd "$srcdir/python-daemon-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.ASF-2 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.ASF-2"
-  install -Dm644 LICENSE.GPL-3 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.GPL-3"
-}
-
-package_python2-daemon() {
-  depends=(python2 python2-lockfile)
-
-  cd "$srcdir/python-daemon-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.ASF-2 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.ASF-2"
-  install -Dm644 LICENSE.GPL-3 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.GPL-3"
-}

Copied: python-daemon/repos/community-any/PKGBUILD (from rev 271911, 
python-daemon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 19:00:32 UTC (rev 271913)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Anatol Pomozov
+# Contributor: Massimiliano Torromeo 
+
+pkgbase=python-daemon
+pkgname=('python-daemon' 'python2-daemon')
+pkgver=2.1.2
+pkgrel=3
+pkgdesc='Library to implement a well-behaved Unix daemon process'
+arch=('any')
+url='https://pypi.python.org/pypi/python-daemon'
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-docutils' 
'python2-docutils' 'python-lockfile' 'python2-lockfile')
+checkdepends=('python-mock' 'python2-mock' 'python-testscenarios' 
'python2-testscenarios')
+source=(https://pypi.python.org/packages/b2/fb/a280d65f81e9d69989c8d6c4e0bb18d7280cdcd6d406a2cc3f4eb47d4402/$pkgbase-$pkgver.tar.gz{,.asc})
+validpgpkeys=('517CF14BB2F398B0CB354855B8B24C06AC128405') # Ben Finney
+sha256sums=('261c859be5c12ae7d4286dc6951e87e9e1a70a882a8b41fd926efc1ec4214f73'
+'SKIP')
+
+prepare() {
+  cp -a python-daemon-$pkgver{,-py2}
+}
+
+build() {
+  cd "${srcdir}"/python-daemon-$pkgver
+  python setup.py build
+
+  cd "${srcdir}"/python-daemon-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "${srcdir}"/python-daemon-$pkgver
+# test fails
+# python setup.py test
+
+  cd "${srcdir}"/python-daemon-$pkgver-py2
+  python2 setup.py test
+}
+
+package_python-daemon() {
+  depends=('python' 'python-lockfile' 'python-docutils')
+
+  cd "${srcdir}"/python-daemon-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.ASF-2 
"${pkgdir}"/usr/share/licenses/$pkgname/LICENSE.ASF-2
+  install -Dm644 LICENSE.GPL-3 
"${pkgdir}"/usr/share/licenses/$pkgname/LICENSE.GPL-3
+}
+
+package_python2-daemon() {
+  depends=('python2' 'python2-lockfile' 'python2-docutils')
+
+  cd "${srcdir}"/python-daemon-$pkgver-py2
+
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm644 LICENSE.ASF-2 
"${pkgdir}"/usr/share/licenses/$pkgname/LICENSE.ASF-2
+  install -Dm644 LICENSE.GPL-3 
"${pkgdir}"/usr/share/licenses/$pkgname/LICENSE.GPL-3
+}


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 19:00:21
  Author: jlichtblau
Revision: 271911

upgpkg: python-daemon 2.1.2-3 - FS#54400 fix

Modified:
  python-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 19:00:18 UTC (rev 271910)
+++ PKGBUILD2017-12-02 19:00:21 UTC (rev 271911)
@@ -1,21 +1,22 @@
 # $Id$
-# Maintainer: Anatol Pomozov
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Anatol Pomozov
 # Contributor: Massimiliano Torromeo 
 
 pkgbase=python-daemon
-pkgname=(python-daemon python2-daemon)
+pkgname=('python-daemon' 'python2-daemon')
 pkgver=2.1.2
-pkgrel=2
+pkgrel=3
 pkgdesc='Library to implement a well-behaved Unix daemon process'
-arch=(any)
+arch=('any')
 url='https://pypi.python.org/pypi/python-daemon'
-license=(Apache)
-makedepends=(python-setuptools python2-setuptools python-docutils 
python2-docutils python-lockfile python2-lockfile)
-checkdepends=(python-mock python2-mock python-testscenarios 
python2-testscenarios)
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-docutils' 
'python2-docutils' 'python-lockfile' 'python2-lockfile')
+checkdepends=('python-mock' 'python2-mock' 'python-testscenarios' 
'python2-testscenarios')
 
source=(https://pypi.python.org/packages/b2/fb/a280d65f81e9d69989c8d6c4e0bb18d7280cdcd6d406a2cc3f4eb47d4402/$pkgbase-$pkgver.tar.gz{,.asc})
 validpgpkeys=('517CF14BB2F398B0CB354855B8B24C06AC128405') # Ben Finney
-sha1sums=('e333e9031424611b8974d2b2d2804dd26c4fae8e'
-  'SKIP')
+sha256sums=('261c859be5c12ae7d4286dc6951e87e9e1a70a882a8b41fd926efc1ec4214f73'
+'SKIP')
 
 prepare() {
   cp -a python-daemon-$pkgver{,-py2}
@@ -22,36 +23,38 @@
 }
 
 build() {
-  cd "$srcdir/python-daemon-$pkgver"
+  cd "${srcdir}"/python-daemon-$pkgver
   python setup.py build
 
-  cd "$srcdir/python-daemon-$pkgver-py2"
+  cd "${srcdir}"/python-daemon-$pkgver-py2
   python2 setup.py build
 }
 
 check() {
-  cd "$srcdir/python-daemon-$pkgver"
+  cd "${srcdir}"/python-daemon-$pkgver
 # test fails
-#  python setup.py test
+# python setup.py test
 
-  cd "$srcdir/python-daemon-$pkgver-py2"
+  cd "${srcdir}"/python-daemon-$pkgver-py2
   python2 setup.py test
 }
 
 package_python-daemon() {
-  depends=(python python-lockfile)
+  depends=('python' 'python-lockfile' 'python-docutils')
 
-  cd "$srcdir/python-daemon-$pkgver"
+  cd "${srcdir}"/python-daemon-$pkgver
+
   python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.ASF-2 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.ASF-2"
-  install -Dm644 LICENSE.GPL-3 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.GPL-3"
+  install -Dm644 LICENSE.ASF-2 
"${pkgdir}"/usr/share/licenses/$pkgname/LICENSE.ASF-2
+  install -Dm644 LICENSE.GPL-3 
"${pkgdir}"/usr/share/licenses/$pkgname/LICENSE.GPL-3
 }
 
 package_python2-daemon() {
-  depends=(python2 python2-lockfile)
+  depends=('python2' 'python2-lockfile' 'python2-docutils')
 
-  cd "$srcdir/python-daemon-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.ASF-2 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.ASF-2"
-  install -Dm644 LICENSE.GPL-3 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.GPL-3"
+  cd "${srcdir}"/python-daemon-$pkgver-py2
+
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm644 LICENSE.ASF-2 
"${pkgdir}"/usr/share/licenses/$pkgname/LICENSE.ASF-2
+  install -Dm644 LICENSE.GPL-3 
"${pkgdir}"/usr/share/licenses/$pkgname/LICENSE.GPL-3
 }


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 18:43:38
  Author: jlichtblau
Revision: 271909

archrelease: copy trunk to community-x86_64

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

---+
 PKGBUILD  |   74 ++---
 tellico.changelog |   85 ++--
 2 files changed, 81 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 18:43:26 UTC (rev 271908)
+++ PKGBUILD2017-12-02 18:43:38 UTC (rev 271909)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Ray Rashif 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=tellico
-pkgver=3.1
-pkgrel=1
-pkgdesc="A collection manager for KDE"
-arch=('i686' 'x86_64')
-url="http://tellico-project.org/;
-license=('GPL')
-depends=('exempi' 'kio' 'libksane' 'libkcddb' 'libcddb' 'libdiscid' 
'hicolor-icon-theme' 'kfilemetadata'
- 'knewstuff' 'kxmlgui' 'kitemmodels' 'python2' 'solid' 'khtml' 'yaz' 
'taglib' 'poppler-qt5' 'qt5-base')
-makedepends=('cmake' 'extra-cmake-modules' 'kdoctools' 'libkcddb')
-changelog=$pkgname.changelog
-source=(http://tellico-project.org/files/$pkgname-$pkgver.tar.xz)
-sha256sums=('ca549c249ee2562ef583a2b2dedc76843660ff726ed2cd26025dd4607b59a124')
-
-build() {
-  cd "${srcdir}"
-
-  mkdir build && cd build
-
-  cmake ../$pkgname-$pkgver -DCMAKE_BUILD_TYPE=Release 
-DCMAKE_INSTALL_PREFIX=/usr -DWITH_Nepomuk=OFF
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-
-  make DESTDIR="${pkgdir}" install
-  
-# fix python 2.7 path
-  find "${pkgdir}" -iname "*.py" | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: tellico/repos/community-x86_64/PKGBUILD (from rev 271908, 
tellico/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 18:43:38 UTC (rev 271909)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Ray Rashif 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=tellico
+pkgver=3.1
+pkgrel=2
+pkgdesc="A collection manager for KDE"
+arch=('x86_64')
+url="http://tellico-project.org/;
+license=('GPL')
+depends=('exempi' 'kio' 'libksane' 'libkcddb' 'libcddb' 'libcdio' 
'hicolor-icon-theme' 'kfilemetadata'
+ 'knewstuff' 'kxmlgui' 'kitemmodels' 'python2' 'solid' 'khtml' 'yaz' 
'taglib' 'poppler-qt5' 'qt5-base')
+makedepends=('cmake' 'extra-cmake-modules' 'kdoctools' 'libkcddb')
+changelog=$pkgname.changelog
+source=(http://tellico-project.org/files/$pkgname-$pkgver.tar.xz)
+sha256sums=('ca549c249ee2562ef583a2b2dedc76843660ff726ed2cd26025dd4607b59a124')
+
+build() {
+  cd "${srcdir}"
+
+  mkdir build && cd build
+
+  cmake ../$pkgname-$pkgver -DCMAKE_BUILD_TYPE=Release 
-DCMAKE_INSTALL_PREFIX=/usr -DWITH_Nepomuk=OFF
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+
+  make DESTDIR="${pkgdir}" install
+  
+# fix python 2.7 path
+  find "${pkgdir}" -iname "*.py" | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Deleted: tellico.changelog
===
--- tellico.changelog   2017-12-02 18:43:26 UTC (rev 271908)
+++ tellico.changelog   2017-12-02 18:43:38 UTC (rev 271909)
@@ -1,41 +0,0 @@
-2017-10-18 Jaroslav Lichtblau 
-   * tellico 3.1-1
-
-2017-03-31 Jaroslav Lichtblau 
-   * tellico 3.0.2-1
-
-2017-02-21 Jaroslav Lichtblau 
-   * tellico 3.0.1-1
-
-2016-12-20 Jaroslav Lichtblau 
-   * tellico 3.0-4 FS#52202 fix
-
-2016-12-18 Jaroslav Lichtblau 
-   * tellico 3.0-3 FS#52188 fix
-
-2016-11-09 Jaroslav Lichtblau 
-   * tellico 3.0-1
-
-2016-04-30 Jaroslav Lichtblau 
-   * tellico 2.3.11-2 pacman hooks rebuild
-
-2015-12-11 Jaroslav Lichtblau 
-   * tellico 2.3.11-1
-
-2015-02-16 Jaroslav Lichtblau 
-   * tellico 2.3.10-1
-
-2014-06-28 Jaroslav Lichtblau 
-   * tellico 2.3.9-1
-
-2014-03-09 Andrea Scarpino 
-   * tellico 2.3.8-5 be sure Nepomuk support is disabled
-
-2014-03-09 Jaroslav Lichtblau 
-   * tellico 2.3.8-4 nepomuk support 

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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 18:43:26
  Author: jlichtblau
Revision: 271908

upgpkg: tellico 3.1-2 - FS#56026 fixed

Modified:
  tellico/trunk/PKGBUILD
  tellico/trunk/tellico.changelog

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 18:26:35 UTC (rev 271907)
+++ PKGBUILD2017-12-02 18:43:26 UTC (rev 271908)
@@ -6,12 +6,12 @@
 
 pkgname=tellico
 pkgver=3.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A collection manager for KDE"
 arch=('x86_64')
 url="http://tellico-project.org/;
 license=('GPL')
-depends=('exempi' 'kio' 'libksane' 'libkcddb' 'libcddb' 'libdiscid' 
'hicolor-icon-theme' 'kfilemetadata'
+depends=('exempi' 'kio' 'libksane' 'libkcddb' 'libcddb' 'libcdio' 
'hicolor-icon-theme' 'kfilemetadata'
  'knewstuff' 'kxmlgui' 'kitemmodels' 'python2' 'solid' 'khtml' 'yaz' 
'taglib' 'poppler-qt5' 'qt5-base')
 makedepends=('cmake' 'extra-cmake-modules' 'kdoctools' 'libkcddb')
 changelog=$pkgname.changelog

Modified: tellico.changelog
===
--- tellico.changelog   2017-12-02 18:26:35 UTC (rev 271907)
+++ tellico.changelog   2017-12-02 18:43:26 UTC (rev 271908)
@@ -1,3 +1,6 @@
+2017-12-02 Jaroslav Lichtblau 
+   * tellico 3.1-2 FS#56026 fix
+
 2017-10-18 Jaroslav Lichtblau 
* tellico 3.1-1
 


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 18:26:35
  Author: jlichtblau
Revision: 271907

archrelease: copy trunk to community-x86_64

Added:
  mapnik/repos/community-x86_64/PKGBUILD
(from rev 271905, mapnik/trunk/PKGBUILD)
  mapnik/repos/community-x86_64/mapnik.install
(from rev 271905, mapnik/trunk/mapnik.install)
Deleted:
  mapnik/repos/community-x86_64/PKGBUILD
  mapnik/repos/community-x86_64/mapnik.install

+
 PKGBUILD   |   89 +++
 mapnik.install |   22 ++---
 2 files changed, 56 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 18:26:30 UTC (rev 271906)
+++ PKGBUILD2017-12-02 18:26:35 UTC (rev 271907)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: David Dent 
-# Contributor: orbisvicis 
-
-pkgname=mapnik
-pkgver=3.0.16
-pkgrel=2
-pkgdesc="Free Toolkit for developing mapping applications and rendering 
beautiful maps"
-arch=('x86_64')
-url="http://mapnik.org/;
-license=('LGPL')
-depends=('boost-libs' 'icu' 'libpng' 'libjpeg-turbo' 'libtiff' 'freetype2'
- 'libxml2' 'python2' 'proj' 'cairo' 'cairomm' 'python2-cairo'
- 'postgresql-libs' 'postgis' 'gdal' 'curl' 'libtool')
-optdepends=('libxslt: Web Map Service'
-'python2-lxml:Web Map Service'
-'python2-pillow:  Web Map Service'
-'python-nose: Web Map Service'
-'apache:  Web Map Service'
-'mod_fcgid:   Web Map Service - or:'
-'mod_wsgi2:   Web Map Service')
-makedepends=('scons' 'boost' 'git')
-install="mapnik.install"
-source=("https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-v$pkgver.tar.bz2;)
-sha256sums=('0a0e6351d1a32922327555b9835d4843aade752adecadde309fa856b72dfb1b1')
-
-build() {
-  cd "$srcdir/$pkgname-v$pkgver"
-  PYTHON=python2
-  scons configure \
-PREFIX="/usr" \
-INPUT_PLUGINS=all \
-XMLPARSER=libxml2 \
-DESTDIR="$pkgdir" \
-
CUSTOM_CXXFLAGS="-DBOOST_OPTIONAL_CONFIG_USE_OLD_IMPLEMENTATION_OF_OPTIONAL"
-  scons -j1 # $MAKEFLAGS
-}
-
-package(){
-  cd "$srcdir/$pkgname-v$pkgver"
-  scons install
-}

Copied: mapnik/repos/community-x86_64/PKGBUILD (from rev 271905, 
mapnik/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 18:26:35 UTC (rev 271907)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Sergej Pupykin 
+# Contributor: David Dent 
+# Contributor: orbisvicis 
+
+pkgname=mapnik
+pkgver=3.0.17
+pkgrel=1
+pkgdesc="Free Toolkit for developing mapping applications and rendering 
beautiful maps"
+arch=('x86_64')
+url="http://mapnik.org/;
+license=('LGPL')
+depends=('boost-libs' 'icu' 'libpng' 'libjpeg-turbo' 'libtiff' 'freetype2'
+ 'libxml2' 'python2' 'proj' 'cairo' 'cairomm' 'python2-cairo'
+ 'postgresql-libs' 'postgis' 'gdal' 'curl' 'libtool')
+makedepends=('scons' 'boost' 'git')
+optdepends=('libxslt: Web Map Service'
+'python2-lxml:Web Map Service'
+'python2-pillow:  Web Map Service'
+'python-nose: Web Map Service'
+'apache:  Web Map Service'
+'mod_fcgid:   Web Map Service - or:'
+'mod_wsgi2:   Web Map Service')
+install=$pkgname.install
+source=(https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-v$pkgver.tar.bz2)
+sha256sums=('5ccd2ba7b82ca00028c6ce3ae5856b41d6f658217b680288f14b9c416d17ccb2')
+
+build() {
+  cd "${srcdir}"/$pkgname-v$pkgver
+
+  PYTHON=python2
+  scons configure \
+PREFIX="/usr" \
+INPUT_PLUGINS=all \
+XMLPARSER=libxml2 \
+DESTDIR="$pkgdir" \
+
CUSTOM_CXXFLAGS="-DBOOST_OPTIONAL_CONFIG_USE_OLD_IMPLEMENTATION_OF_OPTIONAL"
+  scons -j1 # $MAKEFLAGS
+}
+
+package(){
+  cd "${srcdir}"/$pkgname-v$pkgver
+  scons install
+}

Deleted: mapnik.install
===
--- mapnik.install  2017-12-02 18:26:30 UTC (rev 271906)
+++ mapnik.install  2017-12-02 18:26:35 UTC (rev 271907)
@@ -1,11 +0,0 @@
-post_install() {
-  /sbin/ldconfig
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: mapnik/repos/community-x86_64/mapnik.install (from rev 271905, 
mapnik/trunk/mapnik.install)
===
--- mapnik.install  (rev 0)
+++ mapnik.install  2017-12-02 18:26:35 UTC (rev 271907)
@@ -0,0 +1,11 @@
+post_install() {
+  /sbin/ldconfig
+}
+
+post_upgrade() {
+  post_install
+}
+

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

2017-12-02 Thread Felix Yan via arch-commits
Date: Saturday, December 2, 2017 @ 18:26:30
  Author: felixonmars
Revision: 271906

archrelease: copy trunk to community-x86_64

Added:
  cabal-install/repos/community-x86_64/PKGBUILD
(from rev 271904, cabal-install/trunk/PKGBUILD)
Deleted:
  cabal-install/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 18:26:22 UTC (rev 271905)
+++ PKGBUILD2017-12-02 18:26:30 UTC (rev 271906)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Dziedzic 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Arch Haskell Team 
-
-pkgname=cabal-install
-pkgver=2.0.0.0
-pkgrel=4
-pkgdesc="The command-line interface for Cabal and Hackage."
-url="https://hackage.haskell.org/package/cabal-install;
-license=('custom:BSD3')
-arch=('x86_64')
-depends=('ghc-libs' "haskell-async" "haskell-base16-bytestring" 
"haskell-cryptohash-sha256"
- "haskell-echo" "haskell-edit-distance"
- "haskell-hackage-security" "haskell-hashable" "haskell-http" 
"haskell-mtl"
- "haskell-network" "haskell-network-uri" "haskell-random" 
"haskell-stm" "haskell-tar"
- "haskell-zlib")
-makedepends=('ghc')
-source=("https://hackage.haskell.org/package/cabal-install-${pkgver}/cabal-install-${pkgver}.tar.gz;)
-sha512sums=('4aac5f27d3d8650224bff5ae24e835d9b772596f3b455ef141bef77c831eebd252e1a17f19c3d534752aa03664273053f151fa3187bd7cd267eaab2a0e61b82d')
-
-build() {
-  cd "${srcdir}/$pkgname-$pkgver"
-
-  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}" \
--fnetwork-uri -f-old-directory -f-old-bytestring 
-f-debug-expensive-assertions -f-debug-conflict-sets \
--f-debug-tracetree -f-parsec -f-monolithic
-  runhaskell Setup build
-}
-
-package() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  runhaskell Setup copy --destdir="${pkgdir}"
-
-  install -Dm644 LICENSE \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  install -Dm644 bash-completion/cabal \
-"${pkgdir}/usr/share/bash-completion/completions/cabal"
-}

Copied: cabal-install/repos/community-x86_64/PKGBUILD (from rev 271904, 
cabal-install/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 18:26:30 UTC (rev 271906)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+
+pkgname=cabal-install
+pkgver=2.0.0.1
+pkgrel=1
+pkgdesc="The command-line interface for Cabal and Hackage."
+url="https://hackage.haskell.org/package/cabal-install;
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-base16-bytestring' 
'haskell-cryptohash-sha256'
+ 'haskell-echo' 'haskell-edit-distance' 'haskell-hackage-security' 
'haskell-hashable'
+ 'haskell-http' 'haskell-mtl' 'haskell-network' 'haskell-network-uri' 
'haskell-random'
+ 'haskell-stm' 'haskell-tar' 'haskell-zlib')
+makedepends=('ghc' 'haskell-pretty-show' 'haskell-quickcheck' 'haskell-tagged' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/package/cabal-install-${pkgver}/cabal-install-${pkgver}.tar.gz;)
+sha512sums=('136105745e22b83a9ab906ac71ebbf4a5992b1731dd152e88eaa8dfd0d3076ddaca80bf0077c8b59c085c7d2f2fd0a3786e6e4c70a47dc924995f23758952a16')
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver"
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/${pkgname}" --enable-tests \
+-fnetwork-uri -f-old-directory -f-old-bytestring 
-f-debug-expensive-assertions -f-debug-conflict-sets \
+-f-debug-tracetree -f-parsec -f-monolithic
+  runhaskell Setup build
+}
+
+check() {
+  cd $pkgname-$pkgver
+  runhaskell Setup test || warning "TODO: pass -dynamic somewhere"
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  runhaskell Setup copy --destdir="${pkgdir}"
+
+  install -Dm644 LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  install -Dm644 bash-completion/cabal \
+"${pkgdir}/usr/share/bash-completion/completions/cabal"
+}


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

2017-12-02 Thread Felix Yan via arch-commits
Date: Saturday, December 2, 2017 @ 18:26:04
  Author: felixonmars
Revision: 271904

upgpkg: cabal-install 2.0.0.1-1

Modified:
  cabal-install/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 18:13:54 UTC (rev 271903)
+++ PKGBUILD2017-12-02 18:26:04 UTC (rev 271904)
@@ -5,30 +5,36 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=cabal-install
-pkgver=2.0.0.0
-pkgrel=4
+pkgver=2.0.0.1
+pkgrel=1
 pkgdesc="The command-line interface for Cabal and Hackage."
 url="https://hackage.haskell.org/package/cabal-install;
 license=('custom:BSD3')
 arch=('x86_64')
-depends=('ghc-libs' "haskell-async" "haskell-base16-bytestring" 
"haskell-cryptohash-sha256"
- "haskell-echo" "haskell-edit-distance"
- "haskell-hackage-security" "haskell-hashable" "haskell-http" 
"haskell-mtl"
- "haskell-network" "haskell-network-uri" "haskell-random" 
"haskell-stm" "haskell-tar"
- "haskell-zlib")
-makedepends=('ghc')
+depends=('ghc-libs' 'haskell-async' 'haskell-base16-bytestring' 
'haskell-cryptohash-sha256'
+ 'haskell-echo' 'haskell-edit-distance' 'haskell-hackage-security' 
'haskell-hashable'
+ 'haskell-http' 'haskell-mtl' 'haskell-network' 'haskell-network-uri' 
'haskell-random'
+ 'haskell-stm' 'haskell-tar' 'haskell-zlib')
+makedepends=('ghc' 'haskell-pretty-show' 'haskell-quickcheck' 'haskell-tagged' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
 
source=("https://hackage.haskell.org/package/cabal-install-${pkgver}/cabal-install-${pkgver}.tar.gz;)
-sha512sums=('4aac5f27d3d8650224bff5ae24e835d9b772596f3b455ef141bef77c831eebd252e1a17f19c3d534752aa03664273053f151fa3187bd7cd267eaab2a0e61b82d')
+sha512sums=('136105745e22b83a9ab906ac71ebbf4a5992b1731dd152e88eaa8dfd0d3076ddaca80bf0077c8b59c085c7d2f2fd0a3786e6e4c70a47dc924995f23758952a16')
 
 build() {
   cd "${srcdir}/$pkgname-$pkgver"
 
-  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}" \
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/${pkgname}" --enable-tests \
 -fnetwork-uri -f-old-directory -f-old-bytestring 
-f-debug-expensive-assertions -f-debug-conflict-sets \
 -f-debug-tracetree -f-parsec -f-monolithic
   runhaskell Setup build
 }
 
+check() {
+  cd $pkgname-$pkgver
+  runhaskell Setup test || warning "TODO: pass -dynamic somewhere"
+}
+
 package() {
   cd "${srcdir}/$pkgname-$pkgver"
   runhaskell Setup copy --destdir="${pkgdir}"


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 18:26:22
  Author: jlichtblau
Revision: 271905

upgpkg: mapnik 3.0.17-1 - new upstream release

Modified:
  mapnik/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 18:26:04 UTC (rev 271904)
+++ PKGBUILD2017-12-02 18:26:22 UTC (rev 271905)
@@ -1,12 +1,12 @@
 # $Id$
-# Maintainer: Sergej Pupykin 
 # Maintainer: Jaroslav Lichtblau 
+# Contributor: Sergej Pupykin 
 # Contributor: David Dent 
 # Contributor: orbisvicis 
 
 pkgname=mapnik
-pkgver=3.0.16
-pkgrel=2
+pkgver=3.0.17
+pkgrel=1
 pkgdesc="Free Toolkit for developing mapping applications and rendering 
beautiful maps"
 arch=('x86_64')
 url="http://mapnik.org/;
@@ -14,6 +14,7 @@
 depends=('boost-libs' 'icu' 'libpng' 'libjpeg-turbo' 'libtiff' 'freetype2'
  'libxml2' 'python2' 'proj' 'cairo' 'cairomm' 'python2-cairo'
  'postgresql-libs' 'postgis' 'gdal' 'curl' 'libtool')
+makedepends=('scons' 'boost' 'git')
 optdepends=('libxslt: Web Map Service'
 'python2-lxml:Web Map Service'
 'python2-pillow:  Web Map Service'
@@ -21,13 +22,13 @@
 'apache:  Web Map Service'
 'mod_fcgid:   Web Map Service - or:'
 'mod_wsgi2:   Web Map Service')
-makedepends=('scons' 'boost' 'git')
-install="mapnik.install"
-source=("https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-v$pkgver.tar.bz2;)
-sha256sums=('0a0e6351d1a32922327555b9835d4843aade752adecadde309fa856b72dfb1b1')
+install=$pkgname.install
+source=(https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-v$pkgver.tar.bz2)
+sha256sums=('5ccd2ba7b82ca00028c6ce3ae5856b41d6f658217b680288f14b9c416d17ccb2')
 
 build() {
-  cd "$srcdir/$pkgname-v$pkgver"
+  cd "${srcdir}"/$pkgname-v$pkgver
+
   PYTHON=python2
   scons configure \
 PREFIX="/usr" \
@@ -39,6 +40,6 @@
 }
 
 package(){
-  cd "$srcdir/$pkgname-v$pkgver"
+  cd "${srcdir}"/$pkgname-v$pkgver
   scons install
 }


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 18:13:54
  Author: jlichtblau
Revision: 271903

FS#49982 fix

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 18:04:24 UTC (rev 271902)
+++ PKGBUILD2017-12-02 18:13:54 UTC (rev 271903)
@@ -13,6 +13,7 @@
 optdepends=('ffmpeg: for video post-processing'
 'rtmpdump: for rtmp streams support'
 'atomicparsley: for embedding thumbnails into m4a files'
+'python-crypto: for hlsnative downloader'
 'phantomjs')
 
source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
 sha256sums=('0a523db989f0f75e7e91676d6e416dad22a0e1ef3341cec652bf5b06c07fc5e1'


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 17:24:10
  Author: jlichtblau
Revision: 271900

archrelease: copy trunk to community-x86_64

Added:
  libofx/repos/community-x86_64/PKGBUILD
(from rev 271899, libofx/trunk/PKGBUILD)
Deleted:
  libofx/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 17:23:59 UTC (rev 271899)
+++ PKGBUILD2017-12-02 17:24:10 UTC (rev 271900)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Aaron Griffin 
-
-pkgbase=libofx
-pkgname=('libofx' 'libofx-doc')
-pkgver=0.9.12
-pkgrel=1
-pkgdesc="API for the OFX banking standard"
-arch=('x86_64')
-url="https://github.com/libofx;
-license=('GPL')
-depends=('opensp' 'curl' 'libxml++2.6')
-checkdepends=('gnupg')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('c15fa062fa11e759eb6d8c7842191db2185ee1b221a3f75e9650e2849d7b7373')
-
-build() {
-  cd $pkgbase-$pkgver
-  ./configure --prefix=/usr
-   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-   make CXXFLAGS+=-std=c++11
-}
-
-check() {
-  cd $pkgbase-$pkgver
-  make check
-}
-
-package_libofx() {
-  options=('!docs')
-
-  cd $pkgbase-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-package_libofx-doc() {
-  pkgdesc="Documention of the OFX banking standard API"
-  arch=('any')
-  depends=()
-
-  cd $pkgbase-$pkgver
-  make DESTDIR="$pkgdir" install-docDATA
-  make -C doc DESTDIR="$pkgdir" install
-}

Copied: libofx/repos/community-x86_64/PKGBUILD (from rev 271899, 
libofx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 17:24:10 UTC (rev 271900)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Aaron Griffin 
+
+pkgbase=libofx
+pkgname=('libofx' 'libofx-doc')
+pkgver=0.9.12
+pkgrel=1
+pkgdesc="API for the OFX banking standard"
+arch=('x86_64')
+url="https://github.com/libofx;
+license=('GPL')
+depends=('opensp' 'curl' 'libxml++2.6')
+checkdepends=('gnupg')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('c15fa062fa11e759eb6d8c7842191db2185ee1b221a3f75e9650e2849d7b7373')
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+   make CXXFLAGS+=-std=c++11
+}
+
+check() {
+  cd $pkgbase-$pkgver
+  make check
+}
+
+package_libofx() {
+  options=('!docs')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+package_libofx-doc() {
+  pkgdesc="Documention of the OFX banking standard API"
+  depends=()
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install-docDATA
+  make -C doc DESTDIR="$pkgdir" install
+}


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 17:23:59
  Author: jlichtblau
Revision: 271899

upgpkg: libofx 0.9.12-1 - no 'any' arch in split packages

Modified:
  libofx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 17:19:43 UTC (rev 271898)
+++ PKGBUILD2017-12-02 17:23:59 UTC (rev 271899)
@@ -36,7 +36,6 @@
 
 package_libofx-doc() {
   pkgdesc="Documention of the OFX banking standard API"
-  arch=('any')
   depends=()
 
   cd $pkgbase-$pkgver


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 17:19:29
  Author: jlichtblau
Revision: 271897

upgpkg: libofx 0.9.12-1 - new upstream release

Modified:
  libofx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 16:16:29 UTC (rev 271896)
+++ PKGBUILD2017-12-02 17:19:29 UTC (rev 271897)
@@ -4,16 +4,16 @@
 
 pkgbase=libofx
 pkgname=('libofx' 'libofx-doc')
-pkgver=0.9.11
+pkgver=0.9.12
 pkgrel=1
 pkgdesc="API for the OFX banking standard"
 arch=('x86_64')
-url="http://libofx.sourceforge.net;
+url="https://github.com/libofx;
 license=('GPL')
 depends=('opensp' 'curl' 'libxml++2.6')
 checkdepends=('gnupg')
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('b0115c876bee5df84002a96f58cca8d73ef7b75d799d6a3a44905c34a8cfe94f')
+sha256sums=('c15fa062fa11e759eb6d8c7842191db2185ee1b221a3f75e9650e2849d7b7373')
 
 build() {
   cd $pkgbase-$pkgver
@@ -36,6 +36,7 @@
 
 package_libofx-doc() {
   pkgdesc="Documention of the OFX banking standard API"
+  arch=('any')
   depends=()
 
   cd $pkgbase-$pkgver


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 17:19:43
  Author: jlichtblau
Revision: 271898

archrelease: copy trunk to community-x86_64

Added:
  libofx/repos/community-x86_64/PKGBUILD
(from rev 271897, libofx/trunk/PKGBUILD)
Deleted:
  libofx/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 17:19:29 UTC (rev 271897)
+++ PKGBUILD2017-12-02 17:19:43 UTC (rev 271898)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Aaron Griffin 
-
-pkgbase=libofx
-pkgname=('libofx' 'libofx-doc')
-pkgver=0.9.11
-pkgrel=1
-pkgdesc="API for the OFX banking standard"
-arch=('i686' 'x86_64')
-url="http://libofx.sourceforge.net;
-license=('GPL')
-depends=('opensp' 'curl' 'libxml++2.6')
-checkdepends=('gnupg')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('b0115c876bee5df84002a96f58cca8d73ef7b75d799d6a3a44905c34a8cfe94f')
-
-build() {
-  cd $pkgbase-$pkgver
-  ./configure --prefix=/usr
-   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-   make CXXFLAGS+=-std=c++11
-}
-
-check() {
-  cd $pkgbase-$pkgver
-  make check
-}
-
-package_libofx() {
-  options=('!docs')
-
-  cd $pkgbase-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-package_libofx-doc() {
-  pkgdesc="Documention of the OFX banking standard API"
-  depends=()
-
-  cd $pkgbase-$pkgver
-  make DESTDIR="$pkgdir" install-docDATA
-  make -C doc DESTDIR="$pkgdir" install
-}

Copied: libofx/repos/community-x86_64/PKGBUILD (from rev 271897, 
libofx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 17:19:43 UTC (rev 271898)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Aaron Griffin 
+
+pkgbase=libofx
+pkgname=('libofx' 'libofx-doc')
+pkgver=0.9.12
+pkgrel=1
+pkgdesc="API for the OFX banking standard"
+arch=('x86_64')
+url="https://github.com/libofx;
+license=('GPL')
+depends=('opensp' 'curl' 'libxml++2.6')
+checkdepends=('gnupg')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('c15fa062fa11e759eb6d8c7842191db2185ee1b221a3f75e9650e2849d7b7373')
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+   make CXXFLAGS+=-std=c++11
+}
+
+check() {
+  cd $pkgbase-$pkgver
+  make check
+}
+
+package_libofx() {
+  options=('!docs')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+package_libofx-doc() {
+  pkgdesc="Documention of the OFX banking standard API"
+  arch=('any')
+  depends=()
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install-docDATA
+  make -C doc DESTDIR="$pkgdir" install
+}


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

2017-12-02 Thread Dave Reisner via arch-commits
Date: Saturday, December 2, 2017 @ 16:46:53
  Author: dreisner
Revision: 311488

Catch errors in pwck, not just grpck (FS#54286)

Modified:
  shadow/trunk/shadow.service

+
 shadow.service |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: shadow.service
===
--- shadow.service  2017-12-02 10:58:21 UTC (rev 311487)
+++ shadow.service  2017-12-02 16:46:53 UTC (rev 311488)
@@ -4,7 +4,8 @@
 
 [Service]
 Type=simple
-ExecStart=/bin/sh -c '/usr/bin/pwck -r ; /usr/bin/grpck -r'
+# Always run both checks, but fail the service if either fails
+ExecStart=/bin/sh -c '/usr/bin/pwck -r || r=1; /usr/bin/grpck -r && exit $r'
 Nice=19
 IOSchedulingClass=best-effort
 IOSchedulingPriority=7


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

2017-12-02 Thread Felix Yan via arch-commits
Date: Saturday, December 2, 2017 @ 16:16:04
  Author: felixonmars
Revision: 271895

upgpkg: brotli 1.0.2-1

Modified:
  brotli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 16:16:01 UTC (rev 271894)
+++ PKGBUILD2017-12-02 16:16:04 UTC (rev 271895)
@@ -6,7 +6,7 @@
 
 pkgbase=brotli
 pkgname=('brotli' 'python-brotli' 'python2-brotli' 'brotli-testdata')
-pkgver=1.0.1
+pkgver=1.0.2
 pkgrel=1
 pkgdesc='Brotli compression library'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 depends=('gcc-libs')
 makedepends=('cmake' 'python' 'python2')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/google/$pkgbase/archive/v$pkgver.tar.gz;)
-sha512sums=('de6f787012243fdc5eafa559ffc765e1d69bf78cf337efdd743bb422706b5ae86b4966f07a8410165044b988b7ca2999065efc4693bda7111e53fe64917e24c0')
+sha512sums=('b3ec98159e63b4169dea3e958d60d89247dc1c0f78aab27bfffb2ece659fa024df990d410aa15c12b2082d42e3785e32ec248dce2b116c7f34e98bb6337f9fc9')
 
 prepare() {
   cp -a brotli-$pkgver{,-py2}


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 16:16:01
  Author: jlichtblau
Revision: 271894

archrelease: copy trunk to community-any

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

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

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

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


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 16:15:47
  Author: jlichtblau
Revision: 271893

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

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 15:55:51 UTC (rev 271892)
+++ PKGBUILD2017-12-02 16:15:47 UTC (rev 271893)
@@ -3,7 +3,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=youtube-dl
-pkgver=2017.11.26
+pkgver=2017.12.02
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -15,7 +15,7 @@
 'atomicparsley: for embedding thumbnails into m4a files'
 'phantomjs')
 
source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('47d30aec89cd2456b7ee7026c66c0ee4f56ab7d2700c44af27be0e00627d2d5a'
+sha256sums=('0a523db989f0f75e7e91676d6e416dad22a0e1ef3341cec652bf5b06c07fc5e1'
 'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
   'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. 


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

2017-12-02 Thread Felix Yan via arch-commits
Date: Saturday, December 2, 2017 @ 16:16:29
  Author: felixonmars
Revision: 271896

archrelease: copy trunk to community-x86_64

Added:
  brotli/repos/community-x86_64/PKGBUILD
(from rev 271895, brotli/trunk/PKGBUILD)
Deleted:
  brotli/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 16:16:04 UTC (rev 271895)
+++ PKGBUILD2017-12-02 16:16:29 UTC (rev 271896)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Lex Black 
-# Contributor: TingPing 
-# Contributor: Guillaume Horel 
-
-pkgbase=brotli
-pkgname=('brotli' 'python-brotli' 'python2-brotli' 'brotli-testdata')
-pkgver=1.0.1
-pkgrel=1
-pkgdesc='Brotli compression library'
-arch=('i686' 'x86_64')
-license=('MIT')
-url='https://github.com/google/brotli'
-depends=('gcc-libs')
-makedepends=('cmake' 'python' 'python2')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/google/$pkgbase/archive/v$pkgver.tar.gz;)
-sha512sums=('de6f787012243fdc5eafa559ffc765e1d69bf78cf337efdd743bb422706b5ae86b4966f07a8410165044b988b7ca2999065efc4693bda7111e53fe64917e24c0')
-
-prepare() {
-  cp -a brotli-$pkgver{,-py2}
-  mkdir -p build
-}
-
-build() {
-  cd "$srcdir"/brotli-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/brotli-$pkgver-py2
-  python2 ./setup.py build
-
-  cd "$srcdir"/build
-  cmake ../brotli-$pkgver -DCMAKE_INSTALL_PREFIX="/usr" 
-DCMAKE_INSTALL_LIBDIR="/usr/lib"
-  make
-}
-
-check() {
-  cd brotli-$pkgver
-  make test
-}
-
-package_brotli() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  install -D -m644 "$srcdir"/brotli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-brotli() {
-  depends=('python')
-
-  cd brotli-$pkgver
-
-  python setup.py install --skip-build -O1 --root="$pkgdir"
-  install -D -m644 "$srcdir"/brotli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-brotli() {
-  depends=('python2')
-
-  cd brotli-$pkgver-py2
-
-  python2 setup.py install --skip-build -O1 --root="$pkgdir"
-  install -D -m644 "$srcdir"/brotli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_brotli-testdata() {
-  depends=()
-
-  cd brotli-$pkgver
-  install -dm755 "$pkgdir"/usr/share/brotli
-  cp -a tests/testdata "$pkgdir"/usr/share/brotli/
-  install -D -m644 "$srcdir"/brotli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: brotli/repos/community-x86_64/PKGBUILD (from rev 271895, 
brotli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 16:16:29 UTC (rev 271896)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Lex Black 
+# Contributor: TingPing 
+# Contributor: Guillaume Horel 
+
+pkgbase=brotli
+pkgname=('brotli' 'python-brotli' 'python2-brotli' 'brotli-testdata')
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='Brotli compression library'
+arch=('x86_64')
+license=('MIT')
+url='https://github.com/google/brotli'
+depends=('gcc-libs')
+makedepends=('cmake' 'python' 'python2')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/google/$pkgbase/archive/v$pkgver.tar.gz;)
+sha512sums=('b3ec98159e63b4169dea3e958d60d89247dc1c0f78aab27bfffb2ece659fa024df990d410aa15c12b2082d42e3785e32ec248dce2b116c7f34e98bb6337f9fc9')
+
+prepare() {
+  cp -a brotli-$pkgver{,-py2}
+  mkdir -p build
+}
+
+build() {
+  cd "$srcdir"/brotli-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/brotli-$pkgver-py2
+  python2 ./setup.py build
+
+  cd "$srcdir"/build
+  cmake ../brotli-$pkgver -DCMAKE_INSTALL_PREFIX="/usr" 
-DCMAKE_INSTALL_LIBDIR="/usr/lib"
+  make
+}
+
+check() {
+  cd brotli-$pkgver
+  make test
+}
+
+package_brotli() {
+  cd build
+  make DESTDIR="$pkgdir" install
+  install -D -m644 "$srcdir"/brotli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-brotli() {
+  depends=('python')
+
+  cd brotli-$pkgver
+
+  python setup.py install --skip-build -O1 --root="$pkgdir"
+  install -D -m644 "$srcdir"/brotli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-brotli() {
+  depends=('python2')
+
+  cd brotli-$pkgver-py2
+
+  python2 setup.py install --skip-build -O1 --root="$pkgdir"
+  install -D -m644 "$srcdir"/brotli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_brotli-testdata() {
+  depends=()
+
+  cd brotli-$pkgver
+  install -dm755 "$pkgdir"/usr/share/brotli
+  cp -a tests/testdata "$pkgdir"/usr/share/brotli/
+  install -D -m644 "$srcdir"/brotli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2017-12-02 Thread David Runge via arch-commits
Date: Saturday, December 2, 2017 @ 15:55:51
  Author: dvzrv
Revision: 271892

archrelease: copy trunk to community-testing-x86_64

Added:
  blop/repos/community-testing-x86_64/
  blop/repos/community-testing-x86_64/PKGBUILD
(from rev 271891, blop/trunk/PKGBUILD)

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

Copied: blop/repos/community-testing-x86_64/PKGBUILD (from rev 271891, 
blop/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-02 15:55:51 UTC (rev 271892)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+
+pkgname=blop
+pkgver=0.2.8
+pkgrel=2
+pkgdesc="Bandlimited LADSPA Oscillator Plugins"
+arch=('x86_64')
+url="http://blop.sourceforge.net/;
+license=('GPL')
+depends=('ladspa')
+groups=('ladspa-plugins')
+source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('5a1bb2e4ba976dd87f8b34538b3a8d2ed21ba0b8818d4b0a713061aeeae7fd52377477314a758cc7082a932315be8ec99006dfc3f5c9712d8d566852adbf671f')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package(){
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 AUTHORS "${pkgdir}/usr/share/doc/${pkgname}/AUTHORS"
+  install -Dm644 ChangeLog "${pkgdir}/usr/share/doc/${pkgname}/ChangeLog"
+  install -Dm644 NEWS "${pkgdir}/usr/share/doc/${pkgname}/NEWS"
+  install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
+  install -Dm644 THANKS "${pkgdir}/usr/share/doc/${pkgname}/THANKS"
+  install -Dm644 TODO "${pkgdir}/usr/share/doc/${pkgname}/TODO"
+}


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

2017-12-02 Thread David Runge via arch-commits
Date: Saturday, December 2, 2017 @ 15:55:38
  Author: dvzrv
Revision: 271891

upgpkg: blop 0.2.8-2

Changing maintainer. Switching to https source. Switching to sha512sums. 
Including various docs. Minor fixes.

Modified:
  blop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 15:19:17 UTC (rev 271890)
+++ PKGBUILD2017-12-02 15:55:38 UTC (rev 271891)
@@ -1,9 +1,10 @@
 # $Id$
-# Maintainer : speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 
 pkgname=blop
 pkgver=0.2.8
-pkgrel=1
+pkgrel=2
 pkgdesc="Bandlimited LADSPA Oscillator Plugins"
 arch=('x86_64')
 url="http://blop.sourceforge.net/;
@@ -10,16 +11,22 @@
 license=('GPL')
 depends=('ladspa')
 groups=('ladspa-plugins')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('4baedbf1e7cacc7d1034c4bcd5556d6f')
+source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('5a1bb2e4ba976dd87f8b34538b3a8d2ed21ba0b8818d4b0a713061aeeae7fd52377477314a758cc7082a932315be8ec99006dfc3f5c9712d8d566852adbf671f')
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd "${pkgname}-${pkgver}"
   ./configure --prefix=/usr
   make
 }
 
 package(){
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 AUTHORS "${pkgdir}/usr/share/doc/${pkgname}/AUTHORS"
+  install -Dm644 ChangeLog "${pkgdir}/usr/share/doc/${pkgname}/ChangeLog"
+  install -Dm644 NEWS "${pkgdir}/usr/share/doc/${pkgname}/NEWS"
+  install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
+  install -Dm644 THANKS "${pkgdir}/usr/share/doc/${pkgname}/THANKS"
+  install -Dm644 TODO "${pkgdir}/usr/share/doc/${pkgname}/TODO"
 }


[arch-commits] Commit in kodi/repos/community-x86_64 (13 files)

2017-12-02 Thread Ike Devolder via arch-commits
Date: Saturday, December 2, 2017 @ 15:19:17
  Author: idevolder
Revision: 271890

archrelease: copy trunk to community-x86_64

Added:
  kodi/repos/community-x86_64/10160.patch
(from rev 271889, kodi/trunk/10160.patch)
  kodi/repos/community-x86_64/10775.patch
(from rev 271889, kodi/trunk/10775.patch)
  kodi/repos/community-x86_64/9703.patch
(from rev 271889, kodi/trunk/9703.patch)
  kodi/repos/community-x86_64/PKGBUILD
(from rev 271889, kodi/trunk/PKGBUILD)
  kodi/repos/community-x86_64/fix-ftpparse.patch
(from rev 271889, kodi/trunk/fix-ftpparse.patch)
  kodi/repos/community-x86_64/fix-python-lib-path.patch
(from rev 271889, kodi/trunk/fix-python-lib-path.patch)
Deleted:
  kodi/repos/community-x86_64/10160.patch
  kodi/repos/community-x86_64/10775.patch
  kodi/repos/community-x86_64/9703.patch
  kodi/repos/community-x86_64/PKGBUILD
  kodi/repos/community-x86_64/fix-ftpparse.patch
  kodi/repos/community-x86_64/fix-python-lib-path.patch
  kodi/repos/community-x86_64/kodi.install

---+
 10160.patch   |   44 
 10775.patch   | 1678 -
 9703.patch| 2864 ++--
 PKGBUILD  |  444 +++---
 fix-ftpparse.patch|  142 +-
 fix-python-lib-path.patch |   58 
 kodi.install  |   17 
 7 files changed, 2615 insertions(+), 2632 deletions(-)

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


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

2017-12-02 Thread Ike Devolder via arch-commits
Date: Saturday, December 2, 2017 @ 15:18:35
  Author: idevolder
Revision: 271889

upgpkg: kodi 17.6-1

Modified:
  kodi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 15:15:00 UTC (rev 271888)
+++ PKGBUILD2017-12-02 15:18:35 UTC (rev 271889)
@@ -20,9 +20,9 @@
 
 pkgbase=kodi
 pkgname=('kodi' 'kodi-eventclients' 'kodi-tools-texturepacker' 'kodi-dev')
-pkgver=17.5
+pkgver=17.6
 _codename=Krypton
-pkgrel=6
+pkgrel=1
 arch=('x86_64')
 url="http://kodi.tv;
 license=('GPL2')
@@ -39,7 +39,7 @@
 _libdvdcss_commit="2f12236bc1c92f73c21e973363f79eb300de603f"
 _libdvdnav_commit="981488f7f27554b103cca10c1fbeba027396c94a"
 _libdvdread_commit="17d99db97e7b8f23077b342369d3c22a6250affd"
-_ffmpeg_version="3.1.11-$_codename-$pkgver"
+_ffmpeg_version="3.1.11-$_codename-17.5"
 source=(
   
"$pkgbase-$pkgver-$_codename.tar.gz::https://github.com/xbmc/xbmc/archive/$pkgver-$_codename.tar.gz;
   
"$pkgbase-libdvdcss-$_libdvdcss_commit.tar.gz::https://github.com/xbmc/libdvdcss/archive/$_libdvdcss_commit.tar.gz;
@@ -54,7 +54,7 @@
   "$pkgbase-libdvdread-$_libdvdread_commit.tar.gz"
   "$pkgbase-ffmpeg-$_ffmpeg_version.tar.gz"
 )
-sha512sums=('e47f8a53ccee675031dfb816ffbe338dd2e94c22c944b814f332c1abdab16182304474c6b0d5cd7ad7eb9bc0500de6f5fc97b965dc5828635b58a6c596f82736'
+sha512sums=('1f1ba91e6129ab423f9ad47b63d7bb75775dbf18638a96413a572aaa790f4f0d738ca35486513e158a7f55d501f78f08dd9d68aabe2fbb80a729c6091b264111'
 
'12ba7aa653fcb26d5336bf2a8110c924d634cec79f684bbf19dc38ea33f69fb68c22c97f4c09e5ca7c35f95f6c324a6d70ccc2c501a99122a9321cafd33b2cd9'
 
'005355da5e3d34f69737f7c3fe7884e82ffdc8f654f337e97d4a4d1e486c9f346f63b4dee74de2765e7a8d94925de5d25c3c82da732d2e8d4f58fcfeb9dd2586'
 
'e59ae0bfdc62698e407e3d70503c6a7c5e308545c9dae7843e25db3b5b62d9b26256be77ef4e884263add6b4abec3438c324bfd5715f6ca2ce7fa5962d43a6c2'


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

2017-12-02 Thread Ike Devolder via arch-commits
Date: Saturday, December 2, 2017 @ 15:15:00
  Author: idevolder
Revision: 271888

archrelease: copy trunk to community-x86_64

Added:
  php-mongodb/repos/community-x86_64/PKGBUILD
(from rev 271887, php-mongodb/trunk/PKGBUILD)
  php-mongodb/repos/community-x86_64/mongodb.ini
(from rev 271887, php-mongodb/trunk/mongodb.ini)
  php-mongodb/repos/community-x86_64/php-mongodb.install
(from rev 271887, php-mongodb/trunk/php-mongodb.install)
Deleted:
  php-mongodb/repos/community-x86_64/PKGBUILD
  php-mongodb/repos/community-x86_64/mongodb.ini
  php-mongodb/repos/community-x86_64/php-mongodb.install

-+
 PKGBUILD|   74 +-
 mongodb.ini |4 +-
 php-mongodb.install |   24 
 3 files changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 15:14:47 UTC (rev 271887)
+++ PKGBUILD2017-12-02 15:15:00 UTC (rev 271888)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Maintainer: Felix Yan 
-# Contributor: Martin Striz < ms AT martinstriz DOT cz >
-# Contributor: Jarek Sedlacek 
-
-pkgname=php-mongodb
-pkgver=1.3.3
-pkgrel=1
-pkgdesc="MongoDB driver for PHP"
-arch=("x86_64")
-url="http://mongodb.github.io/mongo-php-driver;
-license=("Apache")
-#depends=('php' 'libmongoc')
-depends=('php')
-makedepends=('re2c')
-backup=("etc/php/conf.d/mongodb.ini")
-install=php-mongodb.install
-source=(
-   "https://pecl.php.net/get/mongodb-$pkgver.tgz;
-   "mongodb.ini"
-)
-sha256sums=('6c8f6b28ae69223df8f6c43ceef5776e60306910332c8f0c68d4096680a96a62'
-'242b9ffea6bd84f813c7fc2a767eaa89f83577c5ff10ff36aecec2ca308ff72b')
-
-build() {
-   cd mongodb-$pkgver
-   phpize
-   #./configure --prefix=/usr --with-libbson --with-libmongoc
-   ./configure --prefix=/usr
-}
-
-package() {
-   cd mongodb-$pkgver
-   make INSTALL_ROOT="$pkgdir" install
-   install -Dm644 "$srcdir/mongodb.ini" 
"$pkgdir/etc/php/conf.d/mongodb.ini"
-}

Copied: php-mongodb/repos/community-x86_64/PKGBUILD (from rev 271887, 
php-mongodb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 15:15:00 UTC (rev 271888)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Felix Yan 
+# Contributor: Martin Striz < ms AT martinstriz DOT cz >
+# Contributor: Jarek Sedlacek 
+
+pkgname=php-mongodb
+pkgver=1.3.4
+pkgrel=1
+pkgdesc="MongoDB driver for PHP"
+arch=("x86_64")
+url="http://mongodb.github.io/mongo-php-driver;
+license=("Apache")
+#depends=('php' 'libmongoc')
+depends=('php')
+makedepends=('re2c')
+backup=("etc/php/conf.d/mongodb.ini")
+install=php-mongodb.install
+source=(
+   "https://pecl.php.net/get/mongodb-$pkgver.tgz;
+   "mongodb.ini"
+)
+sha256sums=('c78190115c0d51a440d66c75b6c12192f6d97873d141b34c5c2406a816fe1bb2'
+'242b9ffea6bd84f813c7fc2a767eaa89f83577c5ff10ff36aecec2ca308ff72b')
+
+build() {
+   cd mongodb-$pkgver
+   phpize
+   #./configure --prefix=/usr --with-libbson --with-libmongoc
+   ./configure --prefix=/usr
+}
+
+package() {
+   cd mongodb-$pkgver
+   make INSTALL_ROOT="$pkgdir" install
+   install -Dm644 "$srcdir/mongodb.ini" 
"$pkgdir/etc/php/conf.d/mongodb.ini"
+}

Deleted: mongodb.ini
===
--- mongodb.ini 2017-12-02 15:14:47 UTC (rev 271887)
+++ mongodb.ini 2017-12-02 15:15:00 UTC (rev 271888)
@@ -1,2 +0,0 @@
-; Tell PHP to load the MongoDB Extension on startup
-extension=mongodb.so

Copied: php-mongodb/repos/community-x86_64/mongodb.ini (from rev 271887, 
php-mongodb/trunk/mongodb.ini)
===
--- mongodb.ini (rev 0)
+++ mongodb.ini 2017-12-02 15:15:00 UTC (rev 271888)
@@ -0,0 +1,2 @@
+; Tell PHP to load the MongoDB Extension on startup
+extension=mongodb.so

Deleted: php-mongodb.install
===
--- php-mongodb.install 2017-12-02 15:14:47 UTC (rev 271887)
+++ php-mongodb.install 2017-12-02 15:15:00 UTC (rev 271888)
@@ -1,12 +0,0 @@
-post_install() {
-  warning
-}
-
-post_upgrade() {
-  warning
-}
-
-warning() {
-  printf "WARNING:\nWhen moving from 'php-mongo' to 'php-mongodb' keep into 
mind the extension's api is not compatible\n\n"
-  return 0
-}

Copied: php-mongodb/repos/community-x86_64/php-mongodb.install (from rev 
271887, php-mongodb/trunk/php-mongodb.install)
===
--- php-mongodb.install (rev 0)
+++ php-mongodb.install 2017-12-02 15:15:00 

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

2017-12-02 Thread Ike Devolder via arch-commits
Date: Saturday, December 2, 2017 @ 15:14:47
  Author: idevolder
Revision: 271887

upgpkg: php-mongodb 1.3.4-1

Modified:
  php-mongodb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 13:45:25 UTC (rev 271886)
+++ PKGBUILD2017-12-02 15:14:47 UTC (rev 271887)
@@ -5,7 +5,7 @@
 # Contributor: Jarek Sedlacek 
 
 pkgname=php-mongodb
-pkgver=1.3.3
+pkgver=1.3.4
 pkgrel=1
 pkgdesc="MongoDB driver for PHP"
 arch=("x86_64")
@@ -20,7 +20,7 @@
"https://pecl.php.net/get/mongodb-$pkgver.tgz;
"mongodb.ini"
 )
-sha256sums=('6c8f6b28ae69223df8f6c43ceef5776e60306910332c8f0c68d4096680a96a62'
+sha256sums=('c78190115c0d51a440d66c75b6c12192f6d97873d141b34c5c2406a816fe1bb2'
 '242b9ffea6bd84f813c7fc2a767eaa89f83577c5ff10ff36aecec2ca308ff72b')
 
 build() {


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

2017-12-02 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 2, 2017 @ 13:44:54
  Author: svenstaro
Revision: 271884

archrelease: copy trunk to community-x86_64

Added:
  minio/repos/community-x86_64/PKGBUILD
(from rev 271883, minio/trunk/PKGBUILD)
  minio/repos/community-x86_64/minio.conf
(from rev 271883, minio/trunk/minio.conf)
  minio/repos/community-x86_64/minio.install
(from rev 271883, minio/trunk/minio.install)
  minio/repos/community-x86_64/minio.service
(from rev 271883, minio/trunk/minio.service)
Deleted:
  minio/repos/community-x86_64/PKGBUILD
  minio/repos/community-x86_64/minio.conf
  minio/repos/community-x86_64/minio.install
  minio/repos/community-x86_64/minio.service

---+
 PKGBUILD  |   82 
 minio.conf|   16 +-
 minio.install |   18 ++--
 minio.service |   54 ++--
 4 files changed, 85 insertions(+), 85 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 13:44:44 UTC (rev 271883)
+++ PKGBUILD2017-12-02 13:44:54 UTC (rev 271884)
@@ -1,41 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Frederik Schwan 
-# Contributor: Daniel Maslowski 
-
-pkgname=minio
-pkgver=2017.09.29
-_pkgver="${pkgver//./-}T19-16-56Z"
-pkgrel=2
-pkgdesc='Object storage server compatible with Amazon S3'
-arch=('x86_64' 'i686')
-url='https://minio.io'
-license=('APACHE')
-depends=('glibc')
-makedepends=('go-pie')
-options=('!strip')
-install=minio.install
-source=(https://github.com/minio/minio/archive/RELEASE.${_pkgver}.tar.gz
-minio.conf
-minio.service)
-backup=('etc/minio/minio.conf')
-sha512sums=('eb1ac7294ec54f7e794698ba027e38cef85ed007758ef7b0f3cca1728700ab0a2270deab6591806036d6a935d99168e7c279ee99b122a992286d5ae16636a31d'
-
'630a5d109409074b67be71b663a43ad09104121cca3637bb0542df19e375023bff7d7e2cbf39e52cc3cd060d41c363a90bd4ff7734aed1a5ca43a600f6d6d275'
-
'1c6ea217ea8aac93c9d1e05ad0b6c2108fe3d6367fa6a55acc480b8667996bbb59743e2f7e354c5257fc68bffc18cc44a48c4a82eee293abddcdc7962e63e50b')
-
-build() {
-  export GOPATH="${srcdir}/go"
-  mkdir -p "${GOPATH}/src/github.com/minio"
-  mv "${srcdir}/minio-RELEASE.${_pkgver}" 
"${GOPATH}/src/github.com/minio/minio"
-  cd "${GOPATH}/src/github.com/minio/minio"
-  go build
-}
-
-package() {
-  install -dm750 "${pkgdir}/srv/minio"
-
-  export GOPATH="${srcdir}/go"
-  cd "${GOPATH}/src/github.com/minio/minio"
-  install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 "${srcdir}/minio.conf" "${pkgdir}/etc/minio/${pkgname}.conf"
-  install -Dm644 "${srcdir}/minio.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
-}

Copied: minio/repos/community-x86_64/PKGBUILD (from rev 271883, 
minio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 13:44:54 UTC (rev 271884)
@@ -0,0 +1,41 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Frederik Schwan 
+# Contributor: Daniel Maslowski 
+
+pkgname=minio
+pkgver=2017.11.22
+_pkgver="${pkgver//./-}T19-55-46Z"
+pkgrel=1
+pkgdesc='Object storage server compatible with Amazon S3'
+arch=('x86_64')
+url='https://minio.io'
+license=('APACHE')
+depends=('glibc')
+makedepends=('go-pie')
+options=('!strip')
+install=minio.install
+source=(https://github.com/minio/minio/archive/RELEASE.${_pkgver}.tar.gz
+minio.conf
+minio.service)
+backup=('etc/minio/minio.conf')
+sha512sums=('d40a205b631d5d1b29b90fc4afff4af07072a7ea27069d9f55a6c54f6a5418328dd44d8f5be2882ac7fdb1f969936de70cd51859d0f5c218c1223a98738e5e2b'
+
'630a5d109409074b67be71b663a43ad09104121cca3637bb0542df19e375023bff7d7e2cbf39e52cc3cd060d41c363a90bd4ff7734aed1a5ca43a600f6d6d275'
+
'1c6ea217ea8aac93c9d1e05ad0b6c2108fe3d6367fa6a55acc480b8667996bbb59743e2f7e354c5257fc68bffc18cc44a48c4a82eee293abddcdc7962e63e50b')
+
+build() {
+  export GOPATH="${srcdir}/go"
+  mkdir -p "${GOPATH}/src/github.com/minio"
+  mv "${srcdir}/minio-RELEASE.${_pkgver}" 
"${GOPATH}/src/github.com/minio/minio"
+  cd "${GOPATH}/src/github.com/minio/minio"
+  go build
+}
+
+package() {
+  install -dm750 "${pkgdir}/srv/minio"
+
+  export GOPATH="${srcdir}/go"
+  cd "${GOPATH}/src/github.com/minio/minio"
+  install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 "${srcdir}/minio.conf" "${pkgdir}/etc/minio/${pkgname}.conf"
+  install -Dm644 "${srcdir}/minio.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
+}

Deleted: minio.conf
===
--- minio.conf  2017-12-02 13:44:44 UTC (rev 271883)
+++ minio.conf  2017-12-02 13:44:54 UTC (rev 271884)
@@ -1,8 +0,0 @@
-# Local export path.
-MINIO_VOLUMES="/srv/minio/data/"
-# Access Key of the server.
-# 

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

2017-12-02 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 2, 2017 @ 13:44:44
  Author: svenstaro
Revision: 271883

upgpkg: minio 2017.11.22-1

Modified:
  minio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 13:42:20 UTC (rev 271882)
+++ PKGBUILD2017-12-02 13:44:44 UTC (rev 271883)
@@ -3,9 +3,9 @@
 # Contributor: Daniel Maslowski 
 
 pkgname=minio
-pkgver=2017.09.29
-_pkgver="${pkgver//./-}T19-16-56Z"
-pkgrel=2
+pkgver=2017.11.22
+_pkgver="${pkgver//./-}T19-55-46Z"
+pkgrel=1
 pkgdesc='Object storage server compatible with Amazon S3'
 arch=('x86_64')
 url='https://minio.io'
@@ -18,7 +18,7 @@
 minio.conf
 minio.service)
 backup=('etc/minio/minio.conf')
-sha512sums=('eb1ac7294ec54f7e794698ba027e38cef85ed007758ef7b0f3cca1728700ab0a2270deab6591806036d6a935d99168e7c279ee99b122a992286d5ae16636a31d'
+sha512sums=('d40a205b631d5d1b29b90fc4afff4af07072a7ea27069d9f55a6c54f6a5418328dd44d8f5be2882ac7fdb1f969936de70cd51859d0f5c218c1223a98738e5e2b'
 
'630a5d109409074b67be71b663a43ad09104121cca3637bb0542df19e375023bff7d7e2cbf39e52cc3cd060d41c363a90bd4ff7734aed1a5ca43a600f6d6d275'
 
'1c6ea217ea8aac93c9d1e05ad0b6c2108fe3d6367fa6a55acc480b8667996bbb59743e2f7e354c5257fc68bffc18cc44a48c4a82eee293abddcdc7962e63e50b')
 


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

2017-12-02 Thread Felix Yan via arch-commits
Date: Saturday, December 2, 2017 @ 13:42:20
  Author: felixonmars
Revision: 271882

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

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

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


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

2017-12-02 Thread Felix Yan via arch-commits
Date: Saturday, December 2, 2017 @ 13:41:59
  Author: felixonmars
Revision: 271881

upgpkg: git-annex 6.20171124-13

rebuild with aws,0.18

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 13:35:52 UTC (rev 271880)
+++ PKGBUILD2017-12-02 13:41:59 UTC (rev 271881)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20171124
-pkgrel=12
+pkgrel=13
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2017-12-02 Thread Felix Yan via arch-commits
Date: Saturday, December 2, 2017 @ 13:35:52
  Author: felixonmars
Revision: 271880

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 271879, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-02 13:35:52 UTC (rev 271880)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.18
+pkgrel=1
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="https://github.com/aristidb/aws;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 'haskell-byteable'
+ 'haskell-case-insensitive' 'haskell-cereal' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-data-default' 'haskell-http-conduit' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-memory' 'haskell-monad-control' 
'haskell-mtl'
+ 'haskell-network' 'haskell-old-locale' 'haskell-resourcet' 
'haskell-safe'
+ 'haskell-scientific' 'haskell-tagged' 'haskell-text' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-vector' 'haskell-xml-conduit')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-conduit-combinators' 
'haskell-errors'
+ 'haskell-http-client' 'haskell-http-client-tls' 
'haskell-quickcheck-instances'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck'
+ 'haskell-transformers-base')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('11cf6675e4caf818e39efe697704acff7c5e0a74641482b791de17b18f6e0224be1bd24fb734a419685ca4b2cbf5913bea0012f4f79e4b988ee4cbc9252d0f52')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-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 || warning "Requires AWS credentials to test"
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-02 Thread Felix Yan via arch-commits
Date: Saturday, December 2, 2017 @ 13:35:30
  Author: felixonmars
Revision: 271879

upgpkg: haskell-aws 0.18-1

rebuild with aws,0.18

Modified:
  haskell-aws/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 13:25:04 UTC (rev 271878)
+++ PKGBUILD2017-12-02 13:35:30 UTC (rev 271879)
@@ -4,33 +4,32 @@
 
 _hkgname=aws
 pkgname=haskell-aws
-pkgver=0.17.1
-pkgrel=10
+pkgver=0.18
+pkgrel=1
 pkgdesc="Amazon Web Services (AWS) for Haskell"
 url="https://github.com/aristidb/aws;
 license=("custom:BSD3")
 arch=('x86_64')
-depends=('ghc-libs' "haskell-aeson" "haskell-attoparsec" 
"haskell-base16-bytestring"
- "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable"
- "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" 
"haskell-conduit-extra"
- "haskell-cryptohash" "haskell-data-default" "haskell-http-conduit" 
"haskell-http-types"
- "haskell-lifted-base" "haskell-monad-control" "haskell-mtl" 
"haskell-network"
- "haskell-old-locale" "haskell-resourcet" "haskell-safe" 
"haskell-scientific"
- "haskell-tagged" "haskell-text" "haskell-unordered-containers" 
"haskell-utf8-string"
- "haskell-vector" "haskell-xml-conduit")
-makedepends=('ghc')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 'haskell-byteable'
+ 'haskell-case-insensitive' 'haskell-cereal' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-data-default' 'haskell-http-conduit' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-memory' 'haskell-monad-control' 
'haskell-mtl'
+ 'haskell-network' 'haskell-old-locale' 'haskell-resourcet' 
'haskell-safe'
+ 'haskell-scientific' 'haskell-tagged' 'haskell-text' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-vector' 'haskell-xml-conduit')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-conduit-combinators' 
'haskell-errors'
+ 'haskell-http-client' 'haskell-http-client-tls' 
'haskell-quickcheck-instances'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck'
+ 'haskell-transformers-base')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('236e2d29c439f3a0928de6ad5a12628cb1c2bc9258e81373aa58880d5b46fca40395f7456e379768ed6ccd234e6119fab9bf89771326fdb1b9b6dd2060320474')
+sha512sums=('11cf6675e4caf818e39efe697704acff7c5e0a74641482b791de17b18f6e0224be1bd24fb734a419685ca4b2cbf5913bea0012f4f79e4b988ee4cbc9252d0f52')
 
-prepare() {
-sed -i 's/conduit-extra>= 1.1 && < 1.2,/conduit-extra >= 
1.1,/' ${_hkgname}-${pkgver}/${_hkgname}.cabal
-}
-
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 
 runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
 --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
 -f-examples
 runhaskell Setup build
@@ -40,6 +39,11 @@
 sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
 }
 
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "Requires AWS credentials to test"
+}
+
 package() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 13:25:04
  Author: jlichtblau
Revision: 271878

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 13:24:51 UTC (rev 271877)
+++ PKGBUILD2017-12-02 13:25:04 UTC (rev 271878)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer 
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Daniel Micay 
-
-pkgbase=python-pygit2
-pkgname=('python-pygit2' 'python2-pygit2')
-pkgver=0.26.1
-pkgrel=1
-pkgdesc='Python bindings for libgit2'
-arch=('x86_64')
-url="https://github.com/libgit2/pygit2;
-license=('GPL2')
-depends=('libgit2>=1:0.26.0')
-makedepends=('python-cffi' 'python2-cffi' 'python-setuptools' 
'python2-setuptools' 'git' 'python-six' 'python2-six')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz;)
-sha256sums=('38674c027d44a967986bb2a3fbe2f937cca87a815e23fd24efe91f4af9b54787')
-
-package_python-pygit2() {
-  depends+=('python-cffi' 'python-six')
-  replaces=('python-libgit2')
-  conflicts=('python-libgit2')
-
-  cd "pygit2-$pkgver"
-  LANG=en_US.UTF8 python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-pygit2() {
-  depends+=('python2-cffi' 'python2-six')
-  replaces=('python2-libgit2')
-  conflicts=('python2-libgit2')
-
-  cd "pygit2-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-pygit2/repos/community-x86_64/PKGBUILD (from rev 271877, 
python-pygit2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 13:25:04 UTC (rev 271878)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Lukas Fleischer 
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Daniel Micay 
+
+pkgbase=python-pygit2
+pkgname=('python-pygit2' 'python2-pygit2')
+pkgver=0.26.2
+pkgrel=1
+pkgdesc='Python bindings for libgit2'
+arch=('x86_64')
+url="https://github.com/libgit2/pygit2;
+license=('GPL2')
+depends=('libgit2>=1:0.26.0')
+makedepends=('python-cffi' 'python2-cffi' 'python-setuptools' 
'python2-setuptools' 'git' 'python-six' 'python2-six')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz;)
+sha256sums=('ec81d20c146fa3896c3f5e3cd9adb5f87ccbfdd75cd43229bf0ff381669e7f72')
+
+package_python-pygit2() {
+  depends+=('python-cffi' 'python-six')
+  replaces=('python-libgit2')
+  conflicts=('python-libgit2')
+
+  cd "pygit2-$pkgver"
+  LANG=en_US.UTF8 python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-pygit2() {
+  depends+=('python2-cffi' 'python2-six')
+  replaces=('python2-libgit2')
+  conflicts=('python2-libgit2')
+
+  cd "pygit2-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2017-12-02 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, December 2, 2017 @ 13:24:51
  Author: jlichtblau
Revision: 271877

upgpkg: python-pygit2 0.26.2-1 - new upstream release

Modified:
  python-pygit2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 13:21:30 UTC (rev 271876)
+++ PKGBUILD2017-12-02 13:24:51 UTC (rev 271877)
@@ -5,7 +5,7 @@
 
 pkgbase=python-pygit2
 pkgname=('python-pygit2' 'python2-pygit2')
-pkgver=0.26.1
+pkgver=0.26.2
 pkgrel=1
 pkgdesc='Python bindings for libgit2'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 depends=('libgit2>=1:0.26.0')
 makedepends=('python-cffi' 'python2-cffi' 'python-setuptools' 
'python2-setuptools' 'git' 'python-six' 'python2-six')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz;)
-sha256sums=('38674c027d44a967986bb2a3fbe2f937cca87a815e23fd24efe91f4af9b54787')
+sha256sums=('ec81d20c146fa3896c3f5e3cd9adb5f87ccbfdd75cd43229bf0ff381669e7f72')
 
 package_python-pygit2() {
   depends+=('python-cffi' 'python-six')


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

2017-12-02 Thread Morten Linderud via arch-commits
Date: Saturday, December 2, 2017 @ 13:21:30
  Author: foxboron
Revision: 271876

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 13:20:24 UTC (rev 271875)
+++ PKGBUILD2017-12-02 13:21:30 UTC (rev 271876)
@@ -1,48 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Maikel Wever 
-
-pkgbase=python-pipenv
-pkgname=(python-pipenv python2-pipenv)
-pkgver=8.3.2
-pkgrel=1
-pkgdesc="Sacred Marriage of Pipfile, Pip, & Virtualenv."
-url="https://docs.pipenv.org;
-arch=('any')
-license=('MIT')
-makedepends=('python' 'python-setuptools'
- 'python2' 'python2-setuptools')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/kennethreitz/pipenv/archive/v${pkgver}.tar.gz;)
-sha256sums=('7c4c161e22f970b435598dfbc0758270a224a3f38467ba989eb6f4f767197835')
-
-prepare() {
-  cp -a pipenv-$pkgver{,-py2}
-}
-
-build(){
-  cd "$srcdir/pipenv-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/pipenv-$pkgver-py2"
-  python2 setup.py build
-}
-
-package_python2-pipenv() {
-  depends=('python2' 'python2-pip' 'python2-pew'
-   'python2-virtualenv' 'python2-flake8' 'python2-requests'
-   'python2-urllib3')
-  cd "pipenv-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  mv "${pkgdir}/usr/bin/pipenv" "${pkgdir}/usr/bin/pipenv2"
-}
-
-package_python-pipenv() {
-  depends=('python' 'python-pip' 'python-pew'
-   'python-virtualenv' 'flake8' 'python-requests'
-   'python-urllib3')
-  cd "pipenv-$pkgver"
-  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-

Copied: python-pipenv/repos/community-any/PKGBUILD (from rev 271875, 
python-pipenv/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 13:21:30 UTC (rev 271876)
@@ -0,0 +1,48 @@
+# Maintainer: Morten Linderud 
+# Contributor: Maikel Wever 
+
+pkgbase=python-pipenv
+pkgname=(python-pipenv python2-pipenv)
+pkgver=8.3.2
+pkgrel=2
+pkgdesc="Sacred Marriage of Pipfile, Pip, & Virtualenv."
+url="https://docs.pipenv.org;
+arch=('any')
+license=('MIT')
+makedepends=('python' 'python-setuptools'
+ 'python2' 'python2-setuptools')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/kennethreitz/pipenv/archive/v${pkgver}.tar.gz;)
+sha256sums=('7c4c161e22f970b435598dfbc0758270a224a3f38467ba989eb6f4f767197835')
+
+prepare() {
+  cp -a pipenv-$pkgver{,-py2}
+}
+
+build(){
+  cd "$srcdir/pipenv-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/pipenv-$pkgver-py2"
+  python2 setup.py build
+}
+
+package_python2-pipenv() {
+  depends=('python2' 'python2-pip' 'python-pew'
+   'python2-virtualenv' 'python2-flake8' 'python2-requests'
+   'python2-urllib3')
+  cd "pipenv-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  mv "${pkgdir}/usr/bin/pipenv" "${pkgdir}/usr/bin/pipenv2"
+}
+
+package_python-pipenv() {
+  depends=('python' 'python-pip' 'python-pew'
+   'python-virtualenv' 'flake8' 'python-requests'
+   'python-urllib3')
+  cd "pipenv-$pkgver"
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+


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

2017-12-02 Thread Morten Linderud via arch-commits
Date: Saturday, December 2, 2017 @ 13:20:24
  Author: foxboron
Revision: 271875

upgpkg: python-pipenv 8.3.2-2

Use python-pew instead of python2-pew as the binary is called, not any library

Modified:
  python-pipenv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 10:08:48 UTC (rev 271874)
+++ PKGBUILD2017-12-02 13:20:24 UTC (rev 271875)
@@ -4,7 +4,7 @@
 pkgbase=python-pipenv
 pkgname=(python-pipenv python2-pipenv)
 pkgver=8.3.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Sacred Marriage of Pipfile, Pip, & Virtualenv."
 url="https://docs.pipenv.org;
 arch=('any')
@@ -27,7 +27,7 @@
 }
 
 package_python2-pipenv() {
-  depends=('python2' 'python2-pip' 'python2-pew'
+  depends=('python2' 'python2-pip' 'python-pew'
'python2-virtualenv' 'python2-flake8' 'python2-requests'
'python2-urllib3')
   cd "pipenv-$pkgver-py2"


[arch-commits] Commit in kdepim-addons/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 10:58:21
  Author: arojas
Revision: 311487

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kdepim-addons/repos/kde-unstable-x86_64/PKGBUILD
(from rev 311486, kdepim-addons/kde-unstable/PKGBUILD)
Deleted:
  kdepim-addons/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 10:57:57 UTC (rev 311486)
+++ PKGBUILD2017-12-02 10:58:21 UTC (rev 311487)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=kdepim-addons
-pkgver=17.11.90
-pkgrel=1
-pkgdesc='Addons for KDE PIM applications'
-arch=(x86_64)
-url='https://community.kde.org/KDE_PIM'
-license=(GPL LGPL FDL)
-depends=(incidenceeditor libktnef libksieve akonadi-notes 
akonadi-import-wizard kparts)
-makedepends=(extra-cmake-modules kdoctools boost python)
-groups=(kde-applications kdepim)
-source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('76807fdb1dea4cf37f2299b133ebd74f14820da2f4e8b7f450e42be6f99ce926'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

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

Copied: kdepim-addons/repos/kde-unstable-x86_64/PKGBUILD (from rev 311486, 
kdepim-addons/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 10:58:21 UTC (rev 311487)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kdepim-addons
+pkgver=17.11.90
+pkgrel=2
+pkgdesc='Addons for KDE PIM applications'
+arch=(x86_64)
+url='https://community.kde.org/KDE_PIM'
+license=(GPL LGPL FDL)
+depends=(incidenceeditor libktnef libksieve akonadi-notes 
akonadi-import-wizard kparts)
+makedepends=(extra-cmake-modules kdoctools boost python)
+groups=(kde-applications kdepim)
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+
kdepim-addons-qt5.10.patch::"https://cgit.kde.org/kdepim-addons.git/patch/?id=9d4c218b;)
+sha256sums=('76807fdb1dea4cf37f2299b133ebd74f14820da2f4e8b7f450e42be6f99ce926'
+'SKIP'
+'a089a77bd16dda2d38fa422c2562bf3112ba7dbdacbddbc95e617146477100bd')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdepim-addons-qt5.10.patch # Qt 5.10 rc2 API changes
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in kdepim-addons/kde-unstable (PKGBUILD)

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 10:57:57
  Author: arojas
Revision: 311486

Adapt to Qt 5.10 rc2 API changes

Modified:
  kdepim-addons/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 10:48:50 UTC (rev 311485)
+++ PKGBUILD2017-12-02 10:57:57 UTC (rev 311486)
@@ -3,7 +3,7 @@
 
 pkgname=kdepim-addons
 pkgver=17.11.90
-pkgrel=1
+pkgrel=2
 pkgdesc='Addons for KDE PIM applications'
 arch=(x86_64)
 url='https://community.kde.org/KDE_PIM'
@@ -11,14 +11,19 @@
 depends=(incidenceeditor libktnef libksieve akonadi-notes 
akonadi-import-wizard kparts)
 makedepends=(extra-cmake-modules kdoctools boost python)
 groups=(kde-applications kdepim)
-source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+
kdepim-addons-qt5.10.patch::"https://cgit.kde.org/kdepim-addons.git/patch/?id=9d4c218b;)
 sha256sums=('76807fdb1dea4cf37f2299b133ebd74f14820da2f4e8b7f450e42be6f99ce926'
-'SKIP')
+'SKIP'
+'a089a77bd16dda2d38fa422c2562bf3112ba7dbdacbddbc95e617146477100bd')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdepim-addons-qt5.10.patch # Qt 5.10 rc2 API changes
 }
 
 build() {


[arch-commits] Commit in korganizer/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 10:48:50
  Author: arojas
Revision: 311485

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  korganizer/repos/kde-unstable-x86_64/PKGBUILD
(from rev 311484, korganizer/kde-unstable/PKGBUILD)
Deleted:
  korganizer/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 10:48:27 UTC (rev 311484)
+++ PKGBUILD2017-12-02 10:48:50 UTC (rev 311485)
@@ -1,38 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=korganizer
-pkgver=17.11.90
-pkgrel=1
-pkgdesc="Calendar and scheduling Program"
-arch=(x86_64)
-url="https://community.kde.org/KDE_PIM;
-license=(GPL2)
-depends=(kdepim-runtime kontactinterface incidenceeditor)
-makedepends=(extra-cmake-modules kdoctools python qt5-tools boost)
-optdepends=('kdepim-addons: additional plugins')
-groups=(kde-applications kdepim)
-source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('7b70d39ec547572f8992af18e37f8750bab3726a460226a24a728793c592b3e6'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-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
-}

Copied: korganizer/repos/kde-unstable-x86_64/PKGBUILD (from rev 311484, 
korganizer/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 10:48:50 UTC (rev 311485)
@@ -0,0 +1,43 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=korganizer
+pkgver=17.11.90
+pkgrel=2
+pkgdesc="Calendar and scheduling Program"
+arch=(x86_64)
+url="https://community.kde.org/KDE_PIM;
+license=(GPL2)
+depends=(kdepim-runtime kontactinterface incidenceeditor)
+makedepends=(extra-cmake-modules kdoctools python qt5-tools boost)
+optdepends=('kdepim-addons: additional plugins')
+groups=(kde-applications kdepim)
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+
korganizer-qt5.10.patch::"https://cgit.kde.org/korganizer.git/patch/?id=a383758d;)
+sha256sums=('7b70d39ec547572f8992af18e37f8750bab3726a460226a24a728793c592b3e6'
+'SKIP'
+'5c2f3362b4d07bb8ad88194c20d1ce8546fd58851bb337971aedb55ceda30793')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../korganizer-qt5.10.patch # Qt 5.10 rc2 API changes
+}
+
+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 korganizer/kde-unstable (PKGBUILD)

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 10:48:27
  Author: arojas
Revision: 311484

Adapt to Qt 5.10 rc2 API changes

Modified:
  korganizer/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 10:38:22 UTC (rev 311483)
+++ PKGBUILD2017-12-02 10:48:27 UTC (rev 311484)
@@ -3,7 +3,7 @@
 
 pkgname=korganizer
 pkgver=17.11.90
-pkgrel=1
+pkgrel=2
 pkgdesc="Calendar and scheduling Program"
 arch=(x86_64)
 url="https://community.kde.org/KDE_PIM;
@@ -12,14 +12,19 @@
 makedepends=(extra-cmake-modules kdoctools python qt5-tools boost)
 optdepends=('kdepim-addons: additional plugins')
 groups=(kde-applications kdepim)
-source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+
korganizer-qt5.10.patch::"https://cgit.kde.org/korganizer.git/patch/?id=a383758d;)
 sha256sums=('7b70d39ec547572f8992af18e37f8750bab3726a460226a24a728793c592b3e6'
-'SKIP')
+'SKIP'
+'5c2f3362b4d07bb8ad88194c20d1ce8546fd58851bb337971aedb55ceda30793')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../korganizer-qt5.10.patch # Qt 5.10 rc2 API changes
 }
 
 build() {


[arch-commits] Commit in knotes/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 10:38:22
  Author: arojas
Revision: 311483

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  knotes/repos/kde-unstable-x86_64/PKGBUILD
(from rev 311482, knotes/kde-unstable/PKGBUILD)
Deleted:
  knotes/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 10:37:56 UTC (rev 311482)
+++ PKGBUILD2017-12-02 10:38:22 UTC (rev 311483)
@@ -1,37 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=knotes
-pkgver=17.11.90
-pkgrel=1
-pkgdesc="Popup notes"
-arch=(x86_64)
-url="https://community.kde.org/KDE_PIM;
-license=(GPL2)
-depends=(kdepim-runtime kdnssd kontactinterface)
-makedepends=(extra-cmake-modules kdoctools kdesignerplugin boost python)
-groups=(kde-applications kdepim)
-source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('d91cd0cf147cdd0b888feb5203b92aa2c5c906dd2fa99aab5b96b42c8c5f5b1d'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-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
-}

Copied: knotes/repos/kde-unstable-x86_64/PKGBUILD (from rev 311482, 
knotes/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 10:38:22 UTC (rev 311483)
@@ -0,0 +1,42 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=knotes
+pkgver=17.11.90
+pkgrel=2
+pkgdesc="Popup notes"
+arch=(x86_64)
+url="https://community.kde.org/KDE_PIM;
+license=(GPL2)
+depends=(kdepim-runtime kdnssd kontactinterface)
+makedepends=(extra-cmake-modules kdoctools kdesignerplugin boost python)
+groups=(kde-applications kdepim)
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+
knotes-qt5.10.patch::"https://cgit.kde.org/knotes.git/patch/?id=db1a8748;)
+sha256sums=('d91cd0cf147cdd0b888feb5203b92aa2c5c906dd2fa99aab5b96b42c8c5f5b1d'
+'SKIP'
+'e4df8adc419e0d96e3de87c94958add3392a57738577aab5702d50543ed7fbfd')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../knotes-qt5.10.patch # Qt 5.10 rc2 API changes
+}
+
+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 knotes/kde-unstable (PKGBUILD)

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 10:37:56
  Author: arojas
Revision: 311482

Adapt to Qt 5.10 rc2 API changes

Modified:
  knotes/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 10:26:59 UTC (rev 311481)
+++ PKGBUILD2017-12-02 10:37:56 UTC (rev 311482)
@@ -3,7 +3,7 @@
 
 pkgname=knotes
 pkgver=17.11.90
-pkgrel=1
+pkgrel=2
 pkgdesc="Popup notes"
 arch=(x86_64)
 url="https://community.kde.org/KDE_PIM;
@@ -11,14 +11,19 @@
 depends=(kdepim-runtime kdnssd kontactinterface)
 makedepends=(extra-cmake-modules kdoctools kdesignerplugin boost python)
 groups=(kde-applications kdepim)
-source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+
knotes-qt5.10.patch::"https://cgit.kde.org/knotes.git/patch/?id=db1a8748;)
 sha256sums=('d91cd0cf147cdd0b888feb5203b92aa2c5c906dd2fa99aab5b96b42c8c5f5b1d'
-'SKIP')
+'SKIP'
+'e4df8adc419e0d96e3de87c94958add3392a57738577aab5702d50543ed7fbfd')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../knotes-qt5.10.patch # Qt 5.10 rc2 API changes
 }
 
 build() {


[arch-commits] Commit in kdepim-runtime/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 10:26:59
  Author: arojas
Revision: 311481

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kdepim-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 311480, kdepim-runtime/kde-unstable/PKGBUILD)
Deleted:
  kdepim-runtime/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 10:26:29 UTC (rev 311480)
+++ PKGBUILD2017-12-02 10:26:59 UTC (rev 311481)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdepim-runtime
-pkgver=17.11.90
-pkgrel=1
-pkgdesc='Extends the functionality of kdepim'
-arch=(x86_64)
-url='https://community.kde.org/KDE_PIM'
-license=(GPL LGPL FDL)
-depends=(libkgapi libkolabxml kdav akonadi-calendar knotifyconfig kalarmcal 
kmbox pimcommon akonadi-notes)
-makedepends=(extra-cmake-modules kdoctools boost python kdesignerplugin)
-conflicts=(kio-pim)
-source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('5a2ce923cd76ddb71364051396ae1707a5d3ba94524eb8e8b060fa6faaebcdaa'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

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

Copied: kdepim-runtime/repos/kde-unstable-x86_64/PKGBUILD (from rev 311480, 
kdepim-runtime/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 10:26:59 UTC (rev 311481)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdepim-runtime
+pkgver=17.11.90
+pkgrel=2
+pkgdesc='Extends the functionality of kdepim'
+arch=(x86_64)
+url='https://community.kde.org/KDE_PIM'
+license=(GPL LGPL FDL)
+depends=(libkgapi libkolabxml kdav akonadi-calendar knotifyconfig kalarmcal 
kmbox pimcommon akonadi-notes)
+makedepends=(extra-cmake-modules kdoctools boost python kdesignerplugin)
+conflicts=(kio-pim)
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+
kdepim-runtime-qt5.10.patch::"https://cgit.kde.org/kdepim-runtime.git/patch/?id=e4792e2f;)
+sha256sums=('5a2ce923cd76ddb71364051396ae1707a5d3ba94524eb8e8b060fa6faaebcdaa'
+'SKIP'
+'ebaca14f242cb0a23408ba11ea031f896697928f83a2a83155da0abd4e22e3d0')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdepim-runtime-qt5.10.patch # Qt 5.10 rc2 API changes
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in kdepim-runtime/kde-unstable (PKGBUILD)

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 10:26:29
  Author: arojas
Revision: 311480

Adapt to Qt 5.10 rc2 API changes

Modified:
  kdepim-runtime/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 10:11:00 UTC (rev 311479)
+++ PKGBUILD2017-12-02 10:26:29 UTC (rev 311480)
@@ -6,7 +6,7 @@
 
 pkgname=kdepim-runtime
 pkgver=17.11.90
-pkgrel=1
+pkgrel=2
 pkgdesc='Extends the functionality of kdepim'
 arch=(x86_64)
 url='https://community.kde.org/KDE_PIM'
@@ -14,14 +14,19 @@
 depends=(libkgapi libkolabxml kdav akonadi-calendar knotifyconfig kalarmcal 
kmbox pimcommon akonadi-notes)
 makedepends=(extra-cmake-modules kdoctools boost python kdesignerplugin)
 conflicts=(kio-pim)
-source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+
kdepim-runtime-qt5.10.patch::"https://cgit.kde.org/kdepim-runtime.git/patch/?id=e4792e2f;)
 sha256sums=('5a2ce923cd76ddb71364051396ae1707a5d3ba94524eb8e8b060fa6faaebcdaa'
-'SKIP')
+'SKIP'
+'ebaca14f242cb0a23408ba11ea031f896697928f83a2a83155da0abd4e22e3d0')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdepim-runtime-qt5.10.patch # Qt 5.10 rc2 API changes
 }
 
 build() {


[arch-commits] Commit in pimcommon/kde-unstable (PKGBUILD)

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 10:11:00
  Author: arojas
Revision: 311479

Use upstreamed patch

Modified:
  pimcommon/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 10:04:26 UTC (rev 311478)
+++ PKGBUILD2017-12-02 10:11:00 UTC (rev 311479)
@@ -10,10 +10,11 @@
 depends=(libkdepim kpimtextedit knewstuff kimap)
 makedepends=(extra-cmake-modules python boost qt5-tools kdesignerplugin)
 conflicts=('libkdepim<16')
-source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
 pimcommon-qt5.10.patch)
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+
pimcommon-qt5.10.patch::"https://cgit.kde.org/pimcommon.git/patch/?id=2dad2ca4;)
 sha256sums=('9a97ec976935ac634d15cee6da33d634cc496680eacae6bc9d2ed2453fb30edc'
 'SKIP'
-'3b548daac533b3f0bcca5820c90b8c8d49a6e91d55c49469ef8f5b098dbe4d3b')
+'457764afa2cae6ecd01deb079878127b6fac9b9537fe0780a92d6d10d9380f31')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

 


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

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 10:08:48
  Author: arojas
Revision: 271874

Revert unintended changes

Modified:
  kaffeine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 09:57:05 UTC (rev 271873)
+++ PKGBUILD2017-12-02 10:08:48 UTC (rev 271874)
@@ -28,7 +28,7 @@
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DBUILD_TESTING=OFF
-  make -j1
+  make
 }
 
 package() {


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

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 10:04:26
  Author: arojas
Revision: 311478

archrelease: copy trunk to extra-x86_64

Added:
  glpk/repos/extra-x86_64/PKGBUILD
(from rev 311477, glpk/trunk/PKGBUILD)
Deleted:
  glpk/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 10:03:47 UTC (rev 311477)
+++ PKGBUILD2017-12-02 10:04:26 UTC (rev 311478)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: bzklrm 
-# Additional contributors Senjin, Xavier, dundee
-
-pkgname=glpk
-pkgver=4.63
-pkgrel=1
-pkgdesc="GNU Linear Programming Kit : solve LP, MIP and other problems."
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/glpk/glpk.html;
-license=('GPL')
-depends=('gmp')
-source=(http://ftp.gnu.org/gnu/glpk/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha1sums=('8552ecdde601f94552e981eabfb84aa450b82d36'
-  'SKIP')
-validpgpkeys=('A2B56CCB42220C06481335BAD17BF2305981E818') # Andrew Makhorin
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --with-gmp
-
-  if [ "$CARCH" == "x86_64" ]; then
-make CFLAGS="$CFLAGS -fPIC"
-  else
-make
-  fi
-}
-
-package(){
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 doc/glpk.pdf "${pkgdir}/usr/share/doc/glpk/glpk.pdf"
-  install -Dm644 doc/gmpl.pdf "${pkgdir}/usr/share/doc/glpk/gmpl.pdf"
-}

Copied: glpk/repos/extra-x86_64/PKGBUILD (from rev 311477, glpk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 10:04:26 UTC (rev 311478)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: bzklrm 
+# Additional contributors Senjin, Xavier, dundee
+
+pkgname=glpk
+pkgver=4.64
+pkgrel=1
+pkgdesc="GNU Linear Programming Kit : solve LP, MIP and other problems."
+arch=('x86_64')
+url="http://www.gnu.org/software/glpk/glpk.html;
+license=('GPL')
+depends=('gmp')
+source=(http://ftp.gnu.org/gnu/glpk/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha1sums=('b7828320ad02530a47a3a65813b75626c2a308da'
+  'SKIP')
+validpgpkeys=('A2B56CCB42220C06481335BAD17BF2305981E818') # Andrew Makhorin
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr --with-gmp
+  make
+}
+
+package(){
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 doc/glpk.pdf "${pkgdir}/usr/share/doc/glpk/glpk.pdf"
+  install -Dm644 doc/gmpl.pdf "${pkgdir}/usr/share/doc/glpk/gmpl.pdf"
+}


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

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 10:03:47
  Author: arojas
Revision: 311477

Update to 4.64

Modified:
  glpk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 09:14:54 UTC (rev 311476)
+++ PKGBUILD2017-12-02 10:03:47 UTC (rev 311477)
@@ -4,7 +4,7 @@
 # Additional contributors Senjin, Xavier, dundee
 
 pkgname=glpk
-pkgver=4.63
+pkgver=4.64
 pkgrel=1
 pkgdesc="GNU Linear Programming Kit : solve LP, MIP and other problems."
 arch=('x86_64')
@@ -12,7 +12,7 @@
 license=('GPL')
 depends=('gmp')
 source=(http://ftp.gnu.org/gnu/glpk/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha1sums=('8552ecdde601f94552e981eabfb84aa450b82d36'
+sha1sums=('b7828320ad02530a47a3a65813b75626c2a308da'
   'SKIP')
 validpgpkeys=('A2B56CCB42220C06481335BAD17BF2305981E818') # Andrew Makhorin
 
@@ -20,12 +20,7 @@
   cd "${srcdir}/${pkgname}-${pkgver}"
 
   ./configure --prefix=/usr --with-gmp
-
-  if [ "$CARCH" == "x86_64" ]; then
-make CFLAGS="$CFLAGS -fPIC"
-  else
-make
-  fi
+  make
 }
 
 package(){


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

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 09:57:05
  Author: arojas
Revision: 271873

archrelease: copy trunk to community-x86_64

Added:
  kaffeine/repos/community-x86_64/PKGBUILD
(from rev 271872, kaffeine/trunk/PKGBUILD)
Deleted:
  kaffeine/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 09:56:28 UTC (rev 271872)
+++ PKGBUILD2017-12-02 09:57:05 UTC (rev 271873)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Pierre Schmitz 
-
-pkgname=kaffeine
-pkgver=2.0.13
-pkgrel=1
-pkgdesc='KDE media player'
-license=(GPL)
-arch=(i686 x86_64)
-url="https://kaffeine.kde.org;
-depends=(kio libxss vlc)
-makedepends=(extra-cmake-modules kidletime kdoctools)
-source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('1ac52ac811a9c9e88fcd466a7df13860fcd749cd125e7d533f589e6a6ee176fd'
-'SKIP')
-validpgpkeys=(F909AE68FC11DF09C1755C00085F3EBD8EE4E115) # Mauro Carvalho 
Chehab 
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kaffeine/repos/community-x86_64/PKGBUILD (from rev 271872, 
kaffeine/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 09:57:05 UTC (rev 271873)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Pierre Schmitz 
+
+pkgname=kaffeine
+pkgver=2.0.14
+pkgrel=1
+pkgdesc='KDE media player'
+license=(GPL)
+arch=(x86_64)
+url="https://kaffeine.kde.org;
+depends=(kio libxss vlc)
+makedepends=(extra-cmake-modules kidletime kdoctools)
+source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('2c73fd473f0579cffa7e797e3d00c41b09d7fb4dee486bb507877a56bd1d7f3a'
+'SKIP')
+validpgpkeys=(F909AE68FC11DF09C1755C00085F3EBD8EE4E115) # Mauro Carvalho 
Chehab 
+
+prepare() {
+  mkdir -p build
+
+  rm -r $pkgname-$pkgver/po/pt_BR/docs # Doesn't build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTING=OFF
+  make -j1
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 09:56:28
  Author: arojas
Revision: 271872

Update to 2.0.14

Modified:
  kaffeine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-02 03:51:55 UTC (rev 271871)
+++ PKGBUILD2017-12-02 09:56:28 UTC (rev 271872)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=kaffeine
-pkgver=2.0.13
+pkgver=2.0.14
 pkgrel=1
 pkgdesc='KDE media player'
 license=(GPL)
@@ -12,12 +12,14 @@
 depends=(kio libxss vlc)
 makedepends=(extra-cmake-modules kidletime kdoctools)
 
source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('1ac52ac811a9c9e88fcd466a7df13860fcd749cd125e7d533f589e6a6ee176fd'
+sha256sums=('2c73fd473f0579cffa7e797e3d00c41b09d7fb4dee486bb507877a56bd1d7f3a'
 'SKIP')
 validpgpkeys=(F909AE68FC11DF09C1755C00085F3EBD8EE4E115) # Mauro Carvalho 
Chehab 
 
 prepare() {
   mkdir -p build
+
+  rm -r $pkgname-$pkgver/po/pt_BR/docs # Doesn't build
 }
 
 build() {
@@ -26,7 +28,7 @@
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DBUILD_TESTING=OFF
-  make
+  make -j1
 }
 
 package() {


[arch-commits] Commit in pimcommon/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 09:14:54
  Author: arojas
Revision: 311476

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  pimcommon/repos/kde-unstable-x86_64/PKGBUILD
(from rev 311475, pimcommon/kde-unstable/PKGBUILD)
Deleted:
  pimcommon/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-02 09:14:26 UTC (rev 311475)
+++ PKGBUILD2017-12-02 09:14:54 UTC (rev 311476)
@@ -1,36 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=pimcommon
-pkgver=17.11.90
-pkgrel=1
-pkgdesc="Common libraries for KDE PIM"
-arch=(x86_64)
-url="https://community.kde.org/KDE_PIM;
-license=(LGPL)
-depends=(libkdepim kpimtextedit knewstuff kimap)
-makedepends=(extra-cmake-modules python boost qt5-tools kdesignerplugin)
-conflicts=('libkdepim<16')
-source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('9a97ec976935ac634d15cee6da33d634cc496680eacae6bc9d2ed2453fb30edc'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-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
-}

Copied: pimcommon/repos/kde-unstable-x86_64/PKGBUILD (from rev 311475, 
pimcommon/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-02 09:14:54 UTC (rev 311476)
@@ -0,0 +1,40 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=pimcommon
+pkgver=17.11.90
+pkgrel=2
+pkgdesc="Common libraries for KDE PIM"
+arch=(x86_64)
+url="https://community.kde.org/KDE_PIM;
+license=(LGPL)
+depends=(libkdepim kpimtextedit knewstuff kimap)
+makedepends=(extra-cmake-modules python boost qt5-tools kdesignerplugin)
+conflicts=('libkdepim<16')
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
 pimcommon-qt5.10.patch)
+sha256sums=('9a97ec976935ac634d15cee6da33d634cc496680eacae6bc9d2ed2453fb30edc'
+'SKIP'
+'3b548daac533b3f0bcca5820c90b8c8d49a6e91d55c49469ef8f5b098dbe4d3b')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../pimcommon-qt5.10.patch # Qt API change
+}
+
+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 pimcommon/kde-unstable (PKGBUILD)

2017-12-02 Thread Antonio Rojas via arch-commits
Date: Saturday, December 2, 2017 @ 09:14:26
  Author: arojas
Revision: 311475

Adapt to  Qt 5.10 rc2 API changes

Modified:
  pimcommon/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-01 19:44:08 UTC (rev 311474)
+++ PKGBUILD2017-12-02 09:14:26 UTC (rev 311475)
@@ -2,7 +2,7 @@
 
 pkgname=pimcommon
 pkgver=17.11.90
-pkgrel=1
+pkgrel=2
 pkgdesc="Common libraries for KDE PIM"
 arch=(x86_64)
 url="https://community.kde.org/KDE_PIM;
@@ -10,14 +10,18 @@
 depends=(libkdepim kpimtextedit knewstuff kimap)
 makedepends=(extra-cmake-modules python boost qt5-tools kdesignerplugin)
 conflicts=('libkdepim<16')
-source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
 pimcommon-qt5.10.patch)
 sha256sums=('9a97ec976935ac634d15cee6da33d634cc496680eacae6bc9d2ed2453fb30edc'
-'SKIP')
+'SKIP'
+'3b548daac533b3f0bcca5820c90b8c8d49a6e91d55c49469ef8f5b098dbe4d3b')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../pimcommon-qt5.10.patch # Qt API change
 }
 
 build() {