[arch-commits] Commit in python-aioitertools/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Mon Nov 9 16:51:44 UTC 2020
Date: Monday, November 9, 2020 @ 16:51:44
Author: felixonmars
Revision: 747620
archrelease: copy trunk to community-staging-any
Added:
python-aioitertools/repos/community-staging-any/
python-aioitertools/repos/community-staging-any/PKGBUILD
(from rev 747618, python-aioitertools/trunk/PKGBUILD)
----------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
Copied: python-aioitertools/repos/community-staging-any/PKGBUILD (from rev 747618, python-aioitertools/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2020-11-09 16:51:44 UTC (rev 747620)
@@ -0,0 +1,38 @@
+# Maintainer: Chih-Hsuan Yen <yan12125 at archlinux.org>
+
+pkgname=python-aioitertools
+_pkgname=aioitertools
+pkgver=0.7.0
+pkgrel=4
+pkgdesc='Implementation of itertools, builtins, and more for AsyncIO and mixed-type iterables'
+arch=(any)
+url='https://github.com/jreese/aioitertools'
+license=(MIT)
+depends=(python python-typing_extensions)
+makedepends=(python-setuptools)
+source=("https://files.pythonhosted.org/packages/source/a/$_pkgname/$_pkgname-$pkgver.tar.gz")
+sha256sums=('341cb05a0903177ef1b73d4cc12c92aee18e81c364e0138f4efc7ec3c47b8177')
+
+prepare() {
+ cd $_pkgname-$pkgver
+ # setup.py generated by flit uses setuptools-specific install_requires but
+ # imports setup() from distutils.core
+ # https://github.com/takluyver/flit/blob/2.3.0/flit/sdist.py#L16
+ sed -i 's#distutils.core#setuptools#' setup.py
+}
+
+build() {
+ cd $_pkgname-$pkgver
+ python setup.py build
+}
+
+check() {
+ cd $_pkgname-$pkgver
+ python -m unittest -v aioitertools.tests
+}
+
+package() {
+ cd $_pkgname-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+ install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}
More information about the arch-commits
mailing list