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

Evangelos Foutras foutrelis at archlinux.org
Sat Oct 26 06:37:55 UTC 2019


    Date: Saturday, October 26, 2019 @ 06:37:54
  Author: foutrelis
Revision: 520284

archrelease: copy trunk to community-staging-any

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

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

Copied: python-sniffio/repos/community-staging-any/PKGBUILD (from rev 520282, python-sniffio/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2019-10-26 06:37:54 UTC (rev 520284)
@@ -0,0 +1,39 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+
+pkgname=python-sniffio
+pkgver=1.1.0
+pkgrel=2
+pkgdesc='Sniff out which async library your code is running under'
+arch=(any)
+url=https://github.com/python-trio/sniffio
+license=(MIT)
+depends=(python)
+makedepends=(
+  git
+  python-curio
+  python-pytest
+  python-setuptools
+)
+source=(git+https://github.com/python-trio/sniffio.git#tag=v${pkgver})
+sha256sums=(SKIP)
+
+build() {
+  cd sniffio
+
+  python setup.py build
+}
+
+check() {
+  cd sniffio
+
+  python setup.py test
+}
+
+package() {
+  cd sniffio
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-sniffio/
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list