[arch-commits] Commit in python-wurlitzer/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Mon Nov 9 15:48:15 UTC 2020
Date: Monday, November 9, 2020 @ 15:48:15
Author: felixonmars
Revision: 747154
archrelease: copy trunk to community-staging-any
Added:
python-wurlitzer/repos/community-staging-any/
python-wurlitzer/repos/community-staging-any/PKGBUILD
(from rev 747152, python-wurlitzer/trunk/PKGBUILD)
----------+
PKGBUILD | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
Copied: python-wurlitzer/repos/community-staging-any/PKGBUILD (from rev 747152, python-wurlitzer/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2020-11-09 15:48:15 UTC (rev 747154)
@@ -0,0 +1,31 @@
+# Maintainer: Bruno Pagani <archange at archlinux.org>
+
+_pkg=wurlitzer
+pkgname=python-${_pkg}
+pkgver=2.0.0
+pkgrel=2
+pkgdesc="Capture C-level stdout/stderr in Python"
+arch=(any)
+url="https://github.com/minrk/wurlitzer"
+license=(MIT)
+depends=(python)
+makedepends=(python-setuptools)
+checkdepends=(python-pytest python-mock)
+source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+sha256sums=('86a510c0d34fcc9786ad1a9f557ac980f30ef2f821a75c2e4333311e0fd9cd76')
+
+build() {
+ cd ${_pkg}-${pkgver}
+ python setup.py build
+}
+
+check() {
+ cd ${_pkg}-${pkgver}
+ py.test test.py
+}
+
+package() {
+ cd ${_pkg}-${pkgver}
+ python setup.py install --root "${pkgdir}" --prefix=/usr --optimize=1 --skip-build
+ install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}
More information about the arch-commits
mailing list