Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package virtualbox for openSUSE:Factory checked in at 2025-02-19 15:58:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/virtualbox (Old) and /work/SRC/openSUSE:Factory/.virtualbox.new.25061 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "virtualbox" Wed Feb 19 15:58:42 2025 rev:287 rq:1247018 version:7.1.4 Changes: -------- --- /work/SRC/openSUSE:Factory/virtualbox/virtualbox.changes 2025-01-22 16:30:55.064443648 +0100 +++ /work/SRC/openSUSE:Factory/.virtualbox.new.25061/virtualbox.changes 2025-02-19 15:59:39.390846884 +0100 @@ -1,0 +2,5 @@ +Wed Feb 19 10:11:07 UTC 2025 - Jan Engelhardt <jeng...@inai.de> + +- Add newer-pythons.patch + +------------------------------------------------------------------- New: ---- newer-pythons.patch BETA DEBUG BEGIN: New: - Add newer-pythons.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ virtualbox.spec ++++++ --- /var/tmp/diff_new_pack.yqB5qr/_old 2025-02-19 15:59:41.454933245 +0100 +++ /var/tmp/diff_new_pack.yqB5qr/_new 2025-02-19 15:59:41.454933245 +0100 @@ -118,6 +118,7 @@ Patch11: cxx17.patch Patch12: host-source.patch Patch13: kernel-6-13.patch +Patch14: newer-pythons.patch # # Common BuildRequires for both virtualbox and virtualbox-kmp BuildRequires: %{kernel_module_package_buildreqs} ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.yqB5qr/_old 2025-02-19 15:59:41.550937262 +0100 +++ /var/tmp/diff_new_pack.yqB5qr/_new 2025-02-19 15:59:41.554937429 +0100 @@ -1,5 +1,5 @@ -mtime: 1737458744 -commit: 163ca1c484a13ebe32b8646ae919435d86274337727df55b2b9b05141da30b8d +mtime: 1739960546 +commit: e2fe2bf734c63aa2e0f2945388394b6c1ff6b71655ebaf989c89a6d63364c7bc url: https://src.opensuse.org/jengelh/virtualbox revision: master ++++++ build.specials.obscpio ++++++ diff: old/*: No such file or directory diff: new/*: No such file or directory ++++++ newer-pythons.patch ++++++ From: Jan Engelhardt <e...@inai.de> Date: 2025-02-19 11:09:20.509506861 +0100 Like most other software projects, use a ">="-style test for versions, as the chance for compatibility is high. --- configure | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) Index: VirtualBox-7.1.4/configure =================================================================== --- VirtualBox-7.1.4.orig/configure +++ VirtualBox-7.1.4/configure @@ -2187,7 +2187,10 @@ extern "C" int main(void) } EOF found= - SUPPYTHONLIBS="python2.7 python2.6 python3.1 python3.2 python3.3 python3.4 python3.4m python3.5 python3.5m python3.6 python3.6m python3.7 python3.7m python3.8 python3.9 python3.10 python3.11 python3.12" + SUPPYTHONLIBS="" + for i in /usr/bin/python[23]*; do + SUPPYTHONLIBS="$SUPPYTHONLIBS ${i##*/}" + done for p in $PYTHONDIR; do for d in $SUPPYTHONLIBS; do for b in lib/x86_64-linux-gnu lib/i386-linux-gnu lib64 lib/64 lib; do