djc 15/01/10 17:54:59 Modified: ChangeLog Added: lockfile-0.10.2.ebuild Log: Version bump lockfile to 0.10.2 (drop sparc and pypy for pbr dep) (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 30380381)
Revision Changes Path 1.26 dev-python/lockfile/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lockfile/ChangeLog?rev=1.26&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lockfile/ChangeLog?rev=1.26&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lockfile/ChangeLog?r1=1.25&r2=1.26 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/lockfile/ChangeLog,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- ChangeLog 10 Jan 2015 17:42:27 -0000 1.25 +++ ChangeLog 10 Jan 2015 17:54:59 -0000 1.26 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/lockfile # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/ChangeLog,v 1.25 2015/01/10 17:42:27 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/ChangeLog,v 1.26 2015/01/10 17:54:59 djc Exp $ + +*lockfile-0.10.2 (10 Jan 2015) + + 10 Jan 2015; Dirkjan Ochtman <[email protected]> +lockfile-0.10.2.ebuild: + Version bump lockfile to 0.10.2 (drop sparc and pypy for pbr dep) 10 Jan 2015; Dirkjan Ochtman <[email protected]> -lockfile-0.8-r1.ebuild, -lockfile-0.8.ebuild, -lockfile-0.9.1.ebuild: 1.1 dev-python/lockfile/lockfile-0.10.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lockfile/lockfile-0.10.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lockfile/lockfile-0.10.2.ebuild?rev=1.1&content-type=text/plain Index: lockfile-0.10.2.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/lockfile-0.10.2.ebuild,v 1.1 2015/01/10 17:54:59 djc Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} ) inherit distutils-r1 DESCRIPTION="Platform-independent file locking module" HOMEPAGE="http://launchpad.net/pylockfile http://pypi.python.org/pypi/lockfile" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~x86" IUSE="doc test" DEPEND="dev-python/pbr[${PYTHON_USEDEP}] doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) test? ( dev-python/nose[${PYTHON_USEDEP}] )" RDEPEND="" DOCS=( ACKS README RELEASE-NOTES ) python_compile_all() { if use doc; then einfo "Generation of documentation" emake -C doc html || die "Generation of documentation failed" fi } python_test() { # "${PYTHON}" test/test_lockfile.py yeilds no informative coverage output nosetests || die "test_lockfile failed under ${EPYTHON}" } python_install_all() { use doc && local HTML_DOCS=( doc/.build/html/. ) distutils-r1_python_install_all }
