* [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/files/, profiles/, dev-python/google-apputils/
@ 2020-09-02 8:10 Michał Górny
0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2020-09-02 8:10 UTC (permalink / raw
To: gentoo-commits
commit: 259fc1e027686b89759854d49f07c81a8dbae01d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 2 08:08:33 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Sep 2 08:08:33 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=259fc1e0
dev-python/google-apputils: Remove last-rited pkg
Closes: https://bugs.gentoo.org/735156
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/google-apputils/Manifest | 1 -
.../google-apputils/files/0.4.2-sh_test-env.patch | 21 ----------
.../google-apputils-0.4.2-r2.ebuild | 46 ----------------------
dev-python/google-apputils/metadata.xml | 12 ------
profiles/package.mask | 6 ---
5 files changed, 86 deletions(-)
diff --git a/dev-python/google-apputils/Manifest b/dev-python/google-apputils/Manifest
deleted file mode 100644
index bf7c7d7c873..00000000000
--- a/dev-python/google-apputils/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST google-apputils-0.4.2.tar.gz 81095 BLAKE2B d99c2fe8081616ee2891718fc3d00d00bcd703f694b9419bfc7aaebe75ba8cd0de12e8461dbc6459c1b7b88abf6e7af89972368c565565cb5dfb810938e4e1d2 SHA512 d7579ec461292bb01ad5b8e1b09e161c66af0e85361f43f6065b837c90bddb9711a2d56db2b73d780dc25945375d4dad2f646507512b9acfeefd517613feacd4
diff --git a/dev-python/google-apputils/files/0.4.2-sh_test-env.patch b/dev-python/google-apputils/files/0.4.2-sh_test-env.patch
deleted file mode 100644
index 69ebe6278f9..00000000000
--- a/dev-python/google-apputils/files/0.4.2-sh_test-env.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Prevent the environment from being clobbered during sh_test
-
-diff --git a/tests/sh_test.py b/tests/sh_test.py
-index ab41055..d1b08c6 100644
---- a/tests/sh_test.py
-+++ b/tests/sh_test.py
-@@ -29,12 +29,8 @@ class ShellScriptTests(basetest.TestCase):
- path_with_python = ':'.join((
- os.path.dirname(sys.executable), os.environ.get('PATH')))
-
-- env = {
-- 'PATH': path_with_python,
-- # Setuptools puts dependency eggs in our path, so propagate that.
-- 'PYTHONPATH': os.pathsep.join(sys.path),
-- 'TEST_TMPDIR': FLAGS.test_tmpdir,
-- }
-+ env = os.environ.copy()
-+ env['TEST_TMPDIR'] = FLAGS.test_tmpdir
- p = subprocess.Popen(sh_test_path, cwd=tests_path, env=env)
- self.assertEqual(0, p.wait())
-
diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
deleted file mode 100644
index 638e7194591..00000000000
--- a/dev-python/google-apputils/google-apputils-0.4.2-r2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-# Python 3: https://github.com/google/google-apputils/issues/9
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Collection of utilities for building Python applications"
-HOMEPAGE="https://github.com/google/google-apputils"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-python/namespace-google[${PYTHON_USEDEP}]
- >=dev-python/python-dateutil-1.4[${PYTHON_USEDEP}]
- >=dev-python/python-gflags-1.4[${PYTHON_USEDEP}]
- >=dev-python/pytz-2010[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( ${RDEPEND} dev-python/mox[${PYTHON_USEDEP}] )"
-
-PATCHES=(
- "${FILESDIR}/0.4.2-sh_test-env.patch"
-)
-
-src_unpack() {
- default
- chmod -R a+rX,u+w,g-w,o-w ${P} || die
-}
-
-python_test() {
- esetup.py google_test
-}
-
-python_install_all() {
- distutils-r1_python_install_all
-
- find "${D}" -name '*.pth' -delete || die
-}
diff --git a/dev-python/google-apputils/metadata.xml b/dev-python/google-apputils/metadata.xml
deleted file mode 100644
index 12da0e45b5e..00000000000
--- a/dev-python/google-apputils/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <upstream>
- <remote-id type="github">google/google-apputils</remote-id>
- <remote-id type="pypi">google-apputils</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/profiles/package.mask b/profiles/package.mask
index c1dbada76bd..f4c8c065356 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -700,12 +700,6 @@ dev-python/python-openid
# Removal in 30 days. Bug #735158.
dev-python/mox
-# Michał Górny <mgorny@gentoo.org> (2020-08-02)
-# Discontinued upstream in 2015. Python 2 only. No revdeps.
-# abseil-py (not package) is the suggested replacement.
-# Removal in 30 days. Bug #735156.
-dev-python/google-apputils
-
# Mikle Kolyada <zlogene@gentoo.org> (2020-08-02)
# consolekit is abandoned upstream.
# People are encouraged to switch to any logind
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2020-09-02 8:10 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-02 8:10 [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/files/, profiles/, dev-python/google-apputils/ Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox