Hello community, here is the log from the commit of package virtualbox for openSUSE:Factory checked in at 2012-11-08 21:54:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/virtualbox (Old) and /work/SRC/openSUSE:Factory/.virtualbox.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "virtualbox", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/virtualbox/virtualbox.changes 2012-10-26 00:23:33.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.virtualbox.new/virtualbox.changes 2012-11-08 21:54:37.000000000 +0100 @@ -1,0 +2,15 @@ +Sat Nov 3 08:16:40 UTC 2012 - [email protected] + +- updated to virtualbox 4.2.4 +* GUI: fixed validation warning on global settings / proxy page (4.2.2 regression, bug #11089) +* GUI: fixed crash with multiple guest screens on certain conditions (OS X hosts only) +* VBoxBalloonCtrl: fixed command line argument handling of ballooning module +* VRDP: fixed occasional crash during a video playback in the guest (bug #11082) +* BIOS: fixed broken DMI information (4.2 regression) +* BIOS: workaround for booting from Windows 2000 floppy disks +* EFI: fixed video mode selection loss on VM reboot (#10983) +* Parallel: fixed parallel port printing failure/ paper queue empty error (Windows hosts only) +* NAT: fixed crash on alias-less DNS responses when host-resolver is used +* Storage: fixed hang under rare circumstances + +------------------------------------------------------------------- Old: ---- VirtualBox-4.2.2-patched.tar.bz2 vbox-drop-fa-IR-translation.diff virtualbox-4.2.2-UserManual.pdf New: ---- VirtualBox-4.2.4-patched.tar.bz2 virtualbox-4.2.4-UserManual.pdf ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ virtualbox.spec ++++++ --- /var/tmp/diff_new_pack.qaYFtk/_old 2012-11-08 21:54:39.000000000 +0100 +++ /var/tmp/diff_new_pack.qaYFtk/_new 2012-11-08 21:54:39.000000000 +0100 @@ -82,7 +82,7 @@ %endif # ExclusiveArch: %ix86 x86_64 -Version: 4.2.2 +Version: 4.2.4 Release: 0 Summary: VirtualBox is an Emulator License: GPL-2.0+ @@ -122,8 +122,6 @@ Patch6: vbox-smc-napa.diff #fix build of Python and dev package on openSUSE 11.3 Patch8: vbox-python-detection.diff -#fix build, fa_IR translation was removed -Patch9: vbox-drop-fa-IR-translation.diff #PATCH-FIX-OPENSUSE implement messagebox (VBoxPermissionMessage app), which is displayed, when user #try to start VirtualBox and is not memeber of vboxusers group Patch99: vbox-permissions_warning.diff @@ -251,7 +249,6 @@ %patch4 -p1 %patch6 -p1 %patch8 -p1 -%patch9 -p1 %patch99 -p1 %patch100 %patch101 ++++++ VirtualBox-4.2.2-patched.tar.bz2 -> VirtualBox-4.2.4-patched.tar.bz2 ++++++ /work/SRC/openSUSE:Factory/virtualbox/VirtualBox-4.2.2-patched.tar.bz2 /work/SRC/openSUSE:Factory/.virtualbox.new/VirtualBox-4.2.4-patched.tar.bz2 differ: char 11, line 1 ++++++ vbox-vboxdrv-init-script.diff ++++++ --- /var/tmp/diff_new_pack.qaYFtk/_old 2012-11-08 21:54:39.000000000 +0100 +++ /var/tmp/diff_new_pack.qaYFtk/_new 2012-11-08 21:54:39.000000000 +0100 @@ -2,9 +2,7 @@ =================================================================== --- src/VBox/Installer/linux/vboxdrv.sh.in.orig +++ src/VBox/Installer/linux/vboxdrv.sh.in -@@ -17,15 +17,16 @@ - # chkconfig: 35 20 80 - # description: VirtualBox Linux kernel module +@@ -19,11 +19,12 @@ # ### BEGIN INIT INFO # Provides: vboxdrv @@ -15,16 +13,13 @@ +# Required-Stop: $syslog $remote_fs +# Default-Start: 2 3 5 # Default-Stop: 0 1 6 - # Short-Description: VirtualBox Linux kernel module +-# Short-Description: VirtualBox Linux kernel module ++# Short-Description: VirtualBox Linux module +# Description: VirtualBox Linux kernel module ### END INIT INFO PATH=/sbin:/bin:/usr/sbin:/usr/bin:$PATH - DEVICE=/dev/vboxdrv - LOG="/var/log/vbox-install.log" -@@ -191,17 +192,10 @@ start() - rmmod vboxdrv 2>/dev/null - failure "Cannot create device $DEVICE with major $MAJOR and minor $MINOR" +@@ -193,13 +194,6 @@ start() fi fi # ensure permissions @@ -38,18 +33,17 @@ if ! $MODPROBE vboxnetflt > /dev/null 2>&1; then failure "modprobe vboxnetflt failed. Please use 'dmesg' to find out why" fi - if ! $MODPROBE vboxnetadp > /dev/null 2>&1; then - failure "modprobe vboxnetadp failed. Please use 'dmesg' to find out why" -@@ -295,66 +289,12 @@ stop_vms() - } - +@@ -297,70 +291,8 @@ stop_vms() # setup_script setup() { - stop -- begin_msg "Uninstalling old VirtualBox DKMS kernel modules" -- $DODKMS uninstall vboxhost vboxdrv vboxnetflt vboxnetadp > $LOG -- succ_msg +- DKMS=`which dkms 2>/dev/null` +- if [ -n "$DKMS" ]; then +- begin_msg "Uninstalling old VirtualBox DKMS kernel modules" +- $DODKMS uninstall vboxhost vboxdrv vboxnetflt vboxnetadp > $LOG +- succ_msg +- fi - if find /lib/modules/`uname -r` -name "vboxpci\.*" 2>/dev/null|grep -q vboxpci; then - begin_msg "Removing old VirtualBox pci kernel module" - find /lib/modules/`uname -r` -name "vboxpci\.*" 2>/dev/null|xargs rm -f 2>/dev/null @@ -70,9 +64,14 @@ - find /lib/modules/`uname -r` -name "vboxdrv\.*" 2>/dev/null|xargs rm -f 2>/dev/null - succ_msg - fi -- begin_msg "Trying to register the VirtualBox kernel modules using DKMS" -- if ! $DODKMS install vboxhost $VERSION >> $LOG; then -- fail_msg "Failed, trying without DKMS" +- if [ -n "$DKMS" ]; then +- begin_msg "Trying to register the VirtualBox kernel modules using DKMS" +- if ! $DODKMS install vboxhost $VERSION >> $LOG; then +- fail_msg "Failed, trying without DKMS" +- DKMS="" +- fi +- fi +- if [ -z "$DKMS" ]; then - begin_msg "Recompiling VirtualBox kernel modules" - if ! $BUILDINTMP \ - --save-module-symvers /tmp/vboxdrv-Module.symvers \ @@ -100,11 +99,9 @@ - fi - fi - rm -f /etc/vbox/module_not_compiled -+ begin_msg "Recompiling VirtualBox vboxadd kernel module, NOT. It has been packaged." ++ begin_msg "Recompiling VirtualBox kernel module, NOT. It has been packaged." succ_msg - start } dmnstatus() - { - if running vboxdrv; then ++++++ virtualbox-4.2.2-UserManual.pdf -> virtualbox-4.2.4-UserManual.pdf ++++++ (binary differes) -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
