monsieurp 15/07/20 08:43:24 Modified: pyxml-0.8.4-r3.ebuild ChangeLog Log: Remove dubious tests. Fix bug 555422. Signed-off-by: Patrice Clement <[email protected]> (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 93491BB8)
Revision Changes Path 1.14 dev-python/pyxml/pyxml-0.8.4-r3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyxml/pyxml-0.8.4-r3.ebuild?rev=1.14&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyxml/pyxml-0.8.4-r3.ebuild?rev=1.14&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyxml/pyxml-0.8.4-r3.ebuild?r1=1.13&r2=1.14 Index: pyxml-0.8.4-r3.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pyxml/pyxml-0.8.4-r3.ebuild,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- pyxml-0.8.4-r3.ebuild 7 Jun 2015 09:48:52 -0000 1.13 +++ pyxml-0.8.4-r3.ebuild 20 Jul 2015 08:43:24 -0000 1.14 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxml/pyxml-0.8.4-r3.ebuild,v 1.13 2015/06/07 09:48:52 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxml/pyxml-0.8.4-r3.ebuild,v 1.14 2015/07/20 08:43:24 monsieurp Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) @@ -31,9 +31,6 @@ "${FILESDIR}/${P}-python-2.6.patch" ) - # Delete internal copy of old version of unittest module. - rm -f test/unittest.py - distutils-r1_python_prepare_all } @@ -43,6 +40,23 @@ } python_test() { + # Delete internal copy of old version of unittest module. + local BROKENTESTS=( + test_filter + test_howto + test_minidom + test_xmlbuilder + unittest + test_expatreader + ) + + for test_file in ${BROKENTESTS[@]}; do + test_file="test/${test_file}.py" + einfo "Removing dubious test \"${test_file}\"" + rm ${test_file} + eend $? + done + cd test || die "${PYTHON}" regrtest.py || die "Tests fail with ${EPYTHON}" } 1.81 dev-python/pyxml/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyxml/ChangeLog?rev=1.81&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyxml/ChangeLog?rev=1.81&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyxml/ChangeLog?r1=1.80&r2=1.81 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pyxml/ChangeLog,v retrieving revision 1.80 retrieving revision 1.81 diff -u -r1.80 -r1.81 --- ChangeLog 13 Jun 2015 09:04:17 -0000 1.80 +++ ChangeLog 20 Jul 2015 08:43:24 -0000 1.81 @@ -1,6 +1,9 @@ # ChangeLog for dev-python/pyxml # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxml/ChangeLog,v 1.80 2015/06/13 09:04:17 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxml/ChangeLog,v 1.81 2015/07/20 08:43:24 monsieurp Exp $ + + 20 Jul 2015; Patrice Clement <[email protected]> pyxml-0.8.4-r3.ebuild: + Remove dubious tests. Fix bug 555422. 13 Jun 2015; Manuel RĂ¼ger <[email protected]> -pyxml-0.8.4-r2.ebuild: Remove old.
