[arch-commits] Commit in python-ddt/repos (2 files)
Evangelos Foutras
foutrelis at archlinux.org
Sat Oct 26 20:28:53 UTC 2019
Date: Saturday, October 26, 2019 @ 20:28:52
Author: foutrelis
Revision: 520556
archrelease: copy trunk to community-staging-any
Added:
python-ddt/repos/community-staging-any/
python-ddt/repos/community-staging-any/PKGBUILD
(from rev 520555, python-ddt/trunk/PKGBUILD)
----------+
PKGBUILD | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
Copied: python-ddt/repos/community-staging-any/PKGBUILD (from rev 520555, python-ddt/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2019-10-26 20:28:52 UTC (rev 520556)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-ddt
+pkgname=('python-ddt' 'python2-ddt')
+pkgver=1.2.1
+pkgrel=2
+pkgdesc="Data-Driven/Decorated Tests"
+arch=('any')
+license=('MIT')
+url="https://github.com/txels/ddt"
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 'python-yaml' 'python2-yaml')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/txels/ddt/archive/$pkgver.tar.gz")
+sha512sums=('c40114109fb99577a9572157e0cec7011efb3415b80874d0038949febf6c2d31ff7977c953e7c23770bc965541f79c7015826c1c7f39c2606db39ad5f38d60ad')
+
+prepare() {
+ cp -a ddt-$pkgver{,-py2}
+}
+
+build() {
+ cd "$srcdir"/ddt-$pkgver
+ python setup.py build
+
+ cd "$srcdir"/ddt-$pkgver-py2
+ python2 setup.py build
+}
+
+check() {
+ cd "$srcdir"/ddt-$pkgver
+ nosetests3
+
+ cd "$srcdir"/ddt-$pkgver-py2
+ nosetests2
+}
+
+package_python-ddt() {
+ depends=('python')
+
+ cd ddt-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1
+ install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+package_python2-ddt() {
+ depends=('python2')
+
+ cd ddt-$pkgver-py2
+ python2 setup.py install --root="$pkgdir" --optimize=1
+ install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.md
+}
More information about the arch-commits
mailing list