commit:     d96bda2f8777a1baff7e87692b01e94061118218
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  8 10:57:09 2024 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Mar  8 11:35:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d96bda2f

dev-util/rbtools: drop 4.0-r1, 4.0-r2

Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-util/rbtools/Manifest              |  1 -
 dev-util/rbtools/rbtools-4.0-r1.ebuild | 66 ----------------------------------
 dev-util/rbtools/rbtools-4.0-r2.ebuild | 59 ------------------------------
 3 files changed, 126 deletions(-)

diff --git a/dev-util/rbtools/Manifest b/dev-util/rbtools/Manifest
index e93bb470b685..58e5535b93b2 100644
--- a/dev-util/rbtools/Manifest
+++ b/dev-util/rbtools/Manifest
@@ -1,2 +1 @@
-DIST RBTools-4.0.tar.gz 397113 BLAKE2B 
25d743a81e22e00575c6bc2a08d5bab04c35e554f6a1a17090eb55bbcaf0e8e5f4c2ad6a68a0415acb76c093c99b7bb223aeccd68392877bae97eac354578002
 SHA512 
d2dbe94dbd63fbd11ef0fc8c08eecbd7000df23388afe21d30151854ff4ef2b3a6c780c60ee52408832a146570a1f7b3f0269fc0c831953e871d2dda1ed8cb3f
 DIST rbtools-4.1.tar.gz 619541 BLAKE2B 
9b1aeca4f139a0189affb873363dba8f6d13eb954d4872939c543f6d91c00b09b2452cc379d4d99450c05d3d44a1996e910ff512ba9849292a7b705ce01be654
 SHA512 
58aa58ce6c55d4d3be9f221c493c8a3c15537776ff4e28be1ea44c0441f1dd9877ac9145066fdceb90d392c75cf29ec80e7efd154b0a2f1893422b65a0189ea0

diff --git a/dev-util/rbtools/rbtools-4.0-r1.ebuild 
b/dev-util/rbtools/rbtools-4.0-r1.ebuild
deleted file mode 100644
index 928f6fd60c97..000000000000
--- a/dev-util/rbtools/rbtools-4.0-r1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{9,10,11} )
-
-inherit distutils-r1
-
-MY_PN="RBTools"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Command line tools for use with Review Board"
-HOMEPAGE="https://www.reviewboard.org/";
-SRC_URI="https://downloads.reviewboard.org/releases/${MY_PN}/$(ver_cut 
1-2)/${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="
-       >=dev-python/importlib-metadata-4.12[${PYTHON_USEDEP}]
-       dev-python/colorama[${PYTHON_USEDEP}]
-       >=dev-python/pydiffx-1.1[${PYTHON_USEDEP}]
-       =dev-python/pydiffx-1.1*[${PYTHON_USEDEP}]
-       >=dev-python/six-1.8.0[${PYTHON_USEDEP}]
-       dev-python/texttable[${PYTHON_USEDEP}]
-       >=dev-python/typing-extensions-4.3.0[${PYTHON_USEDEP}]
-       dev-python/tqdm[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       test? (
-               >=dev-python/kgb-6.1[${PYTHON_USEDEP}]
-               dev-python/pytest-env[${PYTHON_USEDEP}]
-               dev-vcs/git
-               dev-vcs/mercurial
-       )
-"
-
-DOCS=( AUTHORS NEWS README.md )
-
-S=${WORKDIR}/${MY_P}
-
-distutils_enable_tests pytest
-
-src_prepare() {
-       default
-
-       # Avoid tests requiring unpackaged test data
-       rm -f rbtools/clients/tests/test_scanning.py || die
-
-       # Avoid repository specific tests to avoid dependencies on them
-       rm -f rbtools/clients/tests/test_{cvs,git,mercurial,svn}.py || die
-
-       # Fix test that appears to expect case-insentive comparison
-       sed -i -e 's/TEST CONTENT/Test content/' 
rbtools/utils/tests/test_console.py || die
-
-       # Loosen importlib_metadata dependency
-       sed -i -e '/importlib_metadata/ s/~=/>=/' RBTools.egg-info/requires.txt 
setup.py || die
-}
-
-python_test() {
-       distutils_install_for_testing
-       distutils-r1_python_test
-}

diff --git a/dev-util/rbtools/rbtools-4.0-r2.ebuild 
b/dev-util/rbtools/rbtools-4.0-r2.ebuild
deleted file mode 100644
index 47594aae9c17..000000000000
--- a/dev-util/rbtools/rbtools-4.0-r2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-MY_PN="RBTools"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Command line tools for use with Review Board"
-HOMEPAGE="https://www.reviewboard.org/";
-SRC_URI="https://downloads.reviewboard.org/releases/${MY_PN}/$(ver_cut 
1-2)/${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-       >=dev-python/importlib-metadata-4.12[${PYTHON_USEDEP}]
-       dev-python/colorama[${PYTHON_USEDEP}]
-       >=dev-python/pydiffx-1.1[${PYTHON_USEDEP}]
-       =dev-python/pydiffx-1.1*[${PYTHON_USEDEP}]
-       >=dev-python/six-1.8.0[${PYTHON_USEDEP}]
-       dev-python/texttable[${PYTHON_USEDEP}]
-       >=dev-python/typing-extensions-4.3.0[${PYTHON_USEDEP}]
-       dev-python/tqdm[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       test? (
-               >=dev-python/kgb-6.1[${PYTHON_USEDEP}]
-               dev-python/pytest-env[${PYTHON_USEDEP}]
-               dev-vcs/git
-               dev-vcs/mercurial
-       )
-"
-
-DOCS=( AUTHORS NEWS README.md )
-
-distutils_enable_tests pytest
-
-src_prepare() {
-       default
-
-       # Avoid tests requiring unpackaged test data
-       rm -f rbtools/clients/tests/test_scanning.py || die
-
-       # Avoid repository specific tests to avoid dependencies on them
-       rm -f rbtools/clients/tests/test_{cvs,git,mercurial,svn}.py || die
-
-       # Fix test that appears to expect case-insentive comparison
-       sed -i -e 's/TEST CONTENT/Test content/' 
rbtools/utils/tests/test_console.py || die
-}

Reply via email to