diff --git a/.repo/nvchecker.toml b/.repo/nvchecker.toml index eab2d94..cd3ed83 100644 --- a/.repo/nvchecker.toml +++ b/.repo/nvchecker.toml @@ -1552,12 +1552,6 @@ github = "m-burst/flake8-pytest-style" use_max_tag = true prefix = "v" -[cloud-hypervisor] -source = "github" -github = "cloud-hypervisor/cloud-hypervisor" -use_max_tag = true -prefix = "v" - [ignite] source = "github" github = "weaveworks/ignite" diff --git a/cloud-hypervisor/PKGBUILD b/cloud-hypervisor/PKGBUILD deleted file mode 100644 index f436c2e..0000000 --- a/cloud-hypervisor/PKGBUILD +++ /dev/null @@ -1,44 +0,0 @@ -# Maintainer: George Rawlinson - -pkgname=cloud-hypervisor -pkgver=29.0 -pkgrel=1 -pkgdesc='A Virtual Machine Monitor for modern cloud workloads' -url='https://www.cloudhypervisor.org' -arch=('x86_64') -license=('Apache') -depends=('gcc-libs') -makedepends=('git' 'rust') -optdepends=('qemu-headless: for virtiofsd') -install="$pkgname.install" -options=('!lto') -_commit='6e9172bf6f9fda6543d757150d6f0c0314400bd4' -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() { - cd "$pkgname" - - # download dependencies - cargo fetch --locked --target "$CARCH-unknown-linux-gnu" -} - -build() { - cd "$pkgname" - # FTBFS: --all-features due to hypervisor not compiling - # cargo build --release --frozen --all-features - cargo build --release --frozen -} - -package() { - find "$pkgname/target/release" \ - -maxdepth 1 \ - -executable \ - -type f \ - -exec install -vDm755 -t "$pkgdir/usr/bin" "{}" \+ -} diff --git a/cloud-hypervisor/cloud-hypervisor.install b/cloud-hypervisor/cloud-hypervisor.install deleted file mode 100644 index be5c090..0000000 --- a/cloud-hypervisor/cloud-hypervisor.install +++ /dev/null @@ -1,3 +0,0 @@ -post_install() { - setcap cap_net_admin+ep /usr/bin/cloud-hypervisor -}