summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2011-06-23 15:11:10 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2011-06-23 15:11:10 +0000
commit7b42c74b99f0fbeeb9b84c07e3022174daaf4596 (patch)
tree8826457fb5dbd0db6f056e8b033010b536ce6cf6 /dev-python/gdata
parentRevert my previous commit as I made a mistake. Bring back 3.4.4 and remove 4.... (diff)
downloadhistorical-7b42c74b99f0fbeeb9b84c07e3022174daaf4596.tar.gz
historical-7b42c74b99f0fbeeb9b84c07e3022174daaf4596.tar.bz2
historical-7b42c74b99f0fbeeb9b84c07e3022174daaf4596.zip
Remove old ebuilds. Requested by Arfrever
Package-Manager: portage-2.1.9.49/cvs/Linux x86_64
Diffstat (limited to 'dev-python/gdata')
-rw-r--r--dev-python/gdata/ChangeLog5
-rw-r--r--dev-python/gdata/gdata-2.0.13.ebuild55
2 files changed, 4 insertions, 56 deletions
diff --git a/dev-python/gdata/ChangeLog b/dev-python/gdata/ChangeLog
index 6be6a3f04367..0f2dca0c02ef 100644
--- a/dev-python/gdata/ChangeLog
+++ b/dev-python/gdata/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/gdata
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/ChangeLog,v 1.99 2011/06/04 18:52:06 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/ChangeLog,v 1.100 2011/06/23 15:06:32 hwoarang Exp $
+
+ 23 Jun 2011; Markos Chandras <hwoarang@gentoo.org> -gdata-2.0.13.ebuild:
+ Remove old ebuilds. Requested by Arfrever
04 Jun 2011; Raúl Porcel <armin76@gentoo.org> gdata-2.0.14.ebuild:
alpha/ia64/sparc stable wrt #364867
diff --git a/dev-python/gdata/gdata-2.0.13.ebuild b/dev-python/gdata/gdata-2.0.13.ebuild
deleted file mode 100644
index 7c051f1e59b6..000000000000
--- a/dev-python/gdata/gdata-2.0.13.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/gdata-2.0.13.ebuild,v 1.9 2011/02/08 22:20:44 xarthisius Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-
-inherit distutils
-
-MY_P="gdata-${PV}"
-
-DESCRIPTION="Python client library for Google data APIs"
-HOMEPAGE="http://code.google.com/p/gdata-python-client/ http://pypi.python.org/pypi/gdata"
-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="|| ( dev-lang/python:2.7[xml] dev-lang/python:2.6[xml] dev-lang/python:2.5[xml] dev-python/elementtree )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-PYTHON_MODNAME="atom gdata"
-
-src_prepare() {
- distutils_src_prepare
-
- # http://code.google.com/p/gdata-python-client/issues/detail?id=474
- # http://code.google.com/p/gdata-python-client/source/detail?r=0ead99676f39b214db3584ed418efb214f45c70d
- sed -e "/http:\/\/docs\.google\.com\/feeds\/documents\/private\/full\//s/http/https/" -i tests/gdata_tests/docs_test.py || die "sed failed"
-}
-
-src_test() {
- testing() {
- PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" tests/run_data_tests.py -v || return 1
-
- # run_service_tests.py requires interaction (and a valid Google account), so skip it.
- # PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" tests/run_service_tests.py -v || return 1
- }
- python_execute_function testing
-}
-
-src_install() {
- distutils_src_install
-
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r samples || die "Installation of examples failed"
- fi
-}