[Pkg-virtualbox-commits] r49 - trunk/debian
pwinnertz-guest at alioth.debian.org
pwinnertz-guest at alioth.debian.org
Wed Sep 19 21:53:06 UTC 2007
Author: pwinnertz-guest
Date: 2007-09-19 21:53:06 +0000 (Wed, 19 Sep 2007)
New Revision: 49
Added:
trunk/debian/README.Debian
trunk/debian/virtualbox-ose.postrm
Modified:
trunk/debian/changelog
trunk/debian/rules
Log:
Fix some bugs from bts
Added: trunk/debian/README.Debian
===================================================================
--- trunk/debian/README.Debian (rev 0)
+++ trunk/debian/README.Debian 2007-09-19 21:53:06 UTC (rev 49)
@@ -0,0 +1,13 @@
+Due to compatibility issues between version 1.4.0-svn4130 and 1.5.x the configuration files
+are incompatible.
+
+In order to fix this issue please delete the complete
+
+ <Uart>
+ <Port .... />
+ <Port ... />
+ </Uart>
+
+section in the xml file.
+
+ -- Patrick Winnertz <patrick.winnertz at skolelinux.org> Wed, 19 Sep 2007 23:29:32 +0200
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2007-09-08 10:48:50 UTC (rev 48)
+++ trunk/debian/changelog 2007-09-19 21:53:06 UTC (rev 49)
@@ -1,3 +1,15 @@
+virtualbox-ose (1.5.0-dfsg2-2) unstable; urgency=low
+
+ * 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 in binary-dep only binary-dep and in binary-indep only binary-indep
+ packages.
+ * Added postrm to virtualbox-ose in order to remove the vboxusers group on
+ purge. (Closes: #442396)
+
+ -- Patrick Winnertz <patrick.winnertz at skolelinux.org> Wed, 19 Sep 2007 23:37:16 +0200
+
virtualbox-ose (1.5.0-dfsg2-1) unstable; urgency=low
* Improved README.Debian for virtualbox-ose-source (Closes: #440793 )
Modified: trunk/debian/rules
===================================================================
--- trunk/debian/rules 2007-09-08 10:48:50 UTC (rev 48)
+++ trunk/debian/rules 2007-09-19 21:53:06 UTC (rev 49)
@@ -158,38 +158,37 @@
dh_clean -k
binary-arch: build install
- dh_testdir
- dh_testroot
- dh_installchangelogs
- dh_installdocs
- dh_install
- dh_link
- dh_strip
- dh_compress
- dh_fixperms -X=/usr/lib/virtualbox/VBox.sh
- dh_installudev
- dh_installdeb
- dh_shlibdeps
- dh_gencontrol
- dh_md5sums
- dh_builddeb
+ dh_testdir -a
+ dh_testroot -a
+ dh_installchangelogs -a
+ dh_installdocs -a
+ dh_install -a
+ dh_link -a
+ dh_strip -a
+ dh_compress -a
+ dh_fixperms -X=/usr/lib/virtualbox/VBox.sh -a
+ dh_installudev -a
+ dh_installdeb -a
+ dh_shlibdeps -a
+ dh_gencontrol -a
+ dh_md5sums -a
+ dh_builddeb -a
-#binary-indep: build install
-# dh_testdir#
-# dh_testroot
-# dh_installchangelogs
-# dh_installdocs
-# dh_install
-# dh_installmenu
-# dh_installman
-# dh_link
-# dh_strip
-# dh_compress
-# dh_fixperms
-# dh_shlibdeps
-# dh_gencontrol
-# dh_md5sums
-# dh_builddeb
+binary-indep: build install
+ dh_testdir -i
+ dh_testroot -i
+ dh_installchangelogs -i
+ dh_installdocs -i
+ dh_install -i
+ dh_installmenu -i
+ dh_installman -i
+ dh_link -i
+ dh_compress -i
+ dh_fixperms -i
+ dh_shlibdeps -i
+ dh_gencontrol -i
+ dh_md5sums -i
+ dh_builddeb -i
-binary: binary-arch
-.PHONY: build clean binary-arch binary install binary-modules kdist kdist_configure kdist_image kdist_clean
+binary: binary-arch binary-indep
+.PHONY: build clean binary-arch binary-indep binary install binary-modules kdist kdist_configure kdist_image kdist_clean
Added: trunk/debian/virtualbox-ose.postrm
===================================================================
--- trunk/debian/virtualbox-ose.postrm (rev 0)
+++ trunk/debian/virtualbox-ose.postrm 2007-09-19 21:53:06 UTC (rev 49)
@@ -0,0 +1,19 @@
+#!/bin/sh -e
+
+action="$1"
+oldversion="$2"
+
+remove_vboxusers_group() {
+ if ! getent group vboxusers >/dev/null; then
+ delgroup --quiet --system vboxusers
+ fi
+}
+
+if [ "$action" == purge ]; then
+ remove_vboxusers_group ();
+fi
+
+
+#DEBHELPER#
+
+exit 0
More information about the Pkg-virtualbox-commits
mailing list