blob: 12611675c6923c589f50fd4385d1b91be4c67817 (
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
# Maintainer: Patrick Northon <northon_patrick3@yahoo.ca>
: ${_enable_flatpak:=1}
_pkgname='pat-aur'
pkgbase=${_pkgname}-git
pkgname=(${_pkgname}-client-git ${_pkgname}-client-firmware-git ${_pkgname}-netns-exec-git ${_pkgname}-host-git)
pkgver=r596.c86beaa
pkgrel=3
pkgdesc='AUR helper and tool to build Arch Linux packages in clean containers.'
url="https://gitlab.com/patlefort/${_pkgname}"
license=('GPL-3.0-only' 'MIT')
depends=()
makedepends=('git' 'libxslt' 'docbook-xsl' 'cmake' 'ninja')
arch=('x86_64')
source=(
"git+${url}.git"
'git+https://github.com/zzamboni/elvish-themes.git'
'git+https://github.com/zzamboni/elvish-modules.git'
'git+https://github.com/href/elvish-gitstatus.git')
sha256sums=('SKIP'
'SKIP'
'SKIP'
'SKIP')
if ((_enable_flatpak)); then
pkgname+=(${_pkgname}-client-flatpak-git)
makedepends+=('boost' 'boost-libs' 'flatpak')
fi
_srcdir="${_pkgname}"
pkgver() {
cd "${_srcdir}"
( set -o pipefail
git describe --tags --abbrev=7 --long 2>/dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
)
}
prepare() {
cd "${_srcdir}"
git submodule init
git config 'submodule.modules/third_party/github.com/href/elvish-gitstatus.url' "$srcdir/elvish-gitstatus"
git config 'submodule.modules/third_party/github.com/zzamboni/elvish-themes.url' "$srcdir/elvish-themes"
git config 'submodule.modules/third_party/github.com/zzamboni/elvish-modules.url' "$srcdir/elvish-modules"
git -c 'protocol.file.allow=always' submodule update
}
build() {
cmake -G Ninja -S "${_srcdir}" -B build -DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_PREFIX=/usr \
-DPATAUR_VERSION="$pkgver" \
-DPATAUR_FLATPAK="$_enable_flatpak"
cmake --build build
}
package_pat-aur-client-git() {
depends+=('elvish' 'pacutils' 'expac' 'gzip' 'curl')
provides=(${_pkgname}-client)
conflicts=(${_pkgname}-client)
pkgdesc+=' (client only)'
optdepends+=(
'pat-aur-client-flatpak-git: check flatpak updates.'
'pat-aur-client-firmware-git: check firmware updates.'
)
DESTDIR="${pkgdir}" cmake --install build
}
package_pat-aur-client-flatpak-git() {
arch=('any')
depends+=('pat-aur-client-git' 'libboost_json.so' 'flatpak')
pkgdesc='Flatpak updates support for pat-aur.'
}
package_pat-aur-client-firmware-git() {
arch=('any')
depends+=('pat-aur-client-git' 'fwupd')
pkgdesc='firmware updates support for pat-aur.'
}
# This will make netns-exec tool actually work. Without this, the tool is impotent. This is an optional install as it is a setuid
# executable and not everyone will need or want network namespaces for pat-aur.
package_pat-aur-netns-exec-git() {
arch=('any')
depends+=('pat-aur-client-git')
pkgdesc='Execute a process in a specified network namespace.'
install="${pkgbase}-netns-exec.install"
}
package_pat-aur-host-git() {
arch=('any')
depends+=(
'pat-aur-client-git'
'dumb-init'
'pacutils'
'bubblewrap'
'ninja'
'git'
'python'
'jq')
optdepends+=(
'seccomp-filtered-run: seccomp filters.'
'sshfs: remote connection.'
'socat: remote connection.'
'systemd: cgroups support.'
'rsync: rsync download agent.'
'openssh: scp download agent.'
'pat-aur-netns-exec-git: build in network namespace.'
)
provides=(${_pkgname}-host)
conflicts=(${_pkgname}-host)
pkgdesc+=' (host machine)'
install="${pkgbase}.install"
}
|