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