Hello community, here is the log from the commit of package pcsc-lite for openSUSE:Factory checked in at Wed Apr 6 10:41:54 CEST 2011.
-------- --- pcsc-lite/pcsc-lite.changes 2011-03-07 15:50:20.000000000 +0100 +++ /mounts/work_src_done/STABLE/pcsc-lite/pcsc-lite.changes 2011-04-05 11:49:47.000000000 +0200 @@ -1,0 +2,12 @@ +Tue Apr 5 09:37:24 UTC 2011 - [email protected] + +- Updated to version 1.7.2: + * use libudev only on Linux and libusb elsewhere + * Try to use a (CCID) class driver if a specific driver fails + to use the reader. + * add support of multi-interfaces readers with libusb + * fix a problem with a multi-slots reader + * some other minor improvements and bug corrections +- cosmetic changes to init script output + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- pcsc-lite-1.6.6.tar.bz2 New: ---- pcsc-lite-1.7.2.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pcsc-lite.spec ++++++ --- /var/tmp/diff_new_pack.oBispM/_old 2011-04-06 10:35:59.000000000 +0200 +++ /var/tmp/diff_new_pack.oBispM/_new 2011-04-06 10:35:59.000000000 +0200 @@ -22,18 +22,22 @@ # FIXME: Maybe we should use /usr/lib/pcsc/drivers as others do: %define ifddir %{_libdir}/readers BuildRequires: pkg-config readline-devel -%if %suse_version >= 1110 +%if %suse_version >= 1120 +BuildRequires: libudev-devel +%endif +%if %suse_version == 1110 BuildRequires: libusb-1_0-devel -%else +%endif +%if %suse_version < 1110 BuildRequires: hal-devel %endif -Version: 1.6.6 -Release: 6 +Version: 1.7.2 +Release: 1 PreReq: %{insserv_prereq} %{fillup_prereq} Group: Productivity/Security License: BSD3c(or similar) Url: http://pcsclite.alioth.debian.org/ -Summary: PCS Smart Cards Library +Summary: PCSC Smart Cards Library Source: %{name}-%{version}.tar.bz2 Source1: %{name}.sysconfig Source2: README.SUSE @@ -67,15 +71,6 @@ This functionality is exercised in the driver. - -Authors: --------- - David Corcoran <[email protected]> - Ludovic Rousseau <[email protected]> - Damien Sauveron <[email protected]> - Carlos Prados <[email protected]> - Antti Tapaninen <[email protected]> - %package -n libpcsclite1 License: BSD3c(or similar) Group: System/Libraries @@ -99,15 +94,6 @@ This functionality is exercised in the driver. - -Authors: --------- - David Corcoran <[email protected]> - Ludovic Rousseau <[email protected]> - Damien Sauveron <[email protected]> - Carlos Prados <[email protected]> - Antti Tapaninen <[email protected]> - %package devel License: BSD3c(or similar) Group: Development/Libraries/C and C++ @@ -119,15 +105,6 @@ compile plugins for the pcsc-lite package. - -Authors: --------- - David Corcoran <[email protected]> - Ludovic Rousseau <[email protected]> - Damien Sauveron <[email protected]> - Carlos Prados <[email protected]> - Antti Tapaninen <[email protected]> - %prep %setup -q cp -a %{S:1} %{S:2} %{S:5} %{S:6} . @@ -140,13 +117,18 @@ --docdir=%{_docdir}/%{name}\ --enable-usbdropdir=%{ifddir}\ %if %suse_version >= 1110 - --disable-libhal\ + --disable-libhal \ +%endif +%if %suse_version == 1110 + --disable-libudev \ %endif --disable-static make %{?jobs:-j%jobs} %install %makeinstall +mkdir -p $RPM_BUILD_ROOT%{ifddir} +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/reader.conf.d/ sed s:@ifddir@:%{ifddir}: <pcsc-lite-reader-conf >$RPM_BUILD_ROOT%{_sysconfdir}/reader.conf.d/reader.conf # this program is noinst in the package install src/.libs/testpcsc $RPM_BUILD_ROOT%{_sbindir}/ ++++++ README.SUSE ++++++ --- /var/tmp/diff_new_pack.oBispM/_old 2011-04-06 10:35:59.000000000 +0200 +++ /var/tmp/diff_new_pack.oBispM/_new 2011-04-06 10:35:59.000000000 +0200 @@ -1,2 +1,2 @@ -On SUSE Linux, drivers for various card readers can be found +On openSUSE, drivers for various card readers can be found in separate packages named pcsc-<drivername> ++++++ pcsc-lite-1.6.6.tar.bz2 -> pcsc-lite-1.7.2.tar.bz2 ++++++ ++++ 4212 lines of diff (skipped) ++++++ pcsc-lite-init ++++++ --- /var/tmp/diff_new_pack.oBispM/_old 2011-04-06 10:36:00.000000000 +0200 +++ /var/tmp/diff_new_pack.oBispM/_new 2011-04-06 10:36:00.000000000 +0200 @@ -17,7 +17,7 @@ # Required-Stop: $local_fs $remote_fs $syslog # Should-Start: udev hal openct # Should-Stop: udev hal openct -# Default-Start: 2 3 5 +# Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Daemon to access a smart card using PC/SC # Description: The PC/SC smart card daemon is a resource manager for the @@ -46,21 +46,19 @@ fi start() { - echo -n $"Starting PC/SC smart card daemon ($prog): " + echo -n "Starting PC/SC smart card daemon ($prog): " startproc $exec $PCSCD_OPTIONS retval=$? rc_status - echo [ $retval -eq 0 ] && touch $lockfile rc_status -v } stop() { - echo -n $"Stopping PC/SC smart card daemon ($prog): " + echo -n "Stopping PC/SC smart card daemon ($prog): " killproc $exec retval=$? rc_status - echo - [ $retval -eq 0 ] && rm -f $lockfile + [ $retval -eq 0 ] && rm -f $lockfile && rm -f /var/run/pcscd/* rc_status -v } restart() { @@ -77,6 +75,7 @@ restart ;; status) + echo -n "Checking for PC/SC smart card daemon ($prog): " checkproc $exec rc_status -v ;; ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
