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@posteo.net>
This commit is contained in:
Lucio Sauer
2026-02-09 18:51:14 +01:00
parent f160bf9fb8
commit 75ec4f0f98
2 changed files with 0 additions and 65 deletions

View File

@@ -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

View File

@@ -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 "you@example.com" || die
git config --global user.name "Your Name" || die
distutils-r1_src_test
}