[arch-commits] Commit in (4 files)
Daniel M. Capella
polyzen at archlinux.org
Thu Dec 12 06:32:36 UTC 2019
Date: Thursday, December 12, 2019 @ 06:32:36
Author: polyzen
Revision: 537331
Initial commit
Added:
python-pycares/
python-pycares/repos/
python-pycares/trunk/
python-pycares/trunk/PKGBUILD
----------+
PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
Added: python-pycares/trunk/PKGBUILD
===================================================================
--- python-pycares/trunk/PKGBUILD (rev 0)
+++ python-pycares/trunk/PKGBUILD 2019-12-12 06:32:36 UTC (rev 537331)
@@ -0,0 +1,36 @@
+# Maintainer: Daniel M. Capella <polyzen at archlinux.org>
+
+pkgname=python-pycares
+pkgver=3.0.0
+pkgrel=2
+pkgdesc='Python interface for c-ares'
+arch=('x86_64')
+url=https://github.com/saghul/pycares
+license=('MIT')
+depends=('python-cffi') # c-ares is bundled
+makedepends=('python-setuptools')
+optdepends=('python-idna')
+source=("https://files.pythonhosted.org/packages/source/p/pycares/pycares-$pkgver.tar.gz")
+sha256sums=('b253f5dcaa0ac7076b79388a3ac80dd8f3bd979108f813baade40d3a9b8bf0bd')
+
+build() {
+ cd pycares-$pkgver
+ python setup.py build
+}
+
+# 11 tests fail
+#check() {
+# cd pycares-$pkgver
+# mkdir -p temp
+# local sitepackages=$(python -c "import site; print(site.getsitepackages()[0])")
+# python setup.py install --skip-build --root=temp
+# PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$sitepackages" python tests/tests.py
+#}
+
+package() {
+ cd pycares-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+ install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+}
+
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list