summaryrefslogtreecommitdiff
authorYang Zhao <yang@yangman.ca>2009-09-04 16:40:59 (GMT)
committer Yang Zhao <yang@yangman.ca>2009-09-04 16:40:59 (GMT)
commit3fa7077c9006872349999237bec1538265e572e6 (patch)
tree8964c5cd1f0666c4130424149be12c238b1189c2
parent1fd57716e6881af578d5acdfb979fdcec3dbe096 (diff)
Remove dev-python/python-openid-2.2.4master
Now in main tree
-rw-r--r--dev-python/python-openid/Manifest2
-rw-r--r--dev-python/python-openid/python-openid-2.2.4.ebuild49
2 files changed, 0 insertions, 51 deletions
diff --git a/dev-python/python-openid/Manifest b/dev-python/python-openid/Manifest
deleted file mode 100644
index d05f02c..0000000
--- a/dev-python/python-openid/Manifest
+++ b/dev/null
@@ -1,2 +0,0 @@
-DIST python-openid-2.2.4.tar.bz2 320342 RMD160 91f692c7a90e0de0bd7339bce97a42379b8923c1 SHA1 45599d46ebb36bf4cbf617622abe736c59ccb8e1 SHA256 23052a7d0bc6b7af71df29e1315b9a047ffa84adc705a3c65024fbe1661608b3
-EBUILD python-openid-2.2.4.ebuild 1208 RMD160 42e2cc7df8ac3c25bef667670aac7c0ab86978b8 SHA1 585e42951885712ae2d3cfd0f812d2ceb178f3d2 SHA256 2bc44a74884857c67a321f63032d3c9cab66994bbfef48b106bed37a44026c48
diff --git a/dev-python/python-openid/python-openid-2.2.4.ebuild b/dev-python/python-openid/python-openid-2.2.4.ebuild
deleted file mode 100644
index c59e132..0000000
--- a/dev-python/python-openid/python-openid-2.2.4.ebuild
+++ b/dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-openid/python-openid-2.2.1.ebuild,v 1.1 2008/10/06 16:40:05 hawking Exp $
-
-NEED_PYTHON=2.3
-
-inherit distutils
-
-DESCRIPTION="OpenID support for servers and consumers."
-HOMEPAGE="http://www.openidenabled.com/openid/libraries/python/"
-SRC_URI="http://www.openidenabled.com/files/${PN}/packages/${P}.tar.bz2"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples mysql postgres sqlite"
-
-RDEPEND="|| ( >=dev-lang/python-2.5 dev-python/elementtree )
- || ( >=dev-lang/python-2.5 dev-python/pycrypto )
- sqlite? (
- || ( >=dev-lang/python-2.5 >=dev-python/pysqlite-2 )
- )
- postgres? ( dev-python/psycopg )
- mysql? ( >=dev-python/mysql-python-1.2.2 )"
-DEPEND="${RDEPEND}"
-
-PYTHON_MODNAME="openid"
-
-src_unpack() {
- distutils_src_unpack
-}
-
-src_install() {
- distutils_src_install
-
- use doc && dohtml doc/*
-
- if use examples ; then
- insinto /usr/share/doc/${PF}
- doins -r examples
- fi
-}
-
-src_test() {
- #Remove test that requires running db server
- sed -e '/storetest/d' -i admin/runtests
-
- "${python}" admin/runtests || die "tests failed"
-}