From 744970696db3fad9c8735bcbe54c840e1e084d76 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 16:19:25 +0200 Subject: Adding debian version 6.1.22-dfsg-4. Signed-off-by: Daniel Baumann --- debian/LocalConfig.kmk | 15 + debian/NEWS.Debian | 8 + debian/README.Debian.security | 7 + debian/README.source | 22 + debian/apport-hook.py | 11 + debian/changelog | 3471 ++++++++++++++++++++ debian/control | 210 ++ debian/copyright | 1579 +++++++++ debian/gbp.conf | 4 + debian/get-orig-source.sh | 68 + debian/lynx-dump-postprocess | 51 + debian/manpages/VBoxBalloonCtrl.1 | 55 + debian/manpages/VBoxClient.1 | 43 + debian/manpages/VBoxControl.8 | 32 + debian/manpages/VBoxHeadless.1 | 51 + debian/manpages/VBoxManage.1 | 851 +++++ debian/manpages/VBoxSDL.1 | 107 + debian/manpages/VBoxService.8 | 6 + debian/manpages/VirtualBox.1 | 12 + debian/manpages/mount.vboxsf.8 | 64 + debian/manpages/vboxwebsrv.1 | 35 + debian/patches/01-build-arch.patch | 14 + debian/patches/02-gsoap-build-fix.patch | 14 + debian/patches/04-vboxdrv-references.patch | 77 + debian/patches/06-xsession.patch | 22 + debian/patches/07-vboxnetflt-reference.patch | 16 + debian/patches/12-make-module.patch | 14 + debian/patches/13-module-mismatch.patch | 22 + debian/patches/16-no-update.patch | 107 + debian/patches/23-remove-invalid-chars-check.patch | 18 + debian/patches/27-hide-host-cache-warning.patch | 43 + debian/patches/28-no-selinux-fedora.patch | 18 + debian/patches/29-fix-ftbfs-as-needed.patch | 16 + .../patches/32-disable-guest-version-check.patch | 15 + debian/patches/35-libvdeplug-soname.patch | 24 + debian/patches/36-fix-vnc-version-string.patch | 22 + debian/patches/37-do-not-run-if-not-in-vm.patch | 29 + debian/patches/40-linux-5.13-support.patch | 276 ++ debian/patches/no-vboxrem.patch | 44 + debian/patches/series | 18 + debian/rules | 208 ++ debian/source/format | 1 + debian/source/lintian-overrides | 2 + debian/virtualbox-dkms.README.Debian | 11 + debian/virtualbox-dkms.dkms | 13 + debian/virtualbox-dkms.files/Makefile | 3 + debian/virtualbox-dkms.files/do_Module.symvers | 46 + debian/virtualbox-dkms.install.in | 32 + debian/virtualbox-dkms.links.in | 18 + debian/virtualbox-dkms.postinst | 12 + debian/virtualbox-dkms.preinst | 23 + debian/virtualbox-dkms.udev | 3 + debian/virtualbox-guest-utils.init | 102 + debian/virtualbox-guest-utils.install | 4 + debian/virtualbox-guest-utils.manpages | 3 + debian/virtualbox-guest-utils.postinst | 16 + debian/virtualbox-guest-utils.postrm | 9 + debian/virtualbox-guest-utils.service | 19 + debian/virtualbox-guest-utils.udev | 2 + debian/virtualbox-guest-x11.dirs | 1 + debian/virtualbox-guest-x11.files/00vboxvideo.conf | 1 + debian/virtualbox-guest-x11.install | 3 + debian/virtualbox-guest-x11.links | 4 + debian/virtualbox-guest-x11.lintian-overrides | 15 + debian/virtualbox-guest-x11.maintscript | 1 + debian/virtualbox-guest-x11.manpages | 1 + debian/virtualbox-guest-x11.postinst | 15 + debian/virtualbox-guest-x11.postrm | 9 + debian/virtualbox-guest-x11.preinst | 14 + debian/virtualbox-qt.dirs | 1 + debian/virtualbox-qt.files/virtualbox.desktop | 26 + debian/virtualbox-qt.install | 24 + debian/virtualbox-qt.links | 7 + debian/virtualbox-qt.lintian-overrides | 1 + debian/virtualbox-qt.manpages | 1 + debian/virtualbox-source.README.Debian | 24 + debian/virtualbox-source.files/Makefile | 3 + debian/virtualbox-source.files/control.modules.in | 27 + debian/virtualbox-source.files/postinst.modules.in | 23 + debian/virtualbox-source.files/rules | 77 + debian/virtualbox-source.files/udev | 3 + debian/virtualbox-source.install | 38 + debian/virtualbox-source.links | 20 + debian/virtualbox.README.rebuild | 2 + debian/virtualbox.default | 23 + debian/virtualbox.docs | 4 + debian/virtualbox.files/NEWS.Debian | 25 + debian/virtualbox.files/README.Debian.xml | 173 + debian/virtualbox.files/VBox.sh | 90 + debian/virtualbox.files/wiki.html | 325 ++ debian/virtualbox.init | 247 ++ debian/virtualbox.install | 42 + debian/virtualbox.links | 16 + debian/virtualbox.lintian-overrides | 19 + debian/virtualbox.manpages | 4 + debian/virtualbox.postinst | 27 + debian/virtualbox.postrm | 16 + debian/virtualbox.prerm | 9 + debian/virtualbox.udev | 4 + debian/watch | 5 + 100 files changed, 9408 insertions(+) create mode 100644 debian/LocalConfig.kmk create mode 100644 debian/NEWS.Debian create mode 100644 debian/README.Debian.security create mode 100644 debian/README.source create mode 100644 debian/apport-hook.py create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/gbp.conf create mode 100755 debian/get-orig-source.sh create mode 100755 debian/lynx-dump-postprocess create mode 100644 debian/manpages/VBoxBalloonCtrl.1 create mode 100644 debian/manpages/VBoxClient.1 create mode 100644 debian/manpages/VBoxControl.8 create mode 100644 debian/manpages/VBoxHeadless.1 create mode 100644 debian/manpages/VBoxManage.1 create mode 100644 debian/manpages/VBoxSDL.1 create mode 100644 debian/manpages/VBoxService.8 create mode 100644 debian/manpages/VirtualBox.1 create mode 100644 debian/manpages/mount.vboxsf.8 create mode 100644 debian/manpages/vboxwebsrv.1 create mode 100644 debian/patches/01-build-arch.patch create mode 100644 debian/patches/02-gsoap-build-fix.patch create mode 100644 debian/patches/04-vboxdrv-references.patch create mode 100644 debian/patches/06-xsession.patch create mode 100644 debian/patches/07-vboxnetflt-reference.patch create mode 100644 debian/patches/12-make-module.patch create mode 100644 debian/patches/13-module-mismatch.patch create mode 100644 debian/patches/16-no-update.patch create mode 100644 debian/patches/23-remove-invalid-chars-check.patch create mode 100644 debian/patches/27-hide-host-cache-warning.patch create mode 100644 debian/patches/28-no-selinux-fedora.patch create mode 100644 debian/patches/29-fix-ftbfs-as-needed.patch create mode 100644 debian/patches/32-disable-guest-version-check.patch create mode 100644 debian/patches/35-libvdeplug-soname.patch create mode 100644 debian/patches/36-fix-vnc-version-string.patch create mode 100644 debian/patches/37-do-not-run-if-not-in-vm.patch create mode 100644 debian/patches/40-linux-5.13-support.patch create mode 100644 debian/patches/no-vboxrem.patch create mode 100644 debian/patches/series create mode 100755 debian/rules create mode 100644 debian/source/format create mode 100644 debian/source/lintian-overrides create mode 100644 debian/virtualbox-dkms.README.Debian create mode 100644 debian/virtualbox-dkms.dkms create mode 100644 debian/virtualbox-dkms.files/Makefile create mode 100644 debian/virtualbox-dkms.files/do_Module.symvers create mode 100644 debian/virtualbox-dkms.install.in create mode 100644 debian/virtualbox-dkms.links.in create mode 100644 debian/virtualbox-dkms.postinst create mode 100644 debian/virtualbox-dkms.preinst create mode 100644 debian/virtualbox-dkms.udev create mode 100644 debian/virtualbox-guest-utils.init create mode 100644 debian/virtualbox-guest-utils.install create mode 100644 debian/virtualbox-guest-utils.manpages create mode 100644 debian/virtualbox-guest-utils.postinst create mode 100644 debian/virtualbox-guest-utils.postrm create mode 100644 debian/virtualbox-guest-utils.service create mode 100644 debian/virtualbox-guest-utils.udev create mode 100644 debian/virtualbox-guest-x11.dirs create mode 100644 debian/virtualbox-guest-x11.files/00vboxvideo.conf create mode 100644 debian/virtualbox-guest-x11.install create mode 100644 debian/virtualbox-guest-x11.links create mode 100644 debian/virtualbox-guest-x11.lintian-overrides create mode 100644 debian/virtualbox-guest-x11.maintscript create mode 100644 debian/virtualbox-guest-x11.manpages create mode 100644 debian/virtualbox-guest-x11.postinst create mode 100644 debian/virtualbox-guest-x11.postrm create mode 100644 debian/virtualbox-guest-x11.preinst create mode 100644 debian/virtualbox-qt.dirs create mode 100644 debian/virtualbox-qt.files/virtualbox.desktop create mode 100644 debian/virtualbox-qt.install create mode 100644 debian/virtualbox-qt.links create mode 100644 debian/virtualbox-qt.lintian-overrides create mode 100644 debian/virtualbox-qt.manpages create mode 100644 debian/virtualbox-source.README.Debian create mode 100644 debian/virtualbox-source.files/Makefile create mode 100644 debian/virtualbox-source.files/control.modules.in create mode 100644 debian/virtualbox-source.files/postinst.modules.in create mode 100644 debian/virtualbox-source.files/rules create mode 100644 debian/virtualbox-source.files/udev create mode 100644 debian/virtualbox-source.install create mode 100644 debian/virtualbox-source.links create mode 100644 debian/virtualbox.README.rebuild create mode 100644 debian/virtualbox.default create mode 100644 debian/virtualbox.docs create mode 100644 debian/virtualbox.files/NEWS.Debian create mode 100644 debian/virtualbox.files/README.Debian.xml create mode 100755 debian/virtualbox.files/VBox.sh create mode 100644 debian/virtualbox.files/wiki.html create mode 100644 debian/virtualbox.init create mode 100644 debian/virtualbox.install create mode 100644 debian/virtualbox.links create mode 100644 debian/virtualbox.lintian-overrides create mode 100644 debian/virtualbox.manpages create mode 100644 debian/virtualbox.postinst create mode 100644 debian/virtualbox.postrm create mode 100644 debian/virtualbox.prerm create mode 100644 debian/virtualbox.udev create mode 100644 debian/watch (limited to 'debian') diff --git a/debian/LocalConfig.kmk b/debian/LocalConfig.kmk new file mode 100644 index 00000000..88a2f7c1 --- /dev/null +++ b/debian/LocalConfig.kmk @@ -0,0 +1,15 @@ +VBOX_WITH_ADDITION_DRIVERS = +VBOX_WITH_INSTALLER = 1 +VBOX_WITH_LINUX_ADDITIONS = 1 +VBOX_WITH_X11_ADDITIONS = 1 +VBOX_WITH_TESTCASES = +VBOX_WITH_TESTSUITE = +VBOX_WITH_ORIGIN := +VBOX_PATH_APP_PRIVATE_ARCH := /usr/lib/virtualbox +VBOX_PATH_SHARED_LIBS := $(VBOX_PATH_APP_PRIVATE_ARCH) +VBOX_WITH_RUNPATH := $(VBOX_PATH_APP_PRIVATE_ARCH) +VBOX_PATH_APP_PRIVATE := /usr/share/virtualbox +VBOX_PATH_APP_DOCS = /usr/share/doc/virtualbox +VBOX_WITH_VBOXBFE := +VBOX_PATH_DOCBOOK_DTD := /usr/share/xml/docbook/schema/dtd/4/ +VBOX_WITH_VBOX_IMG = 1 diff --git a/debian/NEWS.Debian b/debian/NEWS.Debian new file mode 100644 index 00000000..b37b2b48 --- /dev/null +++ b/debian/NEWS.Debian @@ -0,0 +1,8 @@ +virtualbox (5.0.10-dfsg-6) unstable; urgency=medium + + * A new vboxweb.service Web Service has been added, running vboxwebsrv. + the service is disabled by default, so it needs to be enabled manually with + systemctl enable vboxweb and systemctl start vboxweb. + + -- Gianfranco Costamagna Thu, 10 Dec 2015 11:21:32 +0100 + diff --git a/debian/README.Debian.security b/debian/README.Debian.security new file mode 100644 index 00000000..f64508dc --- /dev/null +++ b/debian/README.Debian.security @@ -0,0 +1,7 @@ +Virtualbox package is in contrib, and upstream refuses to give patches for security bugs. +Their attitude is to update to the latest version, something not feasible for stable +releases, specially when the minor releases of a particular major version are not +published anymore. +For this reason, virtualbox might not be covered by security.debian.org support, +nor by stable-proposed-updates in case the maintaining is impossible due to +lack of upstream support. diff --git a/debian/README.source b/debian/README.source new file mode 100644 index 00000000..d020d6f9 --- /dev/null +++ b/debian/README.source @@ -0,0 +1,22 @@ +Source repackaging +================== + +The upstream tarball used to build this package has been repackaged to +remove unneeded/unwanted files and directories. +You can just call "uscan" to upgrade to a new upstream version + + +Generating manpages +=================== + +help2man --section=1 --name="x86 virtualization solution" --version-string="VERSION_STRING" --no-info VBoxHeadless | sed -r 's/( VERSION_STRING|( Version)? [0-9]\.[0-9]\.[0-9]_[a-zA-Z]+)//g' > VBoxHeadless.1 +help2man --section=1 --name="x86 virtualization solution" --version-string="VERSION_STRING" --no-info VBoxManage | sed -r 's/( VERSION_STRING|( Version)? [0-9]\.[0-9]\.[0-9]_[a-zA-Z]+)//g' > VBoxManage.1 +help2man --section=1 --name="x86 virtualization solution" --version-string="VERSION_STRING" --no-info VBoxSDL | sed -r 's/( VERSION_STRING|( Version)? [0-9]\.[0-9]\.[0-9]_[a-zA-Z]+)//g' > VBoxSDL.1 +help2man --section=1 --name="x86 virtualization solution" --version-string="VERSION_STRING" --no-info --no-discard-stderr VBoxBalloonCtrl | sed -r 's/( VERSION_STRING|( Version)? [0-9]\.[0-9]\.[0-9]_[a-zA-Z]+)//g' > VBoxBalloonCtrl.1 +help2man --section=1 --name="x86 virtualization solution" --version-string="VERSION_STRING" --no-info --no-discard-stderr vboxwebsrv | sed -r 's/( VERSION_STRING|( Version)? [0-9]\.[0-9]\.[0-9]_[a-zA-Z]+)//g' > vboxwebsrv.1 +help2man --section=1 --name="x86 virtualization solution" --version-string="VERSION_STRING" --no-info VirtualBox | sed -r 's/( VERSION_STRING|( Version)? [0-9]\.[0-9]\.[0-9]_[a-zA-Z]+)//g' > VirtualBox.1 + +help2man --section=1 --name="x86 virtualization solution" --version-string="VERSION_STRING" --no-info VBoxClient | sed -r 's/( VERSION_STRING|( Version)? [0-9]\.[0-9]\.[0-9]_[a-zA-Z]+)//g' > VBoxClient.1 +help2man --section=8 --name="x86 virtualization solution" --version-string="VERSION_STRING" --no-info --no-discard-stderr VBoxService | sed -r 's/( VERSION_STRING|( Version)? [0-9]\.[0-9]\.[0-9]_[a-zA-Z]+)//g' > VBoxService.8 +help2man --section=8 --name="x86 virtualization solution" --version-string="VERSION_STRING" --no-info VBoxControl | sed -r 's/( VERSION_STRING|( Version)? [0-9]\.[0-9]\.[0-9]_[a-zA-Z]+)//g' > VBoxControl.8 +help2man --section=8 --name="x86 virtualization solution" --version-string="VERSION_STRING" --no-info mount.vboxsf | sed -r 's/( VERSION_STRING|( Version)? [0-9]\.[0-9]\.[0-9]_[a-zA-Z]+)//g' > mount.vboxsf.8 diff --git a/debian/apport-hook.py b/debian/apport-hook.py new file mode 100644 index 00000000..5fb61618 --- /dev/null +++ b/debian/apport-hook.py @@ -0,0 +1,11 @@ +import apport.hookutils + +def add_info(report): + """Add a list of installed packages matching 'virtualbox' or 'linux-headers'""" + report['VirtualBox.DpkgList'] = apport.hookutils.command_output(["sh", "-c", "dpkg -l | grep -e virtualbox -e linux-headers"]) + + """Add information about installed VirtualBox kernel modules""" + report['VirtualBox.ModInfo'] = apport.hookutils.command_output(["sh", "-c", + "find /lib/modules/`uname -r` -name \"vbox*\" | xargs -r modinfo"]) + + report['LsMod'] = apport.hookutils.command_output(["lsmod"]) diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000..f5323812 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,3471 @@ +virtualbox (6.1.22-dfsg-4) unstable; urgency=medium + + * Set R^3 to binary-target, chmod +s in dh_fixperms needs root to work + Note: Debian implementation seems to set +s during build regardless + of the set, while Ubuntu implementation failed to set +s leading to + non-working virtualbox binary + + -- Gianfranco Costamagna Fri, 23 Jul 2021 10:21:57 +0200 + +virtualbox (6.1.22-dfsg-3) unstable; urgency=medium + + [ Dimitri John Ledkov ] + * Drop virtualbox guest modules dkms and sources, as in Ubuntu and Debian, + all kernel flavours provide those from the upstream kernel since at least + focal 20.04 LTS. + Thus these are not needed anymore. LP: #1933248 + + -- Gianfranco Costamagna Mon, 19 Jul 2021 09:28:22 +0200 + +virtualbox (6.1.22-dfsg-2) unstable; urgency=medium + + [ Andrea Righi ] + * Support linux 5.13 with vbox-guest drivers (LP: #1929193): + - debian/patches/40-linux-5.13-support.patch + + -- Gianfranco Costamagna Wed, 23 Jun 2021 15:45:42 +0200 + +virtualbox (6.1.22-dfsg-1) unstable; urgency=medium + + * New upstream version 6.1.22-dfsg + + -- Gianfranco Costamagna Tue, 11 May 2021 12:07:27 +0200 + +virtualbox (6.1.20-dfsg-1) unstable; urgency=medium + + * New upstream version 6.1.20-dfsg + * Drop patches now upstream: + - 50-kernel-5.11.patch + - 88207-kernel-5.11.patch + - 88212-kernel-5.11.patch + - kernel-5.10.patch + - python3.9.patch + * Refresh patches: + - 27-hide-host-cache-warning.patch + - 36-fix-vnc-version-string.patch + - no-vboxrem.patch + * Add R^3: no + + -- Gianfranco Costamagna Tue, 20 Apr 2021 22:38:00 +0200 + +virtualbox (6.1.18-dfsg-5) unstable; urgency=medium + + * Drop vboxweb.service too + + -- Gianfranco Costamagna Thu, 08 Apr 2021 20:43:02 +0200 + +virtualbox (6.1.18-dfsg-4) unstable; urgency=medium + + * Drop vboxweb.service. + Never worked, needs too much customization (LP: #1894862) + * Add patches from upstream to fix build with kernel 5.11 + - upstream changeset: 88207 and 88212 + + -- Gianfranco Costamagna Thu, 08 Apr 2021 19:25:43 +0200 + +virtualbox (6.1.18-dfsg-3) unstable; urgency=medium + + * Support linux 5.11 (LP: #1915900): + - debian/patches/50-kernel-5.11.patch + + -- Andrea Righi Thu, 25 Feb 2021 15:32:11 +0000 + +virtualbox (6.1.18-dfsg-2) unstable; urgency=medium + + * debian/patches/kernel-5.10.patch: + - fix 32bit guest kernel builds + + -- Gianfranco Costamagna Thu, 21 Jan 2021 12:01:33 +0100 + +virtualbox (6.1.18-dfsg-1) unstable; urgency=medium + + [ Andrea Righi ] + * debian/patches/linux-5.10-TASK_SIZE_MAX-replaces-USER_DS.patch: + - upstream patch to fix build failure of virtualbox-guest-dkms with linux + 5.10 (LP: #1908734) + * debian/patches/linux-5.10-drm-fixes.patch: + - upstream patch to fix multiple virtualbox-guest-dkms drm's build + failures with linux 5.10 (LP: #1908734) + + [ Gianfranco Costamagna ] + * New upstream version 6.1.18-dfsg + * Drop kernel 5.10 build fixes, upstream + * Refresh patches + + -- Gianfranco Costamagna Wed, 20 Jan 2021 13:52:19 +0100 + +virtualbox (6.1.16-dfsg-6) unstable; urgency=medium + + * debian/patches/linux-5.10-r0drv-memobj-fix-r0.patch: + - upstream-proposed patch to fix a build failure with linux 5.10 + (LP: #1903741) + + -- Gianfranco Costamagna Fri, 04 Dec 2020 23:58:18 +0100 + +virtualbox (6.1.16-dfsg-5) unstable; urgency=medium + + * Use /run instead of /var/run, from Steve Langasek + + -- Gianfranco Costamagna Fri, 04 Dec 2020 22:12:38 +0100 + +virtualbox (6.1.16-dfsg-4) unstable; urgency=medium + + [ Sam Van den Eynde ] + * Fix vboxweb.service startup script, from Sam Van den Eynde (LP: #1904123, LP: #1825598) + * Now the script also sources /etc/vbox/vbox.cfg that can contain all the + required variables. + + -- Gianfranco Costamagna Mon, 16 Nov 2020 14:12:27 +0100 + +virtualbox (6.1.16-dfsg-3) unstable; urgency=medium + + * Add patch to support python3.9 (Closes: #972918) + + -- Gianfranco Costamagna Tue, 27 Oct 2020 08:28:19 +0100 + +virtualbox (6.1.16-dfsg-2) unstable; urgency=medium + + * Fixup wrong patch refresh for vnc patch + - LP: #1901310 + - thanks Gordon Lack for the report + + -- Gianfranco Costamagna Mon, 26 Oct 2020 19:08:44 +0100 + +virtualbox (6.1.16-dfsg-1) unstable; urgency=medium + + * New upstream version 6.1.16-dfsg + * Refresh patches: + - 27-hide-host-cache-warning.patch + - 36-fix-vnc-version-string.patch + * Drop upstream patches: + - changeset_86042.patch + - new-gsoap.patch + - virtio-core.patch + + -- Gianfranco Costamagna Wed, 21 Oct 2020 00:32:31 +0200 + +virtualbox (6.1.14-dfsg-4) unstable; urgency=medium + + [ Lorenzo Puliti ] + * Also take care of unsigned kernel modules when installing the + virtualbox*source packages (Closes: #970262) + + -- Gianfranco Costamagna Wed, 16 Sep 2020 11:58:39 +0200 + +virtualbox (6.1.14-dfsg-3) unstable; urgency=medium + + * Don't add VBoxREM symlink (Closes: #969793) + + -- Gianfranco Costamagna Tue, 08 Sep 2020 10:06:18 +0200 + +virtualbox (6.1.14-dfsg-2) unstable; urgency=medium + + * Ack previous wrong NMU, not sure why it has been uploaded. + * Rebase previous changelog entries + * Don't use curl from upstream tarball (will be used from + the next dfsg repack) + * Re-enable virtionet (Closes: #969731, #969732) + * Drop patch disable-cloud, useless + * Drop liblzf patch: upstream and not needed anymore + - Add debian/patches/changeset_86042.patch: + new upstream patch for liblzf link failure + + -- Gianfranco Costamagna Mon, 07 Sep 2020 18:11:33 +0200 + +virtualbox (6.1.14-dfsg-1) unstable; urgency=medium + + * Non-maintainer upload. + * Include the source code in the upload... + * Support for 5.8 kernel has been added (Closes: #968660) + and thus remove the following patches : 0001-new-tarball.patch, + kernel-5.8-1.patch, kernel-5.8-2.patch, kernel-5.8-2.patch and + kernel-5.8-4.patch + * Added a new patch (disable-cloud.patch) to disable CLoud (Apparently + this doesn't work). + * Build with 'VBOX_WITH_VIRTIO=' + * New upstream release. + + -- Christian Marillat Sat, 05 Sep 2020 21:02:05 +0200 + +virtualbox (6.1.12-dfsg-9) unstable; urgency=medium + + * Try to fix another kernel 5.8 change LP: #1884652 + + -- Gianfranco Costamagna Mon, 10 Aug 2020 14:37:08 +0200 + +virtualbox (6.1.12-dfsg-8) unstable; urgency=medium + + * debian/patches/kernel-5.8-1.patch: + * debian/patches/kernel-5.8-2.patch: + * debian/patches/kernel-5.8-3.patch: + - apply upstream proposed patches to fix a build failure with kernel 5.8 + (note, this requires also a kernel patch) + https://www.virtualbox.org/ticket/19644 + + -- Gianfranco Costamagna Thu, 30 Jul 2020 18:58:32 +0200 + +virtualbox (6.1.12-dfsg-7) unstable; urgency=medium + + * Fix build with new gsoap (Closes: #966182) + + -- Gianfranco Costamagna Sun, 26 Jul 2020 09:34:56 +0200 + +virtualbox (6.1.12-dfsg-6) unstable; urgency=medium + + * Also add VirtualboxVM new binary (symlink to virtualboxvm) + * Add nasm dependency, thanks enyc for the hint! + + -- Gianfranco Costamagna Mon, 20 Jul 2020 09:02:45 +0200 + +virtualbox (6.1.12-dfsg-5) unstable; urgency=medium + + * Add missing liblzf-dev dependency + + -- Gianfranco Costamagna Fri, 17 Jul 2020 18:32:52 +0200 + +virtualbox (6.1.12-dfsg-4) unstable; urgency=medium + + * Also ship VirtualboxVM (LP: #1884363) + * Unbundle liblz (Closes: #958323) + + -- Gianfranco Costamagna Wed, 15 Jul 2020 20:02:41 +0200 + +virtualbox (6.1.12-dfsg-3) unstable; urgency=medium + + * Enable vboximg-mount builds + + -- Gianfranco Costamagna Wed, 15 Jul 2020 13:37:52 +0200 + +virtualbox (6.1.12-dfsg-2) unstable; urgency=medium + + * Fix build failure, due to cloud net being enabled without corresponding + sources. + + -- Gianfranco Costamagna Wed, 15 Jul 2020 11:08:27 +0200 + +virtualbox (6.1.12-dfsg-1) unstable; urgency=medium + + * New upstream version 6.1.12-dfsg (Closes: #964509) + * Patch refresh + + -- Gianfranco Costamagna Wed, 15 Jul 2020 10:20:42 +0200 + +virtualbox (6.1.10-dfsg-1) unstable; urgency=medium + + * New upstream version 6.1.10-dfsg + * Refresh patches, drop patch 19590: upstream + + -- Gianfranco Costamagna Fri, 05 Jun 2020 22:57:54 +0200 + +virtualbox (6.1.8-dfsg-2) unstable; urgency=medium + + * debian/patches/19590.patch: + - upstream proposed patch for x11/wayland resize issues. + + -- Gianfranco Costamagna Thu, 04 Jun 2020 14:31:41 +0200 + +virtualbox (6.1.8-dfsg-1) unstable; urgency=medium + + * Drop --display VBoxClient option + * Correctly call the generated and downloaded tarball + * Also drop openssl from upstream tarball + * New upstream version 6.1.8-dfsg + * Drop x86 patch now upstream + * Patch refresh for 06-xsession + + -- Gianfranco Costamagna Sat, 16 May 2020 15:02:33 +0200 + +virtualbox (6.1.6-dfsg-2) unstable; urgency=medium + + * Add proposed patch on ticket https://www.virtualbox.org/ticket/19494 + to fix compilation on 32bit guests + + -- Gianfranco Costamagna Fri, 17 Apr 2020 10:10:03 +0200 + +virtualbox (6.1.6-dfsg-1) unstable; urgency=medium + + * New upstream version 6.1.6-dfsg + * Drop upstream patches: + - shared-clipboard + - ftbfs-linux-5.6 + * Patch refresh + + -- Gianfranco Costamagna Wed, 15 Apr 2020 17:48:44 +0200 + +virtualbox (6.1.4-dfsg-4) unstable; urgency=medium + + * Fixup previous upload, by grabbing upstream commits: + #83484 #43473 #83471 + + -- Gianfranco Costamagna Fri, 10 Apr 2020 13:25:51 +0200 + +virtualbox (6.1.4-dfsg-3) unstable; urgency=medium + + * Apply upstream fix for ticket 19312 to fix build with Linux 5.6. + + -- Konstantin Demin Wed, 01 Apr 2020 11:52:17 +0300 + +virtualbox (6.1.4-dfsg-2) unstable; urgency=medium + + * Apply upstream fix for ticket 19336, aka shared clipboard not working on + Ubuntu host + + -- Gianfranco Costamagna Thu, 05 Mar 2020 16:02:51 +0100 + +virtualbox (6.1.4-dfsg-1) unstable; urgency=medium + + * Bump copyright years + * New upstream version 6.1.4-dfsg + * bump std-version to 4.5.0, no changes required + * Patch refresh + + -- Gianfranco Costamagna Fri, 21 Feb 2020 09:33:05 +0100 + +virtualbox (6.1.2-dfsg-1) unstable; urgency=medium + + * New upstream version 6.1.2-dfsg + * Patch refresh + + -- Gianfranco Costamagna Wed, 15 Jan 2020 16:14:29 +0100 + +virtualbox (6.1.0-dfsg-3) unstable; urgency=medium + + * Add cfg files to UnattendedUpgrades (Closes: #942175) + + -- Gianfranco Costamagna Sun, 15 Dec 2019 15:03:06 +0100 + +virtualbox (6.1.0-dfsg-2) unstable; urgency=medium + + * Add missing library to the qt installation, useful to startup the program + correctly. Thanks Vincas Dargis for the report (Closes: #946754) + + -- Gianfranco Costamagna Sun, 15 Dec 2019 12:19:34 +0100 + +virtualbox (6.1.0-dfsg-1) unstable; urgency=medium + + * New upstream version 6.1.0-dfsg + * Patch refresh, drop patches now upstream: + - 37-python-3.7-support.patch + - drm-ttm-build-fix.patch + - 016-linux-5-4.patch + - acpica-unix-20191018.patch + * Update VBox.sh with new tools + * Bump std-version to 4.4.1 + * Conflict with official virtualbox-6.1 package + * Remove gl/ogl files, dropped upstream. + * Update vboxweb to work with the systemv upstream init script + * Drop vboxpci kernel module, removed upstream + * Drop VBoxREM.so file + + -- Gianfranco Costamagna Thu, 12 Dec 2019 19:20:17 +0100 + +virtualbox (6.0.14-dfsg-4) unstable; urgency=medium + + * Fixup previous upload + + -- Gianfranco Costamagna Tue, 03 Dec 2019 22:17:14 +0100 + +virtualbox (6.0.14-dfsg-3) unstable; urgency=medium + + * Fix build with new gsoap (Closes: #945548) + * Drop 81649 and take the archlinux version, that contains also rev 81586 and + 81587 (LP: #1848594) + + -- Gianfranco Costamagna Thu, 28 Nov 2019 11:52:52 +0100 + +virtualbox (6.0.14-dfsg-2) unstable; urgency=medium + + * debian/patches/81649.patch: + - upstream fixes for kernel 5.4 (LP: #1848594) + + -- Gianfranco Costamagna Thu, 21 Nov 2019 18:29:20 +0100 + +virtualbox (6.0.14-dfsg-1) unstable; urgency=medium + + * New upstream version 6.0.14-dfsg + * drop kernel patch: upstream + + -- Gianfranco Costamagna Thu, 17 Oct 2019 09:24:16 +0200 + +virtualbox (6.0.12-dfsg-1) unstable; urgency=medium + + * New upstream version 6.0.12-dfsg + * Patch refresh, add support for Python3.8 too + + -- Gianfranco Costamagna Thu, 05 Sep 2019 09:11:42 +0200 + +virtualbox (6.0.10-dfsg-5) unstable; urgency=medium + + * Add patch to fix build on newer kernels, thanks Ben Hutchings for the help! + Closes: #934483 + * Stop using dh_link in the wrong way, thanks Nicolas Boulenguez for the help! + Closes: #935309 + + -- Gianfranco Costamagna Wed, 21 Aug 2019 18:12:14 +0200 + +virtualbox (6.0.10-dfsg-4) unstable; urgency=medium + + * Refresh patch, the skb_frag_t struct is scheduled for kernel 5.4 + (Closes: #934010) + + -- Gianfranco Costamagna Tue, 06 Aug 2019 11:15:30 +0200 + +virtualbox (6.0.10-dfsg-3) unstable; urgency=medium + + * Refresh kernel 5.3.patch with new fixes + + -- Gianfranco Costamagna Sat, 03 Aug 2019 13:47:34 +0200 + +virtualbox (6.0.10-dfsg-2) unstable; urgency=medium + + * debian/patches/kernel-5.3.patch + - upstream proposed build fix for kernle 5.3 LP: #1837895 + * Build depend on libgsoap-dev too (Closes: #933246) + + -- Gianfranco Costamagna Sun, 28 Jul 2019 13:25:15 +0200 + +virtualbox (6.0.10-dfsg-1) unstable; urgency=medium + + * New upstream release (Closes: #929074) + * Drop kernel patch + * Bump std-version to 4.4.0, no changes required + + -- Gianfranco Costamagna Wed, 17 Jul 2019 12:10:52 +0200 + +virtualbox (6.0.8-dfsg-7) unstable; urgency=medium + + * Fix another chunk for kernel 5.2 + + -- Gianfranco Costamagna Thu, 23 May 2019 16:05:04 +0200 + +virtualbox (6.0.8-dfsg-6) unstable; urgency=medium + + * Refresh previous patch (Closes: #929413, Closes: #929399) + + -- Gianfranco Costamagna Thu, 23 May 2019 09:34:03 +0200 + +virtualbox (6.0.8-dfsg-5) unstable; urgency=medium + + * Add patch to fix build failure with kernel 5.2 + (LP: #1830061) + + -- Gianfranco Costamagna Wed, 22 May 2019 17:58:01 +0200 + +virtualbox (6.0.8-dfsg-4) unstable; urgency=medium + + * Fixup version string (typo in previous upload) + + -- Gianfranco Costamagna Fri, 17 May 2019 17:55:41 +0200 + +virtualbox (6.0.8-dfsg-3) unstable; urgency=medium + + [ YOSHINO Yoshihito ] + * Use dh_prep for vbox-*-source packages, fixing compat level 12 failure. + (Closes: #929055) + + [ Gianfranco Costamagna ] + * Move lintian-overrides location + * Drop trailing changelogs + * Drop old dh-systemd dependency + * Patch refresh, fix typo + * Drop parsechangelog call in rules file + + -- Gianfranco Costamagna Fri, 17 May 2019 16:39:21 +0200 + +virtualbox (6.0.8-dfsg-2) unstable; urgency=medium + + * Bump compat level to 12 + + -- Gianfranco Costamagna Wed, 15 May 2019 10:18:23 +0200 + +virtualbox (6.0.8-dfsg-1) unstable; urgency=medium + + * New upstream version 6.0.8-dfsg + * Patch refresh, drop upstream patches: 78446 78447 + + -- Gianfranco Costamagna Wed, 15 May 2019 10:15:16 +0200 + +virtualbox (6.0.6-dfsg-2) unstable; urgency=medium + + * Cherry-pick two upstream fixes for guest kernel modules + + -- Gianfranco Costamagna Wed, 08 May 2019 15:09:14 +0200 + +virtualbox (6.0.6-dfsg-1) unstable; urgency=medium + + * Implement DEB_BUILD_OPTIONS=parallel=n handling during build + (Closes: #924302) + * New upstream version 6.0.6-dfsg + * Patch refresh + * drop upstream patches: + - debian/patches/77040.patch + - debian/patches/77542.patch + - debian/patches/java11-upstream.patch + * Drop Ubuntu patch, now differently part of upstream code: + - debian/patches/fix-vboxvideo-with-linux-5.0.patch + + -- Gianfranco Costamagna Wed, 17 Apr 2019 00:08:12 +0200 + +virtualbox (6.0.4-dfsg-7) unstable; urgency=medium + + * debian/patches/fix-vboxvideo-with-linux-5.0.patch: + - add another build (this time for vboxvideo) LP: #1819352 + * Add README.Debian.security file, to make users aware + of the security issues in the package (this was part of the -6 + upload) + + -- Gianfranco Costamagna Sun, 10 Mar 2019 21:26:29 +0100 + +virtualbox (6.0.4-dfsg-6) unstable; urgency=medium + + * Upstream build fix with kernel 5.0 (LP: #1813071) + + -- Gianfranco Costamagna Sat, 09 Mar 2019 13:50:34 +0100 + +virtualbox (6.0.4-dfsg-5) unstable; urgency=medium + + * Tweak java patch with upstream approach + + -- Gianfranco Costamagna Thu, 31 Jan 2019 15:42:02 +0100 + +virtualbox (6.0.4-dfsg-4) unstable; urgency=medium + + * debian/patches/77040.patch: + - save some space in binaries, with upstream patch. + + -- Gianfranco Costamagna Thu, 31 Jan 2019 11:34:00 +0100 + +virtualbox (6.0.4-dfsg-3) unstable; urgency=medium + + * Switch to java11, that changed everything (Closes: #920723) + - add new jaxw dependencies. + * Switch from iasl to the new acpica-tools name + + -- Gianfranco Costamagna Wed, 30 Jan 2019 17:06:55 +0100 + +virtualbox (6.0.4-dfsg-2) unstable; urgency=medium + + [ Gianfranco Costamagna ] + * Virtualbox 6 is now a amd64 thing only, 32 bit host + is not supported anymore by upstream + + [ Whoopie ] + * use cafe instead of beef, to detect if we are inside a VM to fix + copy-paste. + * Start VBoxClient too, with the right --vmsvga flag, to fix screen resize + + -- Gianfranco Costamagna Tue, 29 Jan 2019 10:01:17 +0100 + +virtualbox (6.0.4-dfsg-1) unstable; urgency=medium + + * New upstream version 6.0.4-dfsg + * Upload to unstable + * Finally relax dh_strip hack + * Relax some version constraints, already fullfilled since o-o-stable + * Patch refresh for no-update + * drop upstream patches: + - fix-build-from-bird.patch + - 76906.patch + + -- Gianfranco Costamagna Mon, 28 Jan 2019 17:10:51 +0100 + +virtualbox (6.0.2-dfsg-1~exp4) experimental; urgency=medium + + * Setting setuid bit on VirtualBoxVM instead of VirtualBox to fix + startup (Closes: #919554). + + -- Daniel Baumann Sat, 19 Jan 2019 15:59:23 +0100 + +virtualbox (6.0.2-dfsg-1~exp3) experimental; urgency=medium + + * Fix typo in previous upload + + -- Gianfranco Costamagna Thu, 17 Jan 2019 10:33:06 +0100 + +virtualbox (6.0.2-dfsg-1~exp2) experimental; urgency=medium + + * Add suid bit to VBoxNetNat to make it work (LP: #1805651) + + -- Gianfranco Costamagna Thu, 17 Jan 2019 08:54:58 +0100 + +virtualbox (6.0.2-dfsg-1~exp1) experimental; urgency=medium + + [ Robert Edmonds ] + * Add rdesktop-vrdp package (Closes: #914165) + + [ Kevin Locke ] + * Add udev rules for vboxdrvu and vboxnetctl (Closes: #916464) + + [ Gianfranco Costamagna ] + * debian/patches/VBoxVNC.fix.patch: LP: #1804048 + - thanks AZ for the patch, that is now part of upstream codebase + * Bump std-version to 4.3.0, no changes required + * Conflict with virtualbox-5.2 + * Conflict with vbox 6.0 too + * New upstream version 6.0.2-dfsg + * Add missing patch from + * bump copyright year + * patch refresh + * Enable full hardening + * Update manpages for vbox6 + * Update no-update patch + + -- Gianfranco Costamagna Wed, 16 Jan 2019 14:34:29 +0100 + +virtualbox (5.2.22-dfsg-2) unstable; urgency=low + + * avoid wayland issues, setup properly the x11 mesa override, taken from upstream patch + + -- Gianfranco Costamagna Fri, 09 Nov 2018 15:58:47 +0100 + +virtualbox (5.2.22-dfsg-1) unstable; urgency=high + + * New upstream release (Closes: #913137) + * Drop gcc patch + * patch refresh + + -- Gianfranco Costamagna Fri, 09 Nov 2018 12:12:06 +0100 + +virtualbox (5.2.20-dfsg-3) unstable; urgency=medium + + * Correct java8 path for i386 + + -- Gianfranco Costamagna Wed, 24 Oct 2018 23:21:37 +0200 + +virtualbox (5.2.20-dfsg-2) unstable; urgency=medium + + * use java8 again, java11 removes wsimport, useful to have the build finish. + + -- Gianfranco Costamagna Wed, 24 Oct 2018 18:00:28 +0200 + +virtualbox (5.2.20-dfsg-1) unstable; urgency=medium + + * New upstream version 5.2.20-dfsg + * Drop kernel patch, patch refresh + + -- Gianfranco Costamagna Wed, 17 Oct 2018 11:49:09 +0200 + +virtualbox (5.2.18-dfsg-2) unstable; urgency=medium + + * debian/patches/kernel-4.18.patch: + - Fix build with kernel 4.18 (LP: #1787441) + + -- Gianfranco Costamagna Fri, 17 Aug 2018 17:02:22 +0200 + +virtualbox (5.2.18-dfsg-1) unstable; urgency=medium + + * New upstream version 5.2.18-dfsg + * Patch refresh + * Bump std-version to 4.2.0.1, no changes required + + -- Gianfranco Costamagna Wed, 15 Aug 2018 23:00:46 +0200 + +virtualbox (5.2.16-dfsg-3) unstable; urgency=medium + + * from: Kevin Puetz: + - patch to avoid virtualbox guest utils run if no virtual machines are detected. + + -- Gianfranco Costamagna Thu, 19 Jul 2018 12:36:05 +0200 + +virtualbox (5.2.16-dfsg-2) unstable; urgency=medium + + * Allow new gcc8 to build + + -- Gianfranco Costamagna Thu, 19 Jul 2018 11:47:59 +0200 + +virtualbox (5.2.16-dfsg-1) unstable; urgency=medium + + * New upstream version 5.2.16-dfsg, patch refresh + * Drop now upstreamed patches: {fix-build,plt-upstream-fix,videorec}.patch + * Bump std-version to 4.1.5, no changes required + * Drop now-useless --enable-system-libopus switch + + -- Gianfranco Costamagna Tue, 17 Jul 2018 19:36:46 +0200 + +virtualbox (5.2.14-dfsg-7) unstable; urgency=medium + + * Add again libopus hack in rules file, this might be dropped + in next upstream release + + -- Gianfranco Costamagna Mon, 16 Jul 2018 08:51:46 +0200 + +virtualbox (5.2.14-dfsg-6) unstable; urgency=medium + + [ Jan Nordoholz ] + * Refresh patch to make it really work. + + -- Gianfranco Costamagna Mon, 16 Jul 2018 08:51:18 +0200 + +virtualbox (5.2.14-dfsg-5) unstable; urgency=medium + + * Reupload with upstream patch + some minor modifications to fix the issue + again. (Closes: #902897) + + -- Gianfranco Costamagna Sun, 15 Jul 2018 14:54:31 +0200 + +virtualbox (5.2.14-dfsg-4) unstable; urgency=medium + + * Update with new upstream accepted patch. + + -- Gianfranco Costamagna Fri, 13 Jul 2018 10:42:09 +0200 + +virtualbox (5.2.14-dfsg-3) unstable; urgency=low + + [ Gianfranco Costamagna ] + * Tweak python patch to make it compatible with Python3.7 + * Tweak previous changelog entry + + [ Will Thompson ] + * guest-utils.service: add ConditionVirtualization=oracle + + -- Gianfranco Costamagna Thu, 12 Jul 2018 12:03:32 +0200 + +virtualbox (5.2.14-dfsg-2) unstable; urgency=low + + * Try to fix issue with new binutils (Closes: #902897) + - thanks Jan Christoph Nordholz for the great help and fix! + + -- Gianfranco Costamagna Thu, 12 Jul 2018 09:49:54 +0200 + +virtualbox (5.2.14-dfsg-1) unstable; urgency=medium + + * New upstream version 5.2.14-dfsg + * Drop kernel and acpica patches + + -- Gianfranco Costamagna Mon, 02 Jul 2018 19:50:29 +0200 + +virtualbox (5.2.12-dfsg-3) unstable; urgency=medium + + * debian/patches/fixes_for_4.17.patch + from opensuse: fix build with kernel 4.17 (LP: #1776671) + + -- Gianfranco Costamagna Thu, 14 Jun 2018 10:09:21 +0200 + +virtualbox (5.2.12-dfsg-2) unstable; urgency=medium + + * Ignore new acpica-unix syntax, and sed the new aml syntax to the old + aml working paradigm. A real fix might require: + - a revert of acpica-unix code + - a fallback code or switch in acpica-unix + - changing vbox filenames to some correct C syntax + For now, better rename the resulting structure to the old way, taking the + approach from FreeBSD patch. (See bug: #899318) + + -- Gianfranco Costamagna Fri, 25 May 2018 08:45:05 +0200 + +virtualbox (5.2.12-dfsg-1) unstable; urgency=medium + + * New upstream version 5.2.12-dfsg + * Patch refresh, drop upstream patches: + GL-fixes.patch, vm-restore.patch, 71985.patch + + -- Gianfranco Costamagna Thu, 10 May 2018 15:12:08 +0200 + +virtualbox (5.2.10-dfsg-7) unstable; urgency=medium + + * debian/patches/71985.patch: add compatibility with upstream + kernel 4.16 patch (Closes: #897928) + thanks James McCoy for the bug report! + + -- Gianfranco Costamagna Mon, 07 May 2018 11:43:12 +0200 + +virtualbox (5.2.10-dfsg-6) unstable; urgency=high + + * Fix live restore issue (Closes: #896895) + - cherry-pick upstream changeset 71931 + + -- Gianfranco Costamagna Thu, 26 Apr 2018 10:49:04 +0200 + +virtualbox (5.2.10-dfsg-5) unstable; urgency=medium + + * Do the ldconfig and configure of 3d only in case is available + from configuration file (host side) and x11 package is installed. + + -- Gianfranco Costamagna Mon, 23 Apr 2018 19:24:28 +0200 + +virtualbox (5.2.10-dfsg-4) unstable; urgency=medium + + * Refresh previous patch + + -- Gianfranco Costamagna Mon, 23 Apr 2018 16:54:58 +0200 + +virtualbox (5.2.10-dfsg-3) unstable; urgency=medium + + * Enable again videorec features (Closes: #895791) + * Do not add GL bindings anymore, breaking userspace applications. + + -- Gianfranco Costamagna Fri, 20 Apr 2018 15:17:21 +0200 + +virtualbox (5.2.10-dfsg-2) unstable; urgency=medium + + * Alioth list is dead, move to new list. (Closes: #895970) + + -- Gianfranco Costamagna Wed, 18 Apr 2018 11:02:56 +0200 + +virtualbox (5.2.10-dfsg-1) unstable; urgency=medium + + * New upstream version 5.2.10-dfsg + - drop notify-send patch: upstream + * Correct VCS field + * commit new patch for GL fixes + * Update watch file and std-version to 4.1.4 + * Patch refresh + + -- Gianfranco Costamagna Wed, 18 Apr 2018 00:57:55 +0200 + +virtualbox (5.2.8-dfsg-10) unstable; urgency=medium + + * Switch to salsa.debian.org VCS fields + + -- Gianfranco Costamagna Sun, 15 Apr 2018 19:38:53 +0200 + +virtualbox (5.2.8-dfsg-9) unstable; urgency=medium + + * Revert previous upload (Closes: #895655) + + -- Gianfranco Costamagna Sat, 14 Apr 2018 10:31:28 +0200 + +virtualbox (5.2.8-dfsg-8) unstable; urgency=medium + + [ Daniel Rocher ] + * Add again vboxvideo_drv.so for systems without 3d enabled. + LP: #1759452 + + -- Gianfranco Costamagna Fri, 13 Apr 2018 18:39:41 +0200 + +virtualbox (5.2.8-dfsg-7) unstable; urgency=low + + [ Whoopie ] + * Move dkms rules out to dkms package, but to utils, because + they can be used with modules builtin in the kernel itself + or the guest-source package + + [ Gianfranco Costamagna ] + * Make the guest-utils depends on dkms not vice-versa + + -- Gianfranco Costamagna Thu, 12 Apr 2018 13:21:54 +0200 + +virtualbox (5.2.8-dfsg-6) unstable; urgency=medium + + * Build with java9 (Closes: #894365) + - thanks Emmanuel Bourg for all the great help! + + -- Gianfranco Costamagna Thu, 29 Mar 2018 19:05:29 +0200 + +virtualbox (5.2.8-dfsg-5) unstable; urgency=medium + + * Fixup build on i386, by finding the correct java path here too. + + -- Gianfranco Costamagna Mon, 19 Mar 2018 08:19:14 +0100 + +virtualbox (5.2.8-dfsg-4) unstable; urgency=medium + + * Force java8 to build, java9 makes the program FTBFS because + of missing javax module (and --add-module can't find it) + + -- Gianfranco Costamagna Fri, 16 Mar 2018 15:02:17 +0100 + +virtualbox (5.2.8-dfsg-3) unstable; urgency=medium + + * Do not delay startup because of notify-send not being ready + (Closes: #880594, LP: #1722745) + + -- Gianfranco Costamagna Fri, 16 Mar 2018 13:56:41 +0100 + +virtualbox (5.2.8-dfsg-2) unstable; urgency=medium + + * Update dh_systemd_enable to run only with guest-utils package + (Closes: #891860). Thanks Kevin Locke for the useful report! + + -- Gianfranco Costamagna Thu, 01 Mar 2018 22:53:54 +0100 + +virtualbox (5.2.8-dfsg-1) unstable; urgency=medium + + * New upstream release, drop the patches upstreamed. + * Update copyright year to 2018 + + -- Gianfranco Costamagna Tue, 27 Feb 2018 23:32:31 +0100 + +virtualbox (5.2.6-dfsg-5) unstable; urgency=medium + + * Fixup previous upload + + -- Gianfranco Costamagna Tue, 20 Feb 2018 11:47:34 +0100 + +virtualbox (5.2.6-dfsg-4) unstable; urgency=medium + + [ Ronny Standtke ] + * Enable virtualbox-guest-utils.service by default (Closes: #890047) + + [ Gianfranco Costamagna ] + * Cherry-pick upstream fixes for 3d acceleration + + -- Gianfranco Costamagna Mon, 19 Feb 2018 11:17:10 +0100 + +virtualbox (5.2.6-dfsg-3) unstable; urgency=medium + + * Patch for 3D runtime flickering with NVIDIA cards + (this needs a new environment variable) Closes: #889030 + CR_RENDER_FORCE_PRESENT_MAIN_THREAD=0 VirtualBox + Thanks Marius Mikucionis for the report! + + -- Gianfranco Costamagna Thu, 01 Feb 2018 13:37:11 +0100 + +virtualbox (5.2.6-dfsg-2) unstable; urgency=high + + * Add kernel 4.15 patch, from mail list (LP: #1737759 + + -- Gianfranco Costamagna Thu, 18 Jan 2018 16:30:10 +0100 + +virtualbox (5.2.6-dfsg-1) unstable; urgency=medium + + * New upstream version 5.2.6-dfsg + * Bump std-version to 4.1.3, no changes required + * Drop xfce patch, upstream + * Patch refresh + + -- Gianfranco Costamagna Tue, 16 Jan 2018 22:35:31 +0100 + +virtualbox (5.2.4-dfsg-2) unstable; urgency=medium + + [ Dusan Gallo ] + * Fix mini toolbar issue with xfce4 + + -- Gianfranco Costamagna Thu, 04 Jan 2018 09:19:40 +0100 + +virtualbox (5.2.4-dfsg-1) unstable; urgency=medium + + * New upstream version 5.2.4-dfsg + * Bump std-version to 4.1.2, no changes required + * Patch refresh Drop 69989.patch: upstream + + -- Gianfranco Costamagna Tue, 19 Dec 2017 23:34:39 +0100 + +virtualbox (5.2.2-dfsg-3) unstable; urgency=high + + * debian/patches/69989.patch: + - cherry-pick fix for GL stuff, breaking login screen + on ubuntu 17.10+ releases (virtualbox-guest-x11 package) + + -- Gianfranco Costamagna Fri, 08 Dec 2017 20:06:25 +0100 + +virtualbox (5.2.2-dfsg-2) unstable; urgency=medium + + * The new release didn't fix the build failure + reapply the fix-build patch (Closes: #882647) + + -- Gianfranco Costamagna Sat, 25 Nov 2017 09:59:58 +0100 + +virtualbox (5.2.2-dfsg-1) unstable; urgency=medium + + * New upstream release (Closes: #880068) + * Drop patches, they should be all addressed upstream + + -- Gianfranco Costamagna Tue, 14 Nov 2017 12:48:20 +0100 + +virtualbox (5.2.0-dfsg-5) unstable; urgency=low + + * Stop providing vboxdrv in virtualbox.init script, this makes + it clash with the upstream one. See: LP: #1523075 + + -- Gianfranco Costamagna Sat, 11 Nov 2017 11:44:17 +0100 + +virtualbox (5.2.0-dfsg-4) unstable; urgency=medium + + * 69524.patch: fixup the kernel 4.14 fix + + -- Gianfranco Costamagna Tue, 07 Nov 2017 10:53:52 +0100 + +virtualbox (5.2.0-dfsg-3) unstable; urgency=medium + + * Switch to lynx (Closes: #880935) + - thanks Andreas Beckmann for the bug report! + + -- Gianfranco Costamagna Mon, 06 Nov 2017 16:20:50 +0100 + +virtualbox (5.2.0-dfsg-2) unstable; urgency=low + + * Tentatively fix virtualbox-dkms (Closes: #879940) + * Try to build guest when drm_rect.h is available (Closes: #879895) + + -- Gianfranco Costamagna Fri, 27 Oct 2017 19:43:50 +0200 + +virtualbox (5.2.0-dfsg-1) unstable; urgency=low + + * Upload to unstable + * Cherry-pick fixes for new kernel 4.14 + - 69143.patch + + -- Gianfranco Costamagna Fri, 20 Oct 2017 16:50:34 +0200 + +virtualbox (5.2.0-dfsg-1~exp5) experimental; urgency=medium + + * Fixup guest-* generation + + -- Gianfranco Costamagna Thu, 19 Oct 2017 23:33:45 +0200 + +virtualbox (5.2.0-dfsg-1~exp4) experimental; urgency=medium + + * Enforce kbuild minimum version + + -- Gianfranco Costamagna Thu, 19 Oct 2017 19:11:24 +0200 + +virtualbox (5.2.0-dfsg-1~exp3) experimental; urgency=medium + + * define VBOX_USE_SYSTEM_GL_HEADERS from Sérgio Basto. + + -- Gianfranco Costamagna Thu, 19 Oct 2017 14:25:13 +0200 + +virtualbox (5.2.0-dfsg-1~exp2) experimental; urgency=medium + + * Re-add part of 18-system-xorg.patch, this should fix + part of the i386 failure + + -- Gianfranco Costamagna Thu, 19 Oct 2017 12:14:57 +0200 + +virtualbox (5.2.0-dfsg-1~exp1) experimental; urgency=medium + + * New upstream version 5.2.0-dfsg + * Drop xorg patches, patch refresh + + -- Gianfranco Costamagna Wed, 18 Oct 2017 20:31:06 +0200 + +virtualbox (5.1.30-dfsg-1) unstable; urgency=medium + + * New upstream version 5.1.30-dfsg + + -- Gianfranco Costamagna Tue, 17 Oct 2017 08:50:29 +0200 + +virtualbox (5.1.28-dfsg-3) unstable; urgency=medium + + * Drop the ntp conflict, users seems to be not happy with not having it. + Closes: #878074. + People are already advised to *not* use it, and use the guest tools + instead. + + -- Gianfranco Costamagna Tue, 10 Oct 2017 19:34:19 +0200 + +virtualbox (5.1.28-dfsg-2) unstable; urgency=high + + * Conflict with ntp services due to systemd hack removed. + (Closes: #873263) + (thanks to the various systemd maintainers and upstream for the help) + * Bump std-version to 4.1.1 + + -- Gianfranco Costamagna Wed, 04 Oct 2017 16:47:29 +0200 + +virtualbox (5.1.28-dfsg-1) unstable; urgency=medium + + * Remove double "in" keyword, to make lintian happy + * New upstream version 5.1.28-dfsg + * Bump std-version to 4.1.0 + * drop old patch cherry-pick-68274: upstream + + -- Gianfranco Costamagna Thu, 14 Sep 2017 19:42:08 +0200 + +virtualbox (5.1.26-dfsg-2) unstable; urgency=medium + + * Cherry-pick gcc warning fix 68274 + + -- Gianfranco Costamagna Mon, 07 Aug 2017 12:09:45 +0200 + +virtualbox (5.1.26-dfsg-1) unstable; urgency=medium + + * New upstream version 5.1.26-dfsg + * Drop vboxxpcom patch merged upstream + + -- Gianfranco Costamagna Fri, 28 Jul 2017 09:58:32 +0200 + +virtualbox (5.1.24-dfsg-2) unstable; urgency=medium + + [ Andreas Heinlein ] + * debian/patches/vboxxpcom.py.patch: + - Fix python3 binding (Upstream ticket: + https://www.virtualbox.org/ticket/16899 + Closes: #868853 + Thanks Andreas Heinlein for the report and fix! + + -- Gianfranco Costamagna Wed, 19 Jul 2017 11:31:27 +0200 + +virtualbox (5.1.24-dfsg-1) unstable; urgency=medium + + * New upstream version 5.1.24, patch refresh + * Add iproute2 (Closes: #867129) + - Thanks Zhang Jingqiang for reporting! + + -- Gianfranco Costamagna Tue, 18 Jul 2017 15:28:52 +0200 + +virtualbox (5.1.22-dfsg-4) unstable; urgency=medium + + * No change rebuild with new debhelper (Closes: #868290) + + -- Gianfranco Costamagna Thu, 13 Jul 2017 23:56:46 +0200 + +virtualbox (5.1.22-dfsg-3) unstable; urgency=medium + + * Switch compat level to 10 + * Bump std-version to 4.0.0 + + -- Gianfranco Costamagna Tue, 11 Jul 2017 23:57:11 +0200 + +virtualbox (5.1.22-dfsg-2) unstable; urgency=medium + + [ Michael Hudson-Doyle ] + * Look for Python 3.6 as well as all older versions. + + -- Gianfranco Costamagna Sat, 24 Jun 2017 15:00:47 +0200 + +virtualbox (5.1.22-dfsg-1) unstable; urgency=medium + + * New upstream release. + + -- Gianfranco Costamagna Sat, 29 Apr 2017 11:10:07 +0200 + +virtualbox (5.1.20-dfsg-2) unstable; urgency=medium + + * Add two missing files, from new 5.1.20a upstream tarball. + + -- Gianfranco Costamagna Wed, 19 Apr 2017 11:11:21 +0200 + +virtualbox (5.1.20-dfsg-1) unstable; urgency=medium + + * New upstream release, patch refresh. + - drop prime patch + + -- Gianfranco Costamagna Wed, 19 Apr 2017 08:05:49 +0200 + +virtualbox (5.1.18-dfsg-1) unstable; urgency=medium + + * New upstream release, patch refresh. + + -- Gianfranco Costamagna Thu, 16 Mar 2017 00:04:58 +0100 + +virtualbox (5.1.16-dfsg-1) unstable; urgency=medium + + [ David Baumann ] + * Fix desktop file (LP: #1507324) + + [ Gianfranco Costamagna ] + * New upstream release, patch refresh. + * Drop upstream patch for linux 4.10 + + -- Gianfranco Costamagna Mon, 06 Mar 2017 15:09:23 +0100 + +virtualbox (5.1.14-dfsg-3) unstable; urgency=medium + + [ Andreas Pokorny ] + * Add support for Unity8 (LP: #1669807) + + [ Gianfranco Costamagna ] + * Update virtualbox desktop file. + + -- Gianfranco Costamagna Fri, 03 Mar 2017 19:28:43 +0100 + +virtualbox (5.1.14-dfsg-2) unstable; urgency=medium + + [ Seth Forshee ] + * Cherry pick upstream commit 65409 to fix build with Linux 4.10. + + -- Gianfranco Costamagna Thu, 16 Feb 2017 20:10:54 +0100 + +virtualbox (5.1.14-dfsg-1) unstable; urgency=medium + + * New upstream release. + + -- Gianfranco Costamagna Tue, 17 Jan 2017 16:00:00 +0100 + +virtualbox (5.1.12-dfsg-2) unstable; urgency=medium + + * Add missing libegl1-mesa-dev dependency + (Closes: #848946) + + -- Gianfranco Costamagna Wed, 21 Dec 2016 07:37:38 +0100 + +virtualbox (5.1.12-dfsg-1) unstable; urgency=medium + + * New upstream release. + + -- Gianfranco Costamagna Tue, 20 Dec 2016 22:57:30 +0100 + +virtualbox (5.1.10-dfsg-2) unstable; urgency=low + + [ Gianfranco Costamagna, Peter Meiser ] + * Major rewrite of the guest-additions GL library handling + + [ Gianfranco Costamagna ] + * Cherry-pick upstream fixes for xorg 1.19 (Closes: #845644) + - remove vboxvideo_drv_system.so, obsolete and useless + (according to upstream ticket 16052) + + -- Gianfranco Costamagna Tue, 22 Nov 2016 18:48:42 +0100 + +virtualbox (5.1.10-dfsg-1) unstable; urgency=medium + + * New upstream release (Closes: #843619) + - drop linux-4.9-fix.patch, python3.patch, fix-build.patch, + old-python.patch: upstream + + -- Gianfranco Costamagna Tue, 22 Nov 2016 11:03:17 +0100 + +virtualbox (5.1.8-dfsg-7) unstable; urgency=medium + + * d/p/linux-4.9-fix.patch (LP: #1642163): + - Fix build with kernel 4.9, cherry-picking upstream + commit 64561 64562 64564 + + -- Gianfranco Costamagna Wed, 16 Nov 2016 10:18:29 +0100 + +virtualbox (5.1.8-dfsg-6) unstable; urgency=medium + + * Try to avoid dh_python3 symlinks + + -- Gianfranco Costamagna Fri, 21 Oct 2016 17:54:55 +0200 + +virtualbox (5.1.8-dfsg-5) unstable; urgency=high + + * Back to Python2, seems that at runtime some symbolik + links need mangling (Closes: #841634) + + -- Gianfranco Costamagna Fri, 21 Oct 2016 17:28:00 +0200 + +virtualbox (5.1.8-dfsg-4) unstable; urgency=medium + + * cherry-pick upstream 64330 to bring Python3 + - debian/patches/python3.patch + switch finally to Python3 (LP: #1528016, Closes: #830878) + + -- Gianfranco Costamagna Thu, 20 Oct 2016 14:34:26 +0200 + +virtualbox (5.1.8-dfsg-3) unstable; urgency=medium + + * Fix build with the correct upstream patch. + (Closes: #841340) + + -- Gianfranco Costamagna Wed, 19 Oct 2016 19:33:05 +0200 + +virtualbox (5.1.8-dfsg-2) unstable; urgency=medium + + * Fix a build failure with newer gcc. + + -- Gianfranco Costamagna Wed, 19 Oct 2016 18:03:27 +0200 + +virtualbox (5.1.8-dfsg-1) unstable; urgency=medium + + * New upstream release. + - builds with new openssl 1.1 (Closes: #828593) + - fix double snapshot deletion crash (Closes: #838766) + + -- Gianfranco Costamagna Wed, 19 Oct 2016 00:12:38 +0200 + +virtualbox (5.1.6-dfsg-2) unstable; urgency=medium + + * Tweak description to mention that dkms and source are + mutually exclusive (Closes: #634042) + + -- Gianfranco Costamagna Wed, 14 Sep 2016 08:43:10 +0200 + +virtualbox (5.1.6-dfsg-1) unstable; urgency=medium + + * New upstream release, patch refresh. + + -- Gianfranco Costamagna Tue, 13 Sep 2016 08:07:31 +0200 + +virtualbox (5.1.4-dfsg-4) unstable; urgency=low + + * Try to add VBox missing binaries (LP: #1621890). + * Merge the VBox.sh with the upstream one + + -- Gianfranco Costamagna Fri, 09 Sep 2016 16:38:26 +0200 + +virtualbox (5.1.4-dfsg-3) unstable; urgency=low + + * Revert to Python2, building with Python3 seems still not supported + even if at runtime it might work. + + -- Gianfranco Costamagna Thu, 08 Sep 2016 11:39:40 +0200 + +virtualbox (5.1.4-dfsg-2) unstable; urgency=low + + * Switch to Python3 (LP: #1528016, Closes: #830878) + + -- Gianfranco Costamagna Fri, 26 Aug 2016 09:51:07 +0200 + +virtualbox (5.1.4-dfsg-1) unstable; urgency=low + + * New upstream major release, patch refresh. + * Update dependencies to qt5 + * Regenerate manpages + * Fix gcc version check for gcc-6.x + * Only suggest the guest-x11 from the guest-utils package. + (Closes: #834965) + + -- Gianfranco Costamagna Wed, 17 Aug 2016 10:33:49 +0200 + +virtualbox (5.0.24-dfsg-2) unstable; urgency=medium + + * Relax debhelper version, to ease backports. + + -- Gianfranco Costamagna Thu, 30 Jun 2016 10:54:14 +0200 + +virtualbox (5.0.24-dfsg-1) unstable; urgency=medium + + * New upstream release, patch refresh. + - remove fix-build.patch: upstream + + -- Gianfranco Costamagna Wed, 29 Jun 2016 00:51:47 +0200 + +virtualbox (5.0.22-dfsg-3) unstable; urgency=high + + * Fix Ubuntu build (patch already accepted upstream) + - this should fix also older kernel builds. + + -- Gianfranco Costamagna Tue, 28 Jun 2016 18:29:30 +0200 + +virtualbox (5.0.22-dfsg-2) unstable; urgency=low + + * Switch to automatic dbg packages. + + -- Gianfranco Costamagna Fri, 24 Jun 2016 23:22:04 +0200 + +virtualbox (5.0.22-dfsg-1) unstable; urgency=medium + + * New upstream release, patch refresh. + - drop fix-detect-gcc-5.4.patch, fix-kernel-4.7.patch, + fix-gcc-pie.patch: upstream + + -- Gianfranco Costamagna Fri, 17 Jun 2016 00:24:15 +0200 + +virtualbox (5.0.20-dfsg-3) unstable; urgency=medium + + [ Adam Borowski ] + * debian/patches/fix-kernel-4.7.patch (Closes: #825819) + + [ Gianfranco Costamagna ] + * Conflict with virtualbox-5.1 + * Upload to unstable. + + [ Mateusz Łukasik ] + * debian/patches/fix-detect-gcc-5.4.patch: + - Fix build failure with gcc-5.4 and 6.1 (Closes: #827193) + + -- Gianfranco Costamagna Mon, 30 May 2016 12:30:24 +0200 + +virtualbox (5.0.20-dfsg-2) unstable; urgency=medium + + [ Guillem Jover ] + * make LSB init script have more consistent output (Closes: #823086). + + [ Frank Mehnert ] + * Pass -fno-pie, to avoid build failures with gcc and default pie enabled. + (LP: #1578424) + - debian/patches/fix-gcc-pie.patch + + [ Gianfranco Costamagna ] + * Remove in pdf manual the update section (Closes: #823343) + - thanks qazwsxedc for the bug report! + + -- Gianfranco Costamagna Sun, 01 May 2016 20:28:45 +0200 + +virtualbox (5.0.20-dfsg-1) unstable; urgency=medium + + * New upstream release. + - drop 99-vboxvideo-module-version.patch, + fix-guest-failure.patch: upstream. + + -- Gianfranco Costamagna Fri, 29 Apr 2016 09:49:35 +0200 + +virtualbox (5.0.18-dfsg-3) unstable; urgency=high + + * d/p/fix-guest-failure.patch + - fix guest issue causing writes to the disk to fail. + + -- Gianfranco Costamagna Wed, 20 Apr 2016 11:04:27 +0200 + +virtualbox (5.0.18-dfsg-2) unstable; urgency=medium + + [ Adam Conrad ] + * Add MODULE_VERSION to the vboxvideo driver, so DKMS can find it. + + -- Gianfranco Costamagna Tue, 19 Apr 2016 16:45:36 +0200 + +virtualbox (5.0.18-dfsg-1) unstable; urgency=medium + + * New upstream release. + - drop fix-grapphics.patch: upstream + * Fix insecure VCS fields. + * Upload to unstable. + + -- Gianfranco Costamagna Thu, 14 Apr 2016 18:20:22 +0200 + +virtualbox (5.0.16-dfsg-3) experimental; urgency=low + + * Build without xorg legacy with the backport of 5.0.17 + code (revision 106564) + * Bump std-version to 3.9.8, no changes required. + * Add vbox-img (LP: #1558521). + - thanks sworddragon for the bug report! + + -- Gianfranco Costamagna Tue, 08 Mar 2016 12:53:39 +0100 + +virtualbox (5.0.16-dfsg-2) unstable; urgency=medium + + * Update copyright year. + * Install VBoxBugReport too. + + -- Gianfranco Costamagna Sat, 05 Mar 2016 17:41:29 +0100 + +virtualbox (5.0.16-dfsg-1) unstable; urgency=medium + + * New upstream release, patch refresh. + * Bump std-version to 3.9.7, no changes required. + * Bump watch file version to 4. + + -- Gianfranco Costamagna Sat, 05 Mar 2016 10:54:36 +0100 + +virtualbox (5.0.14-dfsg-2) unstable; urgency=medium + + [ Michael Biebl ] + * debian/vboxweb.service: drop wrong/useless ExecStopPost + keyword: (Closes: #813072) + + -- Gianfranco Costamagna Fri, 29 Jan 2016 12:01:48 +0100 + +virtualbox (5.0.14-dfsg-1) unstable; urgency=medium + + * new upstream release. + * Rework rules file to work also when only guest packages needs to be built. + * Merge VBox.sh script with upstream, and add procps to runtime dependencies + thanks Andreas Beckmann (Closes: #802143) + -cfr https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802143#26 + + -- Gianfranco Costamagna Wed, 20 Jan 2016 10:04:40 +0100 + +virtualbox (5.0.12-dfsg-2) unstable; urgency=low + + [ Felipe Sateler ] + * Remove old init script, superceeded by modaliases + (Closes: #796706) + + -- Gianfranco Costamagna Mon, 28 Dec 2015 18:22:57 +0100 + +virtualbox (5.0.12-dfsg-1) unstable; urgency=medium + + * New upstream release, patch refresh. + - drop fix-gcc-version.patch: upstream. + + -- Gianfranco Costamagna Sat, 19 Dec 2015 10:29:34 +0100 + +virtualbox (5.0.10-dfsg-7) unstable; urgency=high + + * use "--no-enable" to not enable the service by default. + (Closes: #807542). A big thanks to Laurent Bigonville! + + -- Gianfranco Costamagna Fri, 11 Dec 2015 12:54:05 +0100 + +virtualbox (5.0.10-dfsg-6) unstable; urgency=medium + + * Do not enable vboxweb.service by default + (Closes: #807542) + + -- Gianfranco Costamagna Thu, 10 Dec 2015 11:21:32 +0100 + +virtualbox (5.0.10-dfsg-5) unstable; urgency=medium + + * fix-gcc-version.patch: allow gcc-5.3 + (Closes: #807466) + + -- Gianfranco Costamagna Wed, 09 Dec 2015 09:26:44 +0100 + +virtualbox (5.0.10-dfsg-4) unstable; urgency=low + + * Add vboxweb.service from Sérgio Basto + - thanks algernon for the help :) + + -- Gianfranco Costamagna Tue, 24 Nov 2015 11:39:57 +0100 + +virtualbox (5.0.10-dfsg-3) unstable; urgency=medium + + [ Mattia Rizzolo ] + * Fix cgit VCS field + * Stop overriding dh_builddeb, the new dpkg already defaults to xz. + + [ Gianfranco Costamagna ] + * add x11-xserver-utils to x11 runtime dependencies, needed for xrandr + (Closes: #805752). A great thanks to Ross Boylan for digging into the + issue and reporting the fix! + * Add a missing Provide of virtualbox-module package + (and drop the lintian override) + * Drop old and useless README.Debian for guest-x11 package. + thanks again Ross Boylan for the fix! + + -- Gianfranco Costamagna Wed, 18 Nov 2015 12:30:13 +0100 + +virtualbox (5.0.10-dfsg-2) unstable; urgency=medium + + * Fix lintian error about malformed override. + * Bump compat level to 9. + + -- Gianfranco Costamagna Fri, 13 Nov 2015 19:36:14 +0100 + +virtualbox (5.0.10-dfsg-1) unstable; urgency=medium + + * New upstream release, patch refresh. + * Update watch file, thanks ! + * Remove iasl-fix.patch: upstream. + + -- Gianfranco Costamagna Wed, 11 Nov 2015 10:29:52 +0100 + +virtualbox (5.0.8-dfsg-1) unstable; urgency=medium + + * New upstream release, patch refresh. + * Remove version constraint from virtualbox-modules, because it is a virtual package. + * Add runtime dependency on xserver-xorg-legacy on virtualbox-guest-x11 + (Closes: #801524) + * Remove some more vboxdrv references (04-vboxdrv-references.patch) + * Override missing virtualbox-modules lintian error. + + [ Alexander Eichner] + * debian/patches/iasl-fix.patch: fix build failure against new iasl 20150930 + + -- Gianfranco Costamagna Thu, 22 Oct 2015 15:32:44 +0200 + +virtualbox (5.0.6-dfsg-1) unstable; urgency=medium + + * New upstream release, patch refresh. + - Drop fix-*.patch patches, upstream. + * Fix rules file to build arch:all packages with dh_listpackages features. + * Make virtualbox depend on dkms, source, modules >= source:Version + instead of a single "=". + - Virtualbox needs a kernel module, and the kernel module is retro-compatible + with older virtualbox versions. + + -- Gianfranco Costamagna Mon, 28 Sep 2015 08:52:36 +0200 + +virtualbox (5.0.4-dfsg-4) unstable; urgency=medium + + * Update control.modules.in for -source and guest-source packages. + Bump std-version, update VCS, update Maintainers and Uploaders list, + follow the control move to contrib/*. + * Move back dkms to Depends, the correct fix should be to just depend on it + (thanks to the nice -devel discussion) + * Remove pre-depends on dpkg because o-o-stable already has a newer version + (form zigo). + * tweak rules file to make package build in arch:all only mode + * Fix lintian error introduced in -3 upload, allowing the + package be binNMUed again + - virtualbox source: not-binnmuable-any-depends-all + virtualbox -> virtualbox-dkms + * Fix lintian warning about patch missing description. + + -- Gianfranco Costamagna Fri, 25 Sep 2015 09:46:55 +0200 + +virtualbox (5.0.4-dfsg-3) unstable; urgency=high + + [ Gianfranco Costamagna ] + * Add xmllint (libxml2-utils) to build-dependencies, to check documentation + during build (Closes: #798638) + - add VBOX_PATH_DOCBOOK_DTD := /usr/share/xml/docbook/schema/dtd/4/ to + LocalConfig.kmk + - thanks a lot to Graham Inggs for the hint! + + [ Ritesh Raj Sarraf ] + * Demote virtualbox-dkms | virtualbox-source to pre-depends, + needed to fully configure virtualbox kernel module prior + to reload virtualbox service, avoiding a race condition. + (Closes: #798527, #798979) + + -- Gianfranco Costamagna Fri, 11 Sep 2015 12:53:53 +0200 + +virtualbox (5.0.4-dfsg-2) unstable; urgency=medium + + * debian/patches/fix-build.patch: fix i386 build failure. + + -- Gianfranco Costamagna Wed, 09 Sep 2015 12:23:13 +0200 + +virtualbox (5.0.4-dfsg-1) unstable; urgency=medium + + * New upstream release, patch refresh. + + -- Gianfranco Costamagna Tue, 08 Sep 2015 19:45:04 +0200 + +virtualbox (5.0.2-dfsg-2) unstable; urgency=medium + + * d/rules: re-enable VBOX_WITH_VMSVGA and + VBOX_WITH_VMSVGA3D (Closes: #795531). + - the CVEs are already fixed + - this patch makes it build more coherently + with how upstream builds it. + - the proper patch should be on upstream changeset 57410 + but we don't need it anymore + * Disable VBoxDTrace (Closes: #795806) + + -- Gianfranco Costamagna Sun, 16 Aug 2015 11:33:47 +0200 + +virtualbox (5.0.2-dfsg-1) unstable; urgency=medium + + * New upstream release. (Closes: #795424) + * Patch refresh. + * Update my uid. + * d/p/fix-gcc-5.2.patch: allow building with gcc-5.2 + + -- Gianfranco Costamagna Fri, 14 Aug 2015 15:43:08 +0200 + +virtualbox (5.0.0-dfsg-1) experimental; urgency=medium + + [ Gianfranco Costamagna ] + * Imported upstream release (Closes: #792026). + * Patch refresh. + * remove obsolete lintian overrides. + * add some wrongly removed lintian overrides. + * Add VBoxDTrace not linked against libc lintian override. + It seems to really not use libc symbols. + * d/rules: remove VBoxDTraceR0.debug and strip VBoxDTraceR0.r0 + files. + * d/rules: sed .gc to .rc (following upstream rename change) + * update d/source.lintian-overrides file. + + -- Gianfranco Costamagna Tue, 14 Jul 2015 15:56:17 +0200 + +virtualbox (4.3.30-dfsg-1) unstable; urgency=medium + + [ Ritesh Raj Sarraf ] + * Imported upstream release. + + [ Gianfranco Costamagna ] + * Readd again some removed lintian overrides. + * virtualbox 4.3.30 builds fine with gcc 5.1, removing the + gcc-4.9 workaround (d/{rules,control}) + * Update copyright file. + * Patch refresh. + * Remove some more windows prebuilt files. + * Add libnotify-bin as runtime-dependency for the x11 package + (used for notify-send command) (Closes: #792292) + - Thanks Torquil Macdonald Sørensen for the useful and complete + bug report. + + -- Gianfranco Costamagna Tue, 14 Jul 2015 15:29:23 +0200 + +virtualbox (4.3.28-dfsg-1) unstable; urgency=medium + + * New upstream release (Closes: #785655). + - fix for CVE-2015-3456 a.k.a. VENOM (Closes: #785424) + - patch refresh. + - remove d/p/37-diff_smap_4.patch. + * Remove MAKE=kmk on virtualbox{,-guest}-source.files/rules + (Closes: #785161). + Upstream doesn't recommend using kmk to build kernel modules. + this reverts 63fa6b7b86035b53e8d053b894814eccac9ce595 + * Add gbp.conf file. + + -- Gianfranco Costamagna Thu, 14 May 2015 09:36:52 +0200 + +virtualbox (4.3.26-dfsg-3) unstable; urgency=medium + + [ Adam Conrad ] + * Re-work the packaging to account for the kernel modules being shipped in + the master kernel packages, removing the need for dkms (LP: #1434579): + - Make the dkms package provide a virtual package matching what the + kernel packages provide to indicate that they ship the dkms modules. + - Add an alternate dep from the utils package to the virtual driver. + - Make the x11 driver package associate with the VGA controller PCI ID. + + -- Gianfranco Costamagna Wed, 22 Apr 2015 16:16:23 +0200 + +virtualbox (4.3.26-dfsg-2) experimental; urgency=medium + + [ Gianfranco Costamagna ] + * remove obsolete lintian overrides. + * d/p/37-diff_smap_4.patch, cherry-pick upstream patch to fix a kernel + paging issue (LP: #1437845). + + [ Ritesh Raj Sarraf ] + * Remove Michael Meskes from uploaders. + + -- Gianfranco Costamagna Fri, 20 Mar 2015 12:02:04 +0100 + +virtualbox (4.3.26-dfsg-1) experimental; urgency=medium + + * Imported upstream release. + * Conflict with upstream proprietary packages 4.3 series. + (LP: #1371287, LP: #1375018, LP: #1385931, LP: #1386328, LP: #1421926) + + -- Gianfranco Costamagna Tue, 17 Mar 2015 08:36:06 +0100 + +virtualbox (4.3.24-dfsg-1) experimental; urgency=medium + + [ Gianfranco Costamagna ] + * Imported upstream release (Closes: #779025). + * Remove d/p/38-remove-hardcoded-gcc.patch, use --with-gcc and + --with-g++ configure flags. + * Remove d/p/37-fix-build.patch, merged upstream. + + [ Ritesh Raj Sarraf ] + * [3bf4cdd] Add back versioned dependency on gcc multilib + + -- Ritesh Raj Sarraf Wed, 04 Mar 2015 17:35:40 +0530 + +virtualbox (4.3.22-dfsg-1) experimental; urgency=medium + + [ Gianfranco Costamagna ] + * Imported Upstream release. + * Update copyright year. + * d/p/37-fix-build.patch fix build, following upstream change in + xorg driver build (thanks to Michael Thayer for the hint and + the help). + * Remove old patches. + * d/p/38-remove-hardcoded-gcc.patch use CC and CXX from d/rules + until virtualbox is gcc-5 ready. + + [ Ritesh Raj Sarraf ] + * [1413631] Build with gcc 4 only + * [f34c886] Add versioned dependency on g++-multilib + + -- Ritesh Raj Sarraf Sun, 15 Feb 2015 16:56:09 +0530 + +virtualbox (4.3.20-dfsg-1) experimental; urgency=medium + + [ Gianfranco Costamagna ] + * Imported Upstream release. + + [ Ritesh Raj Sarraf ] + * Flip build dependency to libcurl4-gnutls-dev + + -- Gianfranco Costamagna Wed, 03 Dec 2014 09:37:08 +0100 + +virtualbox (4.3.18-dfsg-3) unstable; urgency=medium + + * Conflict with upstream proprietary packages 4.3 series. + (LP: #1371287, LP: #1375018, LP: #1385931, LP: #1386328, LP: #1421926) + + -- Gianfranco Costamagna Mon, 09 Mar 2015 10:12:44 +0100 + +virtualbox (4.3.18-dfsg-2) unstable; urgency=high + + [ Frank Mehnert ] + * d/rules: Disable experimental code by exporting + VBOX_WITH_VMSVGA= VBOX_WITH_VMSVGA3D= + this fixes CVE-2014-6595, CVE-2014-6590, CVE-2014-6589, + CVE-2014-6588 and CVE-2015-0427. (Closes: #775888) + + -- Gianfranco Costamagna Thu, 22 Jan 2015 10:51:40 +0100 + +virtualbox (4.3.18-dfsg-1) unstable; urgency=medium + + [ Gianfranco Costamagna ] + * Imported Upstream release. + * Add myself to uploaders. + * Patch refresh. + * Bump Standards-Version to 3.9.6, no changes needed. + * Wrap-and-sort control file. + * Fix lintian warnings: + - Remove old hardening-wrapper + - Remove broken symlinks. + + [ Felix Geyer ] + * Remove myself from uploaders. + + -- Gianfranco Costamagna Fri, 17 Oct 2014 11:54:01 +0200 + +virtualbox (4.3.14-dfsg-1) unstable; urgency=medium + + [ Gianfranco Costamagna ] + * New upstream release (Closes: #754220) + thanks Mateusz Łukasik for the patch. + * Rebuild against the new xorg-video-abi-18 (Closes: #755067) + * Tweak README.source to show how to upgrade the package with + uscan (Closes: #699141), thanks Dmitry! + * Removing some binary files from the source tarball, + spotted by lintian. + + -- Gianfranco Costamagna Sat, 26 Jul 2014 15:25:37 +0200 + +virtualbox (4.3.12-dfsg-1) unstable; urgency=medium + + [ Gianfranco Costamagna ] + * New upstream release. + + -- Ritesh Raj Sarraf Wed, 04 Jun 2014 09:43:11 -0400 + +virtualbox (4.3.10-dfsg-1) unstable; urgency=high + + * New upstream release. + - Fixes multiple memory corruption vulnerabilities in the 3D acceleration + code. (Closes: #741602) + CVE-2014-0981, CVE-2014-0983 + + [ Gianfranco Costamagna ] + * Patch refresh. + * d/control, enforcing gsoap min required version. + * Add module-assistant as dependency, fixing broken symlink + * disabled some old unused lintian overrides. + + [ Felix Geyer ] + * Override embedded-library nspr lintian warning, it's a locally modified + version. + + -- Felix Geyer Sun, 06 Apr 2014 15:31:09 +0200 + +virtualbox (4.3.6-dfsg-2) unstable; urgency=medium + + * Disable bindnow in hardening-wrapper. This fixes loading the x11 driver. + (LP: #1280292) + + -- Felix Geyer Sat, 15 Feb 2014 11:02:21 +0100 + +virtualbox (4.3.6-dfsg-1) unstable; urgency=medium + + * New upstream release. (Closes: #733263) + - Fixes build against Linux 3.13. (Closes: #734340) + - Fixes several vulnerabilities. (Closes: #735410) + CVE-2013-5892, CVE-2014-0407, CVE-2014-0406, CVE-2014-0404 + * Drop compatibility with old X11 server packages. + * Enable hardened build flags using hardening-wrapper. The upstream build + system ignores the *FLAGS env variables. (Closes: #736459) + * Refresh 16-no-update.patch. + + -- Felix Geyer Mon, 10 Feb 2014 21:41:40 +0100 + +virtualbox (4.3.2-dfsg-1) unstable; urgency=low + + [ Ritesh Raj Sarraf ] + * [a4d35eb] Drop patch 30-usb-warning-filters.patch + * [84b99a4] Refresh patch 27-hide-host-cache-warning.patch + * [55f29e6] Add virtualbox-guest-x11.postrm and call ldconfig in postrm + * [9bbe020] Don't ship .debug files, when we already are stripping dwarf + symbols from its libraries + * Fix VBox network interface error on Linux 3.11 + - Add 38-linux-3.11-vboxnet.patch + * [8e73a12] Imported Upstream version 4.3.2-dfsg + * [9b2bc93] Fix VBox network interface error on Linux 3.11 + * [516aa9a] Refresh patches and drop patch 37 and 38 for linux 3.11 + * [ab699e4] bump versioned build-dep on kbuild to r2695 + * [5913c87] Add myself to Uploaders + * [8e53496] Add libvpx-dev to build-deps + * [caeed37] Add patch 02-gsoap-build-fix.patch to fix build + incompatibilities with gsoap > 2.8.13 + + -- Ritesh Raj Sarraf Tue, 10 Dec 2013 10:15:34 -0500 + +virtualbox (4.2.16-dfsg-3) unstable; urgency=low + + [ Ritesh Raj Sarraf ] + * Fix VBox network interface error on Linux 3.11. (Closes: #721786) + - Extend 37-linux-3.11.patch + + -- Felix Geyer Thu, 19 Sep 2013 21:52:12 +0200 + +virtualbox (4.2.16-dfsg-2) unstable; urgency=low + + [ Whoopie ] + * Add VNC plugin module. + - debian/patches/36-fix-vnc-version-string.patch: fix version string. + + [ Felix Geyer ] + * Fix compilation of guest additions with linux 3.11. + - Add 37-linux-3.11.patch. + + -- Felix Geyer Wed, 28 Aug 2013 22:15:25 +0200 + +virtualbox (4.2.16-dfsg-1) unstable; urgency=high + + [ Felix Geyer ] + * New upstream release. + - Fixes CVE-2013-3792: virtio-net host DoS vulnerability. (Closes: #715327) + * Drop 36-python-multiarch.patch and 37-wheezy-kernel-drm.patch, + fixed upstream. + * Explicity load the vboxguest and vboxsf kernel modules in the + virtualbox-guest-utils init script. + This makes sure that shared folders can be mounted. (Closes: #712438) + + [ Gianfranco Costamagna ] + * Patch refresh. + + -- Felix Geyer Sun, 21 Jul 2013 23:25:44 +0200 + +virtualbox (4.2.10-dfsg-1) unstable; urgency=low + + * New upstream release. (Closes: #691148) + - Fixes compatibility with kernel 3.8. (Closes: #700823; LP: #1101867) + * Switch to my @debian.org email address. + * Move package to contrib as virtualbox 4.2 needs a non-free compiler to + build the BIOS. + * Build-depend on libdevmapper-dev. + * Refresh patches. + - Drop 36-fix-ftbfs-xserver-112.patch, cve-2012-3221.patch, + CVE-2013-0420.patch 37-kcompat-3.6.patch and 38-kcompat-3.7.patch. + * Drop all virtualbox-ose transitional packages. + * Drop the virtualbox-fuse package as vdfuse fails to build with + virtualbox 4.2. + * Update install files and VBox.sh. + * Bump required kbuild version to 0.1.9998svn2577. + * Fix path to VBoxCreateUSBNode.sh in virtualbox.postinst. (Closes: #700479) + * Add an init script to virtuabox-guest-x11 which loads the vboxvideo + kernel module. The X Server 1.13 doesn't load it anymore. (Closes: #686994) + * Update man pages. (Closes: #680053) + * Add 36-python-multiarch.patch from Rico Tzschichholz to fix detection of + python in multiarch paths using pkg-config. + * Fix build failure with the Debian wheezy kernel which backports the drm + subsystem from Linux 3.4. (Closes: #703358) + * Drop build-dependency on bcc as it's not needed anymore. + * Link VBoxOGL against the X libraries it requires. + - Update 18-system-xorg.patch + * Use canonical URIs for Vcs-* fields. + * Bump Standards-Version to 3.9.4, no changes needed. + + -- Felix Geyer Thu, 09 May 2013 11:30:42 +0200 + +virtualbox (4.1.18-dfsg-2.1) experimental; urgency=low + + [ Stefan Lippers-Hollmann ] + * Non-maintainer upload. + * fix kernel module compilation against v3.6 and v3.7 + (closes: #691169, #696011, #696667, #696953, #698607) + + -- Daniel Baumann Sat, 26 Jan 2013 17:55:16 +0100 + +virtualbox (4.1.18-dfsg-2+deb7u1) unstable; urgency=high + + * Fix build failure with the Debian wheezy kernel which backports the drm + subsystem from Linux 3.4. (Closes: #703358) + * Set urgency to high as it fixes an RC bug. + + -- Felix Geyer Sun, 31 Mar 2013 20:45:16 +0200 + +virtualbox (4.1.18-dfsg-2) unstable; urgency=high + + [ John Paul Adrian Glaubitz ] + * Include patch to fix virtual graphics device user + vulnerability CVE-2013-0420. (Closes: #698292) + + -- Felix Geyer Sat, 19 Jan 2013 18:05:25 +0100 + +virtualbox (4.1.18-dfsg-1.1) unstable; urgency=high + + * Non-maintainer upload. + * Fix cve-2012-3221: missing privilege check for task gate switches + (closes: 690777). + + -- Michael Gilbert Thu, 18 Oct 2012 14:20:28 -0400 + +virtualbox (4.1.18-dfsg-1) unstable; urgency=low + + * New upstream release. + - Fixes host freezes with 64-bit guests on 32-bit hosts. (LP: #1012627) + - Fixes odd permissions of files in shared folders. (LP: #1013368) + * Drop 37-fix-unregister-netdevice.patch, fixed upstream. + * Compress orig tarball and binary packages with xz. + + -- Felix Geyer Thu, 21 Jun 2012 12:31:17 +0200 + +virtualbox (4.1.16-dfsg-2) unstable; urgency=low + + * Fix vboxnet device unregistration on kernel >= 3.2.18. (LP: #1009156) + - Add 37-fix-unregister-netdevice.patch, backported from upstream. + * Switch from python-central to dh_python2. (Closes: #617143) + + -- Felix Geyer Sun, 10 Jun 2012 21:32:09 +0200 + +virtualbox (4.1.16-dfsg-1) unstable; urgency=low + + * New upstream release. + * Drop 37-fix-build-gcc47.patch, fixed upstream. + + -- Felix Geyer Tue, 29 May 2012 10:09:31 +0200 + +virtualbox (4.1.14-dfsg-2) unstable; urgency=low + + * Fix FTBFS with gcc 4.7 on i386. + - Add 37-fix-build-gcc47.patch + + -- Felix Geyer Mon, 21 May 2012 10:39:19 +0200 + +virtualbox (4.1.14-dfsg-1) unstable; urgency=low + + * New upstream release. + - Drop 36-tarball-respin.patch + * Fix FTBFS with X Server 1.12. (Closes: #671061) + - Add 36-fix-ftbfs-xserver-112.patch + + -- Felix Geyer Tue, 01 May 2012 20:22:40 +0200 + +virtualbox (4.1.12-dfsg-2) unstable; urgency=low + + * Upstream has replaced the 4.1.12 tarball with a new one that fixes a + crash when creating host only interfaces. (Closes: #667460) + - Add 36-tarball-respin.patch which contains the diff between the old + and the new tarball. + + -- Felix Geyer Thu, 05 Apr 2012 12:41:55 +0200 + +virtualbox (4.1.12-dfsg-1) unstable; urgency=low + + * New upstream release. + * Drop 36-ubuntu-pae.patch, applied upstream. + * Drop 33-link-static-libgsoap.patch, fixed upstream. + * Make the vboxpci module buildable for a i386 kernel when running amd64. + (Closes: #664730) + - Update 12-make-module.patch + + -- Felix Geyer Tue, 03 Apr 2012 16:20:30 +0200 + +virtualbox (4.1.10-dfsg-1) unstable; urgency=low + + * New upstream release. + * Build-depend on libpng-dev instead of libpng12-dev. (Closes: #662537) + * Refresh 18-system-xorg.patch. + * Link against libgsoapssl++ instead of libgsoap++. + - Update 33-link-static-libgsoap.patch + * Enable PAE when creating Ubuntu VMs as it's required by the i386 kernel. + - Add 36-ubuntu-pae.patch + * Bump Standards-Version to 3.9.3, no changes needed. + + -- Felix Geyer Sun, 18 Mar 2012 14:09:24 +0100 + +virtualbox (4.1.8-dfsg-2) unstable; urgency=low + + * Install vboxvideo_dri.so into the directory provided by the dri pkg-config + file. (LP: #930324) + + -- Felix Geyer Sun, 19 Feb 2012 17:17:04 +0100 + +virtualbox (4.1.8-dfsg-1) unstable; urgency=low + + * New upstream release. + * Move all transitional packages to section oldlibs and priority extra. + * Refresh 16-no-update.patch. + * Drop 36-kernel-3.2.patch, applied upstream. + + -- Felix Geyer Thu, 29 Dec 2011 12:29:25 +0100 + +virtualbox (4.1.6-dfsg-2) unstable; urgency=low + + * Fix build errors with kernel 3.2. (LP: #892506) + - Add 36-kernel-3.2.patch, cherry-picked from upstream. + * Make dependencies of the dkms packages on virtualbox/virtualbox-guest-utils + versioned. + * Move VBoxDbg.so to virtualbox-qt as it's a GUI component. + + -- Felix Geyer Sat, 19 Nov 2011 18:55:11 +0100 + +virtualbox (4.1.6-dfsg-1) unstable; urgency=low + + [ Felix Geyer ] + * virtualbox-guest-x11: Drop xorg input driver from Provides and xorg input + abi from Depends. + + [ Michael Meskes ] + * New upstream release. + - Fixes graphical corruption when switching to a virtual terminal. + (Closes: #638941) + + -- Michael Meskes Tue, 15 Nov 2011 12:37:22 +0100 + +virtualbox (4.1.4-dfsg-1) unstable; urgency=low + + * New upstream release. + - Fixes missing icons when using pt_BR locale. (Closes: #507188) + - Fixes guest additions download url. (Closes: #637349; LP: #840668) + * Refresh patches. + * Drop the vboxmouse x11 driver. The mouse integration is now completely + handled by the kernel module. + * Restrict dh_pycentral to the virtualbox binary package. + * Merge changes from the Ubuntu package but use them only when built + on Ubuntu: + - Add an Apport hook. + - Add vboxguest modalias to the package control field. + * Pass KBUILD_VERBOSE=2 to kmk. + * Add 36-fix-text-mode.patch to fix text mode when using the vboxvideo driver. + + -- Felix Geyer Mon, 17 Oct 2011 23:23:09 +0200 + +virtualbox (4.1.2-dfsg-1) unstable; urgency=low + + [ Michael Meskes ] + * New upstream release. + + [ Felix Geyer ] + * Refresh patches. + * Drop 36-fix-kernel-panic-suspend.patch, applied upstream. + * Bump minimum kbuild version to 1:0.1.9998svn2537. + * Fix permissions of the kernel module tarballs. + + -- Felix Geyer Sat, 27 Aug 2011 10:42:30 +0200 + +virtualbox (4.1.0-dfsg-2) unstable; urgency=low + + * Install vboxpci module in virtualbox-modules packages, thanks to + YOSHINO Yoshihito. (Closes: #637177) + * Add 36-fix-kernel-panic-suspend.patch from upstream SVN to fix a kernel + panic on suspend caused by the vboxdrv module. + (Closes: #637226; LP: #814323) + + -- Felix Geyer Wed, 10 Aug 2011 14:09:43 +0200 + +virtualbox (4.1.0-dfsg-1) unstable; urgency=low + + * New upstream release. + * Use VBOX_BUILD_PUBLISHER instead of VBOX_VERSION_STRING to set the + version suffix. + * Refresh patches. + * Drop 22-no-static-libstdcpp.patch and 31-multiarch-dri-path.patch, + applied upstream. + * Add 34-fix-vboxpci-build.patch to fix a VBoxPCI build failure. + * Add vboxpci kernel module to virtualbox-dkms and virtualbox-source. + * Update package names in 04-vboxdrv-references.patch. + * Add 35-libvdeplug-soname.patch to fix VDE networking. (Closes: #636335) + * Drop broken "alloc" symlink in virtualbox-dkms and virtualbox-source. + + -- Felix Geyer Mon, 08 Aug 2011 16:39:11 +0200 + +virtualbox (4.0.10-dfsg-1) unstable; urgency=low + + * New upstream release. + - Fixes VT-x detection on Linux 3.0 hosts. (LP: #799253) + * Don't disable the hardware performance counter in the init script, not + needed anymore since VirtualBox 4.0.0. + * Add 31-multiarch-dri-path.patch to fix 3d guest acceleration with the + multiarched mesa package. + * Use new Provides scheme for xorg video and input drivers. (Closes: #631612) + * Add 32-disable-guest-version-check.patch to disable notifications about + outdated guest additions. + * Link against the static gsoap++ library to fix FTBFS. (Closes: #632368) + + -- Felix Geyer Sun, 03 Jul 2011 18:43:49 +0200 + +virtualbox (4.0.8-dfsg-2) unstable; urgency=low + + * Add virtualbox-guest-x11 Breaks/Replaces virtualbox-ose-guest-x11. + (Closes: #628784) + + -- Felix Geyer Wed, 01 Jun 2011 12:50:08 +0200 + +virtualbox (4.0.8-dfsg-1) unstable; urgency=low + + [ Felix Geyer ] + * New upstream release. (Closes: #627680) + * Adapt 07-vboxnetflt-reference.patch to new upstream version. + * Update overrides for lintian 2.5. + * Register mime types and install icons. + * Pass --enable-vnc to configure instead of enabling it in LocalConfig.kmk. + * Drop Conflicts between virtualbox-ose-dkms and virtualbox-ose-guest-dkms + as the kernel module symbols are mangled now. (Closes: #625742) + * Add lintian overrides for no-symbols-control-file usr/lib/VBoxOGL*.so. + * Create vboxsf group in virtualbox-ose-guest-utils postinst to make + auto-mounting shared folders work. + * Automatically detect the distribution version for backports. + - Build-depend on lsb-release. + * Strip *.gc and *.r0 files that are not handled by dh_strip and fix their + file permissions. + * Drop obsolete alternate build-dependency libcurl3-openssl-dev. + * Bump Standards-Version to 3.9.2, no changes needed. + * Build vdfuse with debugging symbols. + * Make virtualbox-ose-dkms depend on virtualbox-ose and + virtualbox-ose-guest-dkms on virtualbox-ose-guest-utils. + * Don't fail package removal if the virtualbox-ose init script exits with + an error. + * Don't remove the vboxusers group on upgrades from old package versions. + * Replace version suffix "OSE" with the distribution name. + * Switch to source format 3.0 (quilt). + - Add unapply-patches and abort-on-upstream-changes to local-options. + - Drop quilt from build-depends and debian/rules. + * Drop the -ose suffix in the package name. (LP: #722516) + - Add transitional packages. + * Compress orig tarball with bzip2. + * Drop support for building on lenny. + * Update 28-no-selinux-fedora.patch to new upstream version. + * Drop 30-enable-gcc46.patch, fixed upstream. + * In udev rules: use "RUN+=" rather than "RUN=". (LP: #776535) + * Drop libasound2 and libpulse0 from suggests. + * Only display warnings about broken USB support when it's actually used + (i.e. the machine has USB device filters). + - Add 30-usb-warning-filters.patch + * Move VBoxCreateUSBNode.sh to /lib/udev. (Closes: #627528) + * Update the copyright file, mostly grabbed from the upstream documentation. + * Drop the "Open Source Edition" phrase from the package descriptions. + * Fix lintian warning copyright-refers-to-versionless-license-file. + + [ Michael Meskes ] + * Patch vdfuse to not pad structure twice. + Thanks to Dave Vasilevsky + (Closes: #622659; LP: #759988) + * Added wildcard to overrides file so it works with different lintian version. + + -- Michael Meskes Thu, 26 May 2011 10:57:47 +0200 + +virtualbox-ose (4.0.4-dfsg-2) unstable; urgency=low + + * Fix FTBFS with gcc 4.6. (Closes: #625658, #626148) + - Add 30-enable-gcc46.patch + - debian/LocalConfig.kmk: don't treat gcc warnings as errors. + + -- Felix Geyer Thu, 12 May 2011 15:38:04 +0200 + +virtualbox-ose (4.0.4-dfsg-1) unstable; urgency=low + + [ Felix Geyer ] + * New upstream release. (LP: #722431) + * Drop 30-kernel-2.6.38.diff, applied upstream. + * Adapt 18-system-xorg.patch to new upstream version. + * Drop unused lintian overrides. + + [ Patrick Winnertz ] + * Add if statement around adduser to prevent failure in some cases. + (Closes: #611604) + + -- Felix Geyer Fri, 18 Feb 2011 18:09:29 +0100 + +virtualbox-ose (4.0.2-dfsg-1) unstable; urgency=low + + * New upstream release. (LP: #709027) + - Ships with a manual and upstream changelog. + (Closes: #483702, #541127; LP: #243782) + * Adapt patches for new upstream version. + * Add new required build-dependencies: + default-jdk, genisoimage, makeself, texlive-fonts-extra, + texlive-fonts-recommended, texlive-latex-extra, texlive-latex-recommended. + * Set VBOX_JAVA_HOME to /usr/lib/jvm/default-java. + * Add 28-no-selinux-fedora.patch so VirtualBox doesn't try to install + selinux-fedora/vbox_x11.pp which is stripped by the dfsg-free target. + * Update install files. + * Add 29-fix-ftbfs-as-needed.patch to fix FTBFS with ld --as-needed. + * Automatically generate the pixmap icon from png. + * Fix the watch file. + * Update man pages. + * Support passing through USB 1.1 devices to virtual machines. + * Update vdfuse for VirtualBox 4. + * Make the kernel modules buildable with kernel 2.6.38-rc2. (LP: #705593) + - Add 30-kernel-2.6.38.diff + + -- Felix Geyer Sat, 29 Jan 2011 20:13:14 +0100 + +virtualbox-ose (3.2.12-dfsg-1) unstable; urgency=low + + * New upstream release. + * Drop 03-2.6.37.patch and 24-xserver-19-support.patch, applied upstream. + + -- Felix Geyer Thu, 02 Dec 2010 21:18:36 +0100 + +virtualbox-ose (3.2.10-dfsg-2) unstable; urgency=low + + * Added two patches from virtualbox-ose SVN/bug tracking to fix some + issues with kernels > 2.6.36. (Closes: #604259) + * Moved program to utilities where it belongs. + * Fixed typo in desktop file + + -- Michael Meskes Mon, 22 Nov 2010 12:28:19 +0100 + +virtualbox-ose (3.2.10-dfsg-1) unstable; urgency=low + + * New upstream release. + * Adapt 18-system-xorg.patch and 27-hide-host-cache-warning.patch for + new upstream version. + * Drop 25-vboxnetadp_kernel_2.6.36.patch and 26-vboxsf_kernel_2.6.36.patch, + applied upstream. + * Drop lpia from the architectures as Ubuntu doesn't support it anymore and + Debian never has. + + -- Felix Geyer Tue, 12 Oct 2010 23:54:04 +0200 + +virtualbox-ose (3.2.8-dfsg-2) unstable; urgency=high + + * Fix FTBFS with recent libdrm-dev versions. (Closes: #594599) + * Make the kernel modules buildable with kernel 2.6.36. + (Closes: #594602; LP: #619497) + - Add 25-vboxnetadp_kernel_2.6.36.patch + - Add 26-vboxsf_kernel_2.6.36.patch + * Silently enable the host I/O cache when the image is on an ext4/XFS + partition. No need to warn users about it. (Closes: #595050) + - Add 27-hide-host-cache-warning.patch + * Recompiled to fix incorrectly generated dependencies. (Closes: #595715) + * Add man pages for all commands. (Closes: #440609; LP: #610895) + + -- Felix Geyer Mon, 13 Sep 2010 11:29:12 +0200 + +virtualbox-ose (3.2.8-dfsg-1) unstable; urgency=low + + * New upstream release. (LP: #614697) + * Replace the reference to /usr/share/common-licenses/BSD with the full text + of the license. + * Bump Standards-Version to 3.9.1, no changes needed. + * Revert: virtualbox-ose-dkms and virtualbox-ose-guest-dkms break each other + instead of conflicting. + * Drop 24-dsdt.patch, applied upstream. + * Move "$@" to the first parameter of dh to be compatible with debhelper + compat level 8. + * Add 24-xserver-19-support.patch to make the guest additions compatible + with XServer 1.9. (LP: #616217) + + -- Felix Geyer Tue, 10 Aug 2010 21:06:46 +0200 + +virtualbox-ose (3.2.6-dfsg-2) unstable; urgency=low + + * Added patch taken from FreeBSD to make DSDT files compile with + latest versions of iasl. (Closes: #587609) + * Bump Standards-Version to 3.9.0, no changes needed. + + -- Michael Meskes Fri, 02 Jul 2010 15:24:21 +0200 + +virtualbox-ose (3.2.6-dfsg-1) unstable; urgency=low + + [ Michael Meskes ] + * Do not use standard compiler optimization for vdfuse. (Closes: + #586265) + + [ Felix Geyer ] + * New upstream release. + * virtualbox-ose-dkms and virtualbox-ose-guest-dkms break each other + instead of conflicting. + + -- Felix Geyer Sat, 26 Jun 2010 01:26:22 +0200 + +virtualbox-ose (3.2.4-dfsg-1) unstable; urgency=low + + * New upstream release. + + -- Felix Geyer Wed, 09 Jun 2010 15:31:05 +0200 + +virtualbox-ose (3.2.2-dfsg-1) unstable; urgency=low + + * Imported Upstream version 3.2.2-dfsg (Closes: #584488, #585003) + * Fixed dh_install usage in rules file for backports. - thanks to + Corey Wright + + -- Michael Meskes Tue, 08 Jun 2010 11:50:51 +0200 + +virtualbox-ose (3.2.0-dfsg-1) unstable; urgency=low + + [ Felix Geyer ] + * New upstream release. + * Add 23-remove-invalid-chars-check.patch to remove a check for invalid + characters in the build path since kBuild is now able to handle those. + * Fix FTBFS when building without arch-all packages. + + [ Michael Meskes ] + * Changed order of some commands to make sure links are created inside + the source tarball not outside. + + -- Michael Meskes Sun, 23 May 2010 11:39:11 +0200 + +virtualbox-ose (3.1.53-dfsg-1) experimental; urgency=low + + * New upstream release 3.2.0 Beta 3. + * Add build-dependencies required by new upstream version. + * Adapt 18-system-xorg.dpatch to new upstream version. + * Update to new upstream release of vdfuse. + * Build vdfuse with -Wl,--as-needed. + * Install vbox PAM module. + * Drop 17-disable-help-contents.dpatch and 20-hide-help-buttons.dpatch + as VirtualBox can download the manual. + * Enable VDE networking. + * Enable VNC server in VBoxHeadless. + * Don't build VBoxBFE as it's not installed anyway. + * Hide the update menu item and settings page instead of disabling them. + * Make both dkms packages conflict with each other as the kernel modules + export the same symbol. (LP: #571574) + * Switch from dpatch to quilt patching system. + * Convert debian/rules to dh7. + * Use dkms debhelper script. + + -- Felix Geyer Thu, 13 May 2010 18:20:43 +0200 + +virtualbox-ose (3.1.8-dfsg-1) unstable; urgency=low + + * New upstream version (LP: #578723). + - Fixes vboxsf file systems not being mounted while booting on Ubuntu. + (LP: #530179) + * Adapt 18-system-xorg.dpatch and 06-xsession.dpatch to new upstream version. + * Use upstream 50-vboxmouse.conf instead of our own. + * Add libxrandr-dev to build-dependencies. + * Don't load the kernel modules in the guest utils init script as they are + loaded automatically. + * Drop 15-wined3d-guest-addition.dpatch as the Windows guest additions + provide Direct3D acceleration. + + -- Felix Geyer Tue, 11 May 2010 18:06:04 +0200 + +virtualbox-ose (3.1.6-dfsg-3) unstable; urgency=low + + * Move 10-vboxmouse.conf to 50-vboxmouse.conf and install it in + /usr/share/X11/xorg.conf.d. + * Use substvar from new xsfbs.mk. + + -- Felix Geyer Sun, 18 Apr 2010 18:56:10 +0200 + +virtualbox-ose (3.1.6-dfsg-2) unstable; urgency=low + + * Improve 20-hide-help-buttons.dpatch so all help buttons are hidden. + * Set source format version explicitly to "1.0". + * Adapt to xserver 1.8 input driver detection. (LP: #546933) + - Add 10-vboxmouse.conf + - Update virtualbox-ose-guest-x11.udev + + -- Felix Geyer Wed, 31 Mar 2010 15:15:44 +0200 + +virtualbox-ose (3.1.6-dfsg-1) unstable; urgency=low + + * New upstream version. + * Drop 02-r27248.dpatch as it's applied upstream. + * Use dh_lintian to install overrides. + + -- Felix Geyer Fri, 26 Mar 2010 11:25:46 +0100 + +virtualbox-ose (3.1.4-dfsg-3) unstable; urgency=low + + [ Felix Geyer ] + * Move virtualbox-ose-guest-x11 to section x11. + * Replace 18-xorg-1.6.dpatch with a new patch that allows to easily + switch to a different X Server version. + * Remove /usr/share/virtualbox/x11config15.pl as we are at X Server 1.7. + + [ Michael Meskes ] + * Apply upstream changeset 27248 to make virtualbox guest additions + work with drm code in kernels 2.6.33+. (Closes: #574662) + * Applied patch by nutzteil to make init script + consistent in (Closes: #574831) + + -- Michael Meskes Tue, 23 Mar 2010 15:54:49 +0100 + +virtualbox-ose (3.1.4-dfsg-2) unstable; urgency=low + + [ Felix Geyer ] + * Add INSTALL_PATH variable + * Downgrade library dependencies of VBoxTestOGL to Recommends. + (Closes: #567800) + * Provide an udev instead of hal rule for the mouse driver + autodetection. (LP: #525558) + * Update device names in guest udev rules. + + [ Michael Meskes ] + * Document QT4 usage for virtualbox-ose. + * Changed build-dependency from libcap2-dev to libcap-dev. (Closes: + #569769) + + -- Michael Meskes Tue, 16 Feb 2010 15:03:46 +0100 + +virtualbox-ose (3.1.4-dfsg-1) unstable; urgency=low + + * New upstream version: + - Rebuild makes sure all packages share the same version. (Closes: #567030, + #568296) + - Fixes mouse integration in Lenny. (Closes: #565285) + + [ Felix Geyer ] + * Install EFI firmware images + * Make the dkms dependency versioned as we require the common postinst + script to be present + * Pass the architecture to the dkms postinst script + * Use ${source:Version} for arch all package dependencies + * Bump Standards-Version to 3.8.4, no changes needed. + * Make patches DEP-3 compliant + * Update vdfuse code as upstream has changed the license to GPLv2+ + * Adapt 18-xorg-1.6.dpatch for new upstream version. + * Add lintian override for virtualbox-ose-fuse + + [ Michael Meskes ] + * Merged Ubuntu patch to disable update action into Debian tree. + * Removed Uploaders that haven't committed anything for more than a + year. + * Added virtualbox-ose-fuse package to fuse mount vdi images. (Closes: + #565900) + + -- Michael Meskes Sat, 13 Feb 2010 21:31:50 +0100 + +virtualbox-ose (3.1.2-dfsg-1) unstable; urgency=low + + [ Felix Geyer ] + * New upstream version. + - Fixes FTBFS with binutils-gold. (Closes: #556918) + * Adapt patches for new upstream version. + * Change priority to optional (except for the debug package). + * virtualbox-ose-guest-utils: Recommend dkms or source package instead + of both. + * Use common dkms postinst script instead of custom code. (LP: #497149) + * Check for right package in dkms prerm. + + -- Michael Meskes Fri, 18 Dec 2009 08:23:16 +0100 + +virtualbox-ose (3.1.0-dfsg-3) unstable; urgency=low + + * Removed yet another mentioning of upstream's init script. (Closes: + #560320) + * Adjusted dependencies to new setup. (Closes: #556595) + + -- Michael Meskes Fri, 11 Dec 2009 11:45:14 +0100 + +virtualbox-ose (3.1.0-dfsg-2) unstable; urgency=low + + [ Michael Meskes ] + * Check for right package in postinst. (Closes: #559502) + + [ Felix Geyer ] + * Made *-dkms packages only replace older *-source packages + * Promote dkms to a dependency + * Build-depend on libqt4-opengl-dev + + -- Michael Meskes Tue, 08 Dec 2009 08:11:09 +0100 + +virtualbox-ose (3.1.0-dfsg-1) experimental; urgency=low + + * Imported Upstream version 3.1.0-dfsg (Closes: #559172) + * Divided -source packages into a classical -source package and + a -dkms package. + + -- Michael Meskes Thu, 03 Dec 2009 09:46:14 +0100 + +virtualbox-ose (3.0.12-dfsg-1) unstable; urgency=low + + [ Felix Geyer ] + * New Upstream Version + + -- Michael Meskes Fri, 27 Nov 2009 11:56:21 +0100 + +virtualbox-ose (3.0.10-dfsg-2) unstable; urgency=low + + * Downgrade dkms dependency to recommendation. (Closes: #553918) + * Added dependencies for building with m-a. + * Changed source packages to also build modules via module-assistant. + (Closes: #554385) + + -- Michael Meskes Sat, 14 Nov 2009 20:43:09 +0100 + +virtualbox-ose (3.0.10-dfsg-1) unstable; urgency=low + + [ Felix Geyer ] + * Fix SHUTDOWN_USERS=all only parses the first user + * New Upstream version + * Added dependency upon pciutils to virtualbox-ose-guest-utils. + (Closes: #551390) + + [ Michael Meskes ] + * Converted virtualbox-ose to dkms. (Closes: #551531) - thanks to + Ubuntu + + -- Michael Meskes Sat, 31 Oct 2009 19:58:01 +0100 + +virtualbox-ose (3.0.8-dfsg-1) unstable; urgency=high + + [ Felix Geyer ] + * New Upstream Version + - Fixes security vulnerability in VBoxNetAdpCtl (SunSolve #268188) + * Conflict with upstream proprietary packages + * Install vboxapi python module, closes: #549542 + * Use an own cleaned-up virtualbox-ose init script instead of + patching the upstream script + * Only restart virtualbox-ose after upgrade if it's not running; do not + restart virtualbox-ose-guest-utils at all + * Call notify-reboot-required after guest utils upgrade + * Remove vboxusers group as it's not needed anymore + * Don't statically link VBoxClient with libstdc++ + - Add patch 22-no-static-libstdcpp.dpatch from Fedora + * Pass more build options through the command line, which allows us to drop + 02-config-kmk.dpatch, 03-localconf-kmk.dpatch and + 14-disable-registration-request.dpatch + * No longer reload udev rules in postinst as they are reloaded automatically + * Add lintian overrides for non-PIC code in /usr/lib/virtualbox/*.so + + [ Michael Meskes ] + * Made debug package also depend on guest utilities package. + * Added option to close down all active VMs from init script. + + -- Michael Meskes Tue, 13 Oct 2009 13:46:44 +0200 + +virtualbox-ose (3.0.6-dfsg-1) unstable; urgency=low + + [ Felix Geyer ] + * New Upstream Version, closes: #543234 + * Add 21-dont-strip-x11-drivers.dpatch: + Don't strip debugging symbols from x11 guest drivers + * Strip more unneeded library header files + * Drop 11-gcc-4.3.dpatch (not needed anymore) + + [ Michael Meskes ] + * Made debug package depend on normal package. + + -- Michael Meskes Fri, 11 Sep 2009 14:10:04 +0200 + +virtualbox-ose (3.0.4-dfsg-2) unstable; urgency=low + + * Made sure installed packages have the same version, closes: #538945 + + -- Michael Meskes Mon, 17 Aug 2009 13:31:47 +0200 + +virtualbox-ose (3.0.4-dfsg-1) unstable; urgency=low + + [ Felix Geyer ] + * New Upstream Version + * Install network management tools and guest dri driver + * Drop vboxvideo.ids as the X server now uses an internal table to + pick a driver during autoconfig + + [ Michael Meskes ] + * Provide python stuff needed by vboxgtk, closes: #539445 + + -- Michael Meskes Mon, 10 Aug 2009 13:27:41 +0200 + +virtualbox-ose (3.0.2-dfsg-1) unstable; urgency=low + + * New Upstream Version, closes: #536338, #536371, #536578 + * Do not create empty icons directory in virtualbox-ose package. + * Remove lintian overrides that are no longer needed. + + -- Michael Meskes Sat, 11 Jul 2009 20:04:17 +0200 + +virtualbox-ose (3.0.0-dfsg-2) unstable; urgency=low + + [ Felix Geyer ] + * Move to gcc 4.3, closes: #533786 + * Install 3D test program. + + [ Michael Meskes ] + * Added missing build dependencies, closes: #535853 + + -- Michael Meskes Sat, 04 Jul 2009 20:18:20 +0200 + +virtualbox-ose (3.0.0-dfsg-1) unstable; urgency=low + + * New Upstream Version + + -- Michael Meskes Wed, 01 Jul 2009 09:48:15 +0200 + +virtualbox-ose (2.2.4-dfsg-2) unstable; urgency=low + + * Added patch by Daniel Hahler to disable the + Help->Contents menu entry, closes: #533255 + * Applied patch by Felix Geyer to automatically load + vboxvfs, closes: #533250 + * Added upstream patch to fix appliance export problem, closes: #532870 + * Suggest new guest-additions package. + * Bumped Standards-Version to 3.8.2, no changes needed. + + -- Michael Meskes Sun, 28 Jun 2009 14:56:19 +0200 + +virtualbox-ose (2.2.4-dfsg-1) unstable; urgency=low + + * New Upstream Version, closes: #531468 + * Added patch by Felix Geyer to remove disabled help + buttons, closes: #531320 + * Moved hal driver description to make sure it gets merged in after evdev + driver description, closes: #531618 + + -- Michael Meskes Sun, 21 Jun 2009 14:06:59 +0200 + +virtualbox-ose (2.2.2-dfsg-3) unstable; urgency=low + + * Made virtualbox-ose-qt package only replace older virtualbox-ose packages + that still contained the qt frontend, closes: #527140 + * Added the same versioning for virtualbox-ose-guest-x11. + * Fixed typo in vboxwebsrv call. + * Applied patch by Felix Geyer to make X autodetect + mouse using hal, closes: #530299 + * Applied patch by Felix Geyer to set correct + permissions for guest devices, closes: #530302 + * Remove vbox.cfg as suggested and implemented by Daniel Hahler + , closes: #530321 + + -- Michael Meskes Fri, 29 May 2009 13:12:07 +0200 + +virtualbox-ose (2.2.2-dfsg-2) unstable; urgency=low + + * Made initscript call find only in case of an error, closes: #526395 + * Removed setup option from initscript, closes: #526322 + * Added upstream patch to fix bug in VBoxManage modifyhd, closes: #526820 + * Merged our init script patches into one patch. + * Made initscript more verbose. + + -- Michael Meskes Tue, 05 May 2009 09:29:24 +0200 + +virtualbox-ose (2.2.2-dfsg-1) unstable; urgency=low + + * New Upstream Version + * Extended error message patch for vboxdrv failure. + + -- Michael Meskes Wed, 29 Apr 2009 09:13:24 +0200 + +virtualbox-ose (2.2.0-dfsg-3) unstable; urgency=low + + * Putting back the tar command that was lost in debian/rules, closes: #524897 + + -- Michael Meskes Tue, 21 Apr 2009 08:45:06 +0200 + +virtualbox-ose (2.2.0-dfsg-2) unstable; urgency=low + + * Remove obsolete conffiles, closes: #523778 + * Made package description clearer, closes: #524154 + * Documented guest utils download, closes: #524171 + * Made build system use files provided by xserver-xorg instead of local + copies, closes: #515631 + + -- Michael Meskes Sun, 19 Apr 2009 12:37:04 +0200 + +virtualbox-ose (2.2.0-dfsg-1) unstable; urgency=low + + * New upstream version. + * Move X11 guest utils into separate packages, closes: #520438 + * Also switched them to new X.Org X server version. + * Move QT4 based user interface into separate package, closes: #508395 + * Added new URL for WineD3D guest additions, closes: 522672 + * Documented problem with kernel 2.6.29, closes: #518739 + * Documented missing format attribute, closes: #517454 + * Added patch to disable checking for updates, closes: #516551 + * Added patch to tell about missing vboxnetflt module, closes: #516819 + * Bumped Standards-Version to 3.8.1 + + -- Michael Meskes Fri, 10 Apr 2009 11:16:49 +0200 + +virtualbox-ose (2.1.4-dfsg-1) unstable; urgency=high + + * New upstream version. + * Made package use rpath where needed to deal with a security issue. + * Set urgency to high for the very same reason. + * Updated control file to refer to git instead of svn. + * Made sure that init script does not fail if module loading is not enabled. + Closes: #516242 + + -- Michael Meskes Wed, 18 Feb 2009 12:55:59 +0100 + +virtualbox-ose (2.1.2-dfsg-2) unstable; urgency=low + + * Enabled OpenGL support. Closes: #513533 + * Added patch to install WineD3D guest additions as provided by Robert Millan + . Closes: #514181 + * Fixed watch file yet again. + * Recompiled to bring 2.1.2 into unstable. This changes + - Network setup. Closes: #507169 + - File and device ownership. Closes: #509014 + + -- Michael Meskes Mon, 16 Feb 2009 10:49:27 +0100 + +virtualbox-ose (2.1.2-dfsg-1) experimental; urgency=low + + * New upstream version. + * Enabled webservice. + * Install VBoxSysInfo script. + * Removed SUP[Un]install test case. + * Removed xpidl and sdk. This might go into a -dev package if it is really + useful for anyone not developing virtualbox-ose. + * Documented changes in network setup and removed useless scripts and + configs. Closes: #512024 + * Added missing architecture amd64 to guest source package. Closes: #512811 + + -- Michael Meskes Thu, 22 Jan 2009 11:47:53 +0100 + +virtualbox-ose (2.1.0-dfsg-2) experimental; urgency=low + + * Added versioned build dependency for kbuild. Closes: #510736 + * Added versioned build dependency for qt4. Closes: #510785 + * Re-created two patches against initscript to make them clearer and to + re-add a line lost in the transition. Closes: #474089 + + -- Michael Meskes Sun, 04 Jan 2009 16:58:38 +0100 + +virtualbox-ose (2.1.0-dfsg-1) experimental; urgency=low + + * New upstream version + This one doesn't use /dev/net/tun anymore. Closes: #509524 + * Removed obsoleted vditool, VBoxAddIF.sh and VBoxTunctl. + + -- Michael Meskes Thu, 18 Dec 2008 12:49:34 +0100 + +virtualbox-ose (2.0.6-dfsg-1) experimental; urgency=low + + * New upstream version. Closes: #497840 + * Do not warn user about losing snapshots anymore, this is supposed to be a + thing of the past. Closes: #500101 + * Made guest utils init script more verbose if module was not loadable. + Closes: #505586 + * Documented need for hardware virtualization if running a 64-bit guest. + + -- Michael Meskes Thu, 20 Nov 2008 14:09:54 +0100 + +virtualbox-ose (1.6.6-dfsg-3) unstable; urgency=high + + * Added upstream patch to support kernel 2.6.27, closes: #502068 + * Added upstream patch to prevent potential symlink attack, closes: #504149 + + -- Michael Meskes Mon, 13 Oct 2008 16:38:47 +0200 + +virtualbox-ose (1.6.6-dfsg-2) unstable; urgency=low + + * Added NOTPARALLEL option in guest sources Makefile, that somehow got lost, + closes: #494475 + * Stop spamming log files by using patch provided by Stefan Lippers-Hollmann + , closes: #500484 + + -- Michael Meskes Fri, 03 Oct 2008 17:17:10 +0200 + +virtualbox-ose (1.6.6-dfsg-1) unstable; urgency=low + + [ Michael Meskes ] + * New upstream version + - no longer able to select disk in use for new VM, closes: #495028 + * Removed patch 05-vboxadd-udev which was applied upstream. + * Removed absolute paths in maintainer scripts. + * Override lintian error in RDP subdir because the client is not build anyway. + + [ Patrick Winnertz ] + * New upstream version fixes compilation error of -modules with kernelversion + 2.6.27 (Closes: #499623) + + -- Patrick Winnertz Sun, 21 Sep 2008 22:29:58 +0200 + +virtualbox-ose (1.6.2-dfsg-6) unstable; urgency=medium + + * Apply changesets 12299, 12303, 12305, 12307 and 12308 from upstream SVN + to fix errors running 2.6.26-686 kernels in a Virtual Machine. Patch + created by Frans Pop . Closes: #497505. + + -- Michael Meskes Mon, 15 Sep 2008 10:01:21 +0200 + +virtualbox-ose (1.6.2-dfsg-5) unstable; urgency=low + + [ Michael Meskes ] + * Updated initscript to better handle LSB compatibility, yet again + closes: #474089 + * Added a short note to README.Debian asking user to use only the 486 version + of the 2.6.26 kernel. This documents a workaround for #497505 and #497875. + * In VBox.sh honor LD_LIBRARY_PATH if already set, closes: #496953 + * Changed rules file for guest-module to correctly build modules with + symbols, thanks to Bastian Blank for the hint. + * Do not build guest modules in parallel, closes: #494475 + + [ Loic Minier ] + * Demote module-assistant deps to Recommends; closes: #495671. + * Don't prepend current directory to LD_LIBRARY_PATH if it isn't set. + + -- Michael Meskes Sat, 09 Aug 2008 21:46:44 +0200 + +virtualbox-ose (1.6.2-dfsg-4) unstable; urgency=medium + + * Adding patch from Gonéri Le Bouder to fix FTBFS with + dash as /bin/sh (Closes: #493402). + * Adding patch from Gonéri Le Bouder to fix FTBFS with + LC_ALL set to fr_FR.UTF-8 (Closes: #494157). + * Adding Swedish debconf translation from Martin Ågren + (Closes: #492162). + + -- Daniel Baumann Thu, 7 Aug 2008 11:38:00 -0300 + +virtualbox-ose (1.6.2-dfsg-3) unstable; urgency=medium + + [ Daniel Baumann ] + * Removing empty lines at EOF and whitespaces at EOL. + * Including vboxvideo.ids in virtualbox-ose-guest-utils to allow xserver to + automagically detect the display adapter, thanks to Avi Rozen + (Closes: #490541). + * Adding Turkish debconf translation from Mert Dirik + (Closes: #490725). + + [ Loic Minier ] + * Drop useless subshells in rules files and export environment vars + explicitely; also change "cd foo; $(MAKE)" patterns to "$(MAKE) -C foo". + + -- Daniel Baumann Mon, 14 Jul 2008 07:14:00 +0200 + +virtualbox-ose (1.6.2-dfsg-2) unstable; urgency=low + + [ Daniel Baumann ] + * Using dpkg-architecture rather than dpkg --print-architecture in + 01-no-64bit-guest.dpatch in order to be more accurate for ia32 subarchs + like lpia, thanks to Loic Minier . + * Rediffing 02-config-kmk.dpatch. + * Adding patch to adjust failure message with Debian specific solution when + experiencing kernel module version mismatch. + + [ Hilko Bengen ] + * Re-added watch file: Innotek/Sun still want us to use their INTERSHOP + system to download the tarball, but luckily, there is an alternative + download location. + * Enhanced README.Debian + + [ Patrick Winnertz ] + * Adding VBoxHeadless to virtualbox. Thanks to Stefan Lippers-Hollmann. + (Closes: #486544) + + [ Michael Meskes ] + * Remove LocalConfig.kmk in clean target. + * Source env.sh before starting to build. + * Include our wiki page as simple html file under + /usr/share/doc/virtualbox-ose. (Closes: #484998) + * Install VBoxRandR into guest-utils package. + * Moved udev rule from virtualbox-ose-guest-modules package to + virtualbox-ose-guest-utils package. (Closes: #488455) + + [ Loic Minier ] + * Build virtualbox-ose, virtualbox-ose-dbg, and virtualbox-ose-guest-utils + for lpia. + * Wrap uploaders, bdeps, and deps on multiple lines to get cleaner diffs. + * Cleanup upstreamversion computation and compute it only once. + * Set VBOX_WITH_X11_ADDITIONS in rules when the DEB_HOST_ARCH is i386 or + lpia instead of using dpkg --print-architecture. + * Use the -s flag to dh_ commands instead of 3 debhelper calls and a shell + test; as a bonus, this provides additional detached symbols in -dbg. + * Move all -a flags to -s. + * Install files into virtualbox-ose-guest-utils unconditionally and ignore + errors -- even if these exist, the package is disabled on amd64. + * Cleanup rules slightly. + * Add ${misc:Depends} as this is recommended nowadays. + * Drop now empty debian/virtualbox-ose-guest-utils.postinst which used to + call /usr/lib/virtualbox/x11config.pl in the past. + * Cleanup debian/virtualbox-ose-source.files/rules and + debian/virtualbox-ose-guest-source.files/rules slightly. + * Drop trailing exit 0 from "set -e"-ed postinst templates. + + -- Michael Meskes Tue, 17 Jun 2008 14:52:36 +0200 + +virtualbox-ose (1.6.2-dfsg-1) unstable; urgency=low + + [ Michael Meskes ] + * New upstream version, closes: #479744, #482504, #483592 + * Removed unneeded xalan build dependency. + * Added build dependency on libxslt and libxml. + * Fixed LocalConfig.kmk to list new variables. + * Use upstream provided X session file, but patch our changes in there. + * Build with gcc/g++ 4.2. + * Bumped Standards-Version to 3.8.0. + + [ Daniel Baumann ] + * Removing ffmpeg recursively in dfsg-free target in rules. + * Rediffing all patches. + * Renumbering all patches. + * Sanitizing dpatch headers. + * Stripping off embedded copy of libpng in dfsg-free target of rules. + * Stripping off embedded copy of libxml2 in dfsg-free target of rules. + * Stripping off embedded copy of libxslt in dfsg-free target of rules. + * Stripping off embedded copy of zlib in dfsg-free target of rules. + * Improving long description of virtualbox-ose-guest-utils. + * Correcting wrong virtualbox-ose-guest-utils package name in long + description of virtuabox-ose-guest-source. + * Adding note about kernel module requirement in virtualbox-ose long + description. + + -- Michael Meskes Sun, 11 May 2008 22:48:59 +0200 + +virtualbox-ose (1.5.6-dfsg-7) unstable; urgency=low + + [ Michael Meskes ] + * Made virtualbox-ose-modules recommend virtualbox-ose-guest-utils. + * Added recommendation on up-to-date xserver-xorg-core and conflict on + older versions to guest-utils, closes: #476526 + * Provide xserver-xorg-input-2 and xserver-xorg-video-2 with guest-utils. + * Removed watch file, I couldn't find a way to get the orig tarball without + first accepting a license. + * Rewrote debian/rules for both source packages, hopefully this + finally closes: #469882 + * Patched module Makefile to allow amd64 build in linux-modules-extra-2.6. + * Added patch by Pascal Volk to prevent + init script from overwriting values, closes: #475193 + * Added patch from upstream SVN to fix FTBFS in xpcom, closes: #479910 + * Took another change from SVN to update sed file for newer buildchain. + * Recompiled against latest libxalan110, closes: #480739 + + [ Daniel Baumann ] + * Correcting wrong module-assistant manpage section in + virtualbox-ose-*source.README.Debian. + * Removing some reimported useless whitespaces. + * Sanitizing all po headers. + + [ Patrick Winnertz ] + * Added patch to make virtualbox-ose-guest-source build with kernels >= + 2.6.25. Thanks to Stefan Lippers-Hollmann. (Closes: 478373, 478333, 480736) + + -- Michael Meskes Sun, 11 May 2008 22:48:50 +0200 + +virtualbox-ose (1.5.6-dfsg-6) unstable; urgency=low + + * Added two patches from upstream SVN to make virtualbox-ose build with + gcc-4.3. However, this compiler is not yet officially supported. + Closes: #474907 + + -- Michael Meskes Tue, 08 Apr 2008 09:58:35 +0200 + +virtualbox-ose (1.5.6-dfsg-5) unstable; urgency=low + + [ Hilko Bengen ] + * Don't fail in guest-utils init script if the vboxadd module cannot + get loaded (Closes: #474195) + + [ Michael Meskes ] + * Fixed default ARCH setting in module Makefile, closes: #474196 + * Made initscript even more LSB compliant by using LSB logging + functions, closes: #474089 + + -- Michael Meskes Fri, 04 Apr 2008 10:16:48 +0200 + +virtualbox-ose (1.5.6-dfsg-4) unstable; urgency=low + + [ Michael Meskes ] + * Set default architecture in debian/rules for module source package. + * Fixed and rearranged patches against init script. + + [ Patrick Winnertz ] + * Improve init.d script patch to write done also on the first startup. + (Closes: #473059) + + -- Michael Meskes Wed, 02 Apr 2008 12:08:30 +0200 + +virtualbox-ose (1.5.6-dfsg-3) unstable; urgency=low + + [ Michael Meskes ] + * Fixed arch check in virtualbox-ose-source rules file, closes: #469882 + * Added just another patch to the initscript. This patch makes sure the tun + module is only loaded if it is needed, closes: #470172 + * Made desktop file comply to the Free Desktop specification, closes: #470937 + * Replaced $(PWD) with $(CURDIR) in rules file. + * Bumped build dependency for debhelper to version >= 5.0.44~ because of + dh_installifupdown. + * Moved to Hilko's docbook version of README.Debian. + * Also added information about VBoxADDIF to README.Debian. + * Copied lynx-dump-postprocess script from exim4 package. + + [ Hilko Bengen ] + * Added scripts for managing `vbox' interfaces from + /etc/network/interfaces + + -- Michael Meskes Tue, 18 Mar 2008 15:13:39 +0100 + +virtualbox-ose (1.5.6-dfsg-2) unstable; urgency=low + + [ Daniel Baumann ] + * Added Brazilian-Portuguese debconf translation from Eder L. Marques + (Closes: #467452). + + [ Michael Meskes ] + * Added patch by Frans Pop to make modules compile with + kernel 2.6.25, closes: #468864 + * Suggest bridge-utils which is needed for static host networking. + * Added patch against init script to remove newly created file again on + failure, closes: #468419 + * Fixed watch file to cope with -1 upstream release. + + -- Michael Meskes Sun, 02 Mar 2008 10:38:31 +0100 + +virtualbox-ose (1.5.6-dfsg-1) unstable; urgency=low + + [ Michael Meskes ] + * New upstream version + * Fixed LSB headers in init.d scripts, closes: #466311 + * list x11config.pl with correct path in README file, closes: #466621 + * Added last changes made by the translation projects, thanks to + Christian Perrier . + * Tweaked dfsg-free target in rules file so it is really executable, first + steps made by Hilko. + + [ Hilko Bengen ] + * Make module loading in initscript configurable (disabled by default). + + [ Patrick Winnertz ] + * prevent initscript from failing if module doesn't exist. (Closes: #466851) + + -- Michael Meskes Sat, 23 Feb 2008 10:49:28 +0100 + +virtualbox-ose (1.5.4-dfsg-5) unstable; urgency=low + + [ Daniel Baumann ] + * Again removing reimported useless whitespaces at EOL and EOF in debian/*. + * Unified headers of debconf template translations. + * Rediffed patches and again fixed their headers. + * Added Portuguese debconf translation from Ricardo Silva + (Closes: #464761). + * Removed extra whitespace in maintainer field of control, thanks to + Christoph Berg (Closes: #465327). + + [ Michael Meskes ] + * Added Basque debconf translation, closes: #460348 + * Added Japanese debconf translation, closes: #465682 + * Added French debconf translation, closes: #465779 + * Added Russian debconf translation, closes: #466092 + * Added Italian debconf translation, closes: #466095 + * Added Dutch debconf translation, closes: #466113 + * Added Spanish debconf translation, closes: #466280 + * Updated German translation. + * Really use runtime assertion patch. + * Replaced two patches for module build process by upstream changes taken + from SVN. + * Added ARCH setting to virtualbox-ose-source rules file so we can cross + compile the module. + * Insert module in initscript. + + [ Patrick Winnertz ] + * Fix error of postrm if vboxusers is a non-system group (maybe added + manually before installation of virtualbox-ose). (Closes: #462885) + * Added reviewed debconf templates and translations. + (Closes: #463283) Thanks to Christian Perrier + (Closes: #463828) Thanks to Jacobo Tarrio. + (Closes: #463959) Thanks to Esko Arajärvi + (Closes: #464043) Thanks to Miroslav Kure + (Closes: #464509) Thanks to Clytie Siddall + + -- Michael Meskes Sun, 17 Feb 2008 19:08:04 +0100 + +virtualbox-ose (1.5.4-dfsg-4) unstable; urgency=low + + [ Daniel Baumann ] + * Again removing reimported useless whitespaces at EOL and EOF in debian/*. + + [ Patrick Winnertz ] + * Fixed broken symlink (Closes: #458991) + + -- Patrick Winnertz Tue, 15 Jan 2008 11:49:18 +0100 + +virtualbox-ose (1.5.4-dfsg-3) unstable; urgency=low + + * Added patch from SVN send by Frank Mehnert to fix + runtime assertions. + * Improved debconf text. + * Check for package upgrade in preinst. + * Pre-Depend on debconf. + + -- Michael Meskes Thu, 10 Jan 2008 15:14:26 +0100 + +virtualbox-ose (1.5.4-dfsg-2) unstable; urgency=low + + [ Hilko Bengen ] + * Added debian/watch + + [ Daniel Baumann ] + * Rediffed 02-module-in-kernel.dpatch. + * Again removing reimported useless whitespaces at EOL and EOF in debian/*. + + [ Michael Meskes ] + * Removed two additional include files from guest-sources again because they + were only needed for amd64. + * Install VBoxAddIF.sh which was lost during transition, closes: #458991. + * Added a recommend to libhal, see #448347 for details. + * Added debconf support. + * Tell the user about losing snapshots and ask via debconf whether to + proceed, closes: #458842. + * Clarified error message coming up if module is not loaded, closes: #459440. + + -- Michael Meskes Mon, 07 Jan 2008 17:41:32 +0100 + +virtualbox-ose (1.5.4-dfsg-1) unstable; urgency=low + + [ Michael Meskes ] + * Do not build guest-utils on amd64 because 64bit guests are nor support + yet. + * Removed build time dependency on i32-libs that is not really needed. + * New upstream version. + * Removed some new files because of licensing problems: + ./src/VBox/Additions/linux/selinux-fedora + ./src/VBox/Additions/linux/xmouse/Imakefile + ./src/VBox/HostServices/SharedClipboard/linux-stub.cpp + * Removed the following patches because they are not needed anymore: + 01-configure.dpatch + 08-no-kernel.dpatch + 09-fix-initscript.dpatch + 12-kcompat-2.6.24.dpatch + * Replaced our registration patch by the new config option taken from SVN. + * Rediffed and renumbered some of the remaining patches. + * Added build dependency on libpulse-dev. + * Moved shell scripts from /usr/lib to /usr/share. + * g++-multilib on amd64 depends on libc6-dev-i386, no need to specify both + as build dependency. + * Manually install missing include files for guest-sources. + * Changed layout of guest-sources package to not have to patch the Makefile. + * Changed patch accordingly. + * Removed old 02-host-module patch, it wasn't needed anymore. + * Added new patch 02-module-in-kernel to make sure modules build in a kernel + build environment. + + [ Hilko Bengen ] + * Make dh_strip ignore symlink(s) in /usr/share + + [ Daniel Baumann ] + * Again fixing dpatch headers. + * Again removing reimported useless whitespaces at EOL and EOF in debian/*. + * Correcting the name of Phillip in copyright. + * Syncronising Uploaders of control with control.module.in. + * Rediffed all patches properly. + + -- Michael Meskes Tue, 01 Jan 2008 14:26:51 +0100 + +virtualbox-ose (1.5.2-dfsg2-7) unstable; urgency=low + + [ Patrick Winnertz ] + * Do only recommend the virtualbox-ose-modules package. Maybe someone + would like to compile it on it's own, or not with m-a. (Closes: #456989) + + [ Hilko Bengen ] + * Build system: a large move towards using dh_install + - This requires that we force the build output dir to a fixed location. + - The dh_install call needs to go to the `install' target. + * Leave out code/data for test cases from virtualbox-ose binary package + + [ Michael Meskes ] + * Only suggest guest-sources in guest-utils. With l-m-e expected to include + the guest-modules in the near future, this should be sufficient. + * Rearranged parts of the debian dir. + * Replaced our patch to not need kernel sources by new configure option + taken from svn. + + [ Daniel Baumann ] + * Bumping policy also in module controls, no other changes needed. + + -- Michael Meskes Thu, 20 Dec 2007 15:51:13 +0100 + +virtualbox-ose (1.5.2-dfsg2-6) unstable; urgency=low + + [ Daniel Baumann ] + * Again removing reimported useless whitespaces at EOL and EOF in debian/*. + * Fixing dpatch headers. + * Rediffed dpatches 6-12. + * Removed svn:executable on dpatch 9 and 12. + + [ Michael Meskes ] + * Fixed rules file to correctly install module sources, closes: #456916 + + -- Michael Meskes Tue, 18 Dec 2007 16:21:33 +0100 + +virtualbox-ose (1.5.2-dfsg2-5) unstable; urgency=low + + [ Daniel Baumann ] + * Upgrading virtualbox-ose-modules recommends to depends. + * Downgrading virtualbox-ose-source recommends to suggests. + * Bumping policy version, no other changes needed. + + [ Hilko Bengen ] + * Added support for vditool to VBox.sh + * Build system: + - Cleaned up patch/config phase + - Added copy of init script to debian directory -- no longer copy it + from src/VBox/Installer/linux/vboxnet.sh + - symlinks/directories in packages are now created using debhelper + * Add 2.6.24 compatibility fix (Closes: #456464) + + [ Patrick Winnertz ] + * Moved initscript again out of debian, we should use the upstream one + and created a patch for this one. (in order to fix lintian warning) + * Add description to 02-host-module.dpatch + + -- Patrick Winnertz Mon, 17 Dec 2007 17:37:52 +0100 + +virtualbox-ose (1.5.2-dfsg2-4) unstable; urgency=low + + [ Patrick Winnertz ] + * Changed my maintainer address + + [ meskes@debian.org ] + * Made virtualbox-ose-guest-source compile under linux-modules-extra. + * Made virtualbox-ose-guest-modules i386 only. + * Re-encoded copyright file in UTF-8. + * Removed empty /usr/sbin directory in virtualbox-ose package. + * Removed /usr/lib/virtualbox/VBox.png, doesn't seem to be needed. + * Also removed override for this file. + * Moved binary file xpidl from /usr/share back to /usr/lib. + + -- Michael Meskes Thu, 06 Dec 2007 09:11:51 +0100 + +virtualbox-ose (1.5.2-dfsg2-3) unstable; urgency=low + + * Added patch to remove registration form, closes: #447626, #453784 + * Added just another patch to make sure module is build with the correct + name when build by linux-modules-extra, closes: #453681, #454123 + * Patched Makefile for guest modules for the same reason. + + -- Michael Meskes Sun, 02 Dec 2007 18:06:27 +0100 + +virtualbox-ose (1.5.2-dfsg2-2) unstable; urgency=low + + [ Michael Meskes ] + * Removed superfluous build dependencies: + - libqt3-mt-dev depends on zlib1g-dev and libxcursor-dev + - libxalan110-dev depends on libxerces27-dev + - bcc depends on bin86 + * Remove guest libs from debug package. + * Call "invoke-rc.d udev reload" conditionally in modules postinst. + * Do not call modprobe in postinst script, closes: #451743, #451742 + * Made grep command in vboxnet.sh be quiet, closes: #451741 + * Do not start guest utils if not inside the vm. + * Disabled modprobing of vboxadd because udev seems to be able to handle it. + * Applied patch by Kel Modderman improving + guest utils init script. + * Do not change xorg.conf in postinst, closes: #451745 + + [ Daniel Baumann ] + * Removing again whitespaces at EOL. + * Removing empty virtualbox-ose-guest-utils.postrm. + + -- Michael Meskes Mon, 19 Nov 2007 10:56:31 +0100 + +virtualbox-ose (1.5.2-dfsg2-1) unstable; urgency=low + + [ Daniel Baumann ] + * Added debug package. + * Converting XS-* fields to their official counterparts. + * Removed some re-imported useless whitespaces. + + [ Michael Meskes ] + * Made sure modules postinst calls debmod before modprobe. + * Added reference to http://wiki.debian.org/VirtualBox to README.Debian. + * Moved architecture independant files from /usr/lib to /usr/share, closes: #448951 + * Checked license of linux installer and additions. + * Repackaged dfsg orig tarball accordingly. + * Added linux installer tools, closes: #448749 + * Provide programs with upstream upper/lower case mix as used by upstream. + * Added linux additions in two separate packages, closes: #440517, #449315 + * Install vboxnet.sh as init script. + * Changed build system to work without kernel sources. + + -- Michael Meskes Tue, 12 Nov 2007 20:26:35 +0100 + +virtualbox-ose (1.5.2-dfsg-2) unstable; urgency=low + + * Adding depends to adduser (Closes: #447271). + * Conditionally call delgroup in virtualbox-ose.postrm. + * Replacing virtualbox-modules with virtualbox-ose-modules in + scripts/VBox.sh. + * Sorting recommends. + * Adding patch from Daniel Hahler to change the error + message for vboxdrv failure, according to virtualbox-ose-modules. + + -- Daniel Baumann Sat, 20 Oct 2007 06:40:00 +0200 + +virtualbox-ose (1.5.2-dfsg-1) unstable; urgency=low + + [ Michael Meskes ] + * Made build process install menu file, closes: #444842 + * Move virtualbox to Apps/System. + * Syncronized desktop and menu file. + * Documented features missing in Open-Source-Edition in + README.Debian, closes: #444941 + * Changed menu section to Applications/Emulators. + + [ Daniel Baumann ] + * Removing useless whitespaces at EOL and EOF in debian/*. + * Sorting architectures. + * Sorting build-depends. + * Sorting control fields. + * Adding VCS control fields. + * Adding Homepage control fields. + * Renaming virtualbox.desktop and virtualbox.xpm to virtualbox-ose.desktop + and virtualbox-ose.xpm. + * Using the term 'VirtualBox OSE' consistently in virtualbox-ose.desktop, + virtualbox-ose-source.README.Debian and virtualbox-ose.menu. + * Renaming README.Debian and README.rebuild to virtualbox-ose.README.Debian + and virtualbox-ose.README.rebuild for consistency reasons. + * Rediffed, cleaned up and properly named all dpatches. + * Added forgotton changelog from the 1.5.0-dfsg-1 upload. + * Using install -D call to install the lintian override. + * Removed comment in rules about "dh_lintian"; this will not be implemented + in debhelper anyway, see #109642 for more information. + * Fixed spelling error and improved language in + virtualbox-ose.README.rebuild. + * Cleaned, simplified and refractored postinst.modules.in, + virtualbox-ose.postinst and virtualbox-ose.postrm. + * Added m-a override link for virtualbox-ose-source. + * Re-applied improvements to dfsg-target in rules from 1.5.0-dfsg-1 upload. + * Removing not needed debhelper calls in binary-indep target in rules. + * Moving debian/virtualbox-ose.lintian-overrides to + debian/lintian/virtualbox-ose for consistency reasons. + * Moving debian/VBox.sh to debian/scripts/VBox.sh for consistency reasons. + * Updated menu file to new menu policy. + * Updated fsf address in copyright. + * New upstream release: + - Updating dfsg-free target in rules. + - Updating 01-configure.dpatch. + + -- Michael Meskes Fri, 19 Oct 2007 10:19:49 +0200 + +virtualbox-ose (1.5.0-dfsg2-2) unstable; urgency=low + + [ Patrick Winnertz ] + * Added README.Debian to virtualbox-ose in order to document that the + configuration xml files of the machines are not compatible between + 1.4.0-svn4130 and the 1.5.0 release. (Closes: #441634) + * Build only binary-dep packages in binary-dep target and only binary-indep + packages in binary-indep target. + * Added postrm to virtualbox-ose in order to remove the vboxusers group on + purge. (Closes: #442396) + + [ Michael Meskes ] + * Force udev to reload the rules in postinst. Hopefully this makes sure that + the device always belongs to the right group. + + -- Michael Meskes Sun, 23 Sep 2007 13:55:37 +0200 + +virtualbox-ose (1.5.0-dfsg2-1) unstable; urgency=low + + * Improved README.Debian for virtualbox-ose-source (Closes: #440793 ) + * Fixed error using different kernel sources than the one which is running + (Closes: #440693 ) + Thanks to Stefan Lippers-Hollmann + * The kernel module for virtualbox will only build on amd64 and i386 + (Closes: #440564) + * Merge some changes that Daniel Baumann made in his own package before. + Thanks. + * Set the alioth ML as maintainer address, since this list will be used to + discuss issues from now on. + * Removed one patch for makefile. Instead use variables now. + - Improved patch localconfig-kmk.dpatch + * Upload of 1.5.0 fixes scrolling issue. (Closes: #440773 ) + + -- Patrick Winnertz Thu, 06 Sep 2007 09:52:48 +0200 + +virtualbox-ose (1.5.0-dfsg-1) unstable; urgency=low + + * New upstream release. + * Re-added myself as co-maintainer as I'm the original maintainer. + * Updated dfsg-free target in rules for new upstream version. + * Don't forkbomb in dfsg-free target, use xargs. + * Don't do a subshell in dfsg-free target, not required. + * Cleaned the 'dh_make'-template header in postinst.modules.in. + * Rediffed all patches with the same diff options. + * Properly named all patches and adjusted their dpatch headers. + + -- Daniel Baumann Wed, 5 Sep 2007 06:58:00 +0200 + +virtualbox-ose (1.4.0svn4130-dfsg-1) unstable; urgency=low + + [ Patrick Winnertz ] + * Rename virtualbox to virtualbox-ose since innotek has a trademark on this + name and they prohibit us to use this name together with the open-source edition. + See http://www.virtualbox.org/wiki/Licensing_FAQ point 8 for details. + * If module is not loadable on this kernel don't fail to install kernel + module. (Closes: #440509) + * Adjusted Upstream Authors name. The name of the company has changed. + * Adjusted copyright. virtualbox is GPLv2 *only*. + + [ Michael Meskes ] + * Added Build-Dependancy to g++-multilib on amd64. + + -- Michael Meskes Mon, 03 Sep 2007 14:27:30 +0200 + +virtualbox (1.4.0svn4130-dfsg-1) unstable; urgency=low + + [ Daniel Baumann ] + * Initial release (Closes: #406992, #407001, #409711). + + [ Philipp Hug ] + * Stripped kbuild and yasm from source tarball + * Use Debian's kbuild and yasm instead + * Added myself as uploader + * Build target for module is now all instead of module + * Build against correct kernel source + * Integrated changes by Patrick Winnertz + * clean: rm env.sh AutoConfig.kmk configure.log + * Install udev rules to automatically create device + * Automatically create vboxusers group + * Binary names are now lowercase + * Disabled stripping for VMM because it breaks VirtualBox + * Don't require kernel module, recommend it instead + + [ Patrick Winnertz ] + * Remove Microsoft license stuff from orig.tar.gz (repackaged it ) + See dfsg-free section in debian/rules for details. + * Added patch to use own yasm + * Added patch to remove Additions from the Makefile.kmk + * Remove ./src/libs/xpcom18a4/nsprpub/build/autoconf from source tarball. + * Doesn't depend on gcc-3.4 and g++-3.4 since they are going to be removed from + debian. Use default instead. + Therefore I removed the patch, too. + * Don't call dh_installdeb twice. (build-dep & build-indep) + * Added section to create dfsg tarball automatically to debian/rules (experimental!!) + * Added lintian.overrides for -fPIC since somehow virtualbox doesn't work with + * Added patch to prevent building modules and kernel code when building the + gui. + * Install udev rule with virtualbox and not with the module, since several + modules for several kernels could be there. + * Improved copyright statements in copyright file. + * Corrected .desktop file + + -- Patrick Winnertz Thu, 30 Aug 2007 12:35:51 +0200 diff --git a/debian/control b/debian/control new file mode 100644 index 00000000..ad7488f4 --- /dev/null +++ b/debian/control @@ -0,0 +1,210 @@ +Source: virtualbox +Section: contrib/misc +Priority: optional +Maintainer: Debian Virtualbox Team +Uploaders: Ritesh Raj Sarraf , + Gianfranco Costamagna +Build-Depends: bzip2, + debhelper-compat (= 12), + default-jdk, + jaxws, + dh-python, + dkms, + docbook-xml, + docbook-xsl, + dpkg-dev (>= 1.15.6~), + g++-multilib, + genisoimage, + gsoap, + acpica-tools, + kbuild (>= 1:0.1.9998svn3098~), + libasound2-dev, + libcap-dev, + libcurl4-gnutls-dev, + libdevmapper-dev, + libdrm-dev, + libegl1-mesa-dev, + libgl1-mesa-dev, + libglu1-mesa-dev, + libgsoap-dev, + liblzf-dev, + libidl-dev, + libopus-dev, + libpam0g-dev, + libpixman-1-dev, + libpng-dev, + libpulse-dev, + libqt5x11extras5-dev, + libqt5opengl5-dev, + qttools5-dev-tools, + libsdl1.2-dev, + libssl-dev, + libvncserver-dev, + libvpx-dev, + libx11-dev, + libxcomposite-dev, + libxcursor-dev, + libxdamage-dev, + libxext-dev, + libxi-dev, + libxinerama-dev, + libxml2-dev, + libxml2-utils, + libxmu-dev, + libxrandr-dev, + libxrender-dev, + libxslt1-dev, + libxt-dev, + lsb-release, + lynx, + makeself, + module-assistant, + nasm, + python3-dev, + texlive-fonts-extra, + texlive-fonts-recommended, + texlive-latex-extra, + texlive-latex-recommended, + uuid-dev, + x11proto-gl-dev, + x11proto-xf86dri-dev, + xserver-xorg-dev, + xsltproc, + yasm, + zlib1g-dev +X-Python-Version: >= 2.5 +Standards-Version: 4.5.0 +Rules-Requires-Root: binary-targets +Homepage: https://www.virtualbox.org +Vcs-Browser: https://salsa.debian.org/pkg-virtualbox-team/virtualbox +Vcs-Git: https://salsa.debian.org/pkg-virtualbox-team/virtualbox.git + +Package: virtualbox-qt +Architecture: amd64 +Depends: virtualbox (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends} +Breaks: virtualbox (<< 4.1.6-dfsg-2~) +Replaces: virtualbox (<< 4.1.6-dfsg-2~) +Description: x86 virtualization solution - Qt based user interface + VirtualBox is a free x86 virtualization solution allowing a wide range + of x86 operating systems such as Windows, DOS, BSD or Linux to run on a + Linux system. + . + This package provides the Qt based graphical user interface for VirtualBox. + +Package: virtualbox +Architecture: amd64 +Depends: adduser, + iproute2, + procps, + virtualbox-dkms (>= ${source:Version}) | virtualbox-source (>= ${source:Version}) | virtualbox-modules, + ${misc:Depends}, + ${python3:Depends}, + ${shlibs:Depends} +Recommends: virtualbox-qt (= ${binary:Version}), ${shlibs:Recommends} +Suggests: vde2, virtualbox-guest-additions-iso +Conflicts: virtualbox-2.0, + virtualbox-2.1, + virtualbox-2.2, + virtualbox-3.0, + virtualbox-3.1, + virtualbox-3.2, + virtualbox-4.0, + virtualbox-4.1, + virtualbox-4.2, + virtualbox-4.3, + virtualbox-5.0, + virtualbox-5.1, + virtualbox-5.2, + virtualbox-6.0, + virtualbox-6.1, +Description: x86 virtualization solution - base binaries + VirtualBox is a free x86 virtualization solution allowing a wide range + of x86 operating systems such as Windows, DOS, BSD or Linux to run on a + Linux system. + . + This package provides the binaries for VirtualBox. Either the virtualbox-dkms + or the virtualbox-source package is also required in order to compile the + kernel modules needed for virtualbox. A graphical user interface for + VirtualBox is provided by the package virtualbox-qt. + +Package: virtualbox-dkms +Section: contrib/kernel +Architecture: amd64 +Depends: ${misc:Depends} +Recommends: virtualbox (>= ${source:Version}) +Provides: virtualbox-modules +Description: x86 virtualization solution - kernel module sources for dkms + VirtualBox is a free x86 virtualization solution allowing a wide range + of x86 operating systems such as Windows, DOS, BSD or Linux to run on a + Linux system. + . + This package provides the source code for the virtualbox kernel module to be + build with dkms. Kernel sources or headers are required to compile this + module. + +Package: virtualbox-source +Section: contrib/kernel +Architecture: amd64 +Depends: build-essential, + bzip2, + debhelper-compat (= 12), + kbuild, + module-assistant, + ${misc:Depends} +Recommends: virtualbox (>= ${source:Version}) +Description: x86 virtualization solution - kernel module source + VirtualBox is a free x86 virtualization solution allowing a wide range + of x86 operating systems such as Windows, DOS, BSD or Linux to run on a + Linux system. + . + This package provides the source code for the virtualbox kernel module. + The virtualbox package is also required in order to make use of these + modules. Kernel sources or headers are required to compile this module. + . + The source is placed under /usr/src, and after decompression it can + be built to produce a virtualbox-modules-_KVERS_ providing + "virtualbox-modules" package. + +Package: virtualbox-guest-x11 +Section: contrib/x11 +Architecture: amd64 i386 +Depends: libnotify-bin, + x11-xserver-utils, + virtualbox-guest-utils (= ${binary:Version}), + ${misc:Depends}, + ${shlibs:Depends}, + ${xserver:Depends} +Provides: xorg-driver-video +XB-Modaliases: ${modaliases} +Description: x86 virtualization solution - X11 guest utilities + VirtualBox is a free x86 virtualization solution allowing a wide range + of x86 operating systems such as Windows, DOS, BSD or Linux to run on a + Linux system. + . + This package provides the X11 guest utilities for VirtualBox. These utilities + are meant to be run inside the virtual machine. + They provide closer integration and improve the interactive performance. + +Package: virtualbox-guest-utils +Architecture: amd64 i386 +Depends: adduser, + pciutils, + ${misc:Depends}, + ${shlibs:Depends} +#Conflicts: time-daemon, ntp +#Provides: time-daemon +#Replaces: time-daemon +Suggests: virtualbox-guest-x11 (= ${binary:Version}) +Description: x86 virtualization solution - non-X11 guest utilities + VirtualBox is a free x86 virtualization solution allowing a wide range + of x86 operating systems such as Windows, DOS, BSD or Linux to run on a + Linux system. + . + This package provides the non-X11 guest utilities for VirtualBox. These + utilities are meant to be run inside the virtual machine. + They provide closer integration and allow to share data through shared folders + between the host system and the virtual machine. + . + Either the virtualbox-guest-dkms or the virtualbox-guest-source package is + also required in order to compile the kernel modules needed for + virtualbox-guest-utils. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000..9d108870 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,1579 @@ +This package was debianized by Daniel Baumann on +Mon, 15 Jan 2007 14:33:00 +0100. + +It was downloaded from . + +This package is not part of the Debian operating system. +It is in the "contrib" area of the Debian archive because it requires a +non-free compiler (Open Watcom) to build the BIOS. +Upstream provides pre-built BIOS images which is used instead. + +Upstream Author: Oracle Corporation + +Copyright: + + Copyright (C) 2004-2020 Oracle Corporation + + VirtualBox contains portions of QEMU which is governed by the licenses in and and + Copyright (C) 2003-2005 Fabrice Bellard; Copyright (C) 2004-2005 Vassili Karpov (malc); + Copyright (c) 2004 Antony T Curtis; Copyright (C) 2003 Jocelyn Mayer + + VirtualBox contains code which is governed by the license in and + Copyright 2004 by the Massachusetts Institute of Technology. + + VirtualBox contains code of the BOCHS VGA BIOS which is governed by the license in and + Copyright (C) 2001, 2002 the LGPL VGABios developers Team. + + VirtualBox contains code of the BOCHS ROM BIOS which is governed by the license in and + Copyright (C) 2002 MandrakeSoft S.A.; Copyright (C) 2004 Fabrice Bellard; Copyright (C) 2005 Struan Bartlett. + + VirtualBox contains the zlib library which is governed by the license in and + Copyright (C) 1995-2003 Jean-loup Gailly and Mark Adler. + + VirtualBox may contain OpenSSL which is governed by the license in and + Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com). This product includes software written by Tim Hudson (tjh@cryptsoft.com). + + VirtualBox may contain NSPR and XPCOM which is governed by the license in and + Copyright (C) The Authors. + + VirtualBox contains Slirp which is governed by the license in and was written by Danny Gasparovski. + Copyright (C) 1995, 1996 All Rights Reserved. + + VirtualBox contains liblzf which is governed by the license in and + Copyright (C) 2000-2005 Marc Alexander Lehmann + + VirtualBox may ship with a modified copy of rdesktop which is governed by the license in and + Copyright (C) Matthew Chapman and others. + + VirtualBox may ship with a copy of kchmviewer which is governed by the license in and + Copyright (C) George Yunaev and others. + + VirtualBox may contain Etherboot which is governed by the license in with the exception that + aggregating Etherboot with another work does not require the other work to be released under + the same license (see http://etherboot.sourceforge.net/clinks.html). Etherboot is + Copyright (C) Etherboot team. + + VirtualBox contains code from Wine which is governed by the license in and + Copyright 1993 Bob Amstadt, Copyright 1996 Albrecht Kleine, Copyright 1997 David Faure, + Copyright 1998 Morten Welinder, Copyright 1998 Ulrich Weigand, Copyright 1999 Ove Koven + + VirtualBox contains code from lwIP which is governed by the license in and + Copyright (C) 2001, 2002 Swedish Institute of Computer Science. + + VirtualBox contains libxml which is governed by the license in the section called "libxml license" and + Copyright (C) 1998-2003 Daniel Veillard. + + VirtualBox contains libxslt which is governed by the license in the section called "libxslt licenses" and + Copyright (C) 2001-2002 Daniel Veillard and Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and + Daniel Veillard. + + VirtualBox contains code from the gSOAP XML web services tools, which are licensed under the + license in the section called "gSOAP Public License Version 1.3a" and + Copyright (C) 2000-2007, Robert van Engelen, Genivia Inc., and others. + + VirtualBox ships with the application tunctl (shipped as VBoxTunctl) from the User-mode Linux + suite which is governed by the license in and + Copyright (C) 2002 Jeff Dike. + + VirtualBox contains code from Chromium, an OpenGL implementation, which is goverened by the + licenses in the section called "Chromium licenses" and + Copyright (C) Stanford University, The Regents of the University of California, Red Hat, and others. + + VirtualBox contains libcurl which is governed by the license in the section called "curl license" and + Copyright (C) 1996-2009, Daniel Stenberg. + + VirtualBox contains dnsproxy which is governed by the license in the section called "MIT License" and + Copyright (c) 2003, 2004, 2005 Armin Wolfermann. + + VirtualBox may contain iniparser which is governed by the license in the section called "MIT License" and + Copyright (c) 2000-2008 by Nicolas Devillard. + + VirtualBox contains some code from libgd which is governed by the license in the section + called "libgd license" and + Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Pierre-Alain Joye (pierre@libgd.org). + + VirtualBox contains code from the EFI Development Kit II which is governed by the license in + the section called "BSD license from Intel" and + Copyright (c) 2004-2014, Intel Corporation. + + VirtualBox contains libjpeg which is governed by the license in the section called "libjpeg License" and + Copyright (C) 1991-2010, Thomas G. Lane, Guido Vollbeding. + + VirtualBox may contain x86 SIMD extension for IJG JPEG library which is governed by the + license in the section called "x86 SIMD extension for IJG JPEG library license" and + Copyright 2009 Pierre Ossman for Cendio AB; + Copyright 2010 D. R. Commander; Copyright (C) 1999-2006, MIYASAKA Masaru. + + +License: + + Preliminary notes: + + 1) The majority of code in the VirtualBox Open Source Edition (OSE) is + copyrighted by Oracle Corporation. This code is combined with third-party code + that was originally released under licenses which the Free Software Foundation + considers incompatible with the GPL, such as the Apache License 2.0, the OpenSSL + license, the Mozilla Public License (MPL) and the Slirp license. (Please see the + VirtualBox User Manual for a complete list of third-party code and their + licenses.) As a special exception to the terms and conditions of the GPL listed + below, Oracle gives you explicit permission to combine its GPL code contained in + VirtualBox OSE with third-party code under the aforementioned licenses. You may + copy and distribute such a combination provided that you adhere to the terms and + conditions of all of the GPL and the licenses of the third-party code; in + particular, you must include the source code of the entire combination insofar + as the GPL requires distribution of source code. + + 2) The GPL listed below does not bind software which uses VirtualBox services by + merely linking to VirtualBox libraries so long as all VirtualBox interfaces used + by that software are multi-licensed. A VirtualBox interface is deemed + multi-licensed if it is declared in a VirtualBox header file that is licensed + under both the GPL version 2 (below) *and* the Common Development and + Distribution License Version 1.0 (CDDL), as it comes in the "COPYING.CDDL" file. + In other words, calling such a multi-licensed interface is merely considered + normal use of VirtualBox and does not turn the calling code into a derived work + of VirtualBox. In particular, this applies to code that wants to extend + VirtualBox by way of the Extension Pack mechanism declared in the ExtPack.h + header file. + + 3) Whoever creates or distributes a derived work based on VirtualBox OSE is not + obligated to grant the above exceptions for such a version. The GPL allows for + releasing a modified version without the above exception; in addition, Oracle + hereby also allows you to release a modified version which carries forward these + exceptions. + + + Most files are licensed under the GPLv2: + + This file is part of VirtualBox Open Source Edition (OSE), as + available from http://www.virtualbox.org. This file is free software; + you can redistribute it and/or modify it under the terms of the GNU + General Public License (GPL) as published by the Free Software + Foundation, in version 2 as it comes in the "COPYING" file of the + VirtualBox OSE distribution. VirtualBox OSE is distributed in the + hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. + + Some have this addition: + + The contents of this file may alternatively be used under the terms + of the Common Development and Distribution License Version 1.0 + (CDDL) only, as it comes in the "COPYING.CDDL" file of the + VirtualBox OSE distribution, in which case the provisions of the + CDDL are applicable instead of those of the GPL. + + You may elect to license modified versions of this file under the + terms and conditions of either the GPL or the CDDL or both. + + +License texts: + + GNU General Public License version 2 (GPL-2) + +On Debian systems, the full text of the GNU General Public License version 2 +can be found in the file `/usr/share/common-licenses/GPL-2'. + + + GNU Lesser General Public License version 2.1 (LGPL-2.1) + +On Debian systems, the full text of the GNU Lesser General Public License version 2.1 +can be found in the file `/usr/share/common-licenses/LGPL-2.1'. + + + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0 + +1. Definitions. + + 1.1. "Contributor" means each individual or entity that creates + or contributes to the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original + Software, prior Modifications used by a Contributor (if any), + and the Modifications made by that particular Contributor. + + 1.3. "Covered Software" means (a) the Original Software, or (b) + Modifications, or (c) the combination of files containing + Original Software with files containing Modifications, in + each case including portions thereof. + + 1.4. "Executable" means the Covered Software in any form other + than Source Code. + + 1.5. "Initial Developer" means the individual or entity that first + makes Original Software available under this License. + + 1.6. "Larger Work" means a work which combines Covered Software or + portions thereof with code not governed by the terms of this + License. + + 1.7. "License" means this document. + + 1.8. "Licensable" means having the right to grant, to the maximum + extent possible, whether at the time of the initial grant or + subsequently acquired, any and all of the rights conveyed + herein. + + 1.9. "Modifications" means the Source Code and Executable form of + any of the following: + + A. Any file that results from an addition to, deletion from or + modification of the contents of a file containing Original + Software or previous Modifications; + + B. Any new file that contains any part of the Original + Software or previous Modifications; or + + C. Any new file that is contributed or otherwise made + available under the terms of this License. + + 1.10. "Original Software" means the Source Code and Executable + form of computer software code that is originally released + under this License. + + 1.11. "Patent Claims" means any patent claim(s), now owned or + hereafter acquired, including without limitation, method, + process, and apparatus claims, in any patent Licensable by + grantor. + + 1.12. "Source Code" means (a) the common form of computer software + code in which modifications are made and (b) associated + documentation included in or with such code. + + 1.13. "You" (or "Your") means an individual or a legal entity + exercising rights under, and complying with all of the terms + of, this License. For legal entities, "You" includes any + entity which controls, is controlled by, or is under common + control with You. For purposes of this definition, + "control" means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by + contract or otherwise, or (b) ownership of more than fifty + percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants. + + 2.1. The Initial Developer Grant. + + Conditioned upon Your compliance with Section 3.1 below and + subject to third party intellectual property claims, the Initial + Developer hereby grants You a world-wide, royalty-free, + non-exclusive license: + + (a) under intellectual property rights (other than patent or + trademark) Licensable by Initial Developer, to use, + reproduce, modify, display, perform, sublicense and + distribute the Original Software (or portions thereof), + with or without Modifications, and/or as part of a Larger + Work; and + + (b) under Patent Claims infringed by the making, using or + selling of Original Software, to make, have made, use, + practice, sell, and offer for sale, and/or otherwise + dispose of the Original Software (or portions thereof). + + (c) The licenses granted in Sections 2.1(a) and (b) are + effective on the date Initial Developer first distributes + or otherwise makes the Original Software available to a + third party under the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is + granted: (1) for code that You delete from the Original + Software, or (2) for infringements caused by: (i) the + modification of the Original Software, or (ii) the + combination of the Original Software with other software + or devices. + + 2.2. Contributor Grant. + + Conditioned upon Your compliance with Section 3.1 below and + subject to third party intellectual property claims, each + Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: + + (a) under intellectual property rights (other than patent or + trademark) Licensable by Contributor to use, reproduce, + modify, display, perform, sublicense and distribute the + Modifications created by such Contributor (or portions + thereof), either on an unmodified basis, with other + Modifications, as Covered Software and/or as part of a + Larger Work; and + + (b) under Patent Claims infringed by the making, using, or + selling of Modifications made by that Contributor either + alone and/or in combination with its Contributor Version + (or portions of such combination), to make, use, sell, + offer for sale, have made, and/or otherwise dispose of: + (1) Modifications made by that Contributor (or portions + thereof); and (2) the combination of Modifications made by + that Contributor with its Contributor Version (or portions + of such combination). + + (c) The licenses granted in Sections 2.2(a) and 2.2(b) are + effective on the date Contributor first distributes or + otherwise makes the Modifications available to a third + party. + + (d) Notwithstanding Section 2.2(b) above, no patent license is + granted: (1) for any code that Contributor has deleted + from the Contributor Version; (2) for infringements caused + by: (i) third party modifications of Contributor Version, + or (ii) the combination of Modifications made by that + Contributor with other software (except as part of the + Contributor Version) or other devices; or (3) under Patent + Claims infringed by Covered Software in the absence of + Modifications made by that Contributor. + +3. Distribution Obligations. + + 3.1. Availability of Source Code. + + Any Covered Software that You distribute or otherwise make + available in Executable form must also be made available in Source + Code form and that Source Code form must be distributed only under + the terms of this License. You must include a copy of this + License with every copy of the Source Code form of the Covered + Software You distribute or otherwise make available. You must + inform recipients of any such Covered Software in Executable form + as to how they can obtain such Covered Software in Source Code + form in a reasonable manner on or through a medium customarily + used for software exchange. + + 3.2. Modifications. + + The Modifications that You create or to which You contribute are + governed by the terms of this License. You represent that You + believe Your Modifications are Your original creation(s) and/or + You have sufficient rights to grant the rights conveyed by this + License. + + 3.3. Required Notices. + + You must include a notice in each of Your Modifications that + identifies You as the Contributor of the Modification. You may + not remove or alter any copyright, patent or trademark notices + contained within the Covered Software, or any notices of licensing + or any descriptive text giving attribution to any Contributor or + the Initial Developer. + + 3.4. Application of Additional Terms. + + You may not offer or impose any terms on any Covered Software in + Source Code form that alters or restricts the applicable version + of this License or the recipients' rights hereunder. You may + choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of + Covered Software. However, you may do so only on Your own behalf, + and not on behalf of the Initial Developer or any Contributor. + You must make it absolutely clear that any such warranty, support, + indemnity or liability obligation is offered by You alone, and You + hereby agree to indemnify the Initial Developer and every + Contributor for any liability incurred by the Initial Developer or + such Contributor as a result of warranty, support, indemnity or + liability terms You offer. + + 3.5. Distribution of Executable Versions. + + You may distribute the Executable form of the Covered Software + under the terms of this License or under the terms of a license of + Your choice, which may contain terms different from this License, + provided that You are in compliance with the terms of this License + and that the license for the Executable form does not attempt to + limit or alter the recipient's rights in the Source Code form from + the rights set forth in this License. If You distribute the + Covered Software in Executable form under a different license, You + must make it absolutely clear that any terms which differ from + this License are offered by You alone, not by the Initial + Developer or Contributor. You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred + by the Initial Developer or such Contributor as a result of any + such terms You offer. + + 3.6. Larger Works. + + You may create a Larger Work by combining Covered Software with + other code not governed by the terms of this License and + distribute the Larger Work as a single product. In such a case, + You must make sure the requirements of this License are fulfilled + for the Covered Software. + +4. Versions of the License. + + 4.1. New Versions. + + Sun Microsystems, Inc. is the initial license steward and may + publish revised and/or new versions of this License from time to + time. Each version will be given a distinguishing version number. + Except as provided in Section 4.3, no one other than the license + steward has the right to modify this License. + + 4.2. Effect of New Versions. + + You may always continue to use, distribute or otherwise make the + Covered Software available under the terms of the version of the + License under which You originally received the Covered Software. + If the Initial Developer includes a notice in the Original + Software prohibiting it from being distributed or otherwise made + available under any subsequent version of the License, You must + distribute and make the Covered Software available under the terms + of the version of the License under which You originally received + the Covered Software. Otherwise, You may also choose to use, + distribute or otherwise make the Covered Software available under + the terms of any subsequent version of the License published by + the license steward. + + 4.3. Modified Versions. + + When You are an Initial Developer and You want to create a new + license for Your Original Software, You may create and use a + modified version of this License if You: (a) rename the license + and remove any references to the name of the license steward + (except to note that the license differs from this License); and + (b) otherwise make it clear that the license contains terms which + differ from this License. + +5. DISCLAIMER OF WARRANTY. + + COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" + BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, + INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED + SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR + PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND + PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY + COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE + INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY + NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF + WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF + ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS + DISCLAIMER. + +6. TERMINATION. + + 6.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to + cure such breach within 30 days of becoming aware of the breach. + Provisions which, by their nature, must remain in effect beyond + the termination of this License shall survive. + + 6.2. If You assert a patent infringement claim (excluding + declaratory judgment actions) against Initial Developer or a + Contributor (the Initial Developer or Contributor against whom You + assert such claim is referred to as "Participant") alleging that + the Participant Software (meaning the Contributor Version where + the Participant is a Contributor or the Original Software where + the Participant is the Initial Developer) directly or indirectly + infringes any patent, then any and all rights granted directly or + indirectly to You by such Participant, the Initial Developer (if + the Initial Developer is not the Participant) and all Contributors + under Sections 2.1 and/or 2.2 of this License shall, upon 60 days + notice from Participant terminate prospectively and automatically + at the expiration of such 60 day notice period, unless if within + such 60 day period You withdraw Your claim with respect to the + Participant Software against such Participant either unilaterally + or pursuant to a written agreement with Participant. + + 6.3. In the event of termination under Sections 6.1 or 6.2 above, + all end user licenses that have been validly granted by You or any + distributor hereunder prior to termination (excluding licenses + granted to You by any distributor) shall survive termination. + +7. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE + INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF + COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE + LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR + CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT + LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK + STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER + COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL + INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT + APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO + NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR + CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT + APPLY TO YOU. + +8. U.S. GOVERNMENT END USERS. + + The Covered Software is a "commercial item," as that term is + defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial + computer software" (as that term is defined at 48 + C.F.R. 252.227-7014(a)(1)) and "commercial computer software + documentation" as such terms are used in 48 C.F.R. 12.212 + (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 + C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all + U.S. Government End Users acquire Covered Software with only those + rights set forth herein. This U.S. Government Rights clause is in + lieu of, and supersedes, any other FAR, DFAR, or other clause or + provision that addresses Government rights in computer software + under this License. + +9. MISCELLANEOUS. + + This License represents the complete agreement concerning subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. This License shall be governed + by the law of the jurisdiction specified in a notice contained + within the Original Software (except to the extent applicable law, + if any, provides otherwise), excluding such jurisdiction's + conflict-of-law provisions. Any litigation relating to this + License shall be subject to the jurisdiction of the courts located + in the jurisdiction and venue specified in a notice contained + within the Original Software, with the losing party responsible + for costs, including, without limitation, court costs and + reasonable attorneys' fees and expenses. The application of the + United Nations Convention on Contracts for the International Sale + of Goods is expressly excluded. Any law or regulation which + provides that the language of a contract shall be construed + against the drafter shall not apply to this License. You agree + that You alone are responsible for compliance with the United + States export administration regulations (and the export control + laws and regulation of any other countries) when You use, + distribute or otherwise make available any Covered Software. + +10. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or + indirectly, out of its utilization of rights under this License + and You agree to work with Initial Developer and Contributors to + distribute such responsibility on an equitable basis. Nothing + herein is intended or shall be deemed to constitute any admission + of liability. + +-------------------------------------------------------------------- + +NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND +DISTRIBUTION LICENSE (CDDL) + +For Covered Software in this distribution, this License shall be +governed by the laws of Germany. Legal venue shall be Stuttgart, +Germany. + + + MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + X Consortium License (X11) + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + zlib license + +This software is provided 'as-is', without any express or implied warranty. In +no event will the authors be held liable for any damages arising from the use of +this software. + +Permission is granted to anyone to use this software for any purpose, including +commercial applications, and to alter it and redistribute it freely, subject to +the following restrictions: + +1. The origin of this software must not be misrepresented; you must not claim +that you wrote the original software. If you use this software in a product, an +acknowledgment in the product documentation would be appreciated but is not +required. + +2. Altered source versions must be plainly marked as such, and must not be +misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + +Jean-loup Gailly Mark Adler +jloup@gzip.org madler@alumni.caltech.edu + + + OpenSSL license + +This package is an SSL implementation written by Eric Young (eay@cryptsoft.com). +The implementation was written so as to conform with Netscape's SSL. + +This library is free for commercial and non-commercial use as long as the +following conditions are adhered to. The following conditions apply to all code +found in this distribution, be it the RC4, RSA, lhash, DES, etc., code; not just +the SSL code. The SSL documentation included with this distribution is covered +by the same copyright terms except that the holder is Tim Hudson +(tjh@cryptsoft.com). + +Copyright remains Eric Young's, and as such any Copyright notices in the code +are not to be removed. If this package is used in a product, Eric Young should +be given attribution as the author of the parts of the library used. This can be +in the form of a textual message at program startup or in documentation (online +or textual) provided with the package. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the copyright notice, this list of +conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation and/or +other materials provided with the distribution. + +3. All advertising materials mentioning features or use of this software must +display the following acknowledgement: "This product includes cryptographic +software written by Eric Young (eay@cryptsoft.com)" The word 'cryptographic' can +be left out if the routines from the library being used are not cryptographic +related :-). + +4. If you include any Windows specific code (or a derivative thereof) from the +apps directory (application code) you must include an acknowledgement: "This +product includes software written by Tim Hudson (tjh@cryptsoft.com)" + +THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT +SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY +OF SUCH DAMAGE. + +The licence and distribution terms for any publicly available version or +derivative of this code cannot be changed. i.e. this code cannot simply be +copied and put under another distribution licence [including the GNU Public +Licence.] + + + Slirp license + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation and/or +other materials provided with the distribution. + +3. All advertising materials mentioning features or use of this software must +display the following acknowledgment: This product includes software developed +by Danny Gasparovski. + +THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DANNY +GASPAROVSKI OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY +OF SUCH DAMAGE. + + + + liblzf license + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation and/or +other materials provided with the distribution. + +3. The name of the author may not be used to endorse or promote products derived +from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT +SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY +OF SUCH DAMAGE. + + + libpng license + +The PNG Reference Library is supplied "AS IS". The Contributing Authors and +Group 42, Inc. disclaim all warranties, expressed or implied, including, without +limitation, the warranties of merchantability and of fitness for any purpose. +The Contributing Authors and Group 42, Inc. assume no liability for direct, +indirect, incidental, special, exemplary, or consequential damages, which may +result from the use of the PNG Reference Library, even if advised of the +possibility of such damage. + +Permission is hereby granted to use, copy, modify, and distribute this source +code, or portions hereof, for any purpose, without fee, subject to the following +restrictions: + +1. The origin of this source code must not be misrepresented. + +2. Altered versions must be plainly marked as such and must not be +misrepresented as being the original source. + +3. This Copyright notice may not be removed or altered from any source or +altered source distribution. + +The Contributing Authors and Group 42, Inc. specifically permit, without fee, +and encourage the use of this source code as a component to supporting the PNG +file format in commercial products. If you use this source code in a product, +acknowledgment is not required but would be appreciated. + + + lwIP license + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation and/or +other materials provided with the distribution. + +3. The name of the author may not be used to endorse or promote products derived +from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT +SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY +OF SUCH DAMAGE. + + + libxml license + +Except where otherwise noted in the source code (e.g. the files hash.c, list.c +and the trio files, which are covered by a similar licence but with different +Copyright notices) all the files are: + +Copyright (C) 1998-2003 Daniel Veillard. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE DANIEL +VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of Daniel Veillard shall not be +used in advertising or otherwise to promote the sale, use or other dealings in +this Software without prior written authorization from him. + + + libxslt licenses + +Licence for libxslt except libexslt: + +Copyright (C) 2001-2002 Daniel Veillard. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE DANIEL +VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of Daniel Veillard shall not be +used in advertising or otherwise to promote the sale, use or other dealings in +this Software without prior written authorization from him. + +Licence for libexslt: + +Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. All +Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF +CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of the authors shall not be used in +advertising or otherwise to promote the sale, use or other dealings in this +Software without prior written authorization from him. + + + gSOAP Public License Version 1.3a + + +The gSOAP public license is derived from the Mozilla Public License (MPL1.1). +The sections that were deleted from the original MPL1.1 text are 1.0.1, +2.1.(c),(d), 2.2.(c),(d), 8.2.(b), 10, and 11. Section 3.8 was added. The +modified sections are 2.1.(b), 2.2.(b), 3.2 (simplified), 3.5 (deleted the last +sentence), and 3.6 (simplified). + +1 DEFINITIONS + +1.1. "Contributor" means each entity that creates or contributes to the creation +of Modifications. + +1.2. "Contributor Version" means the combination of the Original Code, prior +Modifications used by a Contributor, and the Modifications made by that +particular Contributor. + +1.3. "Covered Code" means the Original Code, or Modifications or the combination +of the Original Code, and Modifications, in each case including portions +thereof. + +1.4. "Electronic Distribution Mechanism" means a mechanism generally accepted in +the software development community for the electronic transfer of data. + +1.5. "Executable" means Covered Code in any form other than Source Code. + +1.6. "Initial Developer" means the individual or entity identified as the +Initial Developer in the Source Code notice required by Exhibit A. + +1.7. "Larger Work" means a work which combines Covered Code or portions thereof +with code not governed by the terms of this License. + +1.8. "License" means this document. + +1.8.1. "Licensable" means having the right to grant, to the maximum extent +possible, whether at the time of the initial grant or subsequently acquired, any +and all of the rights conveyed herein. + +1.9. "Modifications" means any addition to or deletion from the substance or +structure of either the Original Code or any previous Modifications. When +Covered Code is released as a series of files, a Modification is: + +A. Any addition to or deletion from the contents of a file containing Original +Code or previous Modifications. + +B. Any new file that contains any part of the Original Code, or previous +Modifications. + +1.10. "Original Code" means Source Code of computer software code which is +described in the Source Code notice required by Exhibit A as Original Code, and +which, at the time of its release under this License is not already Covered Code +governed by this License. + +1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter +acquired, including without limitation, method, process, and apparatus claims, +in any patent Licensable by grantor. + +1.11. "Source Code" means the preferred form of the Covered Code for making +modifications to it, including all modules it contains, plus any associated +interface definition files, scripts used to control compilation and installation +of an Executable, or source code differential comparisons against either the +Original Code or another well known, available Covered Code of the Contributor's +choice. The Source Code can be in a compressed or archival form, provided the +appropriate decompression or de-archiving software is widely available for no +charge. + +1.12. "You" (or "Your") means an individual or a legal entity exercising rights +under, and complying with all of the terms of, this License or a future version +of this License issued under Section 6.1. For legal entities, "You" includes any +entity which controls, is controlled by, or is under common control with You. +For purposes of this definition, "control" means (a) the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or (b) ownership of more than fifty percent (50%) of the +outstanding shares or beneficial ownership of such entity. + +2 SOURCE CODE LICENSE. + +2.1. The Initial Developer Grant. + +The Initial Developer hereby grants You a world-wide, royalty-free, +non-exclusive license, subject to third party intellectual property claims: + +(a) under intellectual property rights (other than patent or trademark) +Licensable by Initial Developer to use, reproduce, modify, display, perform, +sublicense and distribute the Original Code (or portions thereof) with or +without Modifications, and/or as part of a Larger Work; and + +(b) under patents now or hereafter owned or controlled by Initial Developer, to +make, have made, use and sell ("offer to sell and import") the Original Code, +Modifications, or portions thereof, but solely to the extent that any such +patent is reasonably necessary to enable You to utilize, alone or in combination +with other software, the Original Code, Modifications, or any combination or +portions thereof. + +(c) + +(d) + +2.2. Contributor Grant. + +Subject to third party intellectual property claims, each Contributor hereby +grants You a world-wide, royalty-free, non-exclusive license + +(a) under intellectual property rights (other than patent or trademark) +Licensable by Contributor, to use, reproduce, modify, display, perform, +sublicense and distribute the Modifications created by such Contributor (or +portions thereof) either on an unmodified basis, with other Modifications, as +Covered Code and/or as part of a Larger Work; and + +(b) under patents now or hereafter owned or controlled by Contributor, to make, +have made, use and sell ("offer to sell and import") the Contributor Version (or +portions thereof), but solely to the extent that any such patent is reasonably +necessary to enable You to utilize, alone or in combination with other software, +the Contributor Version (or portions thereof). + +(c) + +(d) + +3 DISTRIBUTION OBLIGATIONS. + +3.1. Application of License. + +The Modifications which You create or to which You contribute are governed by +the terms of this License, including without limitation Section 2.2. The Source +Code version of Covered Code may be distributed only under the terms of this +License or a future version of this License released under Section 6.1, and You +must include a copy of this License with every copy of the Source Code You +distribute. You may not offer or impose any terms on any Source Code version +that alters or restricts the applicable version of this License or the +recipients' rights hereunder. However, You may include an additional document +offering the additional rights described in Section 3.5. + +3.2. Availability of Source Code. + +Any Modification created by You will be provided to the Initial Developer in +Source Code form and are subject to the terms of the License. 3.3. Description +of Modifications. + +You must cause all Covered Code to which You contribute to contain a file +documenting the changes You made to create that Covered Code and the date of any +change. You must include a prominent statement that the Modification is derived, +directly or indirectly, from Original Code provided by the Initial Developer and +including the name of the Initial Developer in (a) the Source Code, and (b) in +any notice in an Executable version or related documentation in which You +describe the origin or ownership of the Covered Code. + +3.4. Intellectual Property Matters. + +(a) Third Party Claims. If Contributor has knowledge that a license under a +third party's intellectual property rights is required to exercise the rights +granted by such Contributor under Sections 2.1 or 2.2, Contributor must include +a text file with the Source Code distribution titled "LEGAL" which describes the +claim and the party making the claim in sufficient detail that a recipient will +know whom to contact. If Contributor obtains such knowledge after the +Modification is made available as described in Section 3.2, Contributor shall +promptly modify the LEGAL file in all copies Contributor makes available +thereafter and shall take other steps (such as notifying appropriate mailing +lists or newsgroups) reasonably calculated to inform those who received the +Covered Code that new knowledge has been obtained. + +(b) Contributor APIs. If Contributor's Modifications include an application +programming interface and Contributor has knowledge of patent licenses which are +reasonably necessary to implement that API, Contributor must also include this +information in the LEGAL file. + +(c) Representations. Contributor represents that, except as disclosed pursuant +to Section 3.4(a) above, Contributor believes that Contributor's Modifications +are Contributor's original creation(s) and/or Contributor has sufficient rights +to grant the rights conveyed by this License. + +3.5. Required Notices. You must duplicate the notice in Exhibit A in each file +of the Source Code. If it is not possible to put such notice in a particular +Source Code file due to its structure, then You must include such notice in a +location (such as a relevant directory) where a user would be likely to look for +such a notice. If You created one or more Modification(s) You may add your name +as a Contributor to the notice described in Exhibit A. You must also duplicate +this License in any documentation for the Source Code where You describe +recipients' rights or ownership rights relating to Covered Code. You may choose +to offer, and to charge a fee for, warranty, support, indemnity or liability +obligations to one or more recipients of Covered Code. However, You may do so +only on Your own behalf, and not on behalf of the Initial Developer or any +Contributor. + +3.6. Distribution of Executable Versions. You may distribute Covered Code in +Executable form only if the requirements of Section 3.1-3.5 have been met for +that Covered Code. You may distribute the Executable version of Covered Code or +ownership rights under a license of Your choice, which may contain terms +different from this License, provided that You are in compliance with the terms +of this License and that the license for the Executable version does not attempt +to limit or alter the recipient's rights in the Source Code version from the +rights set forth in this License. If You distribute the Executable version under +a different license You must make it absolutely clear that any terms which +differ from this License are offered by You alone, not by the Initial Developer +or any Contributor. If you distribute executable versions containing Covered +Code as part of a product, you must reproduce the notice in Exhibit B in the +documentation and/or other materials provided with the product. + +3.7. Larger Works. You may create a Larger Work by combining Covered Code with +other code not governed by the terms of this License and distribute the Larger +Work as a single product. In such a case, You must make sure the requirements of +this License are fulfilled for the Covered Code. + +3.8. Restrictions. You may not remove any product identification, copyright, +proprietary notices or labels from gSOAP. + +4 INABILITY TO COMPLY DUE TO STATUTE OR REGULATION. + +If it is impossible for You to comply with any of the terms of this License with +respect to some or all of the Covered Code due to statute, judicial order, or +regulation then You must: (a) comply with the terms of this License to the +maximum extent possible; and (b) describe the limitations and the code they +affect. Such description must be included in the LEGAL file described in Section +3.4 and must be included with all distributions of the Source Code. Except to +the extent prohibited by statute or regulation, such description must be +sufficiently detailed for a recipient of ordinary skill to be able to understand +it. + +5 APPLICATION OF THIS LICENSE. + +This License applies to code to which the Initial Developer has attached the +notice in Exhibit A and to related Covered Code. + +6 VERSIONS OF THE LICENSE. + +6.1. New Versions. + +Grantor may publish revised and/or new versions of the License from time to +time. Each version will be given a distinguishing version number. + +6.2. Effect of New Versions. + +Once Covered Code has been published under a particular version of the License, +You may always continue to use it under the terms of that version. You may also +choose to use such Covered Code under the terms of any subsequent version of the +License. + +6.3. Derivative Works. + +If You create or use a modified version of this License (which you may only do +in order to apply it to code which is not already Covered Code governed by this +License), You must (a) rename Your license so that the phrase "gSOAP" or any +confusingly similar phrase do not appear in your license (except to note that +your license differs from this License) and (b) otherwise make it clear that +Your version of the license contains terms which differ from the gSOAP Public +License. (Filling in the name of the Initial Developer, Original Code or +Contributor in the notice described in Exhibit A shall not of themselves be +deemed to be modifications of this License.) + +7 DISCLAIMER OF WARRANTY. + +COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT +WARRANTY OF ANY KIND, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, WITHOUT +LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF FITNESS FOR A +PARTICULAR PURPOSE, NONINFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY RIGHTS, +AND ANY WARRANTY THAT MAY ARISE BY REASON OF TRADE USAGE, CUSTOM, OR COURSE OF +DEALING. WITHOUT LIMITING THE FOREGOING, YOU ACKNOWLEDGE THAT THE SOFTWARE IS +PROVIDED "AS IS" AND THAT THE AUTHORS DO NOT WARRANT THE SOFTWARE WILL RUN +UNINTERRUPTED OR ERROR FREE. LIMITED LIABILITY THE ENTIRE RISK AS TO RESULTS AND +PERFORMANCE OF THE SOFTWARE IS ASSUMED BY YOU. UNDER NO CIRCUMSTANCES WILL THE +AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL, EXEMPLARY OR +CONSEQUENTIAL DAMAGES OF ANY KIND OR NATURE WHATSOEVER, WHETHER BASED ON +CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, +ARISING OUT OF OR IN ANY WAY RELATED TO THE SOFTWARE, EVEN IF THE AUTHORS HAVE +BEEN ADVISED ON THE POSSIBILITY OF SUCH DAMAGE OR IF SUCH DAMAGE COULD HAVE BEEN +REASONABLY FORESEEN, AND NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY +EXCLUSIVE REMEDY PROVIDED. SUCH LIMITATION ON DAMAGES INCLUDES, BUT IS NOT +LIMITED TO, DAMAGES FOR LOSS OF GOODWILL, LOST PROFITS, LOSS OF DATA OR +SOFTWARE, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION OR IMPAIRMENT OF OTHER +GOODS. IN NO EVENT WILL THE AUTHORS BE LIABLE FOR THE COSTS OF PROCUREMENT OF +SUBSTITUTE SOFTWARE OR SERVICES. YOU ACKNOWLEDGE THAT THIS SOFTWARE IS NOT +DESIGNED FOR USE IN ON-LINE EQUIPMENT IN HAZARDOUS ENVIRONMENTS SUCH AS +OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR CONTROL, OR +LIFE-CRITICAL APPLICATIONS. THE AUTHORS EXPRESSLY DISCLAIM ANY LIABILITY +RESULTING FROM USE OF THE SOFTWARE IN ANY SUCH ON-LINE EQUIPMENT IN HAZARDOUS +ENVIRONMENTS AND ACCEPTS NO LIABILITY IN RESPECT OF ANY ACTIONS OR CLAIMS BASED +ON THE USE OF THE SOFTWARE IN ANY SUCH ON-LINE EQUIPMENT IN HAZARDOUS +ENVIRONMENTS BY YOU. FOR PURPOSES OF THIS PARAGRAPH, THE TERM "LIFE-CRITICAL +APPLICATION" MEANS AN APPLICATION IN WHICH THE FUNCTIONING OR MALFUNCTIONING OF +THE SOFTWARE MAY RESULT DIRECTLY OR INDIRECTLY IN PHYSICAL INJURY OR LOSS OF +HUMAN LIFE. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS +LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS +DISCLAIMER. + +8 TERMINATION. + +8.1. + +This License and the rights granted hereunder will terminate automatically if +You fail to comply with terms herein and fail to cure such breach within 30 days +of becoming aware of the breach. All sublicenses to the Covered Code which are +properly granted shall survive any termination of this License. Provisions +which, by their nature, must remain in effect beyond the termination of this +License shall survive. + +8.2. + +8.3. + +If You assert a patent infringement claim against Participant alleging that such +Participant's Contributor Version directly or indirectly infringes any patent +where such claim is resolved (such as by license or settlement) prior to the +initiation of patent infringement litigation, then the reasonable value of the +licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken +into account in determining the amount or value of any payment or license. + +8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user +license agreements (excluding distributors and resellers) which have been +validly granted by You or any distributor hereunder prior to termination shall +survive termination. + +9 LIMITATION OF LIABILITY. + +UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING +NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER +CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH +PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR +CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES +FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND +ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN +INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL +NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S +NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME +JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR +CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + +10 U.S. GOVERNMENT END USERS. + +11 MISCELLANEOUS. + +12 RESPONSIBILITY FOR CLAIMS. + +As between Initial Developer and the Contributors, each party is responsible for +claims and damages arising, directly or indirectly, out of its utilization of +rights under this License and You agree to work with Initial Developer and +Contributors to distribute such responsibility on an equitable basis. Nothing +herein is intended or shall be deemed to constitute any admission of liability. + +EXHIBIT A. + +"The contents of this file are subject to the gSOAP Public License Version 1.3 +(the "License"); you may not use this file except in compliance with the +License. You may obtain a copy of the License at +http://www.cs.fsu.edu/~engelen/soaplicense.html. Software distributed under the +License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either +express or implied. See the License for the specific language governing rights +and limitations under the License. + +The Original Code of the gSOAP Software is: stdsoap.h, stdsoap2.h, stdsoap.c, +stdsoap2.c, stdsoap.cpp, stdsoap2.cpp, soapcpp2.h, soapcpp2.c, soapcpp2_lex.l, +soapcpp2_yacc.y, error2.h, error2.c, symbol2.c, init2.c, soapdoc2.html, and +soapdoc2.pdf, httpget.h, httpget.c, stl.h, stldeque.h, stllist.h, stlvector.h, +stlset.h. + +The Initial Developer of the Original Code is Robert A. van Engelen. Portions +created by Robert A. van Engelen are Copyright (C) 2001-2004 Robert A. van +Engelen, Genivia inc. All Rights Reserved. + +Contributor(s): "________________________." [Note: The text of this Exhibit A +may differ slightly form the text of the notices in the Source Code files of the +Original code. You should use the text of this Exhibit A rather than the text +found in the Original Code Source Code for Your Modifications.] + +EXHIBIT B. + +"Part of the software embedded in this product is gSOAP software. Portions +created by gSOAP are Copyright (C) 2001-2004 Robert A. van Engelen, Genivia inc. +All Rights Reserved. THE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY +GENIVIA INC AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." + + + Chromium licenses + +Main license + +Copyright (c) 2002, Stanford University All rights reserved. + +Some portions of Chromium are copyrighted by individiual organizations. Please +see the files COPYRIGHT.LLNL and COPYRIGHT.REDHAT for more information. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation and/or +other materials provided with the distribution. + + Neither the name of Stanford University nor the names of its contributors +may be used to endorse or promote products derived from this software without +specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +COPYRIGHT.LLNL file + +This Chromium distribution contains information and code which is covered under +the following notice: + +Copyright (c) 2002, The Regents of the University of California. Produced at the +Lawrence Livermore National Laboratory For details, contact: Randall Frank +(rjfrank@llnl.gov). UCRL-CODE-2002-058 All rights reserved. + +This file is part of Chromium. For details, see accompanying documentation. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +Redistributions of source code must retain the above copyright notice, this list +of conditions and the disclaimer below. + +Redistributions in binary form must reproduce the above copyright notice, this +list of conditions and the disclaimer (as noted below) in the documentation +and/or other materials provided with the distribution. + +Neither the name of the UC/LLNL nor the names of its contributors may be used to +endorse or promote products derived from this software without specific prior +written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE REGENTS OF THE UNIVERSITY OF CALIFORNIA, THE +U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Additional BSD Notice + +1. This notice is required to be provided under our contract with the U.S. +Department of Energy (DOE). This work was produced at the University of +California, Lawrence Livermore National Laboratory under Contract No. +W-7405-ENG-48 with the DOE. + +2. Neither the United States Government nor the University of California nor any +of their employees, makes any warranty, express or implied, or assumes any +liability or responsibility for the accuracy, completeness, or usefulness of any +information, apparatus, product, or process disclosed, or represents that its +use would not infringe privately-owned rights. + +3. Also, reference herein to any specific commercial products, process, or +services by trade name, trademark, manufacturer or otherwise does not +necessarily constitute or imply its endorsement, recommendation, or favoring by +the United States Government or the University of California. The views and +opinions of authors expressed herein do not necessarily state or reflect those +of the United States Government or the University of California, and shall not +be used for advertising or product endorsement purposes. +COPYRIGHT.REDHAT file + +This Chromium distribution contains information and code which is covered under +the following notice: + +Copyright 2001,2002 Red Hat Inc., Durham, North Carolina. + +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation on the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice (including the next +paragraph) shall be included in all copies or substantial portions of the +Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR +THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + curl license + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1996 - 2009, Daniel Stenberg, daniel@haxx.se. + +All rights reserved. + +Permission to use, copy, modify, and distribute this software for any purpose +with or without fee is hereby granted, provided that the above copyright notice +and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall not be +used in advertising or otherwise to promote the sale, use or other dealings in +this Software without prior written authorization of the copyright holder. + + + libgd license + +Portions copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 by Cold +Spring Harbor Laboratory. Funded under Grant P41-RR02188 by the National +Institutes of Health. + +Portions copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002 by Boutell.Com, Inc. + +Portions relating to GD2 format copyright 1999, 2000, 2001, 2002 Philip Warner. + +Portions relating to PNG copyright 1999, 2000, 2001, 2002 Greg Roelofs. + +Portions relating to gdttf.c copyright 1999, 2000, 2001, 2002 John Ellson +(ellson@lucent.com). + +Portions relating to gdft.c copyright 2001, 2002 John Ellson +(ellson@lucent.com). + +Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Pierre-Alain +Joye (pierre@libgd.org). + +Portions relating to JPEG and to color quantization copyright 2000, 2001, 2002, +Doug Becker and copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, Thomas G. Lane. This software is based in part on the work of the +Independent JPEG Group. See the file README-JPEG.TXT for more information. + +Portions relating to WBMP copyright 2000, 2001, 2002 Maurice Szmurlo and Johan +Van den Brande. + +Permission has been granted to copy, distribute and modify gd in any context +without fee, including a commercial application, provided that this notice is +present in user-accessible supporting documentation. + +This does not affect your ownership of the derived work itself, and the intent +is to assure proper credit for the authors of gd, not to interfere with your +productive use of gd. If you have questions, ask. "Derived works" includes all +programs that utilize the library. Credit must be given in user-accessible +documentation. + +This software is provided "AS IS." The copyright holders disclaim all +warranties, either express or implied, including but not limited to implied +warranties of merchantability and fitness for a particular purpose, with respect +to this code and accompanying documentation. + +Although their code does not appear in gd, the authors wish to thank David +Koblas, David Rowley, and Hutchison Avenue Software Corporation for their prior +contributions. + + + + BSD license from Intel + +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation and/or +other materials provided with the distribution. + + Neither the name of the Intel Corporation nor the names of its contributors +may be used to endorse or promote products derived from this software without +specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + libjpeg License + +The authors make NO WARRANTY or representation, either express or implied, with +respect to this software, its quality, accuracy, merchantability, or fitness for +a particular purpose. This software is provided "AS IS", and you, its user, +assume the entire risk as to its quality and accuracy. + +This software is copyright (C) 1991-2010, Thomas G. Lane, Guido Vollbeding. All +Rights Reserved except as specified below. + +Permission is hereby granted to use, copy, modify, and distribute this software +(or portions thereof) for any purpose, without fee, subject to these conditions: + +(1) If any part of the source code for this software is distributed, then this +README file must be included, with this copyright and no-warranty notice +unaltered; and any additions, deletions, or changes to the original files must +be clearly indicated in accompanying documentation. + +(2) If only executable code is distributed, then the accompanying documentation +must state that "this software is based in part on the work of the Independent +JPEG Group". + +(3) Permission for use of this software is granted only if the user accepts full +responsibility for any undesirable consequences; the authors accept NO LIABILITY +for damages of any kind. + +These conditions apply to any software derived from or based on the IJG code, +not just to the unmodified library. If you use our work, you ought to +acknowledge us. + +Permission is NOT granted for the use of any IJG author's name or company name +in advertising or publicity relating to this software or products derived from +it. This software may be referred to only as "the Independent JPEG Group's +software". + +We specifically permit and encourage the use of this software as the basis of +commercial products, provided that all warranty or liability claims are assumed +by the product vendor. + +ansi2knr.c is included in this distribution by permission of L. Peter Deutsch, +sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA. +ansi2knr.c is NOT covered by the above copyright and conditions, but instead by +the usual distribution terms of the Free Software Foundation; principally, that +you must include source code if you redistribute it. (See the file ansi2knr.c +for full details.) However, since ansi2knr.c is not needed as part of any +program generated from the IJG code, this does not limit you more than the +foregoing paragraphs do. + +The Unix configuration script "configure" was produced with GNU Autoconf. It is +copyright by the Free Software Foundation but is freely distributable. The same +holds for its supporting scripts (config.guess, config.sub, ltmain.sh). Another +support script, install-sh, is copyright by X Consortium but is also freely +distributable. + +The IJG distribution formerly included code to read and write GIF files. To +avoid entanglement with the Unisys LZW patent, GIF reading support has been +removed altogether, and the GIF writer has been simplified to produce +"uncompressed GIFs". This technique does not use the LZW algorithm; the +resulting GIF files are larger than usual, but are readable by all standard GIF +decoders. + +We are required to state that + +"The Graphics Interchange Format(c) is the Copyright property of CompuServe +Incorporated. GIF(sm) is a Service Mark property of CompuServe Incorporated." + + + x86 SIMD extension for IJG JPEG library license + +Copyright 2009 Pierre Ossman for Cendio AB + +Copyright 2010 D. R. Commander + +Based on + +x86 SIMD extension for IJG JPEG library - version 1.02 + +Copyright (C) 1999-2006, MIYASAKA Masaru. + +This software is provided 'as-is', without any express or implied warranty. In +no event will the authors be held liable for any damages arising from the use of +this software. + +Permission is granted to anyone to use this software for any purpose, including +commercial applications, and to alter it and redistribute it freely, subject to +the following restrictions: + +1. The origin of this software must not be misrepresented; you must not claim +that you wrote the original software. If you use this software in a product, an +acknowledgment in the product documentation would be appreciated but is not +required. + +2. Altered source versions must be plainly marked as such, and must not be +misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + + +The Debian packaging is copyright 2007-2020, + Patrick Winnertz , + Daniel Baumann , + Philipp Hug , + Michael Meskes , + Felix Geyer , + Ritesh Raj Sarraf , + Gianfranco Costamagna + and is licensed under the GPL-2+, +see `/usr/share/common-licenses/GPL-2'. diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 00000000..45052a12 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,4 @@ +[DEFAULT] +upstream-branch = upstream +debian-branch = master +pristine-tar = True diff --git a/debian/get-orig-source.sh b/debian/get-orig-source.sh new file mode 100755 index 00000000..c8c95ced --- /dev/null +++ b/debian/get-orig-source.sh @@ -0,0 +1,68 @@ +#!/bin/sh + +set -ex + +if [ $# -ne 2 ]; then + echo "Error: 2 parameters are required." + exit 1 +fi + +if [ "$1" != "--upstream-version" ]; then + echo "Error: First parameter needs to be --upstream-version." + exit 1 +fi + +UPSTREAM_VERSION=$2 +ORIG_TARBALL=`readlink -e ../`/VirtualBox-${UPSTREAM_VERSION}.tar.bz2 + +REAL_TARBALL=`readlink -f ${ORIG_TARBALL}` + +WORKING_DIR=`dirname ${ORIG_TARBALL}` + +ORIG_TARBALL_DFSG=`echo ${ORIG_TARBALL} | sed -e "s/\(${UPSTREAM_VERSION}\)\(\.orig\)/\1-dfsg/g" | sed -e "s/VirtualBox/virtualbox/g"` +ORIG_TARBALL_DIR=`echo ${ORIG_TARBALL_DFSG} | sed -e "s/_\(${UPSTREAM_VERSION}\)/-\1/g" -e "s/\.tar\.bz2//g"` +ORIG_TARBALL_DIR_STRIP=`basename ${ORIG_TARBALL_DIR}` +DEST_TARBALL_NAME=`echo ${ORIG_TARBALL_DIR} | sed -e "s#-\(${UPSTREAM_VERSION}\)#_\1#g"`-dfsg.orig.tar.xz + +mkdir -p ${ORIG_TARBALL_DIR} +tar --directory=${ORIG_TARBALL_DIR} --strip 1 -xjf ${REAL_TARBALL} || exit 1 +rm -f ${ORIG_TARBALL} ${REAL_TARBALL} + +rm -fr ${ORIG_TARBALL_DIR}/debian +rm -fr ${ORIG_TARBALL_DIR}/kBuild +rm -fr ${ORIG_TARBALL_DIR}/tools +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/Additions/os2 +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/Additions/WINNT +rm -f ${ORIG_TARBALL_DIR}/VBox/HostDrivers/Support/darwin/load.sh +rm -f ${ORIG_TARBALL_DIR}/include/VBox/VBoxGuest.inc +rm -f ${ORIG_TARBALL_DIR}/include/VBox/VBoxGuest16.h +rm -f ${ORIG_TARBALL_DIR}/include/VBox/VBoxGuest.mac +rm -f ${ORIG_TARBALL_DIR}/src/libs/xpcom18a4/xpcom/MoreFiles/FSCopyObject.c +rm -f ${ORIG_TARBALL_DIR}/src/libs/xpcom18a4/xpcom/MoreFiles/FSCopyObject.h +rm -fr ${ORIG_TARBALL_DIR}/src/libs/curl* +rm -fr ${ORIG_TARBALL_DIR}/src/libs/libpng* +rm -fr ${ORIG_TARBALL_DIR}/src/libs/openssl* +rm -fr ${ORIG_TARBALL_DIR}/src/libs/libxml2* +rm -fr ${ORIG_TARBALL_DIR}/src/libs/libxslt* +rm -fr ${ORIG_TARBALL_DIR}/src/libs/zlib* +rm -fr ${ORIG_TARBALL_DIR}/src/libs/liblzf* +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/Additions/linux/selinux-fedora +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/Additions/3D/mesa/mesa-* +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/Additions/x11/x11include +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/Additions/x11/x11stubs +rm -fr ${ORIG_TARBALL_DIR}/src/libs/kStuff/kStuff/kLdr/testcase/bin +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/Devices/EFI/Firmware/FatBinPkg/EnhancedFatDxe/AArch64/Fat.efi +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/Devices/EFI/Firmware/FatBinPkg/EnhancedFatDxe/Arm/Fat.efi +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/Devices/EFI/Firmware/FatBinPkg/EnhancedFatDxe/Ebc/Fat.efi +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/Devices/EFI/Firmware/FatBinPkg/EnhancedFatDxe/Ia32/Fat.efi +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/Devices/EFI/Firmware/FatBinPkg/EnhancedFatDxe/Ipf/Fat.efi +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/Devices/EFI/Firmware/FatBinPkg/EnhancedFatDxe/X64/Fat.efi +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Main/Ia32/ftol2.obj +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Dll/sqlite3.dll +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/Main/webservice/jaxlibs/*.jar +rm -fr ${ORIG_TARBALL_DIR}/src/VBox/HostDrivers/Support/win/winstub.com + +tar --exclude .svn --exclude '.git*' --exclude debian --directory ${WORKING_DIR} -cJf ${DEST_TARBALL_NAME} ${ORIG_TARBALL_DIR_STRIP} || exit 1 +rm -rf ${ORIG_TARBALL_DIR} +echo "Done, now you can run gbp import-orig ${DEST_TARBALL_NAME}" +exit 0 diff --git a/debian/lynx-dump-postprocess b/debian/lynx-dump-postprocess new file mode 100755 index 00000000..644e49c0 --- /dev/null +++ b/debian/lynx-dump-postprocess @@ -0,0 +1,51 @@ +#!/usr/bin/perl + +# taken from the exim4 package + +open IN, '<&STDIN'; +#open IN, 'dump'; +{ + local $/; + $content=; +} +close IN; + +($title,$body,$links) = + ($content =~ + /^(.*)\n\s+_+\n\n + (\s+Table\ of\ Contents.*) + (References\n\n\s+1\..*)/sx); + +die unless ($title); + +print "$title\n".'-' x length($title)."\n\n"; + +# Sort out local links. +# The regex might not be entirely accurate. +foreach (split /\n/, $links) { + ($index, $url) = /^\s*(\d+)\. (.+)$/; + if ($url !~ /file:\/\/.*#.*$/) { + $links[$index] = $url; + } +} + +$linkno=0; +# Split paragraphs +foreach (split /\n(?:\s+_+\n)?\n/, $body) { + my $footnote = ''; + my $rest = $_; + while ( $rest =~ /^(.*?)\[(\d+)\](.*)$/s ) { + print $1; + if (defined $links[$2]) { + $linkno++; + print "[$linkno]"; + $footnote.=" $linkno. $links[$2]\n"; + } + $rest = $3; + } + print $rest; + print "\n\n"; + if ($footnote ne '') { + print "$footnote\n"; + } +} diff --git a/debian/manpages/VBoxBalloonCtrl.1 b/debian/manpages/VBoxBalloonCtrl.1 new file mode 100644 index 00000000..5408fff4 --- /dev/null +++ b/debian/manpages/VBoxBalloonCtrl.1 @@ -0,0 +1,55 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6. +.TH VBOXBALLOONCTRL "1" "January 2019" "VBoxBalloonCtrl" "User Commands" +.SH NAME +VBoxBalloonCtrl \- x86 virtualization solution +.SH DESCRIPTION +Oracle VM VirtualBox Watchdog +(C) 2019 Oracle Corporation +All rights reserved. +.SS "Usage:" +.IP +\fI\,/usr/lib/virtualbox/VBoxBalloonCtrl\/\fP [\-v|\-\-verbose] [\-h|\-?|\-\-help] [\-P|\-\-pidfile] +[\-F|\-\-logfile=] [\-R|\-\-logrotate=] [\-S|\-\-logsize=] +[\-I|\-\-loginterval=] +[\-\-balloon\-dec=] [\-\-balloon\-groups=] [\-\-balloon\-inc=] +[\-\-balloon\-interval=] [\-\-balloon\-lower\-limit=] +[\-\-balloon\-max=] +[\-\-apimon\-groups=] +[\-\-apimon\-isln\-response=] [\-\-apimon\-isln\-timeout=] +[\-\-apimon\-resp\-timeout=] +.SH OPTIONS +\fB\-\-background\fR, \fB\-b\fR: Run in background (daemon mode). +\fB\-\-disable\-\fR: Disables a module. See module list for built\-in modules. +\fB\-\-dryrun\fR: Dryrun mode \fB\-\-\fR do not perform any actions. +\fB\-\-help\fR, \fB\-h\fR: Print this help message and exit. +\fB\-\-verbose\fR, \fB\-v\fR: +\fB\-\-pidfile\fR, \fB\-P\fR: Name of the PID file which is created when the daemon was started. +\fB\-\-logfile\fR, \fB\-F\fR: Name of file to write log to (no file). +\fB\-\-logrotate\fR, \fB\-R\fR: Number of log files (0 disables log rotation). +\fB\-\-logsize\fR, \fB\-S\fR: Maximum size of a log file to trigger rotation (bytes). +\fB\-\-loginterval\fR, \fB\-I\fR: Maximum time interval to trigger log rotation (seconds). +\fB\-\-balloon\-dec\fR Sets the ballooning decrement in MB (128 MB). +\fB\-\-balloon\-groups\fR Sets the VM groups for ballooning (all). +\fB\-\-balloon\-inc\fR Sets the ballooning increment in MB (256 MB). +\fB\-\-balloon\-interval\fR Sets the check interval in ms (30 seconds). +\fB\-\-balloon\-lower\-limit\fR Sets the ballooning lower limit in MB (64 MB). +\fB\-\-balloon\-max\fR Sets the balloon maximum limit in MB (0 MB). +.IP +Specifying "0" means disabled ballooning. +.PP +Set "VBoxInternal/Guest/BalloonSizeMax" for a per\-VM maximum ballooning size. +\fB\-\-balloon\-safety\-margin\fR Free memory when deflating a balloon in MB (1024 MB). +\fB\-\-apimon\-groups\fR Sets the VM groups for monitoring (all), +.IP +comma\-separated list. +.SS "--apimon-isln-response Sets the isolation response to one of:" +.TP +none, pause, poweroff, save, shutdown +(none). +.PP +\fB\-\-apimon\-isln\-timeout\fR Sets the isolation timeout in ms (30s). +\fB\-\-apimon\-resp\-timeout\fR Sets the response timeout in ms (30s). +.PP +Use environment variable VBOXBALLOONCTRL_RELEASE_LOG for logging options. +.PP +Valid module names are: balloon, apimon diff --git a/debian/manpages/VBoxClient.1 b/debian/manpages/VBoxClient.1 new file mode 100644 index 00000000..0840be01 --- /dev/null +++ b/debian/manpages/VBoxClient.1 @@ -0,0 +1,43 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6. +.TH VBOXCLIENT "1" "January 2019" "VBoxClient" "User Commands" +.SH NAME +VBoxClient \- x86 virtualization solution +.SH SYNOPSIS +.B VBoxClient +\fI\,--clipboard|--draganddrop|--checkhostversion|--seamless|check3d|--vmsvga|--vmsvga-x11\/\fR[\fI\,-d|--nodaemon\/\fR] +.SH DESCRIPTION +Starts the VirtualBox DRM/X Window System guest services. +.SH OPTIONS +.TP +\fB\-\-clipboard\fR +starts the shared clipboard service +.TP +\fB\-\-draganddrop\fR +starts the drag and drop service +.TP +\fB\-\-checkhostversion\fR +starts the host version notifier service +.TP +\fB\-\-check3d\fR +tests whether 3D pass\-through is enabled +.TP +\fB\-\-seamless\fR +starts the seamless windows service +.TP +\fB\-\-vmsvga\fR +starts VMSVGA dynamic resizing for DRM +.TP +\fB\-\-vmsvga\-x11\fR +starts VMSVGA dynamic resizing for X11 +.TP +\fB\-f\fR, \fB\-\-foreground\fR +run in the foreground (no daemonizing) +.TP +\fB\-d\fR, \fB\-\-nodaemon\fR +continues running as a system service +.TP +\fB\-h\fR, \fB\-\-help\fR +shows this help text +.TP +\fB\-V\fR, \fB\-\-version\fR +shows version information diff --git a/debian/manpages/VBoxControl.8 b/debian/manpages/VBoxControl.8 new file mode 100644 index 00000000..91b432b9 --- /dev/null +++ b/debian/manpages/VBoxControl.8 @@ -0,0 +1,32 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6. +.TH VBOXCONTROL "8" "January 2019" "VBoxControl" "System Administration Utilities" +.SH NAME +VBoxControl \- x86 virtualization solution +.SH DESCRIPTION +Oracle VM VirtualBox Guest Additions Command Line Management Interface +(C) 2008\-2019 Oracle Corporation +All rights reserved. +.PP +Usage: +.PP +VBoxControl [\-V|\-\-version] print version number and exit +VBoxControl \fB\-\-nologo\fR ... suppress the logo +.PP +VBoxControl guestproperty get [\-\-verbose] +VBoxControl guestproperty set [ [\-\-flags ]] +VBoxControl guestproperty delete|unset +VBoxControl guestproperty enumerate [\-\-patterns ] +VBoxControl guestproperty wait +.TP +[\-\-timestamp ] +[\-\-timeout +.PP +VBoxControl sharedfolder list [\-\-automount] +VBoxControl writecoredump +VBoxControl writelog [\-n|\-\-no\-newline] [\-\-] +VBoxControl takesnapshot +VBoxControl savestate +VBoxControl suspend +VBoxControl poweroff +VBoxControl help [command] +VBoxControl version diff --git a/debian/manpages/VBoxHeadless.1 b/debian/manpages/VBoxHeadless.1 new file mode 100644 index 00000000..f75bdd9d --- /dev/null +++ b/debian/manpages/VBoxHeadless.1 @@ -0,0 +1,51 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6. +.TH VBOXHEADLESS "1" "January 2019" "VBoxHeadless" "User Commands" +.SH NAME +VBoxHeadless \- x86 virtualization solution +.SH DESCRIPTION +Oracle VM VirtualBox Headless Interface +(C) 2008\-2019 Oracle Corporation +All rights reserved. +.SS "Usage:" +.TP +\fB\-s\fR, \fB\-startvm\fR, \fB\-\-startvm\fR +Start given VM (required argument) +.TP +\fB\-v\fR, \fB\-vrde\fR, \fB\-\-vrde\fR on|off|config +Enable or disable the VRDE server +or don't change the setting (default) +.TP +\fB\-e\fR, \fB\-vrdeproperty\fR, \fB\-\-vrdeproperty\fR Set a VRDE property: +"TCP/Ports" \- comma\-separated list of +.TP +ports the VRDE server can bind to; dash +between two port numbers specifies range +.TP +"TCP/Address" \- interface IP the VRDE +server will bind to +.TP +\fB\-\-settingspw\fR +Specify the settings password +.TP +\fB\-\-settingspwfile\fR +Specify a file containing the +settings password +.TP +\fB\-start\-paused\fR, \fB\-\-start\-paused\fR +Start the VM in paused state +.TP +\fB\-c\fR, \fB\-record\fR, \fB\-\-record\fR +Record the VM screen output to a file +.TP +\fB\-w\fR, \fB\-\-videowidth\fR +Video frame width when recording +.TP +\fB\-h\fR, \fB\-\-videoheight\fR +Video frame height when recording +.TP +\fB\-r\fR, \fB\-\-videobitrate\fR +Recording bit rate when recording +.TP +\fB\-f\fR, \fB\-\-filename\fR +File name when recording. The codec used +will be chosen based on file extension diff --git a/debian/manpages/VBoxManage.1 b/debian/manpages/VBoxManage.1 new file mode 100644 index 00000000..150c2333 --- /dev/null +++ b/debian/manpages/VBoxManage.1 @@ -0,0 +1,851 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6. +.TH VBOXMANAGE "1" "January 2019" "VBoxManage" "User Commands" +.SH NAME +VBoxManage \- x86 virtualization solution +.SH DESCRIPTION +Oracle VM VirtualBox Command Line Management Interface +(C) 2005\-2019 Oracle Corporation +All rights reserved. +.PP +Usage: +.IP +VBoxManage [] +.PP +General Options: +.TP +[\-v|\-\-version] +print version number and exit +.TP +[\-q|\-\-nologo] +suppress the logo +.TP +[\-\-settingspw ] +provide the settings password +.IP +[\-\-settingspwfile ] provide a file containing the settings password +[@] load arguments from the given response file (bourne style) +.PP +Commands: +.TP +list [\-\-long|\-l] [\-\-sorted|\-s] +vms|runningvms|ostypes|hostdvds|hostfloppies| +.TP +intnets|bridgedifs|hostonlyifs|natnets|dhcpservers| +hostinfo|hostcpuids|hddbackends|hdds|dvds|floppies| +usbhost|usbfilters|systemproperties|extpacks| +groups|webcams|screenshotformats|cloudproviders| +cloudprofiles +.TP +showvminfo + [\-\-details] +[\-\-machinereadable] +.TP +showvminfo + \fB\-\-log\fR +.TP +registervm + +.TP +unregistervm + [\-\-delete] +.TP +createvm +\fB\-\-name\fR +[\-\-groups , ...] +[\-\-ostype ] +[\-\-register] +[\-\-basefolder ] +[\-\-uuid ] +[\-\-default] +.TP +modifyvm + +[\-\-name ] +[\-\-groups , ...] +[\-\-description ] +[\-\-ostype ] +[\-\-iconfile ] +[\-\-memory ] +[\-\-pagefusion on|off] +[\-\-vram ] +[\-\-acpi on|off] +[\-\-pciattach 03:04.0] +[\-\-pciattach 03:04.0@02:01.0] +[\-\-pcidetach 03:04.0] +[\-\-ioapic on|off] +[\-\-hpet on|off] +[\-\-triplefaultreset on|off] +[\-\-apic on|off] +[\-\-x2apic on|off] +[\-\-paravirtprovider none|default|legacy|minimal| +.TP +hyperv|kvm] +[\-\-paravirtdebug [, ...]] +[\-\-hwvirtex on|off] +[\-\-nestedpaging on|off] +[\-\-largepages on|off] +[\-\-vtxvpid on|off] +[\-\-vtxux on|off] +[\-\-pae on|off] +[\-\-longmode on|off] +[\-\-ibpb\-on\-vm\-exit on|off] +[\-\-ibpb\-on\-vm\-entry on|off] +[\-\-spec\-ctrl on|off] +[\-\-l1d\-flush\-on\-sched on|off] +[\-\-l1d\-flush\-on\-vm\-entry on|off] +[\-\-nested\-hw\-virt on|off] +[\-\-cpu\-profile "host|Intel 80[86|286|386]"] +[\-\-cpuid\-portability\-level <0..3> +[\-\-cpuid\-set ] +[\-\-cpuid\-remove ] +[\-\-cpuidremoveall] +[\-\-hardwareuuid ] +[\-\-cpus ] +[\-\-cpuhotplug on|off] +[\-\-plugcpu ] +[\-\-unplugcpu ] +[\-\-cpuexecutioncap <1\-100>] +[\-\-rtcuseutc on|off] +[\-\-graphicscontroller none|vboxvga|vmsvga|vboxsvga] +[\-\-monitorcount ] +[\-\-accelerate3d on|off] +[\-\-accelerate2dvideo on|off] +[\-\-firmware bios|efi|efi32|efi64] +[\-\-chipset ich9|piix3] +[\-\-bioslogofadein on|off] +[\-\-bioslogofadeout on|off] +[\-\-bioslogodisplaytime ] +[\-\-bioslogoimagepath ] +[\-\-biosbootmenu disabled|menuonly|messageandmenu] +[\-\-biosapic disabled|apic|x2apic] +[\-\-biossystemtimeoffset ] +[\-\-biospxedebug on|off] +[\-\-boot<1\-4> none|floppy|dvd|disk|net>] +[\-\-nic<1\-N> none|null|nat|bridged|intnet|hostonly| +.TP +generic|natnetwork] +[\-\-nictype<1\-N> Am79C970A|Am79C973| +.TP +82540EM|82543GC|82545EM| +virtio] +.TP +[\-\-cableconnected<1\-N> on|off] +[\-\-nictrace<1\-N> on|off] +[\-\-nictracefile<1\-N> ] +[\-\-nicproperty<1\-N> name=[value]] +[\-\-nicspeed<1\-N> ] +[\-\-nicbootprio<1\-N> ] +[\-\-nicpromisc<1\-N> deny|allow\-vms|allow\-all] +[\-\-nicbandwidthgroup<1\-N> none|] +[\-\-bridgeadapter<1\-N> none|] +[\-\-hostonlyadapter<1\-N> none|] +[\-\-intnet<1\-N> ] +[\-\-nat\-network<1\-N> ] +[\-\-nicgenericdrv<1\-N> +[\-\-natnet<1\-N> |default] +[\-\-natsettings<1\-N> [],[], +.TP +[],[], +[]] +.TP +[\-\-natpf<1\-N> [],tcp|udp,[], +,[],] +.TP +[\-\-natpf<1\-N> delete ] +[\-\-nattftpprefix<1\-N> ] +[\-\-nattftpfile<1\-N> ] +[\-\-nattftpserver<1\-N> ] +[\-\-natbindip<1\-N> +[\-\-natdnspassdomain<1\-N> on|off] +[\-\-natdnsproxy<1\-N> on|off] +[\-\-natdnshostresolver<1\-N> on|off] +[\-\-nataliasmode<1\-N> default|[log],[proxyonly], +.TP +[sameports]] +[\-\-macaddress<1\-N> auto|] +[\-\-mouse ps2|usb|usbtablet|usbmultitouch] +[\-\-keyboard ps2|usb +[\-\-uart<1\-N> off| ] +[\-\-uartmode<1\-N> disconnected| +.TP +server | +client | +tcpserver | +tcpclient | +file | +] +.TP +[\-\-uarttype<1\-N> 16450|16550A|16750 +[\-\-lpt<1\-N> off| ] +[\-\-lptmode<1\-N> ] +[\-\-guestmemoryballoon ] +[\-\-audio none|null|oss|alsa|pulse] +[\-\-audioin on|off] +[\-\-audioout on|off] +[\-\-audiocontroller ac97|hda|sb16] +[\-\-audiocodec stac9700|ad1980|stac9221|sb16] +[\-\-clipboard disabled|hosttoguest|guesttohost| +.TP +bidirectional] +[\-\-draganddrop disabled|hosttoguest|guesttohost| +.TP +bidirectional] +[\-\-vrde on|off] +[\-\-vrdeextpack default| +[\-\-vrdeproperty ] +[\-\-vrdeport ] +[\-\-vrdeaddress ] +[\-\-vrdeauthtype null|external|guest] +[\-\-vrdeauthlibrary default| +[\-\-vrdemulticon on|off] +[\-\-vrdereusecon on|off] +[\-\-vrdevideochannel on|off] +[\-\-vrdevideochannelquality ] +[\-\-usbohci on|off] +[\-\-usbehci on|off] +[\-\-usbxhci on|off] +[\-\-usbrename ] +[\-\-snapshotfolder default|] +[\-\-teleporter on|off] +[\-\-teleporterport ] +[\-\-teleporteraddress +[\-\-teleporterpassword ] +[\-\-teleporterpasswordfile |stdin] +[\-\-tracing\-enabled on|off] +[\-\-tracing\-config ] +[\-\-tracing\-allow\-vm\-access on|off] +[\-\-usbcardreader on|off] +[\-\-autostart\-enabled on|off] +[\-\-autostart\-delay ] +[\-\-recording on|off] +[\-\-recording screens all| [ ...]] +[\-\-recording filename ] +[\-\-recording videores ] +[\-\-recording videorate ] +[\-\-recording videofps ] +[\-\-recording maxtime ] +[\-\-recording maxfilesize ] +[\-\-recording opts [, ...]] +[\-\-defaultfrontend default|] +.TP +clonevm + +[\-\-snapshot |] +[\-\-mode machine|machineandchildren|all] +[\-\-options link|keepallmacs|keepnatmacs| +.TP +keepdisknames|keephwuuids] +[\-\-name ] +[\-\-groups , ...] +[\-\-basefolder ] +[\-\-uuid ] +[\-\-register] +.TP +movevm + +\fB\-\-type\fR basic +[\-\-folder ] +.TP +import + +[\-\-dry\-run|\-n] +[\-\-options keepallmacs|keepnatmacs|importtovdi] +[more options] +(run with \fB\-n\fR to have options displayed +.IP +for a particular OVF) +.TP +export + \fB\-\-output\fR|\-o . +[\-\-legacy09|\-\-ovf09|\-\-ovf10|\-\-ovf20|\-\-opc10] +[\-\-manifest] +[\-\-iso] +[\-\-options manifest|iso|nomacs|nomacsbutnat] +[\-\-vsys ] +.TP +[\-\-vmname ] +[\-\-product ] +[\-\-producturl ] +[\-\-vendor ] +[\-\-vendorurl ] +[\-\-version ] +[\-\-description ] +[\-\-eula ] +[\-\-eulafile ] +.TP +[\-\-cloud ] +[\-\-vmname ] +[\-\-cloudprofile ] +[\-\-cloudshape ] +[\-\-clouddomain ] +[\-\-clouddisksize ] +[\-\-cloudbucket ] +[\-\-cloudocivcn ] +[\-\-cloudocisubnet ] +[\-\-cloudkeepobject ] +[\-\-cloudlaunchinstance ] +[\-\-cloudpublicip ] +.TP +startvm +... +[\-\-type gui|sdl|headless|separate] +[\-E|\-\-putenv [=]] +.TP +controlvm + +pause|resume|reset|poweroff|savestate| +acpipowerbutton|acpisleepbutton| +keyboardputscancode [ ...]| +keyboardputstring [ ...]| +keyboardputfile | +setlinkstate<1\-N> on|off | +nic<1\-N> null|nat|bridged|intnet|hostonly|generic| +.TP +natnetwork [] | +nictrace<1\-N> on|off | +nictracefile<1\-N> | +nicproperty<1\-N> name=[value] | +nicpromisc<1\-N> deny|allow\-vms|allow\-all | +natpf<1\-N> [],tcp|udp,[], +.TP +,[], | +natpf<1\-N> delete | +guestmemoryballoon | +usbattach |
+.TP +[\-\-capturefile ] | +usbdetach |
| +audioin on|off | +audioout on|off | +clipboard disabled|hosttoguest|guesttohost| +.TP +bidirectional | +draganddrop disabled|hosttoguest|guesttohost| +.TP +bidirectional | +vrde on|off | +vrdeport | +vrdeproperty | +vrdevideochannelquality | +setvideomodehint +.TP +[[] [ | +[ ]]] | +.TP +setscreenlayout on|primary | off +screenshotpng [display] | +recording on|off | +recording screens all|none|,[...] | +recording filename | +recording videores x | +recording videorate | +recording videofps | +recording maxtime | +recording maxfilesize | +setcredentials +.TP +\fB\-\-passwordfile\fR | + +[\-\-allowlocallogon ] | +.TP +teleport \fB\-\-host\fR \fB\-\-port\fR +[\-\-maxdowntime ] +[\-\-passwordfile | +.TP +\fB\-\-password\fR ] | +plugcpu | +unplugcpu | +cpuexecutioncap <1\-100> +webcam | | +addencpassword +.TP +|\- +[\-\-removeonsuspend ] +.TP +removeencpassword +removeallencpasswords +changeuartmode<1\-N> disconnected| +.TP +server | +client | +tcpserver | +tcpclient | +file | +] +.TP +discardstate + +.TP +adoptstate + +.TP +snapshot + +take [\-\-description ] [\-\-live] +.TP +[\-\-uniquename Number,Timestamp,Space,Force] | +delete | +restore | +restorecurrent | +edit |\-\-current +.TP +[\-\-name ] +[\-\-description ] | +.TP +list [\-\-details|\-\-machinereadable] | +showvminfo +.TP +closemedium +[disk|dvd|floppy] +[\-\-delete] +.TP +storageattach + +\fB\-\-storagectl\fR +[\-\-port ] +[\-\-device ] +[\-\-type dvddrive|hdd|fdd] +[\-\-medium none|emptydrive|additions| +.TP +|host:|iscsi] +[\-\-mtype normal|writethrough|immutable|shareable| +.TP +readonly|multiattach] +[\-\-comment ] +[\-\-setuuid ] +[\-\-setparentuuid ] +[\-\-passthrough on|off] +[\-\-tempeject on|off] +[\-\-nonrotational on|off] +[\-\-discard on|off] +[\-\-hotpluggable on|off] +[\-\-bandwidthgroup ] +[\-\-forceunmount] +[\-\-server |] +[\-\-target ] +[\-\-tport ] +[\-\-lun ] +[\-\-encodedlun ] +[\-\-username ] +[\-\-password ] +[\-\-passwordfile ] +[\-\-initiator ] +[\-\-intnet] +.TP +storagectl + +\fB\-\-name\fR +[\-\-add ide|sata|scsi|floppy|sas|usb|pcie] +[\-\-controller LSILogic|LSILogicSAS|BusLogic| +.TP +IntelAHCI|PIIX3|PIIX4|ICH6|I82078| +[ USB|NVMe] +[\-\-portcount <1\-n>] +[\-\-hostiocache on|off] +[\-\-bootable on|off] +[\-\-rename ] +[\-\-remove] +.TP +bandwidthctl + +add \fB\-\-type\fR disk|network +.TP +\fB\-\-limit\fR [k|m|g|K|M|G] | +set +.TP +\fB\-\-limit\fR [k|m|g|K|M|G] | +remove | +list [\-\-machinereadable] +(limit units: k=kilobit, m=megabit, g=gigabit, +.IP +K=kilobyte, M=megabyte, G=gigabyte) +.TP +showmediuminfo +[disk|dvd|floppy] +.TP +createmedium +[disk|dvd|floppy] \fB\-\-filename\fR +[\-\-size |\-\-sizebyte ] +[\-\-diffparent | +[\-\-format VDI|VMDK|VHD] (default: VDI) +[\-\-variant Standard,Fixed,Split2G,Stream,ESX, +.IP +Formatted] +.TP +modifymedium +[disk|dvd|floppy] +[\-\-type normal|writethrough|immutable|shareable| +.TP +readonly|multiattach] +[\-\-autoreset on|off] +[\-\-property ] +[\-\-compact] +[\-\-resize |\-\-resizebyte ] +[\-\-move ] +[\-\-setlocation ] +[\-\-description ] +.TP +clonemedium +[disk|dvd|floppy] +[\-\-format VDI|VMDK|VHD|RAW|] +[\-\-variant Standard,Fixed,Split2G,Stream,ESX] +[\-\-existing] +.TP +mediumproperty +[disk|dvd|floppy] set + +.TP +[disk|dvd|floppy] get + +.TP +[disk|dvd|floppy] delete + +.TP +encryptmedium + +[\-\-newpassword |\-] +[\-\-oldpassword |\-] +[\-\-cipher ] +[\-\-newpasswordid ] +.TP +checkmediumpwd + +|\- +.TP +convertfromraw + +[\-\-format VDI|VMDK|VHD] +[\-\-variant Standard,Fixed,Split2G,Stream,ESX] +[\-\-uuid ] +.TP +convertfromraw +stdin +[\-\-format VDI|VMDK|VHD] +[\-\-variant Standard,Fixed,Split2G,Stream,ESX] +[\-\-uuid ] +.TP +getextradata +global| +|[enumerate] +.TP +setextradata +global| + +[] (no value deletes key) +.TP +setproperty +machinefolder default| | +hwvirtexclusive on|off | +vrdeauthlibrary default| | +websrvauthlibrary default|null| | +vrdeextpack null| | +autostartdbpath null| | +loghistorycount +defaultfrontend default| +logginglevel +proxymode system|noproxy|manual +proxyurl +.TP +usbfilter +add +\fB\-\-target\fR |global +\fB\-\-name\fR +\fB\-\-action\fR ignore|hold (global filters only) +[\-\-active yes|no] (yes) +[\-\-vendorid ] (null) +[\-\-productid ] (null) +[\-\-revision ] (null) +[\-\-manufacturer ] (null) +[\-\-product ] (null) +[\-\-remote yes|no] (null, VM filters only) +[\-\-serialnumber ] (null) +[\-\-maskedinterfaces ] +.TP +usbfilter +modify +\fB\-\-target\fR |global +[\-\-name ] +[\-\-action ignore|hold] (global filters only) +[\-\-active yes|no] +[\-\-vendorid |""] +[\-\-productid |""] +[\-\-revision |""] +[\-\-manufacturer |""] +[\-\-product |""] +[\-\-remote yes|no] (null, VM filters only) +[\-\-serialnumber |""] +[\-\-maskedinterfaces ] +.TP +usbfilter +remove +\fB\-\-target\fR |global +.TP +sharedfolder +add +\fB\-\-name\fR \fB\-\-hostpath\fR +[\-\-transient] [\-\-readonly] [\-\-automount] +.TP +sharedfolder +remove +\fB\-\-name\fR [\-\-transient] +.TP +guestproperty +get + [\-\-verbose] +.TP +guestproperty +set + [ [\-\-flags ]] +.TP +guestproperty +delete|unset + +.TP +guestproperty +enumerate +[\-\-patterns ] +.TP +guestproperty +wait +[\-\-timeout ] [\-\-fail\-on\-timeout] +.TP +guestcontrol + [\-\-verbose|\-v] [\-\-quiet|\-q] +.TP +[\-\-username ] [\-\-domain ] +[\-\-passwordfile | \fB\-\-password\fR ] +.TP +run [common\-options] +[\-\-exe ] [\-\-timeout ] +[\-E|\-\-putenv [=]] [\-\-unquoted\-args] +[\-\-ignore\-operhaned\-processes] [\-\-profile] +[\-\-no\-wait\-stdout|\-\-wait\-stdout] +[\-\-no\-wait\-stderr|\-\-wait\-stderr] +[\-\-dos2unix] [\-\-unix2dos] +\fB\-\-\fR [argument1] ... [argumentN]] +.TP +start [common\-options] +[\-\-exe ] [\-\-timeout ] +[\-E|\-\-putenv [=]] [\-\-unquoted\-args] +[\-\-ignore\-operhaned\-processes] [\-\-profile] +\fB\-\-\fR [argument1] ... [argumentN]] +.TP +copyfrom [common\-options] +[\-\-follow] [\-R|\-\-recursive] + [guest\-src1 [...]] +.TP +copyfrom [common\-options] +[\-\-follow] [\-R|\-\-recursive] +[\-\-target\-directory ] + [guest\-src1 [...]] +.TP +copyto [common\-options] +[\-\-follow] [\-R|\-\-recursive] + [host\-src1 [...]] +.TP +copyto [common\-options] +[\-\-follow] [\-R|\-\-recursive] +[\-\-target\-directory ] + [host\-src1 [...]] +.TP +mkdir|createdir[ectory] [common\-options] +[\-\-parents] [\-\-mode ] + [...] +.TP +rmdir|removedir[ectory] [common\-options] +[\-R|\-\-recursive] + [...] +.TP +removefile|rm [common\-options] [\-f|\-\-force] + [...] +.TP +mv|move|ren[ame] [common\-options] + [source1 [...]] +.TP +mktemp|createtemp[orary] [common\-options] +[\-\-secure] [\-\-mode ] [\-\-tmpdir ] +