Date: Thursday, October 6, 2022 @ 19:17:22
Author: diabonas
Revision: 1322803
archrelease: copy trunk to community-any
Added:
python-trio/repos/community-any/PKGBUILD
(from rev 1322802, python-trio/trunk/PKGBUILD)
Deleted:
python-trio/repos/community-any/PKGBUILD
----------+
PKGBUILD | 93 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 47 insertions(+), 46 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-10-06 19:16:57 UTC (rev 1322802)
+++ PKGBUILD 2022-10-06 19:17:22 UTC (rev 1322803)
@@ -1,46 +0,0 @@
-# Maintainer: Maxime Gauduin <[email protected]>
-
-pkgname=python-trio
-pkgver=0.22.0
-pkgrel=1
-pkgdesc='A friendly Python library for async concurrency and I/O'
-arch=(any)
-url=https://github.com/python-trio/trio
-license=(MIT)
-depends=(
- python
- python-async_generator
- python-attrs
- python-idna
- python-outcome
- python-sniffio
- python-sortedcontainers
-)
-makedepends=(
- git
- python-setuptools
-)
-provides=(python-multio-provider)
-_tag=87ea87018da2085180138bd952abcac67961be62
-source=(git+https://github.com/python-trio/trio.git#tag=${_tag})
-b2sums=(SKIP)
-
-pkgver() {
- cd trio
- _version=$(git describe --tags | sed 's/^v//')
- echo "__version__ = '${_version}'" > trio/_version.py
- echo ${_version}
-}
-
-build() {
- cd trio
- python setup.py build
-}
-
-package() {
- cd trio
- python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
- install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-trio/
-}
-
-# vim: ts=2 sw=2 et:
Copied: python-trio/repos/community-any/PKGBUILD (from rev 1322802,
python-trio/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-10-06 19:17:22 UTC (rev 1322803)
@@ -0,0 +1,47 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+
+pkgname=python-trio
+pkgver=0.22.0
+pkgrel=2
+pkgdesc='A friendly Python library for async concurrency and I/O'
+arch=(any)
+url=https://github.com/python-trio/trio
+license=(MIT)
+depends=(
+ python
+ python-async_generator
+ python-attrs
+ python-exceptiongroup
+ python-idna
+ python-outcome
+ python-sniffio
+ python-sortedcontainers
+)
+makedepends=(
+ git
+ python-setuptools
+)
+provides=(python-multio-provider)
+_tag=87ea87018da2085180138bd952abcac67961be62
+source=(git+https://github.com/python-trio/trio.git#tag=${_tag})
+b2sums=(SKIP)
+
+pkgver() {
+ cd trio
+ _version=$(git describe --tags | sed 's/^v//')
+ echo "__version__ = '${_version}'" > trio/_version.py
+ echo ${_version}
+}
+
+build() {
+ cd trio
+ python setup.py build
+}
+
+package() {
+ cd trio
+ python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+ install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-trio/
+}
+
+# vim: ts=2 sw=2 et: