diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-10-21 07:35:25 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-10-21 07:35:25 +0000 |
commit | 6c5822fdbed45863b8447bea8f13627de8d5f2b6 (patch) | |
tree | 2c055bfdfc355625cab678c8a230511566502e30 /dev-python/vatnumber | |
parent | Version bump. Cleanup old. (diff) | |
download | gentoo-2-6c5822fdbed45863b8447bea8f13627de8d5f2b6.tar.gz gentoo-2-6c5822fdbed45863b8447bea8f13627de8d5f2b6.tar.bz2 gentoo-2-6c5822fdbed45863b8447bea8f13627de8d5f2b6.zip |
Bump
(Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python/vatnumber')
-rw-r--r-- | dev-python/vatnumber/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/vatnumber/vatnumber-1.1.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/dev-python/vatnumber/ChangeLog b/dev-python/vatnumber/ChangeLog index 55f9f46d156f..f03c472d0b09 100644 --- a/dev-python/vatnumber/ChangeLog +++ b/dev-python/vatnumber/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/vatnumber # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/vatnumber/ChangeLog,v 1.5 2013/09/05 18:47:16 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/vatnumber/ChangeLog,v 1.6 2013/10/21 07:35:25 patrick Exp $ + +*vatnumber-1.1 (21 Oct 2013) + + 21 Oct 2013; Patrick Lauer <patrick@gentoo.org> +vatnumber-1.1.ebuild: + Bump 05 Sep 2013; Michał Górny <mgorny@gentoo.org> vatnumber-1.0-r1.ebuild: Clean up PYTHON_COMPAT from old implementations. diff --git a/dev-python/vatnumber/vatnumber-1.1.ebuild b/dev-python/vatnumber/vatnumber-1.1.ebuild new file mode 100644 index 000000000000..8c07c6df4579 --- /dev/null +++ b/dev-python/vatnumber/vatnumber-1.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/vatnumber/vatnumber-1.1.ebuild,v 1.1 2013/10/21 07:35:25 patrick Exp $ + +EAPI="5" +PYTHON_COMPAT=( python{2_6,2_7} pypy2_0 ) + +inherit distutils-r1 + +DESCRIPTION="Module to validate VAT numbers" +HOMEPAGE="http://code.google.com/p/vatnumber/" +SRC_URI="http://vatnumber.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test vies" + +RDEPEND="vies? ( dev-python/suds )" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/suds )" + +PARCHES=( "${FILESDIR}"/${P}-skiptest.patch ) + +python_test() { + esetup.py test +} + +src_install() { + distutils-r1_src_install + dodoc COPYRIGHT README CHANGELOG +} |