blob: 062273cd73ba5bfc110120a89536ffd0bc8d11c7 (
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
59
60
61
62
63
64
65
66
67
68
69
70
|
# Maintainer:
# Contributor: Stefan Tatschner <stefan@rumpelsepp.org>
_pkgname="pyinfra"
pkgname="$_pkgname"
pkgver=3.7
pkgrel=1
pkgdesc="Automate infrastructure super fast at massive scale"
url="https://github.com/pyinfra-dev/pyinfra"
license=('MIT')
arch=('any')
depends=(
'python'
'python-click'
'python-dateutil'
'python-distro'
'python-gevent'
'python-jinja'
'python-packaging'
'python-paramiko'
'python-pydantic'
'python-typeguard'
'python-typing_extensions'
)
makedepends=(
'python-build'
'python-hatch'
'python-installer'
'python-wheel'
)
_pkgsrc="$_pkgname-$pkgver"
_pkgext="tar.gz"
source=(
"$_pkgsrc.$_pkgext"::"$url/archive/v$pkgver.$_pkgext"
'1525_remove_dsskey.patch'
)
sha256sums=(
'0cddc5ce4e8ff371883c03c15659327f825d3e37f569a81ec0667610b3147ac5'
'6e83a040153db0762e4ae632fa06b82e1af21addf6c1deed98f8f8a8c0ca49e3'
)
prepare() (
python -m venv venv
source ./venv/bin/activate
pip install toml-cli
cd "$_pkgsrc"
rm -rf tests
# uv-dynamic-versioning doesn't work with tarball
toml set --toml-path pyproject.toml build-system.requires '["hatchling"]' --to-array
toml unset --toml-path pyproject.toml project.dynamic
toml unset --toml-path pyproject.toml tool.hatch.version
toml set --toml-path pyproject.toml project.version "$pkgver"
patch -Np1 -F100 -i ../1525_remove_dsskey.patch
)
build() {
cd "$_pkgsrc"
python -m build --wheel --no-isolation --skip-dependency-check
}
package() {
cd "$_pkgsrc"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE.md -t "$pkgdir/usr/share/licenses/$pkgname/"
}
|