commit: 75ec4f0f980c4d22e2721c3536ab2d4d96bc7752
Author: Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Mon Feb 9 17:51:14 2026 +0000
Commit: Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Mon Feb 9 18:44:38 2026 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=75ec4f0f
dev-util/bump-my-version: drop 1.2.4
* <dev-python/click-8.2.2 no longer in ::gentoo
Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>
dev-util/bump-my-version/Manifest | 1 -
.../bump-my-version/bump-my-version-1.2.4.ebuild | 64 ----------------------
2 files changed, 65 deletions(-)
diff --git a/dev-util/bump-my-version/Manifest
b/dev-util/bump-my-version/Manifest
index 6b6cc085db..e39f8dd7c5 100644
--- a/dev-util/bump-my-version/Manifest
+++ b/dev-util/bump-my-version/Manifest
@@ -1,2 +1 @@
-DIST bump_my_version-1.2.4.tar.gz 1157991 BLAKE2B
ed7f016270ba2b84d82471cd2657b6e82cd6cb6ca8a5cc0b609af5603a4b3237119296f3fe0b4e9e0f6a0bf60e252d7377ebfdbbe05de594811891b83d6d7fa8
SHA512
9e508a23267b068f6a2c153ceb8e83e0fcb6d10b8b363a05fc79bddc1a7b513e58c89d96e78018bf398414ba587e3063984ba86c6f5769b829def87e3d9a3b01
DIST bump_my_version-1.2.6.tar.gz 1195328 BLAKE2B
9f483b59235d6426ef23d8cead71845b32d9f9424706c43406ec25bd877981c32977755093b80dd20e35c42be1d7c65787907cc3f6895ab63db6a8875ab70c5a
SHA512
e07fd368ffa44964ed666141db6dcbb3dd29198d91239813d7b39ca77fa9704d6aad93e091b44713d80eb34be56abdd7773f6aa1b9a1c6a6bb4a8e60cf617288
diff --git a/dev-util/bump-my-version/bump-my-version-1.2.4.ebuild
b/dev-util/bump-my-version/bump-my-version-1.2.4.ebuild
deleted file mode 100644
index 6e10a751b6..0000000000
--- a/dev-util/bump-my-version/bump-my-version-1.2.4.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 2023-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( python3_{11..13} )
-inherit click-app distutils-r1 pypi
-
-DESCRIPTION="Version bump your Python project"
-HOMEPAGE="
- https://pypi.org/project/bump-my-version/
- https://callowayproject.github.io/bump-my-version/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
- <dev-python/click-8.2.2[${PYTHON_USEDEP}]
- >=dev-python/httpx-0.28.1[${PYTHON_USEDEP}]
- >=dev-python/pydantic-2.0[${PYTHON_USEDEP}]
- dev-python/pydantic-settings[${PYTHON_USEDEP}]
- dev-python/questionary[${PYTHON_USEDEP}]
- dev-python/rich[${PYTHON_USEDEP}]
- dev-python/rich-click[${PYTHON_USEDEP}]
- dev-python/tomlkit[${PYTHON_USEDEP}]
- >=dev-python/wcmatch-8.5.1[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-vcs/git
- dev-vcs/mercurial
- dev-python/freezegun[${PYTHON_USEDEP}]
- )
-"
-
-DOCS=( {CHANGELOG,CODE_OF_CONDUCT,CONTRIBUTING,README}.md )
-
-EPYTEST_PLUGINS=(
- pytest-localserver
- pytest-mock
-)
-EPYTEST_DESELECT=(
-
tests/test_cli/test_bump.py::test_detects_bad_or_missing_version_component
-)
-
-distutils_enable_tests pytest
-
-click-app_enable_completions bump-my-version
-
-python_test() {
- epytest -o "addopts="
-}
-
-src_test() {
- local -x TZ="UTC"
-
- git config --global user.email "[email protected]" || die
- git config --global user.name "Your Name" || die
-
- distutils-r1_src_test
-}