summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-10-01 01:41:23 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-10-01 01:41:23 +0000
commitfcd41b35d1490835c60c2f9418db5f0b343cbe6a (patch)
tree4ec835cd21f3d5bea44d1007ff99356b0c9a3209 /dev-python/python-openid
parentInitial commit, ebuild by Robin H. Johnson <robbat2@gentoo.org>. *waves hi to... (diff)
downloadgentoo-2-fcd41b35d1490835c60c2f9418db5f0b343cbe6a.tar.gz
gentoo-2-fcd41b35d1490835c60c2f9418db5f0b343cbe6a.tar.bz2
gentoo-2-fcd41b35d1490835c60c2f9418db5f0b343cbe6a.zip
Delete older ebuild.
Diffstat (limited to 'dev-python/python-openid')
-rw-r--r--dev-python/python-openid/python-openid-2.2.1.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/dev-python/python-openid/python-openid-2.2.1.ebuild b/dev-python/python-openid/python-openid-2.2.1.ebuild
deleted file mode 100644
index d1d1ae0cc8c4..000000000000
--- a/dev-python/python-openid/python-openid-2.2.1.ebuild
+++ /dev/null
@@ -1,52 +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
-
- # Patch to fix confusion with localhost/127.0.0.1
- epatch "${FILESDIR}"/${PN}-2.0.0-gentoo-test_fetchers.diff
-}
-
-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"
-}