* [gentoo-commits] gentoo-x86 commit in dev-lang/python: python-2.6.2-r1.ebuild python-2.5.4-r3.ebuild ChangeLog
@ 2009-07-31 14:03 99% Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 1+ results
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2009-07-31 14:03 UTC (permalink / raw
To: gentoo-commits
arfrever 09/07/31 14:03:29
Modified: python-2.6.2-r1.ebuild python-2.5.4-r3.ebuild
ChangeLog
Log:
Skip test_ctypes on systems with PAX (bug #234498).
(Portage version: 13869-svn/cvs/Linux x86_64)
Revision Changes Path
1.3 dev-lang/python/python-2.6.2-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.6.2-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.6.2-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.6.2-r1.ebuild?r1=1.2&r2=1.3
Index: python-2.6.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.6.2-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- python-2.6.2-r1.ebuild 30 Jul 2009 23:26:37 -0000 1.2
+++ python-2.6.2-r1.ebuild 31 Jul 2009 14:03:29 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.6.2-r1.ebuild,v 1.2 2009/07/30 23:26:37 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.6.2-r1.ebuild,v 1.3 2009/07/31 14:03:29 arfrever Exp $
# NOTE about python-portage interactions :
# - Do not add a pkg_setup() check for a certain version of portage
@@ -9,7 +9,7 @@
EAPI="2"
-inherit autotools eutils flag-o-matic libtool multilib python toolchain-funcs versionator
+inherit autotools eutils flag-o-matic libtool multilib pax-utils python toolchain-funcs versionator
# We need this so that we don't depends on python.eclass
PYVER_MAJOR=$(get_major_version)
@@ -181,7 +181,10 @@
# test_pow fails on alpha.
# http://bugs.python.org/issue756093
- [[ ${ARCH} == "alpha" ]] && skip_tests="${skip_tests} pow"
+ [[ ${ARCH} == "alpha" ]] && skip_tests+=" pow"
+
+ # test_ctypes fails with PAX kernel (bug #234498).
+ host-is-pax && skip_tests+=" ctypes"
for test in ${skip_tests}; do
mv "${S}"/Lib/test/test_${test}.py "${T}"
1.10 dev-lang/python/python-2.5.4-r3.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.5.4-r3.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.5.4-r3.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.5.4-r3.ebuild?r1=1.9&r2=1.10
Index: python-2.5.4-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.5.4-r3.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- python-2.5.4-r3.ebuild 19 Jul 2009 09:30:49 -0000 1.9
+++ python-2.5.4-r3.ebuild 31 Jul 2009 14:03:29 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.5.4-r3.ebuild,v 1.9 2009/07/19 09:30:49 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.5.4-r3.ebuild,v 1.10 2009/07/31 14:03:29 arfrever Exp $
# NOTE about python-portage interactions :
# - Do not add a pkg_setup() check for a certain version of portage
@@ -9,7 +9,7 @@
EAPI="1"
-inherit autotools eutils flag-o-matic libtool multilib python toolchain-funcs versionator
+inherit autotools eutils flag-o-matic libtool multilib pax-utils python toolchain-funcs versionator
# We need this so that we don't depends on python.eclass
PYVER_MAJOR=$(get_major_version)
@@ -189,7 +189,10 @@
# test_pow fails on alpha.
# http://bugs.python.org/issue756093
- [[ ${ARCH} == "alpha" ]] && skip_tests="${skip_tests} pow"
+ [[ ${ARCH} == "alpha" ]] && skip_tests+=" pow"
+
+ # test_ctypes fails with PAX kernel (bug #234498).
+ host-is-pax && skip_tests+=" ctypes"
for test in ${skip_tests}; do
mv "${S}"/Lib/test/test_${test}.py "${T}"
1.396 dev-lang/python/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/ChangeLog?rev=1.396&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/ChangeLog?rev=1.396&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/ChangeLog?r1=1.395&r2=1.396
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v
retrieving revision 1.395
retrieving revision 1.396
diff -u -r1.395 -r1.396
--- ChangeLog 30 Jul 2009 23:26:37 -0000 1.395
+++ ChangeLog 31 Jul 2009 14:03:29 -0000 1.396
@@ -1,6 +1,10 @@
# ChangeLog for dev-lang/python
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.395 2009/07/30 23:26:37 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.396 2009/07/31 14:03:29 arfrever Exp $
+
+ 31 Jul 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ python-2.5.4-r3.ebuild, python-2.6.2-r1.ebuild:
+ Skip test_ctypes on systems with PAX (bug #234498).
30 Jul 2009; Jeremy Olexa <darkside@gentoo.org> python-2.6.2-r1.ebuild:
amd64 stable, bug 277645
^ permalink raw reply [relevance 99%]
Results 1-1 of 1 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2009-07-31 14:03 99% [gentoo-commits] gentoo-x86 commit in dev-lang/python: python-2.6.2-r1.ebuild python-2.5.4-r3.ebuild ChangeLog Arfrever Frehtes Taifersar Arahesis (arfrever)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox