app-emulation/virtualbox-guest-modules: drop 7.1.10

Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
This commit is contained in:
Viorel Munteanu
2025-09-12 18:49:04 +03:00
parent 9630cbbea0
commit 01f08a7a9e
2 changed files with 0 additions and 48 deletions

View File

@@ -1,4 +1,3 @@
DIST vbox-guest-kernel-module-src-7.0.26.tar.xz 691328 BLAKE2B 8bbe434bb34e2046227713ce9d8508754621b6210e29dbfffa18129c8156ee6da265280db0a2d0485abd9f6299bc56ac2490b3a35057b594456ea3ba31445cf2 SHA512 fbdf7bd9fa23e71d1421006424379893d078edc7bb1d9720f941289a754dba9cedbb0eb741beecab2da312b4230effca6ccd2e570923d4c2242be3557e330fd5
DIST vbox-guest-kernel-module-src-7.1.10.tar.xz 710724 BLAKE2B 8a1f38e91f15b828b7e2c15f81c70ea436353a0c0234aac1efd7e724cc8c25c5832041457b31e94a35c365666322ec2d690800ee589afbd77b55758539484009 SHA512 d1bdd4d99de2f9ba8ec19e701f7ce94be4e311ce3db26a0953e9d75c7b844c3905f8f908c2077db6075504ea421a5fb993dfaa3bc33efe7dc4418afe6d1abedd
DIST vbox-guest-kernel-module-src-7.1.12.tar.xz 710784 BLAKE2B 3f09634ac1dd8ccf805184cc30e39e60987700f5e985c303ce15ee77c06b7d2f576c46e93385d782eb1e3fff081b639c55bd2b5d95ce280f64674d1905bbe320 SHA512 103a60e0d7ab435b8b48b002adb78ccc4d3a80a987752011335adec26a7986cf78d3140345d73d2b6cf906fcc2a8e7e649c6288970402fdf2a7319d63ace1931
DIST vbox-guest-kernel-module-src-7.2.2.tar.xz 712904 BLAKE2B 51909028d0b5292d30b3844054b61fb468db46736440be94a74b7b6607ef70089f80c2bb1c20c3d43da3d15a9b2d81668f9f23f263a009075781c306b5f5a03f SHA512 a496809da7f314faafbd8be187e94770408b3900268d2ef18051cc2fc2b8daab87b5581ebd00823ac9d86778c958f81286593510121defb41f28fbf958103429

View File

@@ -1,47 +0,0 @@
# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# XXX: the tarball here is just the kernel modules split out of the binary
# package that comes from VirtualBox-*.run
# XXX: update: now it is split from virtualbox-*-Debian~bullseye_amd64.deb
EAPI=8
inherit linux-mod-r1
MY_P="vbox-guest-kernel-module-src-${PV}"
DESCRIPTION="Kernel Modules for Virtualbox Guest Additions"
HOMEPAGE="https://www.virtualbox.org/"
SRC_URI="https://dev.gentoo.org/~ceamac/${CATEGORY}/${PN}/${MY_P}.tar.xz"
S="${WORKDIR}"
LICENSE="GPL-3"
SLOT="0/$(ver_cut 1-2)"
KEYWORDS="amd64 ~arm64 x86"
PATCHES=(
"${FILESDIR}"/${PN}-6.1.36-log-use-c99.patch
)
CONFIG_CHECK="~DRM_TTM ~DRM_VMWGFX"
WARNING_DRM_TTM="DRM_TTM is needed for running the vboxvideo driver."
WARNING_DRM_VMWGFX="DRM_VMWGFX is the recommended driver for VMSVGA."
src_compile() {
local modlist=( {vboxguest,vboxsf}=misc )
local modargs=( KERN_DIR="${KV_OUT_DIR}" KERN_VER="${KV_FULL}" )
linux-mod-r1_src_compile
}
src_install() {
linux-mod-r1_src_install
insinto /etc/modprobe.d # 485996
newins - vboxsf.conf <<-EOF
# modprobe.d configuration file for VBOXSF
# Internal Aliases - Do not edit
# ------------------------------
alias fs-vboxsf vboxsf
EOF
}