1
0
forked from pool/cdemu-daemon
Jan Engelhardt 2013-06-09 14:38:45 +00:00 committed by Git OBS Bridge
parent 8a6e58692f
commit a9faa0f711
5 changed files with 28 additions and 12 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:71ebabddfb12bfe3eaeeb2321457d8f78a667b341094054432ee70c484e6f5a3
size 62444

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8224a5d8d16cbd9a2294e9c7ab544d61059d9870023e48705699af7366846580
size 62540

View File

@ -1,3 +1,20 @@
-------------------------------------------------------------------
Sun Jun 9 14:37:29 UTC 2013 - jengelh@inai.de
- Update to new upstream release 2.1.0
* Use non-blocking I/O on VHBA control device, implemented device
restart on kernel/userspace I/O errors
* Added support for device addition/removal. To preserve device
numbering, devices can only be appended, and only the last device
can be removed.
* Auto-started daemon now creates only a single device by default.
* Fixed device ID reported by INQUIRY, where last letters were
missing
* Session autostart script now uses "default" instead of "pulse"
for audio driver.
* If audio device initialization fails, fallback to "null" instead
of just stopping the playback thread.
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Apr 13 21:03:26 UTC 2013 - jengelh@inai.de Sat Apr 13 21:03:26 UTC 2013 - jengelh@inai.de

View File

@ -17,7 +17,7 @@
Name: cdemu-daemon Name: cdemu-daemon
Version: 2.0.0 Version: 2.1.0
Release: 0 Release: 0
Summary: Device daemon for cdemu, a virtual CD-ROM device emulator Summary: Device daemon for cdemu, a virtual CD-ROM device emulator
License: GPL-2.0+ License: GPL-2.0+
@ -27,20 +27,19 @@ Url: http://cdemu.sf.net/
#Freecode-URL: https://freecode.com/projects/cdemu-for-linux #Freecode-URL: https://freecode.com/projects/cdemu-for-linux
#Git-Clone: git://git.code.sf.net/p/cdemu/code #Git-Clone: git://git.code.sf.net/p/cdemu/code
#DL-URL: http://downloads.sf.net/cdemu/%name-%version.tar.bz2 #DL-URL: http://downloads.sf.net/cdemu/%name-%version.tar.bz2
Source: %name-%version.tar.xz Source: http://downloads.sf.net/cdemu/%name-%version.tar.bz2
Source3: cdemu-daemon.sysconfig Source3: cdemu-daemon.sysconfig
Patch1: logfile.diff Patch1: logfile.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: cmake >= 2.8.5 BuildRequires: cmake >= 2.8.5
BuildRequires: pkgconfig BuildRequires: pkgconfig
BuildRequires: xz
BuildRequires: pkgconfig(ao) >= 0.8.0 BuildRequires: pkgconfig(ao) >= 0.8.0
BuildRequires: pkgconfig(gio-2.0) >= 2.28 BuildRequires: pkgconfig(gio-2.0) >= 2.28
BuildRequires: pkgconfig(glib-2.0) >= 2.28 BuildRequires: pkgconfig(glib-2.0) >= 2.28
BuildRequires: pkgconfig(gmodule-2.0) >= 2.28 BuildRequires: pkgconfig(gmodule-2.0) >= 2.28
BuildRequires: pkgconfig(gobject-2.0) >= 2.28 BuildRequires: pkgconfig(gobject-2.0) >= 2.28
BuildRequires: pkgconfig(gthread-2.0) >= 2.28 BuildRequires: pkgconfig(gthread-2.0) >= 2.28
BuildRequires: pkgconfig(libmirage) >= 2.0.0 BuildRequires: pkgconfig(libmirage) >= 2.1.0
%description %description
cdemu-daemon receives SCSI commands from kernel module thorugh the cdemu-daemon receives SCSI commands from kernel module thorugh the
@ -54,7 +53,7 @@ The daemon registers itself on D-BUS's system or session bus
that can be used by clients to control it. that can be used by clients to control it.
%prep %prep
%setup -Tcqa0 %setup -q
%patch -P 1 -p1 %patch -P 1 -p1
%build %build

View File

@ -2,13 +2,13 @@
system/cdemu-daemon-system.sh | 2 +- system/cdemu-daemon-system.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-) 1 file changed, 1 insertion(+), 1 deletion(-)
Index: cdemu-daemon-1.5.0/system/cdemu-daemon-system.sh Index: cdemu-daemon-2.1.0/system/cdemu-daemon-system.sh
=================================================================== ===================================================================
--- cdemu-daemon-1.5.0.orig/system/cdemu-daemon-system.sh --- cdemu-daemon-2.1.0.orig/system/cdemu-daemon-system.sh
+++ cdemu-daemon-1.5.0/system/cdemu-daemon-system.sh +++ cdemu-daemon-2.1.0/system/cdemu-daemon-system.sh
@@ -6,7 +6,7 @@ @@ -6,7 +6,7 @@
# Default settings # Default settings
NUM_DEVICES=2 NUM_DEVICES=1
AUDIO_DRIVER=null AUDIO_DRIVER=null
-LOG_FILE=/tmp/cdemu-daemon.log -LOG_FILE=/tmp/cdemu-daemon.log
+LOG_FILE=/var/log/cdemu-daemon.log +LOG_FILE=/var/log/cdemu-daemon.log