blob: 9c0c8fb213cfd702b969d0d4b223217fa916b919 (
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
|
# Maintainer: Dominik Csapak <dominik.csapak@gmail.com>
# Maintainer: Thomas Lamprecht <thomas@lamprecht.org>
pkgname=proxmox-backup-client
pkgver=3.3.0
pkgrel=1
pkgdesc="Client for Proxmox Backup Server"
arch=('x86_64' 'aarch64')
url="https://pbs.proxmox.com"
license=('AGPL3')
depends=(
'acl'
'fuse3'
'gcc-libs'
'openssl'
)
makedepends=('cargo' 'clang' 'git' 'llvm' 'patchelf' 'python-docutils' 'python-sphinx')
options=(!lto)
source=(
"$pkgname-$pkgver::git://git.proxmox.com/git/proxmox-backup.git#tag=v$pkgver"
"proxmox::git://git.proxmox.com/git/proxmox.git#commit=8a1166be4b404a53abf12488a0c5686703eebf43"
"proxmox-fuse::git://git.proxmox.com/git/proxmox-fuse.git"
"pxar::git://git.proxmox.com/git/pxar.git"
"pathpatterns::git://git.proxmox.com/git/pathpatterns.git"
"h2::git+https://github.com/hyperium/h2.git#tag=v0.4.7"
"0001-re-route-dependencies-not-available-on-crates.io-to-.patch"
"0002-docs-drop-all-but-client-man-pages.patch"
"0003-cargo-downgrade-http-to-0.2.12.patch"
"0004-cargo-use-local-patched-h2-dependency.patch"
"elf-strip-unused-dependencies.sh"
)
# either a git repo or tracked by this git repo, so not much gained by encoding
# checksums here in this git repo
sha512sums=(
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
)
_apply() {
echo "applying patch '$1'"
patch --forward --strip=1 --input="${srcdir}/$1"
}
prepare() {
cd "$pkgname-$pkgver"
rm .cargo/config.toml # drop Debian-style redirect of crates.io to local registry
_apply 0001-re-route-dependencies-not-available-on-crates.io-to-.patch
_apply 0002-docs-drop-all-but-client-man-pages.patch
(cd "${srcdir}/h2"; _apply 0003-cargo-downgrade-http-to-0.2.12.patch)
_apply 0004-cargo-use-local-patched-h2-dependency.patch
# fetch all in prepare to allow build() to be run offline
cargo fetch --target "$CARCH-unknown-linux-gnu"
}
build() {
cd "$pkgname-$pkgver"
cargo build --release \
--package proxmox-backup-client \
--bin proxmox-backup-client \
--bin dump-catalog-shell-cli \
--package pxar-bin \
--bin pxar \
;
# fixup rust linking "feature" which links in all dependencies somewhere used
# in the crate, even if not referenced at all in this binary...
"${srcdir}/elf-strip-unused-dependencies.sh" "target/release/proxmox-backup-client"
"${srcdir}/elf-strip-unused-dependencies.sh" "target/release/pxar"
cd docs
DEB_VERSION_UPSTREAM="$pkgver" DEB_VERSION="${pkgver%.*}" BUILD_MODE=release make proxmox-backup-client.1 pxar.1
}
check() {
cd "$pkgname-$pkgver"
mkdir -p target/testout/
cargo test --release \
--package proxmox-backup-client \
--bin proxmox-backup-client \
--package pxar-bin \
--bin pxar \
;
}
package() {
cd "$pkgname-$pkgver"
install -Dm755 "target/release/proxmox-backup-client" "$pkgdir/usr/bin/proxmox-backup-client"
install -Dm755 "target/release/pxar" "$pkgdir/usr/bin/pxar"
install -Dm644 "docs/output/man/proxmox-backup-client.1" "$pkgdir/usr/share/man/man1/proxmox-backup-client.1"
install -Dm644 "docs/output/man/pxar.1" "$pkgdir/usr/share/man/man1/pxar.1"
install -Dm644 "debian/proxmox-backup-client.bc" "$pkgdir/usr/share/bash-completion/completions/proxmox-backup-client"
install -Dm644 "debian/pxar.bc" "$pkgdir/usr/share/bash-completion/completions/pxar"
install -Dm644 "zsh-completions/_proxmox-backup-client" "$pkgdir/usr/share/zsh/site-functions/_proxmox-backup-client"
install -Dm644 "zsh-completions/_pxar" "$pkgdir/usr/share/zsh/site-functions/_pxar"
}
|