cedk 15/02/13 21:41:42 Modified: ChangeLog Added: cached-property-1.0.0.ebuild Log: Version bump (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 35CCB577)
Revision Changes Path 1.2 dev-python/cached-property/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cached-property/ChangeLog?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cached-property/ChangeLog?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cached-property/ChangeLog?r1=1.1&r2=1.2 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/cached-property/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 5 Feb 2015 17:40:43 -0000 1.1 +++ ChangeLog 13 Feb 2015 21:41:42 -0000 1.2 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/cached-property # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cached-property/ChangeLog,v 1.1 2015/02/05 17:40:43 cedk Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/cached-property/ChangeLog,v 1.2 2015/02/13 21:41:42 cedk Exp $ + +*cached-property-1.0.0 (13 Feb 2015) + + 13 Feb 2015; Cédric Krier <c...@gentoo.org> +cached-property-1.0.0.ebuild: + Version bump *cached-property-0.1.5 (05 Feb 2015) 1.1 dev-python/cached-property/cached-property-1.0.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cached-property/cached-property-1.0.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cached-property/cached-property-1.0.0.ebuild?rev=1.1&content-type=text/plain Index: cached-property-1.0.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/cached-property/cached-property-1.0.0.ebuild,v 1.1 2015/02/13 21:41:42 cedk Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_3,3_4} ) inherit distutils-r1 DESCRIPTION="A cached-property for decorating methods in classes" HOMEPAGE="https://github.com/pydanny/cached-property" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" IUSE="test" DEPEND="test? ( dev-python/pytest )" RDEPEND="" src_install() { distutils-r1_src_install dodoc README.rst HISTORY.rst CONTRIBUTING.rst AUTHORS.rst } python_test() { py.test || die }