From b78b06edf0dab05e2198c52404cdf7851d0d7d12 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 3 May 2026 20:33:59 -0400 Subject: [PATCH] dev-gap/gaplint: add 1.6.1, drop 1.5.1 Closes: https://bugs.gentoo.org/973822 Signed-off-by: Michael Orlitzky --- dev-gap/gaplint/Manifest | 2 +- ...gaplint-1.5.1.ebuild => gaplint-1.6.1.ebuild} | 16 +++------------- 2 files changed, 4 insertions(+), 14 deletions(-) rename dev-gap/gaplint/{gaplint-1.5.1.ebuild => gaplint-1.6.1.ebuild} (59%) diff --git a/dev-gap/gaplint/Manifest b/dev-gap/gaplint/Manifest index 67bfba566de6f..db79c96094176 100644 --- a/dev-gap/gaplint/Manifest +++ b/dev-gap/gaplint/Manifest @@ -1 +1 @@ -DIST gaplint-1.5.1.gh.tar.gz 699987 BLAKE2B 3185a8abe701aaa8d30a302a08b93c1052957cdecd829e74be5045de462a54c2d7ad87ac677180552d69c130984f809c97651fa337410748d04cdbfe3caef271 SHA512 187e6bf4be11868d1e633f57ba1377347ad0be5139238bdffe9a917fd94b99357c6842bf0c81c8b291774cf69f856322427c24368264d7f6a53e4751f5b81bf4 +DIST gaplint-1.6.1.gh.tar.gz 701406 BLAKE2B 9d43373e8d23b3fc86866a6119997bbc56636982d53ab13e3077750b9345ddfbd5f8faa55e717998c297074f729238ab9df9f9e30dcf18a47c344397d00850d5 SHA512 99d385b30c0015e3586cd3638dd408093798b01a314368f05d7e45aaa24f3f07f784ae41054d787d022137de128a655a792bde2748c4e85076542451fef821b1 diff --git a/dev-gap/gaplint/gaplint-1.5.1.ebuild b/dev-gap/gaplint/gaplint-1.6.1.ebuild similarity index 59% rename from dev-gap/gaplint/gaplint-1.5.1.ebuild rename to dev-gap/gaplint/gaplint-1.6.1.ebuild index 65a9560754efb..cedd61070e8c0 100644 --- a/dev-gap/gaplint/gaplint-1.5.1.ebuild +++ b/dev-gap/gaplint/gaplint-1.6.1.ebuild @@ -1,10 +1,11 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{11..13} ) +PYTHON_COMPAT=( python3_{12..14} ) +EPYTEST_PLUGINS=() # hide pkgcheck warning in EAPI=8 inherit distutils-r1 @@ -26,14 +27,3 @@ RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}] dev-python/rich[${PYTHON_USEDEP}]" distutils_enable_tests pytest - -src_prepare() { - default - # The gaplint argument parser has workarounds for "pytest" and - # "py.test", but we run pytest with "python -m pytest": - # - # https://github.com/james-d-mitchell/gaplint/issues/57 - # - sed -e 's/py.test/__main__.py/' -i gaplint.py \ - || die "failed to further hack the existing pytest hack" -}