summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-04-22 14:59:16 +0200
committerMichał Górny <mgorny@gentoo.org>2021-04-22 17:06:57 +0200
commit06d274a6d84e1ba558ba0659766b16ce39f807f7 (patch)
treec6ab204c6e985281a07ed482ebca1fe822bab435
parentdev-python/reno: Remove old (diff)
downloadgentoo-06d274a6d84e1ba558ba0659766b16ce39f807f7.tar.gz
gentoo-06d274a6d84e1ba558ba0659766b16ce39f807f7.tar.bz2
gentoo-06d274a6d84e1ba558ba0659766b16ce39f807f7.zip
dev-python/s3transfer: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--dev-python/s3transfer/Manifest3
-rw-r--r--dev-python/s3transfer/files/s3transfer-0.3.3-py38.patch32
-rw-r--r--dev-python/s3transfer/s3transfer-0.3.4.ebuild36
-rw-r--r--dev-python/s3transfer/s3transfer-0.3.5.ebuild32
-rw-r--r--dev-python/s3transfer/s3transfer-0.4.0.ebuild32
5 files changed, 0 insertions, 135 deletions
diff --git a/dev-python/s3transfer/Manifest b/dev-python/s3transfer/Manifest
index 10b5ba2db410..78bd7e349679 100644
--- a/dev-python/s3transfer/Manifest
+++ b/dev-python/s3transfer/Manifest
@@ -1,6 +1,3 @@
-DIST s3transfer-0.3.4.tar.gz 118954 BLAKE2B 71436d3c8921650dfd2c3aec8a0ddbb2cdee8bb82da605b7a7cc38af112eccb9e2742720c597e01aff57fdd067f8a16a9789f5d5b56dd13f84977607e16ef470 SHA512 012b50cebff200dff3a424241bd0a1aa32bf88cb57a4e3a4616d96aac7c8d5d07e7bfee3a298195f55630d01925d27a3063701d915c6bd080dc2e9f7c01880e9
-DIST s3transfer-0.3.5.tar.gz 118959 BLAKE2B 8666ec91058752a1862582f886d373bd4eebbb3684571e1fcb0648e2c4ef3f24366b4e496960715487b6f1fb7fdc96f0031ee48259984f2bcdfbb2a8fe3d33bb SHA512 2a5a0b3163a8ae7097d82f897afec97533acc0d1a03271b5e261bc0b98a9af5a0fa0d594cc4cb701c1698bbc347d10b2b105c4393f349bfd5ef628d1844e7ddb
DIST s3transfer-0.3.6.tar.gz 118877 BLAKE2B 0567b69ee71bd470b3b5bccce3db3e923eee6d8744d9e0e5a1789f3ba5f419742859f530ab43295e5ccb7ffe3c04da8db7ef92c973afac97ff2580bc13c6934f SHA512 3bf97f080b63a88f2860051ef9c0ecd4f06adf1a22eb5bd57c543532f7e85c39f722f0c9cd24022ac0ed3a54ca48a089a10b86703cb866730e265e53acbe602f
DIST s3transfer-0.3.7.tar.gz 120311 BLAKE2B a5de6ce10527495843605ea9e887ccbfead86f32d0eaa2f68dcc21dceb35c86cc21690bd82e3edd5a033699cf4257db93588cf7bbea8f75c01a80c29a17397fb SHA512 b341103e87c092b1c016dc8bfc45b4564c54f5c5a1f3549cf421802620b755d0779b80718a5b4357d3b206b71773fb2b28571730b673fd9af27fc8a3a40ce1b4
-DIST s3transfer-0.4.0.tar.gz 129231 BLAKE2B 4c4e16245f50c8347b5a887307255d33ebcd59ec7422e11361f7782f2df492dfc2507ee0a33903969b0eb610039ef0fdb4f83a2c9fa98cffe0070c7ce8d2eeaf SHA512 4801932d61cc3adfdd105833c3bc50f4135072b10efe04b45bff4b50f18a0783be196338be081e932c73a3eec5448c012bb3988575f8b2b61e9aec9c555ad826
DIST s3transfer-0.4.1.tar.gz 129580 BLAKE2B 5b700fc9b7222b32ea74fa0f2ff59754412e4a65eda028433659861538160cb016e3f97421e237b8050920eaf2609fb0756ffc568331c15b1eb313976df30aac SHA512 1de0569d99bf32b5a3a2c240755d82050f4bf72fd98449e19c2807d21180415edff77b86bfc47d0e8c4952a066c933589862cc08851a7b87b1521e4af7da27f9
diff --git a/dev-python/s3transfer/files/s3transfer-0.3.3-py38.patch b/dev-python/s3transfer/files/s3transfer-0.3.3-py38.patch
deleted file mode 100644
index 89f3d4b5ab32..000000000000
--- a/dev-python/s3transfer/files/s3transfer-0.3.3-py38.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From f211b9851698d07cf218e78ebb39a337c8751df8 Mon Sep 17 00:00:00 2001
-From: Christopher Baines <mail@cbaines.net>
-Date: Sat, 2 May 2020 15:19:58 +0100
-Subject: [PATCH] Fix test_download_futures_fail_triggers_shutdown with Python
- 3.8
-
-The behaviour of set_exception for futures changed in Python 3.8, it'll now
-raise concurrent.futures.InvalidStateError if the future is already done [1],
-which is the case in this test because set_result has already been called on
-the future.
-
-1: https://bugs.python.org/issue33238
-
-Fix the test by not using the future from SequentialExecutor, and instead
-creating a future which doesn't have a result.
----
- tests/unit/test_s3transfer.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/tests/unit/test_s3transfer.py b/tests/unit/test_s3transfer.py
-index a87b4dd..4715be2 100644
---- a/tests/unit/test_s3transfer.py
-+++ b/tests/unit/test_s3transfer.py
-@@ -465,7 +465,7 @@ def __init__(self, max_workers):
- self.is_first = True
-
- def submit(self, function):
-- future = super(FailedDownloadParts, self).submit(function)
-+ future = futures.Future()
- if self.is_first:
- # This is the download_parts_thread.
- future.set_exception(
diff --git a/dev-python/s3transfer/s3transfer-0.3.4.ebuild b/dev-python/s3transfer/s3transfer-0.3.4.ebuild
deleted file mode 100644
index 66e3530ca124..000000000000
--- a/dev-python/s3transfer/s3transfer-0.3.4.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=bdepend
-
-inherit distutils-r1
-
-DESCRIPTION="An Amazon S3 Transfer Manager"
-HOMEPAGE="https://github.com/boto/s3transfer"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
- dev-python/botocore[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/mock[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests nose
-
-PATCHES=(
- "${FILESDIR}"/s3transfer-0.3.3-py38.patch
-)
-
-python_test() {
- nosetests -v tests/unit/ tests/functional/ || die "tests failed under ${EPYTHON}"
-}
diff --git a/dev-python/s3transfer/s3transfer-0.3.5.ebuild b/dev-python/s3transfer/s3transfer-0.3.5.ebuild
deleted file mode 100644
index 48ca166b1782..000000000000
--- a/dev-python/s3transfer/s3transfer-0.3.5.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=bdepend
-
-inherit distutils-r1
-
-DESCRIPTION="An Amazon S3 Transfer Manager"
-HOMEPAGE="https://github.com/boto/s3transfer"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
- dev-python/botocore[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/mock[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-python_test() {
- epytest tests/{unit,functional}
-}
diff --git a/dev-python/s3transfer/s3transfer-0.4.0.ebuild b/dev-python/s3transfer/s3transfer-0.4.0.ebuild
deleted file mode 100644
index 48ca166b1782..000000000000
--- a/dev-python/s3transfer/s3transfer-0.4.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=bdepend
-
-inherit distutils-r1
-
-DESCRIPTION="An Amazon S3 Transfer Manager"
-HOMEPAGE="https://github.com/boto/s3transfer"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
- dev-python/botocore[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/mock[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-python_test() {
- epytest tests/{unit,functional}
-}