diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-03-26 06:26:24 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-03-26 06:26:24 +0000 |
commit | 29f55c21e1f324962ea88a98aff3b5e53c64aa50 (patch) | |
tree | 52be04ea182c31ee658bdc4bc761916eed5c1fb9 /net-zope | |
parent | fixing kombu's 1.0.4 deps (anyjson was versioned and should not have been) (diff) | |
download | gentoo-2-29f55c21e1f324962ea88a98aff3b5e53c64aa50.tar.gz gentoo-2-29f55c21e1f324962ea88a98aff3b5e53c64aa50.tar.bz2 gentoo-2-29f55c21e1f324962ea88a98aff3b5e53c64aa50.zip |
Bump
(Portage version: 2.2.0_alpha169/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-zope')
-rw-r--r-- | net-zope/zc-buildout/ChangeLog | 7 | ||||
-rw-r--r-- | net-zope/zc-buildout/zc-buildout-2.1.0.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/net-zope/zc-buildout/ChangeLog b/net-zope/zc-buildout/ChangeLog index 32199301e6f2..1a3104acd11c 100644 --- a/net-zope/zc-buildout/ChangeLog +++ b/net-zope/zc-buildout/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-zope/zc-buildout # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-zope/zc-buildout/ChangeLog,v 1.9 2013/03/22 05:41:11 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-zope/zc-buildout/ChangeLog,v 1.10 2013/03/26 06:26:24 patrick Exp $ + +*zc-buildout-2.1.0 (26 Mar 2013) + + 26 Mar 2013; Patrick Lauer <patrick@gentoo.org> +zc-buildout-2.1.0.ebuild: + Bump *zc-buildout-2.0.1 (22 Mar 2013) diff --git a/net-zope/zc-buildout/zc-buildout-2.1.0.ebuild b/net-zope/zc-buildout/zc-buildout-2.1.0.ebuild new file mode 100644 index 000000000000..4c2ef5d07ff4 --- /dev/null +++ b/net-zope/zc-buildout/zc-buildout-2.1.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-zope/zc-buildout/zc-buildout-2.1.0.ebuild,v 1.1 2013/03/26 06:26:24 patrick Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" + +inherit distutils + +MY_PN="${PN/-/.}" +MY_P=${MY_PN}-${PV} + +DESCRIPTION="System for managing development buildouts" +HOMEPAGE="http://pypi.python.org/pypi/zc.buildout" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-python/setuptools" +DEPEND="${RDEPEND}" + +S="${WORKDIR}"/${MY_P} + +DOCS="CHANGES.rst todo.txt" +PYTHON_MODNAME="${PN/-//}" + +src_install() { + distutils_src_install + + # Remove README.txt installed in incorrect location. + rm -f "${D}usr/README.txt" +} |