diff options
author | Cédric Krier <cedk@gentoo.org> | 2015-05-06 09:33:15 +0000 |
---|---|---|
committer | Cédric Krier <cedk@gentoo.org> | 2015-05-06 09:33:15 +0000 |
commit | 575abe43dd5fecc4d8ff22d87b9589c5170263bc (patch) | |
tree | 7b34730c91f3f034fa4540ec596a60204e878ecf /dev-python/cached-property | |
parent | Remove obsolete mask for virtual/python-cffi (diff) | |
download | gentoo-2-575abe43dd5fecc4d8ff22d87b9589c5170263bc.tar.gz gentoo-2-575abe43dd5fecc4d8ff22d87b9589c5170263bc.tar.bz2 gentoo-2-575abe43dd5fecc4d8ff22d87b9589c5170263bc.zip |
Version bump
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDA62C1FB4C5A2855)
Diffstat (limited to 'dev-python/cached-property')
-rw-r--r-- | dev-python/cached-property/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/cached-property/cached-property-1.2.0.ebuild | 29 |
2 files changed, 35 insertions, 1 deletions
diff --git a/dev-python/cached-property/ChangeLog b/dev-python/cached-property/ChangeLog index 665131bb0eb1..6aac2331b30f 100644 --- a/dev-python/cached-property/ChangeLog +++ b/dev-python/cached-property/ChangeLog @@ -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.3 2015/04/08 08:04:55 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/cached-property/ChangeLog,v 1.4 2015/05/06 09:33:15 cedk Exp $ + +*cached-property-1.2.0 (06 May 2015) + + 06 May 2015; Cédric Krier <cedk@gentoo.org> +cached-property-1.2.0.ebuild: + Version bump 08 Apr 2015; Michał Górny <mgorny@gentoo.org> cached-property-0.1.5.ebuild, cached-property-1.0.0.ebuild: diff --git a/dev-python/cached-property/cached-property-1.2.0.ebuild b/dev-python/cached-property/cached-property-1.2.0.ebuild new file mode 100644 index 000000000000..e3151710eb56 --- /dev/null +++ b/dev-python/cached-property/cached-property-1.2.0.ebuild @@ -0,0 +1,29 @@ +# 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.2.0.ebuild,v 1.1 2015/05/06 09:33:15 cedk Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{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 +} |