diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-02-07 02:42:39 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-02-07 02:42:39 +0000 |
commit | 64c6057fa89a6b42ca12e3df9a922958bb41a1bc (patch) | |
tree | 4c1f6470f208cfa66edbafef6557f559c5e83de6 /dev-python/python-distutils-extra | |
parent | Delete older ebuild. (diff) | |
download | gentoo-2-64c6057fa89a6b42ca12e3df9a922958bb41a1bc.tar.gz gentoo-2-64c6057fa89a6b42ca12e3df9a922958bb41a1bc.tar.bz2 gentoo-2-64c6057fa89a6b42ca12e3df9a922958bb41a1bc.zip |
Version bump. Fix dependencies (bug #303317).
(Portage version: 15325-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/python-distutils-extra')
-rw-r--r-- | dev-python/python-distutils-extra/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/python-distutils-extra/python-distutils-extra-2.15.ebuild | 48 |
2 files changed, 56 insertions, 2 deletions
diff --git a/dev-python/python-distutils-extra/ChangeLog b/dev-python/python-distutils-extra/ChangeLog index 09499789faab..2b27a14e471d 100644 --- a/dev-python/python-distutils-extra/ChangeLog +++ b/dev-python/python-distutils-extra/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/python-distutils-extra -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.3 2009/11/03 21:59:10 arfrever Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.4 2010/02/07 02:42:39 arfrever Exp $ + +*python-distutils-extra-2.15 (07 Feb 2010) + + 07 Feb 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +python-distutils-extra-2.15.ebuild: + Version bump. Fix dependencies (bug #303317). *python-distutils-extra-2.12 (03 Nov 2009) diff --git a/dev-python/python-distutils-extra/python-distutils-extra-2.15.ebuild b/dev-python/python-distutils-extra/python-distutils-extra-2.15.ebuild new file mode 100644 index 000000000000..5f4fb7a1a46d --- /dev/null +++ b/dev-python/python-distutils-extra/python-distutils-extra-2.15.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.15.ebuild,v 1.1 2010/02/07 02:42:39 arfrever Exp $ + +EAPI="2" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +DESCRIPTION="You can integrate gettext support, themed icons and scrollkeeper based documentation in distutils." +HOMEPAGE="https://launchpad.net/python-distutils-extra" +SRC_URI="http://launchpad.net/python-distutils-extra/trunk/${PV}/+download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND="dev-python/setuptools" +RDEPEND="${DEPEND}" +# Tests are broken. +RESTRICT="test" +RESTRICT_PYTHON_ABIS="3.*" + +PYTHON_MODNAME="DistUtilsExtra" +DOCS="doc/FAQ doc/README doc/setup.cfg.example doc/setup.py.example" + +src_prepare() { + # Disable broken tests. + sed \ + -e "s/test_desktop/_&/" \ + -e "s/test_policykit/_&/" \ + -e "s/test_requires_provides/_&/" \ + -i test/auto.py || die "sed failed" +} + +src_test() { + # 4 tests fail with disabled byte-compilation. + python_enable_pyc + + testing() { + "$(PYTHON)" test/auto.py + } + python_execute_function testing + + python_disable_pyc +} |