diff options
author | 2011-03-27 00:03:49 +0000 | |
---|---|---|
committer | 2011-03-27 00:03:49 +0000 | |
commit | a9feb9772469b71dae7e98fb02cb90f0e78f09ee (patch) | |
tree | 21215fe14ad1339e87a51bfdd6ed28b74c80c22a /dev-python/rdflib | |
parent | Delete older ebuild. (diff) | |
download | gentoo-2-a9feb9772469b71dae7e98fb02cb90f0e78f09ee.tar.gz gentoo-2-a9feb9772469b71dae7e98fb02cb90f0e78f09ee.tar.bz2 gentoo-2-a9feb9772469b71dae7e98fb02cb90f0e78f09ee.zip |
Version bump.
(Portage version: 2.2.0_alpha28_p35/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/rdflib')
-rw-r--r-- | dev-python/rdflib/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/rdflib/rdflib-3.1.0.ebuild | 43 |
2 files changed, 51 insertions, 2 deletions
diff --git a/dev-python/rdflib/ChangeLog b/dev-python/rdflib/ChangeLog index 999c6f939bf9..9a863bffb4b8 100644 --- a/dev-python/rdflib/ChangeLog +++ b/dev-python/rdflib/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/rdflib -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v 1.9 2010/09/25 19:54:16 arfrever Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v 1.10 2011/03/27 00:03:49 arfrever Exp $ + +*rdflib-3.1.0 (27 Mar 2011) + + 27 Mar 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +rdflib-3.1.0.ebuild: + Version bump. 25 Sep 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> rdflib-3.0.0.ebuild: diff --git a/dev-python/rdflib/rdflib-3.1.0.ebuild b/dev-python/rdflib/rdflib-3.1.0.ebuild new file mode 100644 index 000000000000..dfd13ae4b57c --- /dev/null +++ b/dev-python/rdflib/rdflib-3.1.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/rdflib-3.1.0.ebuild,v 1.1 2011/03/27 00:03:49 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/* || die "Installation of examples failed" + fi +} |