diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-04-22 19:46:42 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-04-22 19:46:42 +0000 |
commit | 9a8363730603978408f51fcc96223fff1e2c97c4 (patch) | |
tree | 187e9ea81905a7dd831da345bb6a928bde3a9b79 /dev-python/decorator | |
parent | Restrict Jython ABIs. (diff) | |
download | historical-9a8363730603978408f51fcc96223fff1e2c97c4.tar.gz historical-9a8363730603978408f51fcc96223fff1e2c97c4.tar.bz2 historical-9a8363730603978408f51fcc96223fff1e2c97c4.zip |
Version bump.
Package-Manager: portage-2.2.0_alpha30_p1/cvs/Linux x86_64
Diffstat (limited to 'dev-python/decorator')
-rw-r--r-- | dev-python/decorator/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/decorator/decorator-3.3.1.ebuild | 35 |
2 files changed, 42 insertions, 1 deletions
diff --git a/dev-python/decorator/ChangeLog b/dev-python/decorator/ChangeLog index 464c3c555858..b403fdf0fa39 100644 --- a/dev-python/decorator/ChangeLog +++ b/dev-python/decorator/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/decorator # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.37 2011/04/11 16:05:33 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.38 2011/04/22 19:46:42 arfrever Exp $ + +*decorator-3.3.1 (22 Apr 2011) + + 22 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +decorator-3.3.1.ebuild: + Version bump. 11 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> decorator-3.3.0.ebuild, +files/decorator-3.3.0-python-3.2.patch: diff --git a/dev-python/decorator/decorator-3.3.1.ebuild b/dev-python/decorator/decorator-3.3.1.ebuild new file mode 100644 index 000000000000..408c050ecd74 --- /dev/null +++ b/dev-python/decorator/decorator-3.3.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/decorator-3.3.1.ebuild,v 1.1 2011/04/22 19:46:42 arfrever Exp $ + +EAPI="3" +SUPPORT_PYTHON_ABIS="1" +PYTHON_TESTS_RESTRICTED_ABIS="2.4 2.5" + +inherit distutils + +DESCRIPTION="Simplifies the usage of decorators for the average programmer" +HOMEPAGE="http://pypi.python.org/pypi/decorator http://code.google.com/p/micheles/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" +IUSE="" + +DEPEND="dev-python/setuptools" +RDEPEND="" + +DOCS="README.txt" +PYTHON_MODNAME="decorator.py" + +src_test() { + testing() { + if [[ "${PYTHON_ABI}" == 3.* ]]; then + PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" documentation3.py + else + PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" documentation.py + fi + } + python_execute_function testing +} |