upgpkg: cloud-hypervisor 17.0-1
New upstream release.
This commit is contained in:
parent
40a7250c58
commit
95802d784e
1 changed files with 15 additions and 7 deletions
|
@ -1,25 +1,33 @@
|
||||||
# Maintainer:
|
# Maintainer: George Rawlinson <grawlinson@archlinux.org>
|
||||||
|
|
||||||
pkgname=cloud-hypervisor
|
pkgname=cloud-hypervisor
|
||||||
pkgver=16.0
|
pkgver=17.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://github.com/cloud-hypervisor/cloud-hypervisor"
|
url="https://github.com/cloud-hypervisor/cloud-hypervisor"
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
license=('Apache')
|
license=('Apache')
|
||||||
depends=('gcc-libs')
|
|
||||||
makedepends=('cargo')
|
makedepends=('cargo')
|
||||||
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
|
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
|
||||||
b2sums=('f8327de30c123bcab6ed8c67cc1498ff1e00217f94f001701a430f7365cc8dd28df1a164c55b05f692a5ac2abc58b96f43c3bec984cdd38cbdf319c18949d325')
|
b2sums=('6ed3dfffd888d8380d2469e085f0974d93f020df8679e06c530bd7a56c5b262785ea7d33e7c62218353f0f2544222ae0b10bfe1f940250d44bd714eab0fde481')
|
||||||
|
|
||||||
|
prepare() {
|
||||||
|
cd "$pkgname-$pkgver"
|
||||||
|
# fetch all dependencies
|
||||||
|
cargo fetch --locked
|
||||||
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "$pkgname-$pkgver"
|
cd "$pkgname-$pkgver"
|
||||||
# FTBFS: --all-features due to hypervisor not compiling
|
# FTBFS: --all-features due to hypervisor not compiling
|
||||||
#RUSTUP_TOOLCHAIN=stable cargo build --release --locked --all-features --target-dir=target
|
#RUSTUP_TOOLCHAIN=stable cargo build --release --locked --all-features --target-dir=target
|
||||||
cargo build --release
|
cargo build --release --offline
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
install -vDm755 -t "$pkgdir/usr/bin" \
|
find "$pkgname-$pkgver/target/release" \
|
||||||
"$pkgname-$pkgver/target/release/"{ch-remote,cloud-hypervisor}
|
-maxdepth 1 \
|
||||||
|
-executable \
|
||||||
|
-type f \
|
||||||
|
-exec install -vDm755 -t "$pkgdir/usr/bin" "{}" \+
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue