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