522338d
Name:           pcsc-lite
34c0c97
Version:        1.9.0
545c0b1
Release:        2%{?dist}
522338d
Summary:        PC/SC Lite smart card framework and applications
522338d
522338d
License:        BSD
5dac192
URL:            https://pcsclite.apdu.fr/
5dac192
Source0:        https://pcsclite.apdu.fr/files/%{name}-%{version}.tar.bz2
5dac192
Source1:        https://pcsclite.apdu.fr/files/%{name}-%{version}.tar.bz2.asc
Nikos Mavrogiannopoulos 8384791
Source2:	gpgkey-F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E.gpg
Nikos Mavrogiannopoulos 8384791
Source3:	org.debian.pcsc-lite.policy
522338d
522338d
BuildRequires:  doxygen
Kalev Lember 85c0568
BuildRequires:  graphviz
9022291
BuildRequires:  systemd-devel
2faeee9
BuildRequires:  /usr/bin/pod2man
Nikos Mavrogiannopoulos db032e0
BuildRequires:  polkit-devel
Nikos Mavrogiannopoulos db032e0
BuildRequires:  autoconf
Nikos Mavrogiannopoulos db032e0
BuildRequires:  automake
Nikos Mavrogiannopoulos db032e0
BuildRequires:  gettext-devel
Nikos Mavrogiannopoulos db032e0
BuildRequires:  libtool
485d777
BuildRequires:  gnupg2
485d777
BuildRequires:  gcc
a616919
BuildRequires:  python3-devel
a616919
BuildRequires:  /usr/bin/pathfix.py
305f583
65d9e94
Requires(post): systemd
65d9e94
Requires(preun): systemd
65d9e94
Requires(postun): systemd
522338d
Requires:       pcsc-ifd-handler
22e7fa6
Requires:       %{name}-libs = %{version}-%{release}
0a2e4db
Requires:       polkit
a616919
Requires:       python3
0a2e4db
Recommends:     pcsc-lite-ccid
4a4a855
# This is bundled in upstream withou simple way to remove
4a4a855
Provides:       bundled(simclist) = 1.6
Nikos Mavrogiannopoulos 8f731c0
522338d
522338d
%description
522338d
The purpose of PC/SC Lite is to provide a Windows(R) SCard interface
522338d
in a very small form factor for communicating to smartcards and
522338d
readers.  PC/SC Lite uses the same winscard API as used under
522338d
Windows(R).  This package includes the PC/SC Lite daemon, a resource
522338d
manager that coordinates communications with smart card readers and
522338d
smart cards that are connected to the system, as well as other command
522338d
line tools.
522338d
522338d
%package        libs
522338d
Summary:        PC/SC Lite libraries
522338d
522338d
%description    libs
522338d
PC/SC Lite libraries.
522338d
522338d
%package        devel
522338d
Summary:        PC/SC Lite development files
522338d
Requires:       %{name}-libs = %{version}-%{release}
522338d
522338d
%description    devel
522338d
PC/SC Lite development files.
522338d
522338d
%package        doc
522338d
Summary:        PC/SC Lite developer documentation
22e7fa6
BuildArch:      noarch
a270ae0
Requires:       %{name}-libs = %{version}-%{release}
522338d
522338d
%description    doc
522338d
%{summary}.
522338d
522338d
522338d
%prep
Nikos Mavrogiannopoulos 8384791
gpgv2 --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0}
Nikos Mavrogiannopoulos 8384791
522338d
%setup -q
df1c7ae
df1c7ae
# Convert to utf-8
df1c7ae
for file in ChangeLog; do
df1c7ae
    iconv -f ISO-8859-1 -t UTF-8 -o $file.new $file && \
df1c7ae
    touch -r $file $file.new && \
df1c7ae
    mv $file.new $file
df1c7ae
done
df1c7ae
522338d
522338d
%build
522338d
%configure \
522338d
  --disable-static \
Nikos Mavrogiannopoulos db032e0
  --enable-polkit \
522338d
  --enable-usbdropdir=%{_libdir}/pcsc/drivers
c5ce1b9
%make_build
522338d
doxygen doc/doxygen.conf ; rm -f doc/api/*.{map,md5}
a616919
pathfix.py -pni "%{__python3} %{py3_shbang_opts}" src/spy/pcsc-spy
522338d
522338d
522338d
%install
c5ce1b9
%make_install
Nikos Mavrogiannopoulos db032e0
rm -f $RPM_BUILD_ROOT%{_datadir}/polkit-1/actions/org.debian.pcsc-lite.policy
Nikos Mavrogiannopoulos db032e0
Nikos Mavrogiannopoulos db032e0
mkdir -p $RPM_BUILD_ROOT%{_datadir}/polkit-1/actions/
Nikos Mavrogiannopoulos 8384791
install -p -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_datadir}/polkit-1/actions/
522338d
Kalev Lember 87ca806
# Create empty directories
Kalev Lember 87ca806
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/reader.conf.d
Kalev Lember 6369ed8
mkdir -p $RPM_BUILD_ROOT%{_libdir}/pcsc/drivers
98d53e9
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/run/pcscd
Kalev Lember 87ca806
22e7fa6
rm $RPM_BUILD_ROOT%{_libdir}/*.la
522338d
854751f
# Remove documentation installed in a wrong directory
854751f
rm $RPM_BUILD_ROOT%{_docdir}/pcsc-lite/README.DAEMON
854751f
522338d
522338d
%post
65d9e94
%systemd_post pcscd.socket pcscd.service
0546644
# If install, test if pcscd socket is enabled.
0546644
# If enabled, then attempt to start it. This will silently fail
0546644
# in chroots or other environments where services aren't expected
0546644
# to be started.
0546644
if [ $1 -eq 1 ] ; then
0546644
   if systemctl -q is-enabled pcscd.socket > /dev/null 2>&1 ; then
0546644
      systemctl start pcscd.socket > /dev/null 2>&1 || :
0546644
   fi
0546644
fi
522338d
522338d
%preun
65d9e94
%systemd_preun pcscd.socket pcscd.service
522338d
522338d
%postun
65d9e94
%systemd_postun_with_restart pcscd.socket pcscd.service
305f583
99d0851
%ldconfig_scriptlets libs
522338d
522338d
522338d
%files
5dac192
%doc AUTHORS ChangeLog HELP README SECURITY TODO
Nikos Mavrogiannopoulos 5d49035
%doc doc/README.polkit
522338d
%dir %{_sysconfdir}/reader.conf.d/
305f583
%{_unitdir}/pcscd.service
305f583
%{_unitdir}/pcscd.socket
522338d
%{_sbindir}/pcscd
Kalev Lember 6369ed8
%dir %{_libdir}/pcsc/
Kalev Lember 6369ed8
%dir %{_libdir}/pcsc/drivers/
522338d
%{_mandir}/man5/reader.conf.5*
522338d
%{_mandir}/man8/pcscd.8*
Nikos Mavrogiannopoulos db032e0
%{_datadir}/polkit-1/actions/org.debian.pcsc-lite.policy
98d53e9
%ghost %dir %{_localstatedir}/run/pcscd/
522338d
522338d
%files libs
0a2e4db
%license COPYING
522338d
%{_libdir}/libpcsclite.so.*
522338d
522338d
%files devel
0c8cc15
%{_bindir}/pcsc-spy
522338d
%{_includedir}/PCSC/
522338d
%{_libdir}/libpcsclite.so
0c8cc15
%{_libdir}/libpcscspy.so*
522338d
%{_libdir}/pkgconfig/libpcsclite.pc
0c8cc15
%{_mandir}/man1/pcsc-spy.1*
522338d
522338d
%files doc
7a3e313
%doc doc/api/ doc/example/pcsc_demo.c
522338d
522338d
522338d
%changelog
545c0b1
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-2
545c0b1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
545c0b1
34c0c97
* Mon Jun 15 2020 Jakub Jelen <jjelen@redhat.com> - 1.9.0-1
34c0c97
- New upstream release (#1846925)
34c0c97
60cd4f2
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.26-2
60cd4f2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
60cd4f2
dd12aed
* Mon Jan 20 2020 Jakub Jelen <jjelen@redhat.com> - 1.8.26-1
dd12aed
- New upstream release
dd12aed
1e8301e
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.25-2
1e8301e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
1e8301e
86feaee
* Fri Apr 05 2019 Jakub Jelen <jjelen@redhat.com> - 1.8.25-1
86feaee
- New upstream release (#1692559)
86feaee
- Fix memory leak in SCardEstablishContextTH() (#1684674)
86feaee
- Enable socket activation after installation (#1545027)
86feaee
5aaa51e
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.24-2
5aaa51e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
5aaa51e
5dac192
* Tue Nov 20 2018 Jakub Jelen <jjelen@redhat.com> - 1.8.24-1
5dac192
- New upstream release (#1651353)
5dac192
485d777
* Mon Jul 23 2018 Jakub Jelen <jjelen@redhat.com> - 1.8.23-4
485d777
- Add missing dependencies (#1605389)
485d777
dcbc608
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.23-3
dcbc608
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
dcbc608
98725a4
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.23-2
98725a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
98725a4
Nikos Mavrogiannopoulos b06a170
* Tue Dec 19 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.23-1
Nikos Mavrogiannopoulos b06a170
- New upstream release
Nikos Mavrogiannopoulos b06a170
3c8db3b
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.22-3
3c8db3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
3c8db3b
8e98e84
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.22-2
8e98e84
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8e98e84
Nikos Mavrogiannopoulos 110b879
* Tue Jun 27 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.22-1
Nikos Mavrogiannopoulos 110b879
- New upstream release
Nikos Mavrogiannopoulos 110b879
743ef34
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.20-2
743ef34
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
743ef34
Nikos Mavrogiannopoulos 6cc7490
* Mon Jan  2 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.20-1
Nikos Mavrogiannopoulos 6cc7490
- New upstream release
Nikos Mavrogiannopoulos 6cc7490
Nikos Mavrogiannopoulos 6cc7490
* Fri Dec  9 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.19-1
Nikos Mavrogiannopoulos e1953a4
- New upstream release
Nikos Mavrogiannopoulos e1953a4
Nikos Mavrogiannopoulos cf14e86
* Wed Nov 30 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.18-1
Nikos Mavrogiannopoulos cf14e86
- New upstream release
Nikos Mavrogiannopoulos cf14e86
0a2e4db
* Thu Jun 30 2016 Ville Skyttä <ville.skytta@iki.fi> - 1.8.17-2
0a2e4db
- Add dependency on polkit
0a2e4db
- Mark COPYING as %%license
0a2e4db
- Fix bogus dates in %%changelog
0a2e4db
Nikos Mavrogiannopoulos 62987aa
* Tue Jun 21 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.17-1
Nikos Mavrogiannopoulos 62987aa
- New upstream release
Nikos Mavrogiannopoulos 62987aa
Nikos Mavrogiannopoulos c1be910
* Fri Apr  1 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.16-1
Nikos Mavrogiannopoulos c1be910
- New upstream release (#1319539)
Nikos Mavrogiannopoulos 8384791
- Added gpg key verification as part of build process
Nikos Mavrogiannopoulos c1be910
ecb7364
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.15-2
ecb7364
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
ecb7364
Nikos Mavrogiannopoulos 92b3d28
* Mon Jan 11 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.15-1
Nikos Mavrogiannopoulos 92b3d28
- New upstream release (#1294262)
Nikos Mavrogiannopoulos 92b3d28
Nikos Mavrogiannopoulos 8f731c0
* Wed Nov 18 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.14-2
Nikos Mavrogiannopoulos 8f731c0
- Recommend pcsc-lite-ccid package (#1280447)
Nikos Mavrogiannopoulos 8f731c0
Nikos Mavrogiannopoulos 7a798a0
* Wed Aug  5 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.14-1
Nikos Mavrogiannopoulos 7a798a0
- New upstream release
Nikos Mavrogiannopoulos 7a798a0
e24da49
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.13-2
e24da49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
e24da49
Nikos Mavrogiannopoulos 317ff32
* Fri Nov  7 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.13-1
Nikos Mavrogiannopoulos 317ff32
- New upstream release
Nikos Mavrogiannopoulos 317ff32
Nikos Mavrogiannopoulos 855a3e5
* Wed Sep 24 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.12-1
Nikos Mavrogiannopoulos 855a3e5
- New upstream release (#1079514)
Nikos Mavrogiannopoulos 855a3e5
2bbca3d
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.11-3
2bbca3d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2bbca3d
261a8be
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.11-2
261a8be
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
261a8be
Nikos Mavrogiannopoulos 94e15f1
* Tue Jun 03 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.11-1
Nikos Mavrogiannopoulos 94e15f1
- New upstream release
Nikos Mavrogiannopoulos 7ca80f4
- Safer usage of libudev functions
Nikos Mavrogiannopoulos 7ca80f4
Nikos Mavrogiannopoulos 5d49035
* Tue Mar 11 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.10-3
Nikos Mavrogiannopoulos 5d49035
- The default installed polkit policy allows console users to access
Nikos Mavrogiannopoulos 5d49035
  smart cards. Non-interactive or remote usage now requires admin
Nikos Mavrogiannopoulos 5d49035
  rights, or a specific policy (see README.polkit)
Nikos Mavrogiannopoulos 5d49035
Nikos Mavrogiannopoulos db032e0
* Tue Feb 11 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.10-2
Nikos Mavrogiannopoulos db032e0
- Added upstream patch to support polkit
Nikos Mavrogiannopoulos db032e0
- Force sanity of parameters received by the client
Nikos Mavrogiannopoulos db032e0
f62bc28
* Sun Oct 20 2013 Kalev Lember <kalevlember@gmail.com> - 1.8.10-1
f62bc28
- Update to 1.8.10
61ab4c2
- Update source URL
8d28bb2
- Drop large ChangeLog.svn from %%doc
f62bc28
5270dae
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.8-2
5270dae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
5270dae
804118d
* Thu Feb 28 2013 Kalev Lember <kalevlember@gmail.com> - 1.8.8-1
804118d
- Update to 1.8.8
65d9e94
- Use new systemd macros (#850264)
804118d
cfdac56
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.7-2
cfdac56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
cfdac56
f65bb4f
* Fri Nov 30 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.7-1
f65bb4f
- Update to 1.8.7
f65bb4f
09427f5
* Tue Sep 18 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.6-1
09427f5
- Update to 1.8.6
09427f5
bbf6ba7
* Mon Aug 06 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.5-1
bbf6ba7
- Update to 1.8.5
bbf6ba7
0f2defb
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.4-2
0f2defb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
0f2defb
9616084
* Tue Jun 26 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.4-1
9616084
- Update to 1.8.4
9616084
9022291
* Thu Jun 14 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.3-2
9022291
- Rebuild for new libudev (#831987)
9022291
d16ee7d
* Fri Mar 30 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.3-1
d16ee7d
- Update to 1.8.3
d16ee7d
0c8cc15
* Mon Feb 06 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.2-1
0c8cc15
- Update to 1.8.2
0c8cc15
- Drop the systemd support patches which are now upstreamed
0c8cc15
- Package the new pcsc-spay tool in -devel subpackage
0c8cc15
58a491a
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.4-7
58a491a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
58a491a
96a526a
* Mon Oct 10 2011 Kalev Lember <kalevlember@gmail.com> - 1.7.4-6
96a526a
- Remove the automatic card power down disabling patch again;
96a526a
  no longer needed with latest libusb1 1.0.9 rc1 (#737988)
96a526a
2c48e8d
* Fri Sep 16 2011 Kalev Lember <kalevlember@gmail.com> - 1.7.4-5
2c48e8d
- Reapply the patch to disable automatic card power down (#737988)
2c48e8d
fd30a60
* Sun Sep 04 2011 Kalev Lember <kalevlember@gmail.com> - 1.7.4-4
fd30a60
- Ignore errors from 'systemctl enable' (#734852)
fd30a60
98d53e9
* Sat Aug 20 2011 Kalev Lember <kalevlember@gmail.com> - 1.7.4-3
98d53e9
- Use /var/run/pcscd for ipc directory (#722449)
98d53e9
305f583
* Fri Jul 15 2011 Kalev Lember <kalevlember@gmail.com> - 1.7.4-2
305f583
- Converted initscript to systemd service file (#617330)
305f583
Kalev Lember b194beb
* Fri Jun 24 2011 Kalev Lember <kalev@smartlink.ee> - 1.7.4-1
Kalev Lember b194beb
- Update to 1.7.4
Kalev Lember b194beb
Kalev Lember 9d606c8
* Wed Jun 22 2011 Kalev Lember <kalev@smartlink.ee> - 1.7.3-1
Kalev Lember 9d606c8
- Update to 1.7.3
Kalev Lember 9d606c8
- Dropped upstreamed patches
Kalev Lember 9d606c8
- Dropped the lib64 rpath patch; pcsc-lite now uses system libtool
Kalev Lember 99341b7
- Cleaned up the spec file for modern rpmbuild
Kalev Lember 9d606c8
Kalev Lember 2803499
* Wed May 25 2011 Kalev Lember <kalev@smartlink.ee> - 1.7.2-2
Kalev Lember 2803499
- Don't fill log files with repeating messages (#657658, #707412)
Kalev Lember 2803499
Kalev Lember cafc7d6
* Thu Mar 31 2011 Kalev Lember <kalev@smartlink.ee> - 1.7.2-1
Kalev Lember cafc7d6
- Update to 1.7.2
Kalev Lember cafc7d6
Kalev Lember 96fd0e9
* Wed Mar 30 2011 Kalev Lember <kalev@smartlink.ee> - 1.7.1-1
Kalev Lember 96fd0e9
- Update to 1.7.1
Kalev Lember 96fd0e9
Kalev Lember 6369ed8
* Thu Mar 17 2011 Kalev Lember <kalev@smartlink.ee> - 1.7.0-2
Kalev Lember 6369ed8
- Explicitly create and own drivers directory
Kalev Lember 6369ed8
Kalev Lember d7b5fb0
* Wed Mar 09 2011 Kalev Lember <kalev@smartlink.ee> - 1.7.0-1
Kalev Lember d7b5fb0
- Update to 1.7.0
Kalev Lember d7b5fb0
- Use libudev for hotplugging instead of hal
Kalev Lember d7b5fb0
Kalev Lember 87ca806
* Fri Feb 25 2011 Kalev Lember <kalev@smartlink.ee> - 1.6.7-1
Kalev Lember 87ca806
- Update to 1.6.7
Kalev Lember 87ca806
- Rebased noautostart patch
Kalev Lember 87ca806
3ea230d
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.6-3
3ea230d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
3ea230d
Kalev Lember ab22f81
* Mon Dec 13 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.6-2
Kalev Lember ab22f81
- Disabled automatic card power down which seems to be unreliable at this point
Kalev Lember ab22f81
Kalev Lember 44d0838
* Mon Dec 13 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.6-1
Kalev Lember 44d0838
- Update to 1.6.6
Kalev Lember 44d0838
Kalev Lember 7d47f6f
* Mon Dec 13 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.4-2
Kalev Lember 7d47f6f
- Disabled pcscd on-demand startup (#653903)
Kalev Lember 7d47f6f
Kalev Lember 1b7cef5
* Sun Aug 15 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.4-1
Kalev Lember 1b7cef5
- Update to 1.6.4
Kalev Lember 85c0568
- Buildrequire graphviz for apidoc generation
Kalev Lember 1b7cef5
Kalev Lember 6c6652d
* Wed Aug 04 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.2-1
Kalev Lember 6c6652d
- Update to 1.6.2
Kalev Lember 6c6652d
- Dropped upstreamed patches
Kalev Lember 6e6ca79
- Removed configure --disable-dependency-tracking option which is the
Kalev Lember 6e6ca79
  default with configure macro.
Kalev Lember 6c6652d
a270ae0
* Thu Jul 08 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.1-5
a270ae0
- Include COPYING in libs subpackage as per new licensing guidelines
a270ae0
09072f5
* Mon Jul 05 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.1-4
09072f5
- Patch to fix crash with empty config directory
09072f5
69dd293
* Sun Jul 04 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.1-3
69dd293
- Patch to fix config dir handling
69dd293
7558b70
* Sun Jul 04 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.1-2
7558b70
- Removed call to non-existent update-reader.conf in init script
7558b70
df1c7ae
* Fri Jun 18 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.1-1
df1c7ae
- Update to 1.6.1
df1c7ae
e119734
* Tue Apr 13 2010 Kalev Lember <kalev@smartlink.ee> - 1.5.5-4
e119734
- Fix init script start / stop priorities (#580322)
e119734
- Don't require pkgconfig as the dep is now automatically generated by rpm
e119734
2ad567d
* Wed Mar 03 2010 Kalev Lember <kalev@smartlink.ee> - 1.5.5-3
2ad567d
- Added patch to fix init script LSB header (#565241)
2ad567d
- Dropped BR: libusb-devel as configure script really picks up libhal instead
2ad567d
- Use %%global instead of %%define
2ad567d
22e7fa6
* Mon Dec 21 2009 Kalev Lember <kalev@smartlink.ee> - 1.5.5-2
22e7fa6
- Require -libs subpackage from main pcsc-lite package
22e7fa6
- Build -doc subpackage as noarch
22e7fa6
- Dropped --enable-runpid configure option which was removed in 1.4.99
22e7fa6
- Dropped obsolete provides
22e7fa6
- Spec file cleanup
22e7fa6
e75935f
* Wed Nov 18 2009 Kalev Lember <kalev@smartlink.ee> - 1.5.5-1
e75935f
- Updated to pcsc-lite 1.5.5
e75935f
- Rebased rpath64 patch
e75935f
- Dropped upstreamed pcsc-lite-1.5-permissions.patch
e75935f
42f4edf
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.2-3
42f4edf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
42f4edf
d2c31d2
* Wed Jun 17 2009 Bob Relyea <rrelyea@redhat.com> - 1.5.2-2
d2c31d2
- Pick up security fixes from upstream
d2c31d2
a5baa06
* Fri Feb 27 2009 Bob Relyea <rrelyea@redhat.com> - 1.5.2-1
a5baa06
- Pick up 1.5.2
a5baa06
- Add FD_CLOEXEC flag
a5baa06
- make reader.conf a noreplace config file
a5baa06
511dec3
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.102-5
511dec3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
511dec3
f36140c
* Wed Feb 11 2009 Karsten Hopp <karsten@redhat.com> 1.4.102-4
f36140c
- remove excludearch s390, s390x (#467788)
f36140c
  even though s390 does not have libusb or smartCards, the libusb
f36140c
  packages are required to build other packages.
f36140c
0a2e4db
* Thu Aug 28 2008 Bob Relyea <rrelyea@redhat.com> - 1.4.102-3
6fdec05
- bump tag becaue the build system can't deal with mistakes.
6fdec05
0a2e4db
* Thu Aug 28 2008 Bob Relyea <rrelyea@redhat.com> - 1.4.102-2
c79a97c
- mock build changes
c79a97c
0a2e4db
* Thu Aug 28 2008 Bob Relyea <rrelyea@redhat.com> - 1.4.102-1
758d6fa
- Pick up 1.4.102
758d6fa
0a2e4db
* Tue May 6 2008 Bob Relyea <rrelyea@redhat.com> - 1.4.101-1
758d6fa
- Pick up 1.4.101
758d6fa
a91d7f2
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.4.4-3
a91d7f2
- Autorebuild for GCC 4.3
a91d7f2
0222d2c
* Wed Jan 16 2008 Bob Relyea <rrelyea@redhat.com> - 1.4.4-2
0222d2c
- Silence libpcsc-lite even when the daemon isn't running.
0222d2c
- fix typo in init file which prevents the config file from being read.
0222d2c
0a2e4db
* Thu Nov 22 2007 Bob Relyea <rrelyea@redhat.com> - 1.4.4-1
7a3e313
- Pick up 1.4.4
7a3e313
a1831e8
* Tue Feb 06 2007 Bob Relyea <rrelyea@redhat.com> - 1.3.3-1
a1831e8
- Pick up 1.3.3
a1831e8
ce8f2d5
* Thu Nov 02 2006 Bob Relyea <rrelyea@redhat.com> - 1.3.2-1
ce8f2d5
- Pick up 1.3.2
ce8f2d5
18a6010
* Thu Sep 14 2006  Bob Relyea <rrelyea@redhat.com> - 1.3.1-7
18a6010
- Incorporate patch from Ludovic to stop the pcsc daemon from
18a6010
  unnecessarily waking up.
18a6010
d18bb69
* Mon Jul 31 2006 Ray Strode <rstrode@redhat.com> - 1.3.1-6
d18bb69
- follow packaging guidelines for setting up init service
d18bb69
  (bug 200778)
d18bb69
0a2e4db
* Mon Jul 24 2006 Bob Relyea <rrelyea@redhat.com> - 1.3.1-5
7e84d9b
- start pcscd when pcsc-lite is installed
7e84d9b
Florian La Roche eba0750
* Sun Jul 16 2006 Florian La Roche <laroche@redhat.com> - 1.3.1-4
Florian La Roche eba0750
- fix excludearch line
Florian La Roche eba0750
Florian La Roche eba0750
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.3.1-3.1
33eef38
- rebuild
33eef38
ba21390
* Mon Jul 10 2006 Bob Relyea <rrelyea@redhat.com> - 1.3.1-3
ba21390
- remove s390 from the build
ba21390
522338d
* Mon Jun 5 2006 Bob Relyea <rrelyea@redhat.com> - 1.3.1-2
522338d
- Move to Fedora Core. 
522338d
- Remove dependency on graphviz. 
522338d
- Removed %%{_dist}
522338d
522338d
* Sat Apr 22 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.3.1-1
522338d
- 1.3.1.
522338d
522338d
* Sun Mar  5 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.3.0-1
522338d
- 1.3.0, init script and reader.conf updater included upstream.
522338d
- Split developer docs into a -doc subpackage, include API docs.
522338d
- libmusclecard no longer included, split into separate package upstream.
522338d
522338d
* Mon Feb 13 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.2.0-14
522338d
- Avoid standard rpaths on multilib archs.
522338d
- Fine tune dependencies.
522338d
522338d
* Fri Nov 11 2005 Ville Skyttä <ville.skytta at iki.fi> - 1.2.0-13
522338d
- Don't ship static libraries.
522338d
- Don't mark the init script as a config file.
522338d
- Use rm instead of %%exclude.
522338d
- Specfile cleanups.
522338d
522338d
* Thu May 19 2005 Ville Skyttä <ville.skytta at iki.fi> - 1.2.0-12
522338d
- Rebuild.
522338d
0a2e4db
* Thu Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.2.0-11
522338d
- rebuilt
522338d
522338d
* Tue Aug 17 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-10
522338d
- Disable dependency tracking to speed up the build.
522338d
- Drop reader.conf patch, it's not needed any more.
522338d
- Rename update-reader-conf to update-reader.conf for consistency with Debian,
522338d
  and improve it a bit.
522338d
522338d
* Sat Jul 31 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.9
522338d
- Add update-reader-conf, thanks to Fritz Elfert.
522338d
522338d
* Thu Jul  1 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.8
522338d
- Own the %%{_libdir}/pcsc hierarchy.
522338d
522338d
* Thu May 13 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.7
522338d
- Make main package require pcsc-ifd-handler (idea from Debian).
522338d
522338d
* Wed May 12 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.6
522338d
- Improve package summary.
522338d
- Improvements based on suggestions from Ludovic Rousseau:
522338d
  - Don't install pcsc_demo but do include its source in -devel.
522338d
  - Sync reader.conf with current upstream CVS HEAD (better docs, less
522338d
    intrusive in USB-only setups where it's not needed).
522338d
522338d
* Fri Apr 16 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.5
522338d
- Move PDF API docs to -devel.
522338d
- Improve main package and init script descriptions.
522338d
522338d
* Thu Jan 29 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.4
522338d
- Init script fine tuning.
522338d
522338d
* Fri Jan  9 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.3
522338d
- BuildRequires libusb-devel 0.1.6 or newer.
522338d
522338d
* Thu Oct 30 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.2
522338d
- s/pkgconfi/pkgconfig/ in -devel requirements.
522338d
522338d
* Tue Oct 28 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.1
522338d
- Update to 1.2.0.
522338d
- Add libpcsc-lite and libmusclecard provides to -libs and -devel.
522338d
522338d
* Thu Oct 16 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.0.2.rc3
522338d
- Update to 1.2.0-rc3.
522338d
- Trivial init script improvements.
522338d
- Enable %%{_smp_mflags}.
522338d
- Don't bother trying to enable SCF.
522338d
522338d
* Sun Sep 14 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.0.2.rc2
522338d
- Specfile cleanups.
522338d
522338d
* Fri Sep  5 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.0.1.rc2
522338d
- Update to 1.2.0-rc2.
522338d
522338d
* Wed Aug 27 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.0.1.rc1
522338d
- Update to 1.2.0-rc1.
522338d
522338d
* Sun Jun  1 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.1.2-0.fdr.0.1.beta5
522338d
- Update to 1.1.2beta5.
522338d
522338d
* Sat May 24 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.1.2-0.fdr.0.1.beta4
522338d
- First build, based on PLD's 1.1.1-2.