idella4 14/12/16 11:41:26
Modified: ChangeLog
Added: testtools-1.2.0.ebuild
Removed: testtools-0.9.24.ebuild testtools-0.9.37.ebuild
testtools-0.9.34.ebuild
Log:
bump; comment out tests found to pass in prior version (for now), rm old
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key
0xB8072B0D)
Revision Changes Path
1.110 dev-python/testtools/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/ChangeLog?rev=1.110&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/ChangeLog?rev=1.110&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/ChangeLog?r1=1.109&r2=1.110
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/testtools/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog 4 Dec 2014 08:48:29 -0000 1.109
+++ ChangeLog 16 Dec 2014 11:41:25 -0000 1.110
@@ -1,6 +1,13 @@
# ChangeLog for dev-python/testtools
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/testtools/ChangeLog,v 1.109
2014/12/04 08:48:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/testtools/ChangeLog,v 1.110
2014/12/16 11:41:25 idella4 Exp $
+
+*testtools-1.2.0 (16 Dec 2014)
+
+ 16 Dec 2014; Ian Delaney <[email protected]> +testtools-1.2.0.ebuild,
+ -testtools-0.9.24.ebuild, -testtools-0.9.34.ebuild, -testtools-0.9.37.ebuild,
+ testtools-1.1.0.ebuild:
+ bump; comment out tests found to pass in prior version (for now), rm old
04 Dec 2014; Agostino Sarubbo <[email protected]> testtools-0.9.36.ebuild:
Stable for ppc64, wrt bug #525508
1.1 dev-python/testtools/testtools-1.2.0.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/testtools-1.2.0.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/testtools-1.2.0.ebuild?rev=1.1&content-type=text/plain
Index: testtools-1.2.0.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
/var/cvsroot/gentoo-x86/dev-python/testtools/testtools-1.2.0.ebuild,v 1.1
2014/12/16 11:41:25 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
inherit distutils-r1 versionator
#SERIES="$(get_version_component_range 1-2)"
SERIES="trunk"
DESCRIPTION="Extensions to the Python unittest library"
HOMEPAGE="https://launchpad.net/testtools http://pypi.python.org/pypi/testtools"
SRC_URI="http://launchpad.net/${PN}/${SERIES}/${PV}/+download/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="doc test"
RDEPEND="dev-python/mimeparse[${PYTHON_USEDEP}]
dev-python/extras[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? ( $(python_gen_cond_dep
'dev-python/twisted-core[${PYTHON_USEDEP}]' python2_7) )"
python_compile_all() {
use doc && emake -C doc html
}
python_prepare_all() {
# Take out failing tests
# https://bugs.launchpad.net/testtools/+bug/1380918
# sed -e 's:test_test_module:_&:' -e 's:test_test_suite:_&:' \
# -i testtools/tests/test_distutilscmd.py || die
distutils-r1_python_prepare_all
}
python_test() {
esetup.py test
}
python_install_all() {
use doc && HTML_DOCS=( doc/_build/html/. )
distutils-r1_python_install_all
}