[arch-commits] Commit in python-trio (3 files)

Maxime Gauduin alucryd at archlinux.org
Thu May 23 13:25:49 UTC 2019


    Date: Thursday, May 23, 2019 @ 13:25:49
  Author: alucryd
Revision: 469331

archrelease: copy trunk to community-any

Added:
  python-trio/repos/
  python-trio/repos/community-any/
  python-trio/repos/community-any/PKGBUILD
    (from rev 469330, python-trio/trunk/PKGBUILD)

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

Copied: python-trio/repos/community-any/PKGBUILD (from rev 469330, python-trio/trunk/PKGBUILD)
===================================================================
--- repos/community-any/PKGBUILD	                        (rev 0)
+++ repos/community-any/PKGBUILD	2019-05-23 13:25:49 UTC (rev 469331)
@@ -0,0 +1,40 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+
+pkgname=python-trio
+pkgver=0.11.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)
+source=(git+https://github.com/python-trio/trio.git#tag=v${pkgver})
+sha256sums=(SKIP)
+
+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:



More information about the arch-commits mailing list