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

2021-12-07 Thread George Rawlinson via arch-commits
Date: Wednesday, December 8, 2021 @ 06:40:06
  Author: grawlinson
Revision: 1065627

archrelease: copy trunk to community-x86_64

Added:
  git-delta/repos/community-x86_64/PKGBUILD
(from rev 1065626, git-delta/trunk/PKGBUILD)
Deleted:
  git-delta/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 06:39:09 UTC (rev 1065626)
+++ PKGBUILD2021-12-08 06:40:06 UTC (rev 1065627)
@@ -1,56 +0,0 @@
-# Maintainer: George Rawlinson 
-# Maintainer: Caleb Maclennan 
-# Contributor:  Kr1ss $(echo \|sed s/\+/./g\;s/\-/@/)
-# Contributor : ccorn
-
-pkgname=git-delta
-_pkgname=delta
-pkgver=0.11.1
-pkgrel=1
-pkgdesc='Syntax-highlighting pager for git and diff output'
-arch=('x86_64')
-url="https://github.com/dandavison/delta";
-license=('MIT')
-depends=('libgit2')
-makedepends=('rust')
-checkdepends=('git')
-options=('!lto')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('fdcecd155335122db6a1171817687e2f07aadbc5b52ff50eb064dc2b6cc921b2635efe27d52e8786935a3f6abf9429247ffb438cce8364fd928e8277cb89fb39')
-b2sums=('97abc0044476625c1967071e5d5812eb1f7ecc3b1ec4a779c4c1ddeb0c157ebccade35446a1436a6842d72899f23ee51ff186852923bc0127f6618921673c649')
-
-prepare() {
-  cd "$_pkgname-$pkgver"
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd "$_pkgname-$pkgver"
-  cargo build --frozen --release --all-features
-}
-
-check() {
-  cd "$_pkgname-$pkgver"
-  # some tests hang for 60+ seconds, find out why
-  # took my machine ~ 470 seconds
-  cargo test --frozen --all-features
-}
-
-package() {
-  cd "$_pkgname-$pkgver"
-
-  # binary
-  install -vDm755 -t "$pkgdir/usr/bin" target/release/delta
-
-  # license
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
-
-  # shell auto-completions
-  install -vDm644 etc/completion/completion.bash \
-"$pkgdir/usr/share/bash-completion/completions/$_pkgname"
-  install -vDm644 etc/completion/completion.zsh \
-"$pkgdir/usr/share/zsh/site-functions/_$_pkgname"
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
-}

Copied: git-delta/repos/community-x86_64/PKGBUILD (from rev 1065626, 
git-delta/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-08 06:40:06 UTC (rev 1065627)
@@ -0,0 +1,56 @@
+# Maintainer: George Rawlinson 
+# Maintainer: Caleb Maclennan 
+# Contributor:  Kr1ss $(echo \|sed s/\+/./g\;s/\-/@/)
+# Contributor : ccorn
+
+pkgname=git-delta
+_pkgname=delta
+pkgver=0.11.2
+pkgrel=1
+pkgdesc='Syntax-highlighting pager for git and diff output'
+arch=('x86_64')
+url="https://github.com/dandavison/delta";
+license=('MIT')
+depends=('libgit2')
+makedepends=('rust')
+checkdepends=('git')
+options=('!lto')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('1f3dbce0673862e210aaff7fe6ecd98194603cb2900d569cfab0aae044d0ec1236bde767dfc699069238e4a2f855fbb27477d79cf47e4a9775dcd4033fd8cec3')
+b2sums=('498147343ecf6f6f37841ceaf22361c1acba270354ecae4beb04502d3d6f1eff6fdf02af8d633f6b4b32ce4cf3a8eb629105309d4d293b5dfbda26282b59ecca')
+
+prepare() {
+  cd "$_pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$_pkgname-$pkgver"
+  cargo build --frozen --release --all-features
+}
+
+check() {
+  cd "$_pkgname-$pkgver"
+  # some tests hang for 60+ seconds, find out why
+  # took my machine ~ 470 seconds
+  cargo test --frozen --all-features
+}
+
+package() {
+  cd "$_pkgname-$pkgver"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" target/release/delta
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+
+  # shell auto-completions
+  install -vDm644 etc/completion/completion.bash \
+"$pkgdir/usr/share/bash-completion/completions/$_pkgname"
+  install -vDm644 etc/completion/completion.zsh \
+"$pkgdir/usr/share/zsh/site-functions/_$_pkgname"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+}



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

2021-12-07 Thread George Rawlinson via arch-commits
Date: Wednesday, December 8, 2021 @ 06:39:09
  Author: grawlinson
Revision: 1065626

upgpkg: git-delta 0.11.2-1

New upstream release.

Modified:
  git-delta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 06:01:32 UTC (rev 1065625)
+++ PKGBUILD2021-12-08 06:39:09 UTC (rev 1065626)
@@ -5,7 +5,7 @@
 
 pkgname=git-delta
 _pkgname=delta
-pkgver=0.11.1
+pkgver=0.11.2
 pkgrel=1
 pkgdesc='Syntax-highlighting pager for git and diff output'
 arch=('x86_64')
@@ -16,8 +16,8 @@
 checkdepends=('git')
 options=('!lto')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('fdcecd155335122db6a1171817687e2f07aadbc5b52ff50eb064dc2b6cc921b2635efe27d52e8786935a3f6abf9429247ffb438cce8364fd928e8277cb89fb39')
-b2sums=('97abc0044476625c1967071e5d5812eb1f7ecc3b1ec4a779c4c1ddeb0c157ebccade35446a1436a6842d72899f23ee51ff186852923bc0127f6618921673c649')
+sha512sums=('1f3dbce0673862e210aaff7fe6ecd98194603cb2900d569cfab0aae044d0ec1236bde767dfc699069238e4a2f855fbb27477d79cf47e4a9775dcd4033fd8cec3')
+b2sums=('498147343ecf6f6f37841ceaf22361c1acba270354ecae4beb04502d3d6f1eff6fdf02af8d633f6b4b32ce4cf3a8eb629105309d4d293b5dfbda26282b59ecca')
 
 prepare() {
   cd "$_pkgname-$pkgver"



[arch-commits] Commit in python-shapely/repos/community-staging-x86_64 (3 files)

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 06:01:32
  Author: felixonmars
Revision: 1065625

archrelease: copy trunk to community-staging-x86_64

Added:
  python-shapely/repos/community-staging-x86_64/PKGBUILD
(from rev 1065624, python-shapely/trunk/PKGBUILD)
  python-shapely/repos/community-staging-x86_64/geos-3.9.patch
(from rev 1065624, python-shapely/trunk/geos-3.9.patch)
Deleted:
  python-shapely/repos/community-staging-x86_64/PKGBUILD

+
 PKGBUILD   |   88 ---
 geos-3.9.patch |   30 ++
 2 files changed, 76 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 06:01:22 UTC (rev 1065624)
+++ PKGBUILD2021-12-08 06:01:32 UTC (rev 1065625)
@@ -1,42 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: David Verelst 
-# Contributor: richli
-
-pkgname=python-shapely
-pkgver=1.7.1
-pkgrel=4
-pkgdesc="Manipulation and analysis of geometric objects in the Cartesian plane"
-arch=('x86_64')
-url="https://pypi.python.org/pypi/Shapely";
-license=('BSD')
-depends=('geos' 'python')
-optdepends=('python-numpy: for shapely.vectorized submodule')
-makedepends=('python-setuptools' 'python-packaging' 'python-numpy' 'cython')
-checkdepends=('python-pytest')
-source=("https://pypi.io/packages/source/S/Shapely/Shapely-${pkgver}.tar.gz";)
-sha512sums=('f5991a35692241ff48f7219edd88bdab7da5b9135c22d26ca530cbdb9160717fd88f2913a9da8ae53869c68955418c14ffd5d798df196639de63660226bd6412')
-
-prepare() {
-  rm -r Shapely-$pkgver/_vendor
-  sed -i 's/from _vendor.packaging./from packaging./' Shapely-$pkgver/setup.py
-}
-
-build() {
-  cd Shapely-$pkgver
-  python setup.py build
-}
-
-check() {
-  # TODO: make the hack less dirty...
-
-  cd Shapely-$pkgver
-  mv shapely shapely.bak
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.10:$PYTHONPATH" py.test
-  mv shapely.bak shapely
-}
-
-package() {
-  cd Shapely-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-shapely/repos/community-staging-x86_64/PKGBUILD (from rev 
1065624, python-shapely/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-08 06:01:32 UTC (rev 1065625)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: David Verelst 
+# Contributor: richli
+
+pkgname=python-shapely
+pkgver=1.7.1
+pkgrel=5
+pkgdesc="Manipulation and analysis of geometric objects in the Cartesian plane"
+arch=('x86_64')
+url="https://pypi.python.org/pypi/Shapely";
+license=('BSD')
+depends=('geos' 'python')
+optdepends=('python-numpy: for shapely.vectorized submodule')
+makedepends=('python-setuptools' 'python-packaging' 'python-numpy' 'cython')
+checkdepends=('python-pytest')
+source=("https://pypi.io/packages/source/S/Shapely/Shapely-${pkgver}.tar.gz";
+geos-3.9.patch)
+sha512sums=('f5991a35692241ff48f7219edd88bdab7da5b9135c22d26ca530cbdb9160717fd88f2913a9da8ae53869c68955418c14ffd5d798df196639de63660226bd6412'
+
'9cc2e1a8b1272451ccfde2af287cb4dc31811b67c02c3d94f235c039f99173dcd8e128a0a7c57a8c098b45290e4acc9d957914c6719c1c7076bb62ff2aac837d')
+
+prepare() {
+  cd Shapely-$pkgver
+  patch -Np1 -i ../geos-3.9.patch
+  rm -r _vendor
+  sed -i 's/from _vendor.packaging./from packaging./' setup.py
+}
+
+build() {
+  cd Shapely-$pkgver
+  python setup.py build
+}
+
+check() {
+  # TODO: make the hack less dirty...
+
+  cd Shapely-$pkgver
+  mv shapely shapely.bak
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.10:$PYTHONPATH" py.test
+  mv shapely.bak shapely
+}
+
+package() {
+  cd Shapely-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: python-shapely/repos/community-staging-x86_64/geos-3.9.patch (from rev 
1065624, python-shapely/trunk/geos-3.9.patch)
===
--- geos-3.9.patch  (rev 0)
+++ geos-3.9.patch  2021-12-08 06:01:32 UTC (rev 1065625)
@@ -0,0 +1,30 @@
+From 611a0b3b2047bf8a49db32dc4b30684a10f5b6eb Mon Sep 17 00:00:00 2001
+From: Mike Taves 
+Date: Mon, 14 Dec 2020 12:06:36 +1300
+Subject: [PATCH] Expand CI and tests to support GEOS 3.9.0beta2 (#1042)
+
+* Expand CI and tests to support GEOS 3.9.0beta2
+
+* Change build/install scripts to be CI agnostic
+
+* disable AppVeyor's ctest fail due to GEOS issue with simplify on MSVC
+
+* find_library() for Linux should use 'libgeos_c'
+---
+ tests/test_svg.py | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/tests/test_svg.py b/tests/test_svg.py
+index fcc2679..dac3e71 100644
+--- a/tests/test_svg.py
 b/tests/test_svg.py
+@@ -174,7 +174,8 @@ class SvgTestCase(unittest.TestCase):
+ self.assertSVG(GeometryCollection(

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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 06:01:22
  Author: felixonmars
Revision: 1065624

upgpkg: python-shapely 1.7.1-5: Python 3.10 rebuild

Modified:
  python-shapely/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 06:00:10 UTC (rev 1065623)
+++ PKGBUILD2021-12-08 06:01:22 UTC (rev 1065624)
@@ -4,7 +4,7 @@
 
 pkgname=python-shapely
 pkgver=1.7.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Manipulation and analysis of geometric objects in the Cartesian plane"
 arch=('x86_64')
 url="https://pypi.python.org/pypi/Shapely";



[arch-commits] Commit in python-shapely/trunk (PKGBUILD geos-3.9.patch)

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 06:00:10
  Author: foutrelis
Revision: 1065623

Add fix for geos 3.9

Added:
  python-shapely/trunk/geos-3.9.patch
Modified:
  python-shapely/trunk/PKGBUILD

+
 PKGBUILD   |   12 
 geos-3.9.patch |   30 ++
 2 files changed, 38 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 05:53:55 UTC (rev 1065622)
+++ PKGBUILD2021-12-08 06:00:10 UTC (rev 1065623)
@@ -13,12 +13,16 @@
 optdepends=('python-numpy: for shapely.vectorized submodule')
 makedepends=('python-setuptools' 'python-packaging' 'python-numpy' 'cython')
 checkdepends=('python-pytest')
-source=("https://pypi.io/packages/source/S/Shapely/Shapely-${pkgver}.tar.gz";)
-sha512sums=('f5991a35692241ff48f7219edd88bdab7da5b9135c22d26ca530cbdb9160717fd88f2913a9da8ae53869c68955418c14ffd5d798df196639de63660226bd6412')
+source=("https://pypi.io/packages/source/S/Shapely/Shapely-${pkgver}.tar.gz";
+geos-3.9.patch)
+sha512sums=('f5991a35692241ff48f7219edd88bdab7da5b9135c22d26ca530cbdb9160717fd88f2913a9da8ae53869c68955418c14ffd5d798df196639de63660226bd6412'
+
'9cc2e1a8b1272451ccfde2af287cb4dc31811b67c02c3d94f235c039f99173dcd8e128a0a7c57a8c098b45290e4acc9d957914c6719c1c7076bb62ff2aac837d')
 
 prepare() {
-  rm -r Shapely-$pkgver/_vendor
-  sed -i 's/from _vendor.packaging./from packaging./' Shapely-$pkgver/setup.py
+  cd Shapely-$pkgver
+  patch -Np1 -i ../geos-3.9.patch
+  rm -r _vendor
+  sed -i 's/from _vendor.packaging./from packaging./' setup.py
 }
 
 build() {

Added: geos-3.9.patch
===
--- geos-3.9.patch  (rev 0)
+++ geos-3.9.patch  2021-12-08 06:00:10 UTC (rev 1065623)
@@ -0,0 +1,30 @@
+From 611a0b3b2047bf8a49db32dc4b30684a10f5b6eb Mon Sep 17 00:00:00 2001
+From: Mike Taves 
+Date: Mon, 14 Dec 2020 12:06:36 +1300
+Subject: [PATCH] Expand CI and tests to support GEOS 3.9.0beta2 (#1042)
+
+* Expand CI and tests to support GEOS 3.9.0beta2
+
+* Change build/install scripts to be CI agnostic
+
+* disable AppVeyor's ctest fail due to GEOS issue with simplify on MSVC
+
+* find_library() for Linux should use 'libgeos_c'
+---
+ tests/test_svg.py | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/tests/test_svg.py b/tests/test_svg.py
+index fcc2679..dac3e71 100644
+--- a/tests/test_svg.py
 b/tests/test_svg.py
+@@ -174,7 +174,8 @@ class SvgTestCase(unittest.TestCase):
+ self.assertSVG(GeometryCollection(), '')
+ # Valid
+ self.assertSVG(
+-Point(7, 3).union(LineString([(4, 2), (8, 4)])),
++GeometryCollection(
++[Point(7, 3), LineString([(4, 2), (8, 4)])]),
+ ''
+ '

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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 05:53:55
  Author: felixonmars
Revision: 1065622

archrelease: copy trunk to community-staging-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 05:53:45 UTC (rev 1065621)
+++ PKGBUILD2021-12-08 05:53:55 UTC (rev 1065622)
@@ -1,35 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-xmlschema
-pkgver=1.2.5
-pkgrel=2
-pkgdesc="An XML Schema validator and decoder"
-url="https://github.com/sissaschool/xmlschema";
-license=('MIT')
-arch=('any')
-depends=('python-elementpath')
-makedepends=('python-pip')
-checkdepends=('python-lxml')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/sissaschool/xmlschema/archive/v$pkgver.tar.gz";)
-sha512sums=('086c0b1544b492807edd2b1ea0ac791d55d118834846efd57fbbfb6b7d5244529150ffa3c1074de85a7c030c6b33721f41743e9a1cd672e24e92ce0a3dfd662d')
-
-prepare() {
-  sed -i 's/~=/>=/' xmlschema-$pkgver/setup.py
-}
-
-build() {
-  cd xmlschema-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd xmlschema-$pkgver
-  PYTHONPATH="$PWD/build/lib" python -m unittest
-}
-
-package() {
-  cd xmlschema-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: python-xmlschema/repos/community-staging-any/PKGBUILD (from rev 
1065621, python-xmlschema/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-08 05:53:55 UTC (rev 1065622)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-xmlschema
+pkgver=1.9.0
+pkgrel=1
+pkgdesc="An XML Schema validator and decoder"
+url="https://github.com/sissaschool/xmlschema";
+license=('MIT')
+arch=('any')
+depends=('python-elementpath')
+makedepends=('python-pip')
+checkdepends=('python-lxml')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sissaschool/xmlschema/archive/v$pkgver.tar.gz";)
+sha512sums=('dc0ca98969e4ff480f5e89560174cea098f578ce8d2d09cac10af4c112380661d195ae2b36cc246a3bb813a130660e3e83ab3d17da193ea5665ee6e6d944d0d0')
+
+prepare() {
+  sed -i 's/~=/>=/' xmlschema-$pkgver/setup.py
+}
+
+build() {
+  cd xmlschema-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd xmlschema-$pkgver
+  PYTHONPATH="$PWD/build/lib" python -m unittest
+}
+
+package() {
+  cd xmlschema-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 05:53:45
  Author: felixonmars
Revision: 1065621

upgpkg: python-xmlschema 1.9.0-1: Python 3.10 rebuild

Modified:
  python-xmlschema/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 05:52:52 UTC (rev 1065620)
+++ PKGBUILD2021-12-08 05:53:45 UTC (rev 1065621)
@@ -2,7 +2,7 @@
 
 pkgname=python-xmlschema
 pkgver=1.9.0
-pkgrel=0
+pkgrel=1
 pkgdesc="An XML Schema validator and decoder"
 url="https://github.com/sissaschool/xmlschema";
 license=('MIT')



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 05:52:52
  Author: foutrelis
Revision: 1065620

Bump for Python 3.10

Modified:
  python-xmlschema/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 05:29:35 UTC (rev 1065619)
+++ PKGBUILD2021-12-08 05:52:52 UTC (rev 1065620)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-xmlschema
-pkgver=1.2.5
-pkgrel=2
+pkgver=1.9.0
+pkgrel=0
 pkgdesc="An XML Schema validator and decoder"
 url="https://github.com/sissaschool/xmlschema";
 license=('MIT')
@@ -11,7 +11,7 @@
 makedepends=('python-pip')
 checkdepends=('python-lxml')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sissaschool/xmlschema/archive/v$pkgver.tar.gz";)
-sha512sums=('086c0b1544b492807edd2b1ea0ac791d55d118834846efd57fbbfb6b7d5244529150ffa3c1074de85a7c030c6b33721f41743e9a1cd672e24e92ce0a3dfd662d')
+sha512sums=('dc0ca98969e4ff480f5e89560174cea098f578ce8d2d09cac10af4c112380661d195ae2b36cc246a3bb813a130660e3e83ab3d17da193ea5665ee6e6d944d0d0')
 
 prepare() {
   sed -i 's/~=/>=/' xmlschema-$pkgver/setup.py



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 05:29:35
  Author: felixonmars
Revision: 1065619

archrelease: copy trunk to community-staging-any

Added:
  python-pytest-black/repos/community-staging-any/PKGBUILD
(from rev 1065618, python-pytest-black/trunk/PKGBUILD)
Deleted:
  python-pytest-black/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 05:29:27 UTC (rev 1065618)
+++ PKGBUILD2021-12-08 05:29:35 UTC (rev 1065619)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-pytest-black
-pkgver=0.3.12
-pkgrel=4
-pkgdesc="A pytest plugin to enable format checking with black"
-arch=('any')
-license=('MIT')
-url="https://github.com/shopkeep/pytest-black/";
-depends=('python-black' 'python-pytest')
-makedepends=('python-setuptools-scm')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/shopkeep/pytest-black/archive/$pkgver.tar.gz";)
-sha512sums=('1576761c9a93e6a05d5f1d40200e228791a67ac33f437330940ccbb898121df22814a794858b36de9223d4cc45d58fcbefaa08c87275f36e04901cb4cd217760')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd pytest-black-$pkgver
-  python setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd pytest-black-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.10/site-packages:$PYTHONPATH:$PWD/tests"
 py.test
-}
-
-package() {
-  cd pytest-black-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: python-pytest-black/repos/community-staging-any/PKGBUILD (from rev 
1065618, python-pytest-black/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-08 05:29:35 UTC (rev 1065619)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pytest-black
+pkgver=0.3.12
+pkgrel=5
+pkgdesc="A pytest plugin to enable format checking with black"
+arch=('any')
+license=('MIT')
+url="https://github.com/shopkeep/pytest-black/";
+depends=('python-black' 'python-pytest')
+makedepends=('python-setuptools-scm')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/shopkeep/pytest-black/archive/$pkgver.tar.gz";
+
$pkgname-pytest6.patch::https://github.com/shopkeep/pytest-black/pull/53.patch)
+sha512sums=('1576761c9a93e6a05d5f1d40200e228791a67ac33f437330940ccbb898121df22814a794858b36de9223d4cc45d58fcbefaa08c87275f36e04901cb4cd217760'
+
'362176d305114dc1f6389144ab8feed5a1e48827bef4d07b241accfa5a257ba8189dbbe4c320ae458a47cd067541d53d2ae0b66688b5fcdd698f31ac3df62d19')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+prepare() {
+  cd pytest-black-$pkgver
+  patch -Np1 -i ../$pkgname-pytest6.patch
+}
+
+build() {
+  cd pytest-black-$pkgver
+  python setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd pytest-black-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.10/site-packages:$PYTHONPATH:$PWD/tests"
 py.test
+}
+
+package() {
+  cd pytest-black-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 05:29:27
  Author: felixonmars
Revision: 1065618

upgpkg: python-pytest-black 0.3.12-5: Python 3.10 rebuild

Modified:
  python-pytest-black/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 05:28:44 UTC (rev 1065617)
+++ PKGBUILD2021-12-08 05:29:27 UTC (rev 1065618)
@@ -2,7 +2,7 @@
 
 pkgname=python-pytest-black
 pkgver=0.3.12
-pkgrel=4
+pkgrel=5
 pkgdesc="A pytest plugin to enable format checking with black"
 arch=('any')
 license=('MIT')



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 05:28:44
  Author: foutrelis
Revision: 1065617

Fix tests with pytest 6

Modified:
  python-pytest-black/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 05:08:18 UTC (rev 1065616)
+++ PKGBUILD2021-12-08 05:28:44 UTC (rev 1065617)
@@ -9,11 +9,18 @@
 url="https://github.com/shopkeep/pytest-black/";
 depends=('python-black' 'python-pytest')
 makedepends=('python-setuptools-scm')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/shopkeep/pytest-black/archive/$pkgver.tar.gz";)
-sha512sums=('1576761c9a93e6a05d5f1d40200e228791a67ac33f437330940ccbb898121df22814a794858b36de9223d4cc45d58fcbefaa08c87275f36e04901cb4cd217760')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/shopkeep/pytest-black/archive/$pkgver.tar.gz";
+
$pkgname-pytest6.patch::https://github.com/shopkeep/pytest-black/pull/53.patch)
+sha512sums=('1576761c9a93e6a05d5f1d40200e228791a67ac33f437330940ccbb898121df22814a794858b36de9223d4cc45d58fcbefaa08c87275f36e04901cb4cd217760'
+
'362176d305114dc1f6389144ab8feed5a1e48827bef4d07b241accfa5a257ba8189dbbe4c320ae458a47cd067541d53d2ae0b66688b5fcdd698f31ac3df62d19')
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 
+prepare() {
+  cd pytest-black-$pkgver
+  patch -Np1 -i ../$pkgname-pytest6.patch
+}
+
 build() {
   cd pytest-black-$pkgver
   python setup.py build



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 05:08:18
  Author: felixonmars
Revision: 1065616

archrelease: copy trunk to community-staging-any

Added:
  python-pip-shims/repos/community-staging-any/PKGBUILD
(from rev 1065615, python-pip-shims/trunk/PKGBUILD)
Deleted:
  python-pip-shims/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 05:08:09 UTC (rev 1065615)
+++ PKGBUILD2021-12-08 05:08:18 UTC (rev 1065616)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-pip-shims
-pkgver=0.5.3
-pkgrel=4
-pkgdesc="Compatibility shims for pip versions 8 thru current"
-url="https://github.com/sarugaku/pip-shims";
-license=('ISC')
-arch=('any')
-depends=('python-pip' 'python-wheel' 'python-setuptools')
-checkdepends=('python-pytest-runner' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/sarugaku/pip-shims/archive/$pkgver.tar.gz";)
-sha512sums=('7a2b72d3483298ffeaa7ba24bdc7550e0a72ea3d373f43761afdcdc8399a518191191a2b4cc70aadfcaf1fa34e7843984c5e33ec32e4f1d10084f2497bfb61f7')
-
-build() {
-  cd pip-shims-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd pip-shims-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd pip-shims-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: python-pip-shims/repos/community-staging-any/PKGBUILD (from rev 
1065615, python-pip-shims/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-08 05:08:18 UTC (rev 1065616)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pip-shims
+pkgver=0.6.0
+pkgrel=1
+pkgdesc="Compatibility shims for pip versions 8 thru current"
+url="https://github.com/sarugaku/pip-shims";
+license=('ISC')
+arch=('any')
+depends=('python-pip' 'python-wheel' 'python-setuptools')
+checkdepends=('python-pytest-runner' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sarugaku/pip-shims/archive/$pkgver.tar.gz";)
+sha512sums=('af81ac58470ae083d56a0bab2687baf1f347cd42b644ba81e0e8d240d6579fa2799a266a9f84d948ac78f0db0227e7ab237c105df98d53c0e1f422ce67f7e117')
+
+build() {
+  cd pip-shims-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd pip-shims-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd pip-shims-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 05:08:09
  Author: felixonmars
Revision: 1065615

upgpkg: python-pip-shims 0.6.0-1: Python 3.10 rebuild

Modified:
  python-pip-shims/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 05:06:57 UTC (rev 1065614)
+++ PKGBUILD2021-12-08 05:08:09 UTC (rev 1065615)
@@ -2,7 +2,7 @@
 
 pkgname=python-pip-shims
 pkgver=0.6.0
-pkgrel=0
+pkgrel=1
 pkgdesc="Compatibility shims for pip versions 8 thru current"
 url="https://github.com/sarugaku/pip-shims";
 license=('ISC')



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 05:06:57
  Author: foutrelis
Revision: 1065614

Bump to fix tests

Modified:
  python-pip-shims/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 05:05:22 UTC (rev 1065613)
+++ PKGBUILD2021-12-08 05:06:57 UTC (rev 1065614)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-pip-shims
-pkgver=0.5.3
-pkgrel=4
+pkgver=0.6.0
+pkgrel=0
 pkgdesc="Compatibility shims for pip versions 8 thru current"
 url="https://github.com/sarugaku/pip-shims";
 license=('ISC')
@@ -10,7 +10,7 @@
 depends=('python-pip' 'python-wheel' 'python-setuptools')
 checkdepends=('python-pytest-runner' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sarugaku/pip-shims/archive/$pkgver.tar.gz";)
-sha512sums=('7a2b72d3483298ffeaa7ba24bdc7550e0a72ea3d373f43761afdcdc8399a518191191a2b4cc70aadfcaf1fa34e7843984c5e33ec32e4f1d10084f2497bfb61f7')
+sha512sums=('af81ac58470ae083d56a0bab2687baf1f347cd42b644ba81e0e8d240d6579fa2799a266a9f84d948ac78f0db0227e7ab237c105df98d53c0e1f422ce67f7e117')
 
 build() {
   cd pip-shims-$pkgver



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 05:05:22
  Author: felixonmars
Revision: 1065613

archrelease: copy trunk to community-staging-any

Added:
  python-pecan/repos/community-staging-any/PKGBUILD
(from rev 1065612, python-pecan/trunk/PKGBUILD)
  python-pecan/repos/community-staging-any/python310.patch
(from rev 1065612, python-pecan/trunk/python310.patch)
Deleted:
  python-pecan/repos/community-staging-any/PKGBUILD

-+
 PKGBUILD|   99 --
 python310.patch |   88 
 2 files changed, 141 insertions(+), 46 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 05:05:12 UTC (rev 1065612)
+++ PKGBUILD2021-12-08 05:05:22 UTC (rev 1065613)
@@ -1,46 +0,0 @@
-# Maintainer: Thore Bödecker 
-# Contributor: Tim Meusel 
-pkgname="python-pecan"
-_pkgname="${pkgname#python-}"
-pkgdesc='A WSGI object-dispatching web framework, designed to be lean and fast 
with few dependencies.'
-pkgver=1.4.0
-pkgrel=4
-arch=('any')
-url='https://github.com/pecan/pecan'
-license=('BSD')
-depends=('python' 'python-webob' 'python-mako' 'python-webtest' 'python-six'
- 'python-logutils')
-makedepends=('python' 'python-setuptools' 'python-sphinx' 'python-webob'
- 'python-mako' 'python-webtest' 'python-six' 'python-logutils')
-checkdepends=('python-virtualenv' 'python-jinja' 'gunicorn' 'python-mock'
-  'python-sqlalchemy' 'python-genshi' 'python-nine' 'uwsgi'
-  'python-pytest' 'python-kajiki')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/${pkgver}.tar.gz";)
-sha512sums=('3f7e072b294a732af6ff65621b1e10254260b9d42abd2bc38c3bff8e141b2ae4592567075813faf40227e7f0a3f2893c27270926fcfad18d1cdd9dc8a85bd14e')
-
-prepare(){
-  # fix manpage build
-  sed -i '/^dist = /d' "${srcdir}/${_pkgname}-${pkgver}/docs/source/conf.py"
-  sed -i "s/^version = release = .*\$/version = release = '${pkgver}'/" 
"${srcdir}/${_pkgname}-${pkgver}/docs/source/conf.py"
-}
-
-build() {
-  cd "${srcdir}/${_pkgname}-${pkgver}"
-  python ./setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgname}-${pkgver}"
-  # python setup.py test
-  py.test -vvv -s -ra --showlocals --noconftest pecan/tests/
-}
-
-package() {
-  cd "${srcdir}/${_pkgname}-${pkgver}"
-  python ./setup.py install --root="$pkgdir/" --optimize=1
-  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  cd docs
-  PYTHONPATH="${PWD}/../" make man
-  install -D -m644 "./build/man/pecan.1" 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}

Copied: python-pecan/repos/community-staging-any/PKGBUILD (from rev 1065612, 
python-pecan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-08 05:05:22 UTC (rev 1065613)
@@ -0,0 +1,53 @@
+# Maintainer: Thore Bödecker 
+# Contributor: Tim Meusel 
+pkgname="python-pecan"
+_pkgname="${pkgname#python-}"
+pkgdesc='A WSGI object-dispatching web framework, designed to be lean and fast 
with few dependencies.'
+pkgver=1.4.0
+pkgrel=5
+arch=('any')
+url='https://github.com/pecan/pecan'
+license=('BSD')
+depends=('python' 'python-webob' 'python-mako' 'python-webtest' 'python-six'
+ 'python-logutils')
+makedepends=('python' 'python-setuptools' 'python-sphinx' 'python-webob'
+ 'python-mako' 'python-webtest' 'python-six' 'python-logutils')
+checkdepends=('python-virtualenv' 'python-jinja' 'gunicorn' 'python-mock'
+  'python-sqlalchemy' 'python-genshi' 'python-nine' 'uwsgi'
+  'python-pytest' 'python-kajiki')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/${pkgver}.tar.gz";
+
${pkgname}-sqlalchemy-1.4.patch::https://github.com/pecan/pecan/commit/a520bd544c0b.patch
+python310.patch)
+sha512sums=('3f7e072b294a732af6ff65621b1e10254260b9d42abd2bc38c3bff8e141b2ae4592567075813faf40227e7f0a3f2893c27270926fcfad18d1cdd9dc8a85bd14e'
+
'aa71f0ae65d245afe6038f9765d557764cf8f80eb699e1b52fe71fb502d097f08ef638f11137b9a716f144de4077058a10fd0f2e57f82f8af79608cb63a0b99e'
+
'6e66a845d701aa63fadd67a8dd644956e7c444690a13fa0eafe6482e959c52318037c053c8fd8df503ffa293129d18858dc63fae6dc316ae3284c6e1753b5864')
+
+prepare(){
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+  patch -Np1 -i ../${pkgname}-sqlalchemy-1.4.patch
+  patch -Np1 -i ../python310.patch # https://github.com/pecan/pecan/pull/131
+  # fix manpage build
+  sed -i '/^dist = /d' docs/source/conf.py
+  sed -i "s/^version = release = .*\$/version = release = '${pkgver}'/" 
docs/source/conf.py
+}
+
+build() {
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+  python ./setup.py build
+}
+
+check() {
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+  # python setup.py test
+  py.test -vvv -s -ra --showlocals --noconftest pecan/tests/
+

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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 05:05:12
  Author: felixonmars
Revision: 1065612

upgpkg: python-pecan 1.4.0-5: Python 3.10 rebuild

Modified:
  python-pecan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 05:04:07 UTC (rev 1065611)
+++ PKGBUILD2021-12-08 05:05:12 UTC (rev 1065612)
@@ -4,7 +4,7 @@
 _pkgname="${pkgname#python-}"
 pkgdesc='A WSGI object-dispatching web framework, designed to be lean and fast 
with few dependencies.'
 pkgver=1.4.0
-pkgrel=4
+pkgrel=5
 arch=('any')
 url='https://github.com/pecan/pecan'
 license=('BSD')



[arch-commits] Commit in python-pecan/trunk (PKGBUILD python310.patch)

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 05:04:07
  Author: foutrelis
Revision: 1065611

Fix tests for Python 3.10

Added:
  python-pecan/trunk/python310.patch
Modified:
  python-pecan/trunk/PKGBUILD

-+
 PKGBUILD|   15 ++---
 python310.patch |   88 ++
 2 files changed, 99 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 04:38:50 UTC (rev 1065610)
+++ PKGBUILD2021-12-08 05:04:07 UTC (rev 1065611)
@@ -15,13 +15,20 @@
 checkdepends=('python-virtualenv' 'python-jinja' 'gunicorn' 'python-mock'
   'python-sqlalchemy' 'python-genshi' 'python-nine' 'uwsgi'
   'python-pytest' 'python-kajiki')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/${pkgver}.tar.gz";)
-sha512sums=('3f7e072b294a732af6ff65621b1e10254260b9d42abd2bc38c3bff8e141b2ae4592567075813faf40227e7f0a3f2893c27270926fcfad18d1cdd9dc8a85bd14e')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/${pkgver}.tar.gz";
+
${pkgname}-sqlalchemy-1.4.patch::https://github.com/pecan/pecan/commit/a520bd544c0b.patch
+python310.patch)
+sha512sums=('3f7e072b294a732af6ff65621b1e10254260b9d42abd2bc38c3bff8e141b2ae4592567075813faf40227e7f0a3f2893c27270926fcfad18d1cdd9dc8a85bd14e'
+
'aa71f0ae65d245afe6038f9765d557764cf8f80eb699e1b52fe71fb502d097f08ef638f11137b9a716f144de4077058a10fd0f2e57f82f8af79608cb63a0b99e'
+
'6e66a845d701aa63fadd67a8dd644956e7c444690a13fa0eafe6482e959c52318037c053c8fd8df503ffa293129d18858dc63fae6dc316ae3284c6e1753b5864')
 
 prepare(){
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+  patch -Np1 -i ../${pkgname}-sqlalchemy-1.4.patch
+  patch -Np1 -i ../python310.patch # https://github.com/pecan/pecan/pull/131
   # fix manpage build
-  sed -i '/^dist = /d' "${srcdir}/${_pkgname}-${pkgver}/docs/source/conf.py"
-  sed -i "s/^version = release = .*\$/version = release = '${pkgver}'/" 
"${srcdir}/${_pkgname}-${pkgver}/docs/source/conf.py"
+  sed -i '/^dist = /d' docs/source/conf.py
+  sed -i "s/^version = release = .*\$/version = release = '${pkgver}'/" 
docs/source/conf.py
 }
 
 build() {

Added: python310.patch
===
--- python310.patch (rev 0)
+++ python310.patch 2021-12-08 05:04:07 UTC (rev 1065611)
@@ -0,0 +1,88 @@
+From f189d0eafbaacc5b5093bb8854cd2068e22b6c08 Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Wed, 8 Dec 2021 07:01:16 +0200
+Subject: [PATCH] Fix tests to work on Python 3.10
+
+Python 3.10 adds the class name to the exception; adjust four tests
+affected by this change.
+
+Fixes: https://github.com/pecan/pecan/issues/130
+---
+ pecan/tests/test_base.py | 18 +-
+ pecan/tests/test_no_thread_locals.py | 20 ++--
+ 2 files changed, 27 insertions(+), 11 deletions(-)
+
+diff --git a/pecan/tests/test_base.py b/pecan/tests/test_base.py
+index 11d0c4d..62d691e 100644
+--- a/pecan/tests/test_base.py
 b/pecan/tests/test_base.py
+@@ -456,8 +456,12 @@ class TestControllerArguments(PecanTestCase):
+ assert type(ex) == TypeError
+ assert ex.args[0] in (
+ "index() takes exactly 2 arguments (1 given)",
+-"index() missing 1 required positional argument: 'id'"
+-)  # this messaging changed in Python 3.3
++"index() missing 1 required positional argument: 'id'",
++(
++"TestControllerArguments.app_..RootController."
++"index() missing 1 required positional argument: 'id'"
++),
++)  # this messaging changed in Python 3.3 and again in Python 3.10
+ 
+ def test_single_argument(self):
+ r = self.app_.get('/1')
+@@ -994,9 +998,13 @@ class TestControllerArguments(PecanTestCase):
+ except Exception as ex:
+ assert type(ex) == TypeError
+ assert ex.args[0] in (
+-"eater() takes at least 2 arguments (1 given)",
+-"eater() missing 1 required positional argument: 'id'"
+-)  # this messaging changed in Python 3.3
++"eater() takes exactly 2 arguments (1 given)",
++"eater() missing 1 required positional argument: 'id'",
++(
++"TestControllerArguments.app_..RootController."
++"eater() missing 1 required positional argument: 'id'"
++),
++)  # this messaging changed in Python 3.3 and again in Python 3.10
+ 
+ def test_one_remainder(self):
+ r = self.app_.get('/eater/1')
+diff --git a/pecan/tests/test_no_thread_locals.py 
b/pecan/tests/test_no_thread_locals.py
+index aa8e461..3fbcd88 100644
+--- a/pecan/tests/test_no_thread_locals.py
 b/pec

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

2021-12-07 Thread Chih-Hsuan Yen via arch-commits
Date: Wednesday, December 8, 2021 @ 04:38:50
  Author: yan12125
Revision: 1065610

archrelease: copy trunk to community-staging-any

Added:
  python-aiobotocore/repos/community-staging-any/PKGBUILD
(from rev 1065609, python-aiobotocore/trunk/PKGBUILD)
  python-aiobotocore/repos/community-staging-any/botocore-1.23.diff
(from rev 1065609, python-aiobotocore/trunk/botocore-1.23.diff)
Deleted:
  python-aiobotocore/repos/community-staging-any/PKGBUILD
  python-aiobotocore/repos/community-staging-any/botocore-1.23.diff

+
 PKGBUILD   |  106 +--
 botocore-1.23.diff |   42 ++--
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 04:37:14 UTC (rev 1065609)
+++ PKGBUILD2021-12-08 04:38:50 UTC (rev 1065610)
@@ -1,53 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aiobotocore
-_pkgname=aiobotocore
-# https://github.com/aio-libs/aiobotocore/releases
-pkgver=2.0.1
-pkgrel=2
-pkgdesc='asyncio support for botocore library using aiohttp'
-arch=(any)
-url='https://github.com/aio-libs/aiobotocore'
-license=(Apache)
-depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
-makedepends=(python-setuptools)
-checkdepends=(python-moto python-pytest python-pytest-asyncio
-  # moto optdepends
-  python-docker python-yaml python-flask python-flask-cors)
-source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz";
-"botocore-1.23.diff")
-sha256sums=('20da488ef99b4f296274a5012145f85887041e4e2c64e33eb3c2d6e17bf919fc'
-'67d9e250f2a0b6345be7b24ccf02dabf1d6ccae07b3b4183a113789b1f89d9d5')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  # From 
https://github.com/aio-libs/aiobotocore/issues/905#issuecomment-980524777
-  patch -Np1 -i ../botocore-1.23.diff
-
-  # Disable dependency pinning
-  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
-  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
-  diff -u setup.py{.orig,} || true
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  export PYTHONPATH="$PWD"
-  # test_lambda uses moto.awslambda, which requires a running Docker service
-  # See: https://github.com/spulec/moto/issues/3276
-  pytest -m moto tests \
-  --ignore=tests/test_patches.py \
-  --ignore=tests/test_lambda.py
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aiobotocore/repos/community-staging-any/PKGBUILD (from rev 
1065609, python-aiobotocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-08 04:38:50 UTC (rev 1065610)
@@ -0,0 +1,53 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aiobotocore
+_pkgname=aiobotocore
+# https://github.com/aio-libs/aiobotocore/releases
+pkgver=2.0.1
+pkgrel=3
+pkgdesc='asyncio support for botocore library using aiohttp'
+arch=(any)
+url='https://github.com/aio-libs/aiobotocore'
+license=(Apache)
+depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
+makedepends=(python-setuptools)
+checkdepends=(python-moto python-pytest python-pytest-asyncio
+  # moto optdepends
+  python-docker python-yaml python-flask python-flask-cors)
+source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz";
+"botocore-1.23.diff")
+sha256sums=('20da488ef99b4f296274a5012145f85887041e4e2c64e33eb3c2d6e17bf919fc'
+'67d9e250f2a0b6345be7b24ccf02dabf1d6ccae07b3b4183a113789b1f89d9d5')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  # From 
https://github.com/aio-libs/aiobotocore/issues/905#issuecomment-980524777
+  patch -Np1 -i ../botocore-1.23.diff
+
+  # Disable dependency pinning
+  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
+  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
+  diff -u setup.py{.orig,} || true
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  export PYTHONPATH="$PWD"
+  # test_lambda uses moto.awslambda, which requires a running Docker service
+  # See: https://github.com/spulec/moto/issues/3276
+  pytest -m moto tests \
+  --ignore=tests/test_patches.py \
+  --ignore=tests/test_lambda.py
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Deleted: botocore-1.23.diff
===
--- botocore-1.23.diff  2021-12-08 04:37:14 UTC (rev 1065609)
+++ botocore-1.23.diff  2021-12-08 04:38:50 UTC (rev 1065610)
@@ -1,21 +0,0 @@
-diff --git a/aiobotocore/client.py b/aio

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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 04:37:14
  Author: felixonmars
Revision: 1065609

archrelease: copy trunk to community-staging-x86_64

Added:
  python-occ-core/repos/community-staging-x86_64/
  python-occ-core/repos/community-staging-x86_64/PKGBUILD
(from rev 1065608, python-occ-core/trunk/PKGBUILD)

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

Copied: python-occ-core/repos/community-staging-x86_64/PKGBUILD (from rev 
1065608, python-occ-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-08 04:37:14 UTC (rev 1065609)
@@ -0,0 +1,44 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=pythonocc-core
+pkgname=python-${_pkgname#python}
+pkgver=7.5.1.r90.g141c53f7
+_commit=141c53f716ca4c138a6ddee2ce6ed1d3c28944e8
+pkgrel=1
+pkgdesc='Python package for 3D CAD/BIM/PLM/CAM'
+arch=('x86_64')
+url='https://github.com/tpaviot/pythonocc-core'
+license=('LGPL3')
+depends=('python' 'opencascade' 'libxmu' 'libxi')
+# rapidjson appears to be unused but an opencascade
+# header that references it gets dragged in somehow
+makedepends=('cmake' 'swig' 'rapidjson' 'git')
+#source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+source=("git+https://github.com/tpaviot/pythonocc-core#commit=$_commit";)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd $_pkgname-$pkgver
+  git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  mv $_pkgname $_pkgname-$pkgver
+  mkdir $_pkgname-$pkgver/build
+}
+
+build() {
+  cd $_pkgname-$pkgver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+
+  make
+}
+
+package() {
+  cd $_pkgname-$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+}



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 04:37:06
  Author: felixonmars
Revision: 1065608

upgpkg: python-occ-core 7.5.1.r90.g141c53f7-1: Python 3.10 rebuild

Modified:
  python-occ-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 04:36:28 UTC (rev 1065607)
+++ PKGBUILD2021-12-08 04:37:06 UTC (rev 1065608)
@@ -4,7 +4,7 @@
 pkgname=python-${_pkgname#python}
 pkgver=7.5.1.r90.g141c53f7
 _commit=141c53f716ca4c138a6ddee2ce6ed1d3c28944e8
-pkgrel=0
+pkgrel=1
 pkgdesc='Python package for 3D CAD/BIM/PLM/CAM'
 arch=('x86_64')
 url='https://github.com/tpaviot/pythonocc-core'



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

2021-12-07 Thread Chih-Hsuan Yen via arch-commits
Date: Wednesday, December 8, 2021 @ 04:36:28
  Author: yan12125
Revision: 1065607

upgpkg: python-aiobotocore 2.0.1-3; manually rebuilding for Python 3.10

As I cannot update the package in [community] after I rebuild it for 
[community-staging] via https://rebuilds.foutrelis.com/

Modified:
  python-aiobotocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 04:26:14 UTC (rev 1065606)
+++ PKGBUILD2021-12-08 04:36:28 UTC (rev 1065607)
@@ -4,7 +4,7 @@
 _pkgname=aiobotocore
 # https://github.com/aio-libs/aiobotocore/releases
 pkgver=2.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc='asyncio support for botocore library using aiohttp'
 arch=(any)
 url='https://github.com/aio-libs/aiobotocore'



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 04:26:14
  Author: foutrelis
Revision: 1065606

Bump for opencascade 7.5.3 support

Modified:
  python-occ-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 04:20:22 UTC (rev 1065605)
+++ PKGBUILD2021-12-08 04:26:14 UTC (rev 1065606)
@@ -2,9 +2,9 @@
 
 _pkgname=pythonocc-core
 pkgname=python-${_pkgname#python}
-pkgver=7.4.1.r16.gfcf4e6ec
-_commit=fcf4e6ecf8518bbfb5fb7e4c55f9e79bd319eaa7
-pkgrel=2
+pkgver=7.5.1.r90.g141c53f7
+_commit=141c53f716ca4c138a6ddee2ce6ed1d3c28944e8
+pkgrel=0
 pkgdesc='Python package for 3D CAD/BIM/PLM/CAM'
 arch=('x86_64')
 url='https://github.com/tpaviot/pythonocc-core'



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 04:20:22
  Author: felixonmars
Revision: 1065605

archrelease: copy trunk to community-staging-x86_64

Added:
  python-matplotlib/repos/community-staging-x86_64/PKGBUILD
(from rev 1065604, python-matplotlib/trunk/PKGBUILD)
  python-matplotlib/repos/community-staging-x86_64/freetype.patch
(from rev 1065604, python-matplotlib/trunk/freetype.patch)
Deleted:
  python-matplotlib/repos/community-staging-x86_64/PKGBUILD
  python-matplotlib/repos/community-staging-x86_64/freetype.patch

+
 PKGBUILD   |  179 +++---
 freetype.patch |  258 +++
 2 files changed, 219 insertions(+), 218 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 04:20:12 UTC (rev 1065604)
+++ PKGBUILD2021-12-08 04:20:22 UTC (rev 1065605)
@@ -1,89 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Bruno Pagani 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Stefan Husmann 
-# Contributor: Angel 'angvp' Velasquez 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=python-matplotlib
-pkgver=3.5.0
-pkgrel=2
-pkgdesc="A python plotting library, making publication quality plots"
-arch=(x86_64)
-url="https://matplotlib.org";
-license=(custom)
-depends=(freetype2 python-cycler python-dateutil python-fonttools 
python-kiwisolver python-numpy
- python-packaging python-pillow python-pyparsing qhull)
-optdepends=('tk: Tk{Agg,Cairo} backends'
-'pyside2: alternative for Qt5{Agg,Cairo} backends'
-'pyside6: alternative for Qt6{Agg,Cairo} backends'
-'python-pyqt5: Qt5{Agg,Cairo} backends'
-'python-pyqt6: Qt6{Agg,Cairo} backends'
-'python-gobject: for GTK{3,4}{Agg,Cairo} backend'
-'python-wxpython: WX{Agg,Cairo} backend'
-'python-cairo: {GTK{3,4},Qt{5,6},Tk,WX}Cairo backends'
-'python-cairocffi: alternative for Cairo backends'
-'python-tornado: WebAgg backend'
-'ffmpeg: for saving movies'
-'imagemagick: for saving animated gifs'
-'ghostscript: usetex dependencies'
-'texlive-bin: usetex dependencies'
-'texlive-latexextra: usetex usage with pdflatex'
-'python-certifi: https support')
-makedepends=(git python-setuptools-scm-git-archive python-certifi)
-checkdepends=(python-pytest python-pytest-xdist python-pytest-runner 
python-pytest-rerunfailures xorg-server-xvfb
-  texlive-bin texlive-core texlive-latexextra texlive-pictures 
ghostscript inkscape ffmpeg imagemagick
-  gtk4 python-cairo python-cairocffi python-gobject python-pyqt5 
pyside2 python-pyqt6 pyside6 python-tornado python-wxpython tk
-  jupyter-nbconvert jupyter-nbformat python-ipykernel 
python-pandas python-pikepdf python-pytz)
-_tag=7a9ee717ecfa24ae4029abac0c7939076c2b0eb7 # git rev-parse v${pkgver}
-_ftver=2.11.0
-source=(git+https://github.com/matplotlib/matplotlib.git#tag=${_tag}?signed
-
https://github.com/QuLogic/mpl-images/archive/v${pkgver}rc1-with-freetype-${_ftver}/mpl-images-${pkgver}rc1-ft${_ftver}.tar.gz
-freetype.patch)
-b2sums=(SKIP
-
29e87a2dd2fc37c3d33e7e0463ca02b468953abe896ac658a6764e78f61a56bb486f5fec51403b2bda726031c5352b4270049256ac8f630eef56ffb3071b870a
-
514324b3e17e832d5199eaa6592c05ca662b1164ddc95f16ea076d6a1063b06e6a8fa4eac7740e5f73afbcc9d17244c5cc41373d5787f62cd58eab10249302c9)
-validpgpkeys=(23CAB59E3332F94D26BEF0378D86E7FAE5EB0C10) # Elliott Sales de 
Andrade 
-
-prepare() {
-  cd matplotlib
-  # Fix SCM detected version
-  rm -r .git
-  echo "Version: ${pkgver}" > PKG-INFO
-  # Use system freetype and qhull
-  sed -e 's|#system_freetype = False|system_freetype = True|' -e 
's|#system_qhull = False|system_qhull = True|' mplsetup.cfg.template > 
mplsetup.cfg
-  patch -p1 < ../freetype.patch # From Fedora/upstream
-  # Install tests for check()
-  sed -i 's|#tests = False|tests = True|' mplsetup.cfg
-  # Use appropriate baseline images for tests
-  cp lib/matplotlib/tests/baseline_images/test_image/uint16.tif .
-  for _module in matplotlib mpl_toolkits
-  do
-rm -r lib/${_module}/tests/baseline_images/test*
-mv ../mpl-images-${pkgver}rc1-with-freetype-${_ftver}/${_module}/* 
lib/${_module}/tests/baseline_images/
-  done
-  # https://github.com/QuLogic/mpl-images/issues/1
-  cp uint16.tif lib/matplotlib/tests/baseline_images/test_image/
-}
-
-build() {
-  cd matplotlib
-  python setup.py build
-}
-
-check() {
-  cd matplotlib
-  python -m venv --system-site-packages test-env
-  test-env/bin/python setup.py install --skip-build
-  # https://github.com/matplotlib/matplotlib/issues/21654
-  xvfb-run -a -s "-screen 0 640x480x24" \
-test-env/bin/python -m pytest -ra -n auto -v --color=yes --pyargs 
matplotlib mpl_toolkits.tests -k 'not test_ipynb'
-}
-
-package() {
-  cd matplotlib
-

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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 04:20:12
  Author: felixonmars
Revision: 1065604

upgpkg: python-matplotlib 3.5.0-3: Python 3.10 rebuild

Modified:
  python-matplotlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 04:15:08 UTC (rev 1065603)
+++ PKGBUILD2021-12-08 04:20:12 UTC (rev 1065604)
@@ -7,7 +7,7 @@
 
 pkgname=python-matplotlib
 pkgver=3.5.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org";



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 04:15:08
  Author: foutrelis
Revision: 1065603

Ignore test_pcolornearestunits failure

It needs the bundled freetype version to pass.

Modified:
  python-matplotlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 04:00:47 UTC (rev 1065602)
+++ PKGBUILD2021-12-08 04:15:08 UTC (rev 1065603)
@@ -75,9 +75,10 @@
   cd matplotlib
   python -m venv --system-site-packages test-env
   test-env/bin/python setup.py install --skip-build
-  # https://github.com/matplotlib/matplotlib/issues/21654
+  # test_ipynb: https://github.com/matplotlib/matplotlib/issues/21654
+  # test_pcolornearestunits: 
https://github.com/matplotlib/matplotlib/issues/21271
   xvfb-run -a -s "-screen 0 640x480x24" \
-test-env/bin/python -m pytest -ra -n auto -v --color=yes --pyargs 
matplotlib mpl_toolkits.tests -k 'not test_ipynb'
+test-env/bin/python -m pytest -ra -n auto -v --color=yes --pyargs 
matplotlib mpl_toolkits.tests -k 'not test_ipynb and not 
test_pcolornearestunits'
 }
 
 package() {



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 04:00:47
  Author: foutrelis
Revision: 1065602

archrelease: copy trunk to community-staging-any

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

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

Copied: python-magnumclient/repos/community-staging-any/PKGBUILD (from rev 
1065601, python-magnumclient/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-12-08 04:00:47 UTC (rev 1065602)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgname=python-magnumclient
+pkgver=3.5.0
+pkgrel=2
+pkgdesc="Client library for Magnum API"
+arch=('any')
+url="https://docs.openstack.org/python-magnumclient/latest/";
+license=('Apache')
+depends=('python-pbr' 'python-babel' 'python-keystoneauth1' 'python-stevedore' 
'python-requests'
+ 'python-oslo-i18n' 'python-oslo-log' 'python-oslo-serialization' 
'python-oslo-utils'
+ 'python-os-client-config' 'python-osc-lib' 'python-prettytable' 
'python-cryptography'
+ 'python-debtcollector')
+checkdepends=('python-openstackclient' 'python-oslotest' 'python-osprofiler')
+source=("https://github.com/openstack/python-magnumclient/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
+sha512sums=('8d99e539b1393826ecf66dd36ff292cbb994f70f41c8caa546074384f223902a70ce7ec6855b3211728d99fa0c4333e9ba4fd625aac3e6ef4b4540fad86137d5')
+
+export PBR_VERSION=$pkgver
+
+build() {
+  cd python-magnumclient-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd python-magnumclient-$pkgver
+  stestr run
+}
+
+package() {
+  cd python-magnumclient-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 04:00:44
  Author: foutrelis
Revision: 1065601

upgpkg: python-magnumclient 3.5.0-2: Python 3.10 rebuild

Modified:
  python-magnumclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 03:45:07 UTC (rev 1065600)
+++ PKGBUILD2021-12-08 04:00:44 UTC (rev 1065601)
@@ -3,7 +3,7 @@
 
 pkgname=python-magnumclient
 pkgver=3.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Client library for Magnum API"
 arch=('any')
 url="https://docs.openstack.org/python-magnumclient/latest/";



[arch-commits] Commit in python-aws-xray-sdk/repos/community-staging-any (3 files)

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 03:45:07
  Author: felixonmars
Revision: 1065600

archrelease: copy trunk to community-staging-any

Added:
  python-aws-xray-sdk/repos/community-staging-any/PKGBUILD
(from rev 1065599, python-aws-xray-sdk/trunk/PKGBUILD)
  python-aws-xray-sdk/repos/community-staging-any/python310.diff
(from rev 1065599, python-aws-xray-sdk/trunk/python310.diff)
Deleted:
  python-aws-xray-sdk/repos/community-staging-any/PKGBUILD

+
 PKGBUILD   |  125 +++
 python310.diff |   36 +++
 2 files changed, 99 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 03:44:57 UTC (rev 1065599)
+++ PKGBUILD2021-12-08 03:45:07 UTC (rev 1065600)
@@ -1,62 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-# Contributor: Guillaume Horel 
-
-pkgname=python-aws-xray-sdk
-_pkgname=aws-xray-sdk-python
-pkgver=2.8.0
-pkgrel=3
-pkgdesc='AWS X-Ray SDK for Python'
-arch=(any)
-url='https://github.com/aws/aws-xray-sdk-python'
-license=(Apache)
-# XXX: move setuptools back to makedepends in the next version
-# https://github.com/aws/aws-xray-sdk-python/pull/306
-makedepends=()
-depends=(python python-botocore python-future python-wrapt python-setuptools)
-checkdepends=(python-flask-sqlalchemy python-pynamodb python-pytest 
python-aiohttp
-  python-pytest-aiohttp python-testing.postgresql python-psycopg2
-  python-pg8000 python-requests python-aiobotocore python-bottle
-  python-webtest python-django-fake-model python-mock 
python-sqlalchemy)
-# Not using PyPI source tarball as it does not include tests
-source=("https://github.com/aws/aws-xray-sdk-python/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha256sums=('3f94ee35d8e34022939153dcc6d5bd8bce1428ee4811f0ee4713e40dae8b22dd')
-
-prepare() {
-  cd $_pkgname-$pkgver
-  # The 'database_version' field relies on a private member in pg8000 [1], 
which is removed in pg8000 1.21 [2]
-  # 
https://github.com/aws/aws-xray-sdk-python/blob/2.8.0/aws_xray_sdk/ext/pg8000/patch.py#L27
-  # 
https://github.com/tlocke/pg8000/commit/fa382a2da52c004fa9b98b242e855132d3fd6d23#diff-2d43fca8e06901904747dfab40d9a7a698ff03fab4c9ba1c01a8ce04105d537eL799
-  sed -i "/sql\['database_version'\]/d" tests/ext/pg8000/test_pg8000.py
-
-  # top-level `get_session` is removed by default since aiobotocore 2.0.0
-  # https://github.com/aio-libs/aiobotocore/releases/tag/2.0.0
-  sed -i -e "s/import aiobotocore$/import aiobotocore.session/g" \
- -e "s/aiobotocore\.get_session/aiobotocore.session.get_session/g" 
tests/ext/aiobotocore/test_aiobotocore.py
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  # See setenv= in upstream tox.ini
-  export DJANGO_SETTINGS_MODULE=tests.ext.django.app.settings
-  export AWS_SECRET_ACCESS_KEY=fake_key
-  export AWS_ACCESS_KEY_ID=fake_id
-
-  # the test suite for pymysql uses testing.mysqld, which is not
-  # compatible with MariaDB
-  # https://github.com/tk0miya/testing.mysqld/issues/3
-  # Tests in test_sqlalchemy_core_2.py need sqlalchemy >= 1.4 [1]
-  # https://github.com/aws/aws-xray-sdk-python/pull/289
-  pytest -v tests --ignore tests/ext/pymysql \
-  --ignore tests/ext/sqlalchemy_core/test_sqlalchemy_core_2.py
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aws-xray-sdk/repos/community-staging-any/PKGBUILD (from rev 
1065599, python-aws-xray-sdk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-08 03:45:07 UTC (rev 1065600)
@@ -0,0 +1,63 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Guillaume Horel 
+
+pkgname=python-aws-xray-sdk
+_pkgname=aws-xray-sdk-python
+pkgver=2.8.0
+pkgrel=4
+pkgdesc='AWS X-Ray SDK for Python'
+arch=(any)
+url='https://github.com/aws/aws-xray-sdk-python'
+license=(Apache)
+# XXX: move setuptools back to makedepends in the next version
+# https://github.com/aws/aws-xray-sdk-python/pull/306
+makedepends=()
+depends=(python python-botocore python-future python-wrapt python-setuptools)
+checkdepends=(python-flask-sqlalchemy python-pynamodb python-pytest 
python-aiohttp
+  python-pytest-aiohttp python-testing.postgresql python-psycopg2
+  python-pg8000 python-requests python-aiobotocore python-bottle
+  python-webtest python-django-fake-model python-mock 
python-sqlalchemy)
+# Not using PyPI source tarball as it does not include tests
+source=("https://github.com/aws/aws-xray-sdk-python/archive/$pkgver/$pkgname-$pkgver.tar.gz";
+"python310.diff")
+sha256sums=('3f94ee35d8e34022939153dcc6d5bd8bce1428ee4811f0ee4713e40dae8b22dd'
+'11784ed0d9b9f89bf1cc43a6d97d8488672b74e3419e121be1a50f09e409ad71')
+
+prepare(

[arch-commits] Commit in python-aws-xray-sdk/trunk (PKGBUILD)

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 03:44:57
  Author: felixonmars
Revision: 1065599

upgpkg: python-aws-xray-sdk 2.8.0-4: Python 3.10 rebuild

Modified:
  python-aws-xray-sdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 03:38:23 UTC (rev 1065598)
+++ PKGBUILD2021-12-08 03:44:57 UTC (rev 1065599)
@@ -4,7 +4,7 @@
 pkgname=python-aws-xray-sdk
 _pkgname=aws-xray-sdk-python
 pkgver=2.8.0
-pkgrel=3
+pkgrel=4
 pkgdesc='AWS X-Ray SDK for Python'
 arch=(any)
 url='https://github.com/aws/aws-xray-sdk-python'



[arch-commits] Commit in python-aws-xray-sdk/trunk (PKGBUILD python310.diff)

2021-12-07 Thread Chih-Hsuan Yen via arch-commits
Date: Wednesday, December 8, 2021 @ 03:38:23
  Author: yan12125
Revision: 1065598

python-aws-xray-sdk: fix for Python 3.10

And re-enable sqlalchemy tests now that community/python-sqlalchemy is updated

Added:
  python-aws-xray-sdk/trunk/python310.diff
Modified:
  python-aws-xray-sdk/trunk/PKGBUILD

+
 PKGBUILD   |   13 +++--
 python310.diff |   36 
 2 files changed, 43 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 03:23:18 UTC (rev 1065597)
+++ PKGBUILD2021-12-08 03:38:23 UTC (rev 1065598)
@@ -18,8 +18,10 @@
   python-pg8000 python-requests python-aiobotocore python-bottle
   python-webtest python-django-fake-model python-mock 
python-sqlalchemy)
 # Not using PyPI source tarball as it does not include tests
-source=("https://github.com/aws/aws-xray-sdk-python/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha256sums=('3f94ee35d8e34022939153dcc6d5bd8bce1428ee4811f0ee4713e40dae8b22dd')
+source=("https://github.com/aws/aws-xray-sdk-python/archive/$pkgver/$pkgname-$pkgver.tar.gz";
+"python310.diff")
+sha256sums=('3f94ee35d8e34022939153dcc6d5bd8bce1428ee4811f0ee4713e40dae8b22dd'
+'11784ed0d9b9f89bf1cc43a6d97d8488672b74e3419e121be1a50f09e409ad71')
 
 prepare() {
   cd $_pkgname-$pkgver
@@ -32,6 +34,8 @@
   # https://github.com/aio-libs/aiobotocore/releases/tag/2.0.0
   sed -i -e "s/import aiobotocore$/import aiobotocore.session/g" \
  -e "s/aiobotocore\.get_session/aiobotocore.session.get_session/g" 
tests/ext/aiobotocore/test_aiobotocore.py
+
+  patch -Np1 -i ../python310.diff
 }
 
 build() {
@@ -50,10 +54,7 @@
   # the test suite for pymysql uses testing.mysqld, which is not
   # compatible with MariaDB
   # https://github.com/tk0miya/testing.mysqld/issues/3
-  # Tests in test_sqlalchemy_core_2.py need sqlalchemy >= 1.4 [1]
-  # https://github.com/aws/aws-xray-sdk-python/pull/289
-  pytest -v tests --ignore tests/ext/pymysql \
-  --ignore tests/ext/sqlalchemy_core/test_sqlalchemy_core_2.py
+  pytest -v tests --ignore tests/ext/pymysql
 }
 
 package() {

Added: python310.diff
===
--- python310.diff  (rev 0)
+++ python310.diff  2021-12-08 03:38:23 UTC (rev 1065598)
@@ -0,0 +1,36 @@
+diff --git a/tests/ext/aiohttp/test_middleware.py 
b/tests/ext/aiohttp/test_middleware.py
+index c8b2333..4f8cac6 100644
+--- a/tests/ext/aiohttp/test_middleware.py
 b/tests/ext/aiohttp/test_middleware.py
+@@ -279,8 +279,7 @@ async def test_concurrent(test_client, loop, recorder):
+ 
+ await asyncio.wait([get_delay(), get_delay(), get_delay(),
+ get_delay(), get_delay(), get_delay(),
+-get_delay(), get_delay(), get_delay()],
+-   loop=loop)
++get_delay(), get_delay(), get_delay()])
+ 
+ # Ensure all ID's are different
+ ids = [item.id for item in recorder.emitter.local]
+diff --git a/tests/test_async_local_storage.py 
b/tests/test_async_local_storage.py
+index b43cc0e..4b13ffd 100644
+--- a/tests/test_async_local_storage.py
 b/tests/test_async_local_storage.py
+@@ -19,7 +19,7 @@ def test_localstorage_isolation(loop):
+ random_int = random.random()
+ local_storage.randint = random_int
+ 
+-await asyncio.sleep(0.0, loop=loop)
++await asyncio.sleep(0.0)
+ 
+ current_random_int = local_storage.randint
+ assert random_int == current_random_int
+@@ -30,7 +30,7 @@ def test_localstorage_isolation(loop):
+ 
+ # Run loads of concurrent tasks
+ results = loop.run_until_complete(
+-asyncio.wait([_test() for _ in range(0, 100)], loop=loop)
++asyncio.wait([_test() for _ in range(0, 100)])
+ )
+ results = [item.result() for item in results[0]]
+ 



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 03:23:18
  Author: felixonmars
Revision: 1065597

archrelease: copy trunk to community-staging-any

Added:
  python-aiobotocore/repos/community-staging-any/PKGBUILD
(from rev 1065596, python-aiobotocore/trunk/PKGBUILD)
  python-aiobotocore/repos/community-staging-any/botocore-1.23.diff
(from rev 1065596, python-aiobotocore/trunk/botocore-1.23.diff)
Deleted:
  python-aiobotocore/repos/community-staging-any/PKGBUILD

+
 PKGBUILD   |  101 ++-
 botocore-1.23.diff |   21 ++
 2 files changed, 74 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 03:23:06 UTC (rev 1065596)
+++ PKGBUILD2021-12-08 03:23:18 UTC (rev 1065597)
@@ -1,48 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aiobotocore
-_pkgname=aiobotocore
-# https://github.com/aio-libs/aiobotocore/releases
-pkgver=2.0.0
-pkgrel=2
-pkgdesc='asyncio support for botocore library using aiohttp'
-arch=(any)
-url='https://github.com/aio-libs/aiobotocore'
-license=(Apache)
-depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
-makedepends=(python-setuptools)
-checkdepends=(python-moto python-pytest python-pytest-asyncio
-  # moto optdepends
-  python-docker python-yaml python-flask python-flask-cors)
-source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha256sums=('be7758c3f4a7d4b922e71cbedb7e6a73dd3d795b95b177201a5bd557062016da')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  # Disable dependency pinning
-  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
-  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
-  diff -u setup.py{.orig,} || true
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  export PYTHONPATH="$PWD"
-  # test_lambda uses moto.awslambda, which requires a running Docker service
-  # See: https://github.com/spulec/moto/issues/3276
-  pytest -m moto tests \
-  --ignore=tests/test_patches.py \
-  --ignore=tests/test_lambda.py
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aiobotocore/repos/community-staging-any/PKGBUILD (from rev 
1065596, python-aiobotocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-08 03:23:18 UTC (rev 1065597)
@@ -0,0 +1,53 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aiobotocore
+_pkgname=aiobotocore
+# https://github.com/aio-libs/aiobotocore/releases
+pkgver=2.0.1
+pkgrel=2
+pkgdesc='asyncio support for botocore library using aiohttp'
+arch=(any)
+url='https://github.com/aio-libs/aiobotocore'
+license=(Apache)
+depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
+makedepends=(python-setuptools)
+checkdepends=(python-moto python-pytest python-pytest-asyncio
+  # moto optdepends
+  python-docker python-yaml python-flask python-flask-cors)
+source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz";
+"botocore-1.23.diff")
+sha256sums=('20da488ef99b4f296274a5012145f85887041e4e2c64e33eb3c2d6e17bf919fc'
+'67d9e250f2a0b6345be7b24ccf02dabf1d6ccae07b3b4183a113789b1f89d9d5')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  # From 
https://github.com/aio-libs/aiobotocore/issues/905#issuecomment-980524777
+  patch -Np1 -i ../botocore-1.23.diff
+
+  # Disable dependency pinning
+  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
+  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
+  diff -u setup.py{.orig,} || true
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  export PYTHONPATH="$PWD"
+  # test_lambda uses moto.awslambda, which requires a running Docker service
+  # See: https://github.com/spulec/moto/issues/3276
+  pytest -m moto tests \
+  --ignore=tests/test_patches.py \
+  --ignore=tests/test_lambda.py
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Copied: python-aiobotocore/repos/community-staging-any/botocore-1.23.diff (from 
rev 1065596, python-aiobotocore/trunk/botocore-1.23.diff)
===
--- botocore-1.23.diff  (rev 0)
+++ botocore-1.23.diff  2021-12-08 03:23:18 UTC (rev 1065597)
@@ -0,0 +1,21 @@
+diff --git a/aiobotocore/client.py b/aiobotocore/client.py
+index 5dee865..13cf364 100644
+--- a/aiobotocore/client.py
 b/aiobotocore/client.py
+@@ -28,6 +28,8 @@ class AioClientCreator(ClientCreator):
+ service_name = first_non_none_

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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 03:23:06
  Author: felixonmars
Revision: 1065596

upgpkg: python-aiobotocore 2.0.1-2: Python 3.10 rebuild

Modified:
  python-aiobotocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 03:15:58 UTC (rev 1065595)
+++ PKGBUILD2021-12-08 03:23:06 UTC (rev 1065596)
@@ -4,7 +4,7 @@
 _pkgname=aiobotocore
 # https://github.com/aio-libs/aiobotocore/releases
 pkgver=2.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc='asyncio support for botocore library using aiohttp'
 arch=(any)
 url='https://github.com/aio-libs/aiobotocore'



[arch-commits] Commit in python-aiobotocore/repos/community-any (3 files)

2021-12-07 Thread Chih-Hsuan Yen via arch-commits
Date: Wednesday, December 8, 2021 @ 03:15:58
  Author: yan12125
Revision: 1065595

archrelease: copy trunk to community-any

Added:
  python-aiobotocore/repos/community-any/PKGBUILD
(from rev 1065594, python-aiobotocore/trunk/PKGBUILD)
  python-aiobotocore/repos/community-any/botocore-1.23.diff
(from rev 1065594, python-aiobotocore/trunk/botocore-1.23.diff)
Deleted:
  python-aiobotocore/repos/community-any/PKGBUILD

+
 PKGBUILD   |  101 ++-
 botocore-1.23.diff |   21 ++
 2 files changed, 74 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 03:15:41 UTC (rev 1065594)
+++ PKGBUILD2021-12-08 03:15:58 UTC (rev 1065595)
@@ -1,48 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aiobotocore
-_pkgname=aiobotocore
-# https://github.com/aio-libs/aiobotocore/releases
-pkgver=2.0.0
-pkgrel=1
-pkgdesc='asyncio support for botocore library using aiohttp'
-arch=(any)
-url='https://github.com/aio-libs/aiobotocore'
-license=(Apache)
-depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
-makedepends=(python-setuptools)
-checkdepends=(python-moto python-pytest python-pytest-asyncio
-  # moto optdepends
-  python-docker python-yaml python-flask python-flask-cors)
-source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha256sums=('be7758c3f4a7d4b922e71cbedb7e6a73dd3d795b95b177201a5bd557062016da')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  # Disable dependency pinning
-  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
-  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
-  diff -u setup.py{.orig,} || true
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  export PYTHONPATH="$PWD"
-  # test_lambda uses moto.awslambda, which requires a running Docker service
-  # See: https://github.com/spulec/moto/issues/3276
-  pytest -m moto tests \
-  --ignore=tests/test_patches.py \
-  --ignore=tests/test_lambda.py
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aiobotocore/repos/community-any/PKGBUILD (from rev 1065594, 
python-aiobotocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-08 03:15:58 UTC (rev 1065595)
@@ -0,0 +1,53 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aiobotocore
+_pkgname=aiobotocore
+# https://github.com/aio-libs/aiobotocore/releases
+pkgver=2.0.1
+pkgrel=1
+pkgdesc='asyncio support for botocore library using aiohttp'
+arch=(any)
+url='https://github.com/aio-libs/aiobotocore'
+license=(Apache)
+depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
+makedepends=(python-setuptools)
+checkdepends=(python-moto python-pytest python-pytest-asyncio
+  # moto optdepends
+  python-docker python-yaml python-flask python-flask-cors)
+source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz";
+"botocore-1.23.diff")
+sha256sums=('20da488ef99b4f296274a5012145f85887041e4e2c64e33eb3c2d6e17bf919fc'
+'67d9e250f2a0b6345be7b24ccf02dabf1d6ccae07b3b4183a113789b1f89d9d5')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  # From 
https://github.com/aio-libs/aiobotocore/issues/905#issuecomment-980524777
+  patch -Np1 -i ../botocore-1.23.diff
+
+  # Disable dependency pinning
+  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
+  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
+  diff -u setup.py{.orig,} || true
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  export PYTHONPATH="$PWD"
+  # test_lambda uses moto.awslambda, which requires a running Docker service
+  # See: https://github.com/spulec/moto/issues/3276
+  pytest -m moto tests \
+  --ignore=tests/test_patches.py \
+  --ignore=tests/test_lambda.py
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Copied: python-aiobotocore/repos/community-any/botocore-1.23.diff (from rev 
1065594, python-aiobotocore/trunk/botocore-1.23.diff)
===
--- botocore-1.23.diff  (rev 0)
+++ botocore-1.23.diff  2021-12-08 03:15:58 UTC (rev 1065595)
@@ -0,0 +1,21 @@
+diff --git a/aiobotocore/client.py b/aiobotocore/client.py
+index 5dee865..13cf364 100644
+--- a/aiobotocore/client.py
 b/aiobotocore/client.py
+@@ -28,6 +28,8 @@ class AioClientCreator(ClientCreator):
+ service_name = first_non_none_response(responses, 
default=service_name)
+   

[arch-commits] Commit in python-aiobotocore/trunk (PKGBUILD botocore-1.23.diff)

2021-12-07 Thread Chih-Hsuan Yen via arch-commits
Date: Wednesday, December 8, 2021 @ 03:15:41
  Author: yan12125
Revision: 1065594

upgpkg: python-aiobotocore 2.0.1-1; add a fix for botocore 1.23

Ref: https://github.com/aio-libs/aiobotocore/issues/905#issuecomment-980524777

Added:
  python-aiobotocore/trunk/botocore-1.23.diff
Modified:
  python-aiobotocore/trunk/PKGBUILD

+
 PKGBUILD   |   13 +
 botocore-1.23.diff |   21 +
 2 files changed, 30 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 02:56:26 UTC (rev 1065593)
+++ PKGBUILD2021-12-08 03:15:41 UTC (rev 1065594)
@@ -3,8 +3,8 @@
 pkgname=python-aiobotocore
 _pkgname=aiobotocore
 # https://github.com/aio-libs/aiobotocore/releases
-pkgver=2.0.0
-pkgrel=2
+pkgver=2.0.1
+pkgrel=1
 pkgdesc='asyncio support for botocore library using aiohttp'
 arch=(any)
 url='https://github.com/aio-libs/aiobotocore'
@@ -14,12 +14,17 @@
 checkdepends=(python-moto python-pytest python-pytest-asyncio
   # moto optdepends
   python-docker python-yaml python-flask python-flask-cors)
-source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha256sums=('be7758c3f4a7d4b922e71cbedb7e6a73dd3d795b95b177201a5bd557062016da')
+source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz";
+"botocore-1.23.diff")
+sha256sums=('20da488ef99b4f296274a5012145f85887041e4e2c64e33eb3c2d6e17bf919fc'
+'67d9e250f2a0b6345be7b24ccf02dabf1d6ccae07b3b4183a113789b1f89d9d5')
 
 prepare() {
   cd $_pkgname-$pkgver
 
+  # From 
https://github.com/aio-libs/aiobotocore/issues/905#issuecomment-980524777
+  patch -Np1 -i ../botocore-1.23.diff
+
   # Disable dependency pinning
   # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
   sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py

Added: botocore-1.23.diff
===
--- botocore-1.23.diff  (rev 0)
+++ botocore-1.23.diff  2021-12-08 03:15:41 UTC (rev 1065594)
@@ -0,0 +1,21 @@
+diff --git a/aiobotocore/client.py b/aiobotocore/client.py
+index 5dee865..13cf364 100644
+--- a/aiobotocore/client.py
 b/aiobotocore/client.py
+@@ -28,6 +28,8 @@ class AioClientCreator(ClientCreator):
+ service_name = first_non_none_response(responses, 
default=service_name)
+ service_model = self._load_service_model(service_name, api_version)
+ cls = await self._create_client_class(service_name, service_model)
++region_name, client_config = self._normalize_fips_region(
++region_name, client_config)
+ endpoint_bridge = ClientEndpointBridge(
+ self._endpoint_resolver, scoped_config, client_config,
+ service_signing_name=service_model.metadata.get('signingName'))
+@@ -42,7 +44,6 @@ class AioClientCreator(ClientCreator):
+ self._register_endpoint_discovery(
+ service_client, endpoint_url, client_config
+ )
+-self._register_lazy_block_unknown_fips_pseudo_regions(service_client)
+ return service_client
+ 
+ async def _create_client_class(self, service_name, service_model):



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 02:56:26
  Author: foutrelis
Revision: 1065593

archrelease: copy trunk to community-staging-any

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

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

Copied: python-geopandas/repos/community-staging-any/PKGBUILD (from rev 
1065592, python-geopandas/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-12-08 02:56:26 UTC (rev 1065593)
@@ -0,0 +1,45 @@
+# Maintainer: Bruno Pagani 
+
+_pkg=geopandas
+pkgname=python-${_pkg}
+pkgver=0.10.2
+pkgrel=2
+pkgdesc="Python tools for geographic data"
+arch=(any)
+url="https://geopandas.org";
+license=(BSD)
+depends=(
+python-fiona
+python-numpy
+python-pandas
+python-pyproj
+python-shapely
+)
+optdepends=(
+'python-rtree: spatial access methods'
+'python-psycopg2: PostGIS access'
+'python-sqlalchemy: other geodatabase access'
+'python-geopy: geocoding'
+'python-matplotlib: plotting'
+#'python-mapclassify: plotting'
+)
+makedepends=(python-setuptools)
+checkdepends=(python-pytest python-psycopg2 python-sqlalchemy python-geopy 
python-matplotlib python-scipy) #python-mapclassify
+source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+sha256sums=('efbf47e70732e25c3727222019c92b39b2e0a66ebe4fe379fbe1aa43a2a871db')
+
+build() {
+  cd ${_pkg}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${_pkg}-${pkgver}
+  PYTHONPATH="${PWD}"/build/lib/ pytest
+}
+
+package() {
+  cd ${_pkg}-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" --skip-build 
--optimize=1
+  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 02:56:23
  Author: foutrelis
Revision: 1065592

upgpkg: python-geopandas 0.10.2-2: Python 3.10 rebuild

Modified:
  python-geopandas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 02:54:29 UTC (rev 1065591)
+++ PKGBUILD2021-12-08 02:56:23 UTC (rev 1065592)
@@ -3,7 +3,7 @@
 _pkg=geopandas
 pkgname=python-${_pkg}
 pkgver=0.10.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Python tools for geographic data"
 arch=(any)
 url="https://geopandas.org";



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 02:54:29
  Author: foutrelis
Revision: 1065591

archrelease: copy trunk to community-staging-x86_64

Added:
  python-fiona/repos/community-staging-x86_64/PKGBUILD
(from rev 1065590, python-fiona/trunk/PKGBUILD)
Deleted:
  python-fiona/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 02:54:25 UTC (rev 1065590)
+++ PKGBUILD2021-12-08 02:54:29 UTC (rev 1065591)
@@ -1,48 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-_pkg=Fiona
-pkgname=python-${_pkg,,}
-pkgver=1.8.20
-pkgrel=4
-pkgdesc="Read and write geographic data files"
-arch=(x86_64)
-url="https://github.com/Toblerity/Fiona";
-license=(BSD)
-depends=(
-gdal
-python-attrs
-python-certifi
-python-click
-python-click-plugins
-python-cligj
-python-munch
-python-six
-)
-optdepends=(
-'python-shapely: fio-calc functionnality'
-'python-boto3: s3 support'
-)
-makedepends=(cython python-setuptools)
-checkdepends=(python-pytest python-boto3 python-pytz python-shapely)
-source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
-sha256sums=('a70502d2857b82f749c09cb0dea3726787747933a2a1599b5ab787d74e3c143b')
-
-build() {
-  cd ${_pkg}-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd ${_pkg}-${pkgver}
-  mv fiona{,.bak} # Avoid non-working local import
-  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
-  # Currently they are 67 failing tests but no time to investigate
-  PYTHONPATH="${PWD}"/build/lib.linux-${CARCH}-${python_version}/ pytest -m 
"not wheel" || echo "Warning: failed tests"
-  mv fiona{.bak,}
-}
-
-package() {
-  cd ${_pkg}-${pkgver}
-  python setup.py install --prefix=/usr --root="${pkgdir}" --skip-build 
--optimize=1
-  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: python-fiona/repos/community-staging-x86_64/PKGBUILD (from rev 1065590, 
python-fiona/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-08 02:54:29 UTC (rev 1065591)
@@ -0,0 +1,51 @@
+# Maintainer: Bruno Pagani 
+
+_pkg=Fiona
+pkgname=python-${_pkg,,}
+pkgver=1.8.20
+pkgrel=5
+pkgdesc="Read and write geographic data files"
+arch=(x86_64)
+url="https://github.com/Toblerity/Fiona";
+license=(BSD)
+depends=(
+gdal
+python-attrs
+python-certifi
+python-click
+python-click-plugins
+python-cligj
+python-munch
+python-six
+)
+optdepends=(
+'python-shapely: fio-calc functionnality'
+'python-boto3: s3 support'
+)
+makedepends=(cython python-setuptools)
+checkdepends=(python-pytest python-boto3 python-pytz python-shapely)
+#source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+# need sources generated with newer cython than the one used in pypi sources
+# https://github.com/Toblerity/Fiona/issues/1043
+source=(https://github.com/Toblerity/Fiona/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('9db20c25cd5657e12cf2b60bdd33954064ca31b7048b605885d34b390f898018')
+
+build() {
+  cd ${_pkg}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${_pkg}-${pkgver}
+  mv fiona{,.bak} # Avoid non-working local import
+  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
+  # Currently they are 67 failing tests but no time to investigate
+  PYTHONPATH="${PWD}"/build/lib.linux-${CARCH}-${python_version}/ pytest -m 
"not wheel" || echo "Warning: failed tests"
+  mv fiona{.bak,}
+}
+
+package() {
+  cd ${_pkg}-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" --skip-build 
--optimize=1
+  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 02:54:25
  Author: foutrelis
Revision: 1065590

upgpkg: python-fiona 1.8.20-5: fix runtime with Python 3.10

Due to the PyPI sources being compiled with older Cython, we were
getting the following error:

  ImportError: /usr/lib/python3.10/site-packages/fiona/
  ogrext.cpython-310-x86_64-linux-gnu.so: undefined symbol: _PyGen_Send

Modified:
  python-fiona/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 02:33:50 UTC (rev 1065589)
+++ PKGBUILD2021-12-08 02:54:25 UTC (rev 1065590)
@@ -3,7 +3,7 @@
 _pkg=Fiona
 pkgname=python-${_pkg,,}
 pkgver=1.8.20
-pkgrel=4
+pkgrel=5
 pkgdesc="Read and write geographic data files"
 arch=(x86_64)
 url="https://github.com/Toblerity/Fiona";
@@ -24,8 +24,11 @@
 )
 makedepends=(cython python-setuptools)
 checkdepends=(python-pytest python-boto3 python-pytz python-shapely)
-source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
-sha256sums=('a70502d2857b82f749c09cb0dea3726787747933a2a1599b5ab787d74e3c143b')
+#source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+# need sources generated with newer cython than the one used in pypi sources
+# https://github.com/Toblerity/Fiona/issues/1043
+source=(https://github.com/Toblerity/Fiona/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('9db20c25cd5657e12cf2b60bdd33954064ca31b7048b605885d34b390f898018')
 
 build() {
   cd ${_pkg}-${pkgver}



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 02:33:50
  Author: felixonmars
Revision: 1065589

archrelease: copy trunk to community-staging-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 02:33:42 UTC (rev 1065588)
+++ PKGBUILD2021-12-08 02:33:50 UTC (rev 1065589)
@@ -1,47 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=edalize
-pkgname=python-$_pkgname
-pkgver=0.2.5
-pkgrel=2
-pkgdesc='An abstraction library for interfacing EDA tools'
-arch=('any')
-url='https://github.com/olofk/edalize'
-license=('BSD')
-depends=('python' 'python-jinja')
-makedepends=('python-setuptools-scm')
-checkdepends=('python-pytest' 'python-pandas' 'iverilog')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('72234a7e743acc82a8ebe22d3d71b4ba26d2773556ce5af88d683c488ba3583ed6d89bf2d6f2fb1faf5b9d712e3056033878178ae30632750afe2a9e6a722392')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  rm tests/test_spyglass.py
-
-  sed -i '/pytest/d' setup.py
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  PYTHONPATH=. 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
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-edalize/repos/community-staging-any/PKGBUILD (from rev 1065588, 
python-edalize/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-08 02:33:50 UTC (rev 1065589)
@@ -0,0 +1,50 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=edalize
+pkgname=python-$_pkgname
+pkgver=0.2.5
+pkgrel=3
+pkgdesc='An abstraction library for interfacing EDA tools'
+arch=('any')
+url='https://github.com/olofk/edalize'
+license=('BSD')
+depends=('python' 'python-jinja')
+makedepends=('python-setuptools-scm')
+checkdepends=('python-pytest' 'python-pandas' 'iverilog')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
+
$pkgname-pandas-1.3.patch::https://github.com/olofk/edalize/commit/f4b3cc5bccf0.patch)
+sha512sums=('72234a7e743acc82a8ebe22d3d71b4ba26d2773556ce5af88d683c488ba3583ed6d89bf2d6f2fb1faf5b9d712e3056033878178ae30632750afe2a9e6a722392'
+
'357b91220b8a5edd26e3e93b0108d98f648b663ee84776b07a25cac75f48f52cb9745ba775660a4921e267558e1e2632d1a539f0d9a1e97df5fea1d78d69')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+prepare() {
+  cd $_pkgname-$pkgver
+  patch -Np1 -i ../$pkgname-pandas-1.3.patch
+
+  rm tests/test_spyglass.py
+
+  sed -i '/pytest/d' setup.py
+}
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  PYTHONPATH=. 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
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 02:30:08
  Author: felixonmars
Revision: 1065585

upgpkg: python-daemon 2.3.0-2: Python 3.10 rebuild

Modified:
  python-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 02:28:46 UTC (rev 1065584)
+++ PKGBUILD2021-12-08 02:30:08 UTC (rev 1065585)
@@ -4,7 +4,7 @@
 
 pkgname=python-daemon
 pkgver=2.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Library to implement a well-behaved Unix daemon process'
 arch=('any')
 url='https://pypi.python.org/pypi/python-daemon'



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 02:33:42
  Author: felixonmars
Revision: 1065588

upgpkg: python-edalize 0.2.5-3: Python 3.10 rebuild

Modified:
  python-edalize/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 02:32:39 UTC (rev 1065587)
+++ PKGBUILD2021-12-08 02:33:42 UTC (rev 1065588)
@@ -3,7 +3,7 @@
 _pkgname=edalize
 pkgname=python-$_pkgname
 pkgver=0.2.5
-pkgrel=2
+pkgrel=3
 pkgdesc='An abstraction library for interfacing EDA tools'
 arch=('any')
 url='https://github.com/olofk/edalize'



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 02:32:39
  Author: foutrelis
Revision: 1065587

Fix tests with Pandas 1.3

Modified:
  python-edalize/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 02:30:19 UTC (rev 1065586)
+++ PKGBUILD2021-12-08 02:32:39 UTC (rev 1065587)
@@ -11,13 +11,16 @@
 depends=('python' 'python-jinja')
 makedepends=('python-setuptools-scm')
 checkdepends=('python-pytest' 'python-pandas' 'iverilog')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('72234a7e743acc82a8ebe22d3d71b4ba26d2773556ce5af88d683c488ba3583ed6d89bf2d6f2fb1faf5b9d712e3056033878178ae30632750afe2a9e6a722392')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
+
$pkgname-pandas-1.3.patch::https://github.com/olofk/edalize/commit/f4b3cc5bccf0.patch)
+sha512sums=('72234a7e743acc82a8ebe22d3d71b4ba26d2773556ce5af88d683c488ba3583ed6d89bf2d6f2fb1faf5b9d712e3056033878178ae30632750afe2a9e6a722392'
+
'357b91220b8a5edd26e3e93b0108d98f648b663ee84776b07a25cac75f48f52cb9745ba775660a4921e267558e1e2632d1a539f0d9a1e97df5fea1d78d69')
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 
 prepare() {
   cd $_pkgname-$pkgver
+  patch -Np1 -i ../$pkgname-pandas-1.3.patch
 
   rm tests/test_spyglass.py
 



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 02:30:19
  Author: felixonmars
Revision: 1065586

archrelease: copy trunk to community-staging-any

Added:
  python-daemon/repos/community-staging-any/
  python-daemon/repos/community-staging-any/PKGBUILD
(from rev 1065585, python-daemon/trunk/PKGBUILD)
  python-daemon/repos/community-staging-any/python310.patch
(from rev 1065585, python-daemon/trunk/python310.patch)
  python-daemon/repos/community-staging-any/testtools-2.5.0.patch
(from rev 1065585, python-daemon/trunk/testtools-2.5.0.patch)

---+
 PKGBUILD  |   44 
 python310.patch   |   31 +++
 testtools-2.5.0.patch |   22 ++
 3 files changed, 97 insertions(+)

Copied: python-daemon/repos/community-staging-any/PKGBUILD (from rev 1065585, 
python-daemon/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-12-08 02:30:19 UTC (rev 1065586)
@@ -0,0 +1,44 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Anatol Pomozov
+# Contributor: Massimiliano Torromeo 
+
+pkgname=python-daemon
+pkgver=2.3.0
+pkgrel=2
+pkgdesc='Library to implement a well-behaved Unix daemon process'
+arch=('any')
+url='https://pypi.python.org/pypi/python-daemon'
+license=('Apache')
+depends=('python' 'python-lockfile' 'python-docutils')
+makedepends=('python-setuptools' 'python-docutils' 'python-lockfile' 
'python-pip')
+checkdepends=('python-mock' 'python-testscenarios' 'python-wheel')
+source=(https://files.pythonhosted.org/packages/source/p/$pkgname/$pkgname-$pkgver.tar.gz
+testtools-2.5.0.patch
+python310.patch)
+sha256sums=('bda993f1623b1197699716d68d983bb580043cf2b8a66a01274d9b8297b0aeaf'
+'7f8dfbe9e01edcb19ebede5580d448a995b721ee3b56ca1d353f58c36416c980'
+'1777e34936ed5d45001e9994f563fdf8c9e2045b667223f1eebf896031627ddc')
+
+prepare() {
+  cd "${srcdir}"/python-daemon-$pkgver
+  patch -Np1 -i ../testtools-2.5.0.patch
+  patch -Np1 -i ../python310.patch
+}
+
+build() {
+  cd "${srcdir}"/python-daemon-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd python-daemon-$pkgver
+  python setup.py test
+}
+
+package_python-daemon() {
+  cd "${srcdir}"/python-daemon-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.ASF-2 
"${pkgdir}"/usr/share/licenses/$pkgname/LICENSE.ASF-2
+  install -Dm644 LICENSE.GPL-3 
"${pkgdir}"/usr/share/licenses/$pkgname/LICENSE.GPL-3
+}

Copied: python-daemon/repos/community-staging-any/python310.patch (from rev 
1065585, python-daemon/trunk/python310.patch)
===
--- community-staging-any/python310.patch   (rev 0)
+++ community-staging-any/python310.patch   2021-12-08 02:30:19 UTC (rev 
1065586)
@@ -0,0 +1,31 @@
+From 0c67a3c6407fbf4483ccfc94a7a0d78cf3379296 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= 
+Date: Wed, 29 Sep 2021 19:59:30 +1000
+Subject: [PATCH] Remove incorrect double-patch of objects in test cases.
+
+The specific test cases relying on the patches, already are decorated
+to patch the specific attributes needed. We don't need a general patch
+of the attributes in the test case setup.
+
+Signed-off-by: Ben Finney 
+---
+ test/test_pidfile.py | 6 --
+ 1 file changed, 6 deletions(-)
+
+diff --git a/test/test_pidfile.py b/test/test_pidfile.py
+index 2448855..1d0dd93 100644
+--- a/test/test_pidfile.py
 b/test/test_pidfile.py
+@@ -367,12 +367,6 @@ class TimeoutPIDLockFile_TestCase(scaffold.TestCase):
+ pidlockfile_scenarios = make_pidlockfile_scenarios()
+ self.pidlockfile_scenario = pidlockfile_scenarios['simple']
+ 
+-for func_name in ['__init__', 'acquire']:
+-func_patcher = unittest.mock.patch.object(
+-lockfile.pidlockfile.PIDLockFile, func_name)
+-func_patcher.start()
+-self.addCleanup(func_patcher.stop)
+-
+ self.scenario = {
+ 'pidfile_path': self.pidlockfile_scenario['pidfile_path'],
+ 'acquire_timeout': self.getUniqueInteger(),

Copied: python-daemon/repos/community-staging-any/testtools-2.5.0.patch (from 
rev 1065585, python-daemon/trunk/testtools-2.5.0.patch)
===
--- community-staging-any/testtools-2.5.0.patch (rev 0)
+++ community-staging-any/testtools-2.5.0.patch 2021-12-08 02:30:19 UTC (rev 
1065586)
@@ -0,0 +1,22 @@
+From bacc1774e8ff7504092a0612197c36153731cd70 Mon Sep 17 00:00:00 2001
+From: Ben Finney 
+Date: Mon, 27 Sep 2021 21:17:57 +1000
+Subject: [PATCH] Drop a helper for obsolete bugs in `hasattr`.
+
+---
+ test/test_metadata.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --gi

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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 02:28:46
  Author: foutrelis
Revision: 1065584

Fix tests for Python 3.10

Added:
  python-daemon/trunk/python310.patch
  python-daemon/trunk/testtools-2.5.0.patch
Modified:
  python-daemon/trunk/PKGBUILD
Deleted:
  python-daemon/trunk/python-daemon-2.3.0-fix-py3.10.patch

--+
 PKGBUILD |   15 -
 python-daemon-2.3.0-fix-py3.10.patch |  285 -
 python310.patch  |   31 +++
 testtools-2.5.0.patch|   22 ++
 4 files changed, 60 insertions(+), 293 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 02:20:23 UTC (rev 1065583)
+++ PKGBUILD2021-12-08 02:28:46 UTC (rev 1065584)
@@ -13,13 +13,16 @@
 makedepends=('python-setuptools' 'python-docutils' 'python-lockfile' 
'python-pip')
 checkdepends=('python-mock' 'python-testscenarios' 'python-wheel')
 
source=(https://files.pythonhosted.org/packages/source/p/$pkgname/$pkgname-$pkgver.tar.gz
-python-daemon-2.3.0-fix-py3.10.patch)
+testtools-2.5.0.patch
+python310.patch)
 sha256sums=('bda993f1623b1197699716d68d983bb580043cf2b8a66a01274d9b8297b0aeaf'
-'3e6091f4eea62ec738c424867766e2755155b807fb58622e07e565ae7b97c1b6')
+'7f8dfbe9e01edcb19ebede5580d448a995b721ee3b56ca1d353f58c36416c980'
+'1777e34936ed5d45001e9994f563fdf8c9e2045b667223f1eebf896031627ddc')
 
-build() {
+prepare() {
   cd "${srcdir}"/python-daemon-$pkgver
-  patch -Np1 -i ${srcdir}/python-daemon-2.3.0-fix-py3.10.patch
+  patch -Np1 -i ../testtools-2.5.0.patch
+  patch -Np1 -i ../python310.patch
 }
 
 build() {
@@ -29,10 +32,6 @@
 
 check() {
   cd python-daemon-$pkgver
-  # fix for >=testtools-2.5.0
-  sed -e 's/testtools.helpers.safe_hasattr/hasattr/' \
-  -i test/test_metadata.py || die
-
   python setup.py test
 }
 

Deleted: python-daemon-2.3.0-fix-py3.10.patch
===
--- python-daemon-2.3.0-fix-py3.10.patch2021-12-08 02:20:23 UTC (rev 
1065583)
+++ python-daemon-2.3.0-fix-py3.10.patch2021-12-08 02:28:46 UTC (rev 
1065584)
@@ -1,285 +0,0 @@
-
-
-
-python-daemon-2.3.0-fix-py3.10.patch « files « python-daemon « 
dev-python - repo/gentoo.git - Official Gentoo ebuild repository
-
-
-
-
-
-
-
-
-
-
-https://assets.gentoo.org/tyrian/v2/tyrian.min.css"; 
rel="stylesheet" media="screen">
-
-
-
-  
-
-  
-
-  
-https://assets.gentoo.org/tyrian/v2/site-logo.png"; 
alt="Gentoo" srcset="https://assets.gentoo.org/tyrian/v2/site-logo.svg";>
-  
-  GitWeb
-
-
-  
-https://get.gentoo.org/"; role="button" class="btn 
get-gentoo">
-  Get Gentoo!
-
-  
- gentoo.org sites
-
-  
-  
-https://www.gentoo.org/"; 
title="Main Gentoo website">
-  gentoo.org
-https://wiki.gentoo.org/"; 
title="Find and contribute documentation">
-  Wiki
-https://bugs.gentoo.org/"; 
title="Report issues and find common issues">
-  Bugs
-https://forums.gentoo.org/"; 
title="Discuss with the community">
-  Forums
-https://packages.gentoo.org/"; 
title="Find software for your Gentoo">
-  Packages
-
-https://planet.gentoo.org/"; 
title="Find out what's going on in the developer community">
-  Planet
-https://archives.gentoo.org/"; 
title="Read up on past discussions">
-  Archives
-https://sources.gentoo.org/"; 
title="Browse our source code">
-  Sources
-
-https://infra-status.gentoo.org/"; title="Get updates on the services 
provided by Gentoo">
-  Infra Status
-  
-
-  
-
-  
-
-  
-  
-
-  
-
-  
-
-  
-  
-
-  Home
-  Gentoo Repository
-  Repositories
-  Projects
-  Developer 
Overlays
-  User 
Overlays
-  Data
-  Websites
-
-  
-
-  
-
-
-
-  
-  
-
-
-
-index : repo/gentoo.git
-
-master
- 
-Official Gentoo ebuild repositoryInfrastructure team 
-
-summaryrefslogtreecommitdiff
-
-log msg
-author
-committer
-range
-
-
-
-
-
-path: root/dev-python/python-daemon/files/python-daemon-2.3.0-fix-py3.10.patchblob: 4fd082dc8f775219daebd98c0fcc76ec8e553478 (plain)
-
-1
-2
-3
-4
-5
-6
-7
-8
-9
-10
-11
-12
-13
-14
-15
-16
-17
-18
-19
-20
-21
-22
-23
-24
-25
-26
-27
-28
-
-pre { line-height: 125%; }
-td.linenos .normal { color: inherit; background-color: transparent; 
padding-left: 5px

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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 02:20:23
  Author: felixonmars
Revision: 1065583

archrelease: copy trunk to community-staging-any

Added:
  python-aspectlib/repos/community-staging-any/PKGBUILD
(from rev 1065582, python-aspectlib/trunk/PKGBUILD)
  python-aspectlib/repos/community-staging-any/python310.patch
(from rev 1065582, python-aspectlib/trunk/python310.patch)
Deleted:
  python-aspectlib/repos/community-staging-any/PKGBUILD

-+
 PKGBUILD|   72 +
 python310.patch |   85 ++
 2 files changed, 125 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 02:20:13 UTC (rev 1065582)
+++ PKGBUILD2021-12-08 02:20:23 UTC (rev 1065583)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-aspectlib
-pkgver=1.5.2
-pkgrel=2
-pkgdesc="Development library for quickly writing configurable applications and 
daemons"
-arch=('any')
-license=('BSD')
-url="https://github.com/ionelmc/python-aspectlib";
-depends=('python-fields')
-makedepends=('python-setuptools')
-checkdepends=('python-mock' 'python-tornado' 'python-process-tests'
-  'python-profilestats' 'python-pytest-runner') # 'mysql-python')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ionelmc/python-aspectlib/archive/v$pkgver.tar.gz";)
-sha512sums=('33642f828989d07c6af78bdf9adc9f2abbc419df89b878cfe7bd9c8df226a59401176b56b1f2b3ba48661ea5a145520de0bc7a0980226b742b0a79f31ab7dd7f')
-
-build() {
-  cd python-aspectlib-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd python-aspectlib-$pkgver
-  # https://github.com/ionelmc/python-aspectlib/issues/15
-  python setup.py pytest --addopts '--deselect 
tests/test_integrations_py3.py::test_decorate_tornado_coroutine'
-}
-
-package() {
-  cd python-aspectlib-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-aspectlib/repos/community-staging-any/PKGBUILD (from rev 
1065582, python-aspectlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-08 02:20:23 UTC (rev 1065583)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-aspectlib
+pkgver=1.5.2
+pkgrel=3
+pkgdesc="Development library for quickly writing configurable applications and 
daemons"
+arch=('any')
+license=('BSD')
+url="https://github.com/ionelmc/python-aspectlib";
+depends=('python-fields')
+makedepends=('python-setuptools')
+checkdepends=('python-mock' 'python-tornado' 'python-process-tests'
+  'python-profilestats' 'python-pytest-runner') # 'mysql-python')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ionelmc/python-aspectlib/archive/v$pkgver.tar.gz";
+python310.patch)
+sha512sums=('33642f828989d07c6af78bdf9adc9f2abbc419df89b878cfe7bd9c8df226a59401176b56b1f2b3ba48661ea5a145520de0bc7a0980226b742b0a79f31ab7dd7f'
+
'74b4261afd1fe20749f94dab067514eab12c484453607b820a96e1e8308fddbac4ac49ce24334c79c9fea6729877457ae60cb5004709106186c51d9af66087af')
+
+prepare() {
+  cd python-aspectlib-$pkgver
+  # https://github.com/ionelmc/python-aspectlib/pull/22
+  patch -Np1 -i ../python310.patch
+}
+
+build() {
+  cd python-aspectlib-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd python-aspectlib-$pkgver
+  # https://github.com/ionelmc/python-aspectlib/issues/15
+  python setup.py pytest --addopts '--deselect 
tests/test_integrations_py3.py::test_decorate_tornado_coroutine'
+}
+
+package() {
+  cd python-aspectlib-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: python-aspectlib/repos/community-staging-any/python310.patch (from rev 
1065582, python-aspectlib/trunk/python310.patch)
===
--- python310.patch (rev 0)
+++ python310.patch 2021-12-08 02:20:23 UTC (rev 1065583)
@@ -0,0 +1,85 @@
+From 3753c940d08a681a4e41b16e282a2d7c63eef158 Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Wed, 8 Dec 2021 04:13:16 +0200
+Subject: [PATCH] Fix two tests to work on Python 3.10
+
+Python 3.10 adds the class name to the exception; adjust two tests
+affected by this change.
+---
+ src/aspectlib/utils.py   |  1 +
+ tests/test_aspectlib_test.py | 16 +++-
+ 2 files changed, 12 insertions(+), 5 deletions(-)
+
+diff --git a/src/aspectlib/utils.py b/src/aspectlib/utils.py
+index 9e0837e..7259187 100644
+--- a/src/aspectlib/utils.py
 b/src/aspectlib/utils.py
+@@ -13,6 +13,7 @@ RegexType = type(re.compile(""))
+ 
+ PY3 = sys.version_info[0] == 3
+ PY37plus = PY3 and sys.version_info[1] >= 7
++PY310plus = PY3 and sys.version_info[1] >= 10
+ PY2 = sys.version_info[0]

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

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 02:20:13
  Author: felixonmars
Revision: 1065582

upgpkg: python-aspectlib 1.5.2-3: Python 3.10 rebuild

Modified:
  python-aspectlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 02:19:35 UTC (rev 1065581)
+++ PKGBUILD2021-12-08 02:20:13 UTC (rev 1065582)
@@ -2,7 +2,7 @@
 
 pkgname=python-aspectlib
 pkgver=1.5.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Development library for quickly writing configurable applications and 
daemons"
 arch=('any')
 license=('BSD')



[arch-commits] Commit in python-aspectlib/trunk (PKGBUILD python310.patch)

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 02:19:35
  Author: foutrelis
Revision: 1065581

Fix tests with Python 3.10

Added:
  python-aspectlib/trunk/python310.patch
Modified:
  python-aspectlib/trunk/PKGBUILD

-+
 PKGBUILD|   12 ++-
 python310.patch |   85 ++
 2 files changed, 95 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 01:16:51 UTC (rev 1065580)
+++ PKGBUILD2021-12-08 02:19:35 UTC (rev 1065581)
@@ -11,9 +11,17 @@
 makedepends=('python-setuptools')
 checkdepends=('python-mock' 'python-tornado' 'python-process-tests'
   'python-profilestats' 'python-pytest-runner') # 'mysql-python')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ionelmc/python-aspectlib/archive/v$pkgver.tar.gz";)
-sha512sums=('33642f828989d07c6af78bdf9adc9f2abbc419df89b878cfe7bd9c8df226a59401176b56b1f2b3ba48661ea5a145520de0bc7a0980226b742b0a79f31ab7dd7f')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ionelmc/python-aspectlib/archive/v$pkgver.tar.gz";
+python310.patch)
+sha512sums=('33642f828989d07c6af78bdf9adc9f2abbc419df89b878cfe7bd9c8df226a59401176b56b1f2b3ba48661ea5a145520de0bc7a0980226b742b0a79f31ab7dd7f'
+
'74b4261afd1fe20749f94dab067514eab12c484453607b820a96e1e8308fddbac4ac49ce24334c79c9fea6729877457ae60cb5004709106186c51d9af66087af')
 
+prepare() {
+  cd python-aspectlib-$pkgver
+  # https://github.com/ionelmc/python-aspectlib/pull/22
+  patch -Np1 -i ../python310.patch
+}
+
 build() {
   cd python-aspectlib-$pkgver
   python setup.py build

Added: python310.patch
===
--- python310.patch (rev 0)
+++ python310.patch 2021-12-08 02:19:35 UTC (rev 1065581)
@@ -0,0 +1,85 @@
+From 3753c940d08a681a4e41b16e282a2d7c63eef158 Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Wed, 8 Dec 2021 04:13:16 +0200
+Subject: [PATCH] Fix two tests to work on Python 3.10
+
+Python 3.10 adds the class name to the exception; adjust two tests
+affected by this change.
+---
+ src/aspectlib/utils.py   |  1 +
+ tests/test_aspectlib_test.py | 16 +++-
+ 2 files changed, 12 insertions(+), 5 deletions(-)
+
+diff --git a/src/aspectlib/utils.py b/src/aspectlib/utils.py
+index 9e0837e..7259187 100644
+--- a/src/aspectlib/utils.py
 b/src/aspectlib/utils.py
+@@ -13,6 +13,7 @@ RegexType = type(re.compile(""))
+ 
+ PY3 = sys.version_info[0] == 3
+ PY37plus = PY3 and sys.version_info[1] >= 7
++PY310plus = PY3 and sys.version_info[1] >= 10
+ PY2 = sys.version_info[0] == 2
+ PY26 = PY2 and sys.version_info[1] == 6
+ PYPY = platform.python_implementation() == 'PyPy'
+diff --git a/tests/test_aspectlib_test.py b/tests/test_aspectlib_test.py
+index 05e2c25..e86ff9d 100644
+--- a/tests/test_aspectlib_test.py
 b/tests/test_aspectlib_test.py
+@@ -3,7 +3,6 @@ from __future__ import print_function
+ from pytest import raises
+ from test_pkg1.test_pkg2 import test_mod
+ 
+-from aspectlib import PY2
+ from aspectlib.test import OrderedDict
+ from aspectlib.test import Story
+ from aspectlib.test import StoryResultWrapper
+@@ -13,7 +12,9 @@ from aspectlib.test import _Raises
+ from aspectlib.test import _Returns
+ from aspectlib.test import mock
+ from aspectlib.test import record
++from aspectlib.utils import PY2
+ from aspectlib.utils import PY26
++from aspectlib.utils import PY310plus
+ from aspectlib.utils import repr_ex
+ 
+ pytest_plugins = 'pytester',
+@@ -414,14 +415,17 @@ def test_story_empty_play_proxy_class():
+ (('stuff_1', 'mix', "'a', 'b'", ''), _Returns("(1, 2, 'a', 'b')")),
+ (('stuff_1', 'meth', "123", ''), _Raises(repr_ex(TypeError(
+ 'meth() takes exactly 1 argument (2 given)' if PY2 else
+-'meth() takes 1 positional argument but 2 were given'
++('Stuff.' if PY310plus else '') +
++'meth() takes 1 positional argument but 2 were given'
++
+ ,
+ ((None, 'test_pkg1.test_pkg2.test_mod.Stuff', "0, 1", ''), 
_Binds('stuff_2')),
+ (('stuff_2', 'mix', "'a', 'b'", ''), _Returns("(0, 1, 'a', 'b')")),
+ (('stuff_2', 'mix', "3, 4", ''), _Returns("(0, 1, 3, 4)")),
+ (('stuff_2', 'meth', "123", ''), _Raises(repr_ex(TypeError(
+ 'meth() takes exactly 1 argument (2 given)' if PY2 else
+-'meth() takes 1 positional argument but 2 were given'
++('Stuff.' if PY310plus else '') +
++'meth() takes 1 positional argument but 2 were given'
+ 
+ ]))
+ 
+@@ -449,14 +453,16 @@ def test_story_half_play_proxy_class():
+ (('stuff_1', 'meth', '', ''), _Returns('None')),
+ (('stuff_1', 'meth', '123', ''), _Raises(repr_ex(TypeError(
+ 'meth() takes exactly 1 argument (2 given)' if PY2 else
+-'meth() takes 1 positional argument but 2 

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

2021-12-07 Thread Kpcyrd via arch-commits
Date: Wednesday, December 8, 2021 @ 01:16:51
  Author: kpcyrd
Revision: 1065580

archrelease: copy trunk to community-x86_64

Added:
  doctl/repos/community-x86_64/PKGBUILD
(from rev 1065579, doctl/trunk/PKGBUILD)
Deleted:
  doctl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 01:16:33 UTC (rev 1065579)
+++ PKGBUILD2021-12-08 01:16:51 UTC (rev 1065580)
@@ -1,41 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: NOGISAKA Sadata 
-# Contributor: Bennett Piater 
-
-pkgname=doctl
-pkgver=1.67.0
-pkgrel=1
-pkgdesc='The official command line interface for the DigitalOcean API'
-url='https://github.com/digitalocean/doctl'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc')
-makedepends=('go')
-source=(https://github.com/digitalocean/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('b257ebab4d9ae4ba545aa34a90e7481d761f7efc248afa998de24d5942848a55dfa56c52cb1e59c4e451c9e0e034fa83dfbac7ab3b7bf2855d046a5e03f0a960')
-b2sums=('7f7737528c54d75dd81431b928185d910676e2e469c47d44d6cb2d893ba8afe169e4e5018459f4755eaa8e6da7e618c97760940fe6bb758f2c16750283f02f24')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
-./cmd/...
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 "${pkgname}" -t "${pkgdir}/usr/bin"
-
-  # setup completions
-  install -dm 755 "${pkgdir}/usr/share/bash-completion/completions" \
-  "${pkgdir}/usr/share/zsh/site-functions" \
- "${pkgdir}/usr/share/fish/vendor_completions.d"
-  "${pkgdir}/usr/bin/${pkgname}" completion bash > 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
-  "${pkgdir}/usr/bin/${pkgname}" completion zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
-  "${pkgdir}/usr/bin/${pkgname}" completion fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/${pkgname}.fish"
-}
-
-# vim: ts=2 sw=2 et:

Copied: doctl/repos/community-x86_64/PKGBUILD (from rev 1065579, 
doctl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-08 01:16:51 UTC (rev 1065580)
@@ -0,0 +1,41 @@
+# Maintainer: kpcyrd 
+# Contributor: NOGISAKA Sadata 
+# Contributor: Bennett Piater 
+
+pkgname=doctl
+pkgver=1.68.0
+pkgrel=1
+pkgdesc='The official command line interface for the DigitalOcean API'
+url='https://github.com/digitalocean/doctl'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc')
+makedepends=('go')
+source=(https://github.com/digitalocean/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('d81799c227c071793af74f78e54d8348782caf158b28e0a12b92adf17b6c78c787a82abbdf3aa340a960f26c929b00f38015725e6e629aad7615096270d19c10')
+b2sums=('e44be00e1b7451e84d3d6dc5a19dc04fcb5dab2c8a5c1923c0c0f99058a1938f9567d63681989e869341957586cdf549842cd45ca82503007039ae989664e8ff')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
+./cmd/...
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 "${pkgname}" -t "${pkgdir}/usr/bin"
+
+  # setup completions
+  install -dm 755 "${pkgdir}/usr/share/bash-completion/completions" \
+  "${pkgdir}/usr/share/zsh/site-functions" \
+ "${pkgdir}/usr/share/fish/vendor_completions.d"
+  "${pkgdir}/usr/bin/${pkgname}" completion bash > 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
+  "${pkgdir}/usr/bin/${pkgname}" completion zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
+  "${pkgdir}/usr/bin/${pkgname}" completion fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/${pkgname}.fish"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-12-07 Thread Kpcyrd via arch-commits
Date: Wednesday, December 8, 2021 @ 01:16:33
  Author: kpcyrd
Revision: 1065579

upgpkg: doctl 1.68.0-1

Modified:
  doctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 01:09:26 UTC (rev 1065578)
+++ PKGBUILD2021-12-08 01:16:33 UTC (rev 1065579)
@@ -3,7 +3,7 @@
 # Contributor: Bennett Piater 
 
 pkgname=doctl
-pkgver=1.67.0
+pkgver=1.68.0
 pkgrel=1
 pkgdesc='The official command line interface for the DigitalOcean API'
 url='https://github.com/digitalocean/doctl'
@@ -12,8 +12,8 @@
 depends=('glibc')
 makedepends=('go')
 
source=(https://github.com/digitalocean/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('b257ebab4d9ae4ba545aa34a90e7481d761f7efc248afa998de24d5942848a55dfa56c52cb1e59c4e451c9e0e034fa83dfbac7ab3b7bf2855d046a5e03f0a960')
-b2sums=('7f7737528c54d75dd81431b928185d910676e2e469c47d44d6cb2d893ba8afe169e4e5018459f4755eaa8e6da7e618c97760940fe6bb758f2c16750283f02f24')
+sha512sums=('d81799c227c071793af74f78e54d8348782caf158b28e0a12b92adf17b6c78c787a82abbdf3aa340a960f26c929b00f38015725e6e629aad7615096270d19c10')
+b2sums=('e44be00e1b7451e84d3d6dc5a19dc04fcb5dab2c8a5c1923c0c0f99058a1938f9567d63681989e869341957586cdf549842cd45ca82503007039ae989664e8ff')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 01:09:26
  Author: foutrelis
Revision: 1065578

Bump for Python 3.10 support

Modified:
  mayavi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 22:30:20 UTC (rev 1065577)
+++ PKGBUILD2021-12-08 01:09:26 UTC (rev 1065578)
@@ -2,8 +2,8 @@
 # Contributor: Jingbei Li 
 
 pkgname=mayavi
-pkgver=4.7.3
-pkgrel=2
+pkgver=4.7.4
+pkgrel=0
 pkgdesc="A 3-dimensional visualizer of scientific data"
 arch=('x86_64')
 url="https://github.com/enthought/mayavi";
@@ -16,7 +16,7 @@
 
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/enthought/mayavi/archive/${pkgver}.tar.gz";
 "mayavi.sh" "mayavi.csh")
-sha256sums=('5bfc3f852748b3343dc9beef19bff5f7865124130a44ab191a0f7ceb396efaee'
+sha256sums=('44f144a5646e81b7eb0668a8b1ac383a847e634f6f4c306b4629e32587080467'
 'abb34e78105abf15197bdd05c02ba3b080755d46aa81e4cfaeaba4994d05effe'
 '034b36bf9d279d926c39c858bf18992e34de880725d778f8435b293259f4775d')
 



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

2021-12-07 Thread Jan Steffens via arch-commits
Date: Wednesday, December 8, 2021 @ 00:44:49
  Author: heftig
Revision: 430800

archrelease: copy trunk to extra-x86_64

Added:
  gnome-calculator/repos/extra-x86_64/PKGBUILD
(from rev 430799, gnome-calculator/trunk/PKGBUILD)
Deleted:
  gnome-calculator/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-08 00:44:34 UTC (rev 430799)
+++ PKGBUILD2021-12-08 00:44:49 UTC (rev 430800)
@@ -1,34 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-calculator
-pkgver=41.0
-pkgrel=1
-pkgdesc="GNOME Scientific calculator"
-url="https://wiki.gnome.org/Apps/Calculator";
-arch=(x86_64)
-license=(GPL)
-depends=(gtk3 dconf gtksourceview4 mpfr libsoup libmpc libgee libhandy) 
-makedepends=(yelp-tools vala git meson gobject-introspection)
-groups=(gnome)
-_commit=073bd2762b21cd807b3100f6fd244b427780292b  # tags/41.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-calculator.git#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  arch-meson $pkgname build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-}

Copied: gnome-calculator/repos/extra-x86_64/PKGBUILD (from rev 430799, 
gnome-calculator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-08 00:44:49 UTC (rev 430800)
@@ -0,0 +1,34 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-calculator
+pkgver=41.1
+pkgrel=1
+pkgdesc="GNOME Scientific calculator"
+url="https://wiki.gnome.org/Apps/Calculator";
+arch=(x86_64)
+license=(GPL)
+depends=(gtk3 dconf gtksourceview4 mpfr libsoup libmpc libgee libhandy) 
+makedepends=(yelp-tools vala git meson gobject-introspection)
+groups=(gnome)
+_commit=1e576c9b024439c3d6fe814b40c22edfa94618e6  # tags/41.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-calculator.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+build() {
+  arch-meson $pkgname build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}



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

2021-12-07 Thread Jan Steffens via arch-commits
Date: Wednesday, December 8, 2021 @ 00:44:34
  Author: heftig
Revision: 430799

41.1-1

Modified:
  gnome-calculator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 22:56:51 UTC (rev 430798)
+++ PKGBUILD2021-12-08 00:44:34 UTC (rev 430799)
@@ -2,7 +2,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-calculator
-pkgver=41.0
+pkgver=41.1
 pkgrel=1
 pkgdesc="GNOME Scientific calculator"
 url="https://wiki.gnome.org/Apps/Calculator";
@@ -11,13 +11,13 @@
 depends=(gtk3 dconf gtksourceview4 mpfr libsoup libmpc libgee libhandy) 
 makedepends=(yelp-tools vala git meson gobject-introspection)
 groups=(gnome)
-_commit=073bd2762b21cd807b3100f6fd244b427780292b  # tags/41.0^0
+_commit=1e576c9b024439c3d6fe814b40c22edfa94618e6  # tags/41.1^0
 
source=("git+https://gitlab.gnome.org/GNOME/gnome-calculator.git#commit=$_commit";)
 sha256sums=('SKIP')
 
 pkgver() {
   cd $pkgname
-  git describe --tags | sed 's/-/+/g'
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
 }
 
 build() {



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Tuesday, December 7, 2021 @ 13:20:52
  Author: felixonmars
Revision: 1065538

archrelease: copy trunk to community-staging-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 13:20:44 UTC (rev 1065537)
+++ PKGBUILD2021-12-07 13:20:52 UTC (rev 1065538)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-typeguard
-pkgver=2.12.1
-pkgrel=2
-pkgdesc="Run-time type checker for Python"
-url="https://github.com/agronholm/typeguard";
-license=('MIT')
-arch=('any')
-depends=('python')
-makedepends=('python-setuptools-scm')
-checkdepends=('mypy' 'python-pytest-cov' 'python-typing_extensions')
-source=("https://github.com/agronholm/typeguard/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha512sums=('ea91140ba0ebfe7cc83bf212ae20aca777279fc88ff806bf6a1f4208581bb726c6091d0777371d487e7422887814d81c84ebac9f06bfacc5a929f5a2657312a8')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd typeguard-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd typeguard-$pkgver
-  # https://github.com/agronholm/typeguard/issues/176
-  PYTHONPATH="$PWD/build/lib" MYPYPATH="$PWD/build/lib" pytest --deselect 
tests/mypy/test_type_annotations.py::test_positive
-}
-
-package() {
-  cd typeguard-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: python-typeguard/repos/community-staging-any/PKGBUILD (from rev 
1065537, python-typeguard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 13:20:52 UTC (rev 1065538)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-typeguard
+pkgver=2.13.2
+pkgrel=1
+pkgdesc="Run-time type checker for Python"
+url="https://github.com/agronholm/typeguard";
+license=('MIT')
+arch=('any')
+depends=('python')
+makedepends=('python-setuptools-scm')
+checkdepends=('mypy' 'python-pytest-cov' 'python-typing_extensions')
+source=("https://github.com/agronholm/typeguard/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
+sha512sums=('a11c1b9ee417a99a8bd09f4b5b05c7cdf319748b8221a49d1ff76854e2f432768224437f82a41c0166e5b148a550b58afbabfa1935cdc2a049cda3010edd052a')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+build() {
+  cd typeguard-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd typeguard-$pkgver
+  # https://github.com/agronholm/typeguard/issues/176
+  PYTHONPATH="$PWD/build/lib" MYPYPATH="$PWD/build/lib" pytest --deselect 
tests/mypy/test_type_annotations.py::test_positive
+}
+
+package() {
+  cd typeguard-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}



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

2021-12-07 Thread Alexander Rødseth via arch-commits
Date: Tuesday, December 7, 2021 @ 10:26:50
  Author: arodseth
Revision: 1065499

upgpkg: pekwm 0.2.1-1

Modified:
  pekwm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 09:27:08 UTC (rev 1065498)
+++ PKGBUILD2021-12-07 10:26:50 UTC (rev 1065499)
@@ -3,7 +3,7 @@
 # Contributor: Eddie Lozon 
 
 pkgname=pekwm
-pkgver=0.2.0
+pkgver=0.2.1
 pkgrel=1
 pkgdesc='Tabbed X11 window manager'
 arch=(x86_64)
@@ -26,7 +26,7 @@
 etc/pekwm/mouse_system
 etc/pekwm/start
 etc/pekwm/vars)
-source=("git+$url#commit=4c5b4826df0efd037693d730d2bdf843e78b25a5") # tag: 
release-0.2.0
+source=("git+$url#commit=d18fc4e70a5e3d9c1d51130f2d595dd078eb4704") # tag: 
release-0.2.1
 b2sums=(SKIP)
 
 prepare() {



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

2021-12-07 Thread Antonio Rojas via arch-commits
Date: Monday, December 6, 2021 @ 21:06:22
  Author: arojas
Revision: 430761

archrelease: copy trunk to extra-x86_64

Added:
  graphviz/repos/extra-x86_64/PKGBUILD
(from rev 430760, graphviz/trunk/PKGBUILD)
  graphviz/repos/extra-x86_64/ghostscript918.patch
(from rev 430760, graphviz/trunk/ghostscript918.patch)
  graphviz/repos/extra-x86_64/install
(from rev 430760, graphviz/trunk/install)
Deleted:
  graphviz/repos/extra-x86_64/PKGBUILD
  graphviz/repos/extra-x86_64/ghostscript918.patch
  graphviz/repos/extra-x86_64/install

--+
 PKGBUILD |  122 -
 ghostscript918.patch |   36 +++---
 install  |   24 -
 3 files changed, 91 insertions(+), 91 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-06 21:06:08 UTC (rev 430760)
+++ PKGBUILD2021-12-06 21:06:22 UTC (rev 430761)
@@ -1,61 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: kevin 
-# Contributor: John Proctor 
-
-pkgname=graphviz
-pkgver=2.49.3
-pkgrel=1
-pkgdesc='Graph visualization software'
-url='https://www.graphviz.org/'
-license=('EPL')
-arch=('x86_64')
-depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts' 
'gsfonts' 'libnsl' 'libpng')
-makedepends=('swig' 'mono' 'guile' 'lua' 'ocaml>=4.12.0' 'perl' 'python' 'r' 
'tk' 'qt5-base' 'gtk2')
-optdepends=('mono: sharp bindings'
-'guile: guile bindings'
-'lua: lua bindings'
-'ocaml: ocaml bindings'
-'perl: perl bindings'
-'python: python bindings'
-'r: r bindings'
-'tcl: tcl bindings'
-'qt5-base: gvedit'
-'gtk2: gtk output plugin'
-'xterm: vimdot')
-source=("https://gitlab.com/graphviz/graphviz/-/archive/$pkgver/$pkgname-$pkgver.tar.gz";
-'ghostscript918.patch')
-sha256sums=('5801664769ab88c2fb8ccb6ab0957cceabe6d4632b193041440e97790f53a9df'
-'0083d126e27f2223ec4226fc1d71c9c84106968a0fdf65de838aee1e4882bfdb')
-
-install=install
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../ghostscript918.patch
-   ./autogen.sh NOCONFIG
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export LIBPOSTFIX=/
-   export CXXFLAGS+=' -fPIC -fpermissive'
-
-   ./configure --prefix=/usr \
-   --enable-python3=yes --disable-python --enable-lefty
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool # Fix 
overlinking
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-
-   # fix symlink to symlink that doesn't get picked up by makepkg's zipman
-   ln -s gv2gxl.1.gz "${pkgdir}"/usr/share/man/man1/dot2gxl.1.gz
-   rm "${pkgdir}"/usr/share/man/man1/dot2gxl.1
-
-   # Deduplicates TCL libraries
-   cd "${pkgdir}/usr/lib/tcl8.6"
-   rm -fr graphviz
-   ln -s ../graphviz/tcl graphviz
-}

Copied: graphviz/repos/extra-x86_64/PKGBUILD (from rev 430760, 
graphviz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-06 21:06:22 UTC (rev 430761)
@@ -0,0 +1,61 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: kevin 
+# Contributor: John Proctor 
+
+pkgname=graphviz
+pkgver=2.50.0
+pkgrel=1
+pkgdesc='Graph visualization software'
+url='https://www.graphviz.org/'
+license=('EPL')
+arch=('x86_64')
+depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts' 
'gsfonts' 'libnsl' 'libpng')
+makedepends=('swig' 'mono' 'guile' 'lua' 'ocaml>=4.12.0' 'perl' 'python' 'r' 
'tk' 'qt5-base' 'gtk2')
+optdepends=('mono: sharp bindings'
+'guile: guile bindings'
+'lua: lua bindings'
+'ocaml: ocaml bindings'
+'perl: perl bindings'
+'python: python bindings'
+'r: r bindings'
+'tcl: tcl bindings'
+'qt5-base: gvedit'
+'gtk2: gtk output plugin'
+'xterm: vimdot')
+source=("https://gitlab.com/graphviz/graphviz/-/archive/$pkgver/$pkgname-$pkgver.tar.gz";
+'ghostscript918.patch')
+sha256sums=('afa48581f764a35e148909cc96a0308ec2356b5225b64af12492f3392f20ef1c'
+'0083d126e27f2223ec4226fc1d71c9c84106968a0fdf65de838aee1e4882bfdb')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../ghostscript918.patch
+   ./autogen.sh NOCONFIG
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export LIBPOSTFIX=/
+   export CXXFLAGS+=' -fPIC -fpermissive'
+
+   ./configure --prefix=/usr \
+   --enable-python3=yes --disable-python --enable-lefty
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool # Fix 
overlinking
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgd

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

2021-12-07 Thread Antonio Rojas via arch-commits
Date: Monday, December 6, 2021 @ 21:08:58
  Author: arojas
Revision: 430762

Python 3.10 rebuild

Modified:
  graphviz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-06 21:06:22 UTC (rev 430761)
+++ PKGBUILD2021-12-06 21:08:58 UTC (rev 430762)
@@ -4,7 +4,7 @@
 
 pkgname=graphviz
 pkgver=2.50.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Graph visualization software'
 url='https://www.graphviz.org/'
 license=('EPL')



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

2021-12-07 Thread Daniel M. Capella via arch-commits
Date: Tuesday, December 7, 2021 @ 07:22:23
  Author: polyzen
Revision: 1065480

upgpkg: ipython 7.30.1-2: Exclude tests for Python 3.10

Modified:
  ipython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 07:18:32 UTC (rev 1065479)
+++ PKGBUILD2021-12-07 07:22:23 UTC (rev 1065480)
@@ -7,7 +7,7 @@
 
 pkgname=ipython
 pkgver=7.30.1
-pkgrel=1
+pkgrel=2
 pkgdesc="An enhanced Interactive Python shell."
 arch=('any')
 url="https://ipython.org";
@@ -36,7 +36,8 @@
 
 check() {
   cd $pkgname-$pkgver
-  pytest
+  # Exclude minor test failures with Python 3.10
+  pytest -k 'not test_magic_arguments and not 
test_pinfo_docstring_if_detail_and_no_source and not 
test_pprint_heap_allocated_type'
 }
 
 package() {



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

2021-12-07 Thread Jelle van der Waa via arch-commits
Date: Tuesday, December 7, 2021 @ 08:19:44
  Author: jelle
Revision: 1065492

Rebuild for python 3.10

Update for failing tests

Modified:
  python-cairocffi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 08:14:44 UTC (rev 1065491)
+++ PKGBUILD2021-12-07 08:19:44 UTC (rev 1065492)
@@ -3,8 +3,8 @@
 # Contributor: Florijan Hamzic 
 
 pkgname=python-cairocffi
-pkgver=1.2.0
-pkgrel=4
+pkgver=1.3.0
+pkgrel=1
 pkgdesc="cairocffi is a CFFI-based drop-in replacement for Pycairo, a set of 
Python bindings and object-oriented API for cairo."
 arch=('any')
 url="https://cairocffi.readthedocs.io/";
@@ -15,7 +15,7 @@
   'python-numpy')
 optdepends=('gdk-pixbuf2: for cairocffi.pixbuf')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/Kozea/cairocffi/archive/v${pkgver}.tar.gz";)
-sha512sums=('06741670d0e10be6d762fa4d85c8dfb4d26827f5e2c5863ca6301ea3feeacb52bb0f2c86fcf095894f99523a22624142e05ce6035ad07ec07555b18a38f7a79f')
+sha512sums=('3d054abc51078624f6b5c1d0d3e25547809dabc1f27b530567dab3711bbef892403bcd6d73b1edd3425caad0e9916392973b81fb2057e6bad95bc7bd4fe42b2b')
 
 
 build() {



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Tuesday, December 7, 2021 @ 14:27:16
  Author: foutrelis
Revision: 1065546

archrelease: copy trunk to community-staging-any

Added:
  python-cryptography-vectors/repos/community-staging-any/PKGBUILD
(from rev 1065545, python-cryptography-vectors/trunk/PKGBUILD)
Deleted:
  python-cryptography-vectors/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 14:27:11 UTC (rev 1065545)
+++ PKGBUILD2021-12-07 14:27:16 UTC (rev 1065546)
@@ -1,18 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-cryptography-vectors
-pkgver=35.0.0
-pkgrel=3
-pkgdesc="Test vectors for the cryptography package"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/cryptography-vectors";
-depends=('python')
-makedepends=('python-setuptools')
-source=("https://pypi.io/packages/source/c/cryptography-vectors/cryptography_vectors-$pkgver.tar.gz";)
-sha512sums=('9f24a32e17ac169ceb8a4c47868fd4b9f47c919121738b108ac693bb6145e41f661e00a9202b47c7a232725f418e6804fabdd3be6c94bb39e49e233c077d0fd3')
-
-package() {
-   cd cryptography_vectors-$pkgver
-   python3 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-cryptography-vectors/repos/community-staging-any/PKGBUILD (from 
rev 1065545, python-cryptography-vectors/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 14:27:16 UTC (rev 1065546)
@@ -0,0 +1,18 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-cryptography-vectors
+pkgver=36.0.0
+pkgrel=1
+pkgdesc="Test vectors for the cryptography package"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/cryptography-vectors";
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://pypi.io/packages/source/c/cryptography-vectors/cryptography_vectors-$pkgver.tar.gz";)
+sha512sums=('67147dd945dc76ae27d6de4c694253081eeadf10da8c265bdf217031846696451fd6065469b272fab5bd65c1a55239f3a1af0cef7bc2c2a14b64f0a0f6e1c7de')
+
+package() {
+   cd cryptography_vectors-$pkgver
+   python3 setup.py install --root="$pkgdir" --optimize=1
+}



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

2021-12-07 Thread Antonio Rojas via arch-commits
Date: Monday, December 6, 2021 @ 21:06:08
  Author: arojas
Revision: 430760

Update to 2.50.0

Modified:
  graphviz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-06 20:48:51 UTC (rev 430759)
+++ PKGBUILD2021-12-06 21:06:08 UTC (rev 430760)
@@ -3,8 +3,8 @@
 # Contributor: John Proctor 
 
 pkgname=graphviz
-pkgver=2.49.3
-pkgrel=4
+pkgver=2.50.0
+pkgrel=1
 pkgdesc='Graph visualization software'
 url='https://www.graphviz.org/'
 license=('EPL')
@@ -24,7 +24,7 @@
 'xterm: vimdot')
 
source=("https://gitlab.com/graphviz/graphviz/-/archive/$pkgver/$pkgname-$pkgver.tar.gz";
 'ghostscript918.patch')
-sha256sums=('5801664769ab88c2fb8ccb6ab0957cceabe6d4632b193041440e97790f53a9df'
+sha256sums=('afa48581f764a35e148909cc96a0308ec2356b5225b64af12492f3392f20ef1c'
 '0083d126e27f2223ec4226fc1d71c9c84106968a0fdf65de838aee1e4882bfdb')
 
 install=install



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

2021-12-07 Thread Antonio Rojas via arch-commits
Date: Monday, December 6, 2021 @ 20:50:34
  Author: arojas
Revision: 1065376

archrelease: copy trunk to community-any

Added:
  python-dephell-markers/repos/community-any/PKGBUILD
(from rev 1065375, python-dephell-markers/trunk/PKGBUILD)
Deleted:
  python-dephell-markers/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-06 20:50:23 UTC (rev 1065375)
+++ PKGBUILD2021-12-06 20:50:34 UTC (rev 1065376)
@@ -1,42 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=dephell_markers
-pkgname=python-dephell-markers
-pkgver=1.0.1
-pkgrel=6
-pkgdesc="Work with environment markers (PEP-496)"
-arch=('any')
-url="https://github.com/dephell/${_pkgname}";
-license=('MIT')
-depends=('python-attrs' 'python-dephell-specifier' 'python-packaging')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";)
-sha256sums=('a9fcf0a4acb59e9fe261d3304a25f33b4b743598f83825888ab0359b75e5e96f')
-b2sums=('f5dbc8d8851de24e447f7aa1d1c2022b1cb5ce42ed2ab7319fc7b065ab68de46f8a38cbefe94e46096deca42f7136e9a5a0af8a44c5ce19bcd5808c59e7ba17f')
-
-prepare() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-# pycache slipped into release tarballs
-find . -name \*.pyc -delete
-}
-
-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 "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-dephell-markers/repos/community-any/PKGBUILD (from rev 1065375, 
python-dephell-markers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-06 20:50:34 UTC (rev 1065376)
@@ -0,0 +1,42 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=dephell_markers
+pkgname=python-dephell-markers
+pkgver=1.0.3
+pkgrel=1
+pkgdesc="Work with environment markers (PEP-496)"
+arch=('any')
+url="https://github.com/dephell/${_pkgname}";
+license=('MIT')
+depends=('python-attrs' 'python-dephell-specifier' 'python-packaging')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";)
+sha256sums=('525e17914e705acf8652dd8681fccdec912432a747d8def4720f49416817f2d4')
+b2sums=('e0d3f64cfb0b96a1c18c43c1d050d23477c2e7e6b00142e53d742cdfe8e9d6c8172c91a97c8607e220b34268976ecb2611aa617fbd3319117e9d3782ada2fac2')
+
+prepare() {
+cd ${_pkgname}-${pkgver}
+
+# pycache slipped into release tarballs
+find . -name \*.pyc -delete
+}
+
+build(){
+cd ${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd ${_pkgname}-${pkgver}
+
+python -m pytest
+}
+
+package() {
+cd ${_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 zola/trunk (PKGBUILD)

2021-12-07 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, December 7, 2021 @ 07:02:40
  Author: svenstaro
Revision: 1065474

upgpkg: zola 0.15.0-1

Modified:
  zola/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 06:55:17 UTC (rev 1065473)
+++ PKGBUILD2021-12-07 07:02:40 UTC (rev 1065474)
@@ -1,9 +1,9 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Maintainer: Caleb Maclennan 
 
 pkgname=zola
-pkgver=0.14.1
-pkgrel=2
+pkgver=0.15.0
+pkgrel=1
 pkgdesc="An opinionated static site generator"
 arch=('x86_64')
 url="https://github.com/getzola/zola";
@@ -11,7 +11,7 @@
 makedepends=('cargo')
 license=('MIT')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/getzola/zola/archive/v${pkgver}.tar.gz";)
-sha256sums=('28e50071009a1430c5f8df94e2585d095f85f906f04101fe35ee9ed53c353cc4')
+sha256sums=('944e200a8ad5f4126ca08bbae576d1979b99755b554460f0f6fa3ba0924be30d')
 
 prepare() {
   cd zola-$pkgver



[arch-commits] Commit in filesystem/repos (28 files)

2021-12-07 Thread Sébastien Luttringer via arch-commits
Date: Tuesday, December 7, 2021 @ 02:43:57
  Author: seblu
Revision: 430768

archrelease: copy trunk to testing-x86_64

Added:
  filesystem/repos/testing-x86_64/
  filesystem/repos/testing-x86_64/PKGBUILD
(from rev 430767, filesystem/trunk/PKGBUILD)
  filesystem/repos/testing-x86_64/archlinux-logo-text-dark.svg
(from rev 430767, filesystem/trunk/archlinux-logo-text-dark.svg)
  filesystem/repos/testing-x86_64/archlinux-logo-text.svg
(from rev 430767, filesystem/trunk/archlinux-logo-text.svg)
  filesystem/repos/testing-x86_64/archlinux-logo.png
(from rev 430767, filesystem/trunk/archlinux-logo.png)
  filesystem/repos/testing-x86_64/archlinux-logo.svg
(from rev 430767, filesystem/trunk/archlinux-logo.svg)
  filesystem/repos/testing-x86_64/crypttab
(from rev 430767, filesystem/trunk/crypttab)
  filesystem/repos/testing-x86_64/env-generator
(from rev 430767, filesystem/trunk/env-generator)
  filesystem/repos/testing-x86_64/fstab
(from rev 430767, filesystem/trunk/fstab)
  filesystem/repos/testing-x86_64/group
(from rev 430767, filesystem/trunk/group)
  filesystem/repos/testing-x86_64/gshadow
(from rev 430767, filesystem/trunk/gshadow)
  filesystem/repos/testing-x86_64/host.conf
(from rev 430767, filesystem/trunk/host.conf)
  filesystem/repos/testing-x86_64/hosts
(from rev 430767, filesystem/trunk/hosts)
  filesystem/repos/testing-x86_64/issue
(from rev 430767, filesystem/trunk/issue)
  filesystem/repos/testing-x86_64/ld.so.conf
(from rev 430767, filesystem/trunk/ld.so.conf)
  filesystem/repos/testing-x86_64/locale.sh
(from rev 430767, filesystem/trunk/locale.sh)
  filesystem/repos/testing-x86_64/mklogos.sh
(from rev 430767, filesystem/trunk/mklogos.sh)
  filesystem/repos/testing-x86_64/nsswitch.conf
(from rev 430767, filesystem/trunk/nsswitch.conf)
  filesystem/repos/testing-x86_64/os-release
(from rev 430767, filesystem/trunk/os-release)
  filesystem/repos/testing-x86_64/passwd
(from rev 430767, filesystem/trunk/passwd)
  filesystem/repos/testing-x86_64/profile
(from rev 430767, filesystem/trunk/profile)
  filesystem/repos/testing-x86_64/resolv.conf
(from rev 430767, filesystem/trunk/resolv.conf)
  filesystem/repos/testing-x86_64/securetty
(from rev 430767, filesystem/trunk/securetty)
  filesystem/repos/testing-x86_64/shadow
(from rev 430767, filesystem/trunk/shadow)
  filesystem/repos/testing-x86_64/shells
(from rev 430767, filesystem/trunk/shells)
  filesystem/repos/testing-x86_64/sysctl
(from rev 430767, filesystem/trunk/sysctl)
  filesystem/repos/testing-x86_64/sysusers
(from rev 430767, filesystem/trunk/sysusers)
  filesystem/repos/testing-x86_64/tmpfiles
(from rev 430767, filesystem/trunk/tmpfiles)

--+
 PKGBUILD |  132 +
 archlinux-logo-text-dark.svg |   18 +
 archlinux-logo-text.svg  |   18 +
 crypttab |   12 +++
 env-generator|3 
 fstab|4 +
 group|1 
 gshadow  |1 
 host.conf|4 +
 hosts|2 
 issue|2 
 ld.so.conf   |4 +
 locale.sh|   22 ++
 mklogos.sh   |   27 
 nsswitch.conf|   19 +
 os-release   |   10 +++
 passwd   |1 
 profile  |   50 +++
 resolv.conf  |2 
 securetty|   12 +++
 shadow   |1 
 shells   |5 +
 sysctl   |3 
 sysusers |   28 
 tmpfiles |   16 
 25 files changed, 397 insertions(+)

Copied: filesystem/repos/testing-x86_64/PKGBUILD (from rev 430767, 
filesystem/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-12-07 02:43:57 UTC (rev 430768)
@@ -0,0 +1,132 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Tom Gundersen 
+
+pkgname=filesystem
+pkgver=2021.12.07
+pkgrel=1
+pkgdesc='Base Arch Linux files'
+arch=('x86_64')
+license=('GPL')
+url='https://archlinux.org'
+depends=('iana-etc')
+backup=('etc/crypttab' 'etc/fstab' 'etc/group' 'etc/gshadow' 'etc/host.conf'
+'etc/hosts' 'etc/issue' 'etc/ld.so.conf' 'etc/nsswitch.conf'
+'etc/passwd' 'etc/profile' 'etc/resolv.conf' 'etc/securetty'
+'etc/shadow' 'etc/shells')
+source=('crypttab' 'env-generator' 'fstab' 'group' 'gshadow' 'host.conf' 
'hosts'
+'issue' 'ld.so.conf' 'locale.sh' 'nsswitch.conf' 'os-release'
+'passwd' 'profile' 'resolv.conf' 'securetty' 'shadow' 'shells' 'sysctl'
+'sysusers' 'tmpfiles' 'archlinux-logo.svg' 'archlinux-logo.p

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

2021-12-07 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, December 7, 2021 @ 07:02:50
  Author: svenstaro
Revision: 1065475

archrelease: copy trunk to community-x86_64

Added:
  zola/repos/community-x86_64/PKGBUILD
(from rev 1065474, zola/trunk/PKGBUILD)
Deleted:
  zola/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 07:02:40 UTC (rev 1065474)
+++ PKGBUILD2021-12-07 07:02:50 UTC (rev 1065475)
@@ -1,37 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Caleb Maclennan 
-
-pkgname=zola
-pkgver=0.14.1
-pkgrel=2
-pkgdesc="An opinionated static site generator"
-arch=('x86_64')
-url="https://github.com/getzola/zola";
-depends=('gcc-libs')
-makedepends=('cargo')
-license=('MIT')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/getzola/zola/archive/v${pkgver}.tar.gz";)
-sha256sums=('28e50071009a1430c5f8df94e2585d095f85f906f04101fe35ee9ed53c353cc4')
-
-prepare() {
-  cd zola-$pkgver
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd zola-$pkgver
-  cargo build --frozen --release
-}
-
-check() {
-  cd zola-$pkgver
-  cargo test --frozen
-}
-
-package() {
-  cd zola-$pkgver
-  install -Dm755 target/release/zola "$pkgdir"/usr/bin/zola
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: zola/repos/community-x86_64/PKGBUILD (from rev 1065474, 
zola/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 07:02:50 UTC (rev 1065475)
@@ -0,0 +1,37 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Caleb Maclennan 
+
+pkgname=zola
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="An opinionated static site generator"
+arch=('x86_64')
+url="https://github.com/getzola/zola";
+depends=('gcc-libs')
+makedepends=('cargo')
+license=('MIT')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/getzola/zola/archive/v${pkgver}.tar.gz";)
+sha256sums=('944e200a8ad5f4126ca08bbae576d1979b99755b554460f0f6fa3ba0924be30d')
+
+prepare() {
+  cd zola-$pkgver
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd zola-$pkgver
+  cargo build --frozen --release
+}
+
+check() {
+  cd zola-$pkgver
+  cargo test --frozen
+}
+
+package() {
+  cd zola-$pkgver
+  install -Dm755 target/release/zola "$pkgdir"/usr/bin/zola
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-12-07 Thread Daniel M. Capella via arch-commits
Date: Tuesday, December 7, 2021 @ 02:25:15
  Author: polyzen
Revision: 1065432

archrelease: copy trunk to community-any

Added:
  pyright/repos/community-any/PKGBUILD
(from rev 1065431, pyright/trunk/PKGBUILD)
Deleted:
  pyright/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 02:24:53 UTC (rev 1065431)
+++ PKGBUILD2021-12-07 02:25:15 UTC (rev 1065432)
@@ -1,42 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Kaizhao Zhang 
-
-pkgname=pyright
-pkgver=1.1.192
-pkgrel=1
-pkgdesc='Type checker for the Python language'
-arch=('any')
-url=https://github.com/microsoft/pyright
-license=('MIT')
-depends=('nodejs>=12')
-makedepends=('npm')
-source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-b2sums=('4049c2cfd77ad5261aedaf7b6ecf495d5d0b26de6efcf19101cf08fb4d3cbac617acc5fdcfdb6ef497ed92be31f8ea78083eef3965f0e99e18dc79427a882c2f')
-
-prepare() {
-  cd $pkgname-$pkgver
-  npm ci
-}
-
-build() {
-  cd $pkgname-$pkgver/packages/$pkgname
-  npm run build
-}
-
-package() {
-  install -d "$pkgdir"/usr/bin
-  ln -s ../lib/node_modules/$pkgname/index.js "$pkgdir"/usr/bin/$pkgname
-  ln -s ../lib/node_modules/$pkgname/langserver.index.js \
-"$pkgdir"/usr/bin/$pkgname-langserver
-
-  cd $pkgname-$pkgver
-  install -d "$pkgdir"/usr/share/doc/$pkgname
-  cp -r {CONTRIBUTING,README}.md docs "$pkgdir"/usr/share/doc/$pkgname
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE.txt
-
-  cd packages/$pkgname
-  install -d "$pkgdir"/usr/lib/node_modules/$pkgname
-  cp -r dist {,langserver.}index.js "$pkgdir"/usr/lib/node_modules/$pkgname
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pyright/repos/community-any/PKGBUILD (from rev 1065431, 
pyright/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 02:25:15 UTC (rev 1065432)
@@ -0,0 +1,42 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Kaizhao Zhang 
+
+pkgname=pyright
+pkgver=1.1.193
+pkgrel=1
+pkgdesc='Type checker for the Python language'
+arch=('any')
+url=https://github.com/microsoft/pyright
+license=('MIT')
+depends=('nodejs>=12')
+makedepends=('npm')
+source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+b2sums=('d91202124723f8de6e18acedd64d9788f7cd9f462e6e0754fd77bc614775d61ddfc3ca60081d8da718160a072df22acc7a1765bb9ff4e5859b1c3d4548c086b0')
+
+prepare() {
+  cd $pkgname-$pkgver
+  npm ci
+}
+
+build() {
+  cd $pkgname-$pkgver/packages/$pkgname
+  npm run build
+}
+
+package() {
+  install -d "$pkgdir"/usr/bin
+  ln -s ../lib/node_modules/$pkgname/index.js "$pkgdir"/usr/bin/$pkgname
+  ln -s ../lib/node_modules/$pkgname/langserver.index.js \
+"$pkgdir"/usr/bin/$pkgname-langserver
+
+  cd $pkgname-$pkgver
+  install -d "$pkgdir"/usr/share/doc/$pkgname
+  cp -r {CONTRIBUTING,README}.md docs "$pkgdir"/usr/share/doc/$pkgname
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE.txt
+
+  cd packages/$pkgname
+  install -d "$pkgdir"/usr/lib/node_modules/$pkgname
+  cp -r dist {,langserver.}index.js "$pkgdir"/usr/lib/node_modules/$pkgname
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-12-07 Thread Antonio Rojas via arch-commits
Date: Monday, December 6, 2021 @ 20:50:23
  Author: arojas
Revision: 1065375

Update to 1.0.3

Modified:
  python-dephell-markers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-06 20:46:34 UTC (rev 1065374)
+++ PKGBUILD2021-12-06 20:50:23 UTC (rev 1065375)
@@ -2,8 +2,8 @@
 
 _pkgname=dephell_markers
 pkgname=python-dephell-markers
-pkgver=1.0.1
-pkgrel=8
+pkgver=1.0.3
+pkgrel=1
 pkgdesc="Work with environment markers (PEP-496)"
 arch=('any')
 url="https://github.com/dephell/${_pkgname}";
@@ -12,11 +12,11 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
 
source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";)
-sha256sums=('a9fcf0a4acb59e9fe261d3304a25f33b4b743598f83825888ab0359b75e5e96f')
-b2sums=('f5dbc8d8851de24e447f7aa1d1c2022b1cb5ce42ed2ab7319fc7b065ab68de46f8a38cbefe94e46096deca42f7136e9a5a0af8a44c5ce19bcd5808c59e7ba17f')
+sha256sums=('525e17914e705acf8652dd8681fccdec912432a747d8def4720f49416817f2d4')
+b2sums=('e0d3f64cfb0b96a1c18c43c1d050d23477c2e7e6b00142e53d742cdfe8e9d6c8172c91a97c8607e220b34268976ecb2611aa617fbd3319117e9d3782ada2fac2')
 
 prepare() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
+cd ${_pkgname}-${pkgver}
 
 # pycache slipped into release tarballs
 find . -name \*.pyc -delete
@@ -23,19 +23,19 @@
 }
 
 build(){
-cd "${srcdir}"/${_pkgname}-${pkgver}
+cd ${_pkgname}-${pkgver}
 
 python setup.py build
 }
 
 check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
+cd ${_pkgname}-${pkgver}
 
 python -m pytest
 }
 
 package() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
+cd ${_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 meek/trunk (PKGBUILD)

2021-12-07 Thread Felix Yan via arch-commits
Date: Tuesday, December 7, 2021 @ 13:14:15
  Author: felixonmars
Revision: 1065530

upgpkg: meek 0.36.0-1

Modified:
  meek/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 13:14:07 UTC (rev 1065529)
+++ PKGBUILD2021-12-07 13:14:15 UTC (rev 1065530)
@@ -3,7 +3,7 @@
 # Contributor: N. Izumi aka izmntuk
 
 pkgname=meek
-pkgver=0.35.0
+pkgver=0.36.0
 pkgrel=1
 arch=('x86_64')
 pkgdesc='A pluggable transport proxy written in Go'



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Monday, December 6, 2021 @ 23:18:24
  Author: foutrelis
Revision: 1065418

Remove previous patch; fixed twisted instead

Modified:
  python-pytest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-06 23:14:04 UTC (rev 1065417)
+++ PKGBUILD2021-12-06 23:18:24 UTC (rev 1065418)
@@ -18,12 +18,9 @@
   'lsof' 'python-asynctest' 'python-decorator' 'python-docutils'
   'python-jinja' 'python-numpy' 'python-pexpect' 'python-pygments'
   'python-pytest-xdist' 'python-twisted')
-source=("https://files.pythonhosted.org/packages/source/p/pytest/pytest-$pkgver.tar.gz";
-
$pkgname-python310.patch::https://github.com/pytest-dev/pytest/commit/51293de324fc.patch)
-sha256sums=('131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89'
-'5c359d371c1fcca505c16514cc9881458957cdbdf729a16ed6e96885f9e34b23')
-b2sums=('9dfc87279617be58353566009325f929e6fa53d54fd4c665a75f3b359ab5415972d745a680eb85ab21ca9eaec84450bc1decd50566b0ccdf90d7551f3d03ee70'
-
'81025ccc1ea8b49470612b5724b38b57be367f4f8b981f42d64245b57fb3e8ef8b798088a7b61f8d7a07b0c5a787b101fc2fee38a83ea3a573bf9bb851e6e8e7')
+source=("https://files.pythonhosted.org/packages/source/p/pytest/pytest-$pkgver.tar.gz";)
+sha256sums=('131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89')
+b2sums=('9dfc87279617be58353566009325f929e6fa53d54fd4c665a75f3b359ab5415972d745a680eb85ab21ca9eaec84450bc1decd50566b0ccdf90d7551f3d03ee70')
 
 # Remove dep on setuptools_scm and workaround test failures
 prepare() {
@@ -33,9 +30,6 @@
   sed -i '/setuptools-scm\|wheel/d
   /\[tool.setuptools_scm\]/,/^$/d
   /_pytest.warning_types.PytestUnknownMarkWarning/a \"ignore:Creating a 
LegacyVersion has been deprecated and will be removed in the next major 
release:DeprecationWarning",' pyproject.toml
-
-  # https://github.com/pytest-dev/pytest/issues/8663
-  sed 's/pytester/testdir/' ../$pkgname-python310.patch | patch -Np1
 }
 
 build() {



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Tuesday, December 7, 2021 @ 13:31:21
  Author: felixonmars
Revision: 1065541

archrelease: copy trunk to community-staging-x86_64

Added:
  cinnamon/repos/community-staging-x86_64/
  
cinnamon/repos/community-staging-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
(from rev 1065540, 
cinnamon/trunk/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch)
  cinnamon/repos/community-staging-x86_64/PKGBUILD
(from rev 1065540, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-staging-x86_64/default-theme.patch
(from rev 1065540, cinnamon/trunk/default-theme.patch)
  cinnamon/repos/community-staging-x86_64/set_wheel.diff
(from rev 1065540, cinnamon/trunk/set_wheel.diff)

-+
 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch |   38 
 PKGBUILD|   84 
++
 default-theme.patch |   25 ++
 set_wheel.diff  |   55 ++
 4 files changed, 202 insertions(+)

Copied: 
cinnamon/repos/community-staging-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
 (from rev 1065540, 
cinnamon/trunk/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch)
===
--- 
community-staging-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
(rev 0)
+++ 
community-staging-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
2021-12-07 13:31:21 UTC (rev 1065541)
@@ -0,0 +1,38 @@
+From ac4d2fc9fafb38ebb02615a41b23cceca304e73a Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Tue, 20 Mar 2018 14:11:02 -0400
+Subject: [PATCH] cinnamon-settings: don't rely on the presence of
+ cinnamon-control-center
+
+The existence of the cinnamon-control-center binary does not even tell
+us what control center libraries are available. So instead, do the same
+thing we did for cinnamon-settings modules, and check if the library
+exists.
+---
+ files/usr/bin/cinnamon-settings | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/files/usr/bin/cinnamon-settings b/files/usr/bin/cinnamon-settings
+index 9fbdbecd2..98ca454a5 100755
+--- a/files/usr/bin/cinnamon-settings
 b/files/usr/bin/cinnamon-settings
+@@ -58,6 +58,7 @@ Available types of sort, and corresponding numbers:
+ import getopt
+ import os
+ import sys
++import sysconfig
+ 
+ def usage():
+ print("""Usage:
+@@ -119,7 +120,7 @@ if len(sys.argv) > 1:
+ 
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) 
+ tuple(sys.argv[1:]))
+ elif 
os.path.exists("/usr/share/cinnamon/cinnamon-settings/modules/cs_%s.py" % 
module):
+ 
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) 
+ tuple(sys.argv[1:]))
+-elif os.path.exists("/usr/bin/cinnamon-control-center"):
++elif os.path.exists(os.path.join(sysconfig.get_config_var("LIBDIR"), 
"cinnamon-control-center-1/panels/lib%s.so" % module)):
+ 
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) 
+ tuple(sys.argv[1:]))
+ elif os.path.exists("/usr/bin/gnome-control-center"):
+ print ("Unknown module %s, calling gnome-control-center" % module)
+-- 
+2.22.0
+

Copied: cinnamon/repos/community-staging-x86_64/PKGBUILD (from rev 1065540, 
cinnamon/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-07 13:31:21 UTC (rev 1065541)
@@ -0,0 +1,84 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Contributor: M0Rf30
+# Contributor: unifiedlinux
+# Contributor: CReimer
+
+pkgname=cinnamon
+pkgver=5.0.7
+pkgrel=4
+pkgdesc="Linux desktop which provides advanced innovative features and a 
traditional user experience"
+arch=(x86_64)
+url="https://github.com/linuxmint/cinnamon";
+license=(GPL2)
+depends=(accountsservice caribou cinnamon-control-center cinnamon-menus 
cinnamon-screensaver
+ cinnamon-session cinnamon-settings-daemon cjs gnome-backgrounds
+ gnome-themes-extra gstreamer libcroco libgnomekbd libkeybinder3 
librsvg muffin
+ network-manager-applet nemo polkit-gnome python-cairo python-dbus
+ python-gobject python-pam python-pexpect python-pillow 
python-pyinotify
+ python-pytz python-tinycss2 python-xapp timezonemap xapps)
+optdepends=('blueberry: Bluetooth support'
+'cinnamon-translations: i18n'
+'gnome-panel: fallback mode'
+'metacity: fallback mode'
+'system-config-printer: printer settings'
+'wget: cover download support in audio applet')
+makedepends=(meson samurai go

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

2021-12-07 Thread Alexander Rødseth via arch-commits
Date: Tuesday, December 7, 2021 @ 11:55:06
  Author: arodseth
Revision: 1065519

archrelease: copy trunk to community-any

Added:
  grails/repos/community-any/PKGBUILD
(from rev 1065518, grails/trunk/PKGBUILD)
Deleted:
  grails/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 11:51:44 UTC (rev 1065518)
+++ PKGBUILD2021-12-07 11:55:06 UTC (rev 1065519)
@@ -1,51 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Levente Polyak 
-
-pkgbase=grails
-pkgname=(grails grails-docs)
-pkgver=5.0.2
-pkgrel=1
-pkgdesc='Groovy on rails, web framework'
-url='https://grails.org/'
-arch=(any)
-license=(Apache)
-makedepends=(apache-ant java-environment junit setconf unzip)
-optdepends=('grails-docs: documentation for grails'
-'groovy: the groovy programming language')
-options=('!emptydirs')
-noextract=("${pkgname[1]}-${pkgver}.zip")
-source=(${pkgname[0]}-${pkgver}.zip::https://github.com/grails/grails-core/releases/download/v${pkgver}/grails-${pkgver}.zip
-
${pkgname[1]}-${pkgver}.zip::https://github.com/grails/grails-doc/releases/download/v${pkgver}/grails-docs.zip)
-b2sums=('3f99158bda95dee90ab8433aff6cea4de3579b125b2c1ee0848dacb5b804573173dcd1bdfc02ec4407a842079e26adf5c54a1e3dbafa70de8cd5bb4b6b42b77b'
-
'1657c1a0d147dd01651643d8501dcf04ab32ace29b30b9cac23c1e6ce29b24cde8bed287d1724ab11be3372afb61be97ebdf1dcc1c68840524e634cf784258e4')
-
-prepare() {
-  cd $pkgbase-$pkgver
-  echo 'export GRAILS_HOME=/usr/share/grails' > "${srcdir}/${pkgbase}.profile"
-  env
-  setconf bin/grails APP_HOME /usr/share/grails
-  tail bin/grails
-}
-
-package_grails() {
-  depends=('java-environment' 'junit' 'bash')
-
-  install -Dm755 $pkgbase.profile "$pkgdir/etc/profile.d/$pkgname.sh"
-  cd $pkgbase-$pkgver
-  install -d "$pkgdir/usr/share/pixmaps"
-  cp -r . "$pkgdir/usr/share/$pkgname"
-  install -Dm755 bin/grails "$pkgdir/usr/bin/grails"
-  install -Dm644 media/icons/*.png -t "$pkgdir/usr/share/pixmaps"
-
-  # clean up
-  cd "$pkgdir/usr/share/$pkgname"
-  rm -rf doc INSTALL LICENSE README
-  find "${pkgdir}/usr/share" -name "*.bat" -exec rm {} \;
-}
-
-package_grails-docs() {
-  pkgdesc='Documentation for Grails'
-  install -d "$pkgdir/usr/share/doc" "$pkgdir/usr/share/grails"
-  unzip "grails-docs-$pkgver.zip" -d "$pkgdir/usr/share/doc/grails-$pkgver"
-  ln -s "/usr/share/doc/grails-$pkgver" "$pkgdir/usr/share/grails/doc"
-}

Copied: grails/repos/community-any/PKGBUILD (from rev 1065518, 
grails/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 11:55:06 UTC (rev 1065519)
@@ -0,0 +1,51 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Levente Polyak 
+
+pkgbase=grails
+pkgname=(grails grails-docs)
+pkgver=5.0.2
+pkgrel=1
+pkgdesc='Groovy on rails, web framework'
+url='https://grails.org/'
+arch=(any)
+license=(Apache)
+makedepends=(apache-ant java-environment junit setconf unzip)
+optdepends=('grails-docs: documentation for grails'
+'groovy: the groovy programming language')
+options=('!emptydirs')
+noextract=("${pkgname[1]}-${pkgver}.zip")
+source=(${pkgname[0]}-${pkgver}.zip::https://github.com/grails/grails-core/releases/download/v${pkgver}/grails-${pkgver}.zip
+
${pkgname[1]}-${pkgver}.zip::https://github.com/grails/grails-doc/releases/download/v${pkgver}/grails-docs.zip)
+b2sums=('3f99158bda95dee90ab8433aff6cea4de3579b125b2c1ee0848dacb5b804573173dcd1bdfc02ec4407a842079e26adf5c54a1e3dbafa70de8cd5bb4b6b42b77b'
+
'1657c1a0d147dd01651643d8501dcf04ab32ace29b30b9cac23c1e6ce29b24cde8bed287d1724ab11be3372afb61be97ebdf1dcc1c68840524e634cf784258e4')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  echo 'export GRAILS_HOME=/usr/share/grails' > "${srcdir}/${pkgbase}.profile"
+  env
+  setconf bin/grails APP_HOME /usr/share/grails
+  tail bin/grails
+}
+
+package_grails() {
+  depends=('java-environment' 'junit' 'bash')
+
+  install -Dm755 $pkgbase.profile "$pkgdir/etc/profile.d/$pkgname.sh"
+  cd $pkgbase-$pkgver
+  install -d "$pkgdir/usr/share/pixmaps"
+  cp -r . "$pkgdir/usr/share/$pkgname"
+  install -Dm755 bin/grails "$pkgdir/usr/bin/grails"
+  install -Dm644 media/icons/*.png -t "$pkgdir/usr/share/pixmaps"
+
+  # clean up
+  cd "$pkgdir/usr/share/$pkgname"
+  rm -rf doc INSTALL LICENSE README
+  find "${pkgdir}/usr/share" -name "*.bat" -exec rm {} \;
+}
+
+package_grails-docs() {
+  pkgdesc='Documentation for Grails'
+  install -d "$pkgdir/usr/share/doc" "$pkgdir/usr/share/grails"
+  unzip "grails-docs-$pkgver.zip" -d "$pkgdir/usr/share/doc/grails-$pkgver"
+  ln -s "/usr/share/doc/grails-$pkgver" "$pkgdir/usr/share/grails/doc"
+}



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

2021-12-07 Thread Daniel M. Capella via arch-commits
Date: Tuesday, December 7, 2021 @ 02:54:51
  Author: polyzen
Revision: 1065438

archrelease: copy trunk to community-any

Added:
  eslint/repos/community-any/PKGBUILD
(from rev 1065437, eslint/trunk/PKGBUILD)
Deleted:
  eslint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 02:54:28 UTC (rev 1065437)
+++ PKGBUILD2021-12-07 02:54:51 UTC (rev 1065438)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Daniel M. Capella 
-
-pkgname=eslint
-pkgver=8.3.0
-pkgrel=1
-pkgdesc='An AST-based pattern checker for JavaScript'
-arch=('any')
-url='https://eslint.org'
-license=('MIT')
-depends=('acorn' 'nodejs')
-makedepends=('npm' 'rsync')
-options=('!emptydirs')
-source=("https://github.com/eslint/eslint/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
-b2sums=('ea0da8c8da5c124ca951938f7c1267977da6c1350a3c4a08b6eaa3f8457520a4bcdd02bc8e4421f186154e68867fe6a070de95575532ff764a76b0598a40d520')
-
-prepare() {
-  cd eslint-$pkgver
-  # Dependencies still pin older ESLint
-  npm install --force
-}
-
-check() {
-  cd eslint-$pkgver
-  node Makefile mocha
-}
-
-package() {
-  cd eslint-$pkgver
-
-  npm prune --production
-
-  install -d "$pkgdir"/usr/bin
-  ln -s ../lib/node_modules/$pkgname/bin/$pkgname.js "$pkgdir"/usr/bin/$pkgname
-  install -Dt "$pkgdir"/usr/lib/node_modules/$pkgname/bin bin/$pkgname.js
-  rsync -r --exclude .cache conf lib messages node_modules package.json \
-"$pkgdir"/usr/lib/node_modules/$pkgname
-  install -Dm644 -t "$pkgdir"/usr/share/doc/$pkgname README.md
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-
-  # Experimental dedup
-  rm -r "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/acorn
-}

Copied: eslint/repos/community-any/PKGBUILD (from rev 1065437, 
eslint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 02:54:51 UTC (rev 1065438)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Maintainer: Daniel M. Capella 
+
+pkgname=eslint
+pkgver=8.4.1
+pkgrel=1
+pkgdesc='An AST-based pattern checker for JavaScript'
+arch=('any')
+url='https://eslint.org'
+license=('MIT')
+depends=('acorn' 'nodejs')
+makedepends=('npm' 'rsync')
+options=('!emptydirs')
+source=("https://github.com/eslint/eslint/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
+b2sums=('da297e857d05777be0ab56ebe8b02e774316236cee1dffe785f4b2e1f5d44ac261d45be215e541d4423f1bd09876548151b9c88395f2c97a89d68b87e941158c')
+
+prepare() {
+  cd eslint-$pkgver
+  # Dependencies still pin older ESLint
+  npm install --force
+}
+
+check() {
+  cd eslint-$pkgver
+  node Makefile mocha
+}
+
+package() {
+  cd eslint-$pkgver
+
+  npm prune --production
+
+  install -d "$pkgdir"/usr/bin
+  ln -s ../lib/node_modules/$pkgname/bin/$pkgname.js "$pkgdir"/usr/bin/$pkgname
+  install -Dt "$pkgdir"/usr/lib/node_modules/$pkgname/bin bin/$pkgname.js
+  rsync -r --exclude .cache conf lib messages node_modules package.json \
+"$pkgdir"/usr/lib/node_modules/$pkgname
+  install -Dm644 -t "$pkgdir"/usr/share/doc/$pkgname README.md
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+
+  # Experimental dedup
+  rm -r "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/acorn
+}



[arch-commits] Commit in (4 files)

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Tuesday, December 7, 2021 @ 03:50:06
  Author: foutrelis
Revision: 1065462

Re-add python-planout; still being used!

Added:
  python-planout/
  python-planout/trunk/
  python-planout/trunk/PKGBUILD
  python-planout/trunk/python310.patch

-+
 PKGBUILD|   41 +
 python310.patch |   12 
 2 files changed, 53 insertions(+)

Added: python-planout/trunk/PKGBUILD
===
--- python-planout/trunk/PKGBUILD   (rev 0)
+++ python-planout/trunk/PKGBUILD   2021-12-07 03:50:06 UTC (rev 1065462)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-planout
+pkgver=0.6.0
+_commit=6ba0aba6addb08e03ed6e2d21f9b224b3d56d503
+pkgrel=6
+pkgdesc="A framework for online field experimentation"
+arch=('any')
+url='https://facebook.github.io/planout'
+license=('custom:BSD')
+depends=('python-six')
+checkdepends=('python-pytest')
+source=("$pkgname-$_commit.tar.gz::https://github.com/facebook/planout/archive/$_commit.tar.gz";
+python310.patch)
+sha512sums=('a066aafcc61b0bad3a7ac439d6bc1bb1081405cf5dc99db49e31594dd45b1b3ff743216a1a9a12e04b35d176cdb8e296026f2b56c8cd28afe6edf7b7ea3275b9'
+
'd277e072def87b2ca07e11541fd42819d0794a904c2c9adb12dddf252b52f93c77d14c58cbe6943bc7bce924a2d62a4dddbfb57c77a2c7400440da06c7007fac')
+
+prepare() {
+  cd planout-$_commit
+  patch -Np1 -i ../python310.patch
+  # https://github.com/facebook/planout/pull/104
+  sed -e '42s/\t//' \
+  -e '43s/range(8)/list(range(8))/' \
+  -i python/planout/test/test_assignment.py
+}
+
+build() {
+  cd planout-$_commit/python
+  python setup.py build
+}
+
+check() {
+  cd planout-$_commit/python/planout/test
+  py.test
+}
+
+package() {
+  cd planout-$_commit/python
+  python setup.py install -O1 --root "$pkgdir"
+  install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Added: python-planout/trunk/python310.patch
===
--- python-planout/trunk/python310.patch(rev 0)
+++ python-planout/trunk/python310.patch2021-12-07 03:50:06 UTC (rev 
1065462)
@@ -0,0 +1,12 @@
+diff -upr 
planout-6ba0aba6addb08e03ed6e2d21f9b224b3d56d503.orig/python/planout/assignment.py
 planout-6ba0aba6addb08e03ed6e2d21f9b224b3d56d503/python/planout/assignment.py
+--- 
planout-6ba0aba6addb08e03ed6e2d21f9b224b3d56d503.orig/python/planout/assignment.py
 2016-04-14 21:25:24.0 +0300
 
planout-6ba0aba6addb08e03ed6e2d21f9b224b3d56d503/python/planout/assignment.py   
   2021-12-07 05:47:31.017734967 +0200
+@@ -7,7 +7,7 @@
+ 
+ from .ops.random import *
+ from .ops.base import PlanOutOp
+-from collections import MutableMapping
++from collections.abc import MutableMapping
+ 
+ 
+ # The Assignment class is the main work horse that lets you to execute



[arch-commits] Commit in python-flask-jwt/repos/community-staging-any (3 files)

2021-12-07 Thread Felix Yan via arch-commits
Date: Monday, December 6, 2021 @ 21:45:29
  Author: felixonmars
Revision: 1065398

archrelease: copy trunk to community-staging-any

Added:
  python-flask-jwt/repos/community-staging-any/PKGBUILD
(from rev 1065397, python-flask-jwt/trunk/PKGBUILD)
  python-flask-jwt/repos/community-staging-any/pyjwt-2.0.0.patch
(from rev 1065397, python-flask-jwt/trunk/pyjwt-2.0.0.patch)
Deleted:
  python-flask-jwt/repos/community-staging-any/PKGBUILD

---+
 PKGBUILD  |   79 +++-
 pyjwt-2.0.0.patch |   24 +++
 2 files changed, 66 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-06 21:45:19 UTC (rev 1065397)
+++ PKGBUILD2021-12-06 21:45:29 UTC (rev 1065398)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-flask-jwt
-pkgver=0.3.2
-pkgrel=8
-pkgdesc="JWT token authentication for Flask apps"
-url="https://github.com/mattupstate/flask-jwt";
-license=('MIT')
-arch=('any')
-depends=('python-flask' 'python-pyjwt')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/mattupstate/flask-jwt/archive/$pkgver.tar.gz";)
-sha512sums=('7c115ff4964da9a36303ac502dea98cd847abc3c1d45cd0be09b82ec761ee054d7ef97e25fd669112ab29dbfca00b4563914155ab1c8da4fc3d32f0063128b26')
-
-prepare() {
-  # Too old options
-  sed -i 's/,<1.5.0//' flask-jwt-$pkgver/requirements.txt
-  echo > flask-jwt-$pkgver/requirements-dev.txt
-  rm flask-jwt-$pkgver/setup.cfg
-}
-
-build() {
-  cd flask-jwt-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd flask-jwt-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd flask-jwt-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-flask-jwt/repos/community-staging-any/PKGBUILD (from rev 
1065397, python-flask-jwt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-06 21:45:29 UTC (rev 1065398)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-flask-jwt
+pkgver=0.3.2
+pkgrel=9
+pkgdesc="JWT token authentication for Flask apps"
+url="https://github.com/mattupstate/flask-jwt";
+license=('MIT')
+arch=('any')
+depends=('python-flask' 'python-pyjwt')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mattupstate/flask-jwt/archive/$pkgver.tar.gz";
+pyjwt-2.0.0.patch)
+sha512sums=('7c115ff4964da9a36303ac502dea98cd847abc3c1d45cd0be09b82ec761ee054d7ef97e25fd669112ab29dbfca00b4563914155ab1c8da4fc3d32f0063128b26'
+
'4ec0a901263ac39bdb204bb684413617a5e1250536b07d03eb89fe489c58492b1960be0d3c429f908ea71e782563c0c3c6fcd76ec40fa7ae829c9a772355ed7f')
+
+prepare() {
+  cd flask-jwt-$pkgver
+  # https://github.com/mattupstate/flask-jwt/issues/143
+  patch -Np1 -i ../pyjwt-2.0.0.patch
+  # Too old options
+  sed -i 's/,<1.5.0//' requirements.txt
+  echo > requirements-dev.txt
+  rm setup.cfg
+}
+
+build() {
+  cd flask-jwt-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd flask-jwt-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd flask-jwt-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: python-flask-jwt/repos/community-staging-any/pyjwt-2.0.0.patch (from 
rev 1065397, python-flask-jwt/trunk/pyjwt-2.0.0.patch)
===
--- pyjwt-2.0.0.patch   (rev 0)
+++ pyjwt-2.0.0.patch   2021-12-06 21:45:29 UTC (rev 1065398)
@@ -0,0 +1,24 @@
+diff -upr flask-jwt-0.3.2.orig/flask_jwt/__init__.py 
flask-jwt-0.3.2/flask_jwt/__init__.py
+--- flask-jwt-0.3.2.orig/flask_jwt/__init__.py 2015-11-03 16:41:38.0 
+0200
 flask-jwt-0.3.2/flask_jwt/__init__.py  2021-12-06 23:38:24.755653892 
+0200
+@@ -129,7 +129,7 @@ def _default_auth_request_handler():
+ 
+ 
+ def _default_auth_response_handler(access_token, identity):
+-return jsonify({'access_token': access_token.decode('utf-8')})
++return jsonify({'access_token': access_token})
+ 
+ 
+ def _default_jwt_error_handler(error):
+diff -upr flask-jwt-0.3.2.orig/tests/test_jwt.py 
flask-jwt-0.3.2/tests/test_jwt.py
+--- flask-jwt-0.3.2.orig/tests/test_jwt.py 2015-11-03 16:41:38.0 
+0200
 flask-jwt-0.3.2/tests/test_jwt.py  2021-12-06 23:38:31.295817131 +0200
+@@ -193,7 +193,7 @@ def test_custom_error_handler(client, jw
+ def test_custom_response_handler(client, jwt, user):
+ @jwt.auth_response_handler
+ def resp_handler(access_token, identity):
+-return jsonify({'mytoken': access_token.decode('utf-8')})
++return jsonify({'mytoken': access_token})
+ 
+ resp, jdata = post_json(

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

2021-12-07 Thread Daniel M. Capella via arch-commits
Date: Tuesday, December 7, 2021 @ 02:57:47
  Author: polyzen
Revision: 1065439

upgpkg: prettier 2.5.1-1

Modified:
  prettier/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 02:54:51 UTC (rev 1065438)
+++ PKGBUILD2021-12-07 02:57:47 UTC (rev 1065439)
@@ -3,7 +3,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=prettier
-pkgver=2.5.0
+pkgver=2.5.1
 pkgrel=1
 pkgdesc="An opinionated code formatter for JS, JSON, CSS, YAML and much more"
 arch=("any")
@@ -12,7 +12,7 @@
 depends=("nodejs")
 makedepends=("yarn")
 
source=("https://github.com/$pkgname/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha256sums=('9cb0c3c8cc903630ec83d9ea5436698444e03d251870730f7f9a681c714e208d')
+sha256sums=('86c6af269a5d6e15924d8d718ceb534542549ab94d66deade740d1465fa89d79')
 
 prepare() {
 cd "$pkgname-$pkgver"



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

2021-12-07 Thread Antonio Rojas via arch-commits
Date: Monday, December 6, 2021 @ 20:51:26
  Author: arojas
Revision: 1065378

archrelease: copy trunk to community-staging-any

Added:
  python-dephell-markers/repos/community-staging-any/PKGBUILD
(from rev 1065377, python-dephell-markers/trunk/PKGBUILD)
Deleted:
  python-dephell-markers/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-06 20:51:16 UTC (rev 1065377)
+++ PKGBUILD2021-12-06 20:51:26 UTC (rev 1065378)
@@ -1,42 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=dephell_markers
-pkgname=python-dephell-markers
-pkgver=1.0.1
-pkgrel=8
-pkgdesc="Work with environment markers (PEP-496)"
-arch=('any')
-url="https://github.com/dephell/${_pkgname}";
-license=('MIT')
-depends=('python-attrs' 'python-dephell-specifier' 'python-packaging')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";)
-sha256sums=('a9fcf0a4acb59e9fe261d3304a25f33b4b743598f83825888ab0359b75e5e96f')
-b2sums=('f5dbc8d8851de24e447f7aa1d1c2022b1cb5ce42ed2ab7319fc7b065ab68de46f8a38cbefe94e46096deca42f7136e9a5a0af8a44c5ce19bcd5808c59e7ba17f')
-
-prepare() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-# pycache slipped into release tarballs
-find . -name \*.pyc -delete
-}
-
-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 "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-dephell-markers/repos/community-staging-any/PKGBUILD (from rev 
1065377, python-dephell-markers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-06 20:51:26 UTC (rev 1065378)
@@ -0,0 +1,42 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=dephell_markers
+pkgname=python-dephell-markers
+pkgver=1.0.3
+pkgrel=2
+pkgdesc="Work with environment markers (PEP-496)"
+arch=('any')
+url="https://github.com/dephell/${_pkgname}";
+license=('MIT')
+depends=('python-attrs' 'python-dephell-specifier' 'python-packaging')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";)
+sha256sums=('525e17914e705acf8652dd8681fccdec912432a747d8def4720f49416817f2d4')
+b2sums=('e0d3f64cfb0b96a1c18c43c1d050d23477c2e7e6b00142e53d742cdfe8e9d6c8172c91a97c8607e220b34268976ecb2611aa617fbd3319117e9d3782ada2fac2')
+
+prepare() {
+cd ${_pkgname}-${pkgver}
+
+# pycache slipped into release tarballs
+find . -name \*.pyc -delete
+}
+
+build(){
+cd ${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd ${_pkgname}-${pkgver}
+
+python -m pytest
+}
+
+package() {
+cd ${_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 gitlab/trunk (PKGBUILD)

2021-12-07 Thread Anatol Pomozov via arch-commits
Date: Tuesday, December 7, 2021 @ 19:15:09
  Author: anatolik
Revision: 1065558

upgpkg: gitlab 14.5.2-1

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 18:23:42 UTC (rev 1065557)
+++ PKGBUILD2021-12-07 19:15:09 UTC (rev 1065558)
@@ -8,7 +8,7 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=14.5.0
+pkgver=14.5.2
 pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Monday, December 6, 2021 @ 21:01:48
  Author: felixonmars
Revision: 1065385

archrelease: copy trunk to community-staging-any

Added:
  python-flask-bootstrap/repos/community-staging-any/
  python-flask-bootstrap/repos/community-staging-any/PKGBUILD
(from rev 1065384, python-flask-bootstrap/trunk/PKGBUILD)

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

Copied: python-flask-bootstrap/repos/community-staging-any/PKGBUILD (from rev 
1065384, python-flask-bootstrap/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-12-06 21:01:48 UTC (rev 1065385)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-flask-bootstrap
+pkgver=3.3.7.1
+pkgrel=4
+pkgdesc="Ready-to-use Twitter-bootstrap for use in Flask"
+url="https://github.com/mbr/flask-bootstrap";
+license=('Apache')
+arch=('any')
+depends=('python-flask' 'python-dominate' 'python-visitor')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner' 'python-requests' 
'python-flask-appconfig' 'python-flask-nav'
+  'python-flask-wtf' 'python-flask-debug' 'python-email-validator')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mbr/flask-bootstrap/archive/$pkgver.tar.gz";)
+sha512sums=('010c71f69a95cb51afb449d1b43cb345ad23815ea89b368281f721a2af13cf2c143d67b586114898450d8e7fec413f45ff042cfca3dc1183cb0f50566e39fdc3')
+
+build() {
+  cd flask-bootstrap-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd flask-bootstrap-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd flask-bootstrap-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}



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

2021-12-07 Thread Jonas Witschel via arch-commits
Date: Monday, December 6, 2021 @ 22:06:30
  Author: diabonas
Revision: 1065406

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-06 22:06:11 UTC (rev 1065405)
+++ PKGBUILD2021-12-06 22:06:30 UTC (rev 1065406)
@@ -1,57 +0,0 @@
-# Maintainer: Jonas Witschel 
-pkgname=('libolm' 'python-olm')
-pkgver=3.2.6
-_tag=9f0ae8f08ca736c7242205293009e86c0456cd93 # git rev-parse "$pkgver"
-pkgrel=3
-pkgdesc='Implementation of the Olm and Megolm cryptographic ratchets'
-arch=('x86_64')
-url='https://gitlab.matrix.org/matrix-org/olm'
-license=('APACHE')
-makedepends=('git' 'cmake' 'python' 'python-cffi' 'python-future' 
'python-setuptools')
-checkdepends=('python-aspectlib' 'python-pytest' 'python-pytest-benchmark')
-source=("git+$url.git?signed#tag=$_tag")
-sha512sums=('SKIP')
-# PGP key can be obtained from 
https://packages.matrix.org/npm/olm/signing_key.asc
-validpgpkeys=('56CF24AEE5F4513280CC594BF75FDC22C1DE8453') # Matrix.org olm 

-
-pkgver() {
-   cd olm
-   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
-}
-
-build() {
-   cd olm
-   cmake -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=None \
- -DCMAKE_C_FLAGS="${CFLAGS} ${CPPFLAGS}" \
- -DCMAKE_CXX_FLAGS="${CXXFLAGS} ${CPPFLAGS}" \
- -B build
-   cmake --build build
-
-   cd python
-   make olm-python3
-}
-
-check() {
-   cd olm/build/tests
-   ctest
-
-   cd ../../python
-   PYTHONPATH="$(find build -name 'lib.*' -type d -print)" 
LD_LIBRARY_PATH=../build python -m pytest
-}
-
-package_libolm() {
-   depends=('gcc-libs')
-   provides=('libolm.so')
-
-   cd olm/build
-   make DESTDIR="$pkgdir" install
-}
-
-package_python-olm() {
-   pkgdesc='Python bindings for Olm'
-   depends=('libolm' 'python' 'python-cffi' 'python-future' 'libolm.so')
-
-   cd olm/python
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: libolm/repos/community-staging-x86_64/PKGBUILD (from rev 1065405, 
libolm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-06 22:06:30 UTC (rev 1065406)
@@ -0,0 +1,57 @@
+# Maintainer: Jonas Witschel 
+pkgname=('libolm' 'python-olm')
+pkgver=3.2.7
+_tag=c04287b7ae82a0212e6e5a084f2f38a93a5470ab # git rev-parse "$pkgver"
+pkgrel=2
+pkgdesc='Implementation of the Olm and Megolm cryptographic ratchets'
+arch=('x86_64')
+url='https://gitlab.matrix.org/matrix-org/olm'
+license=('APACHE')
+makedepends=('git' 'cmake' 'python' 'python-cffi' 'python-future' 
'python-setuptools')
+checkdepends=('python-aspectlib' 'python-pytest' 'python-pytest-benchmark')
+source=("git+$url.git?signed#tag=$_tag")
+sha512sums=('SKIP')
+# PGP key can be obtained from 
https://packages.matrix.org/npm/olm/signing_key.asc
+validpgpkeys=('56CF24AEE5F4513280CC594BF75FDC22C1DE8453') # Matrix.org olm 

+
+pkgver() {
+   cd olm
+   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
+build() {
+   cd olm
+   cmake -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=None \
+ -DCMAKE_C_FLAGS="${CFLAGS} ${CPPFLAGS}" \
+ -DCMAKE_CXX_FLAGS="${CXXFLAGS} ${CPPFLAGS}" \
+ -B build
+   cmake --build build
+
+   cd python
+   python setup.py build
+}
+
+check() {
+   cd olm/build/tests
+   ctest
+
+   cd ../../python
+   PYTHONPATH="$(find build -name 'lib.*' -type d -print)" 
LD_LIBRARY_PATH=../build python -m pytest
+}
+
+package_libolm() {
+   depends=('gcc-libs')
+   provides=('libolm.so')
+
+   cd olm/build
+   make DESTDIR="$pkgdir" install
+}
+
+package_python-olm() {
+   pkgdesc='Python bindings for Olm'
+   depends=('libolm' 'python' 'python-cffi' 'python-future' 'libolm.so')
+
+   cd olm/python
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Tuesday, December 7, 2021 @ 21:18:51
  Author: foutrelis
Revision: 430792

archrelease: copy trunk to extra-x86_64

Added:
  exo/repos/extra-x86_64/PKGBUILD
(from rev 430791, exo/trunk/PKGBUILD)
Deleted:
  exo/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 21:18:47 UTC (rev 430791)
+++ PKGBUILD2021-12-07 21:18:51 UTC (rev 430792)
@@ -1,37 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-# Contributor: Aurelien Foret 
-
-pkgname=exo
-pkgver=4.16.2
-pkgrel=1
-pkgdesc="Application library for Xfce"
-arch=('x86_64')
-url="https://www.xfce.org/";
-license=('GPL2' 'LGPL')
-groups=('xfce4')
-depends=('libxfce4ui' 'hicolor-icon-theme')
-makedepends=('intltool')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('4e89f5536afbf1cb9191cceb720fb2764df1a4fae3459512b7320841ab5a9e9d')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: exo/repos/extra-x86_64/PKGBUILD (from rev 430791, exo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 21:18:51 UTC (rev 430792)
@@ -0,0 +1,37 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+# Contributor: Aurelien Foret 
+
+pkgname=exo
+pkgver=4.16.3
+pkgrel=1
+pkgdesc="Application library for Xfce"
+arch=('x86_64')
+url="https://www.xfce.org/";
+license=('GPL2' 'LGPL')
+groups=('xfce4')
+depends=('libxfce4ui' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('722dff3c3fe23f0a65405e63889cf247c99d092d3f9fb16dec78d062cfb8fae6')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Tuesday, December 7, 2021 @ 13:15:47
  Author: foutrelis
Revision: 1065532

upgpkg: retext 7.2.2-1: new upstream release

Modified:
  retext/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 13:14:23 UTC (rev 1065531)
+++ PKGBUILD2021-12-07 13:15:47 UTC (rev 1065532)
@@ -7,7 +7,7 @@
 
 _pkgname=ReText
 pkgname=retext
-pkgver=7.2.1
+pkgver=7.2.2
 pkgrel=1
 pkgdesc="A simple editor for Markdown and ReStructuredText markup languages"
 arch=('any')
@@ -24,7 +24,7 @@
 'python-pyenchant: for spell checking support')
 
source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc}
 "x-retext-rst.xml")
-sha256sums=('4158bb1cf6ab70981ff1d65cad71a536f7bea4d691489c60f4c81a6104a67d55'
+sha256sums=('1c532be38b7eebd7a955f8fb958ec5f3bf91ad3e7580f81e6fc90546ff8089e8'
 'SKIP'
 '6fef80cccb14813d9cc74810c397a6cd7831d1ca243536759a47c6e8b6cc977a')
 validpgpkeys=('F24299FF1BBC9018B906A4CB6026936D2F1C8AE0') # Dmitry Shachnev 




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

2021-12-07 Thread Felix Yan via arch-commits
Date: Tuesday, December 7, 2021 @ 11:38:34
  Author: felixonmars
Revision: 1065516

archrelease: copy trunk to community-staging-any

Added:
  python-sphinx-argparse-cli/repos/community-staging-any/PKGBUILD
(from rev 1065515, python-sphinx-argparse-cli/trunk/PKGBUILD)
Deleted:
  python-sphinx-argparse-cli/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 11:38:25 UTC (rev 1065515)
+++ PKGBUILD2021-12-07 11:38:34 UTC (rev 1065516)
@@ -1,41 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=sphinx-argparse-cli
-pkgname=python-$_pkgname
-pkgver=1.7.0
-pkgrel=2
-pkgdesc='Render CLI arguments (sub-commands friendly) defined by argparse 
module'
-arch=('any')
-url='https://github.com/gaborbernat/sphinx-argparse-cli'
-license=('MIT')
-depends=('python' 'python-sphinx' 'python-docutils-stubs')
-makedepends=('python-setuptools-scm' 'python-toml')
-checkdepends=('python-pytest')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('0293245fdab15088b95ccfc5cc078c7a795f31772cba78899feadb32a740997e11998c58dc06524ad5109f277b48db64a9e9a087c99a843276dadd4b188652a0')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  PYTHONPATH=src pytest
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-sphinx-argparse-cli/repos/community-staging-any/PKGBUILD (from 
rev 1065515, python-sphinx-argparse-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 11:38:34 UTC (rev 1065516)
@@ -0,0 +1,41 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=sphinx-argparse-cli
+pkgname=python-$_pkgname
+pkgver=1.8.2
+pkgrel=1
+pkgdesc='Render CLI arguments (sub-commands friendly) defined by argparse 
module'
+arch=('any')
+url='https://github.com/tox-dev/sphinx-argparse-cli'
+license=('MIT')
+depends=('python' 'python-sphinx' 'python-docutils-stubs')
+makedepends=('python-setuptools-scm' 'python-toml')
+checkdepends=('python-pytest')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('c3340441335707bc589323ae9e2eea016f13bad8cc97991367aeab04d19acc75381785a78df17262b7437353a79d7ffa3ab78534f248375950fe77444a9dea21')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  PYTHONPATH=src pytest
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-12-07 Thread George Rawlinson via arch-commits
Date: Tuesday, December 7, 2021 @ 20:03:03
  Author: grawlinson
Revision: 1065564

upgpkg: nushell 0.41.0-1

New upstream release.

Modified:
  nushell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 19:36:39 UTC (rev 1065563)
+++ PKGBUILD2021-12-07 20:03:03 UTC (rev 1065564)
@@ -4,7 +4,7 @@
 # Contributor: Bumsik Kim 
 
 pkgname=nushell
-pkgver=0.40.0
+pkgver=0.41.0
 pkgrel=1
 pkgdesc="A new type of shell"
 arch=('x86_64')
@@ -14,8 +14,8 @@
 makedepends=('rust')
 install="$pkgname.install"
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nushell/nushell/archive/$pkgver.tar.gz";)
-sha512sums=('83e8382a524699bb8bca03b1262a4943eba9acd0e4855deb3556f03bbc53c643b4697dc7ffb09e9d9d05326d14f4101b793fea7f39bcb68ba10b532873a08daa')
-b2sums=('fe469a3bec4ea439bdfc064a770d50e589327e6e02a4611142103e0f49073ab827973afac11856cf281b229d9e820e7df3acb97d2c951191d008a0aa2c427635')
+sha512sums=('3f9c87f96e61bb98dfca3db5258a508843d76ec0fee443e1f2eab0c452ae0249bd2393a34bee04b128db4fac507c3d19cfe9ef41e3b74429954f1de8df9d5131')
+b2sums=('a3c73fc5123a80895b3cc1cefb4d9f940b2c93f50a543c6d10c4bed8baedeb4f92b3d5c32a2fc41fb82ce0e029876bb294ed743f42ad7e7fb5ef4d0b785adfb8')
 
 # NOTE: as of 0.40.0, upstream uses upx to reduce binary size, but this strips
 # RELRO + PIE, so we do not enable this



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Tuesday, December 7, 2021 @ 13:15:52
  Author: foutrelis
Revision: 1065533

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 13:15:47 UTC (rev 1065532)
+++ PKGBUILD2021-12-07 13:15:52 UTC (rev 1065533)
@@ -1,63 +0,0 @@
-# Maintainer: Jiachen Yang 
-# AUR Maintainer: Hyacinthe Cartiaux 
-# Contributor: Bartosz Chmura 
-# Contributor: Alessio Sergi 
-# Contributor: alfplayer
-# Contributor: menta
-
-_pkgname=ReText
-pkgname=retext
-pkgver=7.2.1
-pkgrel=1
-pkgdesc="A simple editor for Markdown and ReStructuredText markup languages"
-arch=('any')
-url="https://github.com/retext-project/retext";
-license=('GPL3')
-# for desktop integration: 'shared-mime-info' 'xdg-utils' 'desktop-file-utils'
-# for toolbar icons (see http://sourceforge.net/p/retext/tickets/44/): 'gconf'
-depends=('python-pyqt5' 'python-markups>=2.0.0' 'shared-mime-info' 'xdg-utils' 
'python-docutils'
- 'desktop-file-utils' 'hicolor-icon-theme' 'python-markdown' 
'python-pygments' 'python-chardet')
-makedepends=('imagemagick' 'qt5-tools' 'python-setuptools')
-checkdepends=('xorg-server-xvfb' 'python-chardet' 'python-docutils')
-optdepends=('qt5-webkit: for WebKit preview'
-'python-pyqtwebengine: for WebEngine preview'
-'python-pyenchant: for spell checking support')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc}
-"x-retext-rst.xml")
-sha256sums=('4158bb1cf6ab70981ff1d65cad71a536f7bea4d691489c60f4c81a6104a67d55'
-'SKIP'
-'6fef80cccb14813d9cc74810c397a6cd7831d1ca243536759a47c6e8b6cc977a')
-validpgpkeys=('F24299FF1BBC9018B906A4CB6026936D2F1C8AE0') # Dmitry Shachnev 

-
-build () {
-cd "$srcdir/${_pkgname}-${pkgver}"
-python3 setup.py build
-}
-
-check() {
-cd "$srcdir/${_pkgname}-${pkgver}"
-xvfb-run python3 setup.py test
-}
-
-package () {
-cd "$srcdir/${_pkgname}-${pkgver}"
-python3 setup.py install --root="$pkgdir" -O1
-
-# create /usr/share/* dirs
-_SHAREDIR="$pkgdir/usr/share"
-install -d -m 755 "$_SHAREDIR"/{applications,mime/packages}
-
-# install icons
-_ICONSDIR="$_SHAREDIR/icons/hicolor"
-for size in 16 22 24 32 48 128; do
-  install -d -m 755 "$_ICONSDIR"/${size}x${size}/apps
-  convert -resize $size +set date:create +set date:modify 
icons/$pkgname.png "$_ICONSDIR"/${size}x${size}/apps/$pkgname.png
-done
-install -d -m 755 $_ICONSDIR/scalable/apps
-install -m 644 icons/$pkgname.svg "$_ICONSDIR"/scalable/apps/$pkgname.svg
-
-# install mime files
-install -m 644 "$srcdir"/x-retext-rst.xml "$_SHAREDIR"/mime/packages/
-}
-
-# vim:set ts=2 sw=2 et:

Copied: retext/repos/community-any/PKGBUILD (from rev 1065532, 
retext/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 13:15:52 UTC (rev 1065533)
@@ -0,0 +1,63 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Hyacinthe Cartiaux 
+# Contributor: Bartosz Chmura 
+# Contributor: Alessio Sergi 
+# Contributor: alfplayer
+# Contributor: menta
+
+_pkgname=ReText
+pkgname=retext
+pkgver=7.2.2
+pkgrel=1
+pkgdesc="A simple editor for Markdown and ReStructuredText markup languages"
+arch=('any')
+url="https://github.com/retext-project/retext";
+license=('GPL3')
+# for desktop integration: 'shared-mime-info' 'xdg-utils' 'desktop-file-utils'
+# for toolbar icons (see http://sourceforge.net/p/retext/tickets/44/): 'gconf'
+depends=('python-pyqt5' 'python-markups>=2.0.0' 'shared-mime-info' 'xdg-utils' 
'python-docutils'
+ 'desktop-file-utils' 'hicolor-icon-theme' 'python-markdown' 
'python-pygments' 'python-chardet')
+makedepends=('imagemagick' 'qt5-tools' 'python-setuptools')
+checkdepends=('xorg-server-xvfb' 'python-chardet' 'python-docutils')
+optdepends=('qt5-webkit: for WebKit preview'
+'python-pyqtwebengine: for WebEngine preview'
+'python-pyenchant: for spell checking support')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc}
+"x-retext-rst.xml")
+sha256sums=('1c532be38b7eebd7a955f8fb958ec5f3bf91ad3e7580f81e6fc90546ff8089e8'
+'SKIP'
+'6fef80cccb14813d9c

[arch-commits] Commit in python-pytest-benchmark/repos/community-staging-any (3 files)

2021-12-07 Thread Felix Yan via arch-commits
Date: Tuesday, December 7, 2021 @ 14:14:32
  Author: felixonmars
Revision: 1065544

archrelease: copy trunk to community-staging-any

Added:
  python-pytest-benchmark/repos/community-staging-any/PKGBUILD
(from rev 1065543, python-pytest-benchmark/trunk/PKGBUILD)
  python-pytest-benchmark/repos/community-staging-any/python310.patch
(from rev 1065543, python-pytest-benchmark/trunk/python310.patch)
Deleted:
  python-pytest-benchmark/repos/community-staging-any/PKGBUILD

-+
 PKGBUILD|   87 --
 python310.patch |   62 ++
 2 files changed, 108 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 14:14:22 UTC (rev 1065543)
+++ PKGBUILD2021-12-07 14:14:32 UTC (rev 1065544)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-pytest-benchmark
-pkgver=3.4.1
-pkgrel=2
-pkgdesc='A py.test fixture for benchmarking code'
-arch=('any')
-license=('BSD')
-url='https://github.com/ionelmc/pytest-benchmark'
-depends=('python-pytest' 'python-py-cpuinfo')
-makedepends=('python-setuptools')
-checkdepends=('python-pygal' 'python-freezegun' 'mercurial' 'python-aspectlib'
-  'python-pytest-xdist' 'python-elasticsearch' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ionelmc/pytest-benchmark/archive/v$pkgver.tar.gz";)
-sha512sums=('54fb5e3a176578b3c8f339878c7a9d047a0785befcbba42bb68c34b4b636d9b6f6a2097b36c5eefbbcf1a91f943bdae762c7978a0dba1af53514052f513ef4c5')
-
-prepare() {
-  cd pytest-benchmark-$pkgver
-  sed -i 's/\[glob_or_file ...]]/...]/' tests/test_cli.py
-}
-
-build() {
-  cd pytest-benchmark-$pkgver
-  python setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd pytest-benchmark-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.10/site-packages:$PYTHONPATH" 
PATH="$PWD/tmp_install/usr/bin:$PATH" python -m pytest tests
-}
-
-package() {
-  cd "$srcdir"/pytest-benchmark-$pkgver
-  python setup.py install --root="$pkgdir"/ --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pytest-benchmark/repos/community-staging-any/PKGBUILD (from rev 
1065543, python-pytest-benchmark/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 14:14:32 UTC (rev 1065544)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pytest-benchmark
+pkgver=3.4.1
+pkgrel=3
+pkgdesc='A py.test fixture for benchmarking code'
+arch=('any')
+license=('BSD')
+url='https://github.com/ionelmc/pytest-benchmark'
+depends=('python-pytest' 'python-py-cpuinfo')
+makedepends=('python-setuptools')
+checkdepends=('python-pygal' 'python-freezegun' 'mercurial' 'python-aspectlib'
+  'python-pytest-xdist' 'python-elasticsearch' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ionelmc/pytest-benchmark/archive/v$pkgver.tar.gz";
+python310.patch)
+sha512sums=('54fb5e3a176578b3c8f339878c7a9d047a0785befcbba42bb68c34b4b636d9b6f6a2097b36c5eefbbcf1a91f943bdae762c7978a0dba1af53514052f513ef4c5'
+
'8f1c062bc502ea8ec0421509576bc1042354a5bc49f918ff7ceb8360387405f1897b1b79a1700d5ed506c326214a6222fc41353f68eeb72e37914e27ed30b1aa')
+
+prepare() {
+  cd pytest-benchmark-$pkgver
+  sed -i 's/\[glob_or_file ...]]/...]/' tests/test_cli.py
+
+  # https://github.com/ionelmc/pytest-benchmark/pull/210
+  patch -Np1 -i ../python310.patch
+}
+
+build() {
+  cd pytest-benchmark-$pkgver
+  python setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd pytest-benchmark-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.10/site-packages:$PYTHONPATH" 
PATH="$PWD/tmp_install/usr/bin:$PATH" python -m pytest tests
+}
+
+package() {
+  cd "$srcdir"/pytest-benchmark-$pkgver
+  python setup.py install --root="$pkgdir"/ --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: python-pytest-benchmark/repos/community-staging-any/python310.patch 
(from rev 1065543, python-pytest-benchmark/trunk/python310.patch)
===
--- python310.patch (rev 0)
+++ python310.patch 2021-12-07 14:14:32 UTC (rev 1065544)
@@ -0,0 +1,62 @@
+From b8c7d662f7b58ce48124c69082acf48acd0539bb Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Tue, 7 Dec 2021 15:55:02 +0200
+Subject: [PATCH] Fix test_cli.py::test_help* to work on Python 3.10
+
+From Python 3.10 release notes:
+
+Misleading phrase "optional arguments" was replaced with "options" in
+argparse help. Some tests might require adaptation if they rely

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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Monday, December 6, 2021 @ 22:07:22
  Author: foutrelis
Revision: 1065407

upgpkg: python-pytest 6.2.5-3: Python 3.10 rebuild

Modified:
  python-pytest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-06 22:06:30 UTC (rev 1065406)
+++ PKGBUILD2021-12-06 22:07:22 UTC (rev 1065407)
@@ -4,7 +4,7 @@
 
 pkgname=python-pytest
 pkgver=6.2.5
-pkgrel=2
+pkgrel=3
 pkgdesc="Simple powerful testing with Python"
 arch=('any')
 license=('MIT')



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

2021-12-07 Thread Antonio Rojas via arch-commits
Date: Tuesday, December 7, 2021 @ 17:29:03
  Author: arojas
Revision: 430788

archrelease: copy trunk to extra-x86_64

Added:
  cmake/repos/extra-x86_64/PKGBUILD
(from rev 430787, cmake/trunk/PKGBUILD)
  cmake/repos/extra-x86_64/cmake-cppflags.patch
(from rev 430787, cmake/trunk/cmake-cppflags.patch)
  cmake/repos/extra-x86_64/rebuild.list
(from rev 430787, cmake/trunk/rebuild.list)
Deleted:
  cmake/repos/extra-x86_64/PKGBUILD
  cmake/repos/extra-x86_64/cmake-cppflags.patch
  cmake/repos/extra-x86_64/rebuild.list

--+
 PKGBUILD |   94 -
 cmake-cppflags.patch |   52 +--
 rebuild.list |5 +-
 3 files changed, 76 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 17:28:51 UTC (rev 430787)
+++ PKGBUILD2021-12-07 17:29:03 UTC (rev 430788)
@@ -1,47 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=cmake
-pkgver=3.22.0
-pkgrel=1
-pkgdesc='A cross-platform open-source make system'
-arch=('x86_64')
-url="https://www.cmake.org/";
-license=('custom')
-depends=('curl' 'libarchive' 'hicolor-icon-theme' 'jsoncpp' 'libjsoncpp.so' 
'libuv' 'rhash')
-makedepends=('qt6-base' 'python-sphinx' 'emacs')
-optdepends=('qt6-base: cmake-gui')
-source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz";
- cmake-cppflags.patch)
-sha512sums=('72e4e39bfd0a918572228af68391422979f89a0a5020fae7764b5d7ba86a7a56e8174e22f1b0ffeb37b741c0a6118162a2a47655a03939ea0535453186ed385c'
-
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 -i ../cmake-cppflags.patch # Honor CPPFLAGS 
https://gitlab.kitware.com/cmake/cmake/issues/12928
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  export CXXFLAGS+=" ${CPPFLAGS}"
-  ./bootstrap --prefix=/usr \
---mandir=/share/man \
---docdir=/share/doc/cmake \
---sphinx-man \
---system-libs \
---qt-gui \
---parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  emacs -batch -f batch-byte-compile \
-"${pkgdir}"/usr/share/emacs/site-lisp/cmake-mode.el
-
-  install -Dm644 Copyright.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: cmake/repos/extra-x86_64/PKGBUILD (from rev 430787, 
cmake/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 17:29:03 UTC (rev 430788)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=cmake
+pkgver=3.22.1
+pkgrel=1
+pkgdesc='A cross-platform open-source make system'
+arch=('x86_64')
+url="https://www.cmake.org/";
+license=('custom')
+depends=('curl' 'libarchive' 'hicolor-icon-theme' 'jsoncpp' 'libjsoncpp.so' 
'libuv' 'rhash')
+makedepends=('qt6-base' 'python-sphinx' 'emacs')
+optdepends=('qt6-base: cmake-gui')
+source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz";
+ cmake-cppflags.patch)
+sha512sums=('b1e900fe573cd1cc76d26386f2298d7722737c9ff67930ee108994972b4561ef69caeb537177c9b95b7f17b755e20e034825d3807ea0d2dd4c391310b03adc11'
+
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ../cmake-cppflags.patch # Honor CPPFLAGS 
https://gitlab.kitware.com/cmake/cmake/issues/12928
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export CXXFLAGS+=" ${CPPFLAGS}"
+  ./bootstrap --prefix=/usr \
+--mandir=/share/man \
+--docdir=/share/doc/cmake \
+--sphinx-man \
+--system-libs \
+--qt-gui \
+--parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  emacs -batch -f batch-byte-compile \
+"${pkgdir}"/usr/share/emacs/site-lisp/cmake-mode.el
+
+  install -Dm644 Copyright.txt \
+"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: cmake-cppflags.patch
===
--- cmake-cppflags.patch2021-12-07 17:28:51 UTC (rev 430787)
+++ cmake-cppflags.patch2021-12-07 17:29:03 UTC (rev 430788)
@@ -1,26 +0,0 @@
-diff --git a/Modules/CMakeCInformation.cmake b/Modules/CMakeCInformation.cmake
-index f6d620f40e..325b11f25e 100644
 a/Modules/CMakeCInformation.cmake
-+++ b/Modules/CMakeCInformation.cmake
-@@ -100,7 +100,7 @@ if(NOT CMAKE_MODULE_EXISTS)
-   set(CMAKE_SHARED_MODULE_CREATE_C_FLAGS 
${CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS})
- endif()
- 
--set(CMAKE_C_FLAGS_INIT "$ENV{CFLAGS} $

[arch-commits] Commit in lib32-pango/repos/multilib-x86_64 (4 files)

2021-12-07 Thread Jan Steffens via arch-commits
Date: Tuesday, December 7, 2021 @ 11:00:21
  Author: heftig
Revision: 1065502

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-pango/repos/multilib-x86_64/PKGBUILD
(from rev 1065501, lib32-pango/trunk/PKGBUILD)
  lib32-pango/repos/multilib-x86_64/fix-test.diff
(from rev 1065501, lib32-pango/trunk/fix-test.diff)
Deleted:
  lib32-pango/repos/multilib-x86_64/PKGBUILD
  lib32-pango/repos/multilib-x86_64/fix-test.diff

---+
 PKGBUILD  |  121 
 fix-test.diff |   60 +--
 2 files changed, 92 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 10:57:20 UTC (rev 1065501)
+++ PKGBUILD2021-12-07 11:00:21 UTC (rev 1065502)
@@ -1,59 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Biru Ionut 
-# Contributor: Pierre Schmitz 
-# Contributor: Mikko Seppälä 
-
-pkgname=lib32-pango
-pkgver=1.50.0
-pkgrel=2
-epoch=1
-pkgdesc="A library for layout and rendering of text (32-bit)"
-url="https://www.pango.org/";
-arch=(x86_64)
-license=(LGPL)
-depends=(lib32-libthai lib32-cairo lib32-libxft lib32-harfbuzz lib32-fribidi 
pango)
-makedepends=(git meson)
-checkdepends=(ttf-dejavu cantarell-fonts)
-provides=(libpango{,cairo,ft2,xft}-1.0.so)
-_commit=e80e224baabc7bf22971d0a97c8b31d32fa8ca1c  # tags/1.50.0^0
-source=("git+https://gitlab.gnome.org/GNOME/pango.git#commit=$_commit";
-fix-test.diff)
-sha256sums=('SKIP'
-'e1c0638305c0f46653bd60b5dee0b3445dd6a6b9aff8cee70be7759c21ba1037')
-
-pkgver() {
-  cd pango
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd pango
-
-  # https://bugs.archlinux.org/task/72927
-  git cherry-pick -n f5fdfe4e16b7da761d918f40bb82dad52513c9ff
-
-  # Fix tests... seems to be a rounding error
-  git apply -3 ../fix-test.diff
-}
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
-
-  arch-meson pango build \
---libdir=/usr/lib32 \
--D introspection=disabled
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-  rm -r "$pkgdir"/usr/{bin,include}
-}
-
-# vim:set sw=2 et:

Copied: lib32-pango/repos/multilib-x86_64/PKGBUILD (from rev 1065501, 
lib32-pango/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 11:00:21 UTC (rev 1065502)
@@ -0,0 +1,62 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Biru Ionut 
+# Contributor: Pierre Schmitz 
+# Contributor: Mikko Seppälä 
+
+pkgname=lib32-pango
+pkgver=1.50.0
+pkgrel=3
+epoch=1
+pkgdesc="A library for layout and rendering of text (32-bit)"
+url="https://www.pango.org/";
+arch=(x86_64)
+license=(LGPL)
+depends=(lib32-libthai lib32-cairo lib32-libxft lib32-harfbuzz lib32-fribidi 
pango)
+makedepends=(git meson)
+checkdepends=(ttf-dejavu cantarell-fonts)
+provides=(libpango{,cairo,ft2,xft}-1.0.so)
+_commit=e80e224baabc7bf22971d0a97c8b31d32fa8ca1c  # tags/1.50.0^0
+source=("git+https://gitlab.gnome.org/GNOME/pango.git#commit=$_commit";
+fix-test.diff)
+sha256sums=('SKIP'
+'e1c0638305c0f46653bd60b5dee0b3445dd6a6b9aff8cee70be7759c21ba1037')
+
+pkgver() {
+  cd pango
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd pango
+
+  # https://bugs.archlinux.org/task/72927
+  git cherry-pick -n f5fdfe4e16b7da761d918f40bb82dad52513c9ff
+
+  # https://bugs.archlinux.org/task/72939
+  git cherry-pick -n 1cf8e9b3cada dc5b1fdea7d6
+
+  # Fix tests... seems to be a rounding error
+  git apply -3 ../fix-test.diff
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
+
+  arch-meson pango build \
+--libdir=/usr/lib32 \
+-D introspection=disabled
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+  rm -r "$pkgdir"/usr/{bin,include}
+}
+
+# vim:set sw=2 et:

Deleted: fix-test.diff
===
--- fix-test.diff   2021-12-07 10:57:20 UTC (rev 1065501)
+++ fix-test.diff   2021-12-07 11:00:21 UTC (rev 1065502)
@@ -1,30 +0,0 @@
-diff --git i/tests/layouts/valid-20.layout w/tests/layouts/valid-20.layout
-index 8217b28b..6e81507f 100644
 i/tests/layouts/valid-20.layout
-+++ w/tests/layouts/valid-20.layout
-@@ -140,23 +140,23 @@
- "glyph" : 244,
- "width" : 19456,
- "x-offset" : 14764,
--"y-offset" : 3844,
-+"y-offset" : 3845,
- "is-cluster-start" : true,
- "log-cluster" : 0
-   },
-   {
- "glyph" : 272,
- "width" : 1945

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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Tuesday, December 7, 2021 @ 14:33:28
  Author: foutrelis
Revision: 1065548

archrelease: copy trunk to community-staging-any

Added:
  mitmproxy/repos/community-staging-any/
  mitmproxy/repos/community-staging-any/PKGBUILD
(from rev 1065547, mitmproxy/trunk/PKGBUILD)

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

Copied: mitmproxy/repos/community-staging-any/PKGBUILD (from rev 1065547, 
mitmproxy/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-12-07 14:33:28 UTC (rev 1065548)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Simon 'ALSimon' Gilliot 
+# Contributor: Olivier Biesmans 
+# Contributor: Dobroslaw Kijowski
+
+pkgname=mitmproxy
+pkgver=7.0.4
+pkgrel=2
+pkgdesc='SSL-capable man-in-the-middle HTTP proxy'
+arch=('any')
+url='https://mitmproxy.org'
+license=('MIT')
+depends=('python-asgiref' 'python-blinker' 'python-brotli' 'python-click' 
'python-cryptography'
+ 'python-flask' 'python-h11' 'python-h2' 'python-hyperframe' 
'python-kaitaistruct'
+ 'python-ldap3' 'python-msgpack' 'python-passlib' 'python-protobuf' 
'python-pyopenssl'
+ 'python-pyparsing' 'python-pyperclip' 'python-ruamel-yaml' 
'python-setuptools'
+ 'python-sortedcontainers' 'python-tornado' 'python-urwid' 
'python-wsproto'
+ 'python-publicsuffix2' 'python-zstandard')
+checkdepends=('python-asynctest' 'python-parver' 'python-pytest-runner' 
'python-pytest-asyncio'
+  'python-requests' 'python-hypothesis')
+provides=('pathod')
+conflicts=('pathod')
+replaces=('pathod')
+source=("https://github.com/mitmproxy/mitmproxy/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
+sha512sums=('4224b44e609f84b974b5419c6ceb576845957968c786ee437bffb5fa5df685ce0712d5ef8c402d40c568406242f44692cc7f04037fadd19ecece8b112d73b7ae')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Let's remove all the upper bounds and use system ca-certificatescate store
+  # We have an old protobuf, but this should not be an issue
+  sed -e '/certifi/d' \
+  -e 's/, *<[0-9=.]*//' \
+  -e 's/protobuf>=3.14/protobuf>=3/' \
+  -i setup.py
+  sed -e '/import certifi/d' \
+  -e 's|certifi.where()|"/etc/ssl/certs/ca-certificates.crt"|' \
+  -i mitmproxy/net/tls.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $pkgname-$pkgver
+  python setup.py pytest --addopts "--deselect 
test/mitmproxy/test_version.py::test_get_version"
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir" -O1
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-12-07 Thread Alexander Rødseth via arch-commits
Date: Tuesday, December 7, 2021 @ 11:51:44
  Author: arodseth
Revision: 1065518

archrelease: copy trunk to community-any

Added:
  grails/repos/community-any/PKGBUILD
(from rev 1065517, grails/trunk/PKGBUILD)
Deleted:
  grails/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 11:51:37 UTC (rev 1065517)
+++ PKGBUILD2021-12-07 11:51:44 UTC (rev 1065518)
@@ -1,53 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Alexander Rødseth 
-
-pkgbase=grails
-pkgname=('grails' 'grails-docs')
-pkgver=4.0.11
-pkgrel=1
-pkgdesc='Groovy on rails, web framework'
-url='https://grails.org/'
-arch=('any')
-license=('Apache')
-makedepends=('apache-ant' 'unzip' 'setconf' 'junit' 'java-environment')
-optdepends=('groovy: the groovy programming language'
-'grails-docs: documentation for grails')
-options=('!emptydirs')
-noextract=("${pkgname[1]}-${pkgver}.zip")
-source=(${pkgname[0]}-${pkgver}.zip::https://github.com/grails/grails-core/releases/download/v${pkgver}/grails-${pkgver}.zip
-
${pkgname[1]}-${pkgver}.zip::https://github.com/grails/grails-doc/releases/download/v${pkgver}/grails-docs.zip)
-sha512sums=('149e670f600843db991e56fb44f02d31dab9b1b197bfc0fa2ad75129cb86c0e7be91fbbc71abdb73901ee3242cdf627992cd0f22e6526c7c616ac31e8697f9e4'
-
'6584475d654625446efea2a220993257f332d3e210db034ab6170a6848769d835db827612f31809ffda51107ffdc4cd535d655ada9c091ecaba18f3e74bdf3d2')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  echo 'export GRAILS_HOME=/usr/share/grails' > "${srcdir}/${pkgbase}.profile"
-  env
-  setconf bin/grails APP_HOME /usr/share/grails
-  tail bin/grails
-}
-
-package_grails() {
-  depends=('java-environment' 'junit' 'bash')
-
-  cd ${pkgname}-${pkgver}
-  install -d "${pkgdir}/usr/share/pixmaps"
-  cp -r . "${pkgdir}/usr/share/${pkgname}"
-  install -Dm 755 bin/grails "${pkgdir}/usr/bin/grails"
-  install -Dm 644 media/icons/*.png -t "${pkgdir}/usr/share/pixmaps"
-  install -Dm 755 "${srcdir}/${pkgbase}.profile" 
"${pkgdir}/etc/profile.d/${pkgname}.sh"
-
-  # clean up
-  cd "${pkgdir}/usr/share/${pkgname}"
-  rm -rf doc INSTALL LICENSE README
-  find "${pkgdir}/usr/share" -name "*.bat" -exec rm {} \;
-}
-
-package_grails-docs() {
-  pkgdesc='Documentation for Grails'
-  install -d "${pkgdir}/usr/share/doc" "${pkgdir}/usr/share/grails"
-  unzip "grails-docs-${pkgver}.zip" -d 
"${pkgdir}/usr/share/doc/grails-${pkgver}"
-  ln -s "/usr/share/doc/grails-${pkgver}" "${pkgdir}/usr/share/grails/doc"
-}
-
-# vim: ts=2 sw=2 et:

Copied: grails/repos/community-any/PKGBUILD (from rev 1065517, 
grails/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 11:51:44 UTC (rev 1065518)
@@ -0,0 +1,51 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Levente Polyak 
+
+pkgbase=grails
+pkgname=(grails grails-docs)
+pkgver=5.0.2
+pkgrel=1
+pkgdesc='Groovy on rails, web framework'
+url='https://grails.org/'
+arch=(any)
+license=(Apache)
+makedepends=(apache-ant java-environment junit setconf unzip)
+optdepends=('grails-docs: documentation for grails'
+'groovy: the groovy programming language')
+options=('!emptydirs')
+noextract=("${pkgname[1]}-${pkgver}.zip")
+source=(${pkgname[0]}-${pkgver}.zip::https://github.com/grails/grails-core/releases/download/v${pkgver}/grails-${pkgver}.zip
+
${pkgname[1]}-${pkgver}.zip::https://github.com/grails/grails-doc/releases/download/v${pkgver}/grails-docs.zip)
+b2sums=('3f99158bda95dee90ab8433aff6cea4de3579b125b2c1ee0848dacb5b804573173dcd1bdfc02ec4407a842079e26adf5c54a1e3dbafa70de8cd5bb4b6b42b77b'
+
'1657c1a0d147dd01651643d8501dcf04ab32ace29b30b9cac23c1e6ce29b24cde8bed287d1724ab11be3372afb61be97ebdf1dcc1c68840524e634cf784258e4')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  echo 'export GRAILS_HOME=/usr/share/grails' > "${srcdir}/${pkgbase}.profile"
+  env
+  setconf bin/grails APP_HOME /usr/share/grails
+  tail bin/grails
+}
+
+package_grails() {
+  depends=('java-environment' 'junit' 'bash')
+
+  install -Dm755 $pkgbase.profile "$pkgdir/etc/profile.d/$pkgname.sh"
+  cd $pkgbase-$pkgver
+  install -d "$pkgdir/usr/share/pixmaps"
+  cp -r . "$pkgdir/usr/share/$pkgname"
+  install -Dm755 bin/grails "$pkgdir/usr/bin/grails"
+  install -Dm644 media/icons/*.png -t "$pkgdir/usr/share/pixmaps"
+
+  # clean up
+  cd "$pkgdir/usr/share/$pkgname"
+  rm -rf doc INSTALL LICENSE README
+  find "${pkgdir}/usr/share" -name "*.bat" -exec rm {} \;
+}
+
+package_grails-docs() {
+  pkgdesc='Documentation for Grails'
+  install -d "$pkgdir/usr/share/doc" "$pkgdir/usr/share/grails"
+  unzip "grails-docs-$pkgver.zip" -d "$pkgdir/usr/share/doc/grails-$pkgver"
+  ln -s "/usr/share/doc/grails-$pkgver" "$pkgdir/usr/share/gr

[arch-commits] Commit in lib32-libcups/trunk (PKGBUILD cups-freebind.patch guid.patch)

2021-12-07 Thread Antonio Rojas via arch-commits
Date: Monday, December 6, 2021 @ 20:59:20
  Author: arojas
Revision: 1065381

Update to 2.4.0

Added:
  lib32-libcups/trunk/cups-freebind.patch
  lib32-libcups/trunk/guid.patch
Modified:
  lib32-libcups/trunk/PKGBUILD

-+
 PKGBUILD|   19 ---
 cups-freebind.patch |   15 +++
 guid.patch  |   39 +++
 3 files changed, 66 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-06 20:57:22 UTC (rev 1065380)
+++ PKGBUILD2021-12-06 20:59:20 UTC (rev 1065381)
@@ -2,7 +2,7 @@
 
 _pkgbasename=libcups
 pkgname=lib32-$_pkgbasename
-pkgver=2.3.3
+pkgver=2.4.0
 pkgrel=1
 pkgdesc="The CUPS Printing System - client libraries (32-bit)"
 arch=('x86_64')
@@ -9,11 +9,16 @@
 license=('Apache' 'custom')
 url="https://www.cups.org/";
 depends=(lib32-krb5 lib32-libtiff lib32-libpng lib32-gnutls $_pkgbasename)
-source=(https://github.com/apple/cups/releases/download/v${pkgver}/cups-${pkgver}-source.tar.gz{,.sig})
-sha256sums=('261fd948bce8647b6d5cb2a1784f0c24cc52b5c4e827b71d726020bcc502f3ee'
-'SKIP')
-validpgpkeys=('3737FD0D0E63B30172440D2DDBA3A7AB08D76223'  # CUPS.org (CUPS.org 
PGP key) 
-  '45D083946E3035282B3CCA9AF434104235DA97EB') # "CUPS.org 
" 
+source=(https://github.com/OpenPrinting/cups/releases/download/v${pkgver}/cups-${pkgver}-source.tar.gz{,.sig}
+cups-freebind.patch
+guid.patch
+)
+sha256sums=('9abecec128ca6847c5bb2d3e3d30c87b782c0697b9acf284d16fa38f80a3a6de'
+'SKIP'
+'3385047b9ac8a7b13aeb8f0ca55d15f793ce7283516db0155fe28a67923c592d'
+'0bf6a75ba1b051771f155d9a5d36b307a6d40c6857d645b250fe93f3fb713474')
+validpgpkeys=('7ADB58203CA5F046F28025B215AA6A7F4D4227D7') # "Zdenek Dohnal 
(Associate Software Engineer) "
+
 build() {
   export CC="gcc -m32"
   export CXX="g++ -m32"
@@ -27,7 +32,7 @@
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
  --disable-ldap --enable-raw-printing --disable-gssapi --disable-dbus \
  --enable-ssl=yes--enable-threads --enable-libusb=no \
---disable-avahi --disable-dnssd \
+--with-dnssd=no \
  --with-optim="$CFLAGS" --libdir=/usr/lib32
   make libs
 }

Added: cups-freebind.patch
===
--- cups-freebind.patch (rev 0)
+++ cups-freebind.patch 2021-12-06 20:59:20 UTC (rev 1065381)
@@ -0,0 +1,15 @@
+diff -up cups-2.0.2/cups/http-addr.c.freebind cups-2.0.2/cups/http-addr.c
+--- cups-2.0.2/cups/http-addr.c.freebind   2015-02-10 14:46:33.0 
+0100
 cups-2.0.2/cups/http-addr.c2015-02-10 14:50:35.074759141 +0100
+@@ -186,6 +186,10 @@ httpAddrListen(http_addr_t *addr, /* I -
+   val = 1;
+   setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, CUPS_SOCAST &val, sizeof(val));
+ 
++#ifdef __linux
++  setsockopt(fd, IPPROTO_IP, IP_FREEBIND, CUPS_SOCAST &val, sizeof(val));
++#endif /* __linux */
++
+ #ifdef IPV6_V6ONLY
+   if (addr->addr.sa_family == AF_INET6)
+ setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, CUPS_SOCAST &val, sizeof(val));
+diff -up cups-2.0.2/scheduler/listen.c.freebind cups-2.0.2/scheduler/listen.c

Added: guid.patch
===
--- guid.patch  (rev 0)
+++ guid.patch  2021-12-06 20:59:20 UTC (rev 1065381)
@@ -0,0 +1,39 @@
+--- cups-2.4.0/scheduler/cups-exec.c   2021-11-29 16:19:34.235186064 +0100
 cups-2.4.0/scheduler/cups-exec.c.new   2021-11-29 16:25:30.764049649 
+0100
+@@ -134,9 +134,14 @@ main(int  argc,   /* I - Number 
of command-line args */
+ #  if CUPS_SNAP
+ if (setgroups(0, NULL))
+ #  else
+-if (setgroups(1, &gid))
+-#  endif /* CUPS_SNAP */
++#include 
++struct passwd * pwd = getpwuid(uid);
++if(initgroups(pwd->pw_name,pwd->pw_gid))
++{
++  fprintf(stderr, "DEBUG: initgroups failed\n");
+   exit(errno + 100);
++}
++#  endif /* CUPS_SNAP */
+ 
+ if (uid && setuid(uid))
+   exit(errno + 100);
+--- cups-2.4.0/scheduler/util.c2021-11-29 15:27:31.0 +0100
 cups-2.4.0/scheduler/util.c.new2021-11-29 16:29:58.810719066 +0100
+@@ -296,7 +296,16 @@
+ */
+ 
+ if (!getuid() && user)
+-  setuid(user);   /* Run as restricted user */
++{
++#include 
++  struct passwd * pwd = getpwuid(user);
++  if(initgroups(pwd->pw_name,pwd->pw_gid))
++  {
++fprintf(stderr, "DEBUG: initgroups failed\n");
++exit(errno + 100);
++  }
++  setuid(user); /* Run as restricted user */
++}
+ 
+ if ((fd = open("/dev/null", O_RDONLY)) > 0)
+ {



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

2021-12-07 Thread Daniel M. Capella via arch-commits
Date: Tuesday, December 7, 2021 @ 02:39:05
  Author: polyzen
Revision: 1065436

archrelease: copy trunk to community-any

Added:
  dark-reader/repos/community-any/PKGBUILD
(from rev 1065435, dark-reader/trunk/PKGBUILD)
Deleted:
  dark-reader/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 02:38:47 UTC (rev 1065435)
+++ PKGBUILD2021-12-07 02:39:05 UTC (rev 1065436)
@@ -1,52 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Cookie Engineer 
-
-pkgname=('dark-reader' 'firefox-dark-reader' 'thunderbird-dark-reader')
-pkgbase=dark-reader
-pkgver=4.9.42
-pkgrel=1
-pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
-arch=('any')
-url=https://darkreader.org/
-license=('MIT')
-makedepends=('npm' 'strip-nondeterminism')
-source=("https://github.com/darkreader/darkreader/archive/v$pkgver/darkreader-$pkgver.tar.gz";)
-b2sums=('2987b3e7ebd4e0a69244e1652f63ea09ad4ebea4c152841bdb2efdd069563ebdd31a04b0dd6f1fd230512d6c44a2b149164c97c09feab1f80264ac5221fbf110')
-
-prepare() {
-  cd darkreader-$pkgver
-  npm ci
-}
-
-build() {
-  cd darkreader-$pkgver
-  npm run build
-  strip-nondeterminism -t zip build/release/*.xpi
-}
-
-check() {
-  cd darkreader-$pkgver
-  npm test
-}
-
-package_dark-reader() {
-  pkgdesc+=' (unpacked webextension)'
-  cd darkreader-$pkgver/build/release/chrome
-  install -d "$pkgdir"/usr/lib/$pkgbase
-  cp -r -- * "$pkgdir"/usr/lib/$pkgbase
-}
-
-package_firefox-dark-reader() {
-  groups=('firefox-addons')
-  cd darkreader-$pkgver/build/release
-  install -Dm644 darkreader-firefox.xpi \
-"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
-}
-
-package_thunderbird-dark-reader() {
-  cd darkreader-$pkgver/build/release
-  install -Dm644 darkreader-thunderbird.xpi \
-"$pkgdir"/usr/lib/thunderbird/extensions/ad...@darkreader.org.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dark-reader/repos/community-any/PKGBUILD (from rev 1065435, 
dark-reader/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 02:39:05 UTC (rev 1065436)
@@ -0,0 +1,52 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Cookie Engineer 
+
+pkgname=('dark-reader' 'firefox-dark-reader' 'thunderbird-dark-reader')
+pkgbase=dark-reader
+pkgver=4.9.43
+pkgrel=1
+pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
+arch=('any')
+url=https://darkreader.org/
+license=('MIT')
+makedepends=('npm' 'strip-nondeterminism')
+source=("https://github.com/darkreader/darkreader/archive/v$pkgver/darkreader-$pkgver.tar.gz";)
+b2sums=('ba226d802bb637d9889b4f7c872a84303aba3f75d6105d1f2d4d81aeb284a088aa0d60f00759f7c1a144d3afc6900aec490c1700fdec922c316b307e87ff77a9')
+
+prepare() {
+  cd darkreader-$pkgver
+  npm ci
+}
+
+build() {
+  cd darkreader-$pkgver
+  npm run build
+  strip-nondeterminism -t zip build/release/*.xpi
+}
+
+check() {
+  cd darkreader-$pkgver
+  npm test
+}
+
+package_dark-reader() {
+  pkgdesc+=' (unpacked webextension)'
+  cd darkreader-$pkgver/build/release/chrome
+  install -d "$pkgdir"/usr/lib/$pkgbase
+  cp -r -- * "$pkgdir"/usr/lib/$pkgbase
+}
+
+package_firefox-dark-reader() {
+  groups=('firefox-addons')
+  cd darkreader-$pkgver/build/release
+  install -Dm644 darkreader-firefox.xpi \
+"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
+}
+
+package_thunderbird-dark-reader() {
+  cd darkreader-$pkgver/build/release
+  install -Dm644 darkreader-thunderbird.xpi \
+"$pkgdir"/usr/lib/thunderbird/extensions/ad...@darkreader.org.xpi
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-12-07 Thread Antonio Rojas via arch-commits
Date: Monday, December 6, 2021 @ 21:35:17
  Author: arojas
Revision: 1065392

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-06 21:35:07 UTC (rev 1065391)
+++ PKGBUILD2021-12-06 21:35:17 UTC (rev 1065392)
@@ -1,104 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Eli Schwartz 
-# Contributor: Daniel Wallace 
-# Contributor: Giovanni Scafora 
-# Contributor: Petrov Roman 
-# Contributor: Andrea Fagiani 
-# Contributor: Larry Hajali 
-
-pkgbase=calibre
-pkgname=calibre
-pkgver=5.32.0
-pkgrel=3
-pkgdesc="Ebook management application"
-arch=('x86_64')
-url="https://calibre-ebook.com/";
-license=('GPL3')
-_py_deps=('apsw' 'beautifulsoup4' 'cchardet' 'cssselect' 'css-parser' 
'dateutil' 'dnspython'
-  'feedparser' 'html2text' 'html5-parser' 'jeepney' 'lxml' 'markdown' 
'mechanize' 'msgpack'
-  'netifaces' 'unrardll' 'pillow' 'psutil' 'py7zr' 'pychm' 'pygments' 
'pyqt5'
-  'pyqtwebengine' 'regex' 'zeroconf')
-depends=('hunspell' 'hyphen' 'icu' 'jxrlib' 'libmtp' 'libstemmer' 'libusb'
- 'libwmf' 'mathjax' 'mtdev' 'optipng' 'podofo'
- "${_py_deps[@]/#/python-}" 'qt5-imageformats' 'qt5-svg' 
'ttf-liberation' 'udisks2')
-makedepends=('qt5-x11extras' 'sip' 'pyqt-builder' 'xdg-utils' 'rapydscript-ng')
-checkdepends=('xorg-server-xvfb')
-optdepends=('poppler: required for converting pdf to html'
-'speech-dispatcher: TTS support in the viewer')
-conflicts=('calibre-common' 'calibre-python3')
-replaces=('calibre-common' 'calibre-python3')
-source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz";
-"https://calibre-ebook.com/signatures/${pkgbase}-${pkgver}.tar.xz.sig";)
-sha256sums=('3571efc1cc773e453b459096a38b141fd0c7784fb9611505a1f9a55648f47e5e'
-'SKIP')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
-
-prepare(){
-cd "${pkgbase}-${pkgver}"
-
-# Desktop integration (e.g. enforce arch defaults)
-# Use uppercase naming scheme, don't delete config files under fakeroot.
-sed -e "/import config_dir/,/os.rmdir(config_dir)/d" \
--e "s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/" \
--e "s/^Name=calibre/Name=Calibre/g" \
--i  src/calibre/linux.py
-
-cd resources
-
-# Remove unneeded files
-rm ${pkgbase}-portable.* mozilla-ca-certs.pem
-
-# use system mathjax
-rm -r mathjax
-}
-
-build() {
-cd "${pkgbase}-${pkgver}"
-
-LANG='en_US.UTF-8' python setup.py build
-LANG='en_US.UTF-8' python setup.py gui
-python setup.py liberation_fonts --path-to-liberation_fonts 
/usr/share/fonts/liberation --system-liberation_fonts
-LANG='en_US.UTF-8' python setup.py mathjax --path-to-mathjax 
/usr/share/mathjax --system-mathjax
-LANG='en_US.UTF-8' python setup.py rapydscript
-}
-
-check() {
-cd "${pkgbase}-${pkgver}"
-
-_test_excludes=(
-# merely testing if a runtime-optional feature optdepend is importable
-'speech_dispatcher'
-# tests if a completely unused module is bundled
-'pycryptodome'
-)
-
-# without xvfb-run this fails with much "Control socket failed to recv(), 
resetting"
-# ERROR: test_websocket_perf (calibre.srv.tests.web_sockets.WebSocketTest)
-# one or two tests are a bit flaky, but the python3 build seems to succeed 
more often
-LANG='en_US.UTF-8' xvfb-run python setup.py test 
"${_test_excludes[@]/#/--exclude-test-name=}"
-}
-
-package() {
-cd "${pkgbase}-${pkgver}"
-
-# If this directory doesn't exist, zsh completion won't install.
-install -d "${pkgdir}/usr/share/zsh/site-functions"
-
-LANG='en_US.UTF-8' python setup.py install \
---staging-root="${pkgdir}/usr" \
---prefix=/usr \
---system-plugins-location=/usr/share/calibre/system-plugins
-
-cp -a man-pages/ "${pkgdir}/usr/share/man"
-
-# not needed at runtime
-rm -r "${pkgdir}"/usr/share/calibre/rapydscript/
-
-# Compiling bytecode FS#33392
-# This is kind of ugly but removes traces of the build root.
-while read -rd '' _file; do
-_destdir="$(dirname "${_file#${pkgdir}}")"
-python3 -m compileall -d "${_destdir}" "${_file}"
-python3 -O -m compileall -d "${_destdir}" "${_file}"
-done < <(find "${pkgdir}"/usr/lib/ -name '*.py' -print0)
-}

Copied: calibre/repos/community-staging-x86_64/PKGBUILD (from rev 1065391, 
calibre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUIL

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

2021-12-07 Thread Antonio Rojas via arch-commits
Date: Monday, December 6, 2021 @ 20:48:51
  Author: arojas
Revision: 430759

archrelease: copy trunk to extra-x86_64

Added:
  libuninameslist/repos/extra-x86_64/PKGBUILD
(from rev 430758, libuninameslist/trunk/PKGBUILD)
Deleted:
  libuninameslist/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-06 20:48:40 UTC (rev 430758)
+++ PKGBUILD2021-12-06 20:48:51 UTC (rev 430759)
@@ -1,28 +0,0 @@
-# Maintainer: Gaetan Bisson 
-
-pkgname=libuninameslist
-pkgver=20200413
-pkgrel=2
-pkgdesc='Large, sparse array mapping each unicode code point to the annotation 
data for it'
-url='https://github.com/fontforge/libuninameslist'
-license=('custom')
-arch=('x86_64')
-source=("https://github.com/fontforge/${pkgname}/releases/download/${pkgver}/${pkgname}-dist-${pkgver}.tar.gz";)
-sha256sums=('5c0283b2e18d101e58b70a026119d66c9d3e749e4537def7799bba0bc8998f62')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   autoreconf -i
-   automake --foreign -Wall
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: libuninameslist/repos/extra-x86_64/PKGBUILD (from rev 430758, 
libuninameslist/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-06 20:48:51 UTC (rev 430759)
@@ -0,0 +1,28 @@
+# Maintainer: Gaetan Bisson 
+
+pkgname=libuninameslist
+pkgver=2024
+pkgrel=1
+pkgdesc='Large, sparse array mapping each unicode code point to the annotation 
data for it'
+url='https://github.com/fontforge/libuninameslist'
+license=('custom')
+arch=('x86_64')
+source=("https://github.com/fontforge/${pkgname}/releases/download/${pkgver}/${pkgname}-dist-${pkgver}.tar.gz";)
+sha256sums=('f5f69090de4a483721207a9df7de5327c13c812a1d23de074d8f0496bc2b740d')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -i
+  automake --foreign -Wall
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}



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

2021-12-07 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, December 7, 2021 @ 07:04:31
  Author: svenstaro
Revision: 1065476

upgpkg: wasmer 2.1.0-1

Modified:
  wasmer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 07:02:50 UTC (rev 1065475)
+++ PKGBUILD2021-12-07 07:04:31 UTC (rev 1065476)
@@ -1,9 +1,9 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Contributor: Julius Michaelis 
 
 pkgname=wasmer
-pkgver=2.0.0
-pkgrel=3
+pkgver=2.1.0
+pkgrel=1
 pkgdesc="Universal Binaries Powered by WebAssembly"
 arch=('x86_64')
 url="https://github.com/wasmerio/wasmer";
@@ -12,7 +12,7 @@
 makedepends=('rust' 'cmake' 'llvm11')
 checkdepends=('lld' 'clang')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/wasmerio/wasmer/archive/${pkgver}.tar.gz";)
-sha512sums=('c02b97075212a496a4c30a9cfcd6b8ef89cb08bf3e5f9f20bf5f83c63bedb5744e4976ee3641310f6a44d911d670285c8b67c3cb9725acdd632ef5f8880ba4b9')
+sha512sums=('a76ecbbda79c392a7f6944dafa982dbd3aa22c73a16add744a31e8c389d575f11cbd77bbc0f2c71c0dc2316ca88a09a833f47df237908f18a7cd574132edac47')
 options=('staticlibs')
 
 WASMER_INSTALL_PREFIX=/usr



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

2021-12-07 Thread Daniel M. Capella via arch-commits
Date: Tuesday, December 7, 2021 @ 02:54:28
  Author: polyzen
Revision: 1065437

upgpkg: eslint 8.4.1-1

Modified:
  eslint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 02:39:05 UTC (rev 1065436)
+++ PKGBUILD2021-12-07 02:54:28 UTC (rev 1065437)
@@ -2,7 +2,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=eslint
-pkgver=8.3.0
+pkgver=8.4.1
 pkgrel=1
 pkgdesc='An AST-based pattern checker for JavaScript'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('npm' 'rsync')
 options=('!emptydirs')
 
source=("https://github.com/eslint/eslint/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
-b2sums=('ea0da8c8da5c124ca951938f7c1267977da6c1350a3c4a08b6eaa3f8457520a4bcdd02bc8e4421f186154e68867fe6a070de95575532ff764a76b0598a40d520')
+b2sums=('da297e857d05777be0ab56ebe8b02e774316236cee1dffe785f4b2e1f5d44ac261d45be215e541d4423f1bd09876548151b9c88395f2c97a89d68b87e941158c')
 
 prepare() {
   cd eslint-$pkgver



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

2021-12-07 Thread Antonio Rojas via arch-commits
Date: Tuesday, December 7, 2021 @ 21:05:55
  Author: arojas
Revision: 1065569

archrelease: copy trunk to community-any

Added:
  xsimd/repos/community-any/PKGBUILD
(from rev 1065568, xsimd/trunk/PKGBUILD)
Deleted:
  xsimd/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 21:05:39 UTC (rev 1065568)
+++ PKGBUILD2021-12-07 21:05:55 UTC (rev 1065569)
@@ -1,27 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Alexander Susha 
-# Contributor: Fredrik Tegenfeldt 
-
-pkgname=xsimd
-pkgver=8.0.3
-pkgrel=1
-pkgdesc='QuantStack tools library - Multi-dimensional arrays with broadcasting 
and lazy computing'
-arch=(any)
-url='https://github.com/QuantStack/xsimd'
-license=(BSD)
-depends=()
-makedepends=(cmake gtest)
-source=(https://github.com/QuantStack/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha512sums=('4c93eea5c5ba7c72f718d7d404b9630850e0805d2698d472b964e4de765678801b369ce1da5e53372f28944f5f647a7ac162995f92535a820c6f4fc9defa7e5f')
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-  install -Dm644 $pkgname-$pkgver/LICENSE -t 
"$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: xsimd/repos/community-any/PKGBUILD (from rev 1065568, 
xsimd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 21:05:55 UTC (rev 1065569)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Alexander Susha 
+# Contributor: Fredrik Tegenfeldt 
+
+pkgname=xsimd
+pkgver=8.0.4
+pkgrel=1
+pkgdesc='QuantStack tools library - Multi-dimensional arrays with broadcasting 
and lazy computing'
+arch=(any)
+url='https://github.com/QuantStack/xsimd'
+license=(BSD)
+depends=()
+makedepends=(cmake gtest)
+source=(https://github.com/QuantStack/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha512sums=('ed49a6a88dc699c7954946d8ebbfaa7e652dcbacaed4f58354351ff7c1e48837bee27df46d770fbef372481ceee80087e41c70a8abb119d7cdcc2f06a4d0e855')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+  install -Dm644 $pkgname-$pkgver/LICENSE -t 
"$pkgdir"/usr/share/licenses/$pkgname
+}



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

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Tuesday, December 7, 2021 @ 01:20:58
  Author: foutrelis
Revision: 1065428

Remove python-blist; dead project

Deleted:
  python-blist/



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

2021-12-07 Thread Felix Yan via arch-commits
Date: Tuesday, December 7, 2021 @ 14:14:22
  Author: felixonmars
Revision: 1065543

upgpkg: python-pytest-benchmark 3.4.1-3: Python 3.10 rebuild

Modified:
  python-pytest-benchmark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 14:06:11 UTC (rev 1065542)
+++ PKGBUILD2021-12-07 14:14:22 UTC (rev 1065543)
@@ -2,7 +2,7 @@
 
 pkgname=python-pytest-benchmark
 pkgver=3.4.1
-pkgrel=2
+pkgrel=3
 pkgdesc='A py.test fixture for benchmarking code'
 arch=('any')
 license=('BSD')



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

2021-12-07 Thread Tim Meusel via arch-commits
Date: Tuesday, December 7, 2021 @ 08:10:00
  Author: bastelfreak
Revision: 1065488

update 3.14.20->3.14.21

Modified:
  facter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 07:33:37 UTC (rev 1065487)
+++ PKGBUILD2021-12-07 08:10:00 UTC (rev 1065488)
@@ -9,8 +9,8 @@
 # Contributor: Niels Abspoel 
 
 pkgname=facter
-pkgver=3.14.20
-pkgrel=2
+pkgver=3.14.21
+pkgrel=1
 pkgdesc="Collect and display system facts"
 arch=('x86_64')
 url="https://puppetlabs.com/facter";
@@ -34,7 +34,7 @@
 'workaround-broken-double-test.patch'
 'azure_rapidjson_fix.patch')
 validpgpkeys=('D6811ED3ADEEB8441AF5AA8F4528B6CD9E61EF26') # "Puppet, Inc. 
Release Key (Puppet, Inc. Release Key) "
-sha512sums=('afc9cd9d28415aa969bd1cf48a305f9fe3eef542ac6781980b6d1517c7f103e96fa6f993492f3624be62c2df52efeb21ce4e23095254ed690b075cb0ab45105b'
+sha512sums=('53847ddebcfbdc706da6db690acde0bf455660f9e3b5bda8abd7b907847841bf2e3cf8f7c370c5a8d5ae46ccc5edd57f37460cfe039ee2d4afdc2ab9f1ff7f94'
 'SKIP'
 
'1f5d2595cd6b2a63fc01c92c84eccf8f92bd9e9f0721ea1a3f59836d7d02f5ec6e6e3711b223b240d46ca55f7377f27339b7458c12d6c21564a2764c76df12b2'
 
'15fdfb75bb1045e160c095b62025f10d0a04c167223340072a9b8d065a2a185e942d299f86c80449661f37be5e1807efb49e77def44b8de4a9a9f7c2cc111e1a'



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

2021-12-07 Thread Daurnimator via arch-commits
Date: Tuesday, December 7, 2021 @ 15:11:54
  Author: daurnimator
Revision: 1065550

archrelease: copy trunk to community-x86_64

Added:
  chezmoi/repos/community-x86_64/PKGBUILD
(from rev 1065549, chezmoi/trunk/PKGBUILD)
Deleted:
  chezmoi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-07 15:11:38 UTC (rev 1065549)
+++ PKGBUILD2021-12-07 15:11:54 UTC (rev 1065550)
@@ -1,63 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Tom Payne 
-# Contributor:  
-
-pkgname=chezmoi
-pkgver=2.9.1
-pkgrel=1
-pkgdesc="Manage your dotfiles across multiple machines"
-arch=('x86_64')
-url='https://www.chezmoi.io/'
-license=('MIT')
-makedepends=('go' 'git')
-depends=('glibc')
-checkdepends=('zip')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz";)
-sha512sums=('2c5d1d21234e0c07095620bc3e01d125deb1a77275334337380ad2aff6d4ec05a3b8a4efa4b86bd2d0d151f56098336a2310396067a30da8c6b2df18156f1eae')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  go mod download
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export GOPROXY=off
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--tags noupgrade \
--ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
-  -X main.version=$pkgver \
-  -X main.date=$(date -u +'%Y-%m-%dT%H:%M:%SZ' 
--date=@${SOURCE_DATE_EPOCH}) \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  go test -v ./...
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
-
-  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm644 docs/*.md "$pkgdir/usr/share/doc/$pkgname/"
-
-  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
-  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
-  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: chezmoi/repos/community-x86_64/PKGBUILD (from rev 1065549, 
chezmoi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-07 15:11:54 UTC (rev 1065550)
@@ -0,0 +1,63 @@
+# Maintainer: Daurnimator 
+# Contributor: Tom Payne 
+# Contributor:  
+
+pkgname=chezmoi
+pkgver=2.9.2
+pkgrel=1
+pkgdesc="Manage your dotfiles across multiple machines"
+arch=('x86_64')
+url='https://www.chezmoi.io/'
+license=('MIT')
+makedepends=('go' 'git')
+depends=('glibc')
+checkdepends=('zip')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/twpayne/chezmoi/archive/v${pkgver}.tar.gz";)
+sha512sums=('b47bf6a17f80b03151d365e0f67d24b40eea0c197ce9cc46d27c2b8e1c34dda9d4e153037509acc160799ca1eb25ea90140995bf13c64b89c3df2777ba714d01')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  go mod download
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export GOPROXY=off
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-tags noupgrade \
+-ldflags "-X 
github.com/twpayne/chezmoi/cmd.DocsDir=/usr/share/doc/$pkgname \
+  -X main.version=$pkgver \
+  -X main.date=$(date -u +'%Y-%m-%dT%H:%M:%SZ' 
--date=@${SOURCE_DATE_EPOCH}) \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  go test -v ./...
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -D "$pkgname" "$pkgdir/usr/bin/$pkgname"
+
+  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm644 docs/*.md "$pkgdir/usr/share/doc/$pkgname/"
+
+  install -Dm644 completions/chezmoi-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/chezmoi"
+  install -Dm644 completions/chezmoi.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/chezmoi.fish"
+  install -Dm644 completions/chezmoi.zsh 
"$pkgdir/usr/share/zsh/site-functions/_chezmoi"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



  1   2   3   >