alunduil 14/10/15 02:12:02 Modified: ChangeLog Added: sure-1.2.5-r1.ebuild Log: bump to add several fixes bump to fix the following: * vcs-snapshot tarball (for tests) * add passing test runner * add fix for unicode issues while installing python2.7 without locale * add proper dependencies for test suite * drop old python targets (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
Revision Changes Path 1.4 dev-python/sure/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sure/ChangeLog?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sure/ChangeLog?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sure/ChangeLog?r1=1.3&r2=1.4 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/sure/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ChangeLog 31 Mar 2014 21:04:24 -0000 1.3 +++ ChangeLog 15 Oct 2014 02:12:02 -0000 1.4 @@ -1,6 +1,16 @@ # ChangeLog for dev-python/sure # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sure/ChangeLog,v 1.3 2014/03/31 21:04:24 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sure/ChangeLog,v 1.4 2014/10/15 02:12:02 alunduil Exp $ + +*sure-1.2.5-r1 (15 Oct 2014) + + 15 Oct 2014; Alex Brandt <[email protected]> +sure-1.2.5-r1.ebuild: + bump sure with: + * vcs-snapshot tarball (for tests) + * add passing test runner + * add fix for unicode issues while installing python2.7 without locale + * add proper dependencies for test suite + * drop old python targets 31 Mar 2014; Michał Górny <[email protected]> sure-1.2.3.ebuild, sure-1.2.5.ebuild: 1.1 dev-python/sure/sure-1.2.5-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sure/sure-1.2.5-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sure/sure-1.2.5-r1.ebuild?rev=1.1&content-type=text/plain Index: sure-1.2.5-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/sure/sure-1.2.5-r1.ebuild,v 1.1 2014/10/15 02:12:02 alunduil Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 python3_3 pypy ) inherit distutils-r1 vcs-snapshot DESCRIPTION="utility belt for automated testing in python for python" HOMEPAGE="http://github.com/gabrielfalcao/sure" SRC_URI="https://github.com/gabrielfalcao/${PN}/archive/${PV}.tar.gz -> ${P}-r1.tar.gz" S="${WORKDIR}/${P}-r1" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" CDEPEND=" ~dev-python/nose-1.3.0[${PYTHON_USEDEP}] ~dev-python/rednose-0.4.1[${PYTHON_USEDEP}] " DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] test? ( ${CDEPEND} ) " RDEPEND="${CDEPEND}" python_prepare_all() { ebegin 'patching setup.py' sed \ -e "82s/read_version()/'${PV}'/" \ -i setup.py STATUS=$? eend ${STATUS} [[ ${STATUS} -gt 0 ]] && die distutils-r1_python_prepare_all } python_test() { nosetests -s tests --rednose || die "Tests failed under ${EPYTHON}" }
