upgpkg: cloud-hypervisor 21.0-1

* New upstream release.
* Switch source to git commit from github tarball.
This commit is contained in:
George Rawlinson 2022-01-21 06:24:45 +00:00
parent 3420e8d15e
commit 46df73718e
Signed by: grawlinson
GPG Key ID: E0959FEA8B550539
1 changed files with 15 additions and 9 deletions

View File

@ -1,36 +1,42 @@
# Maintainer: George Rawlinson <grawlinson@archlinux.org> # Maintainer: George Rawlinson <grawlinson@archlinux.org>
pkgname=cloud-hypervisor pkgname=cloud-hypervisor
pkgver=20.2 pkgver=21.0
pkgrel=1 pkgrel=1
pkgdesc="A Virtual Machine Monitor for modern cloud workloads" pkgdesc="A Virtual Machine Monitor for modern cloud workloads"
url="https://www.cloudhypervisor.org" url="https://www.cloudhypervisor.org"
arch=('x86_64') arch=('x86_64')
license=('Apache') license=('Apache')
depends=('gcc-libs') depends=('gcc-libs')
makedepends=('rust') makedepends=('git' 'rust')
optdepends=('qemu-headless: for virtiofsd') optdepends=('qemu-headless: for virtiofsd')
install="$pkgname.install" install="$pkgname.install"
source=("$pkgname-$pkgver.tar.gz::https://github.com/cloud-hypervisor/cloud-hypervisor/archive/v$pkgver.tar.gz") options=('!lto')
sha512sums=('eba58f505edaa748c9884e7479b35030a611cd36b4b2bbd3b18e5c579fb7cb28815c6301f1b60c68dcf62d4c496d28d7e8b3bf13369833bc491a8b8360724eb8') _commit='95ca79974a32f3dab5987032361d0ecd2aa65512'
b2sums=('1e8d03d6913cbd186cbfd62c4151b3be453c1e4b1fa8c06232722c692c35bcfc7167d6a1318459d6742b5865b2d58d097ae373dc798ecfd7a15b171a72fcb0a3') source=("$pkgname::git+https://github.com/cloud-hypervisor/cloud-hypervisor.git#commit=$_commit")
b2sums=('SKIP')
pkgver() {
cd "$pkgname"
git describe --tags | sed 's/^v//'
}
prepare() { prepare() {
cd "$pkgname-$pkgver" cd "$pkgname"
# download dependencies # download dependencies
cargo fetch --locked --target "$CARCH-unknown-linux-gnu" cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
} }
build() { build() {
cd "$pkgname-$pkgver" cd "$pkgname"
# FTBFS: --all-features due to hypervisor not compiling # FTBFS: --all-features due to hypervisor not compiling
# cargo build --release --locked --all-features --target-dir=target # cargo build --release --frozen --all-features
cargo build --release --frozen cargo build --release --frozen
} }
package() { package() {
find "$pkgname-$pkgver/target/release" \ find "$pkgname/target/release" \
-maxdepth 1 \ -maxdepth 1 \
-executable \ -executable \
-type f \ -type f \