diff options
author | Jesus Rivero <neurogeek@gentoo.org> | 2011-09-13 22:39:39 +0000 |
---|---|---|
committer | Jesus Rivero <neurogeek@gentoo.org> | 2011-09-13 22:39:39 +0000 |
commit | 6f865087458c5d0156f88cfc85d8a7b846b9e8db (patch) | |
tree | a742191a91d738b00a84ed7e1f2ed7a730f4a6b3 /net-zope | |
parent | Version bump. Add USE=libtool to control the libltdl dep (and prefer libdl/d... (diff) | |
download | gentoo-2-6f865087458c5d0156f88cfc85d8a7b846b9e8db.tar.gz gentoo-2-6f865087458c5d0156f88cfc85d8a7b846b9e8db.tar.bz2 gentoo-2-6f865087458c5d0156f88cfc85d8a7b846b9e8db.zip |
Version bump requested by Arfrever
(Portage version: 2.2.0_alpha41/cvs/Linux i686)
Diffstat (limited to 'net-zope')
-rw-r--r-- | net-zope/zope/ChangeLog | 7 | ||||
-rw-r--r-- | net-zope/zope/zope-2.13.9.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/net-zope/zope/ChangeLog b/net-zope/zope/ChangeLog index 6a4af7edae76..7d098a99b088 100644 --- a/net-zope/zope/ChangeLog +++ b/net-zope/zope/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-zope/zope # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-zope/zope/ChangeLog,v 1.200 2011/05/09 23:44:47 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-zope/zope/ChangeLog,v 1.201 2011/09/13 22:39:39 neurogeek Exp $ + +*zope-2.13.9 (13 Sep 2011) + + 13 Sep 2011; Jesus Rivero <neurogeek@gentoo.org> +zope-2.13.9.ebuild: + Version bump requested by Arfrever *zope-2.13.7 (09 May 2011) diff --git a/net-zope/zope/zope-2.13.9.ebuild b/net-zope/zope/zope-2.13.9.ebuild new file mode 100644 index 000000000000..eb7d40c78b6a --- /dev/null +++ b/net-zope/zope/zope-2.13.9.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-zope/zope/zope-2.13.9.ebuild,v 1.1 2011/09/13 22:39:39 neurogeek Exp $ + +EAPI="4" + +inherit versionator + +DESCRIPTION="Zope 2 application server / web framework" +HOMEPAGE="http://www.zope.org http://zope2.zope.org http://pypi.python.org/pypi/Zope2 https://launchpad.net/zope2" +SRC_URI="" + +LICENSE="ZPL" +SLOT="$(get_version_component_range 1-2)" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +PROPERTIES="interactive" + +pkg_pretend() { + eerror "This ebuild does NOT install Zope." + eerror "Zope ebuilds are now maintained in Progress Overlay." + eerror "Install app-portage/layman and add Progress Overlay:" + eerror "# layman -a progress" + eerror "You should now abort installation of this ebuild using Ctrl+C." + eerror "If you want to continue installation of this ebuild, then enter \"I want to install this ebuild.\"." + + read input + if [[ "${input}" != "I want to install this ebuild." ]]; then + die "Use Zope from Progress Overlay" + fi +} |