mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 14:43:27 -04:00
dev-util/bump-my-version: add 1.3.0
Signed-off-by: Anthony Ruhier <aruhier@mailbox.org>
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
DIST bump_my_version-1.2.6.tar.gz 1195328 BLAKE2B 9f483b59235d6426ef23d8cead71845b32d9f9424706c43406ec25bd877981c32977755093b80dd20e35c42be1d7c65787907cc3f6895ab63db6a8875ab70c5a SHA512 e07fd368ffa44964ed666141db6dcbb3dd29198d91239813d7b39ca77fa9704d6aad93e091b44713d80eb34be56abdd7773f6aa1b9a1c6a6bb4a8e60cf617288
|
||||
DIST bump_my_version-1.2.7.tar.gz 1198071 BLAKE2B b1d1a3550ddb3591ab20eaf0966fb88ce86a42011c65c5e51831ad6f631f2b42463586bb359d462e4e63f51a675a3e3a21f28d0cc6c61b5d3c7fe58c490f9e76 SHA512 04ef9e730b6b80ae716e477f74c220ab09f69eb44ea4c17d41f2c591452da454959819eabbae4a98206202d20f732867b18dadb054f699abefa11adda6767509
|
||||
DIST bump_my_version-1.2.7.tar.gz.provenance 9763 BLAKE2B eb77e437681188d1a0b5b6e0701f236e5fc06e5f1da3da8bfcecd2e187f2f0731fac95ae96dfbc453f24c8ac9dba125584d9860f01e0a09e256e885747c7d726 SHA512 18bfab856f0df5b13f95950c851a6eaf6ab3cc69dc09a0b9094e0c51ad646aa363269b2f26b99051dccb8ee078cf46661fc4a61fc8954a272146828b3b7007a8
|
||||
DIST bump_my_version-1.3.0.tar.gz 1142429 BLAKE2B 795bf1c8901bfbdb568bea89063e2acd1f9f4d0a74e6c8c1837a509a4992161364bbedb302bbc4a58d515c6fadcf48e2af16577286391c553b94fa995db44604 SHA512 34dd4018098cb54da77c4057a218145359b21421c7ea954d3b6e2093fc95434dfbdf4482a8edeb68765a5600fed008c351082d73009b02d42a7427f2effdf356
|
||||
DIST bump_my_version-1.3.0.tar.gz.provenance 9959 BLAKE2B 257eac527b5993bbeaa2dab5d8fa2557b2d3894bab9fd22405aca09cdc55afb2191ba3a8ca93293480b7833172146762382675d962371dd172969f153b963dc1 SHA512 956b4eec0126bddb796b5a3c16740c16681a29ef59820fcbffc62758e53ab16fa5f96129b6cdbb1237925e2fd21b5a0c7d9782eb725808340b58cbfab86e222a
|
||||
|
||||
65
dev-util/bump-my-version/bump-my-version-1.3.0.ebuild
Normal file
65
dev-util/bump-my-version/bump-my-version-1.3.0.ebuild
Normal file
@@ -0,0 +1,65 @@
|
||||
# Copyright 2023-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=hatchling
|
||||
PYTHON_COMPAT=( python3_{12..15} )
|
||||
PYPI_VERIFY_REPO="https://github.com/callowayproject/bump-my-version"
|
||||
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[${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
|
||||
}
|
||||
Reference in New Issue
Block a user