dev-python/gdata: Clean up old version

This commit is contained in:
Michał Górny
2017-02-17 13:28:07 +01:00
parent cffb068d07
commit ea4e113099
2 changed files with 0 additions and 45 deletions

View File

@@ -1,2 +1 @@
DIST gdata-2.0.14.tar.gz 1872888 SHA256 ba291d2b9d36a0f1b1b31a5a3ac3ba11f1bcce21c915a6ec78d109a43dafb1b0 SHA512 88f8c6e8f2fb1c7774c44833ce1817b842bcf054f960f1270c9bd53adb22922bf18691ef8dc83b571d2308227722620fb0adfe4b35b04bf54d4b8f319af872a0 WHIRLPOOL d59354aac324b872800818ba7b924658396652b33b898ec8629629d62a503b854b472c604febd021aae303a174775191059a285e7aa1fa2b91cdacfd2f4657d1
DIST gdata-2.0.18.tar.gz 2475552 SHA256 56e7d22de819c22b13ceb0fe1869729b4287f89ebbd4bb55380d7bcf61a1fdb6 SHA512 57d01a8e41fd7507621c10a4ea3e66223aa1d481365269daecdb5ef1bd725915448bcfa5aca9bef3a7fb4b735627d7916b7f971f1c05d7bf840069346e98ceef WHIRLPOOL a3ed7e084436ad858b35970ebc0b73216ca4f041448c1916c0e1ba28f9b6135c0aa80dfb3aa6a5cf31ba6ca0b999e3633e2d6801e5c2c495da0d40feac61afe6

View File

@@ -1,44 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
PYTHON_DEPEND="2"
PYTHON_USE_WITH="ssl(+) xml"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit distutils
DESCRIPTION="Python client library for Google data APIs"
HOMEPAGE="https://github.com/google/gdata-python-client https://pypi.python.org/pypi/gdata"
SRC_URI="mirror://gentoo/${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="${DEPEND}"
PYTHON_MODNAME="atom gdata"
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}/examples
doins -r samples/* || die "Installation of examples failed"
fi
}