Date: Sunday, January 15, 2023 @ 10:46:33
Author: alucryd
Revision: 1383612
archrelease: copy trunk to community-any
Added:
python-trio-asyncio/repos/community-any/PKGBUILD
(from rev 1383611, python-trio-asyncio/trunk/PKGBUILD)
Deleted:
python-trio-asyncio/repos/community-any/PKGBUILD
----------+
PKGBUILD | 95 +++++++++++++++++++++++++++++--------------------------------
1 file changed, 46 insertions(+), 49 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-01-15 10:46:22 UTC (rev 1383611)
+++ PKGBUILD 2023-01-15 10:46:33 UTC (rev 1383612)
@@ -1,49 +0,0 @@
-# Maintainer: Maxime Gauduin <[email protected]>
-
-pkgname=python-trio-asyncio
-pkgver=0.12.0
-pkgrel=3
-pkgdesc='A re-implementation of the asyncio mainloop on top of Trio'
-arch=(any)
-url=https://github.com/python-trio/trio-asyncio
-license=(
- APACHE
- MIT
-)
-depends=(
- python
- python-async_generator
- python-outcome
- python-trio
-)
-makedepends=(
- git
- python-setuptools
- python-pytest-runner
-)
-_tag=970d81c498f857d052738a2c4db2c899910dc038
-source=(git+https://github.com/python-trio/trio-asyncio.git#tag=${_tag})
-sha256sums=(SKIP)
-
-pkgver() {
- cd trio-asyncio
-
- git describe --tags | sed 's/^v//'
-}
-
-build() {
- cd trio-asyncio
-
- python setup.py build
-}
-
-package() {
- cd trio-asyncio
-
- python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
- rm -rf ${pkgdir}/usr/lib/python3.10/site-packages/tests
- install -Dm 644 LICENSE -t
"${pkgdir}"/usr/share/licenses/python-trio-asyncio/
- install -Dm 644 LICENSE.MIT -t
"${pkgdir}"/usr/share/licenses/python-trio-asyncio/
-}
-
-# vim: ts=2 sw=2 et:
Copied: python-trio-asyncio/repos/community-any/PKGBUILD (from rev 1383611,
python-trio-asyncio/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-01-15 10:46:33 UTC (rev 1383612)
@@ -0,0 +1,46 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+
+pkgname=python-trio-asyncio
+pkgver=0.12.0
+pkgrel=4
+pkgdesc='A re-implementation of the asyncio mainloop on top of Trio'
+arch=(any)
+url=https://github.com/python-trio/trio-asyncio
+license=(
+ APACHE
+ MIT
+)
+depends=(
+ python
+ python-async_generator
+ python-outcome
+ python-trio
+)
+makedepends=(
+ git
+ python-setuptools
+ python-pytest-runner
+)
+_tag=970d81c498f857d052738a2c4db2c899910dc038
+source=(git+https://github.com/python-trio/trio-asyncio.git#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+ cd trio-asyncio
+ git describe --tags | sed 's/^v//'
+}
+
+build() {
+ cd trio-asyncio
+ python setup.py build
+}
+
+package() {
+ cd trio-asyncio
+ python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+ rm -rf ${pkgdir}/usr/lib/$(python -c 'import sys; print("".join(map(str,
sys.version_info[:2])))')/site-packages/tests
+ install -Dm 644 LICENSE -t
"${pkgdir}"/usr/share/licenses/python-trio-asyncio/
+ install -Dm 644 LICENSE.MIT -t
"${pkgdir}"/usr/share/licenses/python-trio-asyncio/
+}
+
+# vim: ts=2 sw=2 et: