commit: 79d97aa02e85f09bb7000ca4157f1a437740097b Author: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com> AuthorDate: Wed Jun 5 00:22:07 2024 +0000 Commit: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com> CommitDate: Wed Jun 5 00:22:07 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=79d97aa0
dev-python/b2sdk: remove old version. Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com> Closes: https://bugs.gentoo.org/908089 dev-python/b2sdk/Manifest | 1 - dev-python/b2sdk/b2sdk-1.21.0.ebuild | 45 ---------------------- ...k-1.17.2-disable-requirement-installation.patch | 22 ----------- ...dk-1.8.0-disable-requirement-installation.patch | 22 ----------- 4 files changed, 90 deletions(-) diff --git a/dev-python/b2sdk/Manifest b/dev-python/b2sdk/Manifest index 6e707ab7f..7a6f26b16 100644 --- a/dev-python/b2sdk/Manifest +++ b/dev-python/b2sdk/Manifest @@ -1,3 +1,2 @@ -DIST b2sdk-1.21.0.tar.gz 335333 BLAKE2B 7aa3a9664844e1f5ef71b7eec2fc28f456bed0a8ae431a90f23865cb9d73526090f78926b943f67bb1745bb9760718666202a9bd67790d92d90c14a0f1510bab SHA512 3d431ce8a3be536d6e49d20a0e6eef2d435bfccf2dd36c0b501c03ebd013de68063302f3ae4d8c9cd6fcfa7b77e3ea2c00b06c3a5e044e30f545a4ab5248fa62 DIST b2sdk-2.0.0.tar.gz 378875 BLAKE2B 0d65eb0b9238fccb5f6ef2252280cb9891c1fbf9bfddc2ef38692f5063fc0384eefab26876126d9dc056f178788e72a970f604fb8f9952e1ef6cd62a2417ab9d SHA512 97700574cd948a8a177bb52edc89e67d8f1cf6efcc7227c8581af30cdc95dc7e54afd30357f5723f2abee05cdbbf17d6b26494c586c2851782bebb72224386c0 DIST b2sdk-2.3.0.tar.gz 390949 BLAKE2B e14c9fc56b7ed66350b8d73456dd50b0f6fdb40d7a6fe73cf7950afcb25bb5257a63bb361d8cbca99116b4999a2b0195967b4e08aff5ca9aaf5c16e4b4b532eb SHA512 29ba07581d0e587b413396f128d7fe14f8ac25ea0553eef69e1c428823690974d9373db727321f9838886a07946c36defdd5bae24d31266751d6b1a2f05968c6 diff --git a/dev-python/b2sdk/b2sdk-1.21.0.ebuild b/dev-python/b2sdk/b2sdk-1.21.0.ebuild deleted file mode 100644 index cbb725554..000000000 --- a/dev-python/b2sdk/b2sdk-1.21.0.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 2021-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_PEP517="setuptools" -PYTHON_COMPAT=( python3_10 python3_11 python3_12 ) -inherit distutils-r1 - -DESCRIPTION="The client library for BackBlaze's B2 product" -HOMEPAGE="https://github.com/Backblaze/b2-sdk-python" -SRC_URI="https://github.com/Backblaze/b2-sdk-python/releases/download/v${PV}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -PATCHES=( - "${FILESDIR}/${PN}-1.17.2-disable-requirement-installation.patch" -) - -RDEPEND=" - $(python_gen_cond_dep ' - >=dev-python/logfury-1.0.1[${PYTHON_USEDEP}] - >=dev-python/requests-2.9.1[${PYTHON_USEDEP}] - >=dev-python/tqdm-4.5.0[${PYTHON_USEDEP}] - ') -" - -distutils_enable_tests pytest - -BDEPEND+=" test? ( - $(python_gen_cond_dep ' - >=dev-python/pytest-mock-3.6.1[${PYTHON_USEDEP}] - >=dev-python/pytest-lazy-fixture-0.6.3[${PYTHON_USEDEP}] - ') -)" - -EPYTEST_DESELECT=( - test/integration/test_large_files.py::TestLargeFile::test_large_file - test/integration/test_raw_api.py::test_raw_api - test/integration/test_download.py - test/integration/test_upload.py - test/unit/account_info/test_sqlite_account_info.py -) diff --git a/dev-python/b2sdk/files/b2sdk-1.17.2-disable-requirement-installation.patch b/dev-python/b2sdk/files/b2sdk-1.17.2-disable-requirement-installation.patch deleted file mode 100644 index d6d1952b0..000000000 --- a/dev-python/b2sdk/files/b2sdk-1.17.2-disable-requirement-installation.patch +++ /dev/null @@ -1,22 +0,0 @@ -# This will disable the setup.py features that attempt to install missing -# requirements using pip ---- a/setup.py -+++ b/setup.py -@@ -102,7 +102,7 @@ setup( - # your project is installed. For an analysis of "install_requires" vs pip's - # requirements files see: - # https://packaging.python.org/en/latest/requirements.html -- install_requires=read_requirements(), -+ # install_requires=read_requirements(), - - # List additional groups of dependencies here (e.g. development - # dependencies). You can install these using the following syntax, -@@ -109,7 +109,7 @@ setup( - # for example: - # $ pip install -e .[dev,test] - extras_require={'doc': read_requirements('doc')}, -- setup_requires=['setuptools_scm<6.0'], -+ # setup_requires=['setuptools_scm<6.0'], - use_scm_version=True, - - # If there are data files included in your packages that need to be diff --git a/dev-python/b2sdk/files/b2sdk-1.8.0-disable-requirement-installation.patch b/dev-python/b2sdk/files/b2sdk-1.8.0-disable-requirement-installation.patch deleted file mode 100644 index 482203f24..000000000 --- a/dev-python/b2sdk/files/b2sdk-1.8.0-disable-requirement-installation.patch +++ /dev/null @@ -1,22 +0,0 @@ -# This will disable the setup.py features that attempt to install missing -# requirements using pip ---- a/setup.py -+++ b/setup.py -@@ -95,7 +95,7 @@ setup( - # your project is installed. For an analysis of "install_requires" vs pip's - # requirements files see: - # https://packaging.python.org/en/latest/requirements.html -- install_requires=requirements, -+ # install_requires=requirements, - - # List additional groups of dependencies here (e.g. development - # dependencies). You can install these using the following syntax, -@@ -111,7 +111,7 @@ setup( - 'sadisplay' - ], - }, -- setup_requires=['setuptools_scm<6.0'], # setuptools_scm>=6.0 doesn't support Python 3.5 -+ # setup_requires=['setuptools_scm<6.0'], # setuptools_scm>=6.0 doesn't support Python 3.5 - use_scm_version=True, - - # If there are data files included in your packages that need to be
