Hello community, here is the log from the commit of package cdemu-daemon for openSUSE:Factory checked in at 2017-02-16 17:04:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cdemu-daemon (Old) and /work/SRC/openSUSE:Factory/.cdemu-daemon.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cdemu-daemon" Changes: -------- --- /work/SRC/openSUSE:Factory/cdemu-daemon/cdemu-daemon.changes 2016-01-26 10:15:04.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.cdemu-daemon.new/cdemu-daemon.changes 2017-02-16 17:04:19.470014489 +0100 @@ -1,0 +2,7 @@ +Mon Feb 6 19:51:31 UTC 2017 - [email protected] + +- Update to new upstream release 3.0.5 + * Only updates for other distros +- New udev rules using the "uaccess" method + +------------------------------------------------------------------- Old: ---- cdemu-daemon-3.0.4.tar.bz2 New: ---- cdemu-daemon-3.0.5.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cdemu-daemon.spec ++++++ --- /var/tmp/diff_new_pack.UVYrqP/_old 2017-02-16 17:04:20.429878678 +0100 +++ /var/tmp/diff_new_pack.UVYrqP/_new 2017-02-16 17:04:20.437877546 +0100 @@ -1,7 +1,7 @@ # # spec file for package cdemu-daemon # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: cdemu-daemon -Version: 3.0.4 +Version: 3.0.5 Release: 0 Summary: Device daemon for cdemu, a virtual CD-ROM device emulator License: GPL-2.0+ ++++++ 60-vhba.rules ++++++ --- /var/tmp/diff_new_pack.UVYrqP/_old 2017-02-16 17:04:20.473872453 +0100 +++ /var/tmp/diff_new_pack.UVYrqP/_new 2017-02-16 17:04:20.477871888 +0100 @@ -1 +1,2 @@ -KERNEL=="vhba_ctl", NAME="%k", MODE="0660", OWNER="root", GROUP="cdrom" +#KERNEL=="vhba_ctl", NAME="%k", MODE="0660", OWNER="root", GROUP="cdrom" +KERNEL=="vhba_ctl", SUBSYSTEM=="misc", TAG+="uaccess" ++++++ cdemu-daemon-3.0.4.tar.bz2 -> cdemu-daemon-3.0.5.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cdemu-daemon-3.0.4/CMakeLists.txt new/cdemu-daemon-3.0.5/CMakeLists.txt --- old/cdemu-daemon-3.0.4/CMakeLists.txt 2015-12-21 22:45:13.000000000 +0100 +++ new/cdemu-daemon-3.0.5/CMakeLists.txt 2016-10-09 21:06:41.000000000 +0200 @@ -4,7 +4,7 @@ project (cdemu-daemon C) # Versioning -set (CDEMU_DAEMON_VERSION 3.0.4) +set (CDEMU_DAEMON_VERSION 3.0.5) set (CDEMU_DAEMON_INTERFACE_VERSION_MAJOR 7) set (CDEMU_DAEMON_INTERFACE_VERSION_MINOR 0) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cdemu-daemon-3.0.4/README new/cdemu-daemon-3.0.5/README --- old/cdemu-daemon-3.0.4/README 2015-12-21 22:45:13.000000000 +0100 +++ new/cdemu-daemon-3.0.5/README 2016-10-09 21:06:41.000000000 +0200 @@ -1,5 +1,5 @@ CDEmu Daemon -3.0.4 +3.0.5 ~~~~~ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cdemu-daemon-3.0.4/debian/cdemu-daemon.postinst new/cdemu-daemon-3.0.5/debian/cdemu-daemon.postinst --- old/cdemu-daemon-3.0.4/debian/cdemu-daemon.postinst 2015-12-21 22:45:13.000000000 +0100 +++ new/cdemu-daemon-3.0.5/debian/cdemu-daemon.postinst 2016-10-09 21:06:41.000000000 +0200 @@ -14,21 +14,14 @@ } case "$1" in - configure) - # Set permissions on cdemu daemon - dpkg-statoverride --update --add root cdrom 755 "/usr/bin/cdemu-daemon" || myerror "Adding statoverride failed." - ;; - - abort-upgrade|abort-remove|abort-deconfigure) + configure|abort-upgrade|abort-remove|abort-deconfigure) ;; *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 + myerror "postinst called with unknown argument '$1'" ;; esac #DEBHELPER# exit 0 - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cdemu-daemon-3.0.4/debian/cdemu-daemon.prerm new/cdemu-daemon-3.0.5/debian/cdemu-daemon.prerm --- old/cdemu-daemon-3.0.4/debian/cdemu-daemon.prerm 2015-12-21 22:45:13.000000000 +0100 +++ new/cdemu-daemon-3.0.5/debian/cdemu-daemon.prerm 2016-10-09 21:06:41.000000000 +0200 @@ -17,21 +17,16 @@ remove|upgrade|deconfigure) # Kill any session instances of cdemu-daemon running. pkill -KILL "^cdemu-daemon$" && mywarning "Killed running daemon instances." - - # Unset permissions on cdemu daemon - dpkg-statoverride --remove "/usr/bin/cdemu-daemon" || myerror "Removing statoverride failed." ;; failed-upgrade) ;; *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 + myerror "prerm called with unknown argument '$1'" ;; esac #DEBHELPER# exit 0 - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cdemu-daemon-3.0.4/debian/changelog new/cdemu-daemon-3.0.5/debian/changelog --- old/cdemu-daemon-3.0.4/debian/changelog 2015-12-21 22:45:13.000000000 +0100 +++ new/cdemu-daemon-3.0.5/debian/changelog 2016-10-09 21:06:41.000000000 +0200 @@ -1,13 +1,3 @@ -cdemu-daemon (3.0.4-1) debian; urgency=low - * Updated to 3.0.4 - -- Rok Mandeljc <[email protected]> Mon, 21 Dec 2015 12:00:00 +0100 - -cdemu-daemon (3.0.3-1) debian; urgency=low - * Updated to 3.0.3 - * Discontinue setting GID on the executable. - -- Rok Mandeljc <[email protected]> Sat, 21 Nov 2015 12:00:00 +0100 - -cdemu-daemon (3.0.2-1) debian; urgency=low - * 01-dbus-config.diff: Patch D-BUS configuration. +cdemu-daemon (3.0.5-1) debian; urgency=low * Initial Release. Closes: #705409 - -- Henrik Stokseth <[email protected]> Sat, 05 Apr 2014 12:00:00 +0100 + -- Henrik Stokseth <[email protected]> Sat, 05 Apr 2014 12:00:00 +0100 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cdemu-daemon-3.0.4/debian/control new/cdemu-daemon-3.0.5/debian/control --- old/cdemu-daemon-3.0.4/debian/control 2015-12-21 22:45:13.000000000 +0100 +++ new/cdemu-daemon-3.0.5/debian/control 2016-10-09 21:06:41.000000000 +0200 @@ -2,10 +2,10 @@ Section: misc Priority: optional Homepage: http://cdemu.sourceforge.net/ -Maintainer: Henrik Stokseth <[email protected]> +Maintainer: Henrik Stokseth <[email protected]> Build-Depends: libglib2.0-dev (>= 2.28), libao-dev (>= 0.8.0), libmirage10-dev (>= 3.0.0), debhelper (>= 9), cmake (>= 2.8.5) -Standards-Version: 3.9.5 +Standards-Version: 3.9.7 Package: cdemu-daemon diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cdemu-daemon-3.0.4/debian/copyright new/cdemu-daemon-3.0.5/debian/copyright --- old/cdemu-daemon-3.0.4/debian/copyright 2015-12-21 22:45:13.000000000 +0100 +++ new/cdemu-daemon-3.0.5/debian/copyright 2016-10-09 21:06:41.000000000 +0200 @@ -1,4 +1,4 @@ -This package was debianized by Henrik Stokseth <henrik AT hw0 DOT org> on +This package was debianized by Henrik Stokseth <[email protected]> on Mon, 24 Des 2007 12:00:00 +0100. It was downloaded from: http://cdemu.sourceforge.net/ @@ -32,6 +32,6 @@ On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL'. -The Debian packaging is (C) 2007, Henrik Stokseth <henrik AT hw0 DOT org> and +The Debian packaging is (C) 2007, Henrik Stokseth <[email protected]> and is licensed under the GPL, see above.
