summaryrefslogtreecommitdiff
path: root/dev-python/python-stdnum/python-stdnum-1.10.ebuild
diff options
context:
space:
mode:
authorCédric Krier <cedk@gentoo.org>2018-10-27 09:42:38 +0200
committerCédric Krier <cedk@gentoo.org>2018-10-27 09:43:01 +0200
commitd0cb204949a13436c5adce86e29d7d658849010c (patch)
treecb98a5dc91f6cc786ef70dc5f6a6a6599ce129ae /dev-python/python-stdnum/python-stdnum-1.10.ebuild
parent1cfad8aadd257d4a15ac4b7a75a29e64bd140c23 (diff)
downloadgentoo-d0cb204949a13436c5adce86e29d7d658849010c.tar.gz
gentoo-d0cb204949a13436c5adce86e29d7d658849010c.tar.bz2
gentoo-d0cb204949a13436c5adce86e29d7d658849010c.zip
dev-python/python-stdnum: Version bump and migrate to EAPI 7
Signed-off-by: Cédric Krier <cedk@gentoo.org> Package-Manager: Portage-2.3.49, Repoman-2.3.11
Diffstat (limited to 'dev-python/python-stdnum/python-stdnum-1.10.ebuild')
-rw-r--r--dev-python/python-stdnum/python-stdnum-1.10.ebuild27
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-python/python-stdnum/python-stdnum-1.10.ebuild b/dev-python/python-stdnum/python-stdnum-1.10.ebuild
new file mode 100644
index 000000000000..404a644410d2
--- /dev/null
+++ b/dev-python/python-stdnum/python-stdnum-1.10.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1
+
+DESCRIPTION="A module to handle standardized numbers and codes"
+HOMEPAGE="https://arthurdejong.org/python-stdnum/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="vies test"
+
+RDEPEND="vies? ( || ( dev-python/zeep dev-python/suds ) )"
+DEPEND="${DEPEND}
+ dev-python/setuptools
+ test? ( dev-python/nose )"
+
+DOCS=( ChangeLog NEWS README )
+
+python_test() {
+ nosetests -v || die
+}