diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-12-27 16:43:56 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-12-27 16:43:56 +0000 |
commit | 7d207e52d1c7e2d993c290ec1b4ecd17a8aa90a9 (patch) | |
tree | 8b8a024851daad79452b199ddad59be00f544dc1 /dev-python/py | |
parent | Based on vanilla 2.6.36.2 + genpatches-2.6.36-7 + grsecurity-2.2.1-2.6.36.2-2... (diff) | |
download | gentoo-2-7d207e52d1c7e2d993c290ec1b4ecd17a8aa90a9.tar.gz gentoo-2-7d207e52d1c7e2d993c290ec1b4ecd17a8aa90a9.tar.bz2 gentoo-2-7d207e52d1c7e2d993c290ec1b4ecd17a8aa90a9.zip |
Fix installation (bug #349830).
(Portage version: 2.2.0_alpha10_p9/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/py')
-rw-r--r-- | dev-python/py/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/py/py-1.3.4.ebuild | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/dev-python/py/ChangeLog b/dev-python/py/ChangeLog index d4ba099a474f..ff20fcd07432 100644 --- a/dev-python/py/ChangeLog +++ b/dev-python/py/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/py # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/py/ChangeLog,v 1.67 2010/12/13 13:27:21 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/py/ChangeLog,v 1.68 2010/12/27 16:43:56 arfrever Exp $ + + 27 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + py-1.3.4.ebuild: + Fix installation (bug #349830). *py-1.4.0 (13 Dec 2010) diff --git a/dev-python/py/py-1.3.4.ebuild b/dev-python/py/py-1.3.4.ebuild index 0df6d9461618..334799eef571 100644 --- a/dev-python/py/py-1.3.4.ebuild +++ b/dev-python/py/py-1.3.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/py/py-1.3.4.ebuild,v 1.7 2010/10/23 18:17:23 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/py/py-1.3.4.ebuild,v 1.8 2010/12/27 16:43:56 arfrever Exp $ EAPI="3" SUPPORT_PYTHON_ABIS="1" @@ -22,6 +22,9 @@ RDEPEND="${DEPEND}" src_prepare() { distutils_src_prepare + # Disable versioning of py.test and py.which scripts to avoid collisions with versioning performed by distutils_src_install(). + sed -e "77a\ points = {}" -i setup.py + # Disable failing tests. rm -f testing/path/test_svnwc.py } |