blob: 9fb579a7b429f44e39724c8017b9558a00522745 (
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
71
72
73
74
75
76
77
78
79
|
# Maintainer: Robert Dannenbring <robert.dannenbring@gmail.com>
pkgname=hyprwrc-git
_pkgname=hyprwrc
pkgver=0.1.0.r11.g671599c
pkgrel=1
pkgdesc="Build Hyprland window rules by clicking the window"
arch=('any')
url="https://github.com/rdannenbring/HyprWindowRuleCreator"
license=('MIT')
# gtk4/libadwaita come in through python-gobject's own deps, but naming them
# is honest: this app will not start without either.
depends=(
'python'
'python-gobject'
'gtk4'
'libadwaita'
'hyprland'
'slurp'
)
optdepends=(
'gtksourceview5: syntax highlighting in the generated-rule pane'
)
makedepends=('git' 'python-build' 'python-installer' 'python-setuptools' 'python-wheel')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("$_pkgname::git+$url.git")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/$_pkgname"
# No tags yet; fall back to 0.1.0 plus commit count so upgrades still order
# correctly. Once a tag exists the first branch takes over.
#
# The describe is tested on its own rather than piped into sed with a `||`
# fallback: a pipeline reports the *last* command's status, and sed happily
# succeeds on empty input, so the fallback would never run and pkgver would
# come out empty.
local described
if described=$(git describe --long --tags 2>/dev/null) && [[ -n $described ]]; then
printf '%s' "$described" | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
else
printf '0.1.0.r%s.g%s' \
"$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
fi
}
# Every python call below is /usr/bin/python, spelled out. A user running mise,
# pyenv or asdf has a shim ahead of it on PATH, and makepkg inherits that PATH;
# the build then dies with "No module named build", because python-build was
# installed for the system interpreter and not for the shim.
build() {
cd "$srcdir/$_pkgname"
/usr/bin/python -m build --wheel --no-isolation
}
check() {
cd "$srcdir/$_pkgname"
# Only the tests that need no compositor. The rest talk to a running
# Hyprland over its socket, which a build chroot does not have.
local failed=0
for t in tests/test_emit.py tests/test_picker.py tests/test_scan.py \
tests/test_settings.py tests/test_templates.py tests/test_branding.py \
tests/test_merge.py; do
PYTHONPATH="$PWD" /usr/bin/python "$t" || failed=1
done
return $failed
}
package() {
cd "$srcdir/$_pkgname"
/usr/bin/python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 packaging/hyprwrc.desktop \
"$pkgdir/usr/share/applications/$_pkgname.desktop"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
}
|