idella4 15/01/12 04:32:31 Modified: ChangeLog Added: smmap-0.9.0.ebuild Removed: smmap-0.8.2-r1.ebuild smmap-0.8.2.ebuild smmap-0.8.1.ebuild Log: bump, rm old (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.9 dev-python/smmap/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/smmap/ChangeLog?rev=1.9&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/smmap/ChangeLog?rev=1.9&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/smmap/ChangeLog?r1=1.8&r2=1.9 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/smmap/ChangeLog,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- ChangeLog 18 Nov 2014 10:03:12 -0000 1.8 +++ ChangeLog 12 Jan 2015 04:32:31 -0000 1.9 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/smmap -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/smmap/ChangeLog,v 1.8 2014/11/18 10:03:12 jlec Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/smmap/ChangeLog,v 1.9 2015/01/12 04:32:31 idella4 Exp $ + +*smmap-0.9.0 (12 Jan 2015) + + 12 Jan 2015; Ian Delaney <idel...@gentoo.org> +smmap-0.9.0.ebuild, + -smmap-0.8.1.ebuild, -smmap-0.8.2-r1.ebuild, -smmap-0.8.2.ebuild: + bump, rm old *smmap-0.8.3 (18 Nov 2014) 1.1 dev-python/smmap/smmap-0.9.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/smmap/smmap-0.9.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/smmap/smmap-0.9.0.ebuild?rev=1.1&content-type=text/plain Index: smmap-0.9.0.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/smmap/smmap-0.9.0.ebuild,v 1.1 2015/01/12 04:32:31 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 python3_{3,4} ) inherit distutils-r1 DESCRIPTION="A pure git implementation of a sliding window memory map manager" HOMEPAGE=" http://pypi.python.org/pypi/smmap https://github.com/Byron/smmap" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" KEYWORDS="~amd64 ~x86" SLOT="0" IUSE="test" DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[${PYTHON_USEDEP}] dev-python/nosexcover[${PYTHON_USEDEP}] )" RDEPEND="" python_test() { nosetests || die "tests failed under ${EPYTHON}" }