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

2022-09-04 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 20:15:47
  Author: ffy00
Revision: 1292893

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-04 20:15:43 UTC (rev 1292892)
+++ PKGBUILD2022-09-04 20:15:47 UTC (rev 1292893)
@@ -1,54 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-hypothesis
-pkgver=6.54.4
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org";
-depends=('python-attrs' 'python-sortedcontainers')
-optdepends=('python-pytz: for datetime and django module'
-'python-faker: for fakefactory and django module'
-'python-django: for django module'
-'python-numpy: for numpy module'
-'python-pytest: for pytest module'
-'python-lark-parser: for lark module'
-'python-libcst: for codemods module')
-makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
-checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker' 'python-exceptiongroup'
-  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
-  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
-  'python-typing_extensions' 'python-black' 'python-fakeredis' 
'python-libcst')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
-sha512sums=('7e5b70cc2df874163205e3d35f3f5e6a71319e779b35f1596c69222373e9b766a143ccf37aa1699de6b98827978e44ccbca0b1e30e6ffe29c8b68c83bb3af869')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-}
-
-build() {
-  cd hypothesis-$pkgver/hypothesis-python
-
-  python -m build -nw
-}
-
-check() {
-  cd hypothesis-$pkgver/hypothesis-python
-
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  python examples/example_hypothesis_entrypoint/setup.py install 
--root="$PWD/tmp_install" --optimize=1
-
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.10/site-packages:$PWD/examples/example_hypothesis_entrypoint"
 \
-  PATH="$PWD/tmp_install/usr/bin:$PATH" \
-pytest --ignore tmp_install || echo "Tests failed"
-}
-
-package() {
-  cd hypothesis-$pkgver/hypothesis-python
-
-  python -m installer -d "$pkgdir" dist/*.whl
-
-  # It's only present when tests are enabled, so adding -f
-  rm -rf "$pkgdir"/usr/lib/python*/site-packages/tests
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 1292892, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-04 20:15:47 UTC (rev 1292893)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-hypothesis
+pkgver=6.54.4
+pkgrel=2
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org";
+depends=('python-attrs' 'python-sortedcontainers' 'python-exceptiongroup')
+optdepends=('python-pytz: for datetime and django module'
+'python-faker: for fakefactory and django module'
+'python-django: for django module'
+'python-numpy: for numpy module'
+'python-pytest: for pytest module'
+'python-lark-parser: for lark module'
+'python-libcst: for codemods module')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
+  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
+  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
+  'python-typing_extensions' 'python-black' 'python-fakeredis' 
'python-libcst')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
+sha512sums=('7e5b70cc2df874163205e3d35f3f5e6a71319e779b35f1596c69222373e9b766a143ccf37aa1699de6b98827978e44ccbca0b1e30e6ffe29c8b68c83bb3af869')
+
+prepare() {
+  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
+}
+
+build() {
+  cd hypothesis-$pkgver/hypothesis-python
+
+  python -m build -nw
+}
+
+check() {
+  cd hypothesis-$pkgver/hypothesis-python
+
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  python examples/example_hypothesis_entrypoint/setup.py install 
--root="$PWD/tmp_install" --optimize=1
+
+  
PYTHONPATH="$PWD/tmp_install/usr/lib/pyt

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

2022-09-04 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 20:15:43
  Author: ffy00
Revision: 1292892

add missing dependency (6.54.4-2)

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-04 19:56:46 UTC (rev 1292891)
+++ PKGBUILD2022-09-04 20:15:43 UTC (rev 1292892)
@@ -2,12 +2,12 @@
 
 pkgname=python-hypothesis
 pkgver=6.54.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
 license=('MPL')
 url="https://hypothesis.readthedocs.org";
-depends=('python-attrs' 'python-sortedcontainers')
+depends=('python-attrs' 'python-sortedcontainers' 'python-exceptiongroup')
 optdepends=('python-pytz: for datetime and django module'
 'python-faker: for fakefactory and django module'
 'python-django: for django module'
@@ -16,7 +16,7 @@
 'python-lark-parser: for lark module'
 'python-libcst: for codemods module')
 makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
-checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker' 'python-exceptiongroup'
+checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
   'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
   'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
   'python-typing_extensions' 'python-black' 'python-fakeredis' 
'python-libcst')



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:45:48
  Author: ffy00
Revision: 1292787

archrelease: copy trunk to community-any

Added:
  ufmt/repos/community-any/
  ufmt/repos/community-any/PKGBUILD
(from rev 1292786, ufmt/trunk/PKGBUILD)

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

Copied: ufmt/repos/community-any/PKGBUILD (from rev 1292786, 
ufmt/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-09-04 01:45:48 UTC (rev 1292787)
@@ -0,0 +1,36 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=ufmt
+pkgver=2.0.0
+pkgrel=1
+pkgdesc='Safe, atomic formatting with black and µsort'
+arch=('any')
+url='https://github.com/omnilib/ufmt'
+license=('MIT')
+depends=('python-black' 'python-click' 'python-libcst' 'python-moreorless'
+ 'python-tomlkit' 'python-trailrunner' 'python-typing_extensions' 
'usort')
+makedepends=('python-build' 'python-installer' 'python-flit-core' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('e8893619cf54be875f12d1b819db351862c668fc8ff68115d81ca4f31c8d4b9f970920e1ab30288f93e6234a1723a77f6cfa47987e87d8f8b744fffefb543867')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python -m build -nwx
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  python -m ufmt.tests
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:45:44
  Author: ffy00
Revision: 1292786

upgpkg: ufmt 2.0.0-1

Added:
  ufmt/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-04 01:45:44 UTC (rev 1292786)
@@ -0,0 +1,36 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=ufmt
+pkgver=2.0.0
+pkgrel=1
+pkgdesc='Safe, atomic formatting with black and µsort'
+arch=('any')
+url='https://github.com/omnilib/ufmt'
+license=('MIT')
+depends=('python-black' 'python-click' 'python-libcst' 'python-moreorless'
+ 'python-tomlkit' 'python-trailrunner' 'python-typing_extensions' 
'usort')
+makedepends=('python-build' 'python-installer' 'python-flit-core' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('e8893619cf54be875f12d1b819db351862c668fc8ff68115d81ca4f31c8d4b9f970920e1ab30288f93e6234a1723a77f6cfa47987e87d8f8b744fffefb543867')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python -m build -nwx
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  python -m ufmt.tests
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:42:08
  Author: ffy00
Revision: 1292785

archrelease: copy trunk to community-any

Added:
  usort/repos/community-any/
  usort/repos/community-any/PKGBUILD
(from rev 1292784, usort/trunk/PKGBUILD)

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

Copied: usort/repos/community-any/PKGBUILD (from rev 1292784, 
usort/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-09-04 01:42:08 UTC (rev 1292785)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=usort
+pkgver=1.0.4
+pkgrel=1
+pkgdesc='Safe, minimal import sorting for Python projects'
+arch=('any')
+url='https://github.com/facebookexperimental/usort'
+license=('MIT')
+depends=('python-attrs' 'python-click' 'python-libcst' 'python-moreorless'
+ 'python-stdlibs' 'python-toml' 'python-trailrunner')
+makedepends=('python-build' 'python-installer' 'python-setuptools-scm' 
'python-wheel')
+checkdepends=('python-volatile')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('101af003b27824fa0ac76d824fa2b29c8e0b40e074ad299efe006c161c68812a69285c2c8b84f3961276f99782e59899c26716d7d365726966933c3584a27c7d')
+
+build() {
+  cd $pkgname-$pkgver
+
+  SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver python -m build -nw
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  python -m usort.tests
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:42:04
  Author: ffy00
Revision: 1292784

upgpkg: usort 1.0.4-1

Added:
  usort/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-04 01:42:04 UTC (rev 1292784)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=usort
+pkgver=1.0.4
+pkgrel=1
+pkgdesc='Safe, minimal import sorting for Python projects'
+arch=('any')
+url='https://github.com/facebookexperimental/usort'
+license=('MIT')
+depends=('python-attrs' 'python-click' 'python-libcst' 'python-moreorless'
+ 'python-stdlibs' 'python-toml' 'python-trailrunner')
+makedepends=('python-build' 'python-installer' 'python-setuptools-scm' 
'python-wheel')
+checkdepends=('python-volatile')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('101af003b27824fa0ac76d824fa2b29c8e0b40e074ad299efe006c161c68812a69285c2c8b84f3961276f99782e59899c26716d7d365726966933c3584a27c7d')
+
+build() {
+  cd $pkgname-$pkgver
+
+  SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver python -m build -nw
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  python -m usort.tests
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in mingw-w64-gcc/repos/community-x86_64 (PKGBUILD PKGBUILD keys)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:37:57
  Author: ffy00
Revision: 1292783

archrelease: copy trunk to community-x86_64

Added:
  mingw-w64-gcc/repos/community-x86_64/PKGBUILD
(from rev 1292782, mingw-w64-gcc/trunk/PKGBUILD)
  mingw-w64-gcc/repos/community-x86_64/keys/
Deleted:
  mingw-w64-gcc/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  138 ++---
 1 file changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-04 01:37:52 UTC (rev 1292782)
+++ PKGBUILD2022-09-04 01:37:57 UTC (rev 1292783)
@@ -1,69 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=mingw-w64-gcc
-pkgver=12.1.0
-pkgrel=1
-pkgdesc="Cross GCC for the MinGW-w64 cross-compiler"
-arch=('x86_64' 'aarch64')
-url="https://gcc.gnu.org";
-license=('GPL' 'LGPL' 'FDL' 'custom')
-groups=('mingw-w64-toolchain' 'mingw-w64')
-depends=('zlib' 'libisl' 'libmpc' 'mingw-w64-crt' 'mingw-w64-binutils' 
'mingw-w64-winpthreads' 'mingw-w64-headers')
-makedepends=("gcc-ada>=${pkgver:0:2}")
-options=('!strip' 'staticlibs' '!emptydirs' '!buildflags')
-source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
-   
https://raw.githubusercontent.com/msys2/MINGW-packages/master/mingw-w64-gcc/0020-libgomp-Don-t-hard-code-MS-printf-attributes.patch)
-validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

-  13975A70E63C361C73AE69EF6EEB81F8981C74C7) # 
richard.guent...@gmail.com
-sha512sums=('2121d295292814a6761edf1fba08c5f633ebe16f52b80e7b73a91050e71e1d2ed98bf17eebad263e191879561c02b48906c53faa4c4670c486a26fc75df23900'
-'SKIP'
-
'8266eae8b3be5557e8cd79c21b6326db7cd83604db6d6ad83923798650fcd8d0f9f1f4ed424c816a48e91f21fb1852ab9272c73100b219f07d3bbb566bfd6fae')
-
-_architectures="i686-w64-mingw32 x86_64-w64-mingw32"
-
-prepare() {
-  ln -sf gcc-${pkgver/+/-} gcc
-  cd gcc
-
-  # https://sourceforge.net/p/mingw-w64/bugs/853/
-  patch -p1 -i ../0020-libgomp-Don-t-hard-code-MS-printf-attributes.patch
-
-  # mmapio.c:69:14: error: implicit declaration of function ‘getpagesize’
-  sed -i 's|\-Werror||g' libbacktrace/configure
-}
-
-build() {
-  for _arch in ${_architectures}; do
-mkdir -p "$srcdir"/build-${_arch} && cd "$srcdir"/build-${_arch}
-"$srcdir"/gcc/configure --prefix=/usr --libexecdir=/usr/lib \
---target=${_arch} \
---with-bugurl=https://bugs.archlinux.org/ \
---enable-languages=c,lto,c++,ada,objc,obj-c++,fortran \
---enable-shared --enable-static \
---enable-threads=posix --enable-fully-dynamic-string \
---enable-libstdcxx-time=yes --enable-libstdcxx-filesystem-ts=yes \
---with-system-zlib --enable-cloog-backend=isl \
---enable-lto --enable-libgomp \
---disable-multilib --enable-checking=release \
---disable-sjlj-exceptions --with-dwarf2
-make
-  done
-}
-
-package() {
-  for _arch in ${_architectures}; do
-cd "$srcdir"/build-${_arch}
-make DESTDIR="$pkgdir" install
-${_arch}-strip "$pkgdir"/usr/${_arch}/lib/*.dll
-strip "$pkgdir"/usr/bin/${_arch}-*
-strip 
"$pkgdir"/usr/lib/gcc/${_arch}/${pkgver}/{cc1*,collect2,gnat1,f951,lto*}
-ln -s ${_arch}-gcc "$pkgdir"/usr/bin/${_arch}-cc
-# mv dlls
-mkdir -p "$pkgdir"/usr/${_arch}/bin/
-mv "$pkgdir"/usr/${_arch}/lib/*.dll "$pkgdir"/usr/${_arch}/bin/
-  done
-  strip "$pkgdir"/usr/bin/*
-  # remove unnecessary files
-  rm -r "$pkgdir"/usr/share
-  rm "$pkgdir"/usr/lib/libcc1.*
-}

Copied: mingw-w64-gcc/repos/community-x86_64/PKGBUILD (from rev 1292782, 
mingw-w64-gcc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-04 01:37:57 UTC (rev 1292783)
@@ -0,0 +1,69 @@
+# Maintainer: Felix Yan 
+
+pkgname=mingw-w64-gcc
+pkgver=12.2.0
+pkgrel=1
+pkgdesc="Cross GCC for the MinGW-w64 cross-compiler"
+arch=('x86_64' 'aarch64')
+url="https://gcc.gnu.org";
+license=('GPL' 'LGPL' 'FDL' 'custom')
+groups=('mingw-w64-toolchain' 'mingw-w64')
+depends=('zlib' 'libisl' 'libmpc' 'mingw-w64-crt' 'mingw-w64-binutils' 
'mingw-w64-winpthreads' 'mingw-w64-headers')
+makedepends=("gcc-ada>=${pkgver:0:2}")
+options=('!strip' 'staticlibs' '!emptydirs' '!buildflags')
+source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
+   
https://raw.githubusercontent.com/msys2/MINGW-packages/master/mingw-w64-gcc/0020-libgomp-Don-t-hard-code-MS-printf-attributes.patch)
+validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

+  13975A70E63C361C73AE69EF6EEB81F8981C74C7) # 
richard.guent...@gmail.com
+sha512sums=('e9e857bd81bf7a370307d6848c81b2f5403db8c7b5207f54bce3f3faac3bde63445684092c2bc1a2427cddb6f7746496d9fbbef05fbbd77f2810b2998f1f9173'
+'SKIP'
+
'71f0472b1d199dff7f25333da0b4c766e484b57daa0f75aeb9a0ce2187a3e7f4fc4bd5cf

[arch-commits] Commit in mingw-w64-gcc/trunk (PKGBUILD)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:37:52
  Author: ffy00
Revision: 1292782

upgpkg: mingw-w64-gcc 12.2.0-1

Modified:
  mingw-w64-gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-04 01:36:24 UTC (rev 1292781)
+++ PKGBUILD2022-09-04 01:37:52 UTC (rev 1292782)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=mingw-w64-gcc
-pkgver=12.1.0
+pkgver=12.2.0
 pkgrel=1
 pkgdesc="Cross GCC for the MinGW-w64 cross-compiler"
 arch=('x86_64' 'aarch64')
@@ -15,9 +15,9 @@

https://raw.githubusercontent.com/msys2/MINGW-packages/master/mingw-w64-gcc/0020-libgomp-Don-t-hard-code-MS-printf-attributes.patch)
 validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

   13975A70E63C361C73AE69EF6EEB81F8981C74C7) # 
richard.guent...@gmail.com
-sha512sums=('2121d295292814a6761edf1fba08c5f633ebe16f52b80e7b73a91050e71e1d2ed98bf17eebad263e191879561c02b48906c53faa4c4670c486a26fc75df23900'
+sha512sums=('e9e857bd81bf7a370307d6848c81b2f5403db8c7b5207f54bce3f3faac3bde63445684092c2bc1a2427cddb6f7746496d9fbbef05fbbd77f2810b2998f1f9173'
 'SKIP'
-
'8266eae8b3be5557e8cd79c21b6326db7cd83604db6d6ad83923798650fcd8d0f9f1f4ed424c816a48e91f21fb1852ab9272c73100b219f07d3bbb566bfd6fae')
+
'71f0472b1d199dff7f25333da0b4c766e484b57daa0f75aeb9a0ce2187a3e7f4fc4bd5cfe464c942855eadbcdcc3646a7a3b64144fb3379dcbd6e7fc39a374c4')
 
 _architectures="i686-w64-mingw32 x86_64-w64-mingw32"
 



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:36:24
  Author: ffy00
Revision: 1292781

archrelease: copy trunk to community-any

Added:
  python-stdlibs/repos/community-any/
  python-stdlibs/repos/community-any/PKGBUILD
(from rev 1292780, python-stdlibs/trunk/PKGBUILD)

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

Copied: python-stdlibs/repos/community-any/PKGBUILD (from rev 1292780, 
python-stdlibs/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-09-04 01:36:24 UTC (rev 1292781)
@@ -0,0 +1,30 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=stdlibs
+pkgname=python-$_pkgname
+pkgver=2022.6.8
+pkgrel=1
+pkgdesc="Simple list of top-level packages in Python's stdlib"
+arch=('any')
+url='https://github.com/omnilib/stdlibs'
+license=('MIT')
+depends=('python')
+makedepends=('python-build' 'python-installer' 'python-flit-core' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('e5f48a623092522cdcca379f797a065e48ff362f2b42bfe2ad2bbf555d84fcc4e9c7e2e5f858563713e043cf69b85bcbd3a2825a97805a5396b0f52dfaedc365')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:36:21
  Author: ffy00
Revision: 1292780

upgpkg: python-stdlibs 2022.6.8-1

Added:
  python-stdlibs/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-04 01:36:21 UTC (rev 1292780)
@@ -0,0 +1,30 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=stdlibs
+pkgname=python-$_pkgname
+pkgver=2022.6.8
+pkgrel=1
+pkgdesc="Simple list of top-level packages in Python's stdlib"
+arch=('any')
+url='https://github.com/omnilib/stdlibs'
+license=('MIT')
+depends=('python')
+makedepends=('python-build' 'python-installer' 'python-flit-core' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('e5f48a623092522cdcca379f797a065e48ff362f2b42bfe2ad2bbf555d84fcc4e9c7e2e5f858563713e043cf69b85bcbd3a2825a97805a5396b0f52dfaedc365')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:33:00
  Author: ffy00
Revision: 1292779

add root structure

Added:
  python-stdlibs/
  python-stdlibs/repos/
  python-stdlibs/trunk/



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:25:26
  Author: ffy00
Revision: 1292778

add root structure

Added:
  usort/
  usort/repos/
  usort/trunk/



[arch-commits] Commit in riscv64-elf-gcc/repos/community-x86_64 (5 files)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:24:54
  Author: ffy00
Revision: 1292777

archrelease: copy trunk to community-x86_64

Added:
  riscv64-elf-gcc/repos/community-x86_64/PKGBUILD
(from rev 1292776, riscv64-elf-gcc/trunk/PKGBUILD)
  riscv64-elf-gcc/repos/community-x86_64/PKGBUILD.bootstrap
(from rev 1292776, riscv64-elf-gcc/trunk/PKGBUILD.bootstrap)
  riscv64-elf-gcc/repos/community-x86_64/keys/
Deleted:
  riscv64-elf-gcc/repos/community-x86_64/PKGBUILD
  riscv64-elf-gcc/repos/community-x86_64/PKGBUILD.bootstrap

+
 PKGBUILD   |  216 -
 PKGBUILD.bootstrap |  222 +--
 2 files changed, 219 insertions(+), 219 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-04 01:24:48 UTC (rev 1292776)
+++ PKGBUILD2022-09-04 01:24:54 UTC (rev 1292777)
@@ -1,108 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Anatol Pomozov 
-# Contributor: Martin Schmölzer 
-
-_target=riscv64-elf
-pkgname=$_target-gcc
-pkgver=12.1.0
-pkgrel=1
-#_snapshot=8-20180427
-pkgdesc='The GNU Compiler Collection - cross compiler for RISCV64 (bare-metal) 
target'
-arch=(x86_64)
-url='https://gcc.gnu.org/'
-license=(GPL LGPL FDL)
-depends=($_target-binutils zlib libmpc libisl zstd)
-makedepends=(gmp mpfr $_target-newlib)
-optdepends=("$_target-newlib: Standard C library optimized for embedded 
systems")
-options=(!emptydirs !strip !lto)
-source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
-#ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
-   )
-sha512sums=('2121d295292814a6761edf1fba08c5f633ebe16f52b80e7b73a91050e71e1d2ed98bf17eebad263e191879561c02b48906c53faa4c4670c486a26fc75df23900'
-'SKIP')
-validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

-  13975A70E63C361C73AE69EF6EEB81F8981C74C7) # Richard Guenther 

-
-if [ -n "$_snapshot" ]; then
-  _basedir=gcc-$_snapshot
-else
-  _basedir=gcc-$pkgver
-fi
-
-prepare() {
-  mkdir build-gcc
-
-  cd $_basedir
-
-  echo $pkgver > gcc/BASE-VER
-}
-
-build() {
-  cd build-gcc
-
-  CFLAGS=${CFLAGS/-Werror=format-security/}
-  CXXFLAGS=${CXXFLAGS/-Werror=format-security/}
-
-  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-  export CXXFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-
-  "$srcdir"/$_basedir/configure \
---target=$_target \
---prefix=/usr \
---with-sysroot=/usr/$_target \
---with-native-system-header-dir=/include \
---libexecdir=/usr/lib \
---enable-languages=c,c++ \
---enable-threads=single \
---enable-plugins \
---enable-multilib \
---enable-libgcc \
---disable-libgomp \
---disable-libquadmath \
---disable-libffi \
---disable-libssp \
---disable-libmudflap \
---disable-decimal-float \
---disable-libstdcxx-pch \
---disable-nls \
---disable-shared \
---disable-tls \
---with-newlib \
---with-gnu-as \
---with-gnu-ld \
---with-system-zlib \
---with-headers=/usr/$_target/include \
---with-python-dir=share/gcc-$_target \
---with-gmp \
---with-mpfr \
---with-mpc \
---with-isl \
---with-libelf \
---enable-gnu-indirect-function \
---with-pkgversion="Arch Linux Repositories" \
---with-bugurl='https://bugs.archlinux.org/'
-
-  make
-}
-
-package() {
-  cd build-gcc
-
-  make DESTDIR="$pkgdir" install -j1
-
-  # strip target binaries
-  find "$pkgdir"/usr/lib/gcc/$_target/$pkgver "$pkgdir"/usr/$_target/lib \
-   -type f -and \( -name \*.a -or -name \*.o \) \
-   -exec $_target-objcopy -R .comment -R .note -R .debug_info -R 
.debug_aranges \
-   -R .debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R .debug_line \
-   -R .debug_str -R .debug_ranges -R .debug_loc '{}' \;
-
-  # strip host binaries
-  find "$pkgdir"/usr/bin/ "$pkgdir"/usr/lib/gcc/$_target/$pkgver -type f -and 
\( -executable \) -exec strip '{}' \;
-
-  # Remove files that conflict with host gcc package
-  rm -r "$pkgdir"/usr/share/man/man7
-  rm -r "$pkgdir"/usr/share/info
-  rm "$pkgdir"/usr/lib/libcc1.*
-}
-

Copied: riscv64-elf-gcc/repos/community-x86_64/PKGBUILD (from rev 1292776, 
riscv64-elf-gcc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-04 01:24:54 UTC (rev 1292777)
@@ -0,0 +1,108 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Anatol Pomozov 
+# Contributor: Martin Schmölzer 
+
+_target=riscv64-elf
+pkgname=$_target-gcc
+pkgver=12.2.0
+pkgrel=1
+#_snapshot=8-20180427
+pkgdesc='The GNU Compiler Collection - cross compiler for RISCV64 (bare-metal) 
target'
+arch=(x86_64)
+url='https://gcc.gnu.org/'
+license=(GPL LGPL FDL)
+depends=($_target-binutils zlib libmpc libisl zstd)
+makedepends=(gmp mpfr $_target-newlib

[arch-commits] Commit in riscv64-elf-gcc/trunk (PKGBUILD)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:24:48
  Author: ffy00
Revision: 1292776

upgpkg: riscv64-elf-gcc 12.2.0-1

Modified:
  riscv64-elf-gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-04 01:24:12 UTC (rev 1292775)
+++ PKGBUILD2022-09-04 01:24:48 UTC (rev 1292776)
@@ -4,7 +4,7 @@
 
 _target=riscv64-elf
 pkgname=$_target-gcc
-pkgver=12.1.0
+pkgver=12.2.0
 pkgrel=1
 #_snapshot=8-20180427
 pkgdesc='The GNU Compiler Collection - cross compiler for RISCV64 (bare-metal) 
target'
@@ -18,7 +18,7 @@
 source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
 #ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
)
-sha512sums=('2121d295292814a6761edf1fba08c5f633ebe16f52b80e7b73a91050e71e1d2ed98bf17eebad263e191879561c02b48906c53faa4c4670c486a26fc75df23900'
+sha512sums=('e9e857bd81bf7a370307d6848c81b2f5403db8c7b5207f54bce3f3faac3bde63445684092c2bc1a2427cddb6f7746496d9fbbef05fbbd77f2810b2998f1f9173'
 'SKIP')
 validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

   13975A70E63C361C73AE69EF6EEB81F8981C74C7) # Richard Guenther 




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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:24:08
  Author: ffy00
Revision: 1292774

upgpkg: python-trailrunner 1.2.1-1

Added:
  python-trailrunner/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-04 01:24:08 UTC (rev 1292774)
@@ -0,0 +1,30 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=trailrunner
+pkgname=python-$_pkgname
+pkgver=1.2.1
+pkgrel=1
+pkgdesc='Walk paths and run things'
+arch=('any')
+url='https://github.com/omnilib/trailrunner'
+license=('MIT')
+depends=('python-pathspec')
+makedepends=('python-build' 'python-installer' 'python-flit-core' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('9dc4ef4b9256ba9dcade287bb5fc6037a4472fcd11f2b75d72875db67701d0139069816901c15a15f81994bcf977e5cd837b7c4daedb5fc6143b842276f0f433')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:24:12
  Author: ffy00
Revision: 1292775

archrelease: copy trunk to community-any

Added:
  python-trailrunner/repos/community-any/
  python-trailrunner/repos/community-any/PKGBUILD
(from rev 1292774, python-trailrunner/trunk/PKGBUILD)

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

Copied: python-trailrunner/repos/community-any/PKGBUILD (from rev 1292774, 
python-trailrunner/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-09-04 01:24:12 UTC (rev 1292775)
@@ -0,0 +1,30 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=trailrunner
+pkgname=python-$_pkgname
+pkgver=1.2.1
+pkgrel=1
+pkgdesc='Walk paths and run things'
+arch=('any')
+url='https://github.com/omnilib/trailrunner'
+license=('MIT')
+depends=('python-pathspec')
+makedepends=('python-build' 'python-installer' 'python-flit-core' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('9dc4ef4b9256ba9dcade287bb5fc6037a4472fcd11f2b75d72875db67701d0139069816901c15a15f81994bcf977e5cd837b7c4daedb5fc6143b842276f0f433')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (3 files)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:19:34
  Author: ffy00
Revision: 1292773

add root structure

Added:
  python-trailrunner/
  python-trailrunner/repos/
  python-trailrunner/trunk/



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:09:48
  Author: ffy00
Revision: 1292772

add root structure

Added:
  ufmt/
  ufmt/repos/
  ufmt/trunk/



[arch-commits] Commit in riscv64-linux-gnu-gcc/repos/community-x86_64 (2 files)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:07:28
  Author: ffy00
Revision: 1292771

archrelease: copy trunk to community-x86_64

Added:
  riscv64-linux-gnu-gcc/repos/community-x86_64/PKGBUILD
(from rev 1292770, riscv64-linux-gnu-gcc/trunk/PKGBUILD)
Deleted:
  riscv64-linux-gnu-gcc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-04 01:07:24 UTC (rev 1292770)
+++ PKGBUILD2022-09-04 01:07:28 UTC (rev 1292771)
@@ -1,104 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Alexander F. Rødseth 
-# Contributor: Emil Renner Berthing 
-
-_target=riscv64-linux-gnu
-pkgname=$_target-gcc
-pkgver=12.1.0
-pkgrel=2
-pkgdesc='Cross compiler for 32-bit and 64-bit RISC-V'
-arch=('x86_64')
-url='https://gcc.gnu.org/'
-license=('GPL' 'LGPL' 'FDL')
-groups=('risc-v')
-depends=("$_target-binutils" "$_target-glibc" 'libmpc' 'libisl' 'zstd')
-options=('!emptydirs' '!strip' '!lto')
-source=("https://gcc.gnu.org/pub/gcc/releases/gcc-$pkgver/gcc-$pkgver.tar.xz";)
-sha512sums=('2121d295292814a6761edf1fba08c5f633ebe16f52b80e7b73a91050e71e1d2ed98bf17eebad263e191879561c02b48906c53faa4c4670c486a26fc75df23900')
-
-if [[ -n "$_snapshot" ]]; then
-  _basedir=gcc-$_snapshot
-else
-  _basedir=gcc-$pkgver
-fi
-
-prepare() {
-  cd $_basedir
-
-  echo $pkgver > gcc/BASE-VER
-
-  # Do not run fixincludes
-  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
-
-  rm -rf "$srcdir/gcc-build"
-  mkdir "$srcdir/gcc-build"
-}
-
-build() {
-  cd gcc-build
-
-  CFLAGS=${CFLAGS/-Werror=format-security/}
-  CXXFLAGS=${CXXFLAGS/-Werror=format-security/}
-
-  # Using -pipe causes spurious test-suite failures.
-  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
-  CFLAGS=${CFLAGS/-pipe/}
-  CXXFLAGS=${CXXFLAGS/-pipe/}
-
-  "$srcdir/$_basedir/configure" \
-  --prefix=/usr \
-  --program-prefix=$_target- \
-  --with-local-prefix=/usr/$_target \
-  --with-sysroot=/usr/$_target \
-  --with-build-sysroot=/usr/$_target \
-  --libdir=/usr/lib \
-  --libexecdir=/usr/lib \
-  --target=$_target \
-  --host=$CHOST \
-  --build=$CHOST \
-  --with-system-zlib \
-  --with-isl \
-  --with-linker-hash-style=gnu \
-  --disable-nls \
-  --disable-libunwind-exceptions \
-  --disable-libstdcxx-pch \
-  --disable-libssp \
-  --disable-multilib \
-  --disable-werror \
-  --enable-languages=c,c++ \
-  --enable-shared \
-  --enable-threads=posix \
-  --enable-__cxa_atexit \
-  --enable-clocale=gnu \
-  --enable-gnu-unique-object \
-  --enable-linker-build-id \
-  --enable-lto \
-  --enable-plugin \
-  --enable-install-libiberty \
-  --enable-gnu-indirect-function \
-  --enable-default-pie \
-  --enable-checking=release
-  make
-}
-
-package() {
-  make -C gcc-build DESTDIR="$pkgdir" \
-install-gcc 
install-target-{libgcc,libstdc++-v3,libgomp,libgfortran,libquadmath,libatomic}
-
-  # Strip target binaries
-  find "$pkgdir/usr/lib/gcc/$_target/" "$pkgdir/usr/$_target/lib" -type f \
--and \( -name \*.a -or -name \*.o \) -exec $_target-objcopy \
--R .comment -R .note -R .debug_info -R .debug_aranges -R .debug_pubnames \
--R .debug_pubtypes -R .debug_abbrev -R .debug_line -R .debug_str \
--R .debug_ranges -R .debug_loc '{}' \;
-
-  # Strip host binaries
-  find "$pkgdir/usr/bin/" "$pkgdir/usr/lib/gcc/$_target/" -type f \
--and \( -executable \) -exec strip '{}' \;
-
-  # Remove files that conflict with host gcc package
-  rm -r "$pkgdir/usr/share/"{man/man7,info,"gcc-$pkgver"}
-}
-
-# vim: ts=2 sw=2 et:

Copied: riscv64-linux-gnu-gcc/repos/community-x86_64/PKGBUILD (from rev 
1292770, riscv64-linux-gnu-gcc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-04 01:07:28 UTC (rev 1292771)
@@ -0,0 +1,104 @@
+# Maintainer: Felix Yan 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Alexander F. Rødseth 
+# Contributor: Emil Renner Berthing 
+
+_target=riscv64-linux-gnu
+pkgname=$_target-gcc
+pkgver=12.2.0
+pkgrel=1
+pkgdesc='Cross compiler for 32-bit and 64-bit RISC-V'
+arch=('x86_64')
+url='https://gcc.gnu.org/'
+license=('GPL' 'LGPL' 'FDL')
+groups=('risc-v')
+depends=("$_target-binutils" "$_target-glibc" 'libmpc' 'libisl' 'zstd')
+options=('!emptydirs' '!strip' '!lto')
+source=("https://gcc.gnu.org/pub/gcc/releases/gcc-$pkgver/gcc-$pkgver.tar.xz";)
+sha512sums=('e9e857bd81bf7a370307d6848c81b2f5403db8c7b5207f54bce3f3faac3bde63445684092c2bc1a2427cddb6f7746496d9fbbef05fbbd77f2810b2998f1f9173')
+
+if [[ -n "$_snapshot" ]]; then
+  _basedir=gcc-$_snapshot
+else
+  _basedir=gcc-$pkgver
+fi
+
+prepare() {
+  cd $_basedir
+
+  echo $pkgver > gcc/BASE-VER
+
+  # Do

[arch-commits] Commit in riscv64-linux-gnu-gcc/trunk (PKGBUILD)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:07:24
  Author: ffy00
Revision: 1292770

upgpkg: riscv64-linux-gnu-gcc 12.2.0-1

Modified:
  riscv64-linux-gnu-gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-04 01:05:38 UTC (rev 1292769)
+++ PKGBUILD2022-09-04 01:07:24 UTC (rev 1292770)
@@ -5,8 +5,8 @@
 
 _target=riscv64-linux-gnu
 pkgname=$_target-gcc
-pkgver=12.1.0
-pkgrel=2
+pkgver=12.2.0
+pkgrel=1
 pkgdesc='Cross compiler for 32-bit and 64-bit RISC-V'
 arch=('x86_64')
 url='https://gcc.gnu.org/'
@@ -15,7 +15,7 @@
 depends=("$_target-binutils" "$_target-glibc" 'libmpc' 'libisl' 'zstd')
 options=('!emptydirs' '!strip' '!lto')
 source=("https://gcc.gnu.org/pub/gcc/releases/gcc-$pkgver/gcc-$pkgver.tar.xz";)
-sha512sums=('2121d295292814a6761edf1fba08c5f633ebe16f52b80e7b73a91050e71e1d2ed98bf17eebad263e191879561c02b48906c53faa4c4670c486a26fc75df23900')
+sha512sums=('e9e857bd81bf7a370307d6848c81b2f5403db8c7b5207f54bce3f3faac3bde63445684092c2bc1a2427cddb6f7746496d9fbbef05fbbd77f2810b2998f1f9173')
 
 if [[ -n "$_snapshot" ]]; then
   _basedir=gcc-$_snapshot



[arch-commits] Commit in or1k-elf-gcc/repos/community-x86_64 (5 files)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:05:38
  Author: ffy00
Revision: 1292769

archrelease: copy trunk to community-x86_64

Added:
  or1k-elf-gcc/repos/community-x86_64/PKGBUILD
(from rev 1292768, or1k-elf-gcc/trunk/PKGBUILD)
  or1k-elf-gcc/repos/community-x86_64/PKGBUILD.bootstrap
(from rev 1292768, or1k-elf-gcc/trunk/PKGBUILD.bootstrap)
  or1k-elf-gcc/repos/community-x86_64/keys/
Deleted:
  or1k-elf-gcc/repos/community-x86_64/PKGBUILD
  or1k-elf-gcc/repos/community-x86_64/PKGBUILD.bootstrap

+
 PKGBUILD   |  218 +-
 PKGBUILD.bootstrap |  222 +--
 2 files changed, 220 insertions(+), 220 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-04 01:05:33 UTC (rev 1292768)
+++ PKGBUILD2022-09-04 01:05:38 UTC (rev 1292769)
@@ -1,109 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Anatol Pomozov 
-# Contributor: Martin Schmölzer 
-
-_target=or1k-elf
-pkgname=$_target-gcc
-pkgver=12.1.0
-pkgrel=1
-#_snapshot=8-20180427
-pkgdesc='The GNU Compiler Collection - cross compiler for OpenRISC 1000 
(bare-metal) target'
-arch=(x86_64)
-url='https://gcc.gnu.org/'
-license=(GPL LGPL FDL)
-depends=($_target-binutils zlib libmpc libisl zstd)
-makedepends=(gmp mpfr $_target-newlib)
-optdepends=("$_target-newlib: Standard C library optimized for embedded 
systems")
-options=(!emptydirs !strip !lto)
-source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
-#ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
-   )
-sha512sums=('2121d295292814a6761edf1fba08c5f633ebe16f52b80e7b73a91050e71e1d2ed98bf17eebad263e191879561c02b48906c53faa4c4670c486a26fc75df23900'
-'SKIP')
-
-validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

-  13975A70E63C361C73AE69EF6EEB81F8981C74C7) # Richard Guenther 

-
-if [ -n "$_snapshot" ]; then
-  _basedir=gcc-$_snapshot
-else
-  _basedir=gcc-$pkgver
-fi
-
-prepare() {
-  mkdir build-gcc
-
-  cd $_basedir
-
-  echo $pkgver > gcc/BASE-VER
-}
-
-build() {
-  cd build-gcc
-
-  CFLAGS=${CFLAGS/-Werror=format-security/}
-  CXXFLAGS=${CXXFLAGS/-Werror=format-security/}
-
-  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-  export CXXFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-
-  "$srcdir"/$_basedir/configure \
---target=$_target \
---prefix=/usr \
---with-sysroot=/usr/$_target \
---with-native-system-header-dir=/include \
---libexecdir=/usr/lib \
---enable-languages=c,c++ \
---enable-threads=single \
---enable-plugins \
---enable-multilib \
---enable-libgcc \
---disable-libgomp \
---disable-libquadmath \
---disable-libffi \
---disable-libssp \
---disable-libmudflap \
---disable-decimal-float \
---disable-libstdcxx-pch \
---disable-nls \
---disable-shared \
---disable-tls \
---with-newlib \
---with-gnu-as \
---with-gnu-ld \
---with-system-zlib \
---with-headers=/usr/$_target/include \
---with-python-dir=share/gcc-$_target \
---with-gmp \
---with-mpfr \
---with-mpc \
---with-isl \
---with-libelf \
---enable-gnu-indirect-function \
---with-pkgversion="Arch Linux Repositories" \
---with-bugurl='https://bugs.archlinux.org/'
-
-  make
-}
-
-package() {
-  cd build-gcc
-
-  make DESTDIR="$pkgdir" install -j1
-
-  # strip target binaries
-  find "$pkgdir"/usr/lib/gcc/$_target/$pkgver "$pkgdir"/usr/$_target/lib \
-   -type f -and \( -name \*.a -or -name \*.o \) \
-   -exec $_target-objcopy -R .comment -R .note -R .debug_info -R 
.debug_aranges \
-   -R .debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R .debug_line \
-   -R .debug_str -R .debug_ranges -R .debug_loc '{}' \;
-
-  # strip host binaries
-  find "$pkgdir"/usr/bin/ "$pkgdir"/usr/lib/gcc/$_target/$pkgver -type f -and 
\( -executable \) -exec strip '{}' \;
-
-  # Remove files that conflict with host gcc package
-  rm -r "$pkgdir"/usr/share/man/man7
-  rm -r "$pkgdir"/usr/share/info
-  rm "$pkgdir"/usr/lib/libcc1.*
-}
-

Copied: or1k-elf-gcc/repos/community-x86_64/PKGBUILD (from rev 1292768, 
or1k-elf-gcc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-04 01:05:38 UTC (rev 1292769)
@@ -0,0 +1,109 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Anatol Pomozov 
+# Contributor: Martin Schmölzer 
+
+_target=or1k-elf
+pkgname=$_target-gcc
+pkgver=12.2.0
+pkgrel=1
+#_snapshot=8-20180427
+pkgdesc='The GNU Compiler Collection - cross compiler for OpenRISC 1000 
(bare-metal) target'
+arch=(x86_64)
+url='https://gcc.gnu.org/'
+license=(GPL LGPL FDL)
+depends=($_target-binutils zlib libmpc libisl zstd)
+makedepends=(gmp mpfr $_target-newlib)
+optdepends=("$_

[arch-commits] Commit in or1k-elf-gcc/trunk (PKGBUILD)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:05:33
  Author: ffy00
Revision: 1292768

upgpkg: or1k-elf-gcc 12.2.0-1

Modified:
  or1k-elf-gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-04 01:01:54 UTC (rev 1292767)
+++ PKGBUILD2022-09-04 01:05:33 UTC (rev 1292768)
@@ -4,7 +4,7 @@
 
 _target=or1k-elf
 pkgname=$_target-gcc
-pkgver=12.1.0
+pkgver=12.2.0
 pkgrel=1
 #_snapshot=8-20180427
 pkgdesc='The GNU Compiler Collection - cross compiler for OpenRISC 1000 
(bare-metal) target'
@@ -18,7 +18,7 @@
 source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
 #ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
)
-sha512sums=('2121d295292814a6761edf1fba08c5f633ebe16f52b80e7b73a91050e71e1d2ed98bf17eebad263e191879561c02b48906c53faa4c4670c486a26fc75df23900'
+sha512sums=('e9e857bd81bf7a370307d6848c81b2f5403db8c7b5207f54bce3f3faac3bde63445684092c2bc1a2427cddb6f7746496d9fbbef05fbbd77f2810b2998f1f9173'
 'SKIP')
 
 validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 




[arch-commits] Commit in nds32le-elf-gcc/repos/community-x86_64 (5 files)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:01:54
  Author: ffy00
Revision: 1292767

archrelease: copy trunk to community-x86_64

Added:
  nds32le-elf-gcc/repos/community-x86_64/PKGBUILD
(from rev 1292766, nds32le-elf-gcc/trunk/PKGBUILD)
  nds32le-elf-gcc/repos/community-x86_64/PKGBUILD.bootstrap
(from rev 1292766, nds32le-elf-gcc/trunk/PKGBUILD.bootstrap)
  nds32le-elf-gcc/repos/community-x86_64/keys/
Deleted:
  nds32le-elf-gcc/repos/community-x86_64/PKGBUILD
  nds32le-elf-gcc/repos/community-x86_64/PKGBUILD.bootstrap

+
 PKGBUILD   |  216 -
 PKGBUILD.bootstrap |  222 +--
 2 files changed, 219 insertions(+), 219 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-04 01:01:49 UTC (rev 1292766)
+++ PKGBUILD2022-09-04 01:01:54 UTC (rev 1292767)
@@ -1,108 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Anatol Pomozov 
-# Contributor: Martin Schmölzer 
-
-_target=nds32le-elf
-pkgname=$_target-gcc
-pkgver=12.1.0
-pkgrel=1
-#_snapshot=8-20180427
-pkgdesc='The GNU Compiler Collection - cross compiler for Andes 32 
little-endian (bare-metal) target'
-arch=(x86_64)
-url='https://gcc.gnu.org/'
-license=(GPL LGPL FDL)
-depends=($_target-binutils zlib libmpc libisl zstd)
-makedepends=(gmp mpfr $_target-newlib)
-optdepends=("$_target-newlib: Standard C library optimized for embedded 
systems")
-options=(!emptydirs !strip !lto)
-source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
-#ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
-   )
-sha512sums=('2121d295292814a6761edf1fba08c5f633ebe16f52b80e7b73a91050e71e1d2ed98bf17eebad263e191879561c02b48906c53faa4c4670c486a26fc75df23900'
-'SKIP')
-validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

-  13975A70E63C361C73AE69EF6EEB81F8981C74C7) # Richard Guenther 

-
-if [ -n "$_snapshot" ]; then
-  _basedir=gcc-$_snapshot
-else
-  _basedir=gcc-$pkgver
-fi
-
-prepare() {
-  mkdir build-gcc
-
-  cd $_basedir
-
-  echo $pkgver > gcc/BASE-VER
-}
-
-build() {
-  cd build-gcc
-
-  CFLAGS=${CFLAGS/-Werror=format-security/}
-  CXXFLAGS=${CXXFLAGS/-Werror=format-security/}
-
-  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-  export CXXFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-
-  "$srcdir"/$_basedir/configure \
---target=$_target \
---prefix=/usr \
---with-sysroot=/usr/$_target \
---with-native-system-header-dir=/include \
---libexecdir=/usr/lib \
---enable-languages=c,c++ \
---enable-threads=single \
---enable-plugins \
---enable-multilib \
---enable-libgcc \
---disable-libgomp \
---disable-libquadmath \
---disable-libffi \
---disable-libssp \
---disable-libmudflap \
---disable-decimal-float \
---disable-libstdcxx-pch \
---disable-nls \
---disable-shared \
---disable-tls \
---with-newlib \
---with-gnu-as \
---with-gnu-ld \
---with-system-zlib \
---with-headers=/usr/$_target/include \
---with-python-dir=share/gcc-$_target \
---with-gmp \
---with-mpfr \
---with-mpc \
---with-isl \
---with-libelf \
---enable-gnu-indirect-function \
---with-pkgversion="Arch Linux Repositories" \
---with-bugurl='https://bugs.archlinux.org/'
-
-  make
-}
-
-package() {
-  cd build-gcc
-
-  make DESTDIR="$pkgdir" install -j1
-
-  # strip target binaries
-  find "$pkgdir"/usr/lib/gcc/$_target/$pkgver "$pkgdir"/usr/$_target/lib \
-   -type f -and \( -name \*.a -or -name \*.o \) \
-   -exec $_target-objcopy -R .comment -R .note -R .debug_info -R 
.debug_aranges \
-   -R .debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R .debug_line \
-   -R .debug_str -R .debug_ranges -R .debug_loc '{}' \;
-
-  # strip host binaries
-  find "$pkgdir"/usr/bin/ "$pkgdir"/usr/lib/gcc/$_target/$pkgver -type f -and 
\( -executable \) -exec strip '{}' \;
-
-  # Remove files that conflict with host gcc package
-  rm -r "$pkgdir"/usr/share/man/man7
-  rm -r "$pkgdir"/usr/share/info
-  rm "$pkgdir"/usr/lib/libcc1.*
-}
-

Copied: nds32le-elf-gcc/repos/community-x86_64/PKGBUILD (from rev 1292766, 
nds32le-elf-gcc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-04 01:01:54 UTC (rev 1292767)
@@ -0,0 +1,108 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Anatol Pomozov 
+# Contributor: Martin Schmölzer 
+
+_target=nds32le-elf
+pkgname=$_target-gcc
+pkgver=12.2.0
+pkgrel=1
+#_snapshot=8-20180427
+pkgdesc='The GNU Compiler Collection - cross compiler for Andes 32 
little-endian (bare-metal) target'
+arch=(x86_64)
+url='https://gcc.gnu.org/'
+license=(GPL LGPL FDL)
+depends=($_target-binutils zlib libmpc libisl zstd)
+makedep

[arch-commits] Commit in nds32le-elf-gcc/trunk (PKGBUILD)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 01:01:49
  Author: ffy00
Revision: 1292766

upgpkg: nds32le-elf-gcc 12.2.0-1

Modified:
  nds32le-elf-gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-04 00:59:07 UTC (rev 1292765)
+++ PKGBUILD2022-09-04 01:01:49 UTC (rev 1292766)
@@ -4,7 +4,7 @@
 
 _target=nds32le-elf
 pkgname=$_target-gcc
-pkgver=12.1.0
+pkgver=12.2.0
 pkgrel=1
 #_snapshot=8-20180427
 pkgdesc='The GNU Compiler Collection - cross compiler for Andes 32 
little-endian (bare-metal) target'
@@ -18,7 +18,7 @@
 source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
 #ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
)
-sha512sums=('2121d295292814a6761edf1fba08c5f633ebe16f52b80e7b73a91050e71e1d2ed98bf17eebad263e191879561c02b48906c53faa4c4670c486a26fc75df23900'
+sha512sums=('e9e857bd81bf7a370307d6848c81b2f5403db8c7b5207f54bce3f3faac3bde63445684092c2bc1a2427cddb6f7746496d9fbbef05fbbd77f2810b2998f1f9173'
 'SKIP')
 validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

   13975A70E63C361C73AE69EF6EEB81F8981C74C7) # Richard Guenther 




[arch-commits] Commit in lm32-elf-gcc/repos/community-x86_64 (5 files)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 00:59:07
  Author: ffy00
Revision: 1292765

archrelease: copy trunk to community-x86_64

Added:
  lm32-elf-gcc/repos/community-x86_64/PKGBUILD
(from rev 1292764, lm32-elf-gcc/trunk/PKGBUILD)
  lm32-elf-gcc/repos/community-x86_64/PKGBUILD.bootstrap
(from rev 1292764, lm32-elf-gcc/trunk/PKGBUILD.bootstrap)
  lm32-elf-gcc/repos/community-x86_64/keys/
Deleted:
  lm32-elf-gcc/repos/community-x86_64/PKGBUILD
  lm32-elf-gcc/repos/community-x86_64/PKGBUILD.bootstrap

+
 PKGBUILD   |  216 -
 PKGBUILD.bootstrap |  222 +--
 2 files changed, 219 insertions(+), 219 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-04 00:59:00 UTC (rev 1292764)
+++ PKGBUILD2022-09-04 00:59:07 UTC (rev 1292765)
@@ -1,108 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Anatol Pomozov 
-# Contributor: Martin Schmölzer 
-
-_target=lm32-elf
-pkgname=$_target-gcc
-pkgver=12.1.0
-pkgrel=1
-#_snapshot=8-20180427
-pkgdesc='The GNU Compiler Collection - cross compiler for LatticeMico32 
(bare-metal) target'
-arch=(x86_64)
-url='https://gcc.gnu.org/'
-license=(GPL LGPL FDL)
-depends=($_target-binutils zlib libmpc libisl zstd)
-makedepends=(gmp mpfr $_target-newlib)
-optdepends=("$_target-newlib: Standard C library optimized for embedded 
systems")
-options=(!emptydirs !strip !lto)
-source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
-#ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
-   )
-sha512sums=('2121d295292814a6761edf1fba08c5f633ebe16f52b80e7b73a91050e71e1d2ed98bf17eebad263e191879561c02b48906c53faa4c4670c486a26fc75df23900'
-'SKIP')
-validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

-  13975A70E63C361C73AE69EF6EEB81F8981C74C7) # Richard Guenther 

-
-if [ -n "$_snapshot" ]; then
-  _basedir=gcc-$_snapshot
-else
-  _basedir=gcc-$pkgver
-fi
-
-prepare() {
-  mkdir build-gcc
-
-  cd $_basedir
-
-  echo $pkgver > gcc/BASE-VER
-}
-
-build() {
-  cd build-gcc
-
-  CFLAGS=${CFLAGS/-Werror=format-security/}
-  CXXFLAGS=${CXXFLAGS/-Werror=format-security/}
-
-  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-  export CXXFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-
-  "$srcdir"/$_basedir/configure \
---target=$_target \
---prefix=/usr \
---with-sysroot=/usr/$_target \
---with-native-system-header-dir=/include \
---libexecdir=/usr/lib \
---enable-languages=c,c++ \
---enable-threads=single \
---enable-plugins \
---enable-multilib \
---enable-libgcc \
---disable-libgomp \
---disable-libquadmath \
---disable-libffi \
---disable-libssp \
---disable-libmudflap \
---disable-decimal-float \
---disable-libstdcxx-pch \
---disable-nls \
---disable-shared \
---disable-tls \
---with-newlib \
---with-gnu-as \
---with-gnu-ld \
---with-system-zlib \
---with-headers=/usr/$_target/include \
---with-python-dir=share/gcc-$_target \
---with-gmp \
---with-mpfr \
---with-mpc \
---with-isl \
---with-libelf \
---enable-gnu-indirect-function \
---with-pkgversion="Arch Linux Repositories" \
---with-bugurl='https://bugs.archlinux.org/'
-
-  make
-}
-
-package() {
-  cd build-gcc
-
-  make DESTDIR="$pkgdir" install -j1
-
-  # strip target binaries
-  find "$pkgdir"/usr/lib/gcc/$_target/$pkgver "$pkgdir"/usr/$_target/lib \
-   -type f -and \( -name \*.a -or -name \*.o \) \
-   -exec $_target-objcopy -R .comment -R .note -R .debug_info -R 
.debug_aranges \
-   -R .debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R .debug_line \
-   -R .debug_str -R .debug_ranges -R .debug_loc '{}' \;
-
-  # strip host binaries
-  find "$pkgdir"/usr/bin/ "$pkgdir"/usr/lib/gcc/$_target/$pkgver -type f -and 
\( -executable \) -exec strip '{}' \;
-
-  # Remove files that conflict with host gcc package
-  rm -r "$pkgdir"/usr/share/man/man7
-  rm -r "$pkgdir"/usr/share/info
-  rm "$pkgdir"/usr/lib/libcc1.*
-}
-

Copied: lm32-elf-gcc/repos/community-x86_64/PKGBUILD (from rev 1292764, 
lm32-elf-gcc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-04 00:59:07 UTC (rev 1292765)
@@ -0,0 +1,108 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Anatol Pomozov 
+# Contributor: Martin Schmölzer 
+
+_target=lm32-elf
+pkgname=$_target-gcc
+pkgver=12.2.0
+pkgrel=1
+#_snapshot=8-20180427
+pkgdesc='The GNU Compiler Collection - cross compiler for LatticeMico32 
(bare-metal) target'
+arch=(x86_64)
+url='https://gcc.gnu.org/'
+license=(GPL LGPL FDL)
+depends=($_target-binutils zlib libmpc libisl zstd)
+makedepends=(gmp mpfr $_target-newlib)
+optdepends=("$_tar

[arch-commits] Commit in lm32-elf-gcc/trunk (PKGBUILD)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Sunday, September 4, 2022 @ 00:59:00
  Author: ffy00
Revision: 1292764

upgpkg: lm32-elf-gcc 12.2.0-1

Modified:
  lm32-elf-gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-04 00:51:20 UTC (rev 1292763)
+++ PKGBUILD2022-09-04 00:59:00 UTC (rev 1292764)
@@ -4,7 +4,7 @@
 
 _target=lm32-elf
 pkgname=$_target-gcc
-pkgver=12.1.0
+pkgver=12.2.0
 pkgrel=1
 #_snapshot=8-20180427
 pkgdesc='The GNU Compiler Collection - cross compiler for LatticeMico32 
(bare-metal) target'
@@ -18,7 +18,7 @@
 source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
 #ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
)
-sha512sums=('2121d295292814a6761edf1fba08c5f633ebe16f52b80e7b73a91050e71e1d2ed98bf17eebad263e191879561c02b48906c53faa4c4670c486a26fc75df23900'
+sha512sums=('e9e857bd81bf7a370307d6848c81b2f5403db8c7b5207f54bce3f3faac3bde63445684092c2bc1a2427cddb6f7746496d9fbbef05fbbd77f2810b2998f1f9173'
 'SKIP')
 validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

   13975A70E63C361C73AE69EF6EEB81F8981C74C7) # Richard Guenther 




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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 20:28:32
  Author: ffy00
Revision: 1292740

archrelease: copy trunk to community-any

Added:
  twine/repos/community-any/PKGBUILD
(from rev 1292739, twine/trunk/PKGBUILD)
Deleted:
  twine/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 20:28:29 UTC (rev 1292739)
+++ PKGBUILD2022-09-03 20:28:32 UTC (rev 1292740)
@@ -1,51 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Chris Warrick 
-
-pkgname=twine
-pkgver=3.7.1
-pkgrel=1
-pkgdesc='Collection of utilities for interacting with PyPI'
-arch=('any')
-url='https://pypi.python.org/pypi/twine'
-license=('Apache')
-depends=('python-pkginfo' 'python-readme-renderer' 'python-requests' 
'python-requests-toolbelt'
- 'python-packaging' 'python-importlib-metadata' 'python-tqdm' 
'python-keyring'
- 'python-rfc3986' 'python-colorama')
-makedepends=('python-pyproject2setuppy' 'python-setuptools-scm')
-checkdepends=('git' 'python-munch' 'python-jaraco.envs' 'python-portend' 
'python-pretend'
-  'python-pytest-cov' 'python-pytest-services' 
'python-pytest-socket')
-provides=('python-twine')
-conflicts=('python-twine')
-replaces=('python-twine')
-source=("https://github.com/pypa/twine/archive/$pkgver/$pkgname-$pkgver.tar.gz";
-
$pkgname-update-sampleproject.patch::https://github.com/pypa/twine/pull/885.patch)
-sha512sums=('1c24283c956d96228ec12aae4d748e37d9e35b23bd07ada90565cdbbb82f268b313faba619b72baf801f0cc841c94bd7d362639f3a512c217fc8b944043e6e33'
-
'6fe0126a79e1a681d9308ff7fd35b15a7e1e50437d634c7119d6b96aa3487b02b78cd575878673572276d630771014f1df5c63910715371c671b139addad8f73')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-prepare() {
-  cd twine-$pkgver
-  patch -p1 -i ../$pkgname-update-sampleproject.patch
-  # This is needed because twine uses setuptools-scm's file finder hook to 
include package data,
-  # but the git checkout we use don't contain the needed SCM info.
-  # dephell generates a pattern for this automatically.
-  echo "recursive-include twine *.typed" > MANIFEST.in
-}
-
-build() {
-  cd twine-$pkgver
-  python -m pyproject2setuppy build
-}
-
-check() {
-  cd twine-$pkgver
-  python -m pyproject2setuppy egg_info
-  python -m pytest
-}
-
-package() {
-  cd twine-$pkgver
-  python -m pyproject2setuppy install --root="$pkgdir" --optimize=1
-  ln -s twine "$pkgdir"/usr/bin/twine3
-}

Copied: twine/repos/community-any/PKGBUILD (from rev 1292739, 
twine/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 20:28:32 UTC (rev 1292740)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Chris Warrick 
+
+pkgname=twine
+pkgver=4.0.1
+pkgrel=1
+pkgdesc='Collection of utilities for interacting with PyPI'
+arch=('any')
+url='https://github.com/pypa/twine/'
+license=('Apache')
+depends=('python-pkginfo' 'python-readme-renderer' 'python-requests' 
'python-requests-toolbelt'
+ 'python-packaging' 'python-importlib-metadata' 'python-tqdm' 
'python-keyring'
+ 'python-rfc3986' 'python-colorama')
+makedepends=('python-build' 'python-installer' 'python-setuptools-scm' 
'python-wheel')
+checkdepends=('git' 'python-munch' 'python-jaraco.envs' 'python-portend' 
'python-pretend' 'python-tox'
+  'python-pytest-cov' 'python-pytest-services' 
'python-pytest-socket' 'python-rich')
+provides=('python-twine')
+conflicts=('python-twine')
+replaces=('python-twine')
+source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('0b5d24c56731239400b6713e0e52d1cfdb399a84e886b02ea4b59e7af69cc1578e03bf442cca4b2ea5f400995955d27c8d9d3cc17a6ea59013bdaaf6ac63a567')
+
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # This is needed because twine uses setuptools-scm's file finder hook to 
include package data,
+  # but the git checkout we use don't contain the needed SCM info.
+  # dephell generates a pattern for this automatically.
+  echo "recursive-include twine *.typed" > MANIFEST.in
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver python -m build -nw
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver python -m pytest
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  ln -s twine "$pkgdir"/usr/bin/twine3
+}



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 20:28:29
  Author: ffy00
Revision: 1292739

upgpkg: twine 4.0.1-1

Modified:
  twine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 20:23:58 UTC (rev 1292738)
+++ PKGBUILD2022-09-03 20:28:29 UTC (rev 1292739)
@@ -2,31 +2,28 @@
 # Contributor: Chris Warrick 
 
 pkgname=twine
-pkgver=3.7.1
+pkgver=4.0.1
 pkgrel=1
 pkgdesc='Collection of utilities for interacting with PyPI'
 arch=('any')
-url='https://pypi.python.org/pypi/twine'
+url='https://github.com/pypa/twine/'
 license=('Apache')
 depends=('python-pkginfo' 'python-readme-renderer' 'python-requests' 
'python-requests-toolbelt'
  'python-packaging' 'python-importlib-metadata' 'python-tqdm' 
'python-keyring'
  'python-rfc3986' 'python-colorama')
-makedepends=('python-pyproject2setuppy' 'python-setuptools-scm')
-checkdepends=('git' 'python-munch' 'python-jaraco.envs' 'python-portend' 
'python-pretend'
-  'python-pytest-cov' 'python-pytest-services' 
'python-pytest-socket')
+makedepends=('python-build' 'python-installer' 'python-setuptools-scm' 
'python-wheel')
+checkdepends=('git' 'python-munch' 'python-jaraco.envs' 'python-portend' 
'python-pretend' 'python-tox'
+  'python-pytest-cov' 'python-pytest-services' 
'python-pytest-socket' 'python-rich')
 provides=('python-twine')
 conflicts=('python-twine')
 replaces=('python-twine')
-source=("https://github.com/pypa/twine/archive/$pkgver/$pkgname-$pkgver.tar.gz";
-
$pkgname-update-sampleproject.patch::https://github.com/pypa/twine/pull/885.patch)
-sha512sums=('1c24283c956d96228ec12aae4d748e37d9e35b23bd07ada90565cdbbb82f268b313faba619b72baf801f0cc841c94bd7d362639f3a512c217fc8b944043e6e33'
-
'6fe0126a79e1a681d9308ff7fd35b15a7e1e50437d634c7119d6b96aa3487b02b78cd575878673572276d630771014f1df5c63910715371c671b139addad8f73')
+source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('0b5d24c56731239400b6713e0e52d1cfdb399a84e886b02ea4b59e7af69cc1578e03bf442cca4b2ea5f400995955d27c8d9d3cc17a6ea59013bdaaf6ac63a567')
 
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 
 prepare() {
-  cd twine-$pkgver
-  patch -p1 -i ../$pkgname-update-sampleproject.patch
+  cd $pkgname-$pkgver
+
   # This is needed because twine uses setuptools-scm's file finder hook to 
include package data,
   # but the git checkout we use don't contain the needed SCM info.
   # dephell generates a pattern for this automatically.
@@ -34,18 +31,21 @@
 }
 
 build() {
-  cd twine-$pkgver
-  python -m pyproject2setuppy build
+  cd $pkgname-$pkgver
+
+  SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver python -m build -nw
 }
 
 check() {
-  cd twine-$pkgver
-  python -m pyproject2setuppy egg_info
-  python -m pytest
+  cd $pkgname-$pkgver
+
+  SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver python -m pytest
 }
 
 package() {
-  cd twine-$pkgver
-  python -m pyproject2setuppy install --root="$pkgdir" --optimize=1
+  cd $pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
   ln -s twine "$pkgdir"/usr/bin/twine3
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 20:23:58
  Author: ffy00
Revision: 1292738

archrelease: copy trunk to community-x86_64

Added:
  yosys/repos/community-x86_64/PKGBUILD
(from rev 1292737, yosys/trunk/PKGBUILD)
Deleted:
  yosys/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 20:23:54 UTC (rev 1292737)
+++ PKGBUILD2022-09-03 20:23:58 UTC (rev 1292738)
@@ -1,55 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Benoît Allard 
-# Contributor: killruana 
-
-pkgname=yosys
-pkgver=0.12
-pkgrel=7
-pkgdesc='A framework for RTL synthesis'
-arch=('x86_64')
-url='http://www.clifford.at/yosys/'
-license=('custom:ISC')
-depends=('abc' 'bash' 'boost-libs' 'tcl' 'libffi' 'python' 'protobuf')
-makedepends=('boost')
-checkdepends=('iverilog')
-optdepends=('graphviz: Schematics display support'
-'xdot: Display netlists'
-'yices: default solver for yosys-smtbmc'
-'cvc4: alternative solver for yosys-smtbmc'
-'z3: alternative solver for yosys-smtbmc')
-options=('!lto') # getting SIGSEGV when running the tests with LTO
-source=("https://github.com/cliffordwolf/yosys/archive/$pkgname-$pkgver.tar.gz";)
-sha512sums=('df91ea75ae08c7c7e134cfa6284c4e9349e6f85f2df32e4710a571176d5e1a334a6e1e77d52bf573686d33b405559e40af1a8d42cbd4e1f95f0e3b4e212e0b06')
-
-_make() {
-make \
-PREFIX="/usr" \
-CONFIG=gcc \
-ENABLE_TCL=1 \
-ENABLE_ABC=1 \
-ENABLE_GLOB=1 \
-ENABLE_PLUGINS=1 \
-ENABLE_LIBYOSYS=1 \
-ENABLE_PROTOBUF=1 \
-ENABLE_ZLIB=1 \
-ENABLE_PYOSYS=1 \
-ABCEXTERNAL=abc \
-BOOST_PYTHON_LIB="-lpython3.10 -lboost_python310" $@
-}
-
-build() {
-cd $pkgname-$pkgname-$pkgver
-_make
-}
-
-check() {
-cd $pkgname-$pkgname-$pkgver
-_make test
-}
-
-package() {
-cd $pkgname-$pkgname-$pkgver
-_make DESTDIR="$pkgdir" PYTHON_PREFIX="$pkgdir/usr" install
-
-install -Dm644 COPYING -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: yosys/repos/community-x86_64/PKGBUILD (from rev 1292737, 
yosys/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 20:23:58 UTC (rev 1292738)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+# Contributor: Benoît Allard 
+# Contributor: killruana 
+
+pkgname=yosys
+pkgver=0.20
+pkgrel=1
+pkgdesc='A framework for RTL synthesis'
+arch=('x86_64')
+url='http://www.clifford.at/yosys/'
+license=('custom:ISC')
+depends=('abc' 'bash' 'boost-libs' 'tcl' 'libffi' 'python' 'protobuf')
+makedepends=('boost')
+checkdepends=('iverilog')
+optdepends=('graphviz: Schematics display support'
+'xdot: Display netlists'
+'yices: default solver for yosys-smtbmc'
+'cvc4: alternative solver for yosys-smtbmc'
+'z3: alternative solver for yosys-smtbmc')
+options=('!lto') # getting SIGSEGV when running the tests with LTO
+source=("https://github.com/cliffordwolf/yosys/archive/$pkgname-$pkgver.tar.gz";)
+sha512sums=('c1ae62e55928f26ff6142e9291cbd9b593b39f755d0294b4441bc66fa0eeec90bd71014495e54b5b9530ce609af8b007c755096295a0f7599c739535316c929b')
+
+_make() {
+make \
+PREFIX="/usr" \
+CONFIG=gcc \
+ENABLE_TCL=1 \
+ENABLE_ABC=1 \
+ENABLE_GLOB=1 \
+ENABLE_PLUGINS=1 \
+ENABLE_LIBYOSYS=1 \
+ENABLE_PROTOBUF=1 \
+ENABLE_ZLIB=1 \
+ENABLE_PYOSYS=1 \
+ABCEXTERNAL=abc \
+BOOST_PYTHON_LIB="-lpython3.10 -lboost_python310" $@
+}
+
+build() {
+cd $pkgname-$pkgname-$pkgver
+_make
+}
+
+check() {
+cd $pkgname-$pkgname-$pkgver
+_make test
+}
+
+package() {
+cd $pkgname-$pkgname-$pkgver
+_make DESTDIR="$pkgdir" PYTHON_PREFIX="$pkgdir/usr" install
+
+install -Dm644 COPYING -t "$pkgdir"/usr/share/licenses/$pkgname/
+}



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 20:23:54
  Author: ffy00
Revision: 1292737

upgpkg: yosys 0.20-1

Modified:
  yosys/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 20:17:20 UTC (rev 1292736)
+++ PKGBUILD2022-09-03 20:23:54 UTC (rev 1292737)
@@ -3,8 +3,8 @@
 # Contributor: killruana 
 
 pkgname=yosys
-pkgver=0.12
-pkgrel=7
+pkgver=0.20
+pkgrel=1
 pkgdesc='A framework for RTL synthesis'
 arch=('x86_64')
 url='http://www.clifford.at/yosys/'
@@ -19,7 +19,7 @@
 'z3: alternative solver for yosys-smtbmc')
 options=('!lto') # getting SIGSEGV when running the tests with LTO
 
source=("https://github.com/cliffordwolf/yosys/archive/$pkgname-$pkgver.tar.gz";)
-sha512sums=('df91ea75ae08c7c7e134cfa6284c4e9349e6f85f2df32e4710a571176d5e1a334a6e1e77d52bf573686d33b405559e40af1a8d42cbd4e1f95f0e3b4e212e0b06')
+sha512sums=('c1ae62e55928f26ff6142e9291cbd9b593b39f755d0294b4441bc66fa0eeec90bd71014495e54b5b9530ce609af8b007c755096295a0f7599c739535316c929b')
 
 _make() {
 make \



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 20:17:20
  Author: ffy00
Revision: 1292736

archrelease: copy trunk to community-x86_64

Added:
  soapyhackrf/repos/community-x86_64/PKGBUILD
(from rev 1292735, soapyhackrf/trunk/PKGBUILD)
Deleted:
  soapyhackrf/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 20:17:16 UTC (rev 1292735)
+++ PKGBUILD2022-09-03 20:17:20 UTC (rev 1292736)
@@ -1,33 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=soapyhackrf
-pkgver=0.3.3
-_pkgname=SoapyHackRF
-_gitver=soapy-hackrf-$pkgver
-pkgrel=3
-pkgdesc='Soapy SDR plugin for the HackRF'
-arch=('x86_64')
-url='https://github.com/pothosware/SoapyHackRF'
-license=('GPL3')
-depends=('soapysdr' 'hackrf')
-makedepends=('cmake')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$_gitver.tar.gz")
-sha512sums=('d0e6ddbb8054b11bfb121a18e435c0f0c23290e5e29e89af83f660865e1c8adf4ed38082c96ab6a3cb68a50b7379f3fe5ef171616eccabe3f67d65b71d08dba9')
-
-build() {
-  mkdir -p $_pkgname-$_gitver/build
-  cd $_pkgname-$_gitver/build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-
-  make
-}
-
-package() {
-  cd $_pkgname-$_gitver/build
-
-  make DESTDIR="$pkgdir" install
-}
-

Copied: soapyhackrf/repos/community-x86_64/PKGBUILD (from rev 1292735, 
soapyhackrf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 20:17:20 UTC (rev 1292736)
@@ -0,0 +1,33 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=soapyhackrf
+pkgver=0.3.4
+_pkgname=SoapyHackRF
+_gitver=soapy-hackrf-$pkgver
+pkgrel=1
+pkgdesc='Soapy SDR plugin for the HackRF'
+arch=('x86_64')
+url='https://github.com/pothosware/SoapyHackRF'
+license=('GPL3')
+depends=('soapysdr' 'hackrf')
+makedepends=('cmake')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$_gitver.tar.gz")
+sha512sums=('950fc0d2d9b1a5946605d0f7f934a3d92facb6878251e8d9a673384db85e1b776ab27fd3499db11d482d599f78e705b9394b5e1238935d297252ab5acc8fb935')
+
+build() {
+  mkdir -p $_pkgname-$_gitver/build
+  cd $_pkgname-$_gitver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+
+  make
+}
+
+package() {
+  cd $_pkgname-$_gitver/build
+
+  make DESTDIR="$pkgdir" install
+}
+



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 20:17:16
  Author: ffy00
Revision: 1292735

upgpkg: soapyhackrf 0.3.4-1

Modified:
  soapyhackrf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 20:16:14 UTC (rev 1292734)
+++ PKGBUILD2022-09-03 20:17:16 UTC (rev 1292735)
@@ -1,10 +1,10 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=soapyhackrf
-pkgver=0.3.3
+pkgver=0.3.4
 _pkgname=SoapyHackRF
 _gitver=soapy-hackrf-$pkgver
-pkgrel=3
+pkgrel=1
 pkgdesc='Soapy SDR plugin for the HackRF'
 arch=('x86_64')
 url='https://github.com/pothosware/SoapyHackRF'
@@ -12,7 +12,7 @@
 depends=('soapysdr' 'hackrf')
 makedepends=('cmake')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$_gitver.tar.gz")
-sha512sums=('d0e6ddbb8054b11bfb121a18e435c0f0c23290e5e29e89af83f660865e1c8adf4ed38082c96ab6a3cb68a50b7379f3fe5ef171616eccabe3f67d65b71d08dba9')
+sha512sums=('950fc0d2d9b1a5946605d0f7f934a3d92facb6878251e8d9a673384db85e1b776ab27fd3499db11d482d599f78e705b9394b5e1238935d297252ab5acc8fb935')
 
 build() {
   mkdir -p $_pkgname-$_gitver/build



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 20:16:14
  Author: ffy00
Revision: 1292734

archrelease: copy trunk to community-x86_64

Added:
  soapyrtlsdr/repos/community-x86_64/PKGBUILD
(from rev 1292733, soapyrtlsdr/trunk/PKGBUILD)
Deleted:
  soapyrtlsdr/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 20:16:09 UTC (rev 1292733)
+++ PKGBUILD2022-09-03 20:16:14 UTC (rev 1292734)
@@ -1,34 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=soapyrtlsdr
-_pkgname=SoapyRTLSDR
-pkgver=0.3.2
-_gitver=soapy-rtl-sdr-$pkgver
-pkgrel=1
-pkgdesc='Soapy SDR plugin for RTL-SDR devices'
-arch=('x86_64')
-url='https://github.com/pothosware/SoapyRTLSDR'
-license=('MIT')
-depends=('soapysdr' 'rtl-sdr')
-makedepends=('cmake')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$_gitver.tar.gz")
-sha512sums=('f8279afebb251d72fea14d89889835be5ed8109c1400fdcc785c1ec120e978ae7b1de53cc84d16bf609de4cca2ddbc9d432d046e4c6967e1e494fd5571d46cc2')
-
-build() {
-  mkdir -p $_pkgname-$_gitver/build
-  cd $_pkgname-$_gitver/build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-
-  make
-}
-
-package() {
-  cd $_pkgname-$_gitver/build
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm 644 "$srcdir"/$_pkgname-$_gitver/LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: soapyrtlsdr/repos/community-x86_64/PKGBUILD (from rev 1292733, 
soapyrtlsdr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 20:16:14 UTC (rev 1292734)
@@ -0,0 +1,34 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=soapyrtlsdr
+_pkgname=SoapyRTLSDR
+pkgver=0.3.3
+_gitver=soapy-rtl-sdr-$pkgver
+pkgrel=1
+pkgdesc='Soapy SDR plugin for RTL-SDR devices'
+arch=('x86_64')
+url='https://github.com/pothosware/SoapyRTLSDR'
+license=('MIT')
+depends=('soapysdr' 'rtl-sdr')
+makedepends=('cmake')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$_gitver.tar.gz")
+sha512sums=('a43511c8644a8dbec8e0b7d8f114c4955ba9407727680680cef446a12a9ee27bfe892cab49aa77ce82d52e4272075f4e6f2ee38350675f5508601ff24ff82081')
+
+build() {
+  mkdir -p $_pkgname-$_gitver/build
+  cd $_pkgname-$_gitver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+
+  make
+}
+
+package() {
+  cd $_pkgname-$_gitver/build
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm 644 "$srcdir"/$_pkgname-$_gitver/LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 20:16:09
  Author: ffy00
Revision: 1292733

upgpkg: soapyrtlsdr 0.3.3-1

Modified:
  soapyrtlsdr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 20:07:10 UTC (rev 1292732)
+++ PKGBUILD2022-09-03 20:16:09 UTC (rev 1292733)
@@ -2,7 +2,7 @@
 
 pkgname=soapyrtlsdr
 _pkgname=SoapyRTLSDR
-pkgver=0.3.2
+pkgver=0.3.3
 _gitver=soapy-rtl-sdr-$pkgver
 pkgrel=1
 pkgdesc='Soapy SDR plugin for RTL-SDR devices'
@@ -12,7 +12,7 @@
 depends=('soapysdr' 'rtl-sdr')
 makedepends=('cmake')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$_gitver.tar.gz")
-sha512sums=('f8279afebb251d72fea14d89889835be5ed8109c1400fdcc785c1ec120e978ae7b1de53cc84d16bf609de4cca2ddbc9d432d046e4c6967e1e494fd5571d46cc2')
+sha512sums=('a43511c8644a8dbec8e0b7d8f114c4955ba9407727680680cef446a12a9ee27bfe892cab49aa77ce82d52e4272075f4e6f2ee38350675f5508601ff24ff82081')
 
 build() {
   mkdir -p $_pkgname-$_gitver/build



[arch-commits] Commit in riscv64-elf-newlib/repos/community-any (PKGBUILD PKGBUILD)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:49:45
  Author: ffy00
Revision: 1292730

archrelease: copy trunk to community-any

Added:
  riscv64-elf-newlib/repos/community-any/PKGBUILD
(from rev 1292729, riscv64-elf-newlib/trunk/PKGBUILD)
Deleted:
  riscv64-elf-newlib/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 19:49:39 UTC (rev 1292729)
+++ PKGBUILD2022-09-03 19:49:45 UTC (rev 1292730)
@@ -1,78 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Anatol Pomozov 
-
-_target=riscv64-elf
-pkgname=$_target-newlib
-pkgver=4.1.0
-pkgrel=2
-_upstream_ver=$pkgver
-pkgdesc='A C standard library implementation intended for use on embedded 
systems (RISCV64 bare metal)'
-arch=(any)
-url='https://www.sourceware.org/newlib/'
-license=(BSD)
-makedepends=($_target-gcc)
-options=(!emptydirs !strip)
-source=(https://sourceware.org/pub/newlib/newlib-$_upstream_ver.tar.gz)
-sha512sums=('6a24b64bb8136e4cd9d21b8720a36f87a34397fd952520af66903e183455c5cf19bb0ee4607c12a05d139c6c59382263383cb62c461a839f969d23d3bc4b1d34')
-
-build() {
-  rm -rf build-{newlib,nano}
-  mkdir build-{newlib,nano}
-
-  cd "$srcdir"/build-newlib
-
-  export CFLAGS_FOR_TARGET='-g -O2 -ffunction-sections -fdata-sections'
-  ../newlib-$_upstream_ver/configure \
---target=$_target \
---prefix=/usr \
---enable-newlib-io-long-long \
---enable-newlib-io-c99-formats \
---enable-newlib-register-fini \
---enable-newlib-retargetable-locking \
---disable-newlib-supplied-syscalls \
---disable-nls
-  make
-
-  cd "$srcdir"/build-nano
-
-  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-  ../newlib-$_upstream_ver/configure \
---target=$_target \
---prefix=/usr \
---disable-newlib-supplied-syscalls \
---enable-newlib-reent-small \
---enable-newlib-retargetable-locking \
---disable-newlib-fvwrite-in-streamio \
---disable-newlib-fseek-optimization \
---disable-newlib-wide-orient \
---enable-newlib-nano-malloc \
---disable-newlib-unbuf-stream-opt \
---enable-lite-exit \
---enable-newlib-global-atexit \
---enable-newlib-nano-formatted-io \
---disable-nls
-  make
-}
-
-package() {
-  cd "$srcdir"/build-nano
-
-  make DESTDIR="$pkgdir" install -j1
-
-  find "$pkgdir" -regex ".*/lib\(c\|g\|m\|rdimon\|gloss\)\.a" -exec rename .a 
_nano.a '{}' \;
-  install -d "$pkgdir"/usr/$_target/include/newlib-nano
-  install -m644 -t "$pkgdir"/usr/$_target/include/newlib-nano 
"$pkgdir"/usr/$_target/include/newlib.h
-
-  cd "$srcdir"/build-newlib
-
-  make DESTDIR="$pkgdir" install -j1
-
-  find "$pkgdir"/usr/$_target/lib \( -name "*.a" -or -name "*.o" \) \
-   -exec $_target-objcopy -R .comment -R .note -R .debug_info -R 
.debug_aranges \
-   -R .debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R .debug_line \
-   -R .debug_str -R .debug_ranges -R .debug_loc '{}' \;
-
-  install -d "$pkgdir"/usr/share/licenses/$pkgname/
-  install -m644 -t "$pkgdir"/usr/share/licenses/$pkgname/ 
"$srcdir"/newlib-$_upstream_ver/COPYING*
-}
-

Copied: riscv64-elf-newlib/repos/community-any/PKGBUILD (from rev 1292729, 
riscv64-elf-newlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 19:49:45 UTC (rev 1292730)
@@ -0,0 +1,78 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Anatol Pomozov 
+
+_target=riscv64-elf
+pkgname=$_target-newlib
+pkgver=4.1.0
+pkgrel=3
+_upstream_ver=$pkgver
+pkgdesc='A C standard library implementation intended for use on embedded 
systems (RISCV64 bare metal)'
+arch=(any)
+url='https://www.sourceware.org/newlib/'
+license=(BSD)
+makedepends=($_target-gcc)
+options=(!emptydirs !strip)
+source=(https://sourceware.org/pub/newlib/newlib-$_upstream_ver.tar.gz)
+sha512sums=('6a24b64bb8136e4cd9d21b8720a36f87a34397fd952520af66903e183455c5cf19bb0ee4607c12a05d139c6c59382263383cb62c461a839f969d23d3bc4b1d34')
+
+build() {
+  rm -rf build-{newlib,nano}
+  mkdir build-{newlib,nano}
+
+  cd "$srcdir"/build-newlib
+
+  export CFLAGS_FOR_TARGET='-g -O2 -ffunction-sections -fdata-sections'
+  ../newlib-$_upstream_ver/configure \
+--target=$_target \
+--prefix=/usr \
+--enable-newlib-io-long-long \
+--enable-newlib-io-c99-formats \
+--enable-newlib-register-fini \
+--enable-newlib-retargetable-locking \
+--disable-newlib-supplied-syscalls \
+--disable-nls
+  make
+
+  cd "$srcdir"/build-nano
+
+  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
+  ../newlib-$_upstream_ver/configure \
+--target=$_target \
+--prefix=/usr \
+--disable-newlib-supplied-syscalls \
+--enable-newlib-reent-small \
+--enable-newlib-retargetable-locking \
+--disa

[arch-commits] Commit in riscv64-elf-newlib/trunk (PKGBUILD)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:49:39
  Author: ffy00
Revision: 1292729

upgpkg: riscv64-elf-newlib 4.1.0-3 (rebuild for new GCC)

Modified:
  riscv64-elf-newlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 19:41:36 UTC (rev 1292728)
+++ PKGBUILD2022-09-03 19:49:39 UTC (rev 1292729)
@@ -4,7 +4,7 @@
 _target=riscv64-elf
 pkgname=$_target-newlib
 pkgver=4.1.0
-pkgrel=2
+pkgrel=3
 _upstream_ver=$pkgver
 pkgdesc='A C standard library implementation intended for use on embedded 
systems (RISCV64 bare metal)'
 arch=(any)



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:41:36
  Author: ffy00
Revision: 1292728

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 19:41:32 UTC (rev 1292727)
+++ PKGBUILD2022-09-03 19:41:36 UTC (rev 1292728)
@@ -1,38 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=userpath
-pkgname=python-$_pkgname
-pkgver=1.7.0
-pkgrel=3
-pkgdesc='Cross-platform tool for adding locations to the user PATH, no 
elevated privileges required!'
-arch=('any')
-url='https://github.com/ofek/userpath'
-license=('MIT' 'Apache')
-depends=('python' 'python-click' 'python-distro')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('faabda97ae4be23350ecf9e3be9b21b3b66b6873f31e094f5bd839b5ddd28d0968799217678b91fdf80a3b829aa1f7f6b451c55b0fc94f770e62f17dd6192b5e')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  python setup.py pytest
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE-MIT "$pkgdir"/usr/share/licenses/$pkgname/LICENSE-MIT
-  install -Dm 644 LICENSE-APACHE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE-APACHE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-userpath/repos/community-any/PKGBUILD (from rev 1292727, 
python-userpath/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 19:41:36 UTC (rev 1292728)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=userpath
+pkgname=python-$_pkgname
+pkgver=1.8.0
+pkgrel=1
+pkgdesc='Cross-platform tool for adding locations to the user PATH, no 
elevated privileges required!'
+arch=('any')
+url='https://github.com/ofek/userpath'
+license=('MIT')
+depends=('python' 'python-click' 'python-distro')
+makedepends=('python-build' 'python-installer' 'python-hatchling' 
'python-wheel')
+checkdepends=('python-pytest')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('d2f082909fad22cf5b33f175afdeebe14a44ebd245c84506395f01a288eccf9c376ac28dcc4b618cc2464e1a23e740b41f4f4ad0e780a42e1185c5283ccc7330')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  python -m pytest
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE-MIT
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:41:32
  Author: ffy00
Revision: 1292727

upgpkg: python-userpath 1.8.0-1

Modified:
  python-userpath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 19:38:41 UTC (rev 1292726)
+++ PKGBUILD2022-09-03 19:41:32 UTC (rev 1292727)
@@ -2,37 +2,36 @@
 
 _pkgname=userpath
 pkgname=python-$_pkgname
-pkgver=1.7.0
-pkgrel=3
+pkgver=1.8.0
+pkgrel=1
 pkgdesc='Cross-platform tool for adding locations to the user PATH, no 
elevated privileges required!'
 arch=('any')
 url='https://github.com/ofek/userpath'
-license=('MIT' 'Apache')
+license=('MIT')
 depends=('python' 'python-click' 'python-distro')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('faabda97ae4be23350ecf9e3be9b21b3b66b6873f31e094f5bd839b5ddd28d0968799217678b91fdf80a3b829aa1f7f6b451c55b0fc94f770e62f17dd6192b5e')
+makedepends=('python-build' 'python-installer' 'python-hatchling' 
'python-wheel')
+checkdepends=('python-pytest')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('d2f082909fad22cf5b33f175afdeebe14a44ebd245c84506395f01a288eccf9c376ac28dcc4b618cc2464e1a23e740b41f4f4ad0e780a42e1185c5283ccc7330')
 
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  python -m build -nw
 }
 
 check() {
   cd $_pkgname-$pkgver
 
-  python setup.py pytest
+  python -m pytest
 }
 
 package() {
   cd $_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 
-  install -Dm 644 LICENSE-MIT "$pkgdir"/usr/share/licenses/$pkgname/LICENSE-MIT
-  install -Dm 644 LICENSE-APACHE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE-APACHE
+  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE-MIT
 }
 
 # vim:set ts=2 sw=2 et:



[arch-commits] Commit in python-tox-current-env/repos/community-any (2 files)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:38:41
  Author: ffy00
Revision: 1292726

archrelease: copy trunk to community-any

Added:
  python-tox-current-env/repos/community-any/PKGBUILD
(from rev 1292725, python-tox-current-env/trunk/PKGBUILD)
Deleted:
  python-tox-current-env/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 19:38:38 UTC (rev 1292725)
+++ PKGBUILD2022-09-03 19:38:41 UTC (rev 1292726)
@@ -1,30 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=tox-current-env
-pkgname=python-$_pkgname
-pkgver=0.0.6
-pkgrel=3
-pkgdesc='tox plugin to run tests in current Python environment'
-arch=('any')
-url='https://github.com/fedora-python/tox-current-env'
-license=('MIT')
-depends=('python' 'python-tox')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('9e68b18dffa2ea7cb387f2b51d3116d396ac92f6b53b16ac7b80e8ff90bb92e482e6b00b2a1abb18332aeb9dbf8e060fc4f2e1edab8f9232a571544f7036a919')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-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-tox-current-env/repos/community-any/PKGBUILD (from rev 1292725, 
python-tox-current-env/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 19:38:41 UTC (rev 1292726)
@@ -0,0 +1,30 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=tox-current-env
+pkgname=python-$_pkgname
+pkgver=0.0.8
+pkgrel=1
+pkgdesc='tox plugin to run tests in current Python environment'
+arch=('any')
+url='https://github.com/fedora-python/tox-current-env'
+license=('MIT')
+depends=('python' 'python-tox')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('f440fa50d20341c007ace1c18a0ff638038c2a0997f4de09c053ca0d5fad9d36f3de5a205bb2d759b98466c97d23b03a4ff37b59620bbcd59e18aa2d2ebca7b7')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in python-tox-current-env/trunk (PKGBUILD)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:38:38
  Author: ffy00
Revision: 1292725

upgpkg: python-tox-current-env 0.0.8-1

Modified:
  python-tox-current-env/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 19:36:54 UTC (rev 1292724)
+++ PKGBUILD2022-09-03 19:38:38 UTC (rev 1292725)
@@ -2,27 +2,27 @@
 
 _pkgname=tox-current-env
 pkgname=python-$_pkgname
-pkgver=0.0.6
-pkgrel=3
+pkgver=0.0.8
+pkgrel=1
 pkgdesc='tox plugin to run tests in current Python environment'
 arch=('any')
 url='https://github.com/fedora-python/tox-current-env'
 license=('MIT')
 depends=('python' 'python-tox')
-makedepends=('python-setuptools')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('9e68b18dffa2ea7cb387f2b51d3116d396ac92f6b53b16ac7b80e8ff90bb92e482e6b00b2a1abb18332aeb9dbf8e060fc4f2e1edab8f9232a571544f7036a919')
+sha512sums=('f440fa50d20341c007ace1c18a0ff638038c2a0997f4de09c053ca0d5fad9d36f3de5a205bb2d759b98466c97d23b03a4ff37b59620bbcd59e18aa2d2ebca7b7')
 
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  python -m build -nw
 }
 
 package() {
   cd $_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:36:54
  Author: ffy00
Revision: 1292724

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 19:36:50 UTC (rev 1292723)
+++ PKGBUILD2022-09-03 19:36:54 UTC (rev 1292724)
@@ -1,32 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=python-svgwrite
-_pkgname=svgwrite
-pkgver=1.4.1
-pkgrel=2
-pkgdesc='A Python library to create SVG drawings'
-arch=('any')
-url='https://github.com/mozman/svgwrite'
-license=('MIT')
-depends=('python' 'python-pyparsing')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('74015ed4a72cd781a577ab8c2f38a30a1f6561ca0379e62ecaac8136f40998c926597d97a0c1006fdab69ac4a23ce1841bda296881ede511f3f1b4a2e8dea06f')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-#check() {
-#  cd $_pkgname-$pkgver
-#
-#  python setup.py test
-#}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-svgwrite/repos/community-any/PKGBUILD (from rev 1292723, 
python-svgwrite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 19:36:54 UTC (rev 1292724)
@@ -0,0 +1,32 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=python-svgwrite
+_pkgname=svgwrite
+pkgver=1.4.3
+pkgrel=1
+pkgdesc='A Python library to create SVG drawings'
+arch=('any')
+url='https://github.com/mozman/svgwrite'
+license=('MIT')
+depends=('python' 'python-pyparsing')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('3e599c13c2138aec1f9098baf3cf978b477f45ec2acd14d6aaadbcdf952064dac6313fd26050e670e9e989867c3539fa1cc7fb1cd226e34ff9f2a1ca2e7ddeff')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+#check() {
+#  cd $_pkgname-$pkgver
+#
+#  python setup.py test
+#}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+}



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:36:50
  Author: ffy00
Revision: 1292723

upgpkg: python-svgwrite 1.4.3-1

Modified:
  python-svgwrite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 19:35:53 UTC (rev 1292722)
+++ PKGBUILD2022-09-03 19:36:50 UTC (rev 1292723)
@@ -2,21 +2,21 @@
 
 pkgname=python-svgwrite
 _pkgname=svgwrite
-pkgver=1.4.1
-pkgrel=2
+pkgver=1.4.3
+pkgrel=1
 pkgdesc='A Python library to create SVG drawings'
 arch=('any')
 url='https://github.com/mozman/svgwrite'
 license=('MIT')
 depends=('python' 'python-pyparsing')
-makedepends=('python-setuptools')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('74015ed4a72cd781a577ab8c2f38a30a1f6561ca0379e62ecaac8136f40998c926597d97a0c1006fdab69ac4a23ce1841bda296881ede511f3f1b4a2e8dea06f')
+sha512sums=('3e599c13c2138aec1f9098baf3cf978b477f45ec2acd14d6aaadbcdf952064dac6313fd26050e670e9e989867c3539fa1cc7fb1cd226e34ff9f2a1ca2e7ddeff')
 
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  python -m build -nw
 }
 
 #check() {
@@ -28,5 +28,5 @@
 package() {
   cd $_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:27:29
  Author: ffy00
Revision: 1292720

archrelease: copy trunk to community-any

Added:
  python-pyudev/repos/community-any/0001-tests-fix-tests-for-pytest-4.0.patch
(from rev 1292719, 
python-pyudev/trunk/0001-tests-fix-tests-for-pytest-4.0.patch)
  python-pyudev/repos/community-any/PKGBUILD
(from rev 1292719, python-pyudev/trunk/PKGBUILD)
Deleted:
  python-pyudev/repos/community-any/0001-tests-fix-tests-for-pytest-4.0.patch
  python-pyudev/repos/community-any/PKGBUILD

---+
 0001-tests-fix-tests-for-pytest-4.0.patch |  128 ++--
 PKGBUILD  |  124 +--
 2 files changed, 124 insertions(+), 128 deletions(-)

Deleted: 0001-tests-fix-tests-for-pytest-4.0.patch
===
--- 0001-tests-fix-tests-for-pytest-4.0.patch   2022-09-03 19:27:25 UTC (rev 
1292719)
+++ 0001-tests-fix-tests-for-pytest-4.0.patch   2022-09-03 19:27:29 UTC (rev 
1292720)
@@ -1,64 +0,0 @@
-From cc04bc5ca08e4761b41c5cf220889c4233f157a0 Mon Sep 17 00:00:00 2001
-From: FFY00 
-Date: Fri, 24 May 2019 19:08:41 +0100
-Subject: [PATCH] tests: fix tests for pytest 4.0
-

- tests/plugins/mock_libudev.py | 6 --
- tests/plugins/privileged.py   | 5 +++--
- tests/plugins/travis.py   | 5 +++--
- 3 files changed, 10 insertions(+), 6 deletions(-)
-
-diff --git a/tests/plugins/mock_libudev.py b/tests/plugins/mock_libudev.py
-index aefeb31..0bde07b 100644
 a/tests/plugins/mock_libudev.py
-+++ b/tests/plugins/mock_libudev.py
-@@ -32,6 +32,7 @@
- from contextlib import contextmanager
- from collections import namedtuple
- 
-+import pytest
- import mock
- 
- Node = namedtuple('Node', 'name value next')
-@@ -93,5 +94,6 @@ def libudev_list(libudev, function, items):
- EXPOSED_FUNCTIONS = [libudev_list]
- 
- 
--def pytest_namespace():
--return dict((f.__name__, f) for f in EXPOSED_FUNCTIONS)
-+def pytest_configure():
-+for f in EXPOSED_FUNCTIONS:
-+setattr(pytest, f.__name__, f)
-diff --git a/tests/plugins/privileged.py b/tests/plugins/privileged.py
-index 92328b9..c636980 100644
 a/tests/plugins/privileged.py
-+++ b/tests/plugins/privileged.py
-@@ -71,5 +71,6 @@ def unload_dummy():
- EXPOSED_FUNCTIONS = [load_dummy, unload_dummy]
- 
- 
--def pytest_namespace():
--return dict((f.__name__, f) for f in EXPOSED_FUNCTIONS)
-+def pytest_configure():
-+for f in EXPOSED_FUNCTIONS:
-+setattr(pytest, f.__name__, f)
-diff --git a/tests/plugins/travis.py b/tests/plugins/travis.py
-index 46466c2..15a780e 100644
 a/tests/plugins/travis.py
-+++ b/tests/plugins/travis.py
-@@ -38,8 +38,9 @@ def is_on_travis_ci():
- EXPOSED_FUNCTIONS = [is_on_travis_ci]
- 
- 
--def pytest_namespace():
--return dict((f.__name__, f) for f in EXPOSED_FUNCTIONS)
-+def pytest_configure():
-+for f in EXPOSED_FUNCTIONS:
-+setattr(pytest, f.__name__, f)
- 
- 
- def pytest_runtest_setup(item):
--- 
-2.21.0
-

Copied: 
python-pyudev/repos/community-any/0001-tests-fix-tests-for-pytest-4.0.patch 
(from rev 1292719, 
python-pyudev/trunk/0001-tests-fix-tests-for-pytest-4.0.patch)
===
--- 0001-tests-fix-tests-for-pytest-4.0.patch   (rev 0)
+++ 0001-tests-fix-tests-for-pytest-4.0.patch   2022-09-03 19:27:29 UTC (rev 
1292720)
@@ -0,0 +1,64 @@
+From cc04bc5ca08e4761b41c5cf220889c4233f157a0 Mon Sep 17 00:00:00 2001
+From: FFY00 
+Date: Fri, 24 May 2019 19:08:41 +0100
+Subject: [PATCH] tests: fix tests for pytest 4.0
+
+---
+ tests/plugins/mock_libudev.py | 6 --
+ tests/plugins/privileged.py   | 5 +++--
+ tests/plugins/travis.py   | 5 +++--
+ 3 files changed, 10 insertions(+), 6 deletions(-)
+
+diff --git a/tests/plugins/mock_libudev.py b/tests/plugins/mock_libudev.py
+index aefeb31..0bde07b 100644
+--- a/tests/plugins/mock_libudev.py
 b/tests/plugins/mock_libudev.py
+@@ -32,6 +32,7 @@
+ from contextlib import contextmanager
+ from collections import namedtuple
+ 
++import pytest
+ import mock
+ 
+ Node = namedtuple('Node', 'name value next')
+@@ -93,5 +94,6 @@ def libudev_list(libudev, function, items):
+ EXPOSED_FUNCTIONS = [libudev_list]
+ 
+ 
+-def pytest_namespace():
+-return dict((f.__name__, f) for f in EXPOSED_FUNCTIONS)
++def pytest_configure():
++for f in EXPOSED_FUNCTIONS:
++setattr(pytest, f.__name__, f)
+diff --git a/tests/plugins/privileged.py b/tests/plugins/privileged.py
+index 92328b9..c636980 100644
+--- a/tests/plugins/privileged.py
 b/tests/plugins/privileged.py
+@@ -71,5 +71,6 @@ def unload_dummy():
+ EXPOSED_FUNCTIONS = [load_dummy, unload_dummy]
+ 
+ 
+-def pytest_namespace():
+-return dict((f.__name__, f) for f in EXPOSED_FUNCTIONS)
++def pytest_configure():
++for f in EXPOSED_FUNCTIONS:
++setattr(pytest, f.__name__, f)
+diff --git a/tests/plugins/travis.py b/test

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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:27:25
  Author: ffy00
Revision: 1292719

upgpkg: python-pyudev 0.24.0-1

Modified:
  python-pyudev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 19:26:02 UTC (rev 1292718)
+++ PKGBUILD2022-09-03 19:27:25 UTC (rev 1292719)
@@ -6,28 +6,24 @@
 
 _pkgname=pyudev
 pkgname=python-$_pkgname
-pkgver=0.22
-pkgrel=7
+pkgver=0.24.0
+pkgrel=1
 arch=('any')
 url='https://github.com/pyudev/pyudev'
 license=('LGPL')
 pkgdesc='Python bindings to libudev'
 depends=('python-six' 'systemd')
-makedepends=('python-setuptools' 'python-sphinx' 'python-mock')
-checkdepends=('python-pytest-runner' 'python-docutils' 'python-mock' 
'python-hypothesis')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel' 'python-sphinx' 'python-mock')
+checkdepends=('python-pytest' 'python-docutils' 'python-mock' 
'python-hypothesis' 'python-pip')
 optdepends=('python-pyqt5: PyQt integration'
 'pyside2: PySide integration'
 'python-wxpython: WX integration')
 source=("$_pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('b509f4442e1c11eea9755fbae867b0aee97221db60d78ed2b8da40c39fb11015982b2e9b423680ed44b3f9db2c84b3a0a57a1e8aad4fb939061e33646638d9e3')
+sha512sums=('fe6fec9bbc402bbcf6458b6c3ea2db43ac3ac03bba3c74193dde46253b532d1c9d55ad78e4bc8fa0ff660bf0e371f07ef60c6c4a6251b0dd64acbb129f63507e')
 
 prepare() {
   cd $_pkgname-$pkgver
 
-  # pytest-runner doesn't understand norecursedirs
-  sed -i '/norecursedirs/d' setup.cfg
-  echo -e '[pytest]\nnorecursedirs = .* _* build' > pytest.ini
-
   # Remove failing tests (we can't test udev inside makepkg)
   rm tests/test_{util,discover,device,monitor,enumerate,observer}.py
 
@@ -39,7 +35,7 @@
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  python -m build -nw
 
   # Generate documentation
   sphinx-apidoc -f -e -o doc src/pyudev
@@ -49,13 +45,13 @@
 check() {
   cd $_pkgname-$pkgver
 
-  python setup.py pytest
+  PYTHONPATH=src python -m pytest
 }
 
 package() {
   cd $_pkgname-$pkgver
 
-  python setup.py install --root "$pkgdir" --skip-build -O1
+  python -m installer -d "$pkgdir" dist/*.whl
 
   # Install documentation
   install -dm 755 "$pkgdir"/usr/share/doc/$pkgname



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:23:12
  Author: ffy00
Revision: 1292714

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 19:23:08 UTC (rev 1292713)
+++ PKGBUILD2022-09-03 19:23:12 UTC (rev 1292714)
@@ -1,30 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=pytest-regressions
-pkgname=python-$_pkgname
-pkgver=2.2.0
-pkgrel=3
-pkgdesc='Pytest plugin for regression testing'
-arch=('any')
-url='https://github.com/ESSS/pytest-regressions'
-license=('MIT')
-depends=('python-pytest' 'python-pytest-datadir' 'python-yaml')
-makedepends=('python-setuptools-scm')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('8fd1c53eea07f3e28c39d37119ed9e7f633487b20b67d9acff79e5920eb62624062eabe5569ddbfba08a93967f612b9adf52027cc508f6a33e1911c9e0bfa411')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver python setup.py build
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  SETUPTOOLS_SCM_PRETEND_VERSION=$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-pytest-regressions/repos/community-any/PKGBUILD (from rev 
1292713, python-pytest-regressions/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 19:23:12 UTC (rev 1292714)
@@ -0,0 +1,30 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=pytest-regressions
+pkgname=python-$_pkgname
+pkgver=2.3.1
+pkgrel=1
+pkgdesc='Pytest plugin for regression testing'
+arch=('any')
+url='https://github.com/ESSS/pytest-regressions'
+license=('MIT')
+depends=('python-pytest' 'python-pytest-datadir' 'python-yaml')
+makedepends=('python-build' 'python-installer' 'python-setuptools-scm' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('a10e1b678b817d273a63fc7bfadf373e0673940c4c57021eff58a75c82769f348bc3ab97182f5851ed262b178ac18af8814899454338f123264eaae0739a3525')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver python -m build -nw
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:23:08
  Author: ffy00
Revision: 1292713

upgpkg: python-pytest-regressions 2.3.1-1

Modified:
  python-pytest-regressions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 19:21:26 UTC (rev 1292712)
+++ PKGBUILD2022-09-03 19:23:08 UTC (rev 1292713)
@@ -2,27 +2,27 @@
 
 _pkgname=pytest-regressions
 pkgname=python-$_pkgname
-pkgver=2.2.0
-pkgrel=3
+pkgver=2.3.1
+pkgrel=1
 pkgdesc='Pytest plugin for regression testing'
 arch=('any')
 url='https://github.com/ESSS/pytest-regressions'
 license=('MIT')
 depends=('python-pytest' 'python-pytest-datadir' 'python-yaml')
-makedepends=('python-setuptools-scm')
+makedepends=('python-build' 'python-installer' 'python-setuptools-scm' 
'python-wheel')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('8fd1c53eea07f3e28c39d37119ed9e7f633487b20b67d9acff79e5920eb62624062eabe5569ddbfba08a93967f612b9adf52027cc508f6a33e1911c9e0bfa411')
+sha512sums=('a10e1b678b817d273a63fc7bfadf373e0673940c4c57021eff58a75c82769f348bc3ab97182f5851ed262b178ac18af8814899454338f123264eaae0739a3525')
 
 build() {
   cd $_pkgname-$pkgver
 
-  SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver python setup.py build
+  SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver python -m build -nw
 }
 
 package() {
   cd $_pkgname-$pkgver
 
-  SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver python setup.py install 
--root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:21:07
  Author: ffy00
Revision: 1292710

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 19:21:03 UTC (rev 1292709)
+++ PKGBUILD2022-09-03 19:21:07 UTC (rev 1292710)
@@ -1,31 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Windel Bouwman 
-# Contributor: Jakub Klinkovský 
-
-_pkgname=pyqtgraph
-pkgname=python-$_pkgname
-pkgver=0.11.1
-pkgrel=3
-pkgdesc='Scientific Graphics and GUI Library for Python'
-arch=('any')
-url='http://www.pyqtgraph.org'
-license=('MIT')
-makedepends=('python-setuptools')
-depends=('python' 'qt5-python-bindings' 'python-numpy')
-optdepends=('python-opengl: 3d graphics')
-source=("$_pkgname-$pkgver.tar.gz::https://github.com/pyqtgraph/pyqtgraph/archive/pyqtgraph-$pkgver.tar.gz";)
-sha512sums=('36abf6e8112ab8af51555617107d81e65ec385c7cb7a8371268b2e363eb9dc81b94db59e12acf78839d91939e036f48fffad61a486261b32e8403c31be9fb3f8')
-
-build() {
-  cd $_pkgname-$_pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $_pkgname-$_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-pyqtgraph/repos/community-any/PKGBUILD (from rev 1292709, 
python-pyqtgraph/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 19:21:07 UTC (rev 1292710)
@@ -0,0 +1,31 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Windel Bouwman 
+# Contributor: Jakub Klinkovský 
+
+_pkgname=pyqtgraph
+pkgname=python-$_pkgname
+pkgver=0.12.4
+pkgrel=1
+pkgdesc='Scientific Graphics and GUI Library for Python'
+arch=('any')
+url='http://www.pyqtgraph.org'
+license=('MIT')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+depends=('python' 'qt5-python-bindings' 'python-numpy')
+optdepends=('python-opengl: 3d graphics')
+source=("$_pkgname-$pkgver.tar.gz::https://github.com/pyqtgraph/pyqtgraph/archive/pyqtgraph-$pkgver.tar.gz";)
+sha512sums=('8402b38fe1abaaf55d6dbc26775093993b9f642d7a9da59d2780ed38562c8653ab872c588d2e66373434491b8f397533cb3c222382065c812a28cf6b9ce34960')
+
+build() {
+  cd $_pkgname-$_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+package() {
+  cd $_pkgname-$_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:21:03
  Author: ffy00
Revision: 1292709

upgpkg: python-pyqtgraph 0.12.4-1

Modified:
  python-pyqtgraph/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 19:19:09 UTC (rev 1292708)
+++ PKGBUILD2022-09-03 19:21:03 UTC (rev 1292709)
@@ -4,28 +4,28 @@
 
 _pkgname=pyqtgraph
 pkgname=python-$_pkgname
-pkgver=0.11.1
-pkgrel=3
+pkgver=0.12.4
+pkgrel=1
 pkgdesc='Scientific Graphics and GUI Library for Python'
 arch=('any')
 url='http://www.pyqtgraph.org'
 license=('MIT')
-makedepends=('python-setuptools')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
 depends=('python' 'qt5-python-bindings' 'python-numpy')
 optdepends=('python-opengl: 3d graphics')
 
source=("$_pkgname-$pkgver.tar.gz::https://github.com/pyqtgraph/pyqtgraph/archive/pyqtgraph-$pkgver.tar.gz";)
-sha512sums=('36abf6e8112ab8af51555617107d81e65ec385c7cb7a8371268b2e363eb9dc81b94db59e12acf78839d91939e036f48fffad61a486261b32e8403c31be9fb3f8')
+sha512sums=('8402b38fe1abaaf55d6dbc26775093993b9f642d7a9da59d2780ed38562c8653ab872c588d2e66373434491b8f397533cb3c222382065c812a28cf6b9ce34960')
 
 build() {
   cd $_pkgname-$_pkgname-$pkgver
 
-  python setup.py build
+  python -m build -nw
 }
 
 package() {
   cd $_pkgname-$_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 
   install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:18:30
  Author: ffy00
Revision: 1292706

archrelease: copy trunk to community-any

Added:
  python-pyadi-iio/repos/community-any/PKGBUILD
(from rev 1292705, python-pyadi-iio/trunk/PKGBUILD)
Deleted:
  python-pyadi-iio/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 19:18:25 UTC (rev 1292705)
+++ PKGBUILD2022-09-03 19:18:30 UTC (rev 1292706)
@@ -1,49 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=pyadi-iio
-pkgname=python-$_pkgname
-pkgver=0.0.8
-pkgrel=4
-pkgdesc='Python interfaces for ADI hardware with IIO drivers'
-arch=('any')
-url='https://github.com/analogdevicesinc/pyadi-iio'
-license=('custom')
-depends=('python-pylibiio' 'python-numpy' 'python-paramiko')
-makedepends=('python-setuptools' 'python-sphinx' 'python-sphinx_rtd_theme')
-checkdepends=('python-pytest-runner' 'python-scapy')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('97f6b241230f54ff4932f677b42b4fd33c2e2eb69bb27d638b4c63b44e991b61c40744b9db09fd26d7973e83eeec6089cba65bbe63894206b06c3e10dd8f1f3e')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-
-  cd doc
-
-  make html
-}
-
-# need liblibc.a
-#check() {
-#  cd $_pkgname-$pkgver
-#
-#  python setup.py pytest
-#}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  # Remove tests
-  rm -rf "$pkgdir"/usr/lib/python*/site-packages/test
-
-  # Install documentation
-  install -dm 755 "$pkgdir"/usr/share/doc/$pkgname
-  cp -r -a --no-preserve=ownership doc/build/html 
"$pkgdir"/usr/share/doc/$pkgname
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pyadi-iio/repos/community-any/PKGBUILD (from rev 1292705, 
python-pyadi-iio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 19:18:30 UTC (rev 1292706)
@@ -0,0 +1,50 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=pyadi-iio
+pkgname=python-$_pkgname
+pkgver=0.0.13
+pkgrel=1
+pkgdesc='Python interfaces for ADI hardware with IIO drivers'
+arch=('any')
+url='https://github.com/analogdevicesinc/pyadi-iio'
+license=('custom')
+depends=('python-pylibiio' 'python-numpy' 'python-paramiko')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+# 'python-sphinx' 'python-sphinx_rtd_theme' 'python-myst-parser')
+checkdepends=('python-pytest' 'python-scapy')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('fed3cf90085fc56183e4bfdf69acc1b4231dced6e91c504ae66438730087d5ae8984117aa8337a3d9f3fa6fe5c81dbf11ba1a825697dd8692432901dd4cf5b20')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+
+#  cd doc
+#
+#  make html
+}
+
+# need liblibc.a
+#check() {
+#  cd $_pkgname-$pkgver
+#
+#  python -m pytest
+#}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  # Remove tests
+  rm -rf "$pkgdir"/usr/lib/python*/site-packages/test
+
+  # Install documentation
+#  install -dm 755 "$pkgdir"/usr/share/doc/$pkgname
+#  cp -r -a --no-preserve=ownership doc/build/html 
"$pkgdir"/usr/share/doc/$pkgname
+#
+#  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:18:25
  Author: ffy00
Revision: 1292705

upgpkg: python-pyadi-iio 0.0.13-1

Modified:
  python-pyadi-iio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 19:16:06 UTC (rev 1292704)
+++ PKGBUILD2022-09-03 19:18:25 UTC (rev 1292705)
@@ -2,26 +2,27 @@
 
 _pkgname=pyadi-iio
 pkgname=python-$_pkgname
-pkgver=0.0.8
-pkgrel=4
+pkgver=0.0.13
+pkgrel=1
 pkgdesc='Python interfaces for ADI hardware with IIO drivers'
 arch=('any')
 url='https://github.com/analogdevicesinc/pyadi-iio'
 license=('custom')
 depends=('python-pylibiio' 'python-numpy' 'python-paramiko')
-makedepends=('python-setuptools' 'python-sphinx' 'python-sphinx_rtd_theme')
-checkdepends=('python-pytest-runner' 'python-scapy')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+# 'python-sphinx' 'python-sphinx_rtd_theme' 'python-myst-parser')
+checkdepends=('python-pytest' 'python-scapy')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('97f6b241230f54ff4932f677b42b4fd33c2e2eb69bb27d638b4c63b44e991b61c40744b9db09fd26d7973e83eeec6089cba65bbe63894206b06c3e10dd8f1f3e')
+sha512sums=('fed3cf90085fc56183e4bfdf69acc1b4231dced6e91c504ae66438730087d5ae8984117aa8337a3d9f3fa6fe5c81dbf11ba1a825697dd8692432901dd4cf5b20')
 
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  python -m build -nw
 
-  cd doc
-
-  make html
+#  cd doc
+#
+#  make html
 }
 
 # need liblibc.a
@@ -28,22 +29,22 @@
 #check() {
 #  cd $_pkgname-$pkgver
 #
-#  python setup.py pytest
+#  python -m pytest
 #}
 
 package() {
   cd $_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 
   # Remove tests
   rm -rf "$pkgdir"/usr/lib/python*/site-packages/test
 
   # Install documentation
-  install -dm 755 "$pkgdir"/usr/share/doc/$pkgname
-  cp -r -a --no-preserve=ownership doc/build/html 
"$pkgdir"/usr/share/doc/$pkgname
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+#  install -dm 755 "$pkgdir"/usr/share/doc/$pkgname
+#  cp -r -a --no-preserve=ownership doc/build/html 
"$pkgdir"/usr/share/doc/$pkgname
+#
+#  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
 # vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:13:46
  Author: ffy00
Revision: 1292702

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 19:13:42 UTC (rev 1292701)
+++ PKGBUILD2022-09-03 19:13:46 UTC (rev 1292702)
@@ -1,37 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=pipx
-pkgname=python-$_pkgname
-pkgver=0.16.4
-pkgrel=2
-pkgdesc='Install and Run Python Applications in Isolated Environments'
-arch=('any')
-url='https://github.com/pipxproject/pipx'
-license=('MIT' 'BSD')
-depends=('python' 'python-userpath' 'python-argcomplete' 'python-colorama' 
'python-packaging')
-makedepends=('python-setuptools')
-checkdepends=('python-tox' 'python-pytest')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('10b2472336dcb568fa360ae81cbb228c0868aef38f85988ebf722f9c57423f006ed57c9329fe03a9ed49a0060bc2612c621ed67df0fc13e121a6808711528487')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-#check() {
-#  cd $_pkgname-$pkgver
-#
-#  nox
-#}
-
-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-pipx/repos/community-any/PKGBUILD (from rev 1292701, 
python-pipx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 19:13:46 UTC (rev 1292702)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=pipx
+pkgname=python-$_pkgname
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='Install and Run Python Applications in Isolated Environments'
+arch=('any')
+url='https://github.com/pipxproject/pipx'
+license=('MIT' 'BSD')
+depends=('python' 'python-userpath' 'python-argcomplete' 'python-packaging')
+makedepends=('python-build' 'python-installer' 'python-hatchling' 
'python-wheel')
+#checkdepends=('python-tox' 'python-pytest')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('32601c0e431429b4d9c47498973ad49c8fe04639c45997e27d4aac12cc8aa1234a91c231a24ebcc144ce51e9f58a68f8aa884656a45bb515f69a7e911b769179')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+#check() {
+#  cd $_pkgname-$pkgver
+#
+#  nox
+#}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:13:42
  Author: ffy00
Revision: 1292701

upgpkg: python-pipx 1.1.0-1

Modified:
  python-pipx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 19:12:10 UTC (rev 1292700)
+++ PKGBUILD2022-09-03 19:13:42 UTC (rev 1292701)
@@ -2,22 +2,22 @@
 
 _pkgname=pipx
 pkgname=python-$_pkgname
-pkgver=0.16.4
-pkgrel=2
+pkgver=1.1.0
+pkgrel=1
 pkgdesc='Install and Run Python Applications in Isolated Environments'
 arch=('any')
 url='https://github.com/pipxproject/pipx'
 license=('MIT' 'BSD')
-depends=('python' 'python-userpath' 'python-argcomplete' 'python-colorama' 
'python-packaging')
-makedepends=('python-setuptools')
-checkdepends=('python-tox' 'python-pytest')
+depends=('python' 'python-userpath' 'python-argcomplete' 'python-packaging')
+makedepends=('python-build' 'python-installer' 'python-hatchling' 
'python-wheel')
+#checkdepends=('python-tox' 'python-pytest')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('10b2472336dcb568fa360ae81cbb228c0868aef38f85988ebf722f9c57423f006ed57c9329fe03a9ed49a0060bc2612c621ed67df0fc13e121a6808711528487')
+sha512sums=('32601c0e431429b4d9c47498973ad49c8fe04639c45997e27d4aac12cc8aa1234a91c231a24ebcc144ce51e9f58a68f8aa884656a45bb515f69a7e911b769179')
 
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  python -m build -nw
 }
 
 #check() {
@@ -29,7 +29,7 @@
 package() {
   cd $_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:10:51
  Author: ffy00
Revision: 1292698

archrelease: copy trunk to community-any

Added:
  python-pep621/repos/community-any/PKGBUILD
(from rev 1292697, python-pep621/trunk/PKGBUILD)
  python-pep621/repos/community-any/keys/
Deleted:
  python-pep621/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 19:10:47 UTC (rev 1292697)
+++ PKGBUILD2022-09-03 19:10:51 UTC (rev 1292698)
@@ -1,46 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=python-pep621
-pkgver=0.4.0
-pkgrel=3
-pkgdesc='PEP 621 metadata parsing'
-arch=('any')
-url='https://github.com/FFY00/python-pep621'
-license=('MIT')
-depends=('python-packaging')
-makedepends=('git' 'python-setuptools' 'python-sphinx' 
'python-sphinx-autodoc-typehints' 'python-sphinx-furo')
-checkdepends=('python-pytest' 'python-tomli')
-source=("git+$url#tag=$pkgver?signed")
-validpgpkeys=('3DCE51D60930EBA47858BA4146F633CBB0EB4BF2') # Filipe Laíns 
(FFY00) 
-sha512sums=('SKIP')
-
-prepare() {
-  echo 'from setuptools import setup; setup()' >$pkgname/setup.py
-}
-
-build() {
-  cd $pkgname
-
-  python setup.py build
-
-  PYTHONPATH=. sphinx-build -b dirhtml -v docs docs/build/html
-}
-
-check() {
-  cd $pkgname
-
-  python -m pytest
-}
-
-package() {
-  cd $pkgname
-
-  python setup.py install --root="$pkgdir" --skip-build
-  python -m compileall --invalidation-mode=checked-hash "$pkgdir"
-
-  install -dm 755 "$pkgdir"/usr/share/doc/$pkgname
-  cp -r -a --no-preserve=ownership docs/build/html 
"$pkgdir"/usr/share/doc/$pkgname
-  rm -rf "$pkgdir"/usr/share/doc/$pkgname/html/.doctrees
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-pep621/repos/community-any/PKGBUILD (from rev 1292697, 
python-pep621/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 19:10:51 UTC (rev 1292698)
@@ -0,0 +1,46 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=python-pep621
+pkgver=0.6.1
+pkgrel=1
+pkgdesc='PEP 621 metadata parsing'
+arch=('any')
+url='https://github.com/FFY00/python-pep621'
+license=('MIT')
+depends=('python-packaging')
+makedepends=('git' 'python-build' 'python-installer' 'python-setuptools' 
'python-wheel'
+ 'python-sphinx' 'python-sphinx-autodoc-typehints' 
'python-sphinx-furo')
+checkdepends=('python-pytest' 'python-tomli')
+source=("git+$url#tag=$pkgver?signed")
+validpgpkeys=('3DCE51D60930EBA47858BA4146F633CBB0EB4BF2') # Filipe Laíns 
(FFY00) 
+sha512sums=('SKIP')
+
+prepare() {
+  echo 'from setuptools import setup; setup()' >$pkgname/setup.py
+}
+
+build() {
+  cd $pkgname
+
+  python -m build -nw
+
+  PYTHONPATH=. sphinx-build -b dirhtml -v docs docs/build/html
+}
+
+check() {
+  cd $pkgname
+
+  python -m pytest
+}
+
+package() {
+  cd $pkgname
+
+  python -m installer -d "$destdir" dist/*.whl
+
+  install -dm 755 "$pkgdir"/usr/share/doc/$pkgname
+  cp -r -a --no-preserve=ownership docs/build/html 
"$pkgdir"/usr/share/doc/$pkgname
+  rm -rf "$pkgdir"/usr/share/doc/$pkgname/html/.doctrees
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:10:47
  Author: ffy00
Revision: 1292697

upgpkg: python-pep621 0.6.1-1

Modified:
  python-pep621/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 19:08:45 UTC (rev 1292696)
+++ PKGBUILD2022-09-03 19:10:47 UTC (rev 1292697)
@@ -1,14 +1,15 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=python-pep621
-pkgver=0.4.0
-pkgrel=3
+pkgver=0.6.1
+pkgrel=1
 pkgdesc='PEP 621 metadata parsing'
 arch=('any')
 url='https://github.com/FFY00/python-pep621'
 license=('MIT')
 depends=('python-packaging')
-makedepends=('git' 'python-setuptools' 'python-sphinx' 
'python-sphinx-autodoc-typehints' 'python-sphinx-furo')
+makedepends=('git' 'python-build' 'python-installer' 'python-setuptools' 
'python-wheel'
+ 'python-sphinx' 'python-sphinx-autodoc-typehints' 
'python-sphinx-furo')
 checkdepends=('python-pytest' 'python-tomli')
 source=("git+$url#tag=$pkgver?signed")
 validpgpkeys=('3DCE51D60930EBA47858BA4146F633CBB0EB4BF2') # Filipe Laíns 
(FFY00) 
@@ -21,7 +22,7 @@
 build() {
   cd $pkgname
 
-  python setup.py build
+  python -m build -nw
 
   PYTHONPATH=. sphinx-build -b dirhtml -v docs docs/build/html
 }
@@ -35,8 +36,7 @@
 package() {
   cd $pkgname
 
-  python setup.py install --root="$pkgdir" --skip-build
-  python -m compileall --invalidation-mode=checked-hash "$pkgdir"
+  python -m installer -d "$destdir" dist/*.whl
 
   install -dm 755 "$pkgdir"/usr/share/doc/$pkgname
   cp -r -a --no-preserve=ownership docs/build/html 
"$pkgdir"/usr/share/doc/$pkgname



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:08:45
  Author: ffy00
Revision: 1292696

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 19:08:42 UTC (rev 1292695)
+++ PKGBUILD2022-09-03 19:08:45 UTC (rev 1292696)
@@ -1,36 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=okonomiyaki
-pkgname=python-$_pkgname
-pkgver=1.2.0
-pkgrel=6
-pkgdesc='Experimental library aimed at consolidating a lot of our low-level 
code used for Enthought eggs'
-arch=('any')
-url='https://github.com/enthought/okonomiyaki'
-license=('MIT')
-depends=('python' 'python-attrs' 'python-jsonschema' 'python-six')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('b84e3c188037cf5e5e5e70db27dafe331b0a9db861d93e399b2c123c602c991147a7d99ff94fdcd1d8ba0d7eceab2111dbf0ff7af8b71afb5ee8342f204cc55c')
-
-build() {
-  find $_pkgname-$pkgver -type f -name '*.py' -exec sed -i 
's|zipfile2|zipfile|' '{}' +
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  sed -i /zipfile2/d 
"$pkgdir"/usr/lib/python*/site-packages/okonomiyaki-*.egg-info/requires.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-okonomiyaki/repos/community-any/PKGBUILD (from rev 1292695, 
python-okonomiyaki/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 19:08:45 UTC (rev 1292696)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=okonomiyaki
+pkgname=python-$_pkgname
+pkgver=1.3.2
+pkgrel=1
+pkgdesc='Experimental library aimed at consolidating a lot of our low-level 
code used for Enthought eggs'
+arch=('any')
+url='https://github.com/enthought/okonomiyaki'
+license=('MIT')
+depends=('python' 'python-attrs' 'python-jsonschema' 'python-six')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('89877ecca20370bcfd3f74429913e708a1e10f841fac012e154c4b43862dc9f1644d1b70638811cae71e5651565514db002ca777466b5e848009d7699b5735ed')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  find -type f -name '*.py' -exec sed -i 's|zipfile2|zipfile|' '{}' +
+  sed -i /zipfile2/d setup.py
+}
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:08:42
  Author: ffy00
Revision: 1292695

upgpkg: python-okonomiyaki 1.3.2-1

Modified:
  python-okonomiyaki/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 19:07:43 UTC (rev 1292694)
+++ PKGBUILD2022-09-03 19:08:42 UTC (rev 1292695)
@@ -29,7 +29,7 @@
 package() {
   cd $_pkgname-$pkgver
 
-  python -m installer -d "$destdir" dist/*.whl
+  python -m installer -d "$pkgdir" dist/*.whl
 
   install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:07:43
  Author: ffy00
Revision: 1292694

upgpkg: python-okonomiyaki 1.3.2-1

Modified:
  python-okonomiyaki/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 19:07:02 UTC (rev 1292693)
+++ PKGBUILD2022-09-03 19:07:43 UTC (rev 1292694)
@@ -2,35 +2,36 @@
 
 _pkgname=okonomiyaki
 pkgname=python-$_pkgname
-pkgver=1.2.0
-pkgrel=6
+pkgver=1.3.2
+pkgrel=1
 pkgdesc='Experimental library aimed at consolidating a lot of our low-level 
code used for Enthought eggs'
 arch=('any')
 url='https://github.com/enthought/okonomiyaki'
 license=('MIT')
 depends=('python' 'python-attrs' 'python-jsonschema' 'python-six')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('b84e3c188037cf5e5e5e70db27dafe331b0a9db861d93e399b2c123c602c991147a7d99ff94fdcd1d8ba0d7eceab2111dbf0ff7af8b71afb5ee8342f204cc55c')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('89877ecca20370bcfd3f74429913e708a1e10f841fac012e154c4b43862dc9f1644d1b70638811cae71e5651565514db002ca777466b5e848009d7699b5735ed')
 
 build() {
-  find $_pkgname-$pkgver -type f -name '*.py' -exec sed -i 
's|zipfile2|zipfile|' '{}' +
+  cd $_pkgname-$pkgver
+
+  find -type f -name '*.py' -exec sed -i 's|zipfile2|zipfile|' '{}' +
+  sed -i /zipfile2/d setup.py
 }
 
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  python -m build -nw
 }
 
 package() {
   cd $_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$destdir" dist/*.whl
 
   install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  sed -i /zipfile2/d 
"$pkgdir"/usr/lib/python*/site-packages/okonomiyaki-*.egg-info/requires.txt
 }
 
 # vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:04:30
  Author: ffy00
Revision: 1292691

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 19:04:25 UTC (rev 1292690)
+++ PKGBUILD2022-09-03 19:04:30 UTC (rev 1292691)
@@ -1,44 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=nox
-pkgname=python-$_pkgname
-pkgver=2021.6.12
-pkgrel=2
-pkgdesc='Flexible test automation for Python'
-arch=('any')
-url='https://github.com/theacodes/nox'
-license=('Apache')
-depends=('python' 'python-argcomplete' 'python-colorlog' 'python-py' 
'python-virtualenv' 'python-packaging')
-optdepends=('python-jinja: tox_to_nox'
-'python-tox: tox_to_nox')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner' 'python-jinja' 'python-tox')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('25344c4c6a955449b96de90b1019d0feedaeb697b9b555334c08f7fbd7148dab5c086145ff87b0aff4dd8459e1fe7face3455ee798d4989a8bf8fb4489a481e7')
-
-prepare() {
-  # missing python-contexter
-  rm $_pkgname-$pkgver/tests/test_main.py
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  python setup.py pytest
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-nox/repos/community-any/PKGBUILD (from rev 1292690, 
python-nox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 19:04:30 UTC (rev 1292691)
@@ -0,0 +1,39 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=nox
+pkgname=python-$_pkgname
+pkgver=2022.8.7
+pkgrel=1
+pkgdesc='Flexible test automation for Python'
+arch=('any')
+url='https://github.com/wntrblm/nox'
+license=('Apache')
+depends=('python' 'python-argcomplete' 'python-colorlog' 'python-py' 
'python-virtualenv' 'python-packaging')
+optdepends=('python-jinja: tox_to_nox'
+'python-tox: tox_to_nox')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest-runner' 'python-jinja' 'python-tox')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('53a66964a99fff6f9f72ebe3dafc6fb52188f0af7f7c4fab1eaa5f35e8c641532477636303050d059825a505492e718cb915a2d6d9a9062bec4d6a0c85931205')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  python -m pytest
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:04:25
  Author: ffy00
Revision: 1292690

upgpkg: python-nox 2022.8.7-1

Modified:
  python-nox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 19:01:19 UTC (rev 1292689)
+++ PKGBUILD2022-09-03 19:04:25 UTC (rev 1292690)
@@ -2,41 +2,36 @@
 
 _pkgname=nox
 pkgname=python-$_pkgname
-pkgver=2021.6.12
-pkgrel=2
+pkgver=2022.8.7
+pkgrel=1
 pkgdesc='Flexible test automation for Python'
 arch=('any')
-url='https://github.com/theacodes/nox'
+url='https://github.com/wntrblm/nox'
 license=('Apache')
 depends=('python' 'python-argcomplete' 'python-colorlog' 'python-py' 
'python-virtualenv' 'python-packaging')
 optdepends=('python-jinja: tox_to_nox'
 'python-tox: tox_to_nox')
-makedepends=('python-setuptools')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
 checkdepends=('python-pytest-runner' 'python-jinja' 'python-tox')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('25344c4c6a955449b96de90b1019d0feedaeb697b9b555334c08f7fbd7148dab5c086145ff87b0aff4dd8459e1fe7face3455ee798d4989a8bf8fb4489a481e7')
+sha512sums=('53a66964a99fff6f9f72ebe3dafc6fb52188f0af7f7c4fab1eaa5f35e8c641532477636303050d059825a505492e718cb915a2d6d9a9062bec4d6a0c85931205')
 
-prepare() {
-  # missing python-contexter
-  rm $_pkgname-$pkgver/tests/test_main.py
-}
-
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  python -m build -nw
 }
 
 check() {
   cd $_pkgname-$pkgver
 
-  python setup.py pytest
+  python -m pytest
 }
 
 package() {
   cd $_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:01:19
  Author: ffy00
Revision: 1292689

archrelease: copy trunk to community-any

Added:
  python-myst-parser/repos/community-any/PKGBUILD
(from rev 1292688, python-myst-parser/trunk/PKGBUILD)
Deleted:
  python-myst-parser/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 19:01:10 UTC (rev 1292688)
+++ PKGBUILD2022-09-03 19:01:19 UTC (rev 1292689)
@@ -1,39 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Maintainer: Caleb Maclennana 
-
-_pkgname=MyST-Parser
-pkgname=python-myst-parser
-pkgver=0.17.0
-pkgrel=1
-pkgdesc='An extended commonmark compliant parser, with bridges to 
docutils/sphinx'
-arch=('any')
-url='https://github.com/executablebooks/MyST-Parser'
-license=('MIT')
-depends=('python-docutils' 'python-jinja' 'python-markdown-it-py' 
'python-mdit_py_plugins' 'python-typing_extensions' 'python-sphinx' 
'python-yaml')
-optdepends=('python-linkify-it-py: linkify support')
-makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
-checkdepends=('python-beautifulsoup4' 'python-linkify-it-py' 'python-pytest' 
'python-pytest-param-files' 'python-pytest-regressions')
-source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('e9f4ea05ab55b0979b26f0211603aee0835a30fb37a0ca23f23b96e0b47670b6b8e443ee9759df5011d009e20d817eaffd4066c4be4920f96786c283aa206239')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python -m build -wn
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  python -m pytest -k 'not test_sphinx_builds and not fixtures and not 
test_myst_config'
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python -m installer -d "$pkgdir" dist/*.whl
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-myst-parser/repos/community-any/PKGBUILD (from rev 1292688, 
python-myst-parser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 19:01:19 UTC (rev 1292689)
@@ -0,0 +1,39 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Maintainer: Caleb Maclennana 
+
+_pkgname=MyST-Parser
+pkgname=python-myst-parser
+pkgver=0.18.0
+pkgrel=1
+pkgdesc='An extended commonmark compliant parser, with bridges to 
docutils/sphinx'
+arch=('any')
+url='https://github.com/executablebooks/MyST-Parser'
+license=('MIT')
+depends=('python-docutils' 'python-jinja' 'python-markdown-it-py' 
'python-mdit_py_plugins' 'python-typing_extensions' 'python-sphinx' 
'python-yaml')
+optdepends=('python-linkify-it-py: linkify support')
+makedepends=('python-build' 'python-installer' 'python-flit-core' 
'python-wheel')
+checkdepends=('python-beautifulsoup4' 'python-linkify-it-py' 'python-pytest' 
'python-pytest-param-files' 'python-pytest-regressions' 'python-sphinx-pytest')
+source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('919494467de3f0cd97c9c8062626b88c22fd0596e120b7ca117b8bce18d9fad9faf06a36e4c5bd8a4dad838c888524c780beceaf3e7acb42232bd3c903fabc3f')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -wn
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  python -m pytest -k 'not test_sphinx_builds and not fixtures and not 
test_myst_config'
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:01:10
  Author: ffy00
Revision: 1292688

upgpkg: python-myst-parser 0.18.0-1

Modified:
  python-myst-parser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 19:00:29 UTC (rev 1292687)
+++ PKGBUILD2022-09-03 19:01:10 UTC (rev 1292688)
@@ -3,7 +3,7 @@
 
 _pkgname=MyST-Parser
 pkgname=python-myst-parser
-pkgver=0.17.0
+pkgver=0.18.0
 pkgrel=1
 pkgdesc='An extended commonmark compliant parser, with bridges to 
docutils/sphinx'
 arch=('any')
@@ -11,10 +11,10 @@
 license=('MIT')
 depends=('python-docutils' 'python-jinja' 'python-markdown-it-py' 
'python-mdit_py_plugins' 'python-typing_extensions' 'python-sphinx' 
'python-yaml')
 optdepends=('python-linkify-it-py: linkify support')
-makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
-checkdepends=('python-beautifulsoup4' 'python-linkify-it-py' 'python-pytest' 
'python-pytest-param-files' 'python-pytest-regressions')
+makedepends=('python-build' 'python-installer' 'python-flit-core' 
'python-wheel')
+checkdepends=('python-beautifulsoup4' 'python-linkify-it-py' 'python-pytest' 
'python-pytest-param-files' 'python-pytest-regressions' 'python-sphinx-pytest')
 source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('e9f4ea05ab55b0979b26f0211603aee0835a30fb37a0ca23f23b96e0b47670b6b8e443ee9759df5011d009e20d817eaffd4066c4be4920f96786c283aa206239')
+sha512sums=('919494467de3f0cd97c9c8062626b88c22fd0596e120b7ca117b8bce18d9fad9faf06a36e4c5bd8a4dad838c888524c780beceaf3e7acb42232bd3c903fabc3f')
 
 build() {
   cd $_pkgname-$pkgver



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:00:29
  Author: ffy00
Revision: 1292687

archrelease: copy trunk to community-any

Added:
  python-sphinx-pytest/repos/community-any/
  python-sphinx-pytest/repos/community-any/PKGBUILD
(from rev 1292686, python-sphinx-pytest/trunk/PKGBUILD)

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

Copied: python-sphinx-pytest/repos/community-any/PKGBUILD (from rev 1292686, 
python-sphinx-pytest/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-09-03 19:00:29 UTC (rev 1292687)
@@ -0,0 +1,36 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=sphinx-pytest
+pkgname=python-$_pkgname
+pkgver=0.0.4
+pkgrel=1
+pkgdesc='Helpful pytest fixtures for sphinx extensions'
+arch=('any')
+url='https://github.com/chrisjsewell/sphinx-pytest'
+license=('MIT')
+depends=('python-sphinx' 'python-pytest')
+makedepends=('python-build' 'python-installer' 'python-flit-core' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('25bf3fafddf02aed8b2478dc2beafa251027652d03f31bbac67eb98913e359f9497a9018561aff0fdaf568ece4bcfa15705dcfa2fd3734f4db6c613b24d6a568')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+#check() {
+#  cd $_pkgname-$pkgver
+#
+#  PYTHONPATH=src python -m pytest
+#}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 19:00:25
  Author: ffy00
Revision: 1292686

upgpkg: python-sphinx-pytest 0.0.4-1

Added:
  python-sphinx-pytest/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 19:00:25 UTC (rev 1292686)
@@ -0,0 +1,36 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=sphinx-pytest
+pkgname=python-$_pkgname
+pkgver=0.0.4
+pkgrel=1
+pkgdesc='Helpful pytest fixtures for sphinx extensions'
+arch=('any')
+url='https://github.com/chrisjsewell/sphinx-pytest'
+license=('MIT')
+depends=('python-sphinx' 'python-pytest')
+makedepends=('python-build' 'python-installer' 'python-flit-core' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('25bf3fafddf02aed8b2478dc2beafa251027652d03f31bbac67eb98913e359f9497a9018561aff0fdaf568ece4bcfa15705dcfa2fd3734f4db6c613b24d6a568')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+#check() {
+#  cd $_pkgname-$pkgver
+#
+#  PYTHONPATH=src python -m pytest
+#}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (3 files)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:47:50
  Author: ffy00
Revision: 1292681

add root structure

Added:
  python-sphinx-pytest/
  python-sphinx-pytest/repos/
  python-sphinx-pytest/trunk/



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:43:59
  Author: ffy00
Revision: 1292678

archrelease: copy trunk to community-any

Added:
  python-markdown-it-py/repos/community-any/PKGBUILD
(from rev 1292677, python-markdown-it-py/trunk/PKGBUILD)
Deleted:
  python-markdown-it-py/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 18:43:55 UTC (rev 1292677)
+++ PKGBUILD2022-09-03 18:43:59 UTC (rev 1292678)
@@ -1,38 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=markdown-it-py
-pkgname=python-$_pkgname
-pkgver=1.1.0
-pkgrel=3
-pkgdesc='Python port of markdown-it. Markdown parsing, done right!'
-arch=('any')
-url='https://github.com/executablebooks/markdown-it-py'
-license=('MIT')
-depends=('python-attrs')
-optdepends=('python-mdit_py_plugins: core plugins')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-pytest-regressions' 
'python-pytest-benchmark' 'python-psutil' 'python-mdit_py_plugins')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('36b8a557afb4f6314aeba47e4c26ce7748679d771e9793a92a9e1a3b93319ed640bddf7e3f46a74a1ec71d837952115a76edf93b33ba4b693e496f31e4528bee')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  pytest -k 'not test_linkify'
-}
-
-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-markdown-it-py/repos/community-any/PKGBUILD (from rev 1292677, 
python-markdown-it-py/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 18:43:59 UTC (rev 1292678)
@@ -0,0 +1,38 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=markdown-it-py
+pkgname=python-$_pkgname
+pkgver=2.1.0
+pkgrel=1
+pkgdesc='Python port of markdown-it. Markdown parsing, done right!'
+arch=('any')
+url='https://github.com/executablebooks/markdown-it-py'
+license=('MIT')
+depends=('python-mdurl')
+optdepends=('python-mdit_py_plugins: core plugins')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest' 'python-pytest-regressions' 
'python-pytest-benchmark' 'python-psutil' 'python-mdit_py_plugins' 
'python-linkify-it-py')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('04e90538c8693f795aed2ed0a5bef4eaf0c12fac32cc0c2049c563e974b229940b9ceaea849ce86fa9804ccdd7be93145f3b6fc8d0774e96fafa0484368d0a88')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  python -m pytest
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:43:55
  Author: ffy00
Revision: 1292677

upgpkg: python-markdown-it-py 2.1.0-1

Modified:
  python-markdown-it-py/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 18:43:16 UTC (rev 1292676)
+++ PKGBUILD2022-09-03 18:43:55 UTC (rev 1292677)
@@ -2,35 +2,35 @@
 
 _pkgname=markdown-it-py
 pkgname=python-$_pkgname
-pkgver=1.1.0
-pkgrel=3
+pkgver=2.1.0
+pkgrel=1
 pkgdesc='Python port of markdown-it. Markdown parsing, done right!'
 arch=('any')
 url='https://github.com/executablebooks/markdown-it-py'
 license=('MIT')
-depends=('python-attrs')
+depends=('python-mdurl')
 optdepends=('python-mdit_py_plugins: core plugins')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-pytest-regressions' 
'python-pytest-benchmark' 'python-psutil' 'python-mdit_py_plugins')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest' 'python-pytest-regressions' 
'python-pytest-benchmark' 'python-psutil' 'python-mdit_py_plugins' 
'python-linkify-it-py')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('36b8a557afb4f6314aeba47e4c26ce7748679d771e9793a92a9e1a3b93319ed640bddf7e3f46a74a1ec71d837952115a76edf93b33ba4b693e496f31e4528bee')
+sha512sums=('04e90538c8693f795aed2ed0a5bef4eaf0c12fac32cc0c2049c563e974b229940b9ceaea849ce86fa9804ccdd7be93145f3b6fc8d0774e96fafa0484368d0a88')
 
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  python -m build
 }
 
 check() {
   cd $_pkgname-$pkgver
 
-  pytest -k 'not test_linkify'
+  python -m pytest
 }
 
 package() {
   cd $_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:43:16
  Author: ffy00
Revision: 1292676

archrelease: copy trunk to community-any

Added:
  python-mdurl/repos/community-any/
  python-mdurl/repos/community-any/PKGBUILD
(from rev 1292675, python-mdurl/trunk/PKGBUILD)

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

Copied: python-mdurl/repos/community-any/PKGBUILD (from rev 1292675, 
python-mdurl/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-09-03 18:43:16 UTC (rev 1292676)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=mdurl
+pkgname=python-$_pkgname
+pkgver=0.1.2
+pkgrel=1
+pkgdesc='URL utilities for markdown-it'
+arch=('any')
+url='https://github.com/executablebooks/mdurl'
+license=('MIT')
+depends=('python-uc-micro-py')
+makedepends=('python-build' 'python-installer' 'python-flit' 'python-wheel')
+checkdepends=('python-pytest')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('e301ca3ab6d80df1ad28b9c2725d66b6e6cf139d93e5f7fd2a70333678616a3f6db64f15250972eee3cd1cf1eaff6ec587415629e6802dcf07995edff6865ff2')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  PYTHONPATH=src python -m pytest
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:43:13
  Author: ffy00
Revision: 1292675

upgpkg: python-mdurl 0.1.2-1

Added:
  python-mdurl/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 18:43:13 UTC (rev 1292675)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=mdurl
+pkgname=python-$_pkgname
+pkgver=0.1.2
+pkgrel=1
+pkgdesc='URL utilities for markdown-it'
+arch=('any')
+url='https://github.com/executablebooks/mdurl'
+license=('MIT')
+depends=('python-uc-micro-py')
+makedepends=('python-build' 'python-installer' 'python-flit' 'python-wheel')
+checkdepends=('python-pytest')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('e301ca3ab6d80df1ad28b9c2725d66b6e6cf139d93e5f7fd2a70333678616a3f6db64f15250972eee3cd1cf1eaff6ec587415629e6802dcf07995edff6865ff2')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  PYTHONPATH=src python -m pytest
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:40:56
  Author: ffy00
Revision: 1292674

add root structure

Added:
  python-mdurl/
  python-mdurl/repos/
  python-mdurl/trunk/



[arch-commits] Commit in python-linkify-it-py/repos/community-any (PKGBUILD PKGBUILD)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:35:21
  Author: ffy00
Revision: 1292673

archrelease: copy trunk to community-any

Added:
  python-linkify-it-py/repos/community-any/PKGBUILD
(from rev 1292672, python-linkify-it-py/trunk/PKGBUILD)
Deleted:
  python-linkify-it-py/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 18:35:17 UTC (rev 1292672)
+++ PKGBUILD2022-09-03 18:35:21 UTC (rev 1292673)
@@ -1,37 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=linkify-it-py
-pkgname=python-$_pkgname
-pkgver=1.0.1
-pkgrel=3
-pkgdesc='Links recognition library with full unicode support'
-arch=('any')
-url='https://github.com/tsutsu3/linkify-it-py'
-license=('MIT')
-depends=('python-uc-micro-py')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('dd3aca108e9b8c246f41b856ac6a23531885b60ce39bbb6268ecc6c73a3329a815146d0ce4768050c703557fd3eb58576477cf5880fdb2e0bcefe4a35f2cfd79')
-
-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 -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-linkify-it-py/repos/community-any/PKGBUILD (from rev 1292672, 
python-linkify-it-py/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 18:35:21 UTC (rev 1292673)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=linkify-it-py
+pkgname=python-$_pkgname
+pkgver=2.0.0
+pkgrel=1
+pkgdesc='Links recognition library with full unicode support'
+arch=('any')
+url='https://github.com/tsutsu3/linkify-it-py'
+license=('MIT')
+depends=('python-uc-micro-py')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('7d2a66d5f0e33aece5b8d2737f20bd83f6cb2b7958b681c293f5996263f65f525862ce0cb0f7be9df1597844e58ed804b5b604c257e4d84cbf05677fd2733dda')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  python -m pytest
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:35:17
  Author: ffy00
Revision: 1292672

upgpkg: python-linkify-it-py 2.0.0-1

Modified:
  python-linkify-it-py/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 18:33:00 UTC (rev 1292671)
+++ PKGBUILD2022-09-03 18:35:17 UTC (rev 1292672)
@@ -2,22 +2,22 @@
 
 _pkgname=linkify-it-py
 pkgname=python-$_pkgname
-pkgver=1.0.1
-pkgrel=3
+pkgver=2.0.0
+pkgrel=1
 pkgdesc='Links recognition library with full unicode support'
 arch=('any')
 url='https://github.com/tsutsu3/linkify-it-py'
 license=('MIT')
 depends=('python-uc-micro-py')
-makedepends=('python-setuptools')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
 checkdepends=('python-pytest')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('dd3aca108e9b8c246f41b856ac6a23531885b60ce39bbb6268ecc6c73a3329a815146d0ce4768050c703557fd3eb58576477cf5880fdb2e0bcefe4a35f2cfd79')
+sha512sums=('7d2a66d5f0e33aece5b8d2737f20bd83f6cb2b7958b681c293f5996263f65f525862ce0cb0f7be9df1597844e58ed804b5b604c257e4d84cbf05677fd2733dda')
 
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  python -m build
 }
 
 check() {
@@ -29,7 +29,7 @@
 package() {
   cd $_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



[arch-commits] Commit in python-uc.micro-py/repos (2 files)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:33:00
  Author: ffy00
Revision: 1292671

archrelease: copy trunk to community-any

Added:
  python-uc.micro-py/repos/community-any/
  python-uc.micro-py/repos/community-any/PKGBUILD
(from rev 1292670, python-uc.micro-py/trunk/PKGBUILD)

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

Copied: python-uc.micro-py/repos/community-any/PKGBUILD (from rev 1292670, 
python-uc.micro-py/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-09-03 18:33:00 UTC (rev 1292671)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=uc.micro-py
+pkgname=python-$_pkgname
+pkgver=1.0.1
+pkgrel=1
+pkgdesc='Micro subset of unicode data files for linkify-it-py projects'
+arch=('any')
+url='https://github.com/tsutsu3/uc.micro-py'
+license=('MIT')
+depends=('python-uc-micro-py')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('c6747943bd4ac9a3b7bf8d02a52947df04d4d4986311da7fa77d6ae010d512de9ad429d78a436a2f8e11c6f2d8dde00bea70ea0b1237a35e5b16ed4ad6b430fe')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  python -m pytest
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in python-uc.micro-py/trunk (PKGBUILD)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:32:57
  Author: ffy00
Revision: 1292670

upgpkg: python-uc.micro-py 1.0.1-1

Added:
  python-uc.micro-py/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 18:32:57 UTC (rev 1292670)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=uc.micro-py
+pkgname=python-$_pkgname
+pkgver=1.0.1
+pkgrel=1
+pkgdesc='Micro subset of unicode data files for linkify-it-py projects'
+arch=('any')
+url='https://github.com/tsutsu3/uc.micro-py'
+license=('MIT')
+depends=('python-uc-micro-py')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('c6747943bd4ac9a3b7bf8d02a52947df04d4d4986311da7fa77d6ae010d512de9ad429d78a436a2f8e11c6f2d8dde00bea70ea0b1237a35e5b16ed4ad6b430fe')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  python -m pytest
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (3 files)

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:31:23
  Author: ffy00
Revision: 1292669

add root structure

Added:
  python-uc.micro-py/
  python-uc.micro-py/repos/
  python-uc.micro-py/trunk/



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:29:05
  Author: ffy00
Revision: 1292668

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 18:29:01 UTC (rev 1292667)
+++ PKGBUILD2022-09-03 18:29:05 UTC (rev 1292668)
@@ -1,28 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=libusb1
-pkgname=python-$_pkgname
-pkgver=2.0.1
-pkgrel=3
-pkgdesc='Python ctype-based wrapper around libusb1'
-arch=('any')
-url='https://github.com/vpelletier/python-libusb1'
-license=('LGPL2.1')
-depends=('python' 'libusb')
-makedepends=('python-setuptools' 'python-wheel')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('4860fdb244c32249e6aba7e2b8642eec8eca9acfacaa284568821af3bf95d63411bf5da3615beff47761ca35fc387526b1a9074fe44805097e55787b6aa890e8')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-libusb1/repos/community-any/PKGBUILD (from rev 1292667, 
python-libusb1/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 18:29:05 UTC (rev 1292668)
@@ -0,0 +1,28 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=libusb1
+pkgname=python-$_pkgname
+pkgver=3.0.0
+pkgrel=1
+pkgdesc='Python ctype-based wrapper around libusb1'
+arch=('any')
+url='https://github.com/vpelletier/python-libusb1'
+license=('LGPL2.1')
+depends=('python' 'libusb')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('7812dc4a22fc277f9791fb7050aa0a9c3953d1d3b386bb848380026a036a09bdff7745163eab07f5b70f919cb45ea4cd14f212f9e065dee670afee97a458de9d')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python -m build -nw
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:29:01
  Author: ffy00
Revision: 1292667

upgpkg: python-libusb1 3.0.0-1

Modified:
  python-libusb1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 18:26:27 UTC (rev 1292666)
+++ PKGBUILD2022-09-03 18:29:01 UTC (rev 1292667)
@@ -2,27 +2,27 @@
 
 _pkgname=libusb1
 pkgname=python-$_pkgname
-pkgver=2.0.1
-pkgrel=3
+pkgver=3.0.0
+pkgrel=1
 pkgdesc='Python ctype-based wrapper around libusb1'
 arch=('any')
 url='https://github.com/vpelletier/python-libusb1'
 license=('LGPL2.1')
 depends=('python' 'libusb')
-makedepends=('python-setuptools' 'python-wheel')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('4860fdb244c32249e6aba7e2b8642eec8eca9acfacaa284568821af3bf95d63411bf5da3615beff47761ca35fc387526b1a9074fe44805097e55787b6aa890e8')
+sha512sums=('7812dc4a22fc277f9791fb7050aa0a9c3953d1d3b386bb848380026a036a09bdff7745163eab07f5b70f919cb45ea4cd14f212f9e065dee670afee97a458de9d')
 
 build() {
   cd $pkgname-$pkgver
 
-  python setup.py build
+  python -m build -nw
 }
 
 package() {
   cd $pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 }
 
 # vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:26:27
  Author: ffy00
Revision: 1292666

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 18:26:22 UTC (rev 1292665)
+++ PKGBUILD2022-09-03 18:26:27 UTC (rev 1292666)
@@ -1,45 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Johannes Dewender  arch at JonnyJD dot net
-# Contributor: Ivan Sichmann Freitas 
-# Contributor: Brice Maron 
-# Contributor: Nuno Araujo 
-# Contributor: Steven Allen 
-
-pkgname=python-keyring
-_pkgname=keyring
-pkgver=23.4.0
-pkgrel=1 
-pkgdesc='Store and access your passwords safely'
-arch=('any')
-url='https://github.com/jaraco/keyring'
-license=('PSF' 'MIT')
-depends=('python-entrypoints' 'python-secretstorage' 
'python-importlib-metadata')
-makedepends=('git' 'python-setuptools-scm')
-checkdepends=('python-pytest-flake8' 'python-pytest-runner' 
'python-pytest-black' 'python-pytest-cov' 'python-pytest-mypy')
-optdepends=('python-keyrings-alt: Alternative backends'
-'python-dbus: kwallet backend')
-source=("git+$url#tag=v$pkgver")
-sha512sums=('SKIP')
-
-build() {
-  cd $_pkgname
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname
-
-  python setup.py pytest
-}
-
-package() {
-  cd $_pkgname
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  rm -rf "$pkgdir"/usr/lib/python3.10/site-packages/keyring/tests
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-keyring/repos/community-any/PKGBUILD (from rev 1292665, 
python-keyring/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 18:26:27 UTC (rev 1292666)
@@ -0,0 +1,45 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Johannes Dewender  arch at JonnyJD dot net
+# Contributor: Ivan Sichmann Freitas 
+# Contributor: Brice Maron 
+# Contributor: Nuno Araujo 
+# Contributor: Steven Allen 
+
+pkgname=python-keyring
+_pkgname=keyring
+pkgver=23.9.0
+pkgrel=1
+pkgdesc='Store and access your passwords safely'
+arch=('any')
+url='https://github.com/jaraco/keyring'
+license=('PSF' 'MIT')
+depends=('python-entrypoints' 'python-secretstorage' 
'python-importlib-metadata')
+makedepends=('git' 'python-build' 'python-installer' 'python-setuptools-scm' 
'python-wheel')
+checkdepends=('python-pytest-flake8' 'python-pytest-runner' 
'python-pytest-black' 'python-pytest-cov' 'python-pytest-mypy')
+optdepends=('python-keyrings-alt: Alternative backends'
+'python-dbus: kwallet backend')
+source=("git+$url#tag=v$pkgver")
+sha512sums=('SKIP')
+
+build() {
+  cd $_pkgname
+
+  python -m build
+}
+
+check() {
+  cd $_pkgname
+
+  python -m pytest
+}
+
+package() {
+  cd $_pkgname
+
+  python -m installer -d "$pkgdir" dist/*.whl
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  rm -rf "$pkgdir"/usr/lib/python3.10/site-packages/keyring/tests
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:26:22
  Author: ffy00
Revision: 1292665

upgpkg: python-keyring 23.9.0-1

Modified:
  python-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 18:23:43 UTC (rev 1292664)
+++ PKGBUILD2022-09-03 18:26:22 UTC (rev 1292665)
@@ -7,14 +7,14 @@
 
 pkgname=python-keyring
 _pkgname=keyring
-pkgver=23.4.0
-pkgrel=1 
+pkgver=23.9.0
+pkgrel=1
 pkgdesc='Store and access your passwords safely'
 arch=('any')
 url='https://github.com/jaraco/keyring'
 license=('PSF' 'MIT')
 depends=('python-entrypoints' 'python-secretstorage' 
'python-importlib-metadata')
-makedepends=('git' 'python-setuptools-scm')
+makedepends=('git' 'python-build' 'python-installer' 'python-setuptools-scm' 
'python-wheel')
 checkdepends=('python-pytest-flake8' 'python-pytest-runner' 
'python-pytest-black' 'python-pytest-cov' 'python-pytest-mypy')
 optdepends=('python-keyrings-alt: Alternative backends'
 'python-dbus: kwallet backend')
@@ -24,19 +24,19 @@
 build() {
   cd $_pkgname
 
-  python setup.py build
+  python -m build
 }
 
 check() {
   cd $_pkgname
 
-  python setup.py pytest
+  python -m pytest
 }
 
 package() {
   cd $_pkgname
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 
   rm -rf "$pkgdir"/usr/lib/python3.10/site-packages/keyring/tests



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:23:43
  Author: ffy00
Revision: 1292664

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 18:23:38 UTC (rev 1292663)
+++ PKGBUILD2022-09-03 18:23:43 UTC (rev 1292664)
@@ -1,32 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=ipyxact
-pkgname=python-$_pkgname
-pkgver=0.2.4
-pkgrel=5
-pkgdesc='Python-based IP-XACT parser'
-arch=('any')
-url='https://github.com/olofk/ipyxact'
-license=('MIT')
-depends=('python' 'python-yaml')
-makedepends=('python-setuptools-scm')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('6a3cc94477dee65d91eeaac908a7ed3cc52686d85f448e0e1f85c25aaf79ea15edf87135539e7a2319e6b54a62cd32ab2cdb1771e14a223cafb4d529dbf035d5')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-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-ipyxact/repos/community-any/PKGBUILD (from rev 1292663, 
python-ipyxact/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 18:23:43 UTC (rev 1292664)
@@ -0,0 +1,30 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=ipyxact
+pkgname=python-$_pkgname
+pkgver=0.3.2
+pkgrel=1
+pkgdesc='Python-based IP-XACT parser'
+arch=('any')
+url='https://github.com/olofk/ipyxact'
+license=('MIT')
+depends=('python' 'python-yaml')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('7048b914616135d5a7319d4bf93208da2fe02f8ea76a95a7000b64e40866b6e4064e0bf43705ad0a026e383f6c78a803768499a29c838f2fc6359bafeafb6a32')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:23:38
  Author: ffy00
Revision: 1292663

upgpkg: python-ipyxact 0.3.2-1

Modified:
  python-ipyxact/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 18:17:25 UTC (rev 1292662)
+++ PKGBUILD2022-09-03 18:23:38 UTC (rev 1292663)
@@ -2,29 +2,27 @@
 
 _pkgname=ipyxact
 pkgname=python-$_pkgname
-pkgver=0.2.4
-pkgrel=5
+pkgver=0.3.2
+pkgrel=1
 pkgdesc='Python-based IP-XACT parser'
 arch=('any')
 url='https://github.com/olofk/ipyxact'
 license=('MIT')
 depends=('python' 'python-yaml')
-makedepends=('python-setuptools-scm')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('6a3cc94477dee65d91eeaac908a7ed3cc52686d85f448e0e1f85c25aaf79ea15edf87135539e7a2319e6b54a62cd32ab2cdb1771e14a223cafb4d529dbf035d5')
+sha512sums=('7048b914616135d5a7319d4bf93208da2fe02f8ea76a95a7000b64e40866b6e4064e0bf43705ad0a026e383f6c78a803768499a29c838f2fc6359bafeafb6a32')
 
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  python -m build -nw
 }
 
 package() {
   cd $_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:17:25
  Author: ffy00
Revision: 1292662

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 18:17:21 UTC (rev 1292661)
+++ PKGBUILD2022-09-03 18:17:25 UTC (rev 1292662)
@@ -1,51 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-hypothesis
-pkgver=6.17.1
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org";
-depends=('python-attrs' 'python-sortedcontainers')
-optdepends=('python-pytz: for datetime and django module'
-'python-faker: for fakefactory and django module'
-'python-django: for django module'
-'python-numpy: for numpy module'
-'python-pytest: for pytest module'
-'python-lark-parser: for lark module'
-'python-libcst: for codemods module')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
-  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
-  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
-  'python-typing_extensions' 'python-black' 'python-fakeredis' 
'python-libcst')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
-sha512sums=('6418f850b6642337d11bee7d78f82d061af1dd3a2e59dcda1e87ef88f99bda23ccbd6e6cb6cce00275380ddf125c77102bf88ae6a3884d754ef9f7cf9b68e4f5')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-}
-
-build() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-}
-
-check() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  python examples/example_hypothesis_entrypoint/setup.py install 
--root="$PWD/tmp_install" --optimize=1
-
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.10/site-packages:$PWD/examples/example_hypothesis_entrypoint"
 \
-  PATH="$PWD/tmp_install/usr/bin:$PATH" \
-pytest --ignore tmp_install || echo "Tests failed"
-}
-
-package() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  # It's only present when tests are enabled, so adding -f
-  rm -rf "$pkgdir"/usr/lib/python3.10/site-packages/tests
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 1292661, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 18:17:25 UTC (rev 1292662)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-hypothesis
+pkgver=6.54.4
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org";
+depends=('python-attrs' 'python-sortedcontainers')
+optdepends=('python-pytz: for datetime and django module'
+'python-faker: for fakefactory and django module'
+'python-django: for django module'
+'python-numpy: for numpy module'
+'python-pytest: for pytest module'
+'python-lark-parser: for lark module'
+'python-libcst: for codemods module')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker' 'python-exceptiongroup'
+  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
+  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
+  'python-typing_extensions' 'python-black' 'python-fakeredis' 
'python-libcst')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
+sha512sums=('7e5b70cc2df874163205e3d35f3f5e6a71319e779b35f1596c69222373e9b766a143ccf37aa1699de6b98827978e44ccbca0b1e30e6ffe29c8b68c83bb3af869')
+
+prepare() {
+  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
+}
+
+build() {
+  cd hypothesis-$pkgver/hypothesis-python
+
+  python -m build -nw
+}
+
+check() {
+  cd hypothesis-$pkgver/hypothesis-python
+
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  python examples/example_hypothesis_entrypoint/setup.py install 
--root="$PWD/tmp_install" --optimize=1
+
+  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.10/site-packages:$PWD/examples/example_hypothesis_entrypoi

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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 18:17:21
  Author: ffy00
Revision: 1292661

upgpkg: python-hypothesis 6.54.4-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 17:57:39 UTC (rev 1292660)
+++ PKGBUILD2022-09-03 18:17:21 UTC (rev 1292661)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-hypothesis
-pkgver=6.17.1
+pkgver=6.54.4
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -15,13 +15,13 @@
 'python-pytest: for pytest module'
 'python-lark-parser: for lark module'
 'python-libcst: for codemods module')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker' 'python-exceptiongroup'
   'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
   'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
   'python-typing_extensions' 'python-black' 'python-fakeredis' 
'python-libcst')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
-sha512sums=('6418f850b6642337d11bee7d78f82d061af1dd3a2e59dcda1e87ef88f99bda23ccbd6e6cb6cce00275380ddf125c77102bf88ae6a3884d754ef9f7cf9b68e4f5')
+sha512sums=('7e5b70cc2df874163205e3d35f3f5e6a71319e779b35f1596c69222373e9b766a143ccf37aa1699de6b98827978e44ccbca0b1e30e6ffe29c8b68c83bb3af869')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
@@ -29,11 +29,13 @@
 
 build() {
   cd hypothesis-$pkgver/hypothesis-python
-  python setup.py build
+
+  python -m build -nw
 }
 
 check() {
   cd hypothesis-$pkgver/hypothesis-python
+
   python setup.py install --root="$PWD/tmp_install" --optimize=1
   python examples/example_hypothesis_entrypoint/setup.py install 
--root="$PWD/tmp_install" --optimize=1
 
@@ -44,8 +46,9 @@
 
 package() {
   cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
 
+  python -m installer -d "$pkgdir" dist/*.whl
+
   # It's only present when tests are enabled, so adding -f
-  rm -rf "$pkgdir"/usr/lib/python3.10/site-packages/tests
+  rm -rf "$pkgdir"/usr/lib/python*/site-packages/tests
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 17:42:36
  Author: ffy00
Revision: 1292653

upgpkg: python-docutils-stubs 0.0.22-1

Modified:
  python-docutils-stubs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 17:39:30 UTC (rev 1292652)
+++ PKGBUILD2022-09-03 17:42:36 UTC (rev 1292653)
@@ -9,7 +9,7 @@
 url='https://github.com/tk0miya/docutils-stubs'
 license=('custom:Unlicense')
 depends=('python' 'python-docutils')
-makedepends=('python-setuptools')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
 
source=("https://pypi.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz";
 
'https://raw.githubusercontent.com/tk0miya/docutils-stubs/1f13dcdbebb06bc742b797bc5765a70d734a7fbc/LICENSE')
 
sha512sums=('30aeac0f15c215abdb6eb42e0bf46e50f08f20befc7bebd7fa376e7f85813189ab71df583231c461539530b1d7da6fc263d75b24ff251c46d2dcb3163bd0116b'
@@ -18,17 +18,14 @@
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  python -m build -nw
 }
 
 package() {
   cd $_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 
-  # remove docutils dependency pin
-  sed -i '/docutils/d' 
"$pkgdir"/usr/lib/python*/site-packages/docutils_stubs-*.egg-info/requires.txt
-
   install -Dm 644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 17:42:40
  Author: ffy00
Revision: 1292654

archrelease: copy trunk to community-any

Added:
  python-docutils-stubs/repos/community-any/PKGBUILD
(from rev 1292653, python-docutils-stubs/trunk/PKGBUILD)
Deleted:
  python-docutils-stubs/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 17:42:36 UTC (rev 1292653)
+++ PKGBUILD2022-09-03 17:42:40 UTC (rev 1292654)
@@ -1,35 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=docutils-stubs
-pkgname=python-$_pkgname
-pkgver=0.0.21
-pkgrel=3
-pkgdesc='PEP 561 based Type information for docutils'
-arch=('any')
-url='https://github.com/tk0miya/docutils-stubs'
-license=('custom:Unlicense')
-depends=('python' 'python-docutils')
-makedepends=('python-setuptools')
-source=("https://pypi.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz";
-
'https://raw.githubusercontent.com/tk0miya/docutils-stubs/1f13dcdbebb06bc742b797bc5765a70d734a7fbc/LICENSE')
-sha512sums=('b469dd35cd9934fc9c53ec3a62b473fbcfb230d42dc501d202da4c8be0e1ee2aef8c2722824cb191f9814aa3f12f773113bda96e4aa35d0b28efd1a6d76656f1'
-
'f23a3f3ec79340594ea40d731087e8586326a96c6cb9675c7a58687255885148286aa73cee087a5a3c976ea901fde16e229d00e98c65188cce3f0d75c8390a10')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  # remove docutils dependency pin
-  sed -i '/docutils/d' 
"$pkgdir"/usr/lib/python*/site-packages/docutils_stubs-*.egg-info/requires.txt
-
-  install -Dm 644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-docutils-stubs/repos/community-any/PKGBUILD (from rev 1292653, 
python-docutils-stubs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 17:42:40 UTC (rev 1292654)
@@ -0,0 +1,32 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=docutils-stubs
+pkgname=python-$_pkgname
+pkgver=0.0.22
+pkgrel=1
+pkgdesc='PEP 561 based Type information for docutils'
+arch=('any')
+url='https://github.com/tk0miya/docutils-stubs'
+license=('custom:Unlicense')
+depends=('python' 'python-docutils')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+source=("https://pypi.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz";
+
'https://raw.githubusercontent.com/tk0miya/docutils-stubs/1f13dcdbebb06bc742b797bc5765a70d734a7fbc/LICENSE')
+sha512sums=('30aeac0f15c215abdb6eb42e0bf46e50f08f20befc7bebd7fa376e7f85813189ab71df583231c461539530b1d7da6fc263d75b24ff251c46d2dcb3163bd0116b'
+
'f23a3f3ec79340594ea40d731087e8586326a96c6cb9675c7a58687255885148286aa73cee087a5a3c976ea901fde16e229d00e98c65188cce3f0d75c8390a10')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 17:39:30
  Author: ffy00
Revision: 1292652

upgpkg: python-docutils-stubs 0.0.22-1

Modified:
  python-docutils-stubs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 17:35:31 UTC (rev 1292651)
+++ PKGBUILD2022-09-03 17:39:30 UTC (rev 1292652)
@@ -2,8 +2,8 @@
 
 _pkgname=docutils-stubs
 pkgname=python-$_pkgname
-pkgver=0.0.21
-pkgrel=3
+pkgver=0.0.22
+pkgrel=1
 pkgdesc='PEP 561 based Type information for docutils'
 arch=('any')
 url='https://github.com/tk0miya/docutils-stubs'
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools')
 
source=("https://pypi.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz";
 
'https://raw.githubusercontent.com/tk0miya/docutils-stubs/1f13dcdbebb06bc742b797bc5765a70d734a7fbc/LICENSE')
-sha512sums=('b469dd35cd9934fc9c53ec3a62b473fbcfb230d42dc501d202da4c8be0e1ee2aef8c2722824cb191f9814aa3f12f773113bda96e4aa35d0b28efd1a6d76656f1'
+sha512sums=('30aeac0f15c215abdb6eb42e0bf46e50f08f20befc7bebd7fa376e7f85813189ab71df583231c461539530b1d7da6fc263d75b24ff251c46d2dcb3163bd0116b'
 
'f23a3f3ec79340594ea40d731087e8586326a96c6cb9675c7a58687255885148286aa73cee087a5a3c976ea901fde16e229d00e98c65188cce3f0d75c8390a10')
 
 build() {



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 17:35:31
  Author: ffy00
Revision: 1292651

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 17:35:28 UTC (rev 1292650)
+++ PKGBUILD2022-09-03 17:35:31 UTC (rev 1292651)
@@ -1,29 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=python-colorlog
-pkgver=6.5.0
-pkgrel=3
-pkgdesc='A colored formatter for the python logging module'
-arch=('any')
-url='https://github.com/borntyping/python-colorlog'
-license=('MIT')
-depends=('python')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('82f33b8baef508c5f2a3a1491b065505dce86390f6a53c256ca5811a247ecc71aafd1e6a8056a8d39c7d236b92d305b5036da52b4c5a14cf783679c2c3e65faa')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-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-colorlog/repos/community-any/PKGBUILD (from rev 1292650, 
python-colorlog/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 17:35:31 UTC (rev 1292651)
@@ -0,0 +1,29 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=python-colorlog
+pkgver=6.7.0
+pkgrel=1
+pkgdesc='A colored formatter for the python logging module'
+arch=('any')
+url='https://github.com/borntyping/python-colorlog'
+license=('MIT')
+depends=('python')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('cd1a82dbb0a02106078804eac81b1d1a20ab7ed6c60909057e9d904c98531c88c1ed0c57ed0ad5d8a53ff5f3fe5fc695a9ce9783cbc073e699a59d330af54a2c')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python -m build -nw
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 17:35:28
  Author: ffy00
Revision: 1292650

upgpkg: python-colorlog 6.7.0-1

Modified:
  python-colorlog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 17:33:55 UTC (rev 1292649)
+++ PKGBUILD2022-09-03 17:35:28 UTC (rev 1292650)
@@ -1,27 +1,27 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=python-colorlog
-pkgver=6.5.0
-pkgrel=3
+pkgver=6.7.0
+pkgrel=1
 pkgdesc='A colored formatter for the python logging module'
 arch=('any')
 url='https://github.com/borntyping/python-colorlog'
 license=('MIT')
 depends=('python')
-makedepends=('python-setuptools')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('82f33b8baef508c5f2a3a1491b065505dce86390f6a53c256ca5811a247ecc71aafd1e6a8056a8d39c7d236b92d305b5036da52b4c5a14cf783679c2c3e65faa')
+sha512sums=('cd1a82dbb0a02106078804eac81b1d1a20ab7ed6c60909057e9d904c98531c88c1ed0c57ed0ad5d8a53ff5f3fe5fc695a9ce9783cbc073e699a59d330af54a2c')
 
 build() {
   cd $pkgname-$pkgver
 
-  python setup.py build
+  python -m build -nw
 }
 
 package() {
   cd $pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 17:33:55
  Author: ffy00
Revision: 1292649

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 17:33:51 UTC (rev 1292648)
+++ PKGBUILD2022-09-03 17:33:55 UTC (rev 1292649)
@@ -1,52 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=auditwheel
-pkgname=python-$_pkgname
-pkgver=3.3.1
-pkgrel=2
-pkgdesc='Auditing and relabeling cross-distribution Linux wheels'
-arch=('any')
-url='https://github.com/pypa/auditwheel'
-license=('MIT' 'BSD')
-depends=('python' 'python-wheel' 'python-pyelftools' 'unzip' 'patchelf')
-makedepends=('python-setuptools' 'python-pbr')
-#checkdepends=('python-tox-current-env' 'python-pip' 'python-pytest' 
'python-jsonschema' 'python-pretend' 'python-docker')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('213063e3fa846b53f802499e71f30a53410e18a8e6a787019f07f79a9fd9687f436110c5765407f6a2ac40e4532f292c8c334264436a22322e90939f77e5231a')
-
-export PBR_VERSION=$pkgver
-
-prepare() {
-  cd $_pkgname-$pkgver
-#  find $_pkgname-$pkgver/tests -type f -exec sed -i 
's|subprocess.run(\["auditwheel"|subprocess.run(\["python", "-m", 
"auditwheel"|' '{}' \+
-
-  # replace the vendored wheel module with the one on the system
-  find -type f -name '*.py' -exec \
-  sed -i 's|\._vendor\.wheel|wheel|' '{}' \+
-
-  # remove vendored wheel module
-  rm -rf auditwheel/_vendor
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-#check() {
-#  cd $_pkgname-$pkgver
-#
-#  tox -e py310 --current-env
-#}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm 644 auditwheel/policy/policy.json 
"$pkgdir"/usr/lib/python3.10/site-packages/auditwheel/policy/policy.json
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-auditwheel/repos/community-any/PKGBUILD (from rev 1292648, 
python-auditwheel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 17:33:55 UTC (rev 1292649)
@@ -0,0 +1,52 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=auditwheel
+pkgname=python-$_pkgname
+pkgver=5.1.2
+pkgrel=1
+pkgdesc='Auditing and relabeling cross-distribution Linux wheels'
+arch=('any')
+url='https://github.com/pypa/auditwheel'
+license=('MIT' 'BSD')
+depends=('python' 'python-wheel' 'python-pyelftools' 'unzip' 'patchelf')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-setuptools-scm' 'python-wheel')
+#checkdepends=('python-pytest' 'python-jsonschema' 'python-pretend' 
'python-docker')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('6536b2fd9ce568a2079abbe83469fe3e25ce28a947b37f63302b440d86db94d8d5baa168a5ccdecf95f8109f501da945c5f093545b0f4e3bbca4542cbe90bb0f')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  # replace the vendored wheel module with the one on the system
+  find -type f -name '*.py' -exec \
+  sed -i 's|\._vendor\.wheel|wheel|' '{}' \+
+
+  # remove vendored wheel module
+  rm -rf auditwheel/_vendor
+}
+
+build() {
+  cd $_pkgname-$pkgver
+
+  SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver python -m build -nw
+}
+
+#check() {
+#  cd $_pkgname-$pkgver
+#
+#  python -m venv --system-site-packages test
+#  test/bin/python -m installer dist/*.whl
+#
+#  PATH="test/bin:$PATH" python -m pytest
+#}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+  #install -Dm 644 auditwheel/policy/policy.json 
"$pkgdir"/usr/lib/python3.10/site-packages/auditwheel/policy/policy.json
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 17:33:51
  Author: ffy00
Revision: 1292648

upgpkg: python-auditwheel 5.1.2-1

Modified:
  python-auditwheel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 17:18:27 UTC (rev 1292647)
+++ PKGBUILD2022-09-03 17:33:51 UTC (rev 1292648)
@@ -2,23 +2,20 @@
 
 _pkgname=auditwheel
 pkgname=python-$_pkgname
-pkgver=3.3.1
-pkgrel=2
+pkgver=5.1.2
+pkgrel=1
 pkgdesc='Auditing and relabeling cross-distribution Linux wheels'
 arch=('any')
 url='https://github.com/pypa/auditwheel'
 license=('MIT' 'BSD')
 depends=('python' 'python-wheel' 'python-pyelftools' 'unzip' 'patchelf')
-makedepends=('python-setuptools' 'python-pbr')
-#checkdepends=('python-tox-current-env' 'python-pip' 'python-pytest' 
'python-jsonschema' 'python-pretend' 'python-docker')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-setuptools-scm' 'python-wheel')
+#checkdepends=('python-pytest' 'python-jsonschema' 'python-pretend' 
'python-docker')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('213063e3fa846b53f802499e71f30a53410e18a8e6a787019f07f79a9fd9687f436110c5765407f6a2ac40e4532f292c8c334264436a22322e90939f77e5231a')
+sha512sums=('6536b2fd9ce568a2079abbe83469fe3e25ce28a947b37f63302b440d86db94d8d5baa168a5ccdecf95f8109f501da945c5f093545b0f4e3bbca4542cbe90bb0f')
 
-export PBR_VERSION=$pkgver
-
 prepare() {
   cd $_pkgname-$pkgver
-#  find $_pkgname-$pkgver/tests -type f -exec sed -i 
's|subprocess.run(\["auditwheel"|subprocess.run(\["python", "-m", 
"auditwheel"|' '{}' \+
 
   # replace the vendored wheel module with the one on the system
   find -type f -name '*.py' -exec \
@@ -31,20 +28,23 @@
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver python -m build -nw
 }
 
 #check() {
 #  cd $_pkgname-$pkgver
 #
-#  tox -e py310 --current-env
+#  python -m venv --system-site-packages test
+#  test/bin/python -m installer dist/*.whl
+#
+#  PATH="test/bin:$PATH" python -m pytest
 #}
 
 package() {
   cd $_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm 644 auditwheel/policy/policy.json 
"$pkgdir"/usr/lib/python3.10/site-packages/auditwheel/policy/policy.json
+  python -m installer -d "$pkgdir" dist/*.whl
+  #install -Dm 644 auditwheel/policy/policy.json 
"$pkgdir"/usr/lib/python3.10/site-packages/auditwheel/policy/policy.json
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 17:18:27
  Author: ffy00
Revision: 1292647

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 17:18:19 UTC (rev 1292646)
+++ PKGBUILD2022-09-03 17:18:27 UTC (rev 1292647)
@@ -1,49 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=asyncpg
-pkgname=python-$_pkgname
-pkgver=0.24.0
-pkgrel=2
-pkgdesc='A fast PostgreSQL Database Client Library for Python/asyncio'
-arch=('x86_64')
-url='https://github.com/MagicStack/asyncpg'
-license=('Apache')
-depends=('python')
-makedepends=('git' 'python-setuptools' 'cython')
-checkdepends=('python-pytest-runner' 'python-uvloop' 'postgresql')
-source=("git+$url.git#tag=v$pkgver"
-'git+https://github.com/MagicStack/py-pgproto.git')
-sha512sums=('SKIP'
-'SKIP')
-
-prepare() {
-  cd $_pkgname
-
-  git submodule init
-  git config submodule.asyncpg/pgproto.url "$srcdir"/py-pgproto
-  git submodule update
-
-  sed -i "s|'Cython==.*'|'Cython'|" setup.py
-}
-
-build() {
-  cd $_pkgname
-
-  python setup.py build_py build_ext
-}
-
-check() {
-  cd $_pkgname
-
-  python setup.py pytest
-}
-
-package() {
-  cd $_pkgname
-
-  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-asyncpg/repos/community-x86_64/PKGBUILD (from rev 1292646, 
python-asyncpg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 17:18:27 UTC (rev 1292647)
@@ -0,0 +1,55 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=asyncpg
+pkgname=python-$_pkgname
+pkgver=0.26.0
+pkgrel=1
+pkgdesc='A fast PostgreSQL Database Client Library for Python/asyncio'
+arch=('x86_64')
+url='https://github.com/MagicStack/asyncpg'
+license=('Apache')
+depends=('python')
+makedepends=('git' 'python-setuptools' 'cython')
+makedepends=('git' 'python-build' 'python-installer' 'python-wheel' 'cython'
+ 'python-setuptools' 'python-setuptools-scm' 
'python-setuptools-scm-git-archive')
+checkdepends=('python-pytest-runner' 'python-uvloop' 'postgresql')
+source=("git+$url.git#tag=v$pkgver"
+'git+https://github.com/MagicStack/py-pgproto.git')
+sha512sums=('SKIP'
+'SKIP')
+
+prepare() {
+  cd $_pkgname
+
+  git submodule init
+  git config submodule.asyncpg/pgproto.url "$srcdir"/py-pgproto
+  git submodule update
+
+  sed -i "s|'Cython==.*'|'Cython'|" setup.py
+}
+
+build() {
+  cd $_pkgname
+
+  python -m build -nw
+}
+
+check() {
+  cd $_pkgname
+
+  python -m venv --system-site-packages test
+  cd test/bin
+  ./python -m installer ../../dist/*.whl
+
+  ./python -m pytest ../../tests
+}
+
+package() {
+  cd $_pkgname
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 17:18:19
  Author: ffy00
Revision: 1292646

upgpkg: python-asyncpg 0.26.0-1

Modified:
  python-asyncpg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 17:11:50 UTC (rev 1292645)
+++ PKGBUILD2022-09-03 17:18:19 UTC (rev 1292646)
@@ -2,8 +2,8 @@
 
 _pkgname=asyncpg
 pkgname=python-$_pkgname
-pkgver=0.24.0
-pkgrel=2
+pkgver=0.26.0
+pkgrel=1
 pkgdesc='A fast PostgreSQL Database Client Library for Python/asyncio'
 arch=('x86_64')
 url='https://github.com/MagicStack/asyncpg'
@@ -10,6 +10,8 @@
 license=('Apache')
 depends=('python')
 makedepends=('git' 'python-setuptools' 'cython')
+makedepends=('git' 'python-build' 'python-installer' 'python-wheel' 'cython'
+ 'python-setuptools' 'python-setuptools-scm' 
'python-setuptools-scm-git-archive')
 checkdepends=('python-pytest-runner' 'python-uvloop' 'postgresql')
 source=("git+$url.git#tag=v$pkgver"
 'git+https://github.com/MagicStack/py-pgproto.git')
@@ -29,19 +31,23 @@
 build() {
   cd $_pkgname
 
-  python setup.py build_py build_ext
+  python -m build -nw
 }
 
 check() {
   cd $_pkgname
 
-  python setup.py pytest
+  python -m venv --system-site-packages test
+  cd test/bin
+  ./python -m installer ../../dist/*.whl
+
+  ./python -m pytest ../../tests
 }
 
 package() {
   cd $_pkgname
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 16:59:39
  Author: ffy00
Revision: 1292640

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 16:59:36 UTC (rev 1292639)
+++ PKGBUILD2022-09-03 16:59:39 UTC (rev 1292640)
@@ -1,44 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=aiopg
-pkgname=python-$_pkgname
-pkgver=1.3.1
-pkgrel=2
-pkgdesc='library for accessing a PostgreSQL database from the asyncio'
-arch=('any')
-url='https://github.com/aio-libs/aiopg'
-license=('BSD')
-depends=('python' 'python-psycopg2' 'python-async-timeout')
-makedepends=('python-setuptools')
-optdepends=('python-sqlalchemy: SQLAlchemy support')
-#checkdepends=('python-pytest-runner' 'python-sqlalchemy' 'python-docker')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('cd226c77cf741731cd04a6d2c1855da68de888cc1bc349d4a03d4b4b4a9ca1b56847173a5c8c99cb210604755ac669bcd8129b96ce3886ee5e9810d058d8d1c5')
-
-# TODO: fix tests (need docker)
-
-prepare() {
-  sed -i 's|install_requires = \["psycopg2-binary|install_requires = 
\["psycopg2|' $_pkgname-$pkgver/setup.py
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-#check() {
-#  cd $_pkgname-$pkgver
-#
-#  python setup.py pytest
-#}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-aiopg/repos/community-any/PKGBUILD (from rev 1292639, 
python-aiopg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 16:59:39 UTC (rev 1292640)
@@ -0,0 +1,45 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=aiopg
+pkgname=python-$_pkgname
+pkgver=1.3.4
+pkgrel=1
+pkgdesc='library for accessing a PostgreSQL database from the asyncio'
+arch=('any')
+url='https://github.com/aio-libs/aiopg'
+license=('BSD')
+depends=('python' 'python-psycopg2' 'python-async-timeout')
+makedepends=('python-build' 'python-installer' 'python-wheel'
+ 'python-setuptools' 'python-setuptools-scm' 
'python-setuptools-scm-git-archive')
+optdepends=('python-sqlalchemy: SQLAlchemy support')
+#checkdepends=('python-pytest-runner' 'python-sqlalchemy' 'python-docker')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('1de1172fd207345cd21fe648417abea8e891124b75dd955b7dd92a76932420f148acff87df12d464b99c45fa4a4e461963e9cae3a84c0d447aa69d0bbeceebf0')
+
+# TODO: fix tests (need docker)
+
+prepare() {
+  sed -i 's|install_requires = \["psycopg2-binary|install_requires = 
\["psycopg2|' $_pkgname-$pkgver/setup.py
+}
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build
+}
+
+#check() {
+#  cd $_pkgname-$pkgver
+#
+#  python setup.py pytest
+#}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 16:59:36
  Author: ffy00
Revision: 1292639

upgpkg: python-aiopg 1.3.4-1

Modified:
  python-aiopg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 16:57:35 UTC (rev 1292638)
+++ PKGBUILD2022-09-03 16:59:36 UTC (rev 1292639)
@@ -2,18 +2,19 @@
 
 _pkgname=aiopg
 pkgname=python-$_pkgname
-pkgver=1.3.1
-pkgrel=2
+pkgver=1.3.4
+pkgrel=1
 pkgdesc='library for accessing a PostgreSQL database from the asyncio'
 arch=('any')
 url='https://github.com/aio-libs/aiopg'
 license=('BSD')
 depends=('python' 'python-psycopg2' 'python-async-timeout')
-makedepends=('python-setuptools')
+makedepends=('python-build' 'python-installer' 'python-wheel'
+ 'python-setuptools' 'python-setuptools-scm' 
'python-setuptools-scm-git-archive')
 optdepends=('python-sqlalchemy: SQLAlchemy support')
 #checkdepends=('python-pytest-runner' 'python-sqlalchemy' 'python-docker')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('cd226c77cf741731cd04a6d2c1855da68de888cc1bc349d4a03d4b4b4a9ca1b56847173a5c8c99cb210604755ac669bcd8129b96ce3886ee5e9810d058d8d1c5')
+sha512sums=('1de1172fd207345cd21fe648417abea8e891124b75dd955b7dd92a76932420f148acff87df12d464b99c45fa4a4e461963e9cae3a84c0d447aa69d0bbeceebf0')
 
 # TODO: fix tests (need docker)
 
@@ -24,7 +25,7 @@
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  python -m build
 }
 
 #check() {
@@ -36,7 +37,7 @@
 package() {
   cd $_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 16:57:35
  Author: ffy00
Revision: 1292638

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 16:57:31 UTC (rev 1292637)
+++ PKGBUILD2022-09-03 16:57:35 UTC (rev 1292638)
@@ -1,40 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=aiomysql
-pkgname=python-$_pkgname
-pkgver=0.0.21
-pkgrel=3
-pkgdesc='library for accessing a MySQL database from the asyncio'
-arch=('any')
-url='https://github.com/aio-libs/aiomysql'
-license=('MIT')
-depends=('python' 'python-pymysql')
-makedepends=('python-setuptools')
-optdepends=('python-sqlalchemy: SQLAlchemy support')
-#checkdepends=('python-pytest-runner' 'python-ipdb' 'python-docker' 
'python-sqlalchemy' 'python-uvloop')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('e715c02541cadc483851b8a0e2c6f5cc5a0c499b41e785f2ab7519869d184d50c30f37e83f330f8be3494719d1a9eb64f6ce37746e9a75533f63d2f97fd3372d')
-
-# TODO: fix tests
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-#check() {
-#  cd $_pkgname-$pkgver
-#
-#  python setup.py pytest
-#}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-aiomysql/repos/community-any/PKGBUILD (from rev 1292637, 
python-aiomysql/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 16:57:35 UTC (rev 1292638)
@@ -0,0 +1,41 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=aiomysql
+pkgname=python-$_pkgname
+pkgver=0.1.1
+pkgrel=1
+pkgdesc='library for accessing a MySQL database from the asyncio'
+arch=('any')
+url='https://github.com/aio-libs/aiomysql'
+license=('MIT')
+depends=('python' 'python-pymysql')
+makedepends=('python-build' 'python-installer' 'python-wheel'
+ 'python-setuptools' 'python-setuptools-scm' 
'python-setuptools-scm-git-archive')
+optdepends=('python-sqlalchemy: SQLAlchemy support')
+#checkdepends=('python-pytest' 'python-ipdb' 'python-docker' 
'python-sqlalchemy' 'python-uvloop')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('b83a91465caf756f8a3046651d90b5a39d9b2714d96d8bb1c6df4fa6b47189c24979d88901d7f7fb1d2dd235c4a19e2d9ed3f73c8ace42950d12e1cdbb0e46ac')
+
+# TODO: fix tests
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python -m build -nw
+}
+
+#check() {
+#  cd $_pkgname-$pkgver
+#
+#  python -m pytest
+#}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python -m installer -d "$pkgdir" dist/*.whl
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 16:57:31
  Author: ffy00
Revision: 1292637

upgpkg: python-aiomysql 0.1.1-1

Modified:
  python-aiomysql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 16:51:33 UTC (rev 1292636)
+++ PKGBUILD2022-09-03 16:57:31 UTC (rev 1292637)
@@ -2,18 +2,19 @@
 
 _pkgname=aiomysql
 pkgname=python-$_pkgname
-pkgver=0.0.21
-pkgrel=3
+pkgver=0.1.1
+pkgrel=1
 pkgdesc='library for accessing a MySQL database from the asyncio'
 arch=('any')
 url='https://github.com/aio-libs/aiomysql'
 license=('MIT')
 depends=('python' 'python-pymysql')
-makedepends=('python-setuptools')
+makedepends=('python-build' 'python-installer' 'python-wheel'
+ 'python-setuptools' 'python-setuptools-scm' 
'python-setuptools-scm-git-archive')
 optdepends=('python-sqlalchemy: SQLAlchemy support')
-#checkdepends=('python-pytest-runner' 'python-ipdb' 'python-docker' 
'python-sqlalchemy' 'python-uvloop')
+#checkdepends=('python-pytest' 'python-ipdb' 'python-docker' 
'python-sqlalchemy' 'python-uvloop')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('e715c02541cadc483851b8a0e2c6f5cc5a0c499b41e785f2ab7519869d184d50c30f37e83f330f8be3494719d1a9eb64f6ce37746e9a75533f63d2f97fd3372d')
+sha512sums=('b83a91465caf756f8a3046651d90b5a39d9b2714d96d8bb1c6df4fa6b47189c24979d88901d7f7fb1d2dd235c4a19e2d9ed3f73c8ace42950d12e1cdbb0e46ac')
 
 # TODO: fix tests
 
@@ -20,19 +21,19 @@
 build() {
   cd $_pkgname-$pkgver
 
-  python setup.py build
+  python -m build -nw
 }
 
 #check() {
 #  cd $_pkgname-$pkgver
 #
-#  python setup.py pytest
+#  python -m pytest
 #}
 
 package() {
   cd $_pkgname-$pkgver
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer -d "$pkgdir" dist/*.whl
 
   install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 16:51:33
  Author: ffy00
Revision: 1292636

archrelease: copy trunk to community-x86_64

Added:
  proxmark3/repos/community-x86_64/PKGBUILD
(from rev 1292635, proxmark3/trunk/PKGBUILD)
Deleted:
  proxmark3/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 16:51:30 UTC (rev 1292635)
+++ PKGBUILD2022-09-03 16:51:33 UTC (rev 1292636)
@@ -1,45 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=proxmark3
-pkgver=4.9237
-pkgrel=2
-pkgdesc='Software for the the Proxmark3, an RFID swiss-army tool'
-arch=('x86_64')
-url='https://github.com/RfidResearchGroup/proxmark3'
-license=('GPL2')
-depends=('qt5-base' 'bluez-libs')
-makedepends=('arm-none-eabi-gcc' 'arm-none-eabi-newlib')
-optdepends=('lua: lua scripts'
-'python: some scripts')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('c3ba93c3d456a1daf5001a37bc8030aa973eb1626ef4b31fc14df791375088763926637478df1bbb45f489743ec03490efe36accc22ef7301d7a032a445e551d')
-
-prepare() {
-  cp -r $pkgname-$pkgver{,-rdv4}
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  make PLATFORM=PM3OTHER all
-
-  cd "$srcdir"/$pkgname-$pkgver-rdv4
-
-  make PLATFORM=PM3RDV4 FWTAG=rdv4 common bootrom recovery fullimage
-}
-
-package() {
-  export PREFIX=/usr
-  export DESTDIR="$pkgdir"
-  export UDEV_PREFIX=/usr/lib/udev/rules.d
-  export INSTALLTOOLSRELPATH=bin
-
-  cd "$srcdir"/$pkgname-$pkgver-rdv4
-
-  make PLATFORM=PM3RDV4 FWTAG=rdv4 {bootrom,recovery,fullimage}/install
-
-  cd "$srcdir"/$pkgname-$pkgver
-
-  make PLATFORM=PM3OTHER install
-}
-

Copied: proxmark3/repos/community-x86_64/PKGBUILD (from rev 1292635, 
proxmark3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 16:51:33 UTC (rev 1292636)
@@ -0,0 +1,45 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=proxmark3
+pkgver=4.14831
+pkgrel=1
+pkgdesc='Software for the the Proxmark3, an RFID swiss-army tool'
+arch=('x86_64')
+url='https://github.com/RfidResearchGroup/proxmark3'
+license=('GPL2')
+depends=('qt5-base' 'bluez-libs' 'jansson')
+makedepends=('arm-none-eabi-gcc' 'arm-none-eabi-newlib' 'lua52' 'python')
+optdepends=('lua52: lua scripts'
+'python: some scripts')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('a2ce8ae60e223d06148e15ebd47d5e0472e3e3a3fe39ccadc61fdd839525c5d0de496a5a8718f11ace708246f5860c6c51318f67838b649fe64989929fb4e514')
+
+prepare() {
+  cp -r $pkgname-$pkgver{,-rdv4}
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  make PLATFORM=PM3GENERIC SKIPQT=0 all
+
+  cd "$srcdir"/$pkgname-$pkgver-rdv4
+
+  make PLATFORM=PM3RDV4 FWTAG=rdv4 common bootrom recovery fullimage
+}
+
+package() {
+  export PREFIX=/usr
+  export DESTDIR="$pkgdir"
+  export UDEV_PREFIX=/usr/lib/udev/rules.d
+  export INSTALLTOOLSRELPATH=bin
+
+  cd "$srcdir"/$pkgname-$pkgver-rdv4
+
+  make PLATFORM=PM3RDV4 FWTAG=rdv4 {bootrom,recovery,fullimage}/install
+
+  cd "$srcdir"/$pkgname-$pkgver
+
+  make PLATFORM=PM3GENERIC install
+}
+



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 16:51:30
  Author: ffy00
Revision: 1292635

upgpkg: proxmark3 4.14831-1

Modified:
  proxmark3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 16:48:22 UTC (rev 1292634)
+++ PKGBUILD2022-09-03 16:51:30 UTC (rev 1292635)
@@ -1,18 +1,18 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=proxmark3
-pkgver=4.9237
-pkgrel=2
+pkgver=4.14831
+pkgrel=1
 pkgdesc='Software for the the Proxmark3, an RFID swiss-army tool'
 arch=('x86_64')
 url='https://github.com/RfidResearchGroup/proxmark3'
 license=('GPL2')
-depends=('qt5-base' 'bluez-libs')
-makedepends=('arm-none-eabi-gcc' 'arm-none-eabi-newlib')
-optdepends=('lua: lua scripts'
+depends=('qt5-base' 'bluez-libs' 'jansson')
+makedepends=('arm-none-eabi-gcc' 'arm-none-eabi-newlib' 'lua52' 'python')
+optdepends=('lua52: lua scripts'
 'python: some scripts')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('c3ba93c3d456a1daf5001a37bc8030aa973eb1626ef4b31fc14df791375088763926637478df1bbb45f489743ec03490efe36accc22ef7301d7a032a445e551d')
+sha512sums=('a2ce8ae60e223d06148e15ebd47d5e0472e3e3a3fe39ccadc61fdd839525c5d0de496a5a8718f11ace708246f5860c6c51318f67838b649fe64989929fb4e514')
 
 prepare() {
   cp -r $pkgname-$pkgver{,-rdv4}
@@ -21,7 +21,7 @@
 build() {
   cd "$srcdir"/$pkgname-$pkgver
 
-  make PLATFORM=PM3OTHER all
+  make PLATFORM=PM3GENERIC SKIPQT=0 all
 
   cd "$srcdir"/$pkgname-$pkgver-rdv4
 
@@ -40,6 +40,6 @@
 
   cd "$srcdir"/$pkgname-$pkgver
 
-  make PLATFORM=PM3OTHER install
+  make PLATFORM=PM3GENERIC install
 }
 



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 16:48:22
  Author: ffy00
Revision: 1292634

archrelease: copy trunk to community-any

Added:
  piper/repos/community-any/PKGBUILD
(from rev 1292633, piper/trunk/PKGBUILD)
  piper/repos/community-any/keys/
Deleted:
  piper/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 16:48:17 UTC (rev 1292633)
+++ PKGBUILD2022-09-03 16:48:22 UTC (rev 1292634)
@@ -1,40 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=piper
-pkgver=0.6
-pkgrel=2
-pkgdesc='GTK application to configure gaming mice'
-arch=('any')
-url='https://github.com/libratbag/piper'
-license=('GPL')
-depends=('python' 'python-gobject' 'libratbag' 'python-evdev' 'python-lxml' 
'python-cairo')
-makedepends=('git' 'meson' 'flake8')
-validpgpkeys=('3DCE51D60930EBA47858BA4146F633CBB0EB4BF2'  # Filipe Laíns 
(FFY00) 
-  '3C2C43D9447D5938EF4551EBE23B7E70B467F0BF'  # Peter Hutterer 
(Who-T) 
-  '2F2670AC164DB36F'  # Benjamin Tissoires 

-  'BB45B0B3FF561BDBD45EE8A9B35B49EA5D563EFE') # 
stephanlach...@protonmail.com 
-source=("git+$url#tag=$pkgver?signed")
-sha512sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-
-  # Remove install script
-  # This is handled by pacman hooks
-  sed -i "/meson.add_install_script('meson_install.sh')/d" meson.build
-}
-
-build() {
-  mkdir $pkgname/build
-  cd $pkgname/build
-
-  arch-meson ..
-
-  ninja
-}
-
-package() {
-  cd $pkgname/build
-
-  DESTDIR="$pkgdir" ninja install
-}

Copied: piper/repos/community-any/PKGBUILD (from rev 1292633, 
piper/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 16:48:22 UTC (rev 1292634)
@@ -0,0 +1,40 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=piper
+pkgver=0.7
+pkgrel=1
+pkgdesc='GTK application to configure gaming mice'
+arch=('any')
+url='https://github.com/libratbag/piper'
+license=('GPL')
+depends=('python' 'python-gobject' 'libratbag' 'python-evdev' 'python-lxml' 
'python-cairo')
+makedepends=('git' 'meson' 'flake8' 'appstream')
+validpgpkeys=('3DCE51D60930EBA47858BA4146F633CBB0EB4BF2'  # Filipe Laíns 
(FFY00) 
+  '3C2C43D9447D5938EF4551EBE23B7E70B467F0BF'  # Peter Hutterer 
(Who-T) 
+  '2F2670AC164DB36F'  # Benjamin Tissoires 

+  'BB45B0B3FF561BDBD45EE8A9B35B49EA5D563EFE') # 
stephanlach...@protonmail.com 
+source=("git+$url#tag=$pkgver?signed")
+sha512sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+
+  # Remove install script
+  # This is handled by pacman hooks
+  sed -i "/meson.add_install_script('meson_install.sh')/d" meson.build
+}
+
+build() {
+  mkdir $pkgname/build
+  cd $pkgname/build
+
+  arch-meson ..
+
+  ninja
+}
+
+package() {
+  cd $pkgname/build
+
+  DESTDIR="$pkgdir" ninja install
+}



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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 16:48:17
  Author: ffy00
Revision: 1292633

upgpkg: piper 0.7-1

Modified:
  piper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-03 16:45:50 UTC (rev 1292632)
+++ PKGBUILD2022-09-03 16:48:17 UTC (rev 1292633)
@@ -1,14 +1,14 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=piper
-pkgver=0.6
-pkgrel=2
+pkgver=0.7
+pkgrel=1
 pkgdesc='GTK application to configure gaming mice'
 arch=('any')
 url='https://github.com/libratbag/piper'
 license=('GPL')
 depends=('python' 'python-gobject' 'libratbag' 'python-evdev' 'python-lxml' 
'python-cairo')
-makedepends=('git' 'meson' 'flake8')
+makedepends=('git' 'meson' 'flake8' 'appstream')
 validpgpkeys=('3DCE51D60930EBA47858BA4146F633CBB0EB4BF2'  # Filipe Laíns 
(FFY00) 
   '3C2C43D9447D5938EF4551EBE23B7E70B467F0BF'  # Peter Hutterer 
(Who-T) 
   '2F2670AC164DB36F'  # Benjamin Tissoires 




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

2022-09-03 Thread Filipe Laíns via arch-commits
Date: Saturday, September 3, 2022 @ 16:45:50
  Author: ffy00
Revision: 1292632

archrelease: copy trunk to community-x86_64

Added:
  openfpgaloader/repos/community-x86_64/PKGBUILD
(from rev 1292631, openfpgaloader/trunk/PKGBUILD)
Deleted:
  openfpgaloader/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-03 16:45:46 UTC (rev 1292631)
+++ PKGBUILD2022-09-03 16:45:50 UTC (rev 1292632)
@@ -1,43 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=openFPGALoader
-pkgname=openfpgaloader
-pkgver=0.5.0
-pkgrel=2
-pkgdesc='Universal utility for programming FPGA'
-arch=('x86_64')
-url='https://github.com/trabucayre/openFPGALoader'
-license=('Apache2')
-depends=('libftdi' 'libftdi-compat' 'libhidapi-libusb.so' 'libudev.so')
-makedepends=('cmake' 'libusb' 'systemd')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('067405358ea06d21da7952db8b797c4067e6a41a531b5b946bd04eedac3d176ac61595f13e151b4f51915a602c8f74ee17f8089004ab00ccaee563766487db17')
-
-prepare() {
-  sed -i 's|MODE="664", GROUP="plugdev"|MODE="666"|g' 
$_pkgname-$pkgver/99-openfpgaloader.rules
-}
-
-build() {
-  mkdir -p $_pkgname-$pkgver/build
-  cd $_pkgname-$pkgver/build
-
-  export CFLAGS+=" ${CPPFLAGS}"
-  export CXXFLAGS+=" ${CPPFLAGS}"
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=None \
--DENABLE_UDEV=True \
--DENABLE_CMSISDAP=True
-
-  make
-}
-
-package() {
-  cd $_pkgname-$pkgver/build
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm 644 ../99-openfpgaloader.rules 
"$pkgdir"/usr/lib/udev/rules.d/99-openfpgaloader.rules
-}
-

Copied: openfpgaloader/repos/community-x86_64/PKGBUILD (from rev 1292631, 
openfpgaloader/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-03 16:45:50 UTC (rev 1292632)
@@ -0,0 +1,43 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=openFPGALoader
+pkgname=openfpgaloader
+pkgver=0.9.0
+pkgrel=1
+pkgdesc='Universal utility for programming FPGA'
+arch=('x86_64')
+url='https://github.com/trabucayre/openFPGALoader'
+license=('Apache2')
+depends=('libftdi' 'libftdi-compat' 'libhidapi-libusb.so' 'libudev.so')
+makedepends=('cmake' 'libusb' 'systemd')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('c4ed3b35b9893676e39c630631882be5f33e4ad25700b2608a8c3565c2bcad51ef733a7d187f435f58164be74bb9bc21afa5d6fad9dfeaaffe8d97645a233edb')
+
+prepare() {
+  sed -i 's|MODE="664", GROUP="plugdev"|MODE="666"|g' 
$_pkgname-$pkgver/99-openfpgaloader.rules
+}
+
+build() {
+  mkdir -p $_pkgname-$pkgver/build
+  cd $_pkgname-$pkgver/build
+
+  export CFLAGS+=" ${CPPFLAGS}"
+  export CXXFLAGS+=" ${CPPFLAGS}"
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-DENABLE_UDEV=True \
+-DENABLE_CMSISDAP=True
+
+  make
+}
+
+package() {
+  cd $_pkgname-$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm 644 ../99-openfpgaloader.rules 
"$pkgdir"/usr/lib/udev/rules.d/99-openfpgaloader.rules
+}
+



  1   2   3   4   5   6   7   8   9   >