blob: 1586c03efc8922536cee50a54e2da6b00958e70d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Maintainer: getzze <getzze at gmail dot com>
pkgname=python-bump-my-version
_name=$( echo ${pkgname#python-} | tr '-' '_' )
pkgver=1.1.1
pkgrel=1
pkgdesc='A small command line tool to simplify releasing software by updating all version strings'
arch=(any)
url=https://github.com/callowayproject/bump-my-version
license=(MIT)
depends=(
python
python-click
python-pydantic
python-pydantic-settings
python-questionary
python-rich
python-rich-click
python-tomlkit
python-wcmatch
python-httpx
)
makedepends=(python-build python-installer python-wheel python-hatch)
checkdepends=(
git
mercurial
python-pytest
python-uv
python-freezegun
python-pytest-cov
python-pytest-localserver
python-pytest-mock
python-pytest-xdist
)
source=(https://github.com/callowayproject/bump-my-version/releases/download/${pkgver}/${_name}-${pkgver}.tar.gz)
sha256sums=('2f590e0eabe894196289c296c52170559c09876454514ae8fce5db75bd47289e')
build() {
cd "$_name-$pkgver"
python -m build --wheel --no-isolation
}
check() {
cd "$_name-$pkgver"
# Use pytest-xdist to speed up the tests, although it is not used upstream
GIT_AUTHOR_NAME="Your Name" EMAIL="you@example.com" uv run pytest --no-cov -n auto tests/
}
package() {
cd "$_name-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
}
|