diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-09-25 19:54:16 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-09-25 19:54:16 +0000 |
commit | b6450d1219b8a52cd3919678c422dfc3c7837b65 (patch) | |
tree | b7140a2d1c2cd12fc0b131a1777e9089ed89f701 /dev-python/rdflib | |
parent | Require Python >=2.5 (bug #338333). (diff) | |
download | gentoo-2-b6450d1219b8a52cd3919678c422dfc3c7837b65.tar.gz gentoo-2-b6450d1219b8a52cd3919678c422dfc3c7837b65.tar.bz2 gentoo-2-b6450d1219b8a52cd3919678c422dfc3c7837b65.zip |
Fix LICENSE (bug #335582). Fix dependencies. Use PyPI mirrors.
(Portage version: 2.2_rc86_p14/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/rdflib')
-rw-r--r-- | dev-python/rdflib/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/rdflib/rdflib-3.0.0.ebuild | 12 |
2 files changed, 10 insertions, 8 deletions
diff --git a/dev-python/rdflib/ChangeLog b/dev-python/rdflib/ChangeLog index ddf3cf6d86b0..999c6f939bf9 100644 --- a/dev-python/rdflib/ChangeLog +++ b/dev-python/rdflib/ChangeLog @@ -1,6 +1,10 @@ # 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.8 2010/05/13 21:32:32 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v 1.9 2010/09/25 19:54:16 arfrever Exp $ + + 25 Sep 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + rdflib-3.0.0.ebuild: + Fix LICENSE (bug #335582). Fix dependencies. Use PyPI mirrors. *rdflib-3.0.0 (13 May 2010) diff --git a/dev-python/rdflib/rdflib-3.0.0.ebuild b/dev-python/rdflib/rdflib-3.0.0.ebuild index e09dc35af030..21e27c24f172 100644 --- a/dev-python/rdflib/rdflib-3.0.0.ebuild +++ b/dev-python/rdflib/rdflib-3.0.0.ebuild @@ -1,32 +1,30 @@ # 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.2 2010/05/17 16:51:02 mr_bones_ Exp $ +# $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="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" -LICENSE="BSD-2" +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-db/sqlite-3.3.13 - || ( dev-python/pysqlite >=dev-lang/python-2.5 ) ) + 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 )" -RESTRICT_PYTHON_ABIS="3.*" src_test() { testing() { |