summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-03-27 00:03:18 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-03-27 00:03:18 +0000
commit58c55c60f13f823addefffac526fbe22b380a171 (patch)
tree5374f55dc98dc2add618a2ffac45babb9f938243 /dev-python/rdflib
parentPorted the mysql.eclass from the overlay. (diff)
downloadhistorical-58c55c60f13f823addefffac526fbe22b380a171.tar.gz
historical-58c55c60f13f823addefffac526fbe22b380a171.tar.bz2
historical-58c55c60f13f823addefffac526fbe22b380a171.zip
Delete older ebuild.
Diffstat (limited to 'dev-python/rdflib')
-rw-r--r--dev-python/rdflib/rdflib-3.0.0.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-python/rdflib/rdflib-3.0.0.ebuild b/dev-python/rdflib/rdflib-3.0.0.ebuild
deleted file mode 100644
index 21e27c24f172..000000000000
--- a/dev-python/rdflib/rdflib-3.0.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/rdflib-3.0.0.ebuild,v 1.3 2010/09/25 19:54:16 arfrever Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-
-inherit distutils
-
-DESCRIPTION="RDF library containing a triple store and parser/serializer"
-HOMEPAGE="http://rdflib.net/ http://pypi.python.org/pypi/rdflib"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-linux"
-IUSE="berkdb examples mysql redland sqlite test zodb"
-
-RDEPEND="mysql? ( dev-python/mysql-python )
- sqlite? ( || ( dev-lang/python:2.7[sqlite] dev-lang/python:2.6[sqlite] dev-lang/python:2.5[sqlite] dev-python/pysqlite ) )
- berkdb? ( sys-libs/db )
- redland? ( dev-libs/redland-bindings[python] )
- zodb? ( net-zope/zodb )"
-DEPEND="${RDEPEND}
- test? ( dev-python/nose )"
-
-src_test() {
- testing() {
- PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib)" "$(PYTHON)" run_tests.py
- }
- python_execute_function testing
-}
-
-src_install() {
- distutils_src_install
-
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins -r examples/*
- fi
-}