mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-30 09:22:57 +02:00
lxd: update to 5.2
This commit is contained in:
parent
9937e8d2ae
commit
1536552792
2 changed files with 14 additions and 8 deletions
|
@ -6,10 +6,6 @@ fi
|
|||
if ! mountpoint -q "${_systemd_cgrp}"; then
|
||||
mount -t cgroup -o none,name=systemd cgroup ${_systemd_cgrp}
|
||||
fi
|
||||
# workaround lxc bug -- next release of lxc should obsolete this
|
||||
if [ -e /sys/fs/cgroup/cpuset/cgroup.clone_children ]; then
|
||||
echo 1 > /sys/fs/cgroup/cpuset/cgroup.clone_children 2>/dev/null || :
|
||||
fi
|
||||
|
||||
[ -r conf ] && . ./conf
|
||||
exec lxd --group lxd ${OPTS:- --verbose}
|
||||
|
|
|
@ -1,12 +1,16 @@
|
|||
# Template file for 'lxd'
|
||||
pkgname=lxd
|
||||
version=4.19
|
||||
version=5.2
|
||||
revision=1
|
||||
build_style=go
|
||||
go_import_path=github.com/lxc/lxd
|
||||
go_build_tags=libsqlite3
|
||||
go_package="${go_import_path}/lxd ${go_import_path}/lxc
|
||||
${go_import_path}/lxd-p2c ${go_import_path}/fuidshift"
|
||||
go_package="${go_import_path}/lxd
|
||||
${go_import_path}/lxc
|
||||
${go_import_path}/lxc-to-lxd
|
||||
${go_import_path}/fuidshift
|
||||
${go_import_path}/lxd-benchmark
|
||||
${go_import_path}/lxd-user"
|
||||
hostmakedepends="pkg-config git"
|
||||
makedepends="lxc-devel acl-devel dqlite-devel eudev-libudev-devel"
|
||||
depends="lxc acl acl-progs rsync squashfs-tools xz dnsmasq iptables attr-progs"
|
||||
|
@ -16,12 +20,18 @@ license="Apache-2.0"
|
|||
homepage="https://linuxcontainers.org/lxd"
|
||||
changelog="https://github.com/lxc/lxd/releases"
|
||||
distfiles="https://linuxcontainers.org/downloads/lxd/lxd-${version}.tar.gz"
|
||||
checksum=6e4cf6cb1549e1b56802d64ad24d812914e0c0102bfcf146bb18a8dcd1fbab57
|
||||
checksum=e22d2b34a1848d33b2080b2b1c82355afb6d36fdfe49e67f44b3749edbc02e4c
|
||||
system_groups="lxd"
|
||||
|
||||
# whitelist dqlite LDFLAGS
|
||||
export CGO_LDFLAGS_ALLOW='-Wl,-z,now'
|
||||
|
||||
post_build() {
|
||||
# these need special tags and/or LDFLAGS
|
||||
CGO_LDFLAGS="$CGO_LDFLAGS -static" go install -p "$XBPS_MAKEJOBS" -mod=vendor -x -tags "agent" -ldflags "${go_ldflags}" "${go_import_path}/lxd-agent"
|
||||
go install -p "$XBPS_MAKEJOBS" -mod=vendor -x -tags "netgo" -ldflags "${go_ldflags}" "${go_import_path}/lxd-migrate"
|
||||
}
|
||||
|
||||
post_install() {
|
||||
vinstall scripts/bash/lxd-client 644 /usr/share/bash-completion/completions lxd
|
||||
vsv lxd
|
||||
|
|
Loading…
Add table
Reference in a new issue