diff options
author | 2009-10-18 16:31:04 +0000 | |
---|---|---|
committer | 2009-10-18 16:31:04 +0000 | |
commit | 54de630a1a7e0359edc3a64428cf4341f64caad5 (patch) | |
tree | bfbd002ad79c7a7b0c5a13a9b081ef38b457eca3 /net-zope/zodb | |
parent | x86 stable, bug #287697 (diff) | |
download | gentoo-2-54de630a1a7e0359edc3a64428cf4341f64caad5.tar.gz gentoo-2-54de630a1a7e0359edc3a64428cf4341f64caad5.tar.bz2 gentoo-2-54de630a1a7e0359edc3a64428cf4341f64caad5.zip |
Version bump.
(Portage version: 14674-svn/cvs/Linux x86_64)
Diffstat (limited to 'net-zope/zodb')
-rw-r--r-- | net-zope/zodb/ChangeLog | 8 | ||||
-rw-r--r-- | net-zope/zodb/zodb-3.9.2.ebuild | 60 |
2 files changed, 67 insertions, 1 deletions
diff --git a/net-zope/zodb/ChangeLog b/net-zope/zodb/ChangeLog index 735ffc64769f..df35987ef7ce 100644 --- a/net-zope/zodb/ChangeLog +++ b/net-zope/zodb/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-zope/zodb # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-zope/zodb/ChangeLog,v 1.32 2009/10/11 17:47:48 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-zope/zodb/ChangeLog,v 1.33 2009/10/18 16:31:04 arfrever Exp $ + +*zodb-3.9.2 (18 Oct 2009) + + 18 Oct 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +zodb-3.9.2.ebuild: + Version bump. *zodb-3.9.1 (11 Oct 2009) diff --git a/net-zope/zodb/zodb-3.9.2.ebuild b/net-zope/zodb/zodb-3.9.2.ebuild new file mode 100644 index 000000000000..1aafeccf432c --- /dev/null +++ b/net-zope/zodb/zodb-3.9.2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-zope/zodb/zodb-3.9.2.ebuild,v 1.1 2009/10/18 16:31:04 arfrever Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +MY_PN="ZODB3" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Zope Object DataBase" +HOMEPAGE="http://pypi.python.org/pypi/ZODB3 http://zope.org/Products/ZODB3 http://wiki.zope.org/ZODB/FrontPage https://launchpad.net/zodb" +SRC_URI="http://pypi.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="net-zope/transaction + net-zope/zc-lockfile + net-zope/zconfig + net-zope/zdaemon + net-zope/zope-event + net-zope/zope-interface + net-zope/zope-proxy + net-zope/zope-testing" +DEPEND="${RDEPEND} + dev-python/setuptools" +RESTRICT_PYTHON_ABIS="3.*" + +S="${WORKDIR}/${MY_P}" + +PYTHON_MODNAME="BTrees persistent ZEO ZODB" +DOCS="doc/* HISTORY.txt README.txt" + +src_prepare() { + distutils_src_prepare + python_convert_shebangs -r 2 src +} + +src_test() { + testing() { + PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib.*)" "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" test + } + python_execute_function testing +} + +src_install() { + distutils_src_install + + # Don't install tests. + rm -fr "${D}"usr/$(get_libdir)/python*/site-packages/{BTrees,persistent,ZEO,ZODB}/tests + rm -fr "${D}"usr/$(get_libdir)/python*/site-packages/{ZEO,ZODB}/scripts/manual_tests + + # Don't install sources. + find "${D}"usr/$(get_libdir)/python*/site-packages -name "*.c" -o -name "*.h" | xargs rm -f +} |