From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/google-auth/
Date: Fri, 27 Mar 2020 10:42:50 +0000 (UTC) [thread overview]
Message-ID: <1585305750.76058bec9bd03b71fac064e36c188f05d460ca8e.mgorny@gentoo> (raw)
commit: 76058bec9bd03b71fac064e36c188f05d460ca8e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 27 10:36:07 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 27 10:42:30 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76058bec
dev-python/google-auth: Remove redundant versions
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/google-auth/Manifest | 2 -
dev-python/google-auth/google-auth-1.1.0.ebuild | 53 -------------------------
dev-python/google-auth/google-auth-1.4.1.ebuild | 45 ---------------------
3 files changed, 100 deletions(-)
diff --git a/dev-python/google-auth/Manifest b/dev-python/google-auth/Manifest
index 1a56cf01e1a..d950e9f182c 100644
--- a/dev-python/google-auth/Manifest
+++ b/dev-python/google-auth/Manifest
@@ -1,4 +1,2 @@
DIST google-auth-1.0.1.tar.gz 133903 BLAKE2B 0a99dcdb37a195f24077162ea8191e2eb12aac0eec8e08d06f0b17aba9c4f5ed44f19ca41c737a249611ce02b98e03474d1e995909c5755222605e004d11fb1d SHA512 c10822c6b75700503a06a4b3a43a123d57605a043eb494bcb0232cc3941fc039d0803ed75be26d0da72fd4df613135c290fb3fdf82b0fa47d4fe0729462d80f4
-DIST google-auth-1.1.0.tar.gz 290602 BLAKE2B efc1ae38b29693f035ea9d19af83bd0e098dacb143192d77140ea1548a17dd051b344b6b34044f6d02e5bea631fe4026dda4ba7c1053535641f34aed08cdd48e SHA512 03b4021f5bc3c60671e1e528642af4682828e3a83a07aa9dea8a28b3f97c4020ac47f325c8a952f366d45196e6a9a78a78e1abcfc8d7f878f7b6369434a0b79f
-DIST google-auth-1.4.1.tar.gz 74272 BLAKE2B 8b9c8f59979688bc8a28d3f6c32eb06aa527b3cf9a515ceca51aa346d70622786292f5be5a4bdb2ca266b777d5d5fd41061af3afd4a2608a6673192ad643ed8f SHA512 cba174049a331c8c0ea5b82da0096641d975f59f1f2c3237c32b1730b4c9f9d12f3bfdcb6cc9b9f9c87109d509dcd423d0a4a4d98200e707052760c253f3ee45
DIST google-auth-1.6.3.tar.gz 80899 BLAKE2B 71e9ef4fbb8803dbea96e1b9b3183f9bae8a9bd7e29eda1c9ee042c7abb3e5011ee4f461ddafd3295119e3a5a451892b8a38cb49702c59828baba1af35403c25 SHA512 47a3e9390428ffa58946c348d4e1a1bfe1290d6e06b75924bbacb37d5af929050690ef5c13820468de805646f4686c035b00dfe947c090d53568dd85d804af5e
diff --git a/dev-python/google-auth/google-auth-1.1.0.ebuild b/dev-python/google-auth/google-auth-1.1.0.ebuild
deleted file mode 100644
index 363f92d4a6a..00000000000
--- a/dev-python/google-auth/google-auth-1.1.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1
-
-DESCRIPTION="Google Authentication Library"
-HOMEPAGE="https://pypi.org/project/google-auth/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-python/namespace-google[${PYTHON_USEDEP}]
- >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
- >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
- >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
- >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
- >=dev-python/cachetools-2.0.0[${PYTHON_USEDEP}]
- "
-DEPEND="${RDEPEND}
- test? (
- dev-python/flask[${PYTHON_USEDEP}]
- dev-python/mock[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}]
- dev-python/pytest-localserver[${PYTHON_USEDEP}]
- )"
-
-python_prepare_all() {
- # urllib3-1.16 raised MaxRetryError, not TransportError
- sed -e 's:test_connection_error:_\0:' \
- -e 's:test_request_with_timeout_failure:_\0:' \
- -i tests/transport/compliance.py || die
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- # delete stray files included in the tarball
- find "${S}"/tests -name '*.pyc' -delete || die
- py.test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- distutils-r1_python_install_all
- find "${ED}" -name '*.pth' -delete || die
-}
diff --git a/dev-python/google-auth/google-auth-1.4.1.ebuild b/dev-python/google-auth/google-auth-1.4.1.ebuild
deleted file mode 100644
index 094f852eece..00000000000
--- a/dev-python/google-auth/google-auth-1.4.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-PYTHON_COMPAT=( python3_{6,7} )
-
-inherit distutils-r1
-
-DESCRIPTION="Google Authentication Library"
-HOMEPAGE="https://github.com/GoogleCloudPlatform/google-auth-library-python https://pypi.org/project/google-auth/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-python/namespace-google[${PYTHON_USEDEP}]
- >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
- >=dev-python/pyasn1-modules-0.2.1[${PYTHON_USEDEP}]
- >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
- >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
- >=dev-python/cachetools-2.0.0[${PYTHON_USEDEP}]
- "
-DEPEND="${RDEPEND}
- test? (
- dev-python/flask[${PYTHON_USEDEP}]
- dev-python/mock[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}]
- dev-python/pytest-localserver[${PYTHON_USEDEP}]
- )"
-
-python_test() {
- # delete stray files included in the tarball
- find "${S}"/tests -name '*.pyc' -delete || die
- py.test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- distutils-r1_python_install_all
- find "${ED}" -name '*.pth' -delete || die
-}
next reply other threads:[~2020-03-27 10:42 UTC|newest]
Thread overview: 231+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-27 10:42 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-08 18:35 [gentoo-commits] repo/gentoo:master commit in: dev-python/google-auth/ Michał Górny
2025-02-08 12:04 Arthur Zamarin
2025-01-23 5:39 Michał Górny
2025-01-11 9:29 Michał Górny
2025-01-11 9:29 Michał Górny
2025-01-11 8:38 Arthur Zamarin
2024-12-30 3:34 Zac Medico
2024-12-12 4:15 Michał Górny
2024-11-07 6:45 Michał Górny
2024-10-23 19:50 Arthur Zamarin
2024-10-23 19:43 Arthur Zamarin
2024-09-20 5:12 Michał Górny
2024-09-07 11:12 Michał Górny
2024-09-07 10:58 Michał Górny
2024-08-24 13:06 Michał Górny
2024-08-19 4:39 Michał Górny
2024-08-07 14:10 Michał Górny
2024-07-27 9:53 Michał Górny
2024-07-27 8:30 Arthur Zamarin
2024-07-20 13:27 Michał Górny
2024-07-20 11:14 Arthur Zamarin
2024-07-11 18:22 Michał Górny
2024-07-09 2:10 Michał Górny
2024-07-02 6:58 Michał Górny
2024-06-22 15:01 Michał Górny
2024-06-22 13:49 Arthur Zamarin
2024-06-07 1:59 Michał Górny
2024-05-22 8:03 Michał Górny
2024-04-06 9:35 Michał Górny
2024-04-06 9:33 Arthur Zamarin
2024-03-23 10:45 Michał Górny
2024-03-23 10:41 Michał Górny
2024-03-20 19:21 Michał Górny
2024-03-09 7:18 Michał Górny
2024-03-07 17:12 Michał Górny
2024-03-07 17:09 Michał Górny
2024-02-22 5:38 Michał Górny
2024-02-16 5:40 Michał Górny
2024-02-08 14:48 Michał Górny
2024-02-08 14:43 Michał Górny
2024-01-29 10:25 Michał Górny
2024-01-29 8:19 Sam James
2024-01-26 17:07 Michał Górny
2024-01-26 17:07 Michał Górny
2024-01-25 4:52 Michał Górny
2024-01-18 19:45 Michał Górny
2024-01-18 18:56 Arthur Zamarin
2024-01-11 15:24 Michał Górny
2024-01-04 4:35 Michał Górny
2023-12-24 5:47 Michał Górny
2023-12-24 1:02 Sam James
2023-12-15 10:52 Michał Górny
2023-12-15 10:44 Arthur Zamarin
2023-12-09 6:53 Michał Górny
2023-12-06 6:51 Michał Górny
2023-12-01 5:39 Michał Górny
2023-11-30 20:29 Michał Górny
2023-11-11 20:50 Michał Górny
2023-11-11 20:17 Arthur Zamarin
2023-11-01 5:08 Michał Górny
2023-10-10 5:05 Michał Górny
2023-10-06 17:05 Arthur Zamarin
2023-09-29 4:50 Michał Górny
2023-09-27 7:18 Michał Górny
2023-07-24 10:52 Michał Górny
2023-07-24 8:54 Jakov Smolić
2023-07-12 4:04 Michał Górny
2023-07-06 12:16 Michał Górny
2023-07-05 21:41 Sam James
2023-06-27 3:54 Michał Górny
2023-06-17 2:25 Sam James
2023-06-14 6:43 Michał Górny
2023-06-11 19:19 Michał Górny
2023-06-11 18:38 Jakov Smolić
2023-06-02 8:28 Michał Górny
2023-05-26 17:44 Michał Górny
2023-05-18 3:14 Michał Górny
2023-05-11 15:49 Michał Górny
2023-05-11 9:18 Jakov Smolić
2023-05-11 5:36 Michał Górny
2023-05-11 5:36 Michał Górny
2023-04-13 6:32 Michał Górny
2023-04-13 5:45 Sam James
2023-04-13 5:13 Michał Górny
2023-04-06 3:07 Michał Górny
2023-03-31 4:32 Michał Górny
2023-03-29 5:49 Michał Górny
2023-03-25 5:02 Michał Górny
2023-03-24 20:22 Arthur Zamarin
2023-03-24 5:21 Michał Górny
2023-03-03 5:53 Michał Górny
2023-02-18 7:03 Michał Górny
2023-02-16 14:13 Michał Górny
2023-02-16 5:14 Sam James
2023-01-10 14:23 Michał Górny
2023-01-10 6:21 Michał Górny
2023-01-08 5:16 Michał Górny
2023-01-08 5:16 Michał Górny
2023-01-07 18:55 Arthur Zamarin
2022-12-17 7:15 Michał Górny
2022-12-16 21:28 Arthur Zamarin
2022-12-02 14:35 Arthur Zamarin
2022-12-02 14:35 Arthur Zamarin
2022-11-19 16:52 Michał Górny
2022-11-19 16:40 Sam James
2022-11-12 20:19 Arthur Zamarin
2022-11-01 5:19 Michał Górny
2022-10-25 12:12 Michał Górny
2022-10-25 10:44 Sam James
2022-10-18 6:36 Michał Górny
2022-09-28 18:34 Michał Górny
2022-09-22 7:40 Michał Górny
2022-09-20 5:37 Michał Górny
2022-09-20 0:07 Sam James
2022-09-07 5:03 Michał Górny
2022-09-06 21:12 Sam James
2022-08-20 11:22 Arthur Zamarin
2022-08-15 8:08 Michał Górny
2022-08-15 7:40 Agostino Sarubbo
2022-08-06 13:09 Arthur Zamarin
2022-07-13 8:10 Michał Górny
2022-07-10 18:52 Michał Górny
2022-07-10 16:56 Sam James
2022-06-29 6:19 Michał Górny
2022-06-15 11:32 Michał Górny
2022-06-08 5:35 Michał Górny
2022-05-27 19:50 Michał Górny
2022-05-27 9:12 Jakov Smolić
2022-04-22 11:54 Michał Górny
2022-04-22 11:54 Michał Górny
2022-04-22 8:19 Michał Górny
2022-04-19 16:03 Michał Górny
2022-04-19 13:46 Jakov Smolić
2022-04-17 8:39 Michał Górny
2022-04-13 5:30 Michał Górny
2022-04-12 11:06 Michał Górny
2022-04-12 11:06 Michał Górny
2022-04-08 8:56 Michał Górny
2022-03-21 20:34 Jakov Smolić
2022-03-18 10:08 Michał Górny
2022-03-08 13:04 Agostino Sarubbo
2022-02-24 8:12 Michał Górny
2022-01-31 23:47 Michał Górny
2022-01-26 7:33 Michał Górny
2022-01-20 23:26 Michał Górny
2022-01-13 1:46 Sam James
2021-11-28 19:27 Michał Górny
2021-11-28 8:03 Arthur Zamarin
2021-11-01 22:16 Michał Górny
2021-10-31 20:33 Michał Górny
2021-10-31 17:58 Sam James
2021-10-27 8:29 Michał Górny
2021-10-10 16:22 Michał Górny
2021-10-10 15:33 Agostino Sarubbo
2021-10-09 11:25 Michał Górny
2021-10-07 21:48 Michał Górny
2021-09-29 7:03 Michał Górny
2021-09-27 22:16 Michał Górny
2021-09-25 22:03 Michał Górny
2021-09-25 19:56 Sam James
2021-09-14 21:35 Michał Górny
2021-09-01 4:55 Michał Górny
2021-08-30 5:54 Michał Górny
2021-08-30 1:23 Sam James
2021-08-19 21:53 Michał Górny
2021-08-18 6:56 Michał Górny
2021-08-17 6:47 Michał Górny
2021-08-02 5:44 Michał Górny
2021-08-01 23:49 Sam James
2021-07-28 5:31 Michał Górny
2021-07-21 7:25 Michał Górny
2021-07-14 22:16 Michał Górny
2021-07-03 6:26 Michał Górny
2021-07-03 6:17 Agostino Sarubbo
2021-07-01 6:13 Michał Górny
2021-06-22 5:54 Michał Górny
2021-06-10 23:13 Michał Górny
2021-06-08 23:12 Michał Górny
2021-06-05 21:08 Michał Górny
2021-06-05 20:35 Sam James
2021-05-25 5:13 Michał Górny
2021-05-19 20:21 Michał Górny
2021-05-19 20:09 Agostino Sarubbo
2021-05-19 20:06 Agostino Sarubbo
2021-05-15 2:06 Sam James
2021-04-27 7:08 Michał Górny
2021-04-18 7:05 Michał Górny
2021-04-18 1:41 Sam James
2021-04-16 8:30 Michał Górny
2021-04-08 22:46 Michał Górny
2021-04-06 20:39 Michał Górny
2021-04-06 19:47 Sam James
2021-03-25 19:09 Michał Górny
2021-03-25 16:19 Agostino Sarubbo
2021-03-17 7:48 Michał Górny
2021-03-15 9:00 Michał Górny
2021-03-15 6:30 Sam James
2021-03-07 22:39 Michał Górny
2021-03-07 19:46 Sam James
2021-03-04 20:27 Michał Górny
2021-03-04 20:27 Michał Górny
2021-02-18 9:18 Michał Górny
2021-02-11 21:54 Patrick McLean
2021-02-10 22:50 Michał Górny
2021-02-04 3:22 Patrick McLean
2021-01-13 20:16 Michał Górny
2021-01-13 20:16 Michał Górny
2021-01-13 19:04 Sam James
2020-12-15 2:47 Patrick McLean
2020-10-03 17:51 Zac Medico
2020-09-18 14:48 Michał Górny
2020-08-18 7:03 Sam James
2020-08-09 22:47 Zac Medico
2020-08-09 22:30 Zac Medico
2020-08-09 22:07 Zac Medico
2020-07-09 10:08 Michał Górny
2020-07-09 10:08 Michał Górny
2020-05-19 7:02 Zac Medico
2020-05-19 6:50 Zac Medico
2020-05-13 4:00 Patrick McLean
2020-02-05 15:48 Michał Górny
2019-07-12 17:31 Patrick McLean
2019-04-10 22:44 Matthew Thode
2018-05-23 10:31 Mike Frysinger
2017-10-30 0:10 Zac Medico
2017-09-30 0:31 Matt Thode
2017-07-30 7:37 Zac Medico
2017-06-26 11:04 Alexis Ballier
2017-05-13 6:31 Markus Meier
2017-05-04 4:13 Zac Medico
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1585305750.76058bec9bd03b71fac064e36c188f05d460ca8e.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox