diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 21:03:06 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 21:03:06 +0100 |
commit | 8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 (patch) | |
tree | 7681bbd4e8b05407772df40a4bf04cbbc8afc3fa /dev-python/python-stdnum | |
parent | 30a9caf154332f12ca60756e1b75d2f0e3e1822d (diff) |
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-python/python-stdnum')
-rw-r--r-- | dev-python/python-stdnum/Manifest | 3 | ||||
-rw-r--r-- | dev-python/python-stdnum/metadata.xml | 17 | ||||
-rw-r--r-- | dev-python/python-stdnum/python-stdnum-1.9.ebuild | 27 |
3 files changed, 47 insertions, 0 deletions
diff --git a/dev-python/python-stdnum/Manifest b/dev-python/python-stdnum/Manifest new file mode 100644 index 000000000000..76205f3626b9 --- /dev/null +++ b/dev-python/python-stdnum/Manifest @@ -0,0 +1,3 @@ +DIST python-stdnum-1.9.tar.gz 466861 BLAKE2B 31656cb64ab422dd172ee1a9121cf41d18bfd85a98a38a956e499e04e20369115449ed0b4b946e1aa2ce8d41eb24ca20b296aa178151276f3ea1e37153875969 SHA512 ed236e7fa5f64bb812578f019c2286a139f75356073ec7d0b0fc9220092b5e0e5d3b4fd133661e4126ac3f78141457af1793fdbc45a22daa4d36ceaf1535901f +EBUILD python-stdnum-1.9.ebuild 617 BLAKE2B 5d158623cb394fba9e4761f7e464f46826636d064842afbe085c48da71f03fe204bdc891680786f02303e0aead4d6c7fb1bc558535d2fb7f0637986f6383a188 SHA512 88bb49476ff4e96f9ba1498a60da8dc0eb35730ccfb1136935246998a07280f8fbde8c1278ed0a58b8d60f8d55f83077f6b01d5b648b3bf7db30cced4a411dba +MISC metadata.xml 475 BLAKE2B 4a2fe0a8f727cfaeb086d33e384b52ada0555f7c57028470c1ab2524bf4e12cb4b501736a9e9b0d14cfc66880e2878d93cea188f035fa52b8c959dd99d034797 SHA512 4aae016f69e817168682ce7a08e9cd61da5397d83706b628b4a743491251c80ee0947f5a00f3f3657c2f80f276661f0287a5359041451b997c214ba94cd2430e diff --git a/dev-python/python-stdnum/metadata.xml b/dev-python/python-stdnum/metadata.xml new file mode 100644 index 000000000000..60baaf8d7a53 --- /dev/null +++ b/dev-python/python-stdnum/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>cedk@gentoo.org</email> + <name>Cédric Krier</name> + </maintainer> + <longdescription lang="en"> + A module to handle standardized numbers and codes + </longdescription> + <use> + <flag name="vies">Enable VIES</flag> + </use> + <upstream> + <remote-id type="pypi">python-stdnum</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/python-stdnum/python-stdnum-1.9.ebuild b/dev-python/python-stdnum/python-stdnum-1.9.ebuild new file mode 100644 index 000000000000..6cc5bf1ad672 --- /dev/null +++ b/dev-python/python-stdnum/python-stdnum-1.9.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +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 +} |