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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 07:55:51
  Author: felixonmars
Revision: 400041

add workaround for python 3.9

Modified:
  zbar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 07:03:56 UTC (rev 400040)
+++ PKGBUILD2020-11-10 07:55:51 UTC (rev 400041)
@@ -24,6 +24,9 @@
 prepare() {
   cd zbar-$pkgver
   autoreconf -vfi
+
+  # Removed in Python 3.9. Ignored in Python 3.0+ anyway.
+  sed -i '/tp_print/d' python/enum.c
 }
 
 build() {


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 07:35:54
  Author: felixonmars
Revision: 749415

upgpkg: postgrest 7.0.1-139: rebuild with wai-middleware-static 0.9.0

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 07:33:35 UTC (rev 749414)
+++ PKGBUILD2020-11-10 07:35:54 UTC (rev 749415)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=7.0.1
-pkgrel=138
+pkgrel=139
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 07:36:04
  Author: felixonmars
Revision: 749416

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 749415, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-10 07:36:04 UTC (rev 749416)
@@ -0,0 +1,71 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=7.0.1
+pkgrel=139
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-ranged-sets' 'haskell-aeson' 
'haskell-ansi-wl-pprint'
+ 'haskell-base64-bytestring' 'haskell-case-insensitive' 
'haskell-cassava'
+ 'haskell-configurator-pg' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-cookie' 'haskell-either' 'haskell-gitrev' 'haskell-hasql' 
'haskell-hasql-pool'
+ 'haskell-hasql-transaction' 'haskell-heredoc' 'haskell-http-types'
+ 'haskell-insert-ordered-containers' 
'haskell-interpolatedstring-perl6' 'haskell-jose'
+ 'haskell-lens' 'haskell-lens-aeson' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-parsec' 'haskell-protolude' 'haskell-regex-tdfa' 
'haskell-scientific'
+ 'haskell-swagger2' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-cors' 'haskell-wai-extra' 'haskell-wai-middleware-static'
+ 'haskell-auto-update' 'haskell-retry' 'haskell-warp')
+makedepends=('ghc' 'uusi' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-monad-control' 
'haskell-transformers-base')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;)
+sha512sums=('0e6270ff4762b444b4d3791ceea4bb468bc316c9d2103f9d355e2e6108bb4bb51b302499b68a5cfc4ff14f503bdd95985481f7fb6eb6dbb158f1f5350857cf1b')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i 's/5432/9824/' test/fixtures/dumpfixture.sh
+uusi $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 --ghc-option='-pie'
+runhaskell Setup build $MAKEFLAGS
+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)
+createdb postgrest_test
+
+# TODO: user authentication issue?
+POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test || echo 
"Tests failed"
+
+# 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 sagemath/repos/community-staging-x86_64 (20 files)

2020-11-09 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 10, 2020 @ 07:33:22
  Author: arojas
Revision: 749412

archrelease: copy trunk to community-staging-x86_64

Added:
  sagemath/repos/community-staging-x86_64/PKGBUILD
(from rev 749411, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-staging-x86_64/latte-count.patch
(from rev 749411, sagemath/trunk/latte-count.patch)
  sagemath/repos/community-staging-x86_64/sagemath-cremona.patch
(from rev 749411, sagemath/trunk/sagemath-cremona.patch)
  sagemath/repos/community-staging-x86_64/sagemath-cypari-2.1.2.patch
(from rev 749411, sagemath/trunk/sagemath-cypari-2.1.2.patch)
  sagemath/repos/community-staging-x86_64/sagemath-flint-2.6.patch
(from rev 749411, sagemath/trunk/sagemath-flint-2.6.patch)
  sagemath/repos/community-staging-x86_64/sagemath-gap-4.11.patch
(from rev 749411, sagemath/trunk/sagemath-gap-4.11.patch)
  sagemath/repos/community-staging-x86_64/sagemath-optional-packages.patch
(from rev 749411, sagemath/trunk/sagemath-optional-packages.patch)
  sagemath/repos/community-staging-x86_64/sagemath-pari-2.13.patch
(from rev 749411, sagemath/trunk/sagemath-pari-2.13.patch)
  sagemath/repos/community-staging-x86_64/sagemath-singular-4.1.2.patch
(from rev 749411, sagemath/trunk/sagemath-singular-4.1.2.patch)
  sagemath/repos/community-staging-x86_64/test-optional.patch
(from rev 749411, sagemath/trunk/test-optional.patch)
Deleted:
  sagemath/repos/community-staging-x86_64/PKGBUILD
  sagemath/repos/community-staging-x86_64/latte-count.patch
  sagemath/repos/community-staging-x86_64/sagemath-cremona.patch
  sagemath/repos/community-staging-x86_64/sagemath-cypari-2.1.2.patch
  sagemath/repos/community-staging-x86_64/sagemath-flint-2.6.patch
  sagemath/repos/community-staging-x86_64/sagemath-gap-4.11.patch
  sagemath/repos/community-staging-x86_64/sagemath-optional-packages.patch
  sagemath/repos/community-staging-x86_64/sagemath-pari-2.13.patch
  sagemath/repos/community-staging-x86_64/sagemath-singular-4.1.2.patch
  sagemath/repos/community-staging-x86_64/test-optional.patch

--+
 PKGBUILD |  266 +-
 latte-count.patch|  178 -
 sagemath-cremona.patch   |   62 
 sagemath-cypari-2.1.2.patch  |  310 +-
 sagemath-flint-2.6.patch |  220 -
 sagemath-gap-4.11.patch  |  520 ++--
 sagemath-optional-packages.patch |   44 
 sagemath-pari-2.13.patch | 4127 +++--
 sagemath-singular-4.1.2.patch| 1518 ++---
 test-optional.patch  |   50 
 10 files changed, 3786 insertions(+), 3509 deletions(-)

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


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 07:33:35
  Author: felixonmars
Revision: 749414

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-10 07:33:23 UTC (rev 749413)
+++ PKGBUILD2020-11-10 07:33:35 UTC (rev 749414)
@@ -1,64 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=Agda
-pkgname=agda
-pkgver=2.6.1.1
-pkgrel=33
-pkgdesc="A dependently typed functional programming language and proof 
assistant"
-url="https://wiki.portal.chalmers.se/agda/;
-license=("custom")
-arch=('x86_64')
-depends=('ghc-libs' 'ghc' 'haskell-aeson' 'haskell-async' 'haskell-blaze-html' 
'haskell-boxes'
- 'haskell-cpphs' 'haskell-data-hash' 'haskell-edit-distance' 
'haskell-equivalence'
- 'haskell-geniplate-mirror' 'haskell-gitrev' 'haskell-hashable'
- 'haskell-hashtables' 'haskell-ieee754' 'haskell-murmur-hash' 
'haskell-regex-tdfa'
- 'haskell-split' 'haskell-strict' 'haskell-unordered-containers' 
'haskell-uri-encode'
- 'haskell-zlib')
-optdepends=('agda-stdlib: for standard library')
-makedepends=('alex' 'happy' 'ghc' 'haskell-filemanip')
-source=("$_hkgname-$pkgver.tar.gz::https://github.com/agda/agda/archive/v$pkgver.tar.gz;
-
agda-strict-0.4.patch::https://github.com/felixonmars/agda/commit/0497ec9fdde159a56ee42821e500b52d66374201.patch
-
agda-aeson-1.5.3.patch::https://github.com/agda/agda/commit/292f7d8c3def7e69ce9e79c67c895d6a4956dc5f.patch)
-sha512sums=('fb5bb2d1bc2ea253e709da3a29920a06f35523fda88b9cdc3f0e957e240871d0e535ca4ca92e17d67f112324c0ad90058edcbac76a0bdf2baccdcd16b9af7c1f'
-
'6968a367d8d8cfa9a89d4760ba13aa5236ff1d3597ad8ef9301c33d3696decec092d4fd3556ae8c0bf4c09cd1f157ddb38b1443c2d340487a7eef93cf23a3a7b'
-
'9d8c233c87161ba80d283db0e301c2ff80f771a9e63416fce5c0e846146cd6a4aeae91a97dff869a724afc021c26d4c3088ebfc3a11c814d637fac5a5b66')
-
-prepare() {
-cd $pkgname-$pkgver
-patch -p1 -i ../agda-strict-0.4.patch
-patch -p1 -i ../agda-aeson-1.5.3.patch
-sed -i '/fno-warn-overlapping-patterns/a \, "-dynamic"' 
src/full/Agda/Compiler/MAlonzo/Compiler.hs
-sed -e "s|(\"Agda_datadir\", agda_datadir) : e|[(\"Agda_datadir\", 
agda_datadir), (\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ e|" \
--i Setup.hs
-sed -i 's/< *1.5/<2/' $_hkgname.cabal
-}
-
-build() {
-cd $pkgname-$pkgver
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
--fcpphs -f-debug -f-enable-cluster-counting
-LC_CTYPE=en_US.UTF-8 runhaskell Setup build $MAKEFLAGS
-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 $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}"
-
-# Symlink to avoid writing to this place when agda-lib is present
-install -dm755 "$pkgdir"/usr/share/agda/lib/_build/$pkgver/agda
-ln -s ../../../prim "$pkgdir"/usr/share/agda/lib/_build/$pkgver/agda/
-
-install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
-}

Copied: agda/repos/community-x86_64/PKGBUILD (from rev 749413, 
agda/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-10 07:33:35 UTC (rev 749414)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=Agda
+pkgname=agda
+pkgver=2.6.1.2
+pkgrel=1
+pkgdesc="A dependently typed functional programming language and proof 
assistant"
+url="https://wiki.portal.chalmers.se/agda/;
+license=("custom")
+arch=('x86_64')
+depends=('ghc-libs' 'ghc' 'haskell-aeson' 'haskell-async' 'haskell-blaze-html' 
'haskell-boxes'
+ 'haskell-cpphs' 'haskell-data-hash' 'haskell-edit-distance' 
'haskell-equivalence'
+ 'haskell-geniplate-mirror' 'haskell-gitrev' 'haskell-hashable'
+ 'haskell-hashtables' 'haskell-ieee754' 'haskell-murmur-hash' 
'haskell-regex-tdfa'
+ 'haskell-split' 'haskell-strict' 'haskell-unordered-containers' 

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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 07:33:23
  Author: felixonmars
Revision: 749413

upgpkg: agda 2.6.1.2-1

Modified:
  agda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 07:33:22 UTC (rev 749412)
+++ PKGBUILD2020-11-10 07:33:23 UTC (rev 749413)
@@ -3,8 +3,8 @@
 
 _hkgname=Agda
 pkgname=agda
-pkgver=2.6.1.1
-pkgrel=33
+pkgver=2.6.1.2
+pkgrel=1
 pkgdesc="A dependently typed functional programming language and proof 
assistant"
 url="https://wiki.portal.chalmers.se/agda/;
 license=("custom")
@@ -17,25 +17,16 @@
  'haskell-zlib')
 optdepends=('agda-stdlib: for standard library')
 makedepends=('alex' 'happy' 'ghc' 'haskell-filemanip')
-source=("$_hkgname-$pkgver.tar.gz::https://github.com/agda/agda/archive/v$pkgver.tar.gz;
-
agda-strict-0.4.patch::https://github.com/felixonmars/agda/commit/0497ec9fdde159a56ee42821e500b52d66374201.patch
-
agda-aeson-1.5.3.patch::https://github.com/agda/agda/commit/292f7d8c3def7e69ce9e79c67c895d6a4956dc5f.patch)
-sha512sums=('fb5bb2d1bc2ea253e709da3a29920a06f35523fda88b9cdc3f0e957e240871d0e535ca4ca92e17d67f112324c0ad90058edcbac76a0bdf2baccdcd16b9af7c1f'
-
'6968a367d8d8cfa9a89d4760ba13aa5236ff1d3597ad8ef9301c33d3696decec092d4fd3556ae8c0bf4c09cd1f157ddb38b1443c2d340487a7eef93cf23a3a7b'
-
'9d8c233c87161ba80d283db0e301c2ff80f771a9e63416fce5c0e846146cd6a4aeae91a97dff869a724afc021c26d4c3088ebfc3a11c814d637fac5a5b66')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('5ab35d9b581ed918481dd25619739dfa43ea3d86b9522989fe8c83b3aa8749bee81fb12e7cd6b4270c4890a3719386c62b220163324407a1201273d1dfe9d615')
 
 prepare() {
-cd $pkgname-$pkgver
-patch -p1 -i ../agda-strict-0.4.patch
-patch -p1 -i ../agda-aeson-1.5.3.patch
+cd $_hkgname-$pkgver
 sed -i '/fno-warn-overlapping-patterns/a \, "-dynamic"' 
src/full/Agda/Compiler/MAlonzo/Compiler.hs
-sed -e "s|(\"Agda_datadir\", agda_datadir) : e|[(\"Agda_datadir\", 
agda_datadir), (\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ e|" \
--i Setup.hs
-sed -i 's/< *1.5/<2/' $_hkgname.cabal
 }
 
 build() {
-cd $pkgname-$pkgver
+cd $_hkgname-$pkgver
 
 runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
 --prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
@@ -49,11 +40,11 @@
 }
 
 package() {
-cd $pkgname-$pkgver
+cd $_hkgname-$pkgver
 
 install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
 install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
-runhaskell Setup copy --destdir="${pkgdir}"
+LD_LIBRARY_PATH="$PWD/dist/build" runhaskell Setup copy 
--destdir="${pkgdir}"
 
 # Symlink to avoid writing to this place when agda-lib is present
 install -dm755 "$pkgdir"/usr/share/agda/lib/_build/$pkgver/agda


[arch-commits] Commit in sagemath/repos (community-testing-x86_64)

2020-11-09 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 10, 2020 @ 07:32:55
  Author: arojas
Revision: 749411

Wrong repo

Deleted:
  sagemath/repos/community-testing-x86_64/


[arch-commits] Commit in sagemath/trunk (PKGBUILD sagemath-pari-2.13.patch)

2020-11-09 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 10, 2020 @ 07:31:43
  Author: arojas
Revision: 749409

Fix symlinks to jupyter assets (FS#68597), update pari 2.13 patch

Modified:
  sagemath/trunk/PKGBUILD
  sagemath/trunk/sagemath-pari-2.13.patch

--+
 PKGBUILD |6 
 sagemath-pari-2.13.patch |  383 ++---
 2 files changed, 333 insertions(+), 56 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 06:54:21 UTC (rev 749408)
+++ PKGBUILD2020-11-10 07:31:43 UTC (rev 749409)
@@ -8,7 +8,7 @@
 pkgbase=sagemath
 pkgname=(sagemath sagemath-jupyter)
 pkgver=9.2
-pkgrel=4
+pkgrel=5
 pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab"
 arch=(x86_64)
 url="http://www.sagemath.org;
@@ -53,7 +53,7 @@
 '34f06f9776f84f6998b1350555316e0ffea76ed16e149916970f19ef750a467f'
 '5d00b24c1d36b41b8ea3f07b93fc0e00b42dd84d9bc4e9b3d26e5f2cfeba6405'
 'dc507eeb75eae1109273879771b4eb56172b7417e87a0693381106afd7554e04'
-'a285ab97c4342c1d050db3493c03807a0162ced74a67bea9eb2794f52ce439fc')
+'84875c90268436cb6a740a4e1bffd70b4895458ef9e1ee268a3c4aa0564e893f')
 
 prepare(){
   cd sage-$pkgver
@@ -126,7 +126,7 @@
   python -c "from sage.repl.ipython_kernel.install import SageKernelSpec; 
SageKernelSpec.update(prefix='$pkgdir/usr')"
 # fix symlinks to assets
   _pythonpath=`python -c "from sysconfig import get_path; 
print(get_path('platlib'))"`
-  for _i in $(ls ext/notebook-ipython); do
+  for _i in $(ls sage/ext_data/notebook-ipython); do
 rm "$pkgdir"/usr/share/jupyter/kernels/sagemath/$_i
 ln -s $_pythonpath/sage/ext_data/notebook-ipython/$_i 
"$pkgdir"/usr/share/jupyter/kernels/sagemath/
   done

Modified: sagemath-pari-2.13.patch
===
--- sagemath-pari-2.13.patch2020-11-10 06:54:21 UTC (rev 749408)
+++ sagemath-pari-2.13.patch2020-11-10 07:31:43 UTC (rev 749409)
@@ -1,5 +1,5 @@
 diff --git a/src/sage/arith/misc.py b/src/sage/arith/misc.py
-index 6e041e65fe..b12fa25251 100644
+index ba100c4a83..8aa96d8e14 100644
 --- a/src/sage/arith/misc.py
 +++ b/src/sage/arith/misc.py
 @@ -1458,13 +1458,13 @@ def divisors(n):
@@ -229,6 +229,22 @@
  """
  return self._orig_gens
  
+diff --git a/src/sage/groups/fqf_orthogonal.py 
b/src/sage/groups/fqf_orthogonal.py
+index 3c5190589b..c536f03064 100644
+--- a/src/sage/groups/fqf_orthogonal.py
 b/src/sage/groups/fqf_orthogonal.py
+@@ -156,9 +156,9 @@ class 
FqfOrthogonalGroup(AbelianGroupAutomorphismGroup_subgroup):
+ sage: S2 = 9 * T
+ sage: Q = S1/S2
+ sage: G = T.orthogonal_group()
+-sage: g = G(matrix(ZZ, 2, [8, 0, 0, 1]))
++sage: g = G(matrix(ZZ, 2, [7, 12, 8, 19]))
+ sage: Q.1 * g
+-(0, 2)
++(0, 1)
+ """
+ Element = FqfIsometry
+ 
 diff --git a/src/sage/lfunctions/pari.py b/src/sage/lfunctions/pari.py
 index c45f3bfd5c..233905dd87 100644
 --- a/src/sage/lfunctions/pari.py
@@ -242,8 +258,27 @@
  
  .. RUBRIC:: Number field
  
+diff --git a/src/sage/libs/pari/__init__.py b/src/sage/libs/pari/__init__.py
+index 77eda66097..3fa4618631 100644
+--- a/src/sage/libs/pari/__init__.py
 b/src/sage/libs/pari/__init__.py
+@@ -161,12 +161,12 @@ exact object. Therefore, you should set the precision 
for each method
+ call individually::
+ 
+ sage: e = pari([0,0,0,-82,0]).ellinit()
+-sage: eta1 = e.elleta(precision=100)[0]
++sage: eta1 = e.elleta(precision=50)[0]
+ sage: eta1.sage()
+ 3.6054636014326520859158205642077267748
+ sage: eta1 = e.elleta(precision=180)[0]
+ sage: eta1.sage()
+-3.60546360143265208591582056420772677481026899659802474544
++
3.605463601432652085915820564207726774810268996598024745444380641429820491740
+ 
+ """
+ 
 diff --git a/src/sage/libs/pari/convert_sage.pyx 
b/src/sage/libs/pari/convert_sage.pyx
-index 4e9dc06dd6..7446a91864 100644
+index 33aa4d2d46..b506227cff 100644
 --- a/src/sage/libs/pari/convert_sage.pyx
 +++ b/src/sage/libs/pari/convert_sage.pyx
 @@ -144,6 +144,20 @@ cpdef gen_to_sage(Gen z, locals=None):
@@ -362,18 +397,6 @@
  
  sage: pari(2).gammah()
  1.32934038817914
-@@ -866,11 +866,6 @@ Transcendental functions::
- sage: pari(2).sqrt()
- 1.41421356237310
- 
--sage: pari(8).sqrtint()
--2
--sage: pari(10^100).sqrtint()
--100
--
- sage: pari(2).tan()
- -2.18503986326152
- sage: C. = ComplexField()
 @@ -1629,7 +1624,7 @@ General number fields::
  
  sage: x = QQ['x'].0; nf = pari(x^2 + 2).nfinit()
@@ -406,10 +429,23 @@
  sage: eta1 = e.elleta(precision=100)[0]
  sage: eta1.sage()
 -3.6054636014326520859158205642077267748
-+3.6054636014326520859158205642077267748...
++

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

2020-11-09 Thread Laurent Carlier via arch-commits
Date: Tuesday, November 10, 2020 @ 07:03:56
  Author: lcarlier
Revision: 400040

archrelease: copy trunk to extra-any

Added:
  vulkan-headers/repos/extra-any/PKGBUILD
(from rev 400039, vulkan-headers/trunk/PKGBUILD)
Deleted:
  vulkan-headers/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-10 07:03:51 UTC (rev 400039)
+++ PKGBUILD2020-11-10 07:03:56 UTC (rev 400040)
@@ -1,39 +0,0 @@
-# Maintainer: Laurent Carlier 
-
-pkgname=vulkan-headers
-_pkgname=Vulkan-Headers
-pkgver=1.2.159
-pkgrel=1
-epoch=1
-pkgdesc="Vulkan header files"
-arch=(any)
-url="https://www.khronos.org/vulkan/;
-license=('APACHE')
-makedepends=(cmake git)
-provides=("vulkan-hpp=${pkgver}")
-groups=(vulkan-devel)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/KhronosGroup/Vulkan-Headers/archive/v${pkgver}.tar.gz;)
-#source=("git+https://github.com/KhronosGroup/Vulkan-Headers.git#commit=5f1ceaad4c22d08f4fcac9db3046afbd64358249;)
-sha256sums=('e911e1a2c1aba468d2e1728095a4c035a7a0fe01828f089bbc5598ce05aa5be3')
-
-#pkgver() {
-#  cd Vulkan-Headers*
-#
-#  echo 1.1.107+$(git rev-list --count HEAD)+$(git rev-parse --short HEAD)
-#}
-
-build() {
-  cd Vulkan-Headers*
-
-  rm -rf build ; mkdir build ; cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
-..
-  make
-}
-
-package() {
-  cd Vulkan-Headers*/build
-  
-  make DESTDIR="${pkgdir}" install
-}

Copied: vulkan-headers/repos/extra-any/PKGBUILD (from rev 400039, 
vulkan-headers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-10 07:03:56 UTC (rev 400040)
@@ -0,0 +1,39 @@
+# Maintainer: Laurent Carlier 
+
+pkgname=vulkan-headers
+_pkgname=Vulkan-Headers
+pkgver=1.2.160
+pkgrel=1
+epoch=1
+pkgdesc="Vulkan header files"
+arch=(any)
+url="https://www.khronos.org/vulkan/;
+license=('APACHE')
+makedepends=(cmake git)
+provides=("vulkan-hpp=${pkgver}")
+groups=(vulkan-devel)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/KhronosGroup/Vulkan-Headers/archive/v${pkgver}.tar.gz;)
+#source=("git+https://github.com/KhronosGroup/Vulkan-Headers.git#commit=5f1ceaad4c22d08f4fcac9db3046afbd64358249;)
+sha256sums=('3d77bf6ce282c69196557d6e902329f9073da3c26811ae07000e657ad6957120')
+
+#pkgver() {
+#  cd Vulkan-Headers*
+#
+#  echo 1.1.107+$(git rev-list --count HEAD)+$(git rev-parse --short HEAD)
+#}
+
+build() {
+  cd Vulkan-Headers*
+
+  rm -rf build ; mkdir build ; cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+..
+  make
+}
+
+package() {
+  cd Vulkan-Headers*/build
+  
+  make DESTDIR="${pkgdir}" install
+}


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

2020-11-09 Thread Laurent Carlier via arch-commits
Date: Tuesday, November 10, 2020 @ 07:03:51
  Author: lcarlier
Revision: 400039

upgpkg: vulkan-headers 1:1.2.160-1: upstream update 1.2.160

Modified:
  vulkan-headers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 07:01:08 UTC (rev 400038)
+++ PKGBUILD2020-11-10 07:03:51 UTC (rev 400039)
@@ -2,7 +2,7 @@
 
 pkgname=vulkan-headers
 _pkgname=Vulkan-Headers
-pkgver=1.2.159
+pkgver=1.2.160
 pkgrel=1
 epoch=1
 pkgdesc="Vulkan header files"
@@ -14,7 +14,7 @@
 groups=(vulkan-devel)
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/KhronosGroup/Vulkan-Headers/archive/v${pkgver}.tar.gz;)
 
#source=("git+https://github.com/KhronosGroup/Vulkan-Headers.git#commit=5f1ceaad4c22d08f4fcac9db3046afbd64358249;)
-sha256sums=('e911e1a2c1aba468d2e1728095a4c035a7a0fe01828f089bbc5598ce05aa5be3')
+sha256sums=('3d77bf6ce282c69196557d6e902329f9073da3c26811ae07000e657ad6957120')
 
 #pkgver() {
 #  cd Vulkan-Headers*


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

2020-11-09 Thread Laurent Carlier via arch-commits
Date: Tuesday, November 10, 2020 @ 07:01:08
  Author: lcarlier
Revision: 400038

archrelease: copy trunk to extra-any

Added:
  vulkan-docs/repos/extra-any/PKGBUILD
(from rev 400037, vulkan-docs/trunk/PKGBUILD)
Deleted:
  vulkan-docs/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-10 07:01:03 UTC (rev 400037)
+++ PKGBUILD2020-11-10 07:01:08 UTC (rev 400038)
@@ -1,42 +0,0 @@
-# Maintainer: Laurent Carlier 
-
-pkgbase=vulkan-docs
-pkgname=(vulkan-html-docs)
-pkgver=1.2.159
-pkgrel=1
-epoch=1
-_pkgname=Vulkan-Docs
-arch=(any)
-url="https://www.khronos.org/vulkan/;
-license=('custom')
-makedepends=(asciidoctor python3 dblatex source-highlight cmake ghostscript 
nodejs npm git)
-groups=(vulkan-devel)
-source=("https://github.com/KhronosGroup/${_pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('98276abb3f58874a297faa88df150cd7ea45bc7389c36f90fa391eb5f1ab8395')
-
-prepare() {
-  npm install escape-string-regexp
-  npm install he
-}
-
-build() {
-  cd "${srcdir}/${_pkgname}-${pkgver}"
-
-  ./makeAllExts html manhtmlpages styleguide registry
-}
-
-package_vulkan-html-docs() {
-  pkgdesc="Vulkan html documentation"
-  cd "${_pkgname}-${pkgver}"
-
-  install -dm755 "${pkgdir}/usr/share/doc/vulkan"
-  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  mv -v gen/out/man "${pkgdir}/usr/share/doc/vulkan/"
-  mv -v gen/out/html/* "${pkgdir}/usr/share/doc/vulkan/"
-  mv -v gen/out/registry.html "${pkgdir}/usr/share/doc/vulkan/"
-  mv -v gen/out/styleguide.html "${pkgdir}/usr/share/doc/vulkan/"
-
-  install -m644 config/copyright-ccby.txt 
${pkgdir}/usr/share/licenses/${pkgname}/copyright-ccby.txt
-  install -m644 copyright-spec.txt 
${pkgdir}/usr/share/licenses/${pkgname}/copyright-spec.txt
-}

Copied: vulkan-docs/repos/extra-any/PKGBUILD (from rev 400037, 
vulkan-docs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-10 07:01:08 UTC (rev 400038)
@@ -0,0 +1,42 @@
+# Maintainer: Laurent Carlier 
+
+pkgbase=vulkan-docs
+pkgname=(vulkan-html-docs)
+pkgver=1.2.160
+pkgrel=1
+epoch=1
+_pkgname=Vulkan-Docs
+arch=(any)
+url="https://www.khronos.org/vulkan/;
+license=('custom')
+makedepends=(asciidoctor python3 dblatex source-highlight cmake ghostscript 
nodejs npm git)
+groups=(vulkan-devel)
+source=("https://github.com/KhronosGroup/${_pkgname}/archive/v${pkgver}.tar.gz;)
+sha256sums=('62be7880bf5ca4b1b7869e644ce644fab2ca08cb6ac07fcb1e56029ce41bc3a7')
+
+prepare() {
+  npm install escape-string-regexp
+  npm install he
+}
+
+build() {
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+
+  ./makeAllExts html manhtmlpages styleguide registry
+}
+
+package_vulkan-html-docs() {
+  pkgdesc="Vulkan html documentation"
+  cd "${_pkgname}-${pkgver}"
+
+  install -dm755 "${pkgdir}/usr/share/doc/vulkan"
+  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
+
+  mv -v gen/out/man "${pkgdir}/usr/share/doc/vulkan/"
+  mv -v gen/out/html/* "${pkgdir}/usr/share/doc/vulkan/"
+  mv -v gen/out/registry.html "${pkgdir}/usr/share/doc/vulkan/"
+  mv -v gen/out/styleguide.html "${pkgdir}/usr/share/doc/vulkan/"
+
+  install -m644 config/copyright-ccby.txt 
${pkgdir}/usr/share/licenses/${pkgname}/copyright-ccby.txt
+  install -m644 copyright-spec.txt 
${pkgdir}/usr/share/licenses/${pkgname}/copyright-spec.txt
+}


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

2020-11-09 Thread Laurent Carlier via arch-commits
Date: Tuesday, November 10, 2020 @ 07:01:03
  Author: lcarlier
Revision: 400037

upgpkg: vulkan-docs 1:1.2.160-1: upstream update 1.2.160

Modified:
  vulkan-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 06:17:19 UTC (rev 400036)
+++ PKGBUILD2020-11-10 07:01:03 UTC (rev 400037)
@@ -2,7 +2,7 @@
 
 pkgbase=vulkan-docs
 pkgname=(vulkan-html-docs)
-pkgver=1.2.159
+pkgver=1.2.160
 pkgrel=1
 epoch=1
 _pkgname=Vulkan-Docs
@@ -12,7 +12,7 @@
 makedepends=(asciidoctor python3 dblatex source-highlight cmake ghostscript 
nodejs npm git)
 groups=(vulkan-devel)
 
source=("https://github.com/KhronosGroup/${_pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('98276abb3f58874a297faa88df150cd7ea45bc7389c36f90fa391eb5f1ab8395')
+sha256sums=('62be7880bf5ca4b1b7869e644ce644fab2ca08cb6ac07fcb1e56029ce41bc3a7')
 
 prepare() {
   npm install escape-string-regexp


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

2020-11-09 Thread Daniel M. Capella via arch-commits
Date: Tuesday, November 10, 2020 @ 06:54:21
  Author: polyzen
Revision: 749408

archrelease: copy trunk to community-x86_64

Added:
  efm-langserver/repos/community-x86_64/PKGBUILD
(from rev 749407, efm-langserver/trunk/PKGBUILD)
Deleted:
  efm-langserver/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-10 06:54:00 UTC (rev 749407)
+++ PKGBUILD2020-11-10 06:54:21 UTC (rev 749408)
@@ -1,36 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: dianlujitao 
-
-pkgname=efm-langserver
-pkgver=0.0.23
-pkgrel=1
-pkgdesc='General purpose Language Server'
-arch=('x86_64')
-url=https://github.com/mattn/efm-langserver
-license=('MIT')
-depends=('glibc')
-makedepends=('go')
-optdepends=('ctags: for "go to definition" requests')
-source=("$url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
-b2sums=('e96b068774022a2c77508da99f0d77d7136e16268a877105c461c2c5826867b187be65c1c76faa4300f05d7cd4e5a32f051d6c8bff27f803c5993d21ac69adb9')
-
-build() {
-  cd $pkgname-$pkgver
-  export CGO_CPPFLAGS="$CPPFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  export CGO_CXXFLAGS="$CXXFLAGS"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
-  go build .
-}
-
-check() {
-  cd $pkgname-$pkgver
-  go test -v ./...
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dt "$pkgdir"/usr/bin efm-langserver
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname README.md # Only 
mention of license
-}

Copied: efm-langserver/repos/community-x86_64/PKGBUILD (from rev 749407, 
efm-langserver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-10 06:54:21 UTC (rev 749408)
@@ -0,0 +1,36 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: dianlujitao 
+
+pkgname=efm-langserver
+pkgver=0.0.24
+pkgrel=1
+pkgdesc='General purpose Language Server'
+arch=('x86_64')
+url=https://github.com/mattn/efm-langserver
+license=('MIT')
+depends=('glibc')
+makedepends=('go')
+optdepends=('ctags: for "go to definition" requests')
+source=("$url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
+b2sums=('57e48f8facd6db49d5d931e7ae6953dd11f2b1e6a583347799449094c2e0c9ef5a79fe95c8ce37d8b9bee92885365a1c4909ce565789f97fdf18f297914199d6')
+
+build() {
+  cd $pkgname-$pkgver
+  export CGO_CPPFLAGS="$CPPFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_CXXFLAGS="$CXXFLAGS"
+  export CGO_LDFLAGS="$LDFLAGS"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
+  go build .
+}
+
+check() {
+  cd $pkgname-$pkgver
+  go test -v ./...
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dt "$pkgdir"/usr/bin efm-langserver
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname README.md # Only 
mention of license
+}


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

2020-11-09 Thread Daniel M. Capella via arch-commits
Date: Tuesday, November 10, 2020 @ 06:54:00
  Author: polyzen
Revision: 749407

upgpkg: efm-langserver 0.0.24-1

Modified:
  efm-langserver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 06:50:34 UTC (rev 749406)
+++ PKGBUILD2020-11-10 06:54:00 UTC (rev 749407)
@@ -2,7 +2,7 @@
 # Contributor: dianlujitao 
 
 pkgname=efm-langserver
-pkgver=0.0.23
+pkgver=0.0.24
 pkgrel=1
 pkgdesc='General purpose Language Server'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('go')
 optdepends=('ctags: for "go to definition" requests')
 source=("$url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
-b2sums=('e96b068774022a2c77508da99f0d77d7136e16268a877105c461c2c5826867b187be65c1c76faa4300f05d7cd4e5a32f051d6c8bff27f803c5993d21ac69adb9')
+b2sums=('57e48f8facd6db49d5d931e7ae6953dd11f2b1e6a583347799449094c2e0c9ef5a79fe95c8ce37d8b9bee92885365a1c4909ce565789f97fdf18f297914199d6')
 
 build() {
   cd $pkgname-$pkgver


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

2020-11-09 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 10, 2020 @ 06:50:16
  Author: arojas
Revision: 749405

Update to 1.5.3

Modified:
  julia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:43:03 UTC (rev 749404)
+++ PKGBUILD2020-11-10 06:50:16 UTC (rev 749405)
@@ -8,8 +8,8 @@
 pkgbase=julia
 pkgname=(julia julia-docs)
 epoch=2
-pkgver=1.5.2
-pkgrel=2
+pkgver=1.5.3
+pkgrel=1
 arch=(x86_64)
 pkgdesc='High-level, high-performance, dynamic programming language'
 url='https://julialang.org/'
@@ -20,7 +20,7 @@
 
source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
 julia-system-cblas.patch
 make-install-no-build.patch)
-sha256sums=('850aed3fe39057488ec633f29af705f5ada87e3058fd65e48ad26f91b713a19a'
+sha256sums=('fb69337ca037576758547c7eed9ae8f153a9c052318327b6b7f1917408c14d91'
 'SKIP'
 'd4c8fe9eec1bc416549924ae328ceb3f63cc736ecd5e67886faa924e7c14bc5d'
 '0b57e0bc6e25c92fde8a6474394f7a99bfb57f9b5d0f7b53f988622ae67de8b7')


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

2020-11-09 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 10, 2020 @ 06:50:34
  Author: arojas
Revision: 749406

archrelease: copy trunk to community-testing-x86_64

Added:
  julia/repos/community-testing-x86_64/PKGBUILD
(from rev 749405, julia/trunk/PKGBUILD)
  julia/repos/community-testing-x86_64/julia-system-cblas.patch
(from rev 749405, julia/trunk/julia-system-cblas.patch)
  julia/repos/community-testing-x86_64/make-install-no-build.patch
(from rev 749405, julia/trunk/make-install-no-build.patch)
Deleted:
  julia/repos/community-testing-x86_64/PKGBUILD
  julia/repos/community-testing-x86_64/julia-system-cblas.patch
  julia/repos/community-testing-x86_64/make-install-no-build.patch

-+
 PKGBUILD|  208 
 julia-system-cblas.patch|  266 +-
 make-install-no-build.patch |   32 ++---
 3 files changed, 253 insertions(+), 253 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-10 06:50:16 UTC (rev 749405)
+++ PKGBUILD2020-11-10 06:50:34 UTC (rev 749406)
@@ -1,104 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Eli Schwartz 
-# Contributor: Lex Black 
-# Contributor: Michael Jakl 
-# Contributor: devmotion 
-# Contributor: Valentin Churavy 
-
-pkgbase=julia
-pkgname=(julia julia-docs)
-epoch=2
-pkgver=1.5.2
-pkgrel=2
-arch=(x86_64)
-pkgdesc='High-level, high-performance, dynamic programming language'
-url='https://julialang.org/'
-license=(MIT)
-depends=(cblas fftw hicolor-icon-theme libgit2 libunwind libutf8proc openblas
- suitesparse mbedtls openlibm pcre2 llvm10-libs)
-makedepends=(cmake gcc-fortran gmp python llvm10)
-source=("https://github.com/JuliaLang/julia/releases/download/v$pkgver/$pkgbase-$pkgver-full.tar.gz"{,.asc}
-julia-system-cblas.patch
-make-install-no-build.patch)
-sha256sums=('850aed3fe39057488ec633f29af705f5ada87e3058fd65e48ad26f91b713a19a'
-'SKIP'
-'d4c8fe9eec1bc416549924ae328ceb3f63cc736ecd5e67886faa924e7c14bc5d'
-'0b57e0bc6e25c92fde8a6474394f7a99bfb57f9b5d0f7b53f988622ae67de8b7')
-# Julia (Binary signing key) 
-validpgpkeys=('3673DF529D9049477F76B37566E3C7DC03D6E495')
-
-prepare() {
-  cd $pkgbase-$pkgver
-
-  # Add and use option to build with system cblas
-  patch -p1 -i ../julia-system-cblas.patch
-
-  # Don't build again in install
-  patch -p1 -i ../make-install-no-build.patch
-
-  # Fix test failure
-  sed -e 's|0.22314355f0 + 3.1415927f0im|0.22314355f0 - 3.1415927f0im|' -i 
stdlib/LinearAlgebra/test/lu.jl
-}
-
-build() {
-  export PATH="$srcdir/bin:$PATH"
-  env CFLAGS="$CFLAGS -w" CXXFLAGS="$CXXFLAGS -w" make VERBOSE=1 -C 
$pkgbase-$pkgver \
-USE_SYSTEM_LLVM=1 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_DSFMT=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=1 \
-USE_SYSTEM_LIBGIT2=1 \
-USE_SYSTEM_LIBSSH2=1 \
-USE_SYSTEM_MBEDTLS=1 \
-USE_SYSTEM_CURL=1 \
-USE_SYSTEM_PATCHELF=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_P7ZIP=1 \
-USE_SYSTEM_OPENLIBM=1 \
-MARCH=x86-64
-}
-
-check() {
- cd $pkgbase-$pkgver/test
-
- # this is the make testall target, plus the --skip option from
- # travis/appveyor/circleci (one test fails with DNS resolution errors)
- ../julia --check-bounds=yes --startup-file=no ./runtests.jl all --skip 
Sockets --skip Distributed --skip LibGit2/libgit2
- find ../stdlib \( -name \*.cov -o -name \*.mem \) -delete
- rm -r depot/compiled
-}
-
-package_julia() {
-  backup=(etc/julia/startup.jl)
-  optdepends=('gnuplot: If using the Gaston Package from julia')
-
-  make -C $pkgbase-$pkgver DESTDIR="$pkgdir" install \
-prefix=/usr \
-libexecdir=/usr/lib \
-sysconfdir=/etc
-
-  # Documentation is in the julia-docs package.
-  # Man pages in /usr/share/julia/doc/man are duplicate.
-  rm -rf "$pkgdir/usr/share/"{doc,julia/doc}
-
-  install -Dm644 $pkgbase-$pkgver/LICENSE.md \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-  depends=(julia)
-
-  install -d "$pkgdir/usr/share/doc"
-  cp -r $pkgbase-$pkgver/doc "$pkgdir/usr/share/doc/$pkgbase"
-  rm -rf "$pkgdir/usr/share/doc/julia/man"
-  install -Dm644 $pkgbase-$pkgver/LICENSE.md \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}

Copied: julia/repos/community-testing-x86_64/PKGBUILD (from rev 749405, 
julia/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-10 06:50:34 UTC (rev 749406)
@@ -0,0 +1,104 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Eli Schwartz 
+# Contributor: Lex Black 
+# Contributor: Michael Jakl 
+# Contributor: devmotion 
+# Contributor: 

[arch-commits] Commit in subversion/repos (8 files)

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 06:17:19
  Author: foutrelis
Revision: 400036

archrelease: copy trunk to staging-x86_64

Added:
  subversion/repos/staging-x86_64/
  subversion/repos/staging-x86_64/PKGBUILD
(from rev 400035, subversion/trunk/PKGBUILD)
  subversion/repos/staging-x86_64/ruby-frozen-nil.patch
(from rev 400035, subversion/trunk/ruby-frozen-nil.patch)
  subversion/repos/staging-x86_64/subversion.rpath.fix.patch
(from rev 400035, subversion/trunk/subversion.rpath.fix.patch)
  subversion/repos/staging-x86_64/svn
(from rev 400035, subversion/trunk/svn)
  subversion/repos/staging-x86_64/svnserve.conf
(from rev 400035, subversion/trunk/svnserve.conf)
  subversion/repos/staging-x86_64/svnserve.service
(from rev 400035, subversion/trunk/svnserve.service)
  subversion/repos/staging-x86_64/svnserve.tmpfiles
(from rev 400035, subversion/trunk/svnserve.tmpfiles)

+
 PKGBUILD   |  114 +++
 ruby-frozen-nil.patch  |   42 +++
 subversion.rpath.fix.patch |   11 
 svn|   11 
 svnserve.conf  |5 +
 svnserve.service   |   11 
 svnserve.tmpfiles  |1 
 7 files changed, 195 insertions(+)

Copied: subversion/repos/staging-x86_64/PKGBUILD (from rev 400035, 
subversion/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-10 06:17:19 UTC (rev 400036)
@@ -0,0 +1,114 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Paul Mattal 
+# Contributor: Jason Chu 
+
+pkgname=subversion
+pkgver=1.14.0
+pkgrel=3
+pkgdesc="A Modern Concurrent Version Control System"
+arch=('x86_64')
+url="https://subversion.apache.org/;
+license=('APACHE')
+depends=('file' 'libutf8proc' 'serf' 'sqlite' 'systemd')
+makedepends=('apache' 'python' 'python-py3c' 'perl' 'swig' 
'java-environment>=8'
+ 'libgnome-keyring' 'kwallet' 'kdelibs4support' 'ruby')
+optdepends=('libgnome-keyring: for GNOME Keyring for auth credentials'
+'kwallet: for KWallet for auth credentials'
+'bash-completion: for svn bash completion'
+'python: for some hook scripts'
+'java-environment: for Java support'
+'ruby: for some hook scripts')
+checkdepends=('ruby-test-unit')
+provides=('svn')
+backup=('etc/xinetd.d/svn' 'etc/conf.d/svnserve')
+options=('!makeflags' '!emptydirs')
+source=(https://www.apache.org/dist/subversion/subversion-${pkgver}.tar.bz2{,.asc}
+svn
+svnserve.conf
+svnserve.tmpfiles
+svnserve.service
+subversion.rpath.fix.patch
+ruby-frozen-nil.patch)
+sha512sums=('af6b706fdc91f7ab292fce9d9de582da306fd11e92767dc852687e71a6a8b65bb867fa70d5afd7f76a46005acb1b3c2d3193e690def48cd26875b3a7851cd13b'
+'SKIP'
+
'3df59e92aa0314ff6adce26e2e1162bf2872ca03ff1f78891081a60e67b521b6046b4a2f85f718dcd27f9d5709594658817a09548cdb74e3976d371dbe47e7db'
+
'f7f2ceac2446cc94ac2be3404083cc54a0f1f4d04d5301f600dfafca38819669bcffdfa45f1b90b9f3cdb042469385a764f11dc1a827f10c23ddf73b7ac6c9da'
+
'7775f4da5003970c9ebdc2f696ba090df194a77d9daed791875488c943f72ae496b5f9cc6f3ff9f3f4de9f352a3b518137babdea38947d1a2d5dd16aa1844036'
+
'8cc23ae71bd7ce7c337eaf12929f1af0a11b55250808e88f06397b874daf2efb9491c464be3d082d937a82c2b0b7c3ed06d6695cfd8a3fda1f803bbfd15837de'
+
'60d538160e738eb3b3e84a3881fe5a8d75c79053d3f31c4c29ef6ace6ccc5dd4367ed712766c911bae3436e9706e4dd144b270bb45161a6c1834a37e154d0440'
+
'bb772e55acd9601121ad06b254c364e8d8cf772ca59b8df0cf4c5c5ecba110d4108d0363672f121f770550cdd052802474029e57643258f398aacd2b63ccb898')
+validpgpkeys=('19BBCAEF7B19B280A0E2175E62D48FAD16A0DE01'
+  '8BC4DAE0C5A4D65F404401074F7DBAA99A59B973'
+  'BA3C15B1337CF0FB222BD41A1BCA6586A347943F'
+  'E7B2A7F4EC28BE9FF8B38BA4B64FFF1209F9FA74'
+  '3D1DC66D6D2E0B9039528138C4A6C625CCC8E1DF'
+  'A844790FB5743606EE95920776D788E1ED1A599C'
+  '7B8CA7F6451AD89C8ADC077B376A3CFD110B1C95'
+  '056F8016D9B87B1BDE41746799EC741B57921ACC'
+  '3F8E467CB3366E3013E1120D583F00ADF981C39F'
+  '91BFBF4D6956BD5DF7B72D23DFE691AE331BA3DB')
+# Ben Reser / Stefan Sperling / Branko Čibej / Evgeny Kotkov / Bert Huijben / 
Philip Martin /
+# Stefan Fuhrmann / Stefan Hett (CODE SIGNING KEY) /Nathan Hartman (CODE 
SIGNING KEY) / James McCoy
+
+prepare() {
+   cd ${pkgname}-${pkgver}
+   patch -Np0 -i ../subversion.rpath.fix.patch
+   patch -p1 -i ../ruby-frozen-nil.patch
+   rm subversion/bindings/swig/proxy/*.swg
+
+   ./autogen.sh
+}
+
+build() {
+   cd ${pkgname}-${pkgver}
+   ./configure --prefix=/usr --with-apxs \
+   --enable-javahl 

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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 06:17:11
  Author: foutrelis
Revision: 400035

upgpkg: subversion 1.14.0-3: Python 3.9 rebuild

Modified:
  subversion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:18:02 UTC (rev 400034)
+++ PKGBUILD2020-11-10 06:17:11 UTC (rev 400035)
@@ -6,7 +6,7 @@
 
 pkgname=subversion
 pkgver=1.14.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A Modern Concurrent Version Control System"
 arch=('x86_64')
 url="https://subversion.apache.org/;
@@ -112,4 +112,3 @@
   ln -sf subversion "${pkgdir}"/usr/share/bash-completion/completions/${i}
done
 }
-


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:43:03
  Author: foutrelis
Revision: 749404

archrelease: copy trunk to community-staging-x86_64

Added:
  gcc9/repos/community-staging-x86_64/
  gcc9/repos/community-staging-x86_64/PKGBUILD
(from rev 749403, gcc9/trunk/PKGBUILD)
  gcc9/repos/community-staging-x86_64/c89
(from rev 749403, gcc9/trunk/c89)
  gcc9/repos/community-staging-x86_64/c99
(from rev 749403, gcc9/trunk/c99)
  gcc9/repos/community-staging-x86_64/fs64270.patch
(from rev 749403, gcc9/trunk/fs64270.patch)

---+
 PKGBUILD  |  224 
 c89   |   10 ++
 c99   |   10 ++
 fs64270.patch |   38 +
 4 files changed, 282 insertions(+)

Copied: gcc9/repos/community-staging-x86_64/PKGBUILD (from rev 749403, 
gcc9/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-10 05:43:03 UTC (rev 749404)
@@ -0,0 +1,224 @@
+# Maintainer:  Konstantin Gizdov 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Daniel Kozak 
+
+pkgbase=gcc9
+pkgname=(${pkgbase} ${pkgbase}-libs ${pkgbase}-fortran)
+pkgver=9.3.0
+_majorver=${pkgver:0:1}
+_islver=0.21
+pkgrel=4
+pkgdesc='The GNU Compiler Collection'
+arch=(x86_64)
+license=(GPL LGPL FDL custom)
+url='https://gcc.gnu.org'
+makedepends=(binutils libmpc doxygen python git)
+checkdepends=(dejagnu inetutils)
+options=(!emptydirs)
+_libdir=usr/lib/gcc/$CHOST/${pkgver%%+*}
+# _commit=6957d3e4eef1f4243eb23ff62aea06139ef4415a
+# source=(git://gcc.gnu.org/git/gcc.git#commit=$_commit
+source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
+http://isl.gforge.inria.fr/isl-${_islver}.tar.xz
+c89 c99
+fs64270.patch)
+validpgpkeys=(F3691687D867B81B51CE07D9BBE43771487328A9  # 
bpiotrow...@archlinux.org
+  86CFFCA918CF3AF47147588051E8B148AC34  # 
evange...@foutrelis.com
+  13975A70E63C361C73AE69EF6EEB81F8981C74C7  # 
richard.guent...@gmail.com
+  33C235A34C46AA3FFB293709A328C3A2C3C45C06) # Jakub Jelinek 

+sha256sums=('71e197867611f6054aa1119b13a0c0abac12834765fe2d81f35ac57f84f742d1'
+'SKIP'
+'777058852a3db9500954361e294881214f6ecd4b594c00da5eee974cd6a54960'
+'de48736f6e4153f03d0a5d38ceb6c6fdb7f054e8f47ddd6af0a3dbf14f27b931'
+'2513c6d9984dd0a2058557bf00f06d8d5181734e41dcfe07be7ed86f2959622a'
+'f45160f699501568ae9e81127562395dd95b5b4a8e4d55a1615fbb00f9e4deb2')
+
+prepare() {
+  [[ ! -d gcc ]] && ln -s gcc-${pkgver/+/-} gcc
+  cd gcc
+
+  # link isl for in-tree build
+  ln -s ../isl-${_islver} isl
+
+  # Do not run fixincludes
+  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
+
+  # Arch Linux installs x86_64 libraries /lib
+  sed -i '/m64=/s/lib64/lib/' gcc/config/i386/t-linux64
+
+  # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
+
+  # Turn off SSP for nostdlib|nodefaultlibs|ffreestanding
+  # https://bugs.archlinux.org/task/64270
+  patch -p1 -i "$srcdir/fs64270.patch"
+
+  mkdir -p "$srcdir/gcc-build"
+}
+
+build() {
+  cd gcc-build
+
+  # using -pipe causes spurious test-suite failures
+  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
+  CFLAGS=${CFLAGS/-pipe/}
+  CXXFLAGS=${CXXFLAGS/-pipe/}
+
+  "$srcdir/gcc/configure" --prefix=/usr \
+  --libdir=/usr/lib \
+  --libexecdir=/usr/lib \
+  --mandir=/usr/share/man \
+  --infodir=/usr/share/info \
+  --with-pkgversion="Arch Linux $pkgver-$pkgrel" \
+  --with-bugurl=https://bugs.archlinux.org/ \
+  --enable-languages=c,c++,fortran,lto \
+  --enable-shared \
+  --enable-threads=posix \
+  --with-system-zlib \
+  --with-isl \
+  --enable-__cxa_atexit \
+  --disable-libunwind-exceptions \
+  --enable-clocale=gnu \
+  --disable-libstdcxx-pch \
+  --disable-libssp \
+  --enable-gnu-unique-object \
+  --enable-linker-build-id \
+  --enable-lto \
+  --enable-plugin \
+  --enable-install-libiberty \
+  --with-linker-hash-style=gnu \
+  --enable-gnu-indirect-function \
+  --disable-werror \
+  --enable-checking=release \
+  --enable-default-pie \
+  --enable-default-ssp \
+  --enable-cet=auto \
+  --program-suffix=-${_majorver} \
+  --enable-version-specific-runtime-libs \
+  --disable-multilib
+  make
+
+  # make documentation
+  make -C $CHOST/libstdc++-v3/doc doc-man-doxygen
+}
+
+check() {
+  cd gcc-build
+
+  # disable libphobos test to avoid segfaults and other unfunny ways to waste 
my time  
+  sed -i '/maybe-check-target-libphobos \\/d' Makefile 
+
+  # do not abort on error as some are "expected"
+  make -k check || true
+  "$srcdir/gcc/contrib/test_summary"
+}
+
+package_gcc9-libs() {
+  

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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:42:32
  Author: foutrelis
Revision: 749403

upgpkg: gcc9 9.3.0-4: Python 3.9 rebuild

Modified:
  gcc9/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:31:36 UTC (rev 749402)
+++ PKGBUILD2020-11-10 05:42:32 UTC (rev 749403)
@@ -8,7 +8,7 @@
 pkgver=9.3.0
 _majorver=${pkgver:0:1}
 _islver=0.21
-pkgrel=3
+pkgrel=4
 pkgdesc='The GNU Compiler Collection'
 arch=(x86_64)
 license=(GPL LGPL FDL custom)


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:31:36
  Author: foutrelis
Revision: 749402

archrelease: copy trunk to community-staging-any

Added:
  python-securesystemslib/repos/community-staging-any/
  python-securesystemslib/repos/community-staging-any/PKGBUILD
(from rev 749401, python-securesystemslib/trunk/PKGBUILD)

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

Copied: python-securesystemslib/repos/community-staging-any/PKGBUILD (from rev 
749401, python-securesystemslib/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:31:36 UTC (rev 749402)
@@ -0,0 +1,42 @@
+# Maintainer: Santiago Torres-Arias 
+
+pkgname=python-securesystemslib
+pkgver=0.16.0
+pkgrel=2
+pkgdesc="Cryptographic and general-purpose routines for Secure Systems Lab 
projects at NYU"
+arch=('any')
+license=('MIT')
+url="https://github.com/secure-systems-lab/securesystemslib;
+depends=('python-cryptography' 'python-pynacl' 'python-colorama' 'python-six' 
'python-dateutil')
+makedepends=('python-setuptools' 'git')
+source=("git+https://github.com/secure-systems-lab/securesystemslib.git?signed#tag=v${pkgver};)
+
+sha512sums=('SKIP')
+
+validpgpkeys=(
+"C2FB9C910758B6827BC43233BC0C6DEDD5E5CC03"
+# Sebastien Awwad (upstream co-maintainer)
+"8BA69B87D43BE294F23E812089A2AD3C07D962E8"
+# Lukas Puehringher (upstream maintainer)
+"903BAB73640EB6D65533EFF3468F122CE8162295"
+# Santiago Torres-Arias  (upstream co-maintainer)
+"08F3409FCF71D87E30FBD3C21671F65CB74832A4"
+# Joshua Lock (GPG on YubiKey)  (upstream co-maintainer)
+)
+
+build() { 
+cd "${srcdir}/securesystemslib"
+python setup.py build
+}
+
+package_python-securesystemslib() {
+
+cd "securesystemslib"
+python setup.py install --root="${pkgdir}/" --optimize=1
+install -D -m0644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+check() {
+cd "securesystemslib/tests/"
+PYTHONPATH=.. python aggregate_tests.py
+}


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:31:33
  Author: foutrelis
Revision: 749401

upgpkg: python-securesystemslib 0.16.0-2: Python 3.9 rebuild

Modified:
  python-securesystemslib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:28:28 UTC (rev 749400)
+++ PKGBUILD2020-11-10 05:31:33 UTC (rev 749401)
@@ -2,7 +2,7 @@
 
 pkgname=python-securesystemslib
 pkgver=0.16.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Cryptographic and general-purpose routines for Secure Systems Lab 
projects at NYU"
 arch=('any')
 license=('MIT')


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:28:10
  Author: foutrelis
Revision: 749397

upgpkg: python-aiohttp-socks 0.4.2-2: Python 3.9 rebuild

Modified:
  python-aiohttp-socks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:23:12 UTC (rev 749396)
+++ PKGBUILD2020-11-10 05:28:10 UTC (rev 749397)
@@ -2,7 +2,7 @@
 
 pkgname=python-aiohttp-socks
 pkgver=0.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc="SOCKS proxy connector for aiohttp. SOCKS4(a) and SOCKS5 are 
supported."
 arch=('any')
 url="https://github.com/romis2012/aiohttp-socks/;
@@ -29,4 +29,3 @@
 cd "${pkgname//python-}"
 python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
 }
-


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:28:13
  Author: foutrelis
Revision: 749399

archrelease: copy trunk to community-staging-any

Added:
  python-aiohttp-socks/repos/community-staging-any/
  python-aiohttp-socks/repos/community-staging-any/PKGBUILD
(from rev 749397, python-aiohttp-socks/trunk/PKGBUILD)

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

Copied: python-aiohttp-socks/repos/community-staging-any/PKGBUILD (from rev 
749397, python-aiohttp-socks/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:28:13 UTC (rev 749399)
@@ -0,0 +1,31 @@
+# Maintainer: Santiago Torres-Arias 
+
+pkgname=python-aiohttp-socks
+pkgver=0.4.2
+pkgrel=2
+pkgdesc="SOCKS proxy connector for aiohttp. SOCKS4(a) and SOCKS5 are 
supported."
+arch=('any')
+url="https://github.com/romis2012/aiohttp-socks/;
+license=('Apache')
+depends=('python-aiohttp')
+makedepends=('git' 'python' 'python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-asyncio')
+source=("git+https://github.com/romis2012/aiohttp-socks?signed#tag=v${pkgver};)
+sha256sums=('SKIP')
+validpgpkeys=('706A8935FED55F3BFB7C188B5EEAD7400A5D80ED') # Roman Snegirev 
(maintainer)
+
+check() {
+cd "${pkgname//python-}"
+pytest
+}
+
+build() {
+cd "${pkgname//python-}"
+python setup.py build
+
+}
+
+package() {
+cd "${pkgname//python-}"
+python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+}


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:28:13
  Author: felixonmars
Revision: 749398

upgpkg: tensorboard 2.3.0-4: Python 3.9 rebuild

Modified:
  tensorboard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:28:10 UTC (rev 749397)
+++ PKGBUILD2020-11-10 05:28:13 UTC (rev 749398)
@@ -2,7 +2,7 @@
 
 pkgname=tensorboard
 pkgver=2.3.0
-pkgrel=3
+pkgrel=4
 pkgdesc="TensorFlow's Visualization Toolkit"
 url='https://github.com/tensorflow/tensorboard'
 arch=('x86_64')


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:28:28
  Author: felixonmars
Revision: 749400

archrelease: copy trunk to community-staging-x86_64

Added:
  tensorboard/repos/community-staging-x86_64/
  tensorboard/repos/community-staging-x86_64/PKGBUILD
(from rev 749399, tensorboard/trunk/PKGBUILD)
  tensorboard/repos/community-staging-x86_64/bump-tensorflow.patch
(from rev 749399, tensorboard/trunk/bump-tensorflow.patch)
  tensorboard/repos/community-staging-x86_64/fix-grpc-deps.patch
(from rev 749399, tensorboard/trunk/fix-grpc-deps.patch)

---+
 PKGBUILD  |   65 
 bump-tensorflow.patch |   18 +
 fix-grpc-deps.patch   |   47 ++
 3 files changed, 130 insertions(+)

Copied: tensorboard/repos/community-staging-x86_64/PKGBUILD (from rev 749399, 
tensorboard/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-10 05:28:28 UTC (rev 749400)
@@ -0,0 +1,65 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=tensorboard
+pkgver=2.3.0
+pkgrel=4
+pkgdesc="TensorFlow's Visualization Toolkit"
+url='https://github.com/tensorflow/tensorboard'
+arch=('x86_64')
+license=('APACHE')
+depends=('python' 'python-werkzeug' 'python-numpy' 'python-bleach' 
'python-wheel' 'python-markdown'
+ 'python-html5lib' 'python-protobuf' 'python-setuptools' 
'python-grpcio' 'python-google-auth-oauthlib'
+ 'python-tensorboard_plugin_wit' 'absl-py')
+optdepends=('python-tensorflow: advanced features for TensorBoard')
+makedepends=('bazel' 'tree')
+source=("${pkgname}-${pkgver}::https://github.com/tensorflow/tensorboard/archive/${pkgver}.tar.gz;
+'bump-tensorflow.patch'
+'fix-grpc-deps.patch')
+sha512sums=('0f3299be1fc69d4e2c5cf4ee49a79bbed7b8321f8daa7dfb39390dce17fef4b11db72c8090503d10b152cfeed06aa8935ddbe8d18049692c3f4394c5cdee833f'
+
'87b38bb13b580f29ff4a28b150ee572b651630686292a73e1accf79b964433e9e4b19ca6193c5098ad642fee51fa2d3c97139c7bc1b7c1f9763d18710458d375'
+
'e3b339285ea1ee46e0cc560f9ef509d2307d15090bc740ae9cc322daafd1db1180458b565a234043049c5208679bb982360b7b364df7d97ffe671669')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  patch -Np1 -i "${srcdir}/bump-tensorflow.patch"
+  patch -Np1 -i "${srcdir}/fix-grpc-deps.patch"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  bazel build --experimental_repo_remote_exec tensorboard:tensorboard
+  bazel build --experimental_repo_remote_exec 
//tensorboard/pip_package:build_pip_package
+
+  mkdir pypackage
+  cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/external
 pypackage
+  cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/tensorboard
 pypackage
+  cp 
tensorboard/pip_package/{README.rst,MANIFEST.in,setup.py,requirements.txt} 
pypackage
+  cp README.md pypackage
+  cd pypackage
+  python setup.py build
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  cd pypackage
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  rm -r "$pkgdir"/usr/lib/python3.9/site-packages/external/
+
+  
_requires="$pkgdir"/usr/lib/python3.9/site-packages/tensorboard-${pkgver}-py3.9.egg-info/requires.txt
+  # This is ugly: We need to patch it to use current bleach and html5lib
+  # because old ones are not even compatible with Python 3.6 and we don't have
+  # those in Arch of course.
+  sed -i 's/bleach==.*/bleach/' ${_requires}
+  sed -i 's/html5lib==.*/html5lib/' ${_requires}
+  # Other ugly hack: workaround for issues 650
+  # https://github.com/tensorflow/tensorboard/issues/650
+  sed -i '/^futures/d' ${_requires}
+}
+
+# vim:set ts=2 sw=2 et:

Copied: tensorboard/repos/community-staging-x86_64/bump-tensorflow.patch (from 
rev 749399, tensorboard/trunk/bump-tensorflow.patch)
===
--- community-staging-x86_64/bump-tensorflow.patch  
(rev 0)
+++ community-staging-x86_64/bump-tensorflow.patch  2020-11-10 05:28:28 UTC 
(rev 749400)
@@ -0,0 +1,18 @@
+diff -aur tensorboard-2.2.0-old/WORKSPACE tensorboard-2.2.0-new/WORKSPACE
+--- tensorboard-2.2.0-old/WORKSPACE2020-03-24 15:41:29.0 +0200
 tensorboard-2.2.0-new/WORKSPACE2020-03-26 12:40:24.515353787 +0200
+@@ -103,11 +103,10 @@
+ name = "org_tensorflow",
+ # NOTE: when updating this, MAKE SURE to also update the protobuf_js 
runtime version
+ # in third_party/workspace.bzl to >= the protobuf/protoc version provided 
by TF.
+-sha256 = 
"638e541a4981f52c69da4a311815f1e7989bf1d67a41d204511966e1daed14f7",
+-strip_prefix = "tensorflow-2.1.0",
++sha256 = 
"69cd836f87b8c53506c4f706f655d423270f5a563b76dc1cfa60fbc3184185a3",
++

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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:23:12
  Author: foutrelis
Revision: 749396

archrelease: copy trunk to community-staging-x86_64

Added:
  openvdb/repos/community-staging-x86_64/
  openvdb/repos/community-staging-x86_64/PKGBUILD
(from rev 749395, openvdb/trunk/PKGBUILD)
  openvdb/repos/community-staging-x86_64/boost-1.67.patch
(from rev 749395, openvdb/trunk/boost-1.67.patch)

--+
 PKGBUILD |   48 
 boost-1.67.patch |   11 +++
 2 files changed, 59 insertions(+)

Copied: openvdb/repos/community-staging-x86_64/PKGBUILD (from rev 749395, 
openvdb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-10 05:23:12 UTC (rev 749396)
@@ -0,0 +1,48 @@
+# Maintainer : Sven-Hendrik Haase 
+pkgname=openvdb
+pkgver=7.1.0
+pkgrel=2
+pkgdesc='A large suite of tools for the efficient storage and manipulation of 
sparse volumetric data discretized on three-dimensional grids'
+url='https://github.com/dreamworksanimation/openvdb'
+arch=('x86_64')
+license=('MPL')
+depends=('openexr' 'boost-libs' 'intel-tbb' 'zlib' 'jemalloc' 'blosc' 
'log4cplus' 'openexr')
+makedepends=('doxygen' 'boost' 'cmake' 'mesa' 'cppunit' 'glfw-x11' 'glu' 
'python' 'python-numpy' 'ninja')
+optdepends=('glfw: for tools'
+'glu: for tools'
+'python-numpy: python module')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dreamworksanimation/openvdb/archive/v${pkgver}.tar.gz;)
+sha512sums=('49806375f7e6d7b12eaba24e672a068531d2f8a05f12eba29069710d2682f9983f9e6ad26047eed4b28e337f8d0e738b90130582863c710e8dd1e720bf0addad')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  sed -i "s/MINIMUM_PYTHON_VERSION 2.7/MINIMUM_PYTHON_VERSION 3.7/g" 
CMakeLists.txt
+
+  mkdir build
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"/build
+
+  cmake .. \
+-GNinja \
+-DUSE_NUMPY=ON \
+-DUSE_LOG4CPLUS=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOPENVDB_BUILD_PYTHON_MODULE=ON \
+-DOPENVDB_BUILD_DOCS=ON \
+-DOPENVDB_BUILD_UNITTESTS=OFF
+
+  sed -i "s/isystem/I/g" build.ninja
+  ninja
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/build"
+
+  DESTDIR="${pkgdir}" ninja install
+  mkdir -p "${pkgdir}"/usr/share/doc/
+  mv "${pkgdir}"/usr/doc "${pkgdir}"/usr/share/doc/$pkgname
+}
+
+# vim:set sw=2 sts=2 et:

Copied: openvdb/repos/community-staging-x86_64/boost-1.67.patch (from rev 
749395, openvdb/trunk/boost-1.67.patch)
===
--- community-staging-x86_64/boost-1.67.patch   (rev 0)
+++ community-staging-x86_64/boost-1.67.patch   2020-11-10 05:23:12 UTC (rev 
749396)
@@ -0,0 +1,11 @@
+diff -upr openvdb-5.1.0.orig/openvdb/CMakeLists.txt 
openvdb-5.1.0/openvdb/CMakeLists.txt
+--- openvdb-5.1.0.orig/openvdb/CMakeLists.txt  2018-06-03 02:59:00.521389220 
+0300
 openvdb-5.1.0/openvdb/CMakeLists.txt   2018-06-03 03:07:55.094264747 
+0300
+@@ -275,6 +275,7 @@ IF (NOT WIN32)
+   TARGET_LINK_LIBRARIES ( vdb_view
+ openvdb_shared
+ ${Boost_THREAD_LIBRARY}
++${CMAKE_THREAD_LIBS_INIT}
+ ${OPENGL_gl_LIBRARY}
+ ${OPENGL_glu_LIBRARY}
+ ${COCOA_LIBRARY}


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:23:08
  Author: foutrelis
Revision: 749395

upgpkg: openvdb 7.1.0-2: Python 3.9 rebuild

Modified:
  openvdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:19:01 UTC (rev 749394)
+++ PKGBUILD2020-11-10 05:23:08 UTC (rev 749395)
@@ -1,7 +1,7 @@
 # Maintainer : Sven-Hendrik Haase 
 pkgname=openvdb
 pkgver=7.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A large suite of tools for the efficient storage and manipulation of 
sparse volumetric data discretized on three-dimensional grids'
 url='https://github.com/dreamworksanimation/openvdb'
 arch=('x86_64')


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:18:44
  Author: felixonmars
Revision: 749393

upgpkg: vdirsyncer 0.16.8-4: Python 3.9 rebuild

Modified:
  vdirsyncer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:17:04 UTC (rev 749392)
+++ PKGBUILD2020-11-10 05:18:44 UTC (rev 749393)
@@ -3,7 +3,7 @@
 
 pkgname=vdirsyncer
 pkgver=0.16.8
-pkgrel=3
+pkgrel=4
 pkgdesc="Synchronize CalDAV and CardDAV."
 arch=('any')
 url="https://vdirsyncer.pimutils.org/en/stable/;
@@ -61,4 +61,3 @@
   install -vDm 644 {AUTHORS,CHANGELOG,README}.rst \
 -t "${pkgdir}/usr/share/doc/${pkgname}"
 }
-


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:19:01
  Author: felixonmars
Revision: 749394

archrelease: copy trunk to community-staging-any

Added:
  vdirsyncer/repos/community-staging-any/
  vdirsyncer/repos/community-staging-any/PKGBUILD
(from rev 749393, vdirsyncer/trunk/PKGBUILD)
  vdirsyncer/repos/community-staging-any/vdirsyncer-0.16.8-python-click.patch
(from rev 749393, vdirsyncer/trunk/vdirsyncer-0.16.8-python-click.patch)
  vdirsyncer/repos/community-staging-any/vdirsyncer.service
(from rev 749393, vdirsyncer/trunk/vdirsyncer.service)
  vdirsyncer/repos/community-staging-any/vdirsyncer.timer
(from rev 749393, vdirsyncer/trunk/vdirsyncer.timer)

--+
 PKGBUILD |   63 +
 vdirsyncer-0.16.8-python-click.patch |   28 ++
 vdirsyncer.service   |7 +++
 vdirsyncer.timer |   10 +
 4 files changed, 108 insertions(+)

Copied: vdirsyncer/repos/community-staging-any/PKGBUILD (from rev 749393, 
vdirsyncer/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:19:01 UTC (rev 749394)
@@ -0,0 +1,63 @@
+# Maintainer: David Runge 
+# Contributor: Hugo Osvaldo Barrera 
+
+pkgname=vdirsyncer
+pkgver=0.16.8
+pkgrel=4
+pkgdesc="Synchronize CalDAV and CardDAV."
+arch=('any')
+url="https://vdirsyncer.pimutils.org/en/stable/;
+license=('BSD')
+depends=('python-atomicwrites' 'python-click' 'python-click-log'
+'python-click-threading' 'python-requests' 'python-requests-toolbelt'
+'python-setuptools')
+makedepends=('git' 'python-setuptools-scm' 'python-sphinx')
+optdepends=('python-requests-oauthlib: Google support'
+'python-etesync: Etesync support'
+'python-django: Etesync support')
+checkdepends=('python-hypothesis' 'python-pytest' 'python-pytest-localserver'
+'python-pytest-subtesthack')
+source=("git+https://github.com/pimutils/vdirsyncer.git#tag=${pkgver}?signed;
+"${pkgname}-0.16.8-python-click.patch")
+sha512sums=('SKIP'
+
'aa2b80f85b1122913f719c7d435d6c1ba7ac0d20adc925fa084c855bd0538069986342ba5de62755f1ea59af80f66e088d984e4545384ea034fb97c2c1e62e61')
+validpgpkeys=('951082781CA308E4A529DEFD6F9FFF122B98C0CD') # Hugo Osvaldo 
Barrera 
+
+prepare() {
+  cd "${pkgname}"
+  # fix failing test
+  # https://github.com/pimutils/vdirsyncer/issues/828
+  # fix python-click version pinning
+  # https://github.com/pimutils/vdirsyncer/issues/831
+  patch -Np1 -i ../"${pkgname}-0.16.8-python-click.patch"
+}
+
+build() {
+  cd "${pkgname}"
+  python setup.py build
+  export PYTHONPATH="build:${PYTHONPATH}"
+  sphinx-build -b man docs/ build/
+}
+
+check() {
+  cd "${pkgname}"
+  make DETERMINISTIC_TESTS=true test
+}
+
+package() {
+  cd "${pkgname}"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  # license
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+  # systemd
+  install -vDm 644 "contrib/${pkgname}."{service,timer} \
+-t "${pkgdir}/usr/lib/systemd/user/"
+  # man page
+  install -vDm 644 "build/${pkgname}.1" -t "${pkgdir}/usr/share/man/man1"
+  # docs
+  install -vDm 644 {AUTHORS,CHANGELOG,README}.rst \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}

Copied: 
vdirsyncer/repos/community-staging-any/vdirsyncer-0.16.8-python-click.patch 
(from rev 749393, vdirsyncer/trunk/vdirsyncer-0.16.8-python-click.patch)
===
--- community-staging-any/vdirsyncer-0.16.8-python-click.patch  
(rev 0)
+++ community-staging-any/vdirsyncer-0.16.8-python-click.patch  2020-11-10 
05:19:01 UTC (rev 749394)
@@ -0,0 +1,28 @@
+diff --git i/setup.py w/setup.py
+index 653be04..aaa4c2d 100644
+--- i/setup.py
 w/setup.py
+@@ -11,8 +11,8 @@ from setuptools import Command, find_packages, setup
+ 
+ requirements = [
+ # https://github.com/mitsuhiko/click/issues/200
+-'click>=5.0,<6.0',
+-'click-log>=0.3.0, <0.4.0',
++'click>=5.0',
++'click-log>=0.3.0',
+ 
+ # https://github.com/pimutils/vdirsyncer/issues/478
+ 'click-threading>=0.2',
+diff --git i/tests/system/cli/test_sync.py w/tests/system/cli/test_sync.py
+index 97e21e8..54fa201 100644
+--- i/tests/system/cli/test_sync.py
 w/tests/system/cli/test_sync.py
+@@ -123,7 +123,7 @@ def test_verbosity(tmpdir, runner):
+ runner.write_with_general('')
+ result = runner.invoke(['--verbosity=HAHA', 'sync'])
+ assert result.exception
+-assert 'invalid value for "--verbosity"' in result.output.lower()
++assert "invalid value for '--verbosity'" in result.output.lower()
+ 
+ 
+ def test_collections_cache_invalidation(tmpdir, runner):

Copied: vdirsyncer/repos/community-staging-any/vdirsyncer.service (from rev 
749393, 

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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:17:55
  Author: foutrelis
Revision: 400033

upgpkg: bind 9.16.8-2: Python 3.9 rebuild

Modified:
  bind/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:13:18 UTC (rev 400032)
+++ PKGBUILD2020-11-10 05:17:55 UTC (rev 400033)
@@ -6,7 +6,7 @@
 _pkgver=9.16.8
 pkgname=bind
 pkgver=${_pkgver//-/.}
-pkgrel=1
+pkgrel=2
 pkgdesc='A complete, highly portable implementation of the DNS protocol'
 url='https://www.isc.org/software/bind/'
 license=('MPL2')


[arch-commits] Commit in bind/repos (10 files)

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:18:02
  Author: foutrelis
Revision: 400034

archrelease: copy trunk to staging-x86_64

Added:
  bind/repos/staging-x86_64/
  bind/repos/staging-x86_64/127.0.0.zone
(from rev 400033, bind/trunk/127.0.0.zone)
  bind/repos/staging-x86_64/PKGBUILD
(from rev 400033, bind/trunk/PKGBUILD)
  bind/repos/staging-x86_64/bind.install
(from rev 400033, bind/trunk/bind.install)
  bind/repos/staging-x86_64/localhost.ip6.zone
(from rev 400033, bind/trunk/localhost.ip6.zone)
  bind/repos/staging-x86_64/localhost.zone
(from rev 400033, bind/trunk/localhost.zone)
  bind/repos/staging-x86_64/named.conf
(from rev 400033, bind/trunk/named.conf)
  bind/repos/staging-x86_64/named.service
(from rev 400033, bind/trunk/named.service)
  bind/repos/staging-x86_64/sysusers.conf
(from rev 400033, bind/trunk/sysusers.conf)
  bind/repos/staging-x86_64/tmpfiles.conf
(from rev 400033, bind/trunk/tmpfiles.conf)

+
 127.0.0.zone   |   10 
 PKGBUILD   |  107 +++
 bind.install   |   10 
 localhost.ip6.zone |   10 
 localhost.zone |   11 +
 named.conf |   57 +++
 named.service  |   10 
 sysusers.conf  |1 
 tmpfiles.conf  |1 
 9 files changed, 217 insertions(+)

Copied: bind/repos/staging-x86_64/127.0.0.zone (from rev 400033, 
bind/trunk/127.0.0.zone)
===
--- staging-x86_64/127.0.0.zone (rev 0)
+++ staging-x86_64/127.0.0.zone 2020-11-10 05:18:02 UTC (rev 400034)
@@ -0,0 +1,10 @@
+@   1D IN SOA   localhost. root.localhost. (
+42; serial (mmdd##)
+3H; refresh
+15M   ; retry
+1W; expiry
+1D )  ; minimum ttl
+
+1D  IN  NS  localhost.
+
+1.0.0.127.in-addr.arpa. 1D  IN  PTR localhost.

Copied: bind/repos/staging-x86_64/PKGBUILD (from rev 400033, 
bind/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-10 05:18:02 UTC (rev 400034)
@@ -0,0 +1,107 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson 
+# Contributor: judd 
+# Contributor: Mario Vazquez 
+
+_pkgver=9.16.8
+pkgname=bind
+pkgver=${_pkgver//-/.}
+pkgrel=2
+pkgdesc='A complete, highly portable implementation of the DNS protocol'
+url='https://www.isc.org/software/bind/'
+license=('MPL2')
+arch=('x86_64')
+options=('!emptydirs')
+makedepends=('libcap' 'libxml2' 'zlib' 'krb5' 'e2fsprogs' 'openssl' 'readline'
+  'libidn2' 'dnssec-anchors' 'python' 'json-c' 'python-ply' 'lmdb' 'zlib' 'icu'
+  'xz' 'libmaxminddb' 'libnsl' 'libuv' 'python-sphinx')
+depends=('bash' 'dnssec-anchors' 'e2fsprogs' 'glibc' 'icu' 'libedit' 'json-c'
+  'krb5' 'libcap' 'libidn2' 'libmaxminddb' 'libnsl' 'libuv' 'libxml2' 'lmdb'
+  'openssl' 'python' 'python-ply' 'readline' 'xz' 'zlib')
+conflicts=('bind-tools' 'dnsutils')
+replaces=('bind-tools' 'dnsutils' 'host')
+provides=('bind-tools' 'dnsutils' 'dns-server')
+backup=('etc/named.conf'
+'var/named/127.0.0.zone'
+'var/named/localhost.zone'
+'var/named/localhost.ip6.zone')
+install=bind.install
+validpgpkeys=('AE3FAC796711EC59FC007AA474BB6B9A4CBB3D38') #ISC Code Signing 
Key 2019 – 2020 (codes...@isc.org)
+source=("https://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.xz"{,.asc}
+'tmpfiles.conf'
+'sysusers.conf'
+'named.conf'
+'named.service'
+'localhost.zone'
+'localhost.ip6.zone'
+'127.0.0.zone')
+sha256sums=('9e9b9c563692be86ec41f670f6b70e26c14e72445c742d7b5eb4db7d2b5e8d31'
+'SKIP'
+'f0423c4ee8495da487e07e9144bec1d25f46a0cd2dfa7cfd7a761ef15bfefc98'
+'7c0acefcfcc3ae093550caed7ec90fe84bec8f7477459ffa7e71dda76bcbdb2c'
+'e08a01d41b18bdb771d534daca99642314939aafdb088e5cfcf0ef2d33f8e7eb'
+'3f0f8db0a1deae270dd166b4750be7c1041b4b44891176f35a8df7dd55d24d34'
+'0011708e516128647dd25b59b6ebc465f36e85bbe0a8fbdc3eb04b7f28c2197f'
+'c06fc270e32a843c8b6d86335a2ec607d405dfba6875de8d8a9abde39a9e2c17'
+'b88fd2b99e7d42d414b329b814b9ff3304fa0ef9c67df81bde235bbfa0f3a3b8')
+
+prepare() {
+  cd bind-$_pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local src
+  for src in "${source[@]}"; do
+src="${src%%::*}"
+src="${src##*/}"
+[[ $src = *.patch ]] || continue
+echo "Applying patch $src..."
+patch -Np1 < "../$src"
+  done
+}
+
+build() {
+  cd bind-$_pkgver
+  export CFLAGS
+  # support to chase DNSSEC signature chains
+  CFLAGS+=' 

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

2020-11-09 Thread Eli Schwartz via arch-commits
Date: Tuesday, November 10, 2020 @ 05:16:47
  Author: eschwartz
Revision: 749391

upgpkg: python-graphviz 0.14.2-2: python 3.9 rebuild

Modified:
  python-graphviz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:15:34 UTC (rev 749390)
+++ PKGBUILD2020-11-10 05:16:47 UTC (rev 749391)
@@ -3,7 +3,7 @@
 _pkgname=graphviz
 pkgname=python-graphviz
 pkgver=0.14.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Simple Python interface for Graphviz"
 arch=('any')
 url="https://github.com/xflr6/${_pkgname};


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

2020-11-09 Thread Eli Schwartz via arch-commits
Date: Tuesday, November 10, 2020 @ 05:17:04
  Author: eschwartz
Revision: 749392

archrelease: copy trunk to community-staging-any

Added:
  python-graphviz/repos/community-staging-any/PKGBUILD
(from rev 749391, python-graphviz/trunk/PKGBUILD)
Deleted:
  python-graphviz/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-10 05:16:47 UTC (rev 749391)
+++ PKGBUILD2020-11-10 05:17:04 UTC (rev 749392)
@@ -1,44 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=graphviz
-pkgname=python-graphviz
-pkgver=0.14
-pkgrel=2
-pkgdesc="Simple Python interface for Graphviz"
-arch=('any')
-url="https://github.com/xflr6/${_pkgname};
-license=('MIT')
-depends=('graphviz' 'python')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-pytest-mock')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.zip;)
-sha256sums=('e104ba036c8aef84320ec80560e544cd3cad68c9f90394b4e2b87bc44ab09791')
-b2sums=('90be05243302890350551b19fc6dc6789a445a05700e5764a3b1b8e240e2cec23f6d008a44d279e2119236018f707b23071863da1578d328db187baf5512ef98')
-
-prepare() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-# do not run python-coverage in unittests :/
-sed -i 's/--cov --cov-report=term --cov-report=html//' setup.cfg
-# don't add pointless dependency on python-mock needed on python 3.5
-sed -i '/mock_use_standalone_module/d' setup.cfg
-}
-
-build(){
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-}
-
-check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python -m pytest
-}
-
-package() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
-}

Copied: python-graphviz/repos/community-staging-any/PKGBUILD (from rev 749391, 
python-graphviz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-10 05:17:04 UTC (rev 749392)
@@ -0,0 +1,44 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=graphviz
+pkgname=python-graphviz
+pkgver=0.14.2
+pkgrel=2
+pkgdesc="Simple Python interface for Graphviz"
+arch=('any')
+url="https://github.com/xflr6/${_pkgname};
+license=('MIT')
+depends=('graphviz' 'python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-mock')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.zip;)
+sha256sums=('92b7637ece63c77e3d39221ae1f4df98e9256cb449e9860c598335b34496d195')
+b2sums=('668c200964867f416e2b15454793fdd0673a110461a85764699727b0430c812e18fb4285e031f5f611ff86bd205cbf927c695015d55ac169a594e616ab74067a')
+
+prepare() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+# do not run python-coverage in unittests :/
+sed -i 's/--cov --cov-report=term --cov-report=html//' setup.cfg
+# don't add pointless dependency on python-mock needed on python 3.5
+sed -i '/mock_use_standalone_module/d' setup.cfg
+}
+
+build(){
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python -m pytest
+}
+
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:15:34
  Author: foutrelis
Revision: 749390

archrelease: copy trunk to community-staging-x86_64

Added:
  pylibacl/repos/community-staging-x86_64/
  pylibacl/repos/community-staging-x86_64/PKGBUILD
(from rev 749389, pylibacl/trunk/PKGBUILD)

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

Copied: pylibacl/repos/community-staging-x86_64/PKGBUILD (from rev 749389, 
pylibacl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-10 05:15:34 UTC (rev 749390)
@@ -0,0 +1,27 @@
+# Maintainer: Lukas Fleischer 
+
+pkgname=python-pylibacl
+pkgbase=pylibacl
+pkgver=0.5.4
+pkgrel=4
+pkgdesc='A python extension module that allows you to manipulate the POSIX.1e 
ACLs.'
+arch=('x86_64')
+url='https://pylibacl.k1024.org/'
+license=('LGPL')
+depends=('python')
+makedepends=('python-setuptools')
+source=("${url}/downloads/${pkgbase}-${pkgver}.tar.gz"{,.asc})
+md5sums=('aba415da393e5b6dc791fd860ed9c5a9'
+ 'SKIP')
+validpgpkeys=('CB94E3AA3B1755D61EBB19A5F66E3E419F84F4DE') # Iustin Pop 

+
+build() {
+   cd "${srcdir}/${pkgbase}-${pkgver}"
+
+   python setup.py build
+}
+
+package() {
+   cd "${srcdir}/${pkgbase}-${pkgver}"
+   python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:15:23
  Author: felixonmars
Revision: 749388

archrelease: copy trunk to community-staging-any

Added:
  python-pyusb/repos/community-staging-any/
  python-pyusb/repos/community-staging-any/PKGBUILD
(from rev 749387, python-pyusb/trunk/PKGBUILD)

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

Copied: python-pyusb/repos/community-staging-any/PKGBUILD (from rev 749387, 
python-pyusb/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:15:23 UTC (rev 749388)
@@ -0,0 +1,30 @@
+# Maintainer: NicoHood 
+# PGP ID: 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161
+# Contributor: Martchus 
+# Contributor: Nuno Araujo 
+# Contributor: Limao Luo 
+# Contributor: Jason Giangrande 
+
+_pkgname=pyusb
+pkgname=python-pyusb
+pkgdesc="USB access on Python"
+pkgver=1.1.0
+pkgrel=2
+arch=('any')
+url="https://github.com/pyusb/pyusb;
+license=('custom')
+depends=('python' 'libusb')
+makedepends=('python-distribute')
+#source=("${pkgname}-${pkgver}.tar.gz::https://github.com/walac/${_pkgname}/archive/${pkgver}.tar.gz;)
+source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;
+
"${_pkgname}-${pkgver}.tar.gz.asc::https://pypi.org/packages/source/p/${_pkgname}/${_pkgname}-${pkgver}.tar.gz.asc;)
+sha512sums=('0769670e6ebd8b31f2494258eca5d6e470ad3cb17663cc14b8b3a8136ea24caa23f86d81c60c501b88a9bc94b0de6a45aac43c6c5f140e65fd03a589b4d18179'
+'SKIP')
+validpgpkeys=('B04841AE800C1BF01FE1BC3D084C5584542E1574'  # Wander Lairson 
Costa 
+  '23F335ED4E829797734B22F65841AF7406AF7AD0') # Jonas Tadeu Silva 
Malaco Filho 
+
+package() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+python setup.py install --root="${pkgdir}" --optimize=1
+install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:15:31
  Author: foutrelis
Revision: 749389

upgpkg: pylibacl 0.5.4-4: Python 3.9 rebuild

Modified:
  pylibacl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:15:23 UTC (rev 749388)
+++ PKGBUILD2020-11-10 05:15:31 UTC (rev 749389)
@@ -3,7 +3,7 @@
 pkgname=python-pylibacl
 pkgbase=pylibacl
 pkgver=0.5.4
-pkgrel=3
+pkgrel=4
 pkgdesc='A python extension module that allows you to manipulate the POSIX.1e 
ACLs.'
 arch=('x86_64')
 url='https://pylibacl.k1024.org/'


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:15:04
  Author: foutrelis
Revision: 749386

archrelease: copy trunk to community-staging-x86_64

Added:
  python-unrardll/repos/community-staging-x86_64/
  python-unrardll/repos/community-staging-x86_64/PKGBUILD
(from rev 749385, python-unrardll/trunk/PKGBUILD)

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

Copied: python-unrardll/repos/community-staging-x86_64/PKGBUILD (from rev 
749385, python-unrardll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-10 05:15:04 UTC (rev 749386)
@@ -0,0 +1,38 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Eli Schwartz 
+
+_pkgname=unrardll
+pkgname=python-unrardll
+pkgver=0.1.4
+pkgrel=4
+pkgdesc="Python wrapper for UnRAR DLL"
+arch=('x86_64')
+url="https://github.com/kovidgoyal/${_pkgname};
+license=('BSD')
+depends=('libunrar' 'python')
+makedepends=('python-setuptools')
+source=("https://pypi.io/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('4149c0729cf96a0bae80360e7d94dc40af1088c8da7f6eb8d10e09b8632e92ad'
+'SKIP')
+b2sums=('cbbbe53b9457a4a633f10a2bb5817685ebb75c88f6b20eee01a39610c0b5541bd86f77917efc7824277794e12b30afac4eb0237694cd7b0cc7caf76fb6dbf80e'
+'SKIP')
+validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C')
+
+build() {
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+
+  python setup.py build
+}
+
+check() {
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+
+  python setup.py test
+}
+
+package() {
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:15:13
  Author: felixonmars
Revision: 749387

upgpkg: python-pyusb 1.1.0-2: Python 3.9 rebuild

Modified:
  python-pyusb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:15:04 UTC (rev 749386)
+++ PKGBUILD2020-11-10 05:15:13 UTC (rev 749387)
@@ -9,7 +9,7 @@
 pkgname=python-pyusb
 pkgdesc="USB access on Python"
 pkgver=1.1.0
-pkgrel=1
+pkgrel=2
 arch=('any')
 url="https://github.com/pyusb/pyusb;
 license=('custom')


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:14:31
  Author: felixonmars
Revision: 749384

archrelease: copy trunk to community-staging-x86_64

Added:
  python-qrencode/repos/community-staging-x86_64/
  python-qrencode/repos/community-staging-x86_64/PKGBUILD
(from rev 749382, python-qrencode/trunk/PKGBUILD)

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

Copied: python-qrencode/repos/community-staging-x86_64/PKGBUILD (from rev 
749382, python-qrencode/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-10 05:14:31 UTC (rev 749384)
@@ -0,0 +1,20 @@
+# Maintainer: Levente Polyak 
+# Contributor: Martin Wimpress 
+
+pkgname=python-qrencode
+pkgver=1.2
+pkgrel=8
+pkgdesc='Simple wrapper for the C qrencode library'
+url='https://pypi.python.org/pypi/qrencode/'
+arch=('x86_64')
+license=('MIT')
+depends=('python' 'python-pillow' 'qrencode' 'glibc')
+source=(https://pypi.org/packages/source/q/qrencode/qrencode-${pkgver}.tar.gz)
+sha512sums=('e6ebf0c2d2081408ef3d4f4a2a44712e86f70019e34da5de49c1a31a26d69cafac07afb501be24bc95a2525e038a47a74f02279981ade1d33b3e96d3dbb5ce5f')
+
+package_python-qrencode() {
+  cd qrencode-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" -O1
+}
+
+# vim: ts=2 sw=2 et:


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:14:20
  Author: felixonmars
Revision: 749379

archrelease: copy trunk to community-staging-any

Added:
  python-pydoe2/repos/community-staging-any/
  python-pydoe2/repos/community-staging-any/PKGBUILD
(from rev 749377, python-pydoe2/trunk/PKGBUILD)

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

Copied: python-pydoe2/repos/community-staging-any/PKGBUILD (from rev 749377, 
python-pydoe2/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:14:20 UTC (rev 749379)
@@ -0,0 +1,23 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pydoe2
+pkgver=1.3.0
+pkgrel=2
+pkgdesc="Design of experiments for Python"
+url="https://github.com/clicumu/pydoe2;
+license=('BSD')
+arch=('any')
+depends=('python-numpy' 'python-scipy')
+makedepends=('python-setuptools')
+source=("https://pypi.io/packages/source/p/pyDOE2/pyDOE2-$pkgver.tar.gz;)
+sha512sums=('91e1e02484e69ee812c21057fcc733f617f1aa6ea5b301c8f4a38d9fb56ea2dbd4244b1a4afc89600a26569ccf782db9a31985c9951d07b2a5f5e81c6d5a1e21')
+
+build() {
+  cd pyDOE2-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd pyDOE2-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:14:27
  Author: foutrelis
Revision: 749382

upgpkg: python-cx_freeze 6.3-2: Python 3.9 rebuild

Modified:
  python-cx_freeze/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:14:22 UTC (rev 749381)
+++ PKGBUILD2020-11-10 05:14:27 UTC (rev 749382)
@@ -8,7 +8,7 @@
 
 pkgname=python-cx_freeze
 pkgver=6.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Utilities for freezing Python scripts into executables'
 arch=('x86_64')
 url='https://anthony-tuininga.github.io/cx_Freeze'


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:14:30
  Author: foutrelis
Revision: 749383

archrelease: copy trunk to community-staging-x86_64

Added:
  python-cx_freeze/repos/community-staging-x86_64/
  python-cx_freeze/repos/community-staging-x86_64/PKGBUILD
(from rev 749382, python-cx_freeze/trunk/PKGBUILD)

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

Copied: python-cx_freeze/repos/community-staging-x86_64/PKGBUILD (from rev 
749382, python-cx_freeze/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-10 05:14:30 UTC (rev 749383)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Alexander Rødseth 
+# Contributor: Ray Rashif 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Eric Belanger 
+# Contributor: Roberto Alsina 
+# Contributor: Julien Duponchelle 
+
+pkgname=python-cx_freeze
+pkgver=6.3
+pkgrel=2
+pkgdesc='Utilities for freezing Python scripts into executables'
+arch=('x86_64')
+url='https://anthony-tuininga.github.io/cx_Freeze'
+license=('PSF')
+depends=('python')
+conflicts=('cx_freeze')
+makedepends=('python-setuptools')
+checkdepends=('python-nose' 'python-openpyxl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/anthony-tuininga/cx_Freeze/archive/$pkgver.tar.gz;)
+sha512sums=('6ccc9417faae23a675a00795f00b530c9003c69cd292a9978d69c55785f1638cd13491ac312a7f4f4d3e8e7055e18911866059738a2a83e932cff74eecdb504a')
+
+build() {
+  cd cx_Freeze-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd cx_Freeze-$pkgver
+  python setup.py nosetests || echo "Tests failed"
+}
+
+package() {
+  cd cx_Freeze-$pkgver
+  python setup.py install --root "$pkgdir" --optimize 1 --skip-build
+}


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:14:21
  Author: felixonmars
Revision: 749380

upgpkg: python-qrencode 1.2-8: Python 3.9 rebuild

Modified:
  python-qrencode/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:14:20 UTC (rev 749379)
+++ PKGBUILD2020-11-10 05:14:21 UTC (rev 749380)
@@ -3,7 +3,7 @@
 
 pkgname=python-qrencode
 pkgver=1.2
-pkgrel=7
+pkgrel=8
 pkgdesc='Simple wrapper for the C qrencode library'
 url='https://pypi.python.org/pypi/qrencode/'
 arch=('x86_64')


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:15:01
  Author: foutrelis
Revision: 749385

upgpkg: python-unrardll 0.1.4-4: Python 3.9 rebuild

Modified:
  python-unrardll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:14:31 UTC (rev 749384)
+++ PKGBUILD2020-11-10 05:15:01 UTC (rev 749385)
@@ -4,7 +4,7 @@
 _pkgname=unrardll
 pkgname=python-unrardll
 pkgver=0.1.4
-pkgrel=3
+pkgrel=4
 pkgdesc="Python wrapper for UnRAR DLL"
 arch=('x86_64')
 url="https://github.com/kovidgoyal/${_pkgname};


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

2020-11-09 Thread Eli Schwartz via arch-commits
Date: Tuesday, November 10, 2020 @ 05:14:22
  Author: eschwartz
Revision: 749381

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-10 05:14:21 UTC (rev 749380)
+++ PKGBUILD2020-11-10 05:14:22 UTC (rev 749381)
@@ -1,44 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=graphviz
-pkgname=python-graphviz
-pkgver=0.14
-pkgrel=1
-pkgdesc="Simple Python interface for Graphviz"
-arch=('any')
-url="https://github.com/xflr6/${_pkgname};
-license=('MIT')
-depends=('graphviz' 'python')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-pytest-mock')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.zip;)
-sha256sums=('e104ba036c8aef84320ec80560e544cd3cad68c9f90394b4e2b87bc44ab09791')
-b2sums=('90be05243302890350551b19fc6dc6789a445a05700e5764a3b1b8e240e2cec23f6d008a44d279e2119236018f707b23071863da1578d328db187baf5512ef98')
-
-prepare() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-# do not run python-coverage in unittests :/
-sed -i 's/--cov --cov-report=term --cov-report=html//' setup.cfg
-# don't add pointless dependency on python-mock needed on python 3.5
-sed -i '/mock_use_standalone_module/d' setup.cfg
-}
-
-build(){
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-}
-
-check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python -m pytest
-}
-
-package() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
-}

Copied: python-graphviz/repos/community-any/PKGBUILD (from rev 749377, 
python-graphviz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-10 05:14:22 UTC (rev 749381)
@@ -0,0 +1,44 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=graphviz
+pkgname=python-graphviz
+pkgver=0.14.2
+pkgrel=1
+pkgdesc="Simple Python interface for Graphviz"
+arch=('any')
+url="https://github.com/xflr6/${_pkgname};
+license=('MIT')
+depends=('graphviz' 'python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-mock')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.zip;)
+sha256sums=('92b7637ece63c77e3d39221ae1f4df98e9256cb449e9860c598335b34496d195')
+b2sums=('668c200964867f416e2b15454793fdd0673a110461a85764699727b0430c812e18fb4285e031f5f611ff86bd205cbf927c695015d55ac169a594e616ab74067a')
+
+prepare() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+# do not run python-coverage in unittests :/
+sed -i 's/--cov --cov-report=term --cov-report=html//' setup.cfg
+# don't add pointless dependency on python-mock needed on python 3.5
+sed -i '/mock_use_standalone_module/d' setup.cfg
+}
+
+build(){
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python -m pytest
+}
+
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:14:17
  Author: foutrelis
Revision: 749378

archrelease: copy trunk to community-staging-any

Added:
  python-commentjson/repos/community-staging-any/
  python-commentjson/repos/community-staging-any/PKGBUILD
(from rev 749377, python-commentjson/trunk/PKGBUILD)

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

Copied: python-commentjson/repos/community-staging-any/PKGBUILD (from rev 
749377, python-commentjson/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:14:17 UTC (rev 749378)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-commentjson
+pkgver=0.9.0
+pkgrel=2
+pkgdesc="Add Python and JavaScript style comments in your JSON files"
+url="https://github.com/vaidik/commentjson;
+license=('MIT')
+arch=('any')
+depends=('python-lark-parser')
+makedepends=('python-setuptools')
+checkdepends=('python-tests')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/vaidik/commentjson/archive/v$pkgver.tar.gz;)
+sha512sums=('cd3d28adecbc445ed3faed7847c65a23829f408cf8aa3fa85544a0f0cf9fa5544b8aff560725cf51921f249123daf9ce9953069e99ca64a312bb4bff652512fe')
+
+prepare() {
+  cd commentjson-$pkgver
+  sed -i 's/,<0/,<1/' setup.py
+}
+
+build() {
+  cd commentjson-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd commentjson-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd commentjson-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.rst -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


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

2020-11-09 Thread Eli Schwartz via arch-commits
Date: Tuesday, November 10, 2020 @ 05:14:07
  Author: eschwartz
Revision: 749375

upgpkg: python-graphviz 0.14.2-1: upstream release

Modified:
  python-graphviz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:14:05 UTC (rev 749374)
+++ PKGBUILD2020-11-10 05:14:07 UTC (rev 749375)
@@ -2,8 +2,8 @@
 
 _pkgname=graphviz
 pkgname=python-graphviz
-pkgver=0.14
-pkgrel=2
+pkgver=0.14.2
+pkgrel=1
 pkgdesc="Simple Python interface for Graphviz"
 arch=('any')
 url="https://github.com/xflr6/${_pkgname};
@@ -12,8 +12,8 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest' 'python-pytest-mock')
 
source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.zip;)
-sha256sums=('e104ba036c8aef84320ec80560e544cd3cad68c9f90394b4e2b87bc44ab09791')
-b2sums=('90be05243302890350551b19fc6dc6789a445a05700e5764a3b1b8e240e2cec23f6d008a44d279e2119236018f707b23071863da1578d328db187baf5512ef98')
+sha256sums=('92b7637ece63c77e3d39221ae1f4df98e9256cb449e9860c598335b34496d195')
+b2sums=('668c200964867f416e2b15454793fdd0673a110461a85764699727b0430c812e18fb4285e031f5f611ff86bd205cbf927c695015d55ac169a594e616ab74067a')
 
 prepare() {
 cd "${srcdir}"/${_pkgname}-${pkgver}


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:13:52
  Author: felixonmars
Revision: 749371

upgpkg: python-musicbrainzngs 0.7.1-2: Python 3.9 rebuild

Modified:
  python-musicbrainzngs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:13:50 UTC (rev 749370)
+++ PKGBUILD2020-11-10 05:13:52 UTC (rev 749371)
@@ -3,7 +3,7 @@
 
 pkgname=python-musicbrainzngs
 pkgver=0.7.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Python bindings for Musicbrainz' NGS webservice"
 arch=(any)
 url=https://github.com/alastair/python-musicbrainzngs


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:14:14
  Author: foutrelis
Revision: 749377

upgpkg: python-commentjson 0.9.0-2: Python 3.9 rebuild

Modified:
  python-commentjson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:14:09 UTC (rev 749376)
+++ PKGBUILD2020-11-10 05:14:14 UTC (rev 749377)
@@ -2,7 +2,7 @@
 
 pkgname=python-commentjson
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Add Python and JavaScript style comments in your JSON files"
 url="https://github.com/vaidik/commentjson;
 license=('MIT')


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:13:40
  Author: felixonmars
Revision: 749367

archrelease: copy trunk to community-staging-any

Added:
  python-diff-cover/repos/community-staging-any/
  python-diff-cover/repos/community-staging-any/PKGBUILD
(from rev 749366, python-diff-cover/trunk/PKGBUILD)

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

Copied: python-diff-cover/repos/community-staging-any/PKGBUILD (from rev 
749366, python-diff-cover/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:13:40 UTC (rev 749367)
@@ -0,0 +1,44 @@
+# Maintainer: David Runge 
+
+_name=diff_cover
+pkgname=python-diff-cover
+pkgver=4.0.1
+pkgrel=2
+pkgdesc="Automatically find diff lines that need test coverage"
+arch=('any')
+url="https://github.com/Bachmann1234/diff_cover;
+license=('Apache')
+depends=('python-jinja' 'python-jinja_pluralize' 'python-pluggy'
+'python-pygments' 'python-setuptools')
+checkdepends=('flake8' 'python-pytest' 'python-mock' 'python-pytest-cov'
+'python-pycodestyle' 'python-pyflakes' 'python-pylint' 'python-pydocstyle')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz"{,.asc})
+sha512sums=('a5f124cf602937f089094d38c9eba9a1babdadcff9b65d4b8cb909c6bcaaf61c7832f8c30d4453f50d0965687e9fe9a25060fb824cd997f641d7fec769f0232b'
+'SKIP')
+b2sums=('e4ff84f9eaf8acb3ff659a15670d957c8601c45f2528086b0e76f949e06682af91f8b873f23432fc79b0471b6ab1f5f6c03c65bc10cc5d795e2ff273f2d2153d'
+'SKIP')
+validpgpkeys=('54CAEABCAC2956D407348256972401BDE60128CB') # Matt Bachmann 

+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  pytest -v
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 {CHANGELOG,NOTICE,README.rst} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:14:09
  Author: felixonmars
Revision: 749376

upgpkg: python-pydoe2 1.3.0-2: Python 3.9 rebuild

Modified:
  python-pydoe2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:14:07 UTC (rev 749375)
+++ PKGBUILD2020-11-10 05:14:09 UTC (rev 749376)
@@ -2,7 +2,7 @@
 
 pkgname=python-pydoe2
 pkgver=1.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Design of experiments for Python"
 url="https://github.com/clicumu/pydoe2;
 license=('BSD')


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:13:55
  Author: felixonmars
Revision: 749372

upgpkg: python-testinfra 5.3.1-2: Python 3.9 rebuild

Modified:
  python-testinfra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:13:52 UTC (rev 749371)
+++ PKGBUILD2020-11-10 05:13:55 UTC (rev 749372)
@@ -7,7 +7,7 @@
 _name=testinfra
 pkgname=python-testinfra
 pkgver=5.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Testinfra test your infrastructures'
 url="https://github.com/philpep/testinfra;
 arch=('any')


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:14:03
  Author: felixonmars
Revision: 749373

archrelease: copy trunk to community-staging-any

Added:
  python-musicbrainzngs/repos/community-staging-any/
  python-musicbrainzngs/repos/community-staging-any/PKGBUILD
(from rev 749372, python-musicbrainzngs/trunk/PKGBUILD)

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

Copied: python-musicbrainzngs/repos/community-staging-any/PKGBUILD (from rev 
749372, python-musicbrainzngs/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:14:03 UTC (rev 749373)
@@ -0,0 +1,38 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Adrian Sampson 
+
+pkgname=python-musicbrainzngs
+pkgver=0.7.1
+pkgrel=2
+pkgdesc="Python bindings for Musicbrainz' NGS webservice"
+arch=(any)
+url=https://github.com/alastair/python-musicbrainzngs
+license=(BSD)
+depends=(python)
+makedepends=(
+  git
+  python-setuptools
+)
+source=(git+https://github.com/alastair/python-musicbrainzngs.git#tag=e4bca39720c7c0a1de38b1663faa3475cf5b7eff)
+sha256sums=(SKIP)
+
+pkgver() {
+  cd python-musicbrainzngs
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cd python-musicbrainzngs
+
+  python setup.py build
+}
+
+package() {
+  cd python-musicbrainzngs
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm 644 COPYING -t 
"${pkgdir}"/usr/share/licenses/python-musicbrainzngs/
+}
+
+# vim: ts=2 sw=2 et:


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:14:05
  Author: felixonmars
Revision: 749374

archrelease: copy trunk to community-staging-any

Added:
  python-testinfra/repos/community-staging-any/
  python-testinfra/repos/community-staging-any/PKGBUILD
(from rev 749372, python-testinfra/trunk/PKGBUILD)

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

Copied: python-testinfra/repos/community-staging-any/PKGBUILD (from rev 749372, 
python-testinfra/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:14:05 UTC (rev 749374)
@@ -0,0 +1,57 @@
+# Maintainer: Christian Rebischke 
+# Contributor: David Runge 
+# Contributor: Lex Black 
+# Contributor: gardar 
+# Contributor: Morten Linderud 
+
+_name=testinfra
+pkgname=python-testinfra
+pkgver=5.3.1
+pkgrel=2
+pkgdesc='Testinfra test your infrastructures'
+url="https://github.com/philpep/testinfra;
+arch=('any')
+license=('Apache')
+depends=('python-pytest')
+makedepends=('python-hacking' 'python-setuptools_scm' 'python-sphinx')
+checkdepends=('ansible' 'python-mock' 'python-paramiko' 'python-pytest-cov'
+'python-pytest-xdist' 'python-pywinrm' 'python-tornado' 'salt')
+# TODO: add salt to optdepends, after it has been ported to python3
+optdepends=('ansible: for tests using ansible inventories'
+'docker: for test running docker containers'
+'kubectl: for test running containers in kubernetes'
+'lxd: for test running LXC or LXD containers'
+'podman: for test running podman containers'
+'python-paramiko: for testing remote hosts'
+'python-pywinrm: for testing on Windows hosts')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('f28cb5fdd811a1c9fcd7f5ee9257f85eed3d23bbfc37ab11f6df59061bd51fe2289b2ce4e3868aa63dd7e83e8dc7c00f731f8384fcf0beca42f966eacc90bc8d')
+b2sums=('a859513f8ace452e264c8a0fb55e2bb65fc0444dcab5230a60975ee3a212b0e2bcdbb2e2249caa9a503f4c0e304095424d90ba396ca7e0c04c652c600f07e6ef')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+  make -C doc man
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  export PYTHONPATH="build:$PYTHONPATH"
+  # salt is not python3 (yet): https://bugs.archlinux.org/task/61129
+  pytest -v -k 'not test_backend_importables'
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  # man page
+  install -Dm 644 doc/build/man/${_name}.1 \
+"${pkgdir}/usr/share/man/man1/${pkgname}.1"
+  # docs
+  install -vDm 644 {CHANGELOG,CONTRIBUTING,README}.rst \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:13:47
  Author: foutrelis
Revision: 749369

upgpkg: python-levenshtein 0.12.0-9: Python 3.9 rebuild

Modified:
  python-levenshtein/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:13:42 UTC (rev 749368)
+++ PKGBUILD2020-11-10 05:13:47 UTC (rev 749369)
@@ -5,7 +5,7 @@
 
 pkgname=python-levenshtein
 pkgver=0.12.0
-pkgrel=8
+pkgrel=9
 pkgdesc="Python extension for computing string edit distances and similarities"
 url="https://pypi.python.org/pypi/python-Levenshtein/;
 license=('GPL')


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:13:18
  Author: felixonmars
Revision: 400032

archrelease: copy trunk to staging-x86_64

Added:
  gom/repos/staging-x86_64/
  gom/repos/staging-x86_64/PKGBUILD
(from rev 400031, gom/trunk/PKGBUILD)

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

Copied: gom/repos/staging-x86_64/PKGBUILD (from rev 400031, gom/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-10 05:13:18 UTC (rev 400032)
@@ -0,0 +1,39 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gom
+pkgver=0.4
+pkgrel=2
+pkgdesc="A GObject to SQLite object mapper"
+arch=(x86_64)
+url="https://wiki.gnome.org/Projects/Gom;
+license=(LGPL2.1)
+depends=(glib2 sqlite)
+makedepends=(gtk-doc gobject-introspection gdk-pixbuf2 git meson 
python-gobject)
+provides=(libgom-1.0.so)
+_commit=26816b74a29b9d2d8dc169ed2f9649a4a159bc7c  # tags/0.4^0
+source=("git+https://gitlab.gnome.org/GNOME/gom.git#commit=$_commit;)
+sha256sums=('SKIP')
+ 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build -D enable-gtk-doc=true
+  ninja -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:13:50
  Author: foutrelis
Revision: 749370

archrelease: copy trunk to community-staging-x86_64

Added:
  python-levenshtein/repos/community-staging-x86_64/
  python-levenshtein/repos/community-staging-x86_64/PKGBUILD
(from rev 749369, python-levenshtein/trunk/PKGBUILD)

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

Copied: python-levenshtein/repos/community-staging-x86_64/PKGBUILD (from rev 
749369, python-levenshtein/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-10 05:13:50 UTC (rev 749370)
@@ -0,0 +1,21 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas S Hatch 
+# Contributor: shamrok 
+# Contributor: scj 
+
+pkgname=python-levenshtein
+pkgver=0.12.0
+pkgrel=9
+pkgdesc="Python extension for computing string edit distances and similarities"
+url="https://pypi.python.org/pypi/python-Levenshtein/;
+license=('GPL')
+arch=('x86_64')
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/p/python-Levenshtein/python-Levenshtein-$pkgver.tar.gz;)
+sha512sums=('95df064490970618b003bccbef9071b1a2a3ee4645ac8e851f4205bd4e8123d21ee0ee733adfeec79085faa01ba39902e2a4a26bfb21b70678377579157df4a5')
+
+package() {
+  cd python-Levenshtein-$pkgver
+  python setup.py build install -O1 --prefix=/usr --root="$pkgdir"
+}


[arch-commits] Commit in python-openapi-spec-validator/repos (2 files)

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:13:42
  Author: felixonmars
Revision: 749368

archrelease: copy trunk to community-staging-any

Added:
  python-openapi-spec-validator/repos/community-staging-any/
  python-openapi-spec-validator/repos/community-staging-any/PKGBUILD
(from rev 749366, python-openapi-spec-validator/trunk/PKGBUILD)

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

Copied: python-openapi-spec-validator/repos/community-staging-any/PKGBUILD 
(from rev 749366, python-openapi-spec-validator/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:13:42 UTC (rev 749368)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-openapi-spec-validator
+pkgver=0.2.9
+pkgrel=2
+pkgdesc="A Python library that validates OpenAPI Specs against the OpenAPI 2.0 
(aka Swagger) and OpenAPI 3.0.0 specification"
+url="https://github.com/p1c2u/openapi-spec-validator;
+license=('Apache')
+arch=('any')
+depends=('python-six' 'python-yaml' 'python-jsonschema')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner' 'python-mock' 'python-pytest-flake8' 
'python-pytest-cov'
+  'python-tox')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/p1c2u/openapi-spec-validator/archive/$pkgver.tar.gz;)
+sha512sums=('29c6e6d343895069317ea69ade3e370416c8172db432187e6b64957468a9a1c69de510990f791ffeadb00591cc4bd2ebaed7ef0120fb9f6c3ed3fe25f6c28261')
+
+build() {
+  cd openapi-spec-validator-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd openapi-spec-validator-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd openapi-spec-validator-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:13:00
  Author: foutrelis
Revision: 749362

upgpkg: python-mohawk 1.1.0-2: Python 3.9 rebuild

Modified:
  python-mohawk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:12:58 UTC (rev 749361)
+++ PKGBUILD2020-11-10 05:13:00 UTC (rev 749362)
@@ -3,7 +3,7 @@
 _pkgname=mohawk
 pkgname=python-mohawk
 pkgver=1.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Python library for Hawk HTTP authorization"
 arch=('any')
 url="https://github.com/kumar303/mohawk;


[arch-commits] Commit in python-openapi-spec-validator/trunk (PKGBUILD)

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:13:32
  Author: felixonmars
Revision: 749366

upgpkg: python-openapi-spec-validator 0.2.9-2: Python 3.9 rebuild

Modified:
  python-openapi-spec-validator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:13:29 UTC (rev 749365)
+++ PKGBUILD2020-11-10 05:13:32 UTC (rev 749366)
@@ -2,7 +2,7 @@
 
 pkgname=python-openapi-spec-validator
 pkgver=0.2.9
-pkgrel=1
+pkgrel=2
 pkgdesc="A Python library that validates OpenAPI Specs against the OpenAPI 2.0 
(aka Swagger) and OpenAPI 3.0.0 specification"
 url="https://github.com/p1c2u/openapi-spec-validator;
 license=('Apache')


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:13:29
  Author: felixonmars
Revision: 749365

upgpkg: python-diff-cover 4.0.1-2: Python 3.9 rebuild

Modified:
  python-diff-cover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:13:08 UTC (rev 749364)
+++ PKGBUILD2020-11-10 05:13:29 UTC (rev 749365)
@@ -3,7 +3,7 @@
 _name=diff_cover
 pkgname=python-diff-cover
 pkgver=4.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Automatically find diff lines that need test coverage"
 arch=('any')
 url="https://github.com/Bachmann1234/diff_cover;


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:12:58
  Author: felixonmars
Revision: 749361

upgpkg: python-rstr 2.2.6-9: Python 3.9 rebuild

Modified:
  python-rstr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:12:47 UTC (rev 749360)
+++ PKGBUILD2020-11-10 05:12:58 UTC (rev 749361)
@@ -5,7 +5,7 @@
 pkgname=python-rstr
 _pkgname=rstr
 pkgver=2.2.6
-pkgrel=8
+pkgrel=9
 pkgdesc="Generate random strings in Python"
 arch=('any')
 url="https://bitbucket.org/leapfrogdevelopment/rstr;


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:13:08
  Author: felixonmars
Revision: 749364

archrelease: copy trunk to community-staging-any

Added:
  python-rstr/repos/community-staging-any/
  python-rstr/repos/community-staging-any/PKGBUILD
(from rev 749363, python-rstr/trunk/PKGBUILD)

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

Copied: python-rstr/repos/community-staging-any/PKGBUILD (from rev 749363, 
python-rstr/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:13:08 UTC (rev 749364)
@@ -0,0 +1,27 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Kewl 
+# Contributor: Andy Weidenbaum 
+
+pkgname=python-rstr
+_pkgname=rstr
+pkgver=2.2.6
+pkgrel=9
+pkgdesc="Generate random strings in Python"
+arch=('any')
+url="https://bitbucket.org/leapfrogdevelopment/rstr;
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz;)
+sha256sums=('5dea822326e418e0c9816c9cd14ae9c7be2d4cd4334043c397f202bc2ae2eda4')
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:13:07
  Author: felixonmars
Revision: 400031

upgpkg: gom 0.4-2: Python 3.9 rebuild

Modified:
  gom/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:07:13 UTC (rev 400030)
+++ PKGBUILD2020-11-10 05:13:07 UTC (rev 400031)
@@ -2,7 +2,7 @@
 
 pkgname=gom
 pkgver=0.4
-pkgrel=1
+pkgrel=2
 pkgdesc="A GObject to SQLite object mapper"
 arch=(x86_64)
 url="https://wiki.gnome.org/Projects/Gom;


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:12:47
  Author: felixonmars
Revision: 749360

archrelease: copy trunk to community-staging-any

Added:
  python-clickclick/repos/community-staging-any/
  python-clickclick/repos/community-staging-any/PKGBUILD
(from rev 749359, python-clickclick/trunk/PKGBUILD)

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

Copied: python-clickclick/repos/community-staging-any/PKGBUILD (from rev 
749359, python-clickclick/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:12:47 UTC (rev 749360)
@@ -0,0 +1,32 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=python-clickclick
+pkgver=20.10.2
+pkgrel=2
+pkgdesc='Click command line utilities'
+url='https://codeberg.org/hjacobs/python-clickclick'
+license=('Apache')
+arch=('any')
+depends=('python-click' 'python-yaml')
+makedepends=('python-setuptools')
+#checkdepends=('python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('d8954d231bff6945ac0e8350be05775a8a0b852dd0284e3446b3f9c8bc5861870ed1bc058e132c144fe8d543aee87d7a7a54894abdb4006664e5994c8cfb507f')
+
+build() {
+  cd $pkgname
+
+  python setup.py build
+}
+
+#check() {
+#  cd $pkgname
+#
+#  python setup.py test
+#}
+
+package() {
+  cd $pkgname
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:12:30
  Author: foutrelis
Revision: 749358

archrelease: copy trunk to community-staging-any

Added:
  python-opt_einsum/repos/community-staging-any/
  python-opt_einsum/repos/community-staging-any/PKGBUILD
(from rev 749357, python-opt_einsum/trunk/PKGBUILD)

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

Copied: python-opt_einsum/repos/community-staging-any/PKGBUILD (from rev 
749357, python-opt_einsum/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:12:30 UTC (rev 749358)
@@ -0,0 +1,25 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Adrien Wu 
+pkgname=python-opt_einsum
+pkgver=3.3.0
+pkgrel=2
+pkgdesc="Optimizing einsum functions in NumPy, Tensorflow, Dask, and more with 
contraction order optimization"
+url="https://github.com/dgasmith/opt_einsum;
+license=('MIT')
+arch=('any')
+depends=('python')
+makedepends=('python-setuptools')
+_name=opt_einsum
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('59f6475f77bbc37dcf7cd748519c0ec60722e91e63ca114e68821c0c54a46549')
+
+build() {
+  cd "$srcdir/$_name-$pkgver"
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir/$_name-$pkgver"
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:13:04
  Author: foutrelis
Revision: 749363

archrelease: copy trunk to community-staging-any

Added:
  python-mohawk/repos/community-staging-any/
  python-mohawk/repos/community-staging-any/PKGBUILD
(from rev 749362, python-mohawk/trunk/PKGBUILD)

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

Copied: python-mohawk/repos/community-staging-any/PKGBUILD (from rev 749362, 
python-mohawk/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:13:04 UTC (rev 749363)
@@ -0,0 +1,25 @@
+# Maintainer: Balló György 
+
+_pkgname=mohawk
+pkgname=python-mohawk
+pkgver=1.1.0
+pkgrel=2
+pkgdesc="Python library for Hawk HTTP authorization"
+arch=('any')
+url="https://github.com/kumar303/mohawk;
+license=('BSD')
+depends=('python-six')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kumar303/$_pkgname/archive/$pkgver.tar.gz;)
+sha256sums=('995ecf009a92efb18a6503707e0c4d9887fe758102d824ca3e5a5625fee1b8bd')
+
+build() {
+  cd $_pkgname-$pkgver
+  python3 setup.py build
+}
+
+package() {
+  cd $_pkgname-$pkgver 
+  python3 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:12:36
  Author: felixonmars
Revision: 749359

upgpkg: python-clickclick 20.10.2-2: Python 3.9 rebuild

Modified:
  python-clickclick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:12:30 UTC (rev 749358)
+++ PKGBUILD2020-11-10 05:12:36 UTC (rev 749359)
@@ -2,7 +2,7 @@
 
 pkgname=python-clickclick
 pkgver=20.10.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Click command line utilities'
 url='https://codeberg.org/hjacobs/python-clickclick'
 license=('Apache')
@@ -30,4 +30,3 @@
 
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
 }
-


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:12:26
  Author: foutrelis
Revision: 749357

upgpkg: python-opt_einsum 3.3.0-2: Python 3.9 rebuild

Modified:
  python-opt_einsum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:11:54 UTC (rev 749356)
+++ PKGBUILD2020-11-10 05:12:26 UTC (rev 749357)
@@ -2,7 +2,7 @@
 # Contributor: Adrien Wu 
 pkgname=python-opt_einsum
 pkgver=3.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Optimizing einsum functions in NumPy, Tensorflow, Dask, and more with 
contraction order optimization"
 url="https://github.com/dgasmith/opt_einsum;
 license=('MIT')


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:11:43
  Author: felixonmars
Revision: 749354

upgpkg: python-matrix-nio 0.15.2-2: Python 3.9 rebuild

Modified:
  python-matrix-nio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:11:33 UTC (rev 749353)
+++ PKGBUILD2020-11-10 05:11:43 UTC (rev 749354)
@@ -2,7 +2,7 @@
 pkgname=python-matrix-nio
 pkgver=0.15.2
 _tag=663e99c39668ab6bfe5ed2a861a51f3834fd714c # git rev-parse "$pkgver"
-pkgrel=1
+pkgrel=2
 pkgdesc='Python Matrix client library, designed according to sans I/O 
principles'
 arch=('any')
 url='https://github.com/poljar/matrix-nio'


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:11:33
  Author: felixonmars
Revision: 749353

upgpkg: python-intervaltree 3.1.0-2: Python 3.9 rebuild

Modified:
  python-intervaltree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:11:30 UTC (rev 749352)
+++ PKGBUILD2020-11-10 05:11:33 UTC (rev 749353)
@@ -4,7 +4,7 @@
 pkgname=python-intervaltree
 _pyname=intervaltree
 pkgver=3.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Library providing a mutable, self-balancing interval tree for Python'
 url="https://github.com/chaimleib/intervaltree;
 arch=('any')


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:11:07
  Author: foutrelis
Revision: 749347

archrelease: copy trunk to community-staging-any

Added:
  python-pysolr/repos/community-staging-any/
  python-pysolr/repos/community-staging-any/PKGBUILD
(from rev 749346, python-pysolr/trunk/PKGBUILD)

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

Copied: python-pysolr/repos/community-staging-any/PKGBUILD (from rev 749346, 
python-pysolr/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:11:07 UTC (rev 749347)
@@ -0,0 +1,47 @@
+# Maintainer: David Runge 
+
+_name=pysolr
+pkgname=python-pysolr
+pkgver=3.9.0
+pkgrel=2
+pkgdesc="Python Solr client"
+arch=('any')
+url="https://github.com/django-haystack/pysolr;
+license=('BSD')
+depends=('python-requests')
+makedepends=('python-setuptools-scm')
+# checkdepends=('python-mock' 'python-pytest' 'solr' 'zookeeper')
+optdepends=('python-kazoo: for solrcloud'
+'python-simplejson: for JSON support'
+'solr: for interfacing a local solr instance')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('8a8ff1588cd379c248de1a0316f2259239c1e9f25cd6f1d3a71792972bb871d1bad5c9449bdc6673e5b82aab896f8a898959dcc98dbac330d7d32568a23bcdc5')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+# tests vendor solr *and* zookeeper (including download)
+# TODO: write own test script to replace start-solr-test-server.sh
+# TODO: package zookeeper, as it's also required for tests
+# check() {
+#   cd "$pkgname-$pkgver"
+#   export PYTHONPATH="build:${PYTHONPATH}"
+#   python run-tests.py
+# }
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 {AUTHORS,{CHANGELOG,README}.rst} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:11:12
  Author: felixonmars
Revision: 749349

archrelease: copy trunk to community-staging-any

Added:
  python-hypothesis-auto/repos/community-staging-any/
  python-hypothesis-auto/repos/community-staging-any/PKGBUILD
(from rev 749347, python-hypothesis-auto/trunk/PKGBUILD)

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

Copied: python-hypothesis-auto/repos/community-staging-any/PKGBUILD (from rev 
749347, python-hypothesis-auto/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:11:12 UTC (rev 749349)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-hypothesis-auto
+pkgver=1.1.4
+_commit=4ed588ab631d6c44c8959334a3425a8c0d207eff
+pkgrel=2
+pkgdesc="Extends Hypothesis to add fully automatic testing of type annotated 
functions"
+url="https://github.com/timothycrosley/hypothesis-auto;
+license=('MIT')
+arch=('any')
+depends=('python-pydantic' 'python-hypothesis')
+makedepends=('python-dephell')
+checkdepends=('python-pytest')
+source=("https://github.com/timothycrosley/hypothesis-auto/archive/$_commit/$pkgname-$_commit.tar.gz;)
+sha512sums=('96a9b541dedcbe20eae242201ad2d57366f61ab60aa388ad67102a18bd1fdd916f3a45cee67ff7021dc4358707457f6f607e6a0666b85005150d09e398bfda58')
+
+prepare() {
+  cd hypothesis-auto-$_commit
+  # poetry-generated setup.py are fatally broken, see:
+  # https://github.com/sdispater/poetry/issues/866
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd hypothesis-auto-$_commit
+  python setup.py build
+}
+
+check() {
+  cd hypothesis-auto-$_commit
+  python -m pytest
+}
+
+package() {
+  cd hypothesis-auto-$_commit
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:11:44
  Author: felixonmars
Revision: 749355

archrelease: copy trunk to community-staging-any

Added:
  python-intervaltree/repos/community-staging-any/
  python-intervaltree/repos/community-staging-any/PKGBUILD
(from rev 749353, python-intervaltree/trunk/PKGBUILD)

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

Copied: python-intervaltree/repos/community-staging-any/PKGBUILD (from rev 
749353, python-intervaltree/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:11:44 UTC (rev 749355)
@@ -0,0 +1,28 @@
+# Maintainer: kpcyrd 
+# Contributor: Dobroslaw Kijowski [dobo] 
+
+pkgname=python-intervaltree
+_pyname=intervaltree
+pkgver=3.1.0
+pkgrel=2
+pkgdesc='Library providing a mutable, self-balancing interval tree for Python'
+url="https://github.com/chaimleib/intervaltree;
+arch=('any')
+license=('Apache')
+depends=('python-sortedcontainers')
+makedepends=('python-setuptools')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/chaimleib/${_pyname}/archive/${pkgver}.tar.gz;)
+sha512sums=('96dd7710bb5b02470cb7d1b479d905d5e4a18abb9aef055fa55de6b7c25dcad46260f76e5d042bec599b02de2045d8ba03ff1900fff9562227dff5a76b45a070')
+b2sums=('c11a93d3dfcf9f58ccf18e1a2a219daa5082abc3187f0c65fb309df221ec61495a31923819a92c03ff251a2f00b0588ab00aaaf70417a3b1a785c18a7bb3a702')
+
+build() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+}
+
+# vim: ts=2 sw=2 et:


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:11:09
  Author: foutrelis
Revision: 749348

upgpkg: python-litesata 2020.08-2: Python 3.9 rebuild

Modified:
  python-litesata/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:11:07 UTC (rev 749347)
+++ PKGBUILD2020-11-10 05:11:09 UTC (rev 749348)
@@ -3,7 +3,7 @@
 _pkgname=litesata
 pkgname=python-$_pkgname
 pkgver=2020.08
-pkgrel=1
+pkgrel=2
 pkgdesc='Small footprint and configurable SATA core'
 arch=('any')
 url="https://github.com/enjoy-digital/$_pkgname;
@@ -33,4 +33,3 @@
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:11:20
  Author: felixonmars
Revision: 749351

upgpkg: python-zeroconf 0.28.6-2: Python 3.9 rebuild

Modified:
  python-zeroconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:11:12 UTC (rev 749350)
+++ PKGBUILD2020-11-10 05:11:20 UTC (rev 749351)
@@ -3,7 +3,7 @@
 
 pkgname=python-zeroconf
 pkgver=0.28.6
-pkgrel=1
+pkgrel=2
 pkgdesc="A pure python implementation of multicast DNS service discovery"
 arch=('any')
 url="https://github.com/jstasiak/python-zeroconf;


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:11:54
  Author: felixonmars
Revision: 749356

archrelease: copy trunk to community-staging-any

Added:
  python-matrix-nio/repos/community-staging-any/
  python-matrix-nio/repos/community-staging-any/PKGBUILD
(from rev 749355, python-matrix-nio/trunk/PKGBUILD)

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

Copied: python-matrix-nio/repos/community-staging-any/PKGBUILD (from rev 
749355, python-matrix-nio/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:11:54 UTC (rev 749356)
@@ -0,0 +1,39 @@
+# Maintainer: Jonas Witschel 
+pkgname=python-matrix-nio
+pkgver=0.15.2
+_tag=663e99c39668ab6bfe5ed2a861a51f3834fd714c # git rev-parse "$pkgver"
+pkgrel=2
+pkgdesc='Python Matrix client library, designed according to sans I/O 
principles'
+arch=('any')
+url='https://github.com/poljar/matrix-nio'
+license=('ISC')
+depends=('python' 'python-aiofiles' 'python-aiohttp' 'python-atomicwrites' 
'python-cachetools'
+ 'python-future' 'python-h11' 'python-h2' 'python-jsonschema' 
'python-logbook' 'python-olm'
+ 'python-peewee' 'python-pycryptodome' 'python-unpaddedbase64')
+makedepends=('git')
+checkdepends=('python-aioresponses' 'python-faker' 'python-hpack' 
'python-hyperframe' 'python-hypothesis'
+  'python-pytest' 'python-pytest-aiohttp' 
'python-pytest-benchmark')
+source=("git+$url.git?signed#tag=$_tag")
+sha512sums=('SKIP')
+validpgpkeys=('689A3B5BC6560AB4C99A2A0581314DA807EF4E22') # Damir Jelić 
(poljar) 
+
+pkgver() {
+   cd "${pkgname#python-}"
+   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
+build() {
+   cd "${pkgname#python-}"
+   python setup.py build
+}
+
+check() {
+   cd "${pkgname#python-}"
+   python -m pytest
+}
+
+package() {
+   cd "${pkgname#python-}"
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+   install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:11:30
  Author: felixonmars
Revision: 749352

archrelease: copy trunk to community-staging-any

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

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

Copied: python-zeroconf/repos/community-staging-any/PKGBUILD (from rev 749351, 
python-zeroconf/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:11:30 UTC (rev 749352)
@@ -0,0 +1,33 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Maxim Andersson 
+
+pkgname=python-zeroconf
+pkgver=0.28.6
+pkgrel=2
+pkgdesc="A pure python implementation of multicast DNS service discovery"
+arch=('any')
+url="https://github.com/jstasiak/python-zeroconf;
+license=('LGPL')
+depends=('python' 'python-netifaces' 'python-six' 'python-ifaddr')
+makedepends=('python-setuptools')
+checkdepends=('python-nose')
+source=($pkgname-$pkgver.tar.gz::https://github.com/jstasiak/${pkgname}/archive/${pkgver}.tar.gz)
+sha256sums=('9971344cb69132a68fac928522ca423c97db0f02310ee15b8551a6a63f8898a2')
+
+build() {
+  cd "${pkgbase}-${pkgver}"
+  python3 setup.py build
+}
+
+package() {
+  cd "${pkgbase}-${pkgver}"
+
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+}
+
+check() {
+  cd "${pkgbase}-${pkgver}"
+  nosetests --exclude test_integration_with_listener_ipv6 zeroconf/test.py
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:11:12
  Author: foutrelis
Revision: 749350

archrelease: copy trunk to community-staging-any

Added:
  python-litesata/repos/community-staging-any/
  python-litesata/repos/community-staging-any/PKGBUILD
(from rev 749348, python-litesata/trunk/PKGBUILD)

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

Copied: python-litesata/repos/community-staging-any/PKGBUILD (from rev 749348, 
python-litesata/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:11:12 UTC (rev 749350)
@@ -0,0 +1,35 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=litesata
+pkgname=python-$_pkgname
+pkgver=2020.08
+pkgrel=2
+pkgdesc='Small footprint and configurable SATA core'
+arch=('any')
+url="https://github.com/enjoy-digital/$_pkgname;
+license=('BSD')
+depends=('python-migen' 'python-litex')
+makedepends=('python-setuptools')
+# checkdepends=('python-pytest-runner') # missing litescope release
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('f83edde55719db976ace2ca066e5685773244fdab44c82dd4a91b98200dc3ba56f1cd0d66eee2e521b37655888f6a6da27e25fd71a2229be9864d463118ffbf0')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+#  python setup.py pytest
+}
+
+package() {
+  cd $_pkgname-$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-hypothesis-auto/trunk (PKGBUILD)

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:11:01
  Author: felixonmars
Revision: 749345

upgpkg: python-hypothesis-auto 1.1.4-2: Python 3.9 rebuild

Modified:
  python-hypothesis-auto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:10:54 UTC (rev 749344)
+++ PKGBUILD2020-11-10 05:11:01 UTC (rev 749345)
@@ -3,7 +3,7 @@
 pkgname=python-hypothesis-auto
 pkgver=1.1.4
 _commit=4ed588ab631d6c44c8959334a3425a8c0d207eff
-pkgrel=1
+pkgrel=2
 pkgdesc="Extends Hypothesis to add fully automatic testing of type annotated 
functions"
 url="https://github.com/timothycrosley/hypothesis-auto;
 license=('MIT')


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:10:46
  Author: felixonmars
Revision: 749343

archrelease: copy trunk to community-staging-any

Added:
  python-scripttest/repos/community-staging-any/
  python-scripttest/repos/community-staging-any/PKGBUILD
(from rev 749341, python-scripttest/trunk/PKGBUILD)

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

Copied: python-scripttest/repos/community-staging-any/PKGBUILD (from rev 
749341, python-scripttest/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:10:46 UTC (rev 749343)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: Simon Sapin 
+# Contributor: Kyle Keen 
+
+pkgname=python-scripttest
+pkgver=1.3.0
+pkgrel=5
+pkgdesc="Utilities to help with testing command line scripts"
+url="https://github.com/pypa/scripttest;
+license=('MIT')
+arch=('any')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/scripttest/archive/$pkgver.tar.gz;)
+sha512sums=('038bfb1726bff85b6e3675be51db829d3519b47665266f6ae1d3c5c6f4f06e7b16742262ca1ba240544e9bd39ae96c1be0bd5e8583736f72bb04241a1bb8acf6')
+
+build() {
+  cd "$srcdir"/scripttest-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/scripttest-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd scripttest-$pkgver
+  python3 setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:10:54
  Author: felixonmars
Revision: 749344

archrelease: copy trunk to community-staging-any

Added:
  python-geopy/repos/community-staging-any/
  python-geopy/repos/community-staging-any/PKGBUILD
(from rev 749343, python-geopy/trunk/PKGBUILD)

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

Copied: python-geopy/repos/community-staging-any/PKGBUILD (from rev 749343, 
python-geopy/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:10:54 UTC (rev 749344)
@@ -0,0 +1,45 @@
+# Maintainer: David Runge 
+
+_name=geopy
+pkgname=python-geopy
+pkgver=2.0.0
+pkgrel=2
+pkgdesc="Geocoding library for Python"
+arch=('any')
+url="https://github.com/geopy/geopy;
+license=('MIT')
+depends=('python-geographiclib')
+makedepends=('python-setuptools')
+checkdepends=('python-aiohttp' 'python-async_generator' 'python-mock'
+'python-pytest-aiohttp' 'python-pytest' 'python-pytz' 'python-requests')
+optdepends=('python-aiohttp: for geopy.adapters.AioHTTPAdapter'
+'python-requests: for geopy.adapters.RequestsAdapter')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz"{,.asc})
+sha512sums=('99411b42d8878736a1bd1de5b5eca4d037fea4d465bb8a689d9da99fb9f186dae32d59985ee9ae95eed1094edd7fa2af12e8c69cf63c8c6770aa1266f8de975d'
+'SKIP')
+validpgpkeys=('BE3D633AB6792715ECF34D742D3B9C1712FF84F7') # Kostya Esmukov 

+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  pytest -v
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 {AUTHORS,README.rst} -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:10:35
  Author: felixonmars
Revision: 749341

upgpkg: python-scripttest 1.3.0-5: Python 3.9 rebuild

Modified:
  python-scripttest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:10:11 UTC (rev 749340)
+++ PKGBUILD2020-11-10 05:10:35 UTC (rev 749341)
@@ -4,7 +4,7 @@
 
 pkgname=python-scripttest
 pkgver=1.3.0
-pkgrel=4
+pkgrel=5
 pkgdesc="Utilities to help with testing command line scripts"
 url="https://github.com/pypa/scripttest;
 license=('MIT')


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:10:11
  Author: foutrelis
Revision: 749340

archrelease: copy trunk to community-staging-any

Added:
  python-pysocks/repos/community-staging-any/
  python-pysocks/repos/community-staging-any/PKGBUILD
(from rev 749339, python-pysocks/trunk/PKGBUILD)

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

Copied: python-pysocks/repos/community-staging-any/PKGBUILD (from rev 749339, 
python-pysocks/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:10:11 UTC (rev 749340)
@@ -0,0 +1,71 @@
+# Maintainer: Felix Yan 
+# Contributor: Michael Schubert 
+
+pkgbase=python-pysocks
+pkgname=(python-pysocks python2-pysocks)
+pkgver=1.7.1
+_commit=f660e75d4844e64e4b162b0c01f8df8d866ee000
+pkgrel=2
+pkgdesc="SOCKS4, SOCKS5 or HTTP proxy (Anorov fork PySocks replaces socksipy)"
+arch=('any')
+license=('BSD')
+url="https://github.com/Anorov/PySocks;
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('lib32-glibc' 'python2-twisted' 'python2-tornado')
+source=("$pkgbase-$_commit.tar.gz::https://github.com/Anorov/PySocks/archive/$_commit.tar.gz;)
+sha512sums=('d5db8d55603758cecd0e4974729df437febcfabe8a80dcbfe6132d0ce5a23caeccfefff01bf918cdbb9f26db4cb795d26ed1f3c536c415b496e4ac1bd43e9240')
+
+prepare() {
+  mv PySocks-{$_commit,$pkgver}
+  cp -a PySocks-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/PySocks-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/PySocks-$pkgver-py2
+  python2 setup.py build
+}
+
+# Tests disabled as it requires external services to run
+check_disabled() {
+  cd "$srcdir"/PySocks-$pkgver-py2/test
+  python2 socks4server.py &
+  _SOCKS4SERVER=$!
+  python2 httpproxy.py &
+  _HTTPPROXY=$1
+
+  ./mocks start
+
+  sleep 1
+
+  python2 sockstest.py
+
+  cd "$srcdir"/PySocks-$pkgver/test
+  python sockstest.py
+
+  ./mocks shutdown
+
+  kill $_SOCKS4SERVER $_HTTPPROXY
+}
+
+package_python-pysocks() {
+  depends=('python')
+  provides=('python-socks')
+  replaces=('python-socks')
+
+  cd PySocks-$pkgver
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}
+
+package_python2-pysocks() {
+  depends=('python2')
+  provides=('python2-socks')
+  replaces=('python2-socks')
+
+  cd PySocks-$pkgver-py2
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:10:00
  Author: felixonmars
Revision: 749336

archrelease: copy trunk to community-staging-any

Added:
  python-fuzzywuzzy/repos/community-staging-any/
  python-fuzzywuzzy/repos/community-staging-any/PKGBUILD
(from rev 749335, python-fuzzywuzzy/trunk/PKGBUILD)

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

Copied: python-fuzzywuzzy/repos/community-staging-any/PKGBUILD (from rev 
749335, python-fuzzywuzzy/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:10:00 UTC (rev 749336)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+# Contributor: fenuks
+
+pkgname=python-fuzzywuzzy
+pkgver=0.18.0
+pkgrel=2
+pkgdesc="Fuzzy string matching like a boss"
+arch=("any")
+url="https://pypi.python.org/pypi/fuzzywuzzy;
+license=('GPL2')
+depends=('python')
+optdepends=('python-levenshtein: provides a 4-10x speedup in string matching')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-hypothesis' 'python-levenshtein' 
'python-pycodestyle')
+source=("https://github.com/seatgeek/fuzzywuzzy/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('26795bd6c319a8c789d62ecbe95e29a97711f0176d3beea04ce510981095f696')
+
+build() {
+  cd fuzzywuzzy-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd fuzzywuzzy-$pkgver
+  # https://github.com/seatgeek/fuzzywuzzy/issues/284
+  pytest --deselect test_fuzzywuzzy_pytest.py::test_process_warning
+}
+
+package() {
+  cd fuzzywuzzy-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+}


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:10:08
  Author: foutrelis
Revision: 749339

upgpkg: python-pysocks 1.7.1-2: Python 3.9 rebuild

Modified:
  python-pysocks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:10:06 UTC (rev 749338)
+++ PKGBUILD2020-11-10 05:10:08 UTC (rev 749339)
@@ -5,7 +5,7 @@
 pkgname=(python-pysocks python2-pysocks)
 pkgver=1.7.1
 _commit=f660e75d4844e64e4b162b0c01f8df8d866ee000
-pkgrel=1
+pkgrel=2
 pkgdesc="SOCKS4, SOCKS5 or HTTP proxy (Anorov fork PySocks replaces socksipy)"
 arch=('any')
 license=('BSD')


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:10:06
  Author: felixonmars
Revision: 749338

archrelease: copy trunk to community-staging-any

Added:
  python-liteeth/repos/community-staging-any/
  python-liteeth/repos/community-staging-any/PKGBUILD
(from rev 749336, python-liteeth/trunk/PKGBUILD)

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

Copied: python-liteeth/repos/community-staging-any/PKGBUILD (from rev 749336, 
python-liteeth/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:10:06 UTC (rev 749338)
@@ -0,0 +1,35 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=liteeth
+pkgname=python-$_pkgname
+pkgver=2020.08
+pkgrel=2
+pkgdesc='Small footprint and configurable Ethernet core'
+arch=('any')
+url="https://github.com/enjoy-digital/$_pkgname;
+license=('BSD')
+depends=('python-migen' 'python-litex')
+makedepends=('python-setuptools')
+#checkdepends=('python-pytest-runner') # broken env
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('6b7aacde76cc82217bc218152fbe9a9861c2decdb0ab6edeb277eb4ac1aac363f4eef4fdf407b74064d4387c44369182fecf55994fc3d88e18011e852513cfa6')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+#  python setup.py pytest
+}
+
+package() {
+  cd $_pkgname-$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-pysolr/trunk (PKGBUILD)

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:11:04
  Author: foutrelis
Revision: 749346

upgpkg: python-pysolr 3.9.0-2: Python 3.9 rebuild

Modified:
  python-pysolr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:11:01 UTC (rev 749345)
+++ PKGBUILD2020-11-10 05:11:04 UTC (rev 749346)
@@ -3,7 +3,7 @@
 _name=pysolr
 pkgname=python-pysolr
 pkgver=3.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Python Solr client"
 arch=('any')
 url="https://github.com/django-haystack/pysolr;


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:10:44
  Author: felixonmars
Revision: 749342

upgpkg: python-geopy 2.0.0-2: Python 3.9 rebuild

Modified:
  python-geopy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:10:35 UTC (rev 749341)
+++ PKGBUILD2020-11-10 05:10:44 UTC (rev 749342)
@@ -3,7 +3,7 @@
 _name=geopy
 pkgname=python-geopy
 pkgver=2.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Geocoding library for Python"
 arch=('any')
 url="https://github.com/geopy/geopy;


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:09:52
  Author: foutrelis
Revision: 749333

archrelease: copy trunk to community-staging-x86_64

Added:
  openshadinglanguage/repos/community-staging-x86_64/
  
openshadinglanguage/repos/community-staging-x86_64/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch
(from rev 749330, 
openshadinglanguage/trunk/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch)
  openshadinglanguage/repos/community-staging-x86_64/PKGBUILD
(from rev 749331, openshadinglanguage/trunk/PKGBUILD)

-+
 0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch |   85 ++
 PKGBUILD|   38 
 2 files changed, 123 insertions(+)

Copied: 
openshadinglanguage/repos/community-staging-x86_64/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch
 (from rev 749330, 
openshadinglanguage/trunk/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch)
===
--- 
community-staging-x86_64/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch
(rev 0)
+++ 
community-staging-x86_64/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch
2020-11-10 05:09:52 UTC (rev 749333)
@@ -0,0 +1,85 @@
+From 2f9093ed2aedc008ba6e0a0b3ba0ff1839d73ac1 Mon Sep 17 00:00:00 2001
+From: Christopher Kulla 
+Date: Thu, 12 Mar 2020 13:16:19 -0700
+Subject: [PATCH] Allow OSL to compile with LLVM 10.x (#1128)
+
+---
+ src/liboslexec/backendllvm.cpp |  4 
+ src/liboslexec/llvm_util.cpp   | 27 +--
+ 2 files changed, 25 insertions(+), 6 deletions(-)
+
+diff --git a/src/liboslexec/backendllvm.cpp b/src/liboslexec/backendllvm.cpp
+index 263d8cab..93e091b0 100644
+--- a/src/liboslexec/backendllvm.cpp
 b/src/liboslexec/backendllvm.cpp
+@@ -368,7 +368,11 @@ BackendLLVM::addCUDAVariable(const std::string& name, int 
size, int alignment,
+ 
+ ASSERT (g_var && "Unable to create GlobalVariable");
+ 
++#if OSL_LLVM_VERSION >= 100
++g_var->setAlignment  (llvm::MaybeAlign(alignment));
++#else
+ g_var->setAlignment  (alignment);
++#endif
+ g_var->setLinkage(llvm::GlobalValue::ExternalLinkage);
+ g_var->setVisibility (llvm::GlobalValue::DefaultVisibility);
+ g_var->setInitializer(constant);
+diff --git a/src/liboslexec/llvm_util.cpp b/src/liboslexec/llvm_util.cpp
+index 8fa915fe..dde2f1e6 100644
+--- a/src/liboslexec/llvm_util.cpp
 b/src/liboslexec/llvm_util.cpp
+@@ -1160,8 +1160,12 @@ LLVM_Util::op_return (llvm::Value *retval)
+ void
+ LLVM_Util::op_memset (llvm::Value *ptr, int val, int len, int align)
+ {
+-builder().CreateMemSet (ptr, builder().getInt8((unsigned char)val),
+-uint64_t(len), (unsigned)align);
++builder().CreateMemSet (ptr, builder().getInt8((unsigned char)val), 
uint64_t(len),
++#if OSL_LLVM_VERSION >= 100
++llvm::MaybeAlign(align));
++#else
++unsigned(align));
++#endif
+ }
+ 
+ 
+@@ -1169,8 +1173,12 @@ LLVM_Util::op_memset (llvm::Value *ptr, int val, int 
len, int align)
+ void
+ LLVM_Util::op_memset (llvm::Value *ptr, int val, llvm::Value *len, int align)
+ {
+-builder().CreateMemSet (ptr, builder().getInt8((unsigned char)val),
+-len, (unsigned)align);
++builder().CreateMemSet (ptr, builder().getInt8((unsigned char)val), len,
++#if OSL_LLVM_VERSION >= 100
++llvm::MaybeAlign(align));
++#else
++unsigned(align));
++#endif
+ }
+ 
+ 
+@@ -1187,7 +1195,10 @@ void
+ LLVM_Util::op_memcpy (llvm::Value *dst, int dstalign,
+   llvm::Value *src, int srcalign, int len)
+ {
+-#if OSL_LLVM_VERSION >= 70
++#if OSL_LLVM_VERSION >= 100
++builder().CreateMemCpy (dst, llvm::MaybeAlign(dstalign), src, 
llvm::MaybeAlign(srcalign),
++uint64_t(len));
++#elif OSL_LLVM_VERSION >= 70
+ builder().CreateMemCpy (dst, (unsigned)dstalign, src, (unsigned)srcalign,
+ uint64_t(len));
+ #else
+@@ -1588,7 +1599,11 @@ LLVM_Util::ptx_compile_group (llvm::Module* lib_module, 
const std::string& name,
+ llvm::raw_svector_ostream assembly_stream (assembly);
+ 
+ // TODO: Make sure rounding modes, etc., are set correctly
+-#if OSL_LLVM_VERSION >= 70
++#if OSL_LLVM_VERSION >= 100
++target_machine->addPassesToEmitFile (mod_pm, assembly_stream,
++ nullptr,  // FIXME: Correct?
++ llvm::CGFT_AssemblyFile);
++#elif OSL_LLVM_VERSION >= 70
+ target_machine->addPassesToEmitFile (mod_pm, assembly_stream,
+  nullptr,  // FIXME: Correct?
+  
llvm::TargetMachine::CGFT_AssemblyFile);

Copied: openshadinglanguage/repos/community-staging-x86_64/PKGBUILD (from rev 
749331, openshadinglanguage/trunk/PKGBUILD)

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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:09:52
  Author: foutrelis
Revision: 749332

archrelease: copy trunk to community-staging-any

Added:
  python-doit-py/repos/community-staging-any/
  python-doit-py/repos/community-staging-any/PKGBUILD
(from rev 749330, python-doit-py/trunk/PKGBUILD)

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

Copied: python-doit-py/repos/community-staging-any/PKGBUILD (from rev 749330, 
python-doit-py/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:09:52 UTC (rev 749332)
@@ -0,0 +1,43 @@
+# Maintainer: David Runge 
+
+_name=doit-py
+pkgname=python-doit-py
+pkgver=0.5.0
+pkgrel=2
+pkgdesc="doit tasks for python stuff"
+arch=('any')
+url="https://github.com/pydoit/doit-py;
+license=('MIT')
+depends=('python-configclass' 'python-doit')
+makedepends=('python-setuptools')
+checkdepends=('hunspell' 'hunspell-en_US' 'python-pyflakes' 'python-pytest')
+# pypi sdist is missing tests:
+# https://github.com/pydoit/doit-py/issues/4
+# 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pydoit/${_name}/archive/${pkgver}.tar.gz;)
+sha512sums=('f9e70be30f47b7251bdb479762dabe655be898f9fe37fc5ac6608110a82863a08002271620569745f9ec2f47c03529c044a6ea74244b8bb6438b3fbe7e4c28f7')
+b2sums=('092f21549d3c088baf8a96b8dd7575304d08c7ae7b0472e7a890159247422060af06c1cc14064cd608bd59e71788067c5374953b16f4511971bb3018c0245cd4')
+
+prepare() {
+  mv -v "$_name-$pkgver" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  pytest -v
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+  --optimize=1 \
+  --root="${pkgdir}"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 {CHANGES,README.rst} -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:09:41
  Author: foutrelis
Revision: 749327

upgpkg: python-pytest-helpers-namespace 2019.1.8-2: Python 3.9 rebuild

Modified:
  python-pytest-helpers-namespace/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:09:21 UTC (rev 749326)
+++ PKGBUILD2020-11-10 05:09:41 UTC (rev 749327)
@@ -3,7 +3,7 @@
 _name=pytest-helpers-namespace
 pkgname=python-pytest-helpers-namespace
 pkgver=2019.1.8
-pkgrel=1
+pkgrel=2
 pkgdesc="PyTest Helpers Namespace"
 arch=('any')
 url="https://github.com/saltstack/pytest-helpers-namespace;


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:09:50
  Author: felixonmars
Revision: 749330

upgpkg: python-fuzzywuzzy 0.18.0-2: Python 3.9 rebuild

Modified:
  python-fuzzywuzzy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:09:49 UTC (rev 749329)
+++ PKGBUILD2020-11-10 05:09:50 UTC (rev 749330)
@@ -3,7 +3,7 @@
 
 pkgname=python-fuzzywuzzy
 pkgver=0.18.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Fuzzy string matching like a boss"
 arch=("any")
 url="https://pypi.python.org/pypi/fuzzywuzzy;


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:09:49
  Author: foutrelis
Revision: 749328

upgpkg: openshadinglanguage 1.11.8.0-3: Python 3.9 rebuild

Modified:
  openshadinglanguage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:09:41 UTC (rev 749327)
+++ PKGBUILD2020-11-10 05:09:49 UTC (rev 749328)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=openshadinglanguage
 pkgver=1.11.8.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Advanced shading language for production GI renderers"
 arch=(x86_64)
 url="https://github.com/imageworks/OpenShadingLanguage;


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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:09:49
  Author: foutrelis
Revision: 749329

upgpkg: python-doit-py 0.5.0-2: Python 3.9 rebuild

Modified:
  python-doit-py/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:09:49 UTC (rev 749328)
+++ PKGBUILD2020-11-10 05:09:49 UTC (rev 749329)
@@ -3,7 +3,7 @@
 _name=doit-py
 pkgname=python-doit-py
 pkgver=0.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc="doit tasks for python stuff"
 arch=('any')
 url="https://github.com/pydoit/doit-py;


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:10:03
  Author: felixonmars
Revision: 749337

archrelease: copy trunk to community-staging-any

Added:
  python-dotenv/repos/community-staging-any/
  python-dotenv/repos/community-staging-any/PKGBUILD
(from rev 749335, python-dotenv/trunk/PKGBUILD)

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

Copied: python-dotenv/repos/community-staging-any/PKGBUILD (from rev 749335, 
python-dotenv/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:10:03 UTC (rev 749337)
@@ -0,0 +1,27 @@
+# Maintainer: Andrew Crerar 
+# Contributor: Kevin Azzam 
+# Contributor: David Runge 
+
+pkgname=python-dotenv
+pkgver=0.15.0
+pkgrel=2
+pkgdesc="Get and set values in your .env file in local and production servers"
+arch=('any')
+url="https://github.com/theskumar/python-dotenv/;
+license=('BSD')
+depends=('python-click')
+makedepends=('python-setuptools')
+optdepends=('ipython: ipython support')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/theskumar/python-dotenv/archive/v${pkgver}.tar.gz;)
+sha512sums=('0d9d16960281a9c40dc6d906e021381a29e9746ec915f860bcdc63ed526e6f8b619b2892a368f9870b08a9077dc735b2a22d285cf7e67007f5cd3d2ada3c030d')
+
+build() {
+cd "${pkgname}-${pkgver}"
+python setup.py build
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+install -Dm0644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


[arch-commits] Commit in python-pytest-helpers-namespace/repos (2 files)

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:09:51
  Author: foutrelis
Revision: 749331

archrelease: copy trunk to community-staging-any

Added:
  python-pytest-helpers-namespace/repos/community-staging-any/
  python-pytest-helpers-namespace/repos/community-staging-any/PKGBUILD
(from rev 749329, python-pytest-helpers-namespace/trunk/PKGBUILD)

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

Copied: python-pytest-helpers-namespace/repos/community-staging-any/PKGBUILD 
(from rev 749329, python-pytest-helpers-namespace/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2020-11-10 05:09:51 UTC (rev 749331)
@@ -0,0 +1,47 @@
+# Maintainer: David Runge 
+
+_name=pytest-helpers-namespace
+pkgname=python-pytest-helpers-namespace
+pkgver=2019.1.8
+pkgrel=2
+pkgdesc="PyTest Helpers Namespace"
+arch=('any')
+url="https://github.com/saltstack/pytest-helpers-namespace;
+license=('Apache')
+depends=('python-pytest')
+makedepends=('git' 'python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-forked')
+source=("git+https://github.com/saltstack/pytest-helpers-namespace#tag=v${pkgver}?signed;)
+sha512sums=('SKIP')
+validpgpkeys=('D2908FB3A823B0FAB3BD21F5BB36BF6584A298FF') # Pedro Algarvio 
(s0undt3ch) 
+
+prepare() {
+  mv -v "${_name}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  # installing into test location, so pytest can pick up the extension
+  mkdir -vp test_dir
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="test_dir"
+  local python_version="$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')"
+  export 
PYTHONPATH="test_dir/usr/lib/python${python_version}/site-packages/:${PYTHONPATH}"
+  pytest -v --forked
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 {AUTHORS,README}.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:09:56
  Author: felixonmars
Revision: 749335

upgpkg: python-liteeth 2020.08-2: Python 3.9 rebuild

Modified:
  python-liteeth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:09:53 UTC (rev 749334)
+++ PKGBUILD2020-11-10 05:09:56 UTC (rev 749335)
@@ -3,7 +3,7 @@
 _pkgname=liteeth
 pkgname=python-$_pkgname
 pkgver=2020.08
-pkgrel=1
+pkgrel=2
 pkgdesc='Small footprint and configurable Ethernet core'
 arch=('any')
 url="https://github.com/enjoy-digital/$_pkgname;
@@ -33,4 +33,3 @@
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Tuesday, November 10, 2020 @ 05:09:53
  Author: felixonmars
Revision: 749334

upgpkg: python-dotenv 0.15.0-2: Python 3.9 rebuild

Modified:
  python-dotenv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:09:52 UTC (rev 749333)
+++ PKGBUILD2020-11-10 05:09:53 UTC (rev 749334)
@@ -4,7 +4,7 @@
 
 pkgname=python-dotenv
 pkgver=0.15.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Get and set values in your .env file in local and production servers"
 arch=('any')
 url="https://github.com/theskumar/python-dotenv/;


  1   2   3   4   5   6   7   8   9   10   >