* update lxd to 6.2-1

This commit is contained in:
Alexander Baldeck 2025-01-15 22:04:10 +01:00
parent c24a131690
commit 4666c44792
2 changed files with 11 additions and 10 deletions

View File

@ -1,7 +1,7 @@
pkgbase = lxd
pkgdesc = Daemon based on liblxc offering a REST API to manage containers
pkgver = 6.1
pkgrel = 2
pkgver = 6.2
pkgrel = 1
url = https://ubuntu.com/lxd
arch = x86_64
arch = powerpc64le
@ -33,14 +33,14 @@ pkgbase = lxd
optdepends = systemd-libs: unix device hotplug support
optdepends = apparmor: apparmor support
options = !debug
source = https://github.com/canonical/lxd/releases/download/lxd-6.1/lxd-6.1.tar.gz
source = https://github.com/canonical/lxd/releases/download/lxd-6.1/lxd-6.1.tar.gz.asc
source = https://github.com/canonical/lxd/releases/download/lxd-6.2/lxd-6.2.tar.gz
source = https://github.com/canonical/lxd/releases/download/lxd-6.2/lxd-6.2.tar.gz.asc
source = lxd.socket
source = lxd.service
source = lxd.sysusers
validpgpkeys = 602F567663E593BCBD14F338C638974D64792D67
validpgpkeys = ED1CA1E7A6F80E22E5CB2DA84ACE106615754614
sha256sums = ef073f19b5e666f306232d7c086ec1f39bbc14672237f2fd7b65d259caead1b9
sha256sums = 44f98776b9e9e1d720da89b520d75bf8b7c3467507b2d24ada207a160ec961f3
sha256sums = SKIP
sha256sums = b89a725223ef72b25eab25184084d069af312f8c23612c57fdb75427a510232e
sha256sums = 102d1d54186e0fc606a58f030231d76df6bd662b16dfd8f946e1f48e2b473b54

View File

@ -7,8 +7,8 @@
# Contributer: nightuser <nightuser.android at gmail.com>
pkgname=lxd
pkgver=6.1
pkgrel=2
pkgver=6.2
pkgrel=1
pkgdesc="Daemon based on liblxc offering a REST API to manage containers"
arch=(x86_64 powerpc64le riscv64)
url="https://ubuntu.com/lxd"
@ -33,7 +33,7 @@ source=("https://github.com/canonical/lxd/releases/download/${pkgname}-${pkgver}
"lxd.sysusers")
validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67' # Stéphane Graber <stgraber@stgraber.org>
'ED1CA1E7A6F80E22E5CB2DA84ACE106615754614') # Thomas Parrott <tomp@tomp.uk>
sha256sums=('ef073f19b5e666f306232d7c086ec1f39bbc14672237f2fd7b65d259caead1b9'
sha256sums=('44f98776b9e9e1d720da89b520d75bf8b7c3467507b2d24ada207a160ec961f3'
'SKIP'
'b89a725223ef72b25eab25184084d069af312f8c23612c57fdb75427a510232e'
'102d1d54186e0fc606a58f030231d76df6bd662b16dfd8f946e1f48e2b473b54'
@ -82,8 +82,9 @@ package() {
rm -rf doc/html
cp -vr doc/* "${pkgdir}/usr/share/doc/lxd/"
# Bash completions
install -v -p -Dm644 "scripts/bash/lxd-client" "${pkgdir}/usr/share/bash-completion/completions/lxd"
./bin/lxc completion bash | install -Dm644 /dev/stdin "$pkgdir/usr/share/bash-completion/completions/lxc"
./bin/lxc completion zsh | install -Dm644 /dev/stdin "$pkgdir/usr/share/zsh/site-functions/_lxc"
./bin/lxc completion fish | install -Dm644 /dev/stdin "$pkgdir/usr/share/fish/vendor_completions.d/lxc.fish"
}
# vim:set ts=2 sw=2 et: