diff options
author | 2012-03-02 09:46:42 +0000 | |
---|---|---|
committer | 2012-03-02 09:46:42 +0000 | |
commit | 556d22ba5abdc9c1e3423abfdd1568b0689696cf (patch) | |
tree | cf79b2bccc3231471b697997d4c3c5464822a726 | |
parent | Version bump beautifulsoup to 3.2.1. (diff) | |
download | historical-556d22ba5abdc9c1e3423abfdd1568b0689696cf.tar.gz historical-556d22ba5abdc9c1e3423abfdd1568b0689696cf.tar.bz2 historical-556d22ba5abdc9c1e3423abfdd1568b0689696cf.zip |
Version bump BitVector to 3.1.
Package-Manager: portage-2.1.10.49/cvs/Linux x86_64
-rw-r--r-- | dev-python/BitVector/BitVector-3.1.ebuild | 39 | ||||
-rw-r--r-- | dev-python/BitVector/ChangeLog | 9 |
2 files changed, 46 insertions, 2 deletions
diff --git a/dev-python/BitVector/BitVector-3.1.ebuild b/dev-python/BitVector/BitVector-3.1.ebuild new file mode 100644 index 000000000000..49f04450779d --- /dev/null +++ b/dev-python/BitVector/BitVector-3.1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/BitVector/BitVector-3.1.ebuild,v 1.1 2012/03/02 09:46:42 djc Exp $ + +EAPI="3" +SUPPORT_PYTHON_ABIS=1 +RESTRICT_PYTHON_ABIS="2.4 2.5" + +inherit distutils + +DESCRIPTION="A pure-Python memory-efficient packed representation for bit arrays" +HOMEPAGE="http://cobweb.ecn.purdue.edu/~kak/dist/ http://pypi.python.org/pypi/BitVector" +SRC_URI="http://cobweb.ecn.purdue.edu/~kak/dist/${P}.tar.gz" + +LICENSE="PSF-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +PYTHON_MODULES="BitVector.py" + +src_prepare() { + distutils_src_prepare + + # Don't install test.py. + rm -f test.py +} + +src_test() { + cd Test${PN} + + testing() { + PYTHONPATH="../build-${PYTHON_ABI}/lib" "$(PYTHON)" Test.py + } + python_execute_function testing +} diff --git a/dev-python/BitVector/ChangeLog b/dev-python/BitVector/ChangeLog index 11ec8c66c2ce..d9b15b12eeee 100644 --- a/dev-python/BitVector/ChangeLog +++ b/dev-python/BitVector/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/BitVector -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/BitVector/ChangeLog,v 1.5 2011/09/05 20:39:05 djc Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/BitVector/ChangeLog,v 1.6 2012/03/02 09:46:42 djc Exp $ + +*BitVector-3.1 (02 Mar 2012) + + 02 Mar 2012; Dirkjan Ochtman <djc@gentoo.org> +BitVector-3.1.ebuild: + Version bump to 3.1. 05 Sep 2011; Dirkjan Ochtman <djc@gentoo.org> BitVector-3.0-r1.ebuild: Update with PyPI homepage. |