mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
qemu-user: update to 9.2.0.
This commit is contained in:
parent
35ce774185
commit
cfec6cb5bf
2 changed files with 10 additions and 5 deletions
|
@ -1 +0,0 @@
|
||||||
qemu-user
|
|
|
@ -1,21 +1,21 @@
|
||||||
# Template file for 'qemu-user'
|
# Template file for 'qemu-user'
|
||||||
# This package should be updated together with qemu
|
# This package should be updated together with qemu
|
||||||
pkgname=qemu-user
|
pkgname=qemu-user
|
||||||
version=9.1.2
|
version=9.2.0
|
||||||
revision=1
|
revision=1
|
||||||
build_style=meta
|
build_style=meta
|
||||||
configure_args="--prefix=/usr --sysconfdir=/etc --libexecdir=/usr/libexec
|
configure_args="--prefix=/usr --sysconfdir=/etc --libexecdir=/usr/libexec
|
||||||
--enable-linux-user --disable-system --static
|
--enable-linux-user --disable-system --static
|
||||||
-Dkvm=disabled -Dpng=disabled -Dvirtfs=disabled -Dfdt=disabled -Dseccomp=disabled
|
-Dkvm=disabled -Dpng=disabled -Dvirtfs=disabled -Dfdt=disabled -Dseccomp=disabled
|
||||||
-Dtools=disabled"
|
-Dtools=disabled"
|
||||||
hostmakedepends="meson flex glib-devel pkg-config perl"
|
hostmakedepends="meson flex glib-devel pkg-config perl python3-pycotap"
|
||||||
makedepends="dtc-devel glib-devel pixman-devel libuuid-devel"
|
makedepends="dtc-devel glib-devel pixman-devel libuuid-devel"
|
||||||
short_desc="QEMU user-mode emulators"
|
short_desc="QEMU user-mode emulators"
|
||||||
maintainer="classabbyamp <void@placeviolette.net>"
|
maintainer="classabbyamp <void@placeviolette.net>"
|
||||||
license="GPL-2.0-only, LGPL-2.1-only"
|
license="GPL-2.0-only, LGPL-2.1-only"
|
||||||
homepage="https://www.qemu.org"
|
homepage="https://www.qemu.org"
|
||||||
distfiles="https://wiki.qemu.org/download/qemu-${version}.tar.bz2"
|
distfiles="https://wiki.qemu.org/download/qemu-${version}.tar.bz2"
|
||||||
checksum=d717acc2a52bbea72ea7283bca3292288f16ac510699fb02e112f6326f43daea
|
checksum=7954be7a779bafb97e20e31da19473437d6e9d461e4adda9bb7acfef55d813f5
|
||||||
subpackages="qemu-user-static"
|
subpackages="qemu-user-static"
|
||||||
|
|
||||||
if [ "$CROSS_BUILD" ]; then
|
if [ "$CROSS_BUILD" ]; then
|
||||||
|
@ -28,7 +28,6 @@ _archs=(
|
||||||
alpha
|
alpha
|
||||||
arm
|
arm
|
||||||
armeb
|
armeb
|
||||||
cris
|
|
||||||
hexagon
|
hexagon
|
||||||
hppa
|
hppa
|
||||||
i386
|
i386
|
||||||
|
@ -73,6 +72,8 @@ done
|
||||||
|
|
||||||
. /void-packages/common/build-style/configure.sh 2>/dev/null
|
. /void-packages/common/build-style/configure.sh 2>/dev/null
|
||||||
|
|
||||||
|
export PYTHONUNBUFFERED=1
|
||||||
|
|
||||||
_user_tmpl() {
|
_user_tmpl() {
|
||||||
_arch="$1"
|
_arch="$1"
|
||||||
_binfmt="$2"
|
_binfmt="$2"
|
||||||
|
@ -84,6 +85,11 @@ _user_tmpl() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
post_extract() {
|
||||||
|
# remove vendored wheels, these should come from (host)makedepends
|
||||||
|
rm -r python/wheels
|
||||||
|
}
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
# provided by qemu
|
# provided by qemu
|
||||||
rm -rf ${DESTDIR}/etc ${DESTDIR}/usr/share ${DESTDIR}/usr/libexec ${DESTDIR}/usr/include
|
rm -rf ${DESTDIR}/etc ${DESTDIR}/usr/share ${DESTDIR}/usr/libexec ${DESTDIR}/usr/include
|
||||||
|
|
Loading…
Add table
Reference in a new issue