diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-09-04 17:57:28 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-09-04 17:57:28 +0000 |
commit | 359feda616140e9466c74020c8850d344de81b6d (patch) | |
tree | d51a2d6f999257e84451e2fd9bccef790222a3ac /dev-python/rdflib | |
parent | version bump wrt #274265 (diff) | |
download | historical-359feda616140e9466c74020c8850d344de81b6d.tar.gz historical-359feda616140e9466c74020c8850d344de81b6d.tar.bz2 historical-359feda616140e9466c74020c8850d344de81b6d.zip |
Remove old
Package-Manager: portage-2.2_rc40/cvs/Linux x86_64
Diffstat (limited to 'dev-python/rdflib')
-rw-r--r-- | dev-python/rdflib/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/rdflib/rdflib-2.4.0.ebuild | 53 |
2 files changed, 4 insertions, 54 deletions
diff --git a/dev-python/rdflib/ChangeLog b/dev-python/rdflib/ChangeLog index 0e01cdfff837..46e78abe4f79 100644 --- a/dev-python/rdflib/ChangeLog +++ b/dev-python/rdflib/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/rdflib # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v 1.5 2009/08/10 00:11:20 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v 1.6 2009/09/04 17:48:34 patrick Exp $ + + 04 Sep 2009; Patrick Lauer <patrick@gentoo.org> -rdflib-2.4.0.ebuild: + Remove old *rdflib-2.4.1 (10 Aug 2009) diff --git a/dev-python/rdflib/rdflib-2.4.0.ebuild b/dev-python/rdflib/rdflib-2.4.0.ebuild deleted file mode 100644 index c8908d6999a0..000000000000 --- a/dev-python/rdflib/rdflib-2.4.0.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/rdflib-2.4.0.ebuild,v 1.4 2009/08/10 00:09:24 arfrever Exp $ - -NEED_PYTHON="2.3" - -inherit distutils - -DESCRIPTION="RDF library containing a triple store and parser/serializer" -HOMEPAGE="http://rdflib.net/" -SRC_URI="http://rdflib.net/${P}.tar.gz" -LICENSE="BSD-2" -KEYWORDS="~amd64 ~x86" -SLOT="0" -IUSE="berkdb examples mysql redland sqlite zodb" -DEPEND=">=dev-python/setuptools-0.6_rc5" -RDEPEND="mysql? ( dev-python/mysql-python ) - sqlite? ( - >=dev-db/sqlite-3.3.13 - || ( dev-python/pysqlite >=dev-lang/python-2.5 ) ) - berkdb? ( sys-libs/db ) - redland? ( dev-libs/redland-bindings ) - zodb? ( net-zope/zodb )" -RESTRICT="test" - -pkg_setup() { - if use redland && ! built_with_use dev-libs/redland-bindings python; then - eerror "In order to have rdflib working with redland support, you need" - eerror "to have dev-libs/redland-bindings emerged with 'python' in" - eerror "your USE flags." - die "dev-libs/redland-bindings is missing the python USE flag." - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" - - # Don't install tests. Remove tests_require to prevent setuptools - # from trying to download deps that it can't find - sed -i \ - -e "s/\(find_packages(\)/\1exclude=('test','test.*')/" \ - -e "/tests_require/d" \ - setup.py || die "sed in setup.py failed" -} - -src_install() { - distutils_src_install - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r examples/* - fi -} |