diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-12-26 20:23:27 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-12-26 20:23:27 +0000 |
commit | 453c84f7fc4630c3425dc23c2faae404e4c732f8 (patch) | |
tree | 76b7af542af54eb5416c39b8bfb09075b29e32bb /net-zope | |
parent | Delete older ebuilds. (diff) | |
download | gentoo-2-453c84f7fc4630c3425dc23c2faae404e4c732f8.tar.gz gentoo-2-453c84f7fc4630c3425dc23c2faae404e4c732f8.tar.bz2 gentoo-2-453c84f7fc4630c3425dc23c2faae404e4c732f8.zip |
Version bump. Set SUPPORT_PYTHON_ABIS.
(Portage version: 2.2.0_alpha10_p8/cvs/Linux x86_64)
Diffstat (limited to 'net-zope')
-rw-r--r-- | net-zope/issuetrackerproduct/ChangeLog | 11 | ||||
-rw-r--r-- | net-zope/issuetrackerproduct/issuetrackerproduct-0.11.0.ebuild | 56 |
2 files changed, 65 insertions, 2 deletions
diff --git a/net-zope/issuetrackerproduct/ChangeLog b/net-zope/issuetrackerproduct/ChangeLog index 457556bf83b8..3b4f9089c0c3 100644 --- a/net-zope/issuetrackerproduct/ChangeLog +++ b/net-zope/issuetrackerproduct/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-zope/issuetrackerproduct -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-zope/issuetrackerproduct/ChangeLog,v 1.8 2007/02/09 08:20:05 flameeyes Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-zope/issuetrackerproduct/ChangeLog,v 1.9 2010/12/26 20:23:27 arfrever Exp $ + +*issuetrackerproduct-0.11.0 (26 Dec 2010) + + 26 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + -issuetrackerproduct-0.5.0b.ebuild, -issuetrackerproduct-0.5.2.ebuild, + -issuetrackerproduct-0.6.5.ebuild, +issuetrackerproduct-0.11.0.ebuild: + Version bump. Set SUPPORT_PYTHON_ABIS. 09 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog: Regenerate digest in Manifest2 format. diff --git a/net-zope/issuetrackerproduct/issuetrackerproduct-0.11.0.ebuild b/net-zope/issuetrackerproduct/issuetrackerproduct-0.11.0.ebuild new file mode 100644 index 000000000000..86c68d84aadd --- /dev/null +++ b/net-zope/issuetrackerproduct/issuetrackerproduct-0.11.0.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-zope/issuetrackerproduct/issuetrackerproduct-0.11.0.ebuild,v 1.1 2010/12/26 20:23:27 arfrever Exp $ + +EAPI="3" +PYTHON_DEPEND="2:2.6" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.4 2.5 3.*" + +inherit python + +MY_PN="IssueTrackerProduct" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A user-friendly issue tracker web application for Zope" +HOMEPAGE="http://www.issuetrackerproduct.com/" +SRC_URI="http://www.issuetrackerproduct.com/Download/${MY_P}.tgz" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/simplejson + dev-python/stripogram + net-zope/accesscontrol + net-zope/acquisition + net-zope/datetime + net-zope/persistence + net-zope/zexceptions + net-zope/zlog + net-zope/zodb + >=net-zope/zope-2.12 + net-zope/zope-contenttype + net-zope/zope-structuredtext" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_PN}" + +src_install() { + installation() { + insinto $(python_get_sitedir)/Products/${MY_PN} + doins -r * + } + python_execute_function installation + + dodoc CHANGES.txt README.txt TODO.txt || die "dodoc failed" +} + +pkg_postinst() { + python_mod_optimize -x /www/ Products/${MY_PN} +} + +pkg_postrm() { + python_mod_cleanup Products/${MY_PN} +} |