summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-01-18 16:50:39 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-01-18 16:50:39 +0000
commitb1ff3a92c7554fabd18f549bf4950f3ac9e63578 (patch)
tree3b0a4ae6e9e633b4902f8d8dffed61c5fb23abbf /dev-python
parentVersion bump. (diff)
downloadhistorical-b1ff3a92c7554fabd18f549bf4950f3ac9e63578.tar.gz
historical-b1ff3a92c7554fabd18f549bf4950f3ac9e63578.tar.bz2
historical-b1ff3a92c7554fabd18f549bf4950f3ac9e63578.zip
Delete older ebuild.
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/gdata/gdata-2.0.0.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/dev-python/gdata/gdata-2.0.0.ebuild b/dev-python/gdata/gdata-2.0.0.ebuild
deleted file mode 100644
index e408b62d5243..000000000000
--- a/dev-python/gdata/gdata-2.0.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/gdata-2.0.0.ebuild,v 1.7 2009/09/22 20:00:16 jer Exp $
-
-inherit distutils eutils
-
-MY_P="gdata-${PV}"
-
-DESCRIPTION="Python client library for Google data APIs"
-HOMEPAGE="http://code.google.com/p/gdata-python-client/"
-SRC_URI="http://gdata-python-client.googlecode.com/files/${MY_P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
-IUSE="examples"
-
-DEPEND=""
-RDEPEND="|| ( >=dev-lang/python-2.5 dev-python/elementtree )"
-
-PYTHON_MODNAME="atom gdata"
-S="${WORKDIR}/${MY_P}"
-
-src_install() {
- distutils_src_install
-
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r samples
- fi
-}
-
-src_test() {
- cd tests
- export PYTHONPATH=../src
- "${python}" run_data_tests.py -v || die "Data tests failed"
-
- # run_service_tests.py requires interaction (and a valid google account), so skip.
- #"${python}" run_service_tests.py -v || die "Service tests failed"
-}