dev-python/google-apitools: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2020-02-05 14:52:26 +01:00
parent 0a4e52381d
commit b832ac74fd
6 changed files with 0 additions and 144 deletions

View File

@@ -1,3 +1 @@
DIST google-apitools-0.5.16.tar.gz 405331 BLAKE2B 9bd086a68e5787f6dcd426887bb5e0af23ac985f851471da61567266fe52dc254054f0f2fb49e08b461c9281a32c25a764a7b751e10fe6ccca13c2758cdc4637 SHA512 cda60ec21622368c67cc47900218ceaa4137e6d602ee5196f59dac82aa87d35382785323971cc7e4aedf9d69e0a1baf8017c5d941d05171df9e1d5eea15570eb
DIST google-apitools-0.5.22.tar.gz 422977 BLAKE2B 1734f7e19ff90ff5997921ec1e57a29eec13f20dac4d7c84015d40f13147429ad93400a2eaa6038fdbf3ff2b5700dc1a0f6da6cca0706598b3a1eb5abba341b1 SHA512 f184b0ccc17ae80e8436727afab62a3e655ddecc37bde23dd144cc285461b80846fb1df24f21d75f06f521dbc28e8f3e9d5838d769ac52aff83c0aa8d1be66d5
DIST google-apitools-0.5.30.tar.gz 363524 BLAKE2B ed8477c85911f5855a449abe81b465635d3cc4e08d2915de5e882608e634f3dd9ffdda929bd8b25eb3daa5922851aa9304ffe07778cdf3a3aa629e215633515a SHA512 2dffffada829b9b962c64aab22b19cd227981819128c34f3e32515ee599297b3d5e8c97152d954110c2ef27c02737d3c30c785840b9f9767068688f62dc0b5c7

View File

@@ -1,21 +0,0 @@
we don't have code currently that uses the CLI tools, and the CLI tools require
the apputils project, and that doesn't currently work with python3. drop it for
now to get general python3 support.
https://github.com/google/apitools/issues/8
--- a/setup.py
+++ b/setup.py
@@ -69,13 +69,7 @@ setuptools.setup(
author_email='craigcitro@google.com',
# Contained modules and scripts.
packages=setuptools.find_packages(),
- entry_points={'console_scripts': CONSOLE_SCRIPTS},
install_requires=REQUIRED_PACKAGES,
- tests_require=REQUIRED_PACKAGES + CLI_PACKAGES + TESTING_PACKAGES,
- extras_require={
- 'cli': CLI_PACKAGES,
- 'testing': TESTING_PACKAGES,
- },
# Add in any packaged data.
include_package_data=True,
package_data={

View File

@@ -1,13 +0,0 @@
diff --git a/setup.py b/setup.py
index c0ab0b842899..2b21497dd088 100644
--- a/setup.py
+++ b/setup.py
@@ -36,7 +36,7 @@ REQUIRED_PACKAGES = [
CLI_PACKAGES = [
'google-apputils>=0.4.0',
- 'python-gflags==3.0.6', # Starting version 3.0.7 py26 is not supported.
+ 'python-gflags>=3.0.6',
]
TESTING_PACKAGES = [

View File

@@ -1,27 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Python library to manipulate Google APIs"
HOMEPAGE="https://github.com/google/apitools"
SRC_URI="https://github.com/google/apitools/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
RDEPEND=">=dev-python/httplib2-0.8[${PYTHON_USEDEP}]
>=dev-python/oauth2client-1.5.2[${PYTHON_USEDEP}]
>=dev-python/six-1.9.0[${PYTHON_USEDEP}]
>=dev-python/google-apputils-0.4.0[${PYTHON_USEDEP}]
>=dev-python/python-gflags-3.0.6[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
>=dev-python/setuptools-18.5[${PYTHON_USEDEP}]"
S="${WORKDIR}/apitools-${PV}"

View File

@@ -1,48 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# We strip out the tests & cli code as it relies on google-apputils, and that
# module hasn't been ported to python-3. No one currently relies on them, so
# we drop them for the sake of gaining python-3.
# https://github.com/google/apitools/issues/8
EAPI="5"
PYTHON_COMPAT=( python{2_7,3_6} )
inherit distutils-r1
DESCRIPTION="Python library to manipulate Google APIs"
HOMEPAGE="https://github.com/google/apitools"
SRC_URI="https://github.com/google/apitools/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
RDEPEND=">=dev-python/httplib2-0.8[${PYTHON_USEDEP}]
>=dev-python/fasteners-0.14[${PYTHON_USEDEP}]
>=dev-python/oauth2client-1.5.2[${PYTHON_USEDEP}]
>=dev-python/six-1.9.0[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
>=dev-python/setuptools-18.5[${PYTHON_USEDEP}]"
# See comment above about py3 support.
RESTRICT="test"
S="${WORKDIR}/apitools-${PV}"
PATCHES=(
"${FILESDIR}"/${PN}-0.5.22-use-friendy-version-checks.patch
"${FILESDIR}"/${PN}-0.5.22-drop-cli.patch
)
src_unpack() {
default
# Nuke modules that we don't need.
cd "${S}"
rm -r samples || die
find -name '*_test.py' -delete || die
find -name testdata -exec rm -r {} + || die
}

View File

@@ -1,33 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
# Python 3 support: https://github.com/google/apitools/issues/8
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Python library to manipulate Google APIs"
HOMEPAGE="https://github.com/google/apitools"
SRC_URI="https://github.com/google/apitools/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
RDEPEND=">=dev-python/httplib2-0.8[${PYTHON_USEDEP}]
>=dev-python/fasteners-0.14[${PYTHON_USEDEP}]
>=dev-python/oauth2client-1.5.2[${PYTHON_USEDEP}]
>=dev-python/six-1.9.0[${PYTHON_USEDEP}]
>=dev-python/google-apputils-0.4.0[${PYTHON_USEDEP}]
>=dev-python/python-gflags-3.0.6[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
>=dev-python/setuptools-18.5[${PYTHON_USEDEP}]"
S="${WORKDIR}/apitools-${PV}"
PATCHES=(
"${FILESDIR}"/${PN}-0.5.22-use-friendy-version-checks.patch
)