|
|
098a45 |
%global upstream_build 4235
|
|
|
098a45 |
|
|
|
098a45 |
Name: pcsc-lite
|
|
|
098a45 |
Version: 1.8.23
|
|
|
098a45 |
Release: 3%{?dist}
|
|
|
098a45 |
Summary: PC/SC Lite smart card framework and applications
|
|
|
098a45 |
|
|
|
098a45 |
Group: System Environment/Daemons
|
|
|
098a45 |
License: BSD
|
|
|
098a45 |
URL: http://pcsclite.alioth.debian.org/
|
|
|
098a45 |
Source0: https://alioth.debian.org/frs/download.php/file/%{upstream_build}/%{name}-%{version}.tar.bz2
|
|
|
098a45 |
Source1: https://alioth.debian.org/frs/download.php/file/%{upstream_build}/%{name}-%{version}.tar.bz2.asc
|
|
|
098a45 |
Source2: gpgkey-F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E.gpg
|
|
|
098a45 |
Source3: org.debian.pcsc-lite.policy
|
|
|
098a45 |
Patch1: pcsc-lite-1.8.23-maxreaders.patch
|
|
|
098a45 |
|
|
|
098a45 |
BuildRequires: doxygen
|
|
|
098a45 |
BuildRequires: graphviz
|
|
|
098a45 |
BuildRequires: systemd-devel
|
|
|
098a45 |
BuildRequires: /usr/bin/pod2man
|
|
|
098a45 |
BuildRequires: polkit-devel
|
|
|
098a45 |
BuildRequires: autoconf
|
|
|
098a45 |
BuildRequires: automake
|
|
|
098a45 |
BuildRequires: gettext-devel
|
|
|
098a45 |
BuildRequires: libtool
|
|
|
098a45 |
|
|
|
098a45 |
Requires(post): systemd
|
|
|
098a45 |
Requires(preun): systemd
|
|
|
098a45 |
Requires(postun): systemd
|
|
|
098a45 |
Requires: pcsc-ifd-handler
|
|
|
098a45 |
Requires: %{name}-libs = %{version}-%{release}
|
|
|
098a45 |
Requires: polkit
|
|
|
098a45 |
Recommends: pcsc-lite-ccid
|
|
|
098a45 |
|
|
|
098a45 |
|
|
|
098a45 |
%description
|
|
|
098a45 |
The purpose of PC/SC Lite is to provide a Windows(R) SCard interface
|
|
|
098a45 |
in a very small form factor for communicating to smartcards and
|
|
|
098a45 |
readers. PC/SC Lite uses the same winscard API as used under
|
|
|
098a45 |
Windows(R). This package includes the PC/SC Lite daemon, a resource
|
|
|
098a45 |
manager that coordinates communications with smart card readers and
|
|
|
098a45 |
smart cards that are connected to the system, as well as other command
|
|
|
098a45 |
line tools.
|
|
|
098a45 |
|
|
|
098a45 |
%package libs
|
|
|
098a45 |
Summary: PC/SC Lite libraries
|
|
|
098a45 |
Group: System Environment/Libraries
|
|
|
098a45 |
|
|
|
098a45 |
%description libs
|
|
|
098a45 |
PC/SC Lite libraries.
|
|
|
098a45 |
|
|
|
098a45 |
%package devel
|
|
|
098a45 |
Summary: PC/SC Lite development files
|
|
|
098a45 |
Group: Development/Libraries
|
|
|
098a45 |
Requires: %{name}-libs = %{version}-%{release}
|
|
|
098a45 |
|
|
|
098a45 |
%description devel
|
|
|
098a45 |
PC/SC Lite development files.
|
|
|
098a45 |
|
|
|
098a45 |
%package doc
|
|
|
098a45 |
Summary: PC/SC Lite developer documentation
|
|
|
098a45 |
Group: Documentation
|
|
|
098a45 |
BuildArch: noarch
|
|
|
098a45 |
Requires: %{name}-libs = %{version}-%{release}
|
|
|
098a45 |
|
|
|
098a45 |
%description doc
|
|
|
098a45 |
%{summary}.
|
|
|
098a45 |
|
|
|
098a45 |
|
|
|
098a45 |
%prep
|
|
|
098a45 |
gpgv2 --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0}
|
|
|
098a45 |
|
|
|
098a45 |
%setup -q
|
|
|
098a45 |
%patch1 -p 0 -b .maxreaders
|
|
|
098a45 |
|
|
|
098a45 |
# Convert to utf-8
|
|
|
098a45 |
for file in ChangeLog; do
|
|
|
098a45 |
iconv -f ISO-8859-1 -t UTF-8 -o $file.new $file && \
|
|
|
098a45 |
touch -r $file $file.new && \
|
|
|
098a45 |
mv $file.new $file
|
|
|
098a45 |
done
|
|
|
098a45 |
|
|
|
098a45 |
|
|
|
098a45 |
%build
|
|
|
098a45 |
%configure \
|
|
|
098a45 |
--disable-static \
|
|
|
098a45 |
--enable-polkit \
|
|
|
098a45 |
--enable-usbdropdir=%{_libdir}/pcsc/drivers
|
|
|
098a45 |
make %{?_smp_mflags}
|
|
|
098a45 |
doxygen doc/doxygen.conf ; rm -f doc/api/*.{map,md5}
|
|
|
098a45 |
|
|
|
098a45 |
|
|
|
098a45 |
%install
|
|
|
098a45 |
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
098a45 |
rm -f $RPM_BUILD_ROOT%{_datadir}/polkit-1/actions/org.debian.pcsc-lite.policy
|
|
|
098a45 |
|
|
|
098a45 |
mkdir -p $RPM_BUILD_ROOT%{_datadir}/polkit-1/actions/
|
|
|
098a45 |
install -p -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_datadir}/polkit-1/actions/
|
|
|
098a45 |
|
|
|
098a45 |
# Create empty directories
|
|
|
098a45 |
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/reader.conf.d
|
|
|
098a45 |
mkdir -p $RPM_BUILD_ROOT%{_libdir}/pcsc/drivers
|
|
|
098a45 |
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/run/pcscd
|
|
|
098a45 |
|
|
|
098a45 |
rm $RPM_BUILD_ROOT%{_libdir}/*.la
|
|
|
098a45 |
|
|
|
098a45 |
# Remove documentation installed in a wrong directory
|
|
|
098a45 |
rm $RPM_BUILD_ROOT%{_docdir}/pcsc-lite/README.DAEMON
|
|
|
098a45 |
|
|
|
098a45 |
# Fix python shebangs
|
|
|
098a45 |
sed -i 's|^#! /usr/bin/python|#!/usr/bin/python3|' %{buildroot}/usr/bin/pcsc-spy
|
|
|
098a45 |
|
|
|
098a45 |
%post
|
|
|
098a45 |
%systemd_post pcscd.socket pcscd.service
|
|
|
098a45 |
|
|
|
098a45 |
%preun
|
|
|
098a45 |
%systemd_preun pcscd.socket pcscd.service
|
|
|
098a45 |
|
|
|
098a45 |
%postun
|
|
|
098a45 |
%systemd_postun_with_restart pcscd.socket pcscd.service
|
|
|
098a45 |
|
|
|
098a45 |
%post libs -p /sbin/ldconfig
|
|
|
098a45 |
|
|
|
098a45 |
%postun libs -p /sbin/ldconfig
|
|
|
098a45 |
|
|
|
098a45 |
|
|
|
098a45 |
%files
|
|
|
098a45 |
%doc AUTHORS ChangeLog DRIVERS HELP README SECURITY TODO
|
|
|
098a45 |
%doc doc/README.polkit
|
|
|
098a45 |
%dir %{_sysconfdir}/reader.conf.d/
|
|
|
098a45 |
%{_unitdir}/pcscd.service
|
|
|
098a45 |
%{_unitdir}/pcscd.socket
|
|
|
098a45 |
%{_sbindir}/pcscd
|
|
|
098a45 |
%dir %{_libdir}/pcsc/
|
|
|
098a45 |
%dir %{_libdir}/pcsc/drivers/
|
|
|
098a45 |
%{_mandir}/man5/reader.conf.5*
|
|
|
098a45 |
%{_mandir}/man8/pcscd.8*
|
|
|
098a45 |
%{_datadir}/polkit-1/actions/org.debian.pcsc-lite.policy
|
|
|
098a45 |
%ghost %dir %{_localstatedir}/run/pcscd/
|
|
|
098a45 |
|
|
|
098a45 |
%files libs
|
|
|
098a45 |
%license COPYING
|
|
|
098a45 |
%{_libdir}/libpcsclite.so.*
|
|
|
098a45 |
|
|
|
098a45 |
%files devel
|
|
|
098a45 |
%{_bindir}/pcsc-spy
|
|
|
098a45 |
%{_includedir}/PCSC/
|
|
|
098a45 |
%{_libdir}/libpcsclite.so
|
|
|
098a45 |
%{_libdir}/libpcscspy.so*
|
|
|
098a45 |
%{_libdir}/pkgconfig/libpcsclite.pc
|
|
|
098a45 |
%{_mandir}/man1/pcsc-spy.1*
|
|
|
098a45 |
|
|
|
098a45 |
%files doc
|
|
|
098a45 |
%doc doc/api/ doc/example/pcsc_demo.c
|
|
|
098a45 |
|
|
|
098a45 |
|
|
|
098a45 |
%changelog
|
|
|
098a45 |
* Fri Aug 25 2018 Bob Relyea <rrelyea@redhat.com> - 1.8.23-3
|
|
|
098a45 |
- Update max readers to 32
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Jun 22 2018 Troy Dawson <tdawson@redhat.com> - 1.8.23-2.1
|
|
|
098a45 |
- Fix python shebangs (#1580842)
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.23-2
|
|
|
098a45 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Tue Dec 19 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.23-1
|
|
|
098a45 |
- New upstream release
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.22-3
|
|
|
098a45 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.22-2
|
|
|
098a45 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Tue Jun 27 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.22-1
|
|
|
098a45 |
- New upstream release
|
|
|
098a45 |
|
|
|
098a45 |
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.20-2
|
|
|
098a45 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Mon Jan 2 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.20-1
|
|
|
098a45 |
- New upstream release
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Dec 9 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.19-1
|
|
|
098a45 |
- New upstream release
|
|
|
098a45 |
|
|
|
098a45 |
* Wed Nov 30 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.18-1
|
|
|
098a45 |
- New upstream release
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Jun 30 2016 Ville Skyttä <ville.skytta@iki.fi> - 1.8.17-2
|
|
|
098a45 |
- Add dependency on polkit
|
|
|
098a45 |
- Mark COPYING as %%license
|
|
|
098a45 |
- Fix bogus dates in %%changelog
|
|
|
098a45 |
|
|
|
098a45 |
* Tue Jun 21 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.17-1
|
|
|
098a45 |
- New upstream release
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Apr 1 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.16-1
|
|
|
098a45 |
- New upstream release (#1319539)
|
|
|
098a45 |
- Added gpg key verification as part of build process
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.15-2
|
|
|
098a45 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Mon Jan 11 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.15-1
|
|
|
098a45 |
- New upstream release (#1294262)
|
|
|
098a45 |
|
|
|
098a45 |
* Wed Nov 18 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.14-2
|
|
|
098a45 |
- Recommend pcsc-lite-ccid package (#1280447)
|
|
|
098a45 |
|
|
|
098a45 |
* Wed Aug 5 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.14-1
|
|
|
098a45 |
- New upstream release
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.13-2
|
|
|
098a45 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Nov 7 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.13-1
|
|
|
098a45 |
- New upstream release
|
|
|
098a45 |
|
|
|
098a45 |
* Wed Sep 24 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.12-1
|
|
|
098a45 |
- New upstream release (#1079514)
|
|
|
098a45 |
|
|
|
098a45 |
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.11-3
|
|
|
098a45 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.11-2
|
|
|
098a45 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Tue Jun 03 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.11-1
|
|
|
098a45 |
- New upstream release
|
|
|
098a45 |
- Safer usage of libudev functions
|
|
|
098a45 |
|
|
|
098a45 |
* Tue Mar 11 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.10-3
|
|
|
098a45 |
- The default installed polkit policy allows console users to access
|
|
|
098a45 |
smart cards. Non-interactive or remote usage now requires admin
|
|
|
098a45 |
rights, or a specific policy (see README.polkit)
|
|
|
098a45 |
|
|
|
098a45 |
* Tue Feb 11 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.8.10-2
|
|
|
098a45 |
- Added upstream patch to support polkit
|
|
|
098a45 |
- Force sanity of parameters received by the client
|
|
|
098a45 |
|
|
|
098a45 |
* Sun Oct 20 2013 Kalev Lember <kalevlember@gmail.com> - 1.8.10-1
|
|
|
098a45 |
- Update to 1.8.10
|
|
|
098a45 |
- Update source URL
|
|
|
098a45 |
- Drop large ChangeLog.svn from %%doc
|
|
|
098a45 |
|
|
|
098a45 |
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.8-2
|
|
|
098a45 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Feb 28 2013 Kalev Lember <kalevlember@gmail.com> - 1.8.8-1
|
|
|
098a45 |
- Update to 1.8.8
|
|
|
098a45 |
- Use new systemd macros (#850264)
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.7-2
|
|
|
098a45 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Nov 30 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.7-1
|
|
|
098a45 |
- Update to 1.8.7
|
|
|
098a45 |
|
|
|
098a45 |
* Tue Sep 18 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.6-1
|
|
|
098a45 |
- Update to 1.8.6
|
|
|
098a45 |
|
|
|
098a45 |
* Mon Aug 06 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.5-1
|
|
|
098a45 |
- Update to 1.8.5
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.4-2
|
|
|
098a45 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Tue Jun 26 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.4-1
|
|
|
098a45 |
- Update to 1.8.4
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Jun 14 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.3-2
|
|
|
098a45 |
- Rebuild for new libudev (#831987)
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Mar 30 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.3-1
|
|
|
098a45 |
- Update to 1.8.3
|
|
|
098a45 |
|
|
|
098a45 |
* Mon Feb 06 2012 Kalev Lember <kalevlember@gmail.com> - 1.8.2-1
|
|
|
098a45 |
- Update to 1.8.2
|
|
|
098a45 |
- Drop the systemd support patches which are now upstreamed
|
|
|
098a45 |
- Package the new pcsc-spay tool in -devel subpackage
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.4-7
|
|
|
098a45 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Mon Oct 10 2011 Kalev Lember <kalevlember@gmail.com> - 1.7.4-6
|
|
|
098a45 |
- Remove the automatic card power down disabling patch again;
|
|
|
098a45 |
no longer needed with latest libusb1 1.0.9 rc1 (#737988)
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Sep 16 2011 Kalev Lember <kalevlember@gmail.com> - 1.7.4-5
|
|
|
098a45 |
- Reapply the patch to disable automatic card power down (#737988)
|
|
|
098a45 |
|
|
|
098a45 |
* Sun Sep 04 2011 Kalev Lember <kalevlember@gmail.com> - 1.7.4-4
|
|
|
098a45 |
- Ignore errors from 'systemctl enable' (#734852)
|
|
|
098a45 |
|
|
|
098a45 |
* Sat Aug 20 2011 Kalev Lember <kalevlember@gmail.com> - 1.7.4-3
|
|
|
098a45 |
- Use /var/run/pcscd for ipc directory (#722449)
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Jul 15 2011 Kalev Lember <kalevlember@gmail.com> - 1.7.4-2
|
|
|
098a45 |
- Converted initscript to systemd service file (#617330)
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Jun 24 2011 Kalev Lember <kalev@smartlink.ee> - 1.7.4-1
|
|
|
098a45 |
- Update to 1.7.4
|
|
|
098a45 |
|
|
|
098a45 |
* Wed Jun 22 2011 Kalev Lember <kalev@smartlink.ee> - 1.7.3-1
|
|
|
098a45 |
- Update to 1.7.3
|
|
|
098a45 |
- Dropped upstreamed patches
|
|
|
098a45 |
- Dropped the lib64 rpath patch; pcsc-lite now uses system libtool
|
|
|
098a45 |
- Cleaned up the spec file for modern rpmbuild
|
|
|
098a45 |
|
|
|
098a45 |
* Wed May 25 2011 Kalev Lember <kalev@smartlink.ee> - 1.7.2-2
|
|
|
098a45 |
- Don't fill log files with repeating messages (#657658, #707412)
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Mar 31 2011 Kalev Lember <kalev@smartlink.ee> - 1.7.2-1
|
|
|
098a45 |
- Update to 1.7.2
|
|
|
098a45 |
|
|
|
098a45 |
* Wed Mar 30 2011 Kalev Lember <kalev@smartlink.ee> - 1.7.1-1
|
|
|
098a45 |
- Update to 1.7.1
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Mar 17 2011 Kalev Lember <kalev@smartlink.ee> - 1.7.0-2
|
|
|
098a45 |
- Explicitly create and own drivers directory
|
|
|
098a45 |
|
|
|
098a45 |
* Wed Mar 09 2011 Kalev Lember <kalev@smartlink.ee> - 1.7.0-1
|
|
|
098a45 |
- Update to 1.7.0
|
|
|
098a45 |
- Use libudev for hotplugging instead of hal
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Feb 25 2011 Kalev Lember <kalev@smartlink.ee> - 1.6.7-1
|
|
|
098a45 |
- Update to 1.6.7
|
|
|
098a45 |
- Rebased noautostart patch
|
|
|
098a45 |
|
|
|
098a45 |
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.6-3
|
|
|
098a45 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Mon Dec 13 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.6-2
|
|
|
098a45 |
- Disabled automatic card power down which seems to be unreliable at this point
|
|
|
098a45 |
|
|
|
098a45 |
* Mon Dec 13 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.6-1
|
|
|
098a45 |
- Update to 1.6.6
|
|
|
098a45 |
|
|
|
098a45 |
* Mon Dec 13 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.4-2
|
|
|
098a45 |
- Disabled pcscd on-demand startup (#653903)
|
|
|
098a45 |
|
|
|
098a45 |
* Sun Aug 15 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.4-1
|
|
|
098a45 |
- Update to 1.6.4
|
|
|
098a45 |
- Buildrequire graphviz for apidoc generation
|
|
|
098a45 |
|
|
|
098a45 |
* Wed Aug 04 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.2-1
|
|
|
098a45 |
- Update to 1.6.2
|
|
|
098a45 |
- Dropped upstreamed patches
|
|
|
098a45 |
- Removed configure --disable-dependency-tracking option which is the
|
|
|
098a45 |
default with configure macro.
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Jul 08 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.1-5
|
|
|
098a45 |
- Include COPYING in libs subpackage as per new licensing guidelines
|
|
|
098a45 |
|
|
|
098a45 |
* Mon Jul 05 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.1-4
|
|
|
098a45 |
- Patch to fix crash with empty config directory
|
|
|
098a45 |
|
|
|
098a45 |
* Sun Jul 04 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.1-3
|
|
|
098a45 |
- Patch to fix config dir handling
|
|
|
098a45 |
|
|
|
098a45 |
* Sun Jul 04 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.1-2
|
|
|
098a45 |
- Removed call to non-existent update-reader.conf in init script
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Jun 18 2010 Kalev Lember <kalev@smartlink.ee> - 1.6.1-1
|
|
|
098a45 |
- Update to 1.6.1
|
|
|
098a45 |
|
|
|
098a45 |
* Tue Apr 13 2010 Kalev Lember <kalev@smartlink.ee> - 1.5.5-4
|
|
|
098a45 |
- Fix init script start / stop priorities (#580322)
|
|
|
098a45 |
- Don't require pkgconfig as the dep is now automatically generated by rpm
|
|
|
098a45 |
|
|
|
098a45 |
* Wed Mar 03 2010 Kalev Lember <kalev@smartlink.ee> - 1.5.5-3
|
|
|
098a45 |
- Added patch to fix init script LSB header (#565241)
|
|
|
098a45 |
- Dropped BR: libusb-devel as configure script really picks up libhal instead
|
|
|
098a45 |
- Use %%global instead of %%define
|
|
|
098a45 |
|
|
|
098a45 |
* Mon Dec 21 2009 Kalev Lember <kalev@smartlink.ee> - 1.5.5-2
|
|
|
098a45 |
- Require -libs subpackage from main pcsc-lite package
|
|
|
098a45 |
- Build -doc subpackage as noarch
|
|
|
098a45 |
- Dropped --enable-runpid configure option which was removed in 1.4.99
|
|
|
098a45 |
- Dropped obsolete provides
|
|
|
098a45 |
- Spec file cleanup
|
|
|
098a45 |
|
|
|
098a45 |
* Wed Nov 18 2009 Kalev Lember <kalev@smartlink.ee> - 1.5.5-1
|
|
|
098a45 |
- Updated to pcsc-lite 1.5.5
|
|
|
098a45 |
- Rebased rpath64 patch
|
|
|
098a45 |
- Dropped upstreamed pcsc-lite-1.5-permissions.patch
|
|
|
098a45 |
|
|
|
098a45 |
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.2-3
|
|
|
098a45 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Wed Jun 17 2009 Bob Relyea <rrelyea@redhat.com> - 1.5.2-2
|
|
|
098a45 |
- Pick up security fixes from upstream
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Feb 27 2009 Bob Relyea <rrelyea@redhat.com> - 1.5.2-1
|
|
|
098a45 |
- Pick up 1.5.2
|
|
|
098a45 |
- Add FD_CLOEXEC flag
|
|
|
098a45 |
- make reader.conf a noreplace config file
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.102-5
|
|
|
098a45 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Wed Feb 11 2009 Karsten Hopp <karsten@redhat.com> 1.4.102-4
|
|
|
098a45 |
- remove excludearch s390, s390x (#467788)
|
|
|
098a45 |
even though s390 does not have libusb or smartCards, the libusb
|
|
|
098a45 |
packages are required to build other packages.
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Aug 28 2008 Bob Relyea <rrelyea@redhat.com> - 1.4.102-3
|
|
|
098a45 |
- bump tag becaue the build system can't deal with mistakes.
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Aug 28 2008 Bob Relyea <rrelyea@redhat.com> - 1.4.102-2
|
|
|
098a45 |
- mock build changes
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Aug 28 2008 Bob Relyea <rrelyea@redhat.com> - 1.4.102-1
|
|
|
098a45 |
- Pick up 1.4.102
|
|
|
098a45 |
|
|
|
098a45 |
* Tue May 6 2008 Bob Relyea <rrelyea@redhat.com> - 1.4.101-1
|
|
|
098a45 |
- Pick up 1.4.101
|
|
|
098a45 |
|
|
|
098a45 |
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.4.4-3
|
|
|
098a45 |
- Autorebuild for GCC 4.3
|
|
|
098a45 |
|
|
|
098a45 |
* Wed Jan 16 2008 Bob Relyea <rrelyea@redhat.com> - 1.4.4-2
|
|
|
098a45 |
- Silence libpcsc-lite even when the daemon isn't running.
|
|
|
098a45 |
- fix typo in init file which prevents the config file from being read.
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Nov 22 2007 Bob Relyea <rrelyea@redhat.com> - 1.4.4-1
|
|
|
098a45 |
- Pick up 1.4.4
|
|
|
098a45 |
|
|
|
098a45 |
* Tue Feb 06 2007 Bob Relyea <rrelyea@redhat.com> - 1.3.3-1
|
|
|
098a45 |
- Pick up 1.3.3
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Nov 02 2006 Bob Relyea <rrelyea@redhat.com> - 1.3.2-1
|
|
|
098a45 |
- Pick up 1.3.2
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Sep 14 2006 Bob Relyea <rrelyea@redhat.com> - 1.3.1-7
|
|
|
098a45 |
- Incorporate patch from Ludovic to stop the pcsc daemon from
|
|
|
098a45 |
unnecessarily waking up.
|
|
|
098a45 |
|
|
|
098a45 |
* Mon Jul 31 2006 Ray Strode <rstrode@redhat.com> - 1.3.1-6
|
|
|
098a45 |
- follow packaging guidelines for setting up init service
|
|
|
098a45 |
(bug 200778)
|
|
|
098a45 |
|
|
|
098a45 |
* Mon Jul 24 2006 Bob Relyea <rrelyea@redhat.com> - 1.3.1-5
|
|
|
098a45 |
- start pcscd when pcsc-lite is installed
|
|
|
098a45 |
|
|
|
098a45 |
* Sun Jul 16 2006 Florian La Roche <laroche@redhat.com> - 1.3.1-4
|
|
|
098a45 |
- fix excludearch line
|
|
|
098a45 |
|
|
|
098a45 |
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.3.1-3.1
|
|
|
098a45 |
- rebuild
|
|
|
098a45 |
|
|
|
098a45 |
* Mon Jul 10 2006 Bob Relyea <rrelyea@redhat.com> - 1.3.1-3
|
|
|
098a45 |
- remove s390 from the build
|
|
|
098a45 |
|
|
|
098a45 |
* Mon Jun 5 2006 Bob Relyea <rrelyea@redhat.com> - 1.3.1-2
|
|
|
098a45 |
- Move to Fedora Core.
|
|
|
098a45 |
- Remove dependency on graphviz.
|
|
|
098a45 |
- Removed %%{_dist}
|
|
|
098a45 |
|
|
|
098a45 |
* Sat Apr 22 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.3.1-1
|
|
|
098a45 |
- 1.3.1.
|
|
|
098a45 |
|
|
|
098a45 |
* Sun Mar 5 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.3.0-1
|
|
|
098a45 |
- 1.3.0, init script and reader.conf updater included upstream.
|
|
|
098a45 |
- Split developer docs into a -doc subpackage, include API docs.
|
|
|
098a45 |
- libmusclecard no longer included, split into separate package upstream.
|
|
|
098a45 |
|
|
|
098a45 |
* Mon Feb 13 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.2.0-14
|
|
|
098a45 |
- Avoid standard rpaths on multilib archs.
|
|
|
098a45 |
- Fine tune dependencies.
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Nov 11 2005 Ville Skyttä <ville.skytta at iki.fi> - 1.2.0-13
|
|
|
098a45 |
- Don't ship static libraries.
|
|
|
098a45 |
- Don't mark the init script as a config file.
|
|
|
098a45 |
- Use rm instead of %%exclude.
|
|
|
098a45 |
- Specfile cleanups.
|
|
|
098a45 |
|
|
|
098a45 |
* Thu May 19 2005 Ville Skyttä <ville.skytta at iki.fi> - 1.2.0-12
|
|
|
098a45 |
- Rebuild.
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.2.0-11
|
|
|
098a45 |
- rebuilt
|
|
|
098a45 |
|
|
|
098a45 |
* Tue Aug 17 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-10
|
|
|
098a45 |
- Disable dependency tracking to speed up the build.
|
|
|
098a45 |
- Drop reader.conf patch, it's not needed any more.
|
|
|
098a45 |
- Rename update-reader-conf to update-reader.conf for consistency with Debian,
|
|
|
098a45 |
and improve it a bit.
|
|
|
098a45 |
|
|
|
098a45 |
* Sat Jul 31 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.9
|
|
|
098a45 |
- Add update-reader-conf, thanks to Fritz Elfert.
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Jul 1 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.8
|
|
|
098a45 |
- Own the %%{_libdir}/pcsc hierarchy.
|
|
|
098a45 |
|
|
|
098a45 |
* Thu May 13 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.7
|
|
|
098a45 |
- Make main package require pcsc-ifd-handler (idea from Debian).
|
|
|
098a45 |
|
|
|
098a45 |
* Wed May 12 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.6
|
|
|
098a45 |
- Improve package summary.
|
|
|
098a45 |
- Improvements based on suggestions from Ludovic Rousseau:
|
|
|
098a45 |
- Don't install pcsc_demo but do include its source in -devel.
|
|
|
098a45 |
- Sync reader.conf with current upstream CVS HEAD (better docs, less
|
|
|
098a45 |
intrusive in USB-only setups where it's not needed).
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Apr 16 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.5
|
|
|
098a45 |
- Move PDF API docs to -devel.
|
|
|
098a45 |
- Improve main package and init script descriptions.
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Jan 29 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.4
|
|
|
098a45 |
- Init script fine tuning.
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Jan 9 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.3
|
|
|
098a45 |
- BuildRequires libusb-devel 0.1.6 or newer.
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Oct 30 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.2
|
|
|
098a45 |
- s/pkgconfi/pkgconfig/ in -devel requirements.
|
|
|
098a45 |
|
|
|
098a45 |
* Tue Oct 28 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.1
|
|
|
098a45 |
- Update to 1.2.0.
|
|
|
098a45 |
- Add libpcsc-lite and libmusclecard provides to -libs and -devel.
|
|
|
098a45 |
|
|
|
098a45 |
* Thu Oct 16 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.0.2.rc3
|
|
|
098a45 |
- Update to 1.2.0-rc3.
|
|
|
098a45 |
- Trivial init script improvements.
|
|
|
098a45 |
- Enable %%{_smp_mflags}.
|
|
|
098a45 |
- Don't bother trying to enable SCF.
|
|
|
098a45 |
|
|
|
098a45 |
* Sun Sep 14 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.0.2.rc2
|
|
|
098a45 |
- Specfile cleanups.
|
|
|
098a45 |
|
|
|
098a45 |
* Fri Sep 5 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.0.1.rc2
|
|
|
098a45 |
- Update to 1.2.0-rc2.
|
|
|
098a45 |
|
|
|
098a45 |
* Wed Aug 27 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.2.0-0.fdr.0.1.rc1
|
|
|
098a45 |
- Update to 1.2.0-rc1.
|
|
|
098a45 |
|
|
|
098a45 |
* Sun Jun 1 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.1.2-0.fdr.0.1.beta5
|
|
|
098a45 |
- Update to 1.1.2beta5.
|
|
|
098a45 |
|
|
|
098a45 |
* Sat May 24 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.1.2-0.fdr.0.1.beta4
|
|
|
098a45 |
- First build, based on PLD's 1.1.1-2.
|