Accepting request 66063 from home:wrosenauer:devel

OBS-URL: https://build.opensuse.org/request/show/66063
OBS-URL: https://build.opensuse.org/package/show/security:chipcard/pcsc-lite?expand=0&rev=43
This commit is contained in:
Wolfgang Rosenauer 2011-04-05 18:42:13 +00:00 committed by Git OBS Bridge
parent 9c63d3c558
commit 9bd02c279a
6 changed files with 36 additions and 43 deletions

View File

@ -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> in separate packages named pcsc-<drivername>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7a94c27ae687619435b29ad63e0561aca20413333187b4301c75d1a1547ceea8
size 480232

3
pcsc-lite-1.7.2.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:41f13d552eaa2c3978fbb6f2125e81903a0767011d999052fd1a6ee03880b398
size 484630

View File

@ -17,7 +17,7 @@
# Required-Stop: $local_fs $remote_fs $syslog # Required-Stop: $local_fs $remote_fs $syslog
# Should-Start: udev hal openct # Should-Start: udev hal openct
# Should-Stop: udev hal openct # Should-Stop: udev hal openct
# Default-Start: 2 3 5 # Default-Start: 2 3 4 5
# Default-Stop: 0 1 6 # Default-Stop: 0 1 6
# Short-Description: Daemon to access a smart card using PC/SC # Short-Description: Daemon to access a smart card using PC/SC
# Description: The PC/SC smart card daemon is a resource manager for the # Description: The PC/SC smart card daemon is a resource manager for the
@ -46,21 +46,19 @@ if [ -f /etc/sysconfig/pcscd ] ; then
fi fi
start() { start() {
echo -n $"Starting PC/SC smart card daemon ($prog): " echo -n "Starting PC/SC smart card daemon ($prog): "
startproc $exec $PCSCD_OPTIONS startproc $exec $PCSCD_OPTIONS
retval=$? retval=$?
rc_status rc_status
echo
[ $retval -eq 0 ] && touch $lockfile [ $retval -eq 0 ] && touch $lockfile
rc_status -v rc_status -v
} }
stop() { stop() {
echo -n $"Stopping PC/SC smart card daemon ($prog): " echo -n "Stopping PC/SC smart card daemon ($prog): "
killproc $exec killproc $exec
retval=$? retval=$?
rc_status rc_status
echo [ $retval -eq 0 ] && rm -f $lockfile && rm -f /var/run/pcscd/*
[ $retval -eq 0 ] && rm -f $lockfile
rc_status -v rc_status -v
} }
restart() { restart() {
@ -77,6 +75,7 @@ case "$1" in
restart restart
;; ;;
status) status)
echo -n "Checking for PC/SC smart card daemon ($prog): "
checkproc $exec checkproc $exec
rc_status -v rc_status -v
;; ;;

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Tue Apr 5 09:37:24 UTC 2011 - wr@rosenauer.org
- 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
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 14:44:11 UTC 2011 - coolo@novell.com Mon Mar 7 14:44:11 UTC 2011 - coolo@novell.com

View File

@ -22,18 +22,22 @@ Name: pcsc-lite
# FIXME: Maybe we should use /usr/lib/pcsc/drivers as others do: # FIXME: Maybe we should use /usr/lib/pcsc/drivers as others do:
%define ifddir %{_libdir}/readers %define ifddir %{_libdir}/readers
BuildRequires: pkg-config readline-devel 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 BuildRequires: libusb-1_0-devel
%else %endif
%if %suse_version < 1110
BuildRequires: hal-devel BuildRequires: hal-devel
%endif %endif
Version: 1.6.6 Version: 1.7.2
Release: 6 Release: 1
PreReq: %{insserv_prereq} %{fillup_prereq} PreReq: %{insserv_prereq} %{fillup_prereq}
Group: Productivity/Security Group: Productivity/Security
License: BSD3c(or similar) License: BSD3c(or similar)
Url: http://pcsclite.alioth.debian.org/ Url: http://pcsclite.alioth.debian.org/
Summary: PCS Smart Cards Library Summary: PCSC Smart Cards Library
Source: %{name}-%{version}.tar.bz2 Source: %{name}-%{version}.tar.bz2
Source1: %{name}.sysconfig Source1: %{name}.sysconfig
Source2: README.SUSE Source2: README.SUSE
@ -67,15 +71,6 @@ an APDU like manner sent normally through the SCardTransmit() function.
This functionality is exercised in the driver. This functionality is exercised in the driver.
Authors:
--------
David Corcoran <corcoran@linuxnet.com>
Ludovic Rousseau <ludovic.rousseau@free.fr>
Damien Sauveron <sauveron@labri.fr>
Carlos Prados <cprados@yahoo.com>
Antti Tapaninen <aet@cc.hut.fi>
%package -n libpcsclite1 %package -n libpcsclite1
License: BSD3c(or similar) License: BSD3c(or similar)
Group: System/Libraries Group: System/Libraries
@ -99,15 +94,6 @@ an APDU like manner sent normally through the SCardTransmit() function.
This functionality is exercised in the driver. This functionality is exercised in the driver.
Authors:
--------
David Corcoran <corcoran@linuxnet.com>
Ludovic Rousseau <ludovic.rousseau@free.fr>
Damien Sauveron <sauveron@labri.fr>
Carlos Prados <cprados@yahoo.com>
Antti Tapaninen <aet@cc.hut.fi>
%package devel %package devel
License: BSD3c(or similar) License: BSD3c(or similar)
Group: Development/Libraries/C and C++ Group: Development/Libraries/C and C++
@ -119,15 +105,6 @@ This package contains the development files for pcsc-lite. It allows to
compile plugins for the pcsc-lite package. compile plugins for the pcsc-lite package.
Authors:
--------
David Corcoran <corcoran@linuxnet.com>
Ludovic Rousseau <ludovic.rousseau@free.fr>
Damien Sauveron <sauveron@labri.fr>
Carlos Prados <cprados@yahoo.com>
Antti Tapaninen <aet@cc.hut.fi>
%prep %prep
%setup -q %setup -q
cp -a %{S:1} %{S:2} %{S:5} %{S:6} . cp -a %{S:1} %{S:2} %{S:5} %{S:6} .
@ -140,13 +117,18 @@ ACLOCAL="aclocal -I m4" autoreconf -f -i
--docdir=%{_docdir}/%{name}\ --docdir=%{_docdir}/%{name}\
--enable-usbdropdir=%{ifddir}\ --enable-usbdropdir=%{ifddir}\
%if %suse_version >= 1110 %if %suse_version >= 1110
--disable-libhal\ --disable-libhal \
%endif
%if %suse_version == 1110
--disable-libudev \
%endif %endif
--disable-static --disable-static
make %{?jobs:-j%jobs} make %{?jobs:-j%jobs}
%install %install
%makeinstall %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 sed s:@ifddir@:%{ifddir}: <pcsc-lite-reader-conf >$RPM_BUILD_ROOT%{_sysconfdir}/reader.conf.d/reader.conf
# this program is noinst in the package # this program is noinst in the package
install src/.libs/testpcsc $RPM_BUILD_ROOT%{_sbindir}/ install src/.libs/testpcsc $RPM_BUILD_ROOT%{_sbindir}/