From 85a4b24bd243671f19cb147550a21e360e78522d Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Sun, 20 Mar 2022 02:22:41 +0100 Subject: [PATCH] dev-util/rpmlint: add 2.2.0, drop 2.0.0 Signed-off-by: Alessandro Barbieri --- dev-util/rpmlint/Manifest | 2 +- ...rpmlint-2.0.0.ebuild => rpmlint-2.2.0.ebuild} | 16 ++++------------ 2 files changed, 5 insertions(+), 13 deletions(-) rename dev-util/rpmlint/{rpmlint-2.0.0.ebuild => rpmlint-2.2.0.ebuild} (76%) diff --git a/dev-util/rpmlint/Manifest b/dev-util/rpmlint/Manifest index 9a3ca3099f..cf7b07fdff 100644 --- a/dev-util/rpmlint/Manifest +++ b/dev-util/rpmlint/Manifest @@ -1,2 +1,2 @@ -DIST rpmlint-2.0.0.tar.gz 5670600 BLAKE2B 31ce8c8c630c967204d9fc5768a6689656e941d0498b53274e4a147ebd15eeafeed0fe14a0df258201c105a03216a6b32c0600008605778ea2c8306ec5d76e65 SHA512 f8f65ec90306bf59c0e31a8a3434477c38b8fb08aa2798b805afd57a506b00110797d514431e69dcb8dde5a54afad8606d8e1c973b8584c47cebed1420d6d61c DIST rpmlint-2.1.0.tar.gz 5670384 BLAKE2B cb7947956324a0c9e10d2bdc1e5d9d2354c37b748c97c3bbe0426104898e7ddc96bcad84fe7f03952688256c0f20da43b19ab98969056063f647a60851c841a7 SHA512 75df896259b5c340c528357309b2e5e1ce574b7e5e55dff573a1a7808faa3617da799df37e7e65064952a16549225beb16c1e12ba22f2fe4976a69696ed66f46 +DIST rpmlint-2.2.0.tar.gz 5736449 BLAKE2B 765ca9b4e3f594b85e70fd85f0e7207c22e1d3b9503361afd3af095101f55aeed84ecb204bf0f8a64b8df4daf9e9fb94f536db80201a3078ec93fa4d38ef3909 SHA512 5e16747231e3f815b405db194e5d1768d19a2b378db674f57b1ebcba17d0f3320626e4c2b648e79cc180621444439c2c84fd176cd1e0fd7b6585d50492a7f272 diff --git a/dev-util/rpmlint/rpmlint-2.0.0.ebuild b/dev-util/rpmlint/rpmlint-2.2.0.ebuild similarity index 76% rename from dev-util/rpmlint/rpmlint-2.0.0.ebuild rename to dev-util/rpmlint/rpmlint-2.2.0.ebuild index 60fc536ec7..bbdf5ec061 100644 --- a/dev-util/rpmlint/rpmlint-2.0.0.ebuild +++ b/dev-util/rpmlint/rpmlint-2.2.0.ebuild @@ -1,10 +1,11 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" +EAPI=8 DISTUTILS_SINGLE_IMPL=1 -PYTHON_COMPAT=( python3_{8,9} ) +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..9} ) inherit distutils-r1 @@ -56,12 +57,3 @@ DEPEND=" PATCHES=( "${FILESDIR}/no-coverage.patch" ) distutils_enable_tests pytest - -python_test() { - pytest -vv \ - --deselect test/test_speccheck.py::test_check_invalid_url[spec/SpecCheck2] \ - --deselect test/test_lint.py::test_run_installed_and_no_files \ - --deselect test/test_lint.py::test_run_installed[packages0] \ - --deselect test/test_ldd_parser.py::test_dependencies \ - || die -}