gentleknife / rpms / libgcrypt

Forked from rpms/libgcrypt 4 years ago
Clone

Blame SPECS/libgcrypt.spec

241384
Name: libgcrypt
241384
Version: 1.5.3
241384
Release: 14%{?dist}
241384
URL: http://www.gnupg.org/
241384
Source0: libgcrypt-%{version}-hobbled.tar.xz
241384
# The original libgcrypt sources now contain potentially patented ECC
241384
# cipher support. We have to remove it in the tarball we ship with
241384
# the hobble-libgcrypt script.
241384
#Source0: ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-%{version}.tar.bz2
241384
#Source1: ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-%{version}.tar.bz2.sig
241384
Source2: wk@g10code.com
241384
Source3: hobble-libgcrypt
241384
# do not run the ecc curves test
241384
Patch1: libgcrypt-1.5.0-noecc.patch
241384
# make FIPS hmac compatible with fipscheck - non upstreamable
241384
Patch2: libgcrypt-1.5.0-use-fipscheck.patch
241384
# fix tests in the FIPS mode, fix the FIPS-186-3 DSA keygen
241384
Patch5: libgcrypt-1.5.0-tests.patch
241384
# make the FIPS-186-3 DSA CAVS testable
241384
Patch7: libgcrypt-1.5.3-fips-cavs.patch
241384
# fix for memory leaks an other errors found by Coverity scan
241384
Patch9: libgcrypt-1.5.0-leak.patch
241384
# use poll instead of select when gathering randomness
241384
Patch11: libgcrypt-1.5.1-use-poll.patch
241384
# compile rijndael with -fno-strict-aliasing
241384
Patch12: libgcrypt-1.5.2-aliasing.patch
241384
# slight optimalization of mpicoder.c to silence Valgrind (#968288)
241384
Patch13: libgcrypt-1.5.2-mpicoder-gccopt.patch
241384
# pbkdf2 speedup - upstream
241384
Patch15: libgcrypt-1.5.3-pbkdf-speedup.patch
241384
# fix bug in whirlpool implementation (for backwards compatibility
241384
# with files generated with buggy version set environment
241384
# varible GCRYPT_WHIRLPOOL_BUG
241384
Patch16: libgcrypt-1.5.3-whirlpool-bug.patch
241384
# FIPS DRBG
241384
Patch17: libgcrypt-1.5.3-drbg.patch
241384
# Run the FIPS mode initialization in the shared library constructor
241384
Patch18: libgcrypt-1.5.3-fips-ctor.patch
241384
# Make it possible to run the test suite in the FIPS mode
241384
Patch19: libgcrypt-1.5.3-fips-test.patch
241384
# Make the FIPS RSA keygen to be FIPS 186-4 compliant
241384
Patch20: libgcrypt-1.5.3-rsa-fips-keygen.patch
241384
# add configurable source of RNG seed and seed by default
241384
# from /dev/urandom in the FIPS mode
241384
Patch21: libgcrypt-1.5.3-fips-cfgrandom.patch
241384
# update the selftests for new FIPS requirements
241384
Patch22: libgcrypt-1.5.3-fips-reqs.patch
241384
# use only urandom if /dev/random cannot be opened
241384
Patch24: libgcrypt-1.5.3-urandom-only.patch
241384
# fix predictable PRNG output
241384
Patch26: libgcrypt-1.5.3-rng-predictable.patch
241384
# add drgb cavs test
241384
Patch27: libgcrypt-1.5.3-drbg-cavs.patch
241384
# allow reinitialization of ath in the FIPS mode
241384
Patch28: libgcrypt-1.5.3-ath-reinstall.patch
241384
# allow auto-initialization of drbg
241384
Patch29: libgcrypt-1.5.3-drbg-init.patch
241384
241384
%define gcrylibdir %{_libdir}
241384
241384
# Technically LGPLv2.1+, but Fedora's table doesn't draw a distinction.
241384
# Documentation and some utilities are GPLv2+ licensed. These files
241384
# are in the devel subpackage.
241384
License: LGPLv2+
241384
Summary: A general-purpose cryptography library
241384
BuildRequires: gawk, libgpg-error-devel >= 1.4, pkgconfig
241384
BuildRequires: fipscheck
241384
# This is needed only when patching the .texi doc.
241384
BuildRequires: texinfo
241384
Group: System Environment/Libraries
241384
241384
%package devel
241384
Summary: Development files for the %{name} package
241384
License: LGPLv2+ and GPLv2+
241384
Group: Development/Libraries
241384
Requires(pre): /sbin/install-info
241384
Requires(post): /sbin/install-info
241384
Requires: libgpg-error-devel
241384
Requires: %{name} = %{version}-%{release}
241384
241384
%description
241384
Libgcrypt is a general purpose crypto library based on the code used
241384
in GNU Privacy Guard.  This is a development version.
241384
241384
%description devel
241384
Libgcrypt is a general purpose crypto library based on the code used
241384
in GNU Privacy Guard.  This package contains files needed to develop
241384
applications using libgcrypt.
241384
241384
%prep
241384
%setup -q
241384
%{SOURCE3}
241384
%patch1 -p1 -b .noecc
241384
%patch2 -p1 -b .use-fipscheck
241384
%patch5 -p1 -b .tests
241384
%patch7 -p1 -b .cavs
241384
%patch9 -p1 -b .leak
241384
%patch11 -p1 -b .use-poll
241384
%patch12 -p1 -b .aliasing
241384
%patch13 -p1 -b .gccopt
241384
%patch15 -p1 -b .pbkdf-speedup
241384
%patch16 -p1 -b .whirlpool-bug
241384
%patch17 -p1 -b .drbg
241384
%patch18 -p1 -b .fips-ctor
241384
%patch19 -p1 -b .fips-test
241384
%patch20 -p1 -b .fips-keygen
241384
%patch21 -p1 -b .cfgrandom
241384
%patch22 -p1 -b .fips-reqs
241384
%patch24 -p1 -b .urandom-only
241384
%patch26 -p1 -b .rng-predictable
241384
%patch27 -p1 -b .drbg-cavs
241384
%patch28 -p1 -b .ath-reinstall
241384
%patch29 -p1 -b .drbg-init
241384
241384
%build
241384
%configure --disable-static \
241384
%ifarch sparc64
241384
     --disable-asm \
241384
%endif
241384
     --enable-noexecstack \
241384
     --enable-hmac-binary-check \
241384
     --enable-pubkey-ciphers='dsa elgamal rsa' \
241384
     --disable-O-flag-munging
241384
make %{?_smp_mflags}
241384
241384
%check
241384
fipshmac src/.libs/libgcrypt.so.??
241384
make check
241384
241384
# Add generation of HMAC checksums of the final stripped binaries 
241384
%define __spec_install_post \
241384
    %{?__debug_package:%{__debug_install_post}} \
241384
    %{__arch_install_post} \
241384
    %{__os_install_post} \
241384
    fipshmac $RPM_BUILD_ROOT%{gcrylibdir}/*.so.?? \
241384
%{nil}
241384
241384
%install
241384
make install DESTDIR=$RPM_BUILD_ROOT
241384
241384
# Change /usr/lib64 back to /usr/lib.  This saves us from having to patch the
241384
# script to "know" that -L/usr/lib64 should be suppressed, and also removes
241384
# a file conflict between 32- and 64-bit versions of this package.
241384
# Also replace my_host with none.
241384
sed -i -e 's,^libdir="/usr/lib.*"$,libdir="/usr/lib",g' $RPM_BUILD_ROOT/%{_bindir}/libgcrypt-config
241384
sed -i -e 's,^my_host=".*"$,my_host="none",g' $RPM_BUILD_ROOT/%{_bindir}/libgcrypt-config
241384
241384
rm -f ${RPM_BUILD_ROOT}/%{_infodir}/dir ${RPM_BUILD_ROOT}/%{_libdir}/*.la
241384
/sbin/ldconfig -n $RPM_BUILD_ROOT/%{_libdir}
241384
241384
%if "%{gcrylibdir}" != "%{_libdir}"
241384
# Relocate the shared libraries to %{gcrylibdir}.
241384
mkdir -p $RPM_BUILD_ROOT%{gcrylibdir}
241384
for shlib in $RPM_BUILD_ROOT%{_libdir}/*.so* ; do
241384
	if test -L "$shlib" ; then
241384
		rm "$shlib"
241384
	else
241384
		mv "$shlib" $RPM_BUILD_ROOT%{gcrylibdir}/
241384
	fi
241384
done
241384
241384
# Overwrite development symlinks.
241384
pushd $RPM_BUILD_ROOT/%{_libdir}
241384
for shlib in %{gcrylibdir}/lib*.so.* ; do
241384
	shlib=`echo "$shlib" | sed -e 's,//,/,g'`
241384
	target=`basename "$shlib" | sed -e 's,\.so.*,,g'`.so
241384
	ln -sf $shlib $target
241384
done
241384
popd
241384
241384
# Add soname symlink.
241384
/sbin/ldconfig -n $RPM_BUILD_ROOT/%{_lib}/
241384
%endif
241384
241384
241384
# Create /etc/gcrypt (hardwired, not dependent on the configure invocation) so
241384
# that _someone_ owns it.
241384
mkdir -p -m 755 $RPM_BUILD_ROOT/etc/gcrypt
241384
241384
%post -p /sbin/ldconfig
241384
241384
%postun -p /sbin/ldconfig
241384
241384
%post devel
241384
[ -f %{_infodir}/gcrypt.info.gz ] && \
241384
    /sbin/install-info %{_infodir}/gcrypt.info.gz %{_infodir}/dir
241384
exit 0
241384
241384
%preun devel
241384
if [ $1 = 0 -a -f %{_infodir}/gcrypt.info.gz ]; then
241384
    /sbin/install-info --delete %{_infodir}/gcrypt.info.gz %{_infodir}/dir
241384
fi
241384
exit 0
241384
241384
%files
241384
%defattr(-,root,root,-)
241384
%dir /etc/gcrypt
241384
%{gcrylibdir}/libgcrypt.so.*
241384
%{gcrylibdir}/.libgcrypt.so.*.hmac
241384
%doc COPYING.LIB AUTHORS NEWS THANKS
241384
241384
%files devel
241384
%defattr(-,root,root,-)
241384
%{_bindir}/%{name}-config
241384
%{_bindir}/dumpsexp
241384
%{_bindir}/hmac256
241384
%{_includedir}/*
241384
%{_libdir}/*.so
241384
%{_datadir}/aclocal/*
241384
241384
%{_infodir}/gcrypt.info*
241384
%doc COPYING
241384
241384
%changelog
241384
* Tue Feb 28 2017 Tomáš Mráz <tmraz@redhat.com> 1.5.3-14
241384
- add DRBG CAVS driver and other necessary CAVS driver updates (#1172568)
241384
- allow ath reinitialization in FIPS mode
241384
- allow for auto-initialization of DRBG
241384
241384
* Tue Oct 25 2016 Tomáš Mráz <tmraz@redhat.com> 1.5.3-13.1
241384
- fix CVE-2016-6313 - predictable PRNG output (#1366105)
241384
241384
* Fri Apr 10 2015 Tomáš Mráz <tmraz@redhat.com> 1.5.3-13
241384
- touch only urandom in the selftest and when /dev/random is
241384
  unavailable for example by SELinux confinement
241384
- fix the RSA selftest key (p q swap)
241384
241384
* Wed Jan 14 2015 Tomáš Mráz <tmraz@redhat.com> 1.5.3-12
241384
- use macros instead of inline functions in the public header
241384
241384
* Fri Dec 12 2014 Tomáš Mráz <tmraz@redhat.com> 1.5.3-11
241384
- do not initialize secure memory during the selftest
241384
241384
* Fri Nov 14 2014 Tomáš Mráz <tmraz@redhat.com> 1.5.3-10
241384
- update the selftests for the new FIPS requirements
241384
241384
* Fri Oct 31 2014 Tomáš Mráz <tmraz@redhat.com> 1.5.3-9
241384
- apply the fips-cfgrandom change also to the drbg seeding
241384
241384
* Tue Oct 21 2014 Tomáš Mráz <tmraz@redhat.com> 1.5.3-7
241384
- make the RSA keygen to be compliant to FIPS 186-4 in
241384
  FIPS mode
241384
241384
* Fri Sep 26 2014 Tomáš Mráz <tmraz@redhat.com> 1.5.3-5
241384
- add FIPS DRBG implementation
241384
- run the FIPS POST tests in shared library constructor
241384
- make it possible to run the test suite in the FIPS mode
241384
241384
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.5.3-4
241384
- Mass rebuild 2014-01-24
241384
241384
* Tue Jan 21 2014 Tomáš Mráz <tmraz@redhat.com> 1.5.3-3
241384
- fix a bug in the Whirlpool hash implementation
241384
- speed up the PBKDF2 computation
241384
241384
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.5.3-2
241384
- Mass rebuild 2013-12-27
241384
241384
* Fri Jul 26 2013 Tomáš Mráz <tmraz@redhat.com> 1.5.3-1
241384
- new upstream version fixing cache side-channel attack on RSA private keys
241384
241384
* Thu Jun 20 2013 Tomáš Mráz <tmraz@redhat.com> 1.5.2-3
241384
- silence false error detected by valgrind (#968288)
241384
241384
* Thu Apr 25 2013 Tomáš Mráz <tmraz@redhat.com> 1.5.2-2
241384
- silence strict aliasing warning in Rijndael
241384
- apply UsrMove
241384
- spec file cleanups
241384
241384
* Fri Apr 19 2013 Tomáš Mráz <tmraz@redhat.com> 1.5.2-1
241384
- new upstream version
241384
241384
* Wed Mar 20 2013 Tomas Mraz <tmraz@redhat.com> 1.5.1-1
241384
- new upstream version
241384
241384
* Tue Mar  5 2013 Tomas Mraz <tmraz@redhat.com> 1.5.0-11
241384
- use poll() instead of select() when gathering randomness (#913773)
241384
241384
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-10
241384
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
241384
241384
* Thu Jan  3 2013 Tomas Mraz <tmraz@redhat.com> 1.5.0-9
241384
- allow empty passphrase in PBKDF2 needed for cryptsetup (=891266)
241384
241384
* Mon Dec  3 2012 Tomas Mraz <tmraz@redhat.com> 1.5.0-8
241384
- fix multilib conflict in libgcrypt-config
241384
- fix minor memory leaks and other bugs found by Coverity scan
241384
241384
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-6
241384
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
241384
241384
* Thu Apr  5 2012 Tomas Mraz <tmraz@redhat.com> 1.5.0-5
241384
- Correctly rebuild the info documentation
241384
241384
* Wed Apr  4 2012 Tomas Mraz <tmraz@redhat.com> 1.5.0-4
241384
- Add GCRYCTL_SET_ENFORCED_FIPS_FLAG command
241384
241384
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-3
241384
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
241384
241384
* Mon Aug 15 2011 Kalev Lember <kalevlember@gmail.com> 1.5.0-2
241384
- Rebuilt for rpm bug #728707
241384
241384
* Thu Jul 21 2011 Tomas Mraz <tmraz@redhat.com> 1.5.0-1
241384
- new upstream version
241384
241384
* Mon Jun 20 2011 Tomas Mraz <tmraz@redhat.com> 1.4.6-4
241384
- Always xor seed from /dev/urandom over /etc/gcrypt/rngseed
241384
241384
* Mon May 30 2011 Tomas Mraz <tmraz@redhat.com> 1.4.6-3
241384
- Make the FIPS-186-3 DSA implementation CAVS testable
241384
- add configurable source of RNG seed /etc/gcrypt/rngseed
241384
  in the FIPS mode (#700388)
241384
241384
* Fri Feb 11 2011 Tomas Mraz <tmraz@redhat.com> 1.4.6-1
241384
- new upstream version with minor changes
241384
241384
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.5-7
241384
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
241384
241384
* Fri Feb  4 2011 Tomas Mraz <tmraz@redhat.com> 1.4.5-6
241384
- fix a bug in the fips-186-3 dsa parameter generation code
241384
241384
* Tue Feb  1 2011 Tomas Mraz <tmraz@redhat.com> 1.4.5-5
241384
- use /dev/urandom for seeding in the FIPS mode
241384
- make the tests to pass in the FIPS mode also fixing
241384
  the FIPS-186-3 DSA keygen
241384
241384
* Sun Feb 14 2010 Rex Dieter <rdieter@fedoraproject.org> 1.4.5-4
241384
- FTBFS libgcrypt-1.4.5-3.fc13: ImplicitDSOLinking (#564973)
241384
241384
* Wed Feb  3 2010 Tomas Mraz <tmraz@redhat.com> 1.4.5-3
241384
- drop the S390 build workaround as it is no longer needed
241384
- additional spec file cleanups for merge review (#226008)
241384
241384
* Mon Dec 21 2009 Tomas Mraz <tmraz@redhat.com> 1.4.5-1
241384
- workaround for build on S390 (#548825)
241384
- spec file cleanups
241384
- upgrade to new minor upstream release
241384
241384
* Tue Aug 11 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-8
241384
- fix warning when installed with --excludedocs (#515961)
241384
241384
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.4-7
241384
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
241384
241384
* Thu Jun 18 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-6
241384
- and now really apply the padlock patch
241384
241384
* Wed Jun 17 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-5
241384
- fix VIA padlock RNG inline assembly call (#505724)
241384
241384
* Thu Mar  5 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-4
241384
- with the integrity verification check the library needs to link to libdl
241384
  (#488702)
241384
241384
* Tue Mar  3 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-3
241384
- add hmac FIPS integrity verification check
241384
241384
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.4-2
241384
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
241384
241384
* Fri Jan 30 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-1
241384
- update to 1.4.4
241384
- do not abort when the fips mode kernel flag is inaccessible
241384
  due to permissions (#470219)
241384
- hobble the library to drop the ECC support
241384
241384
* Mon Oct 20 2008 Dennis Gilmore <dennis@ausil.us> 1.4.3-2
241384
- disable asm on sparc64
241384
241384
* Thu Sep 18 2008 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-1
241384
- update to 1.4.3
241384
- own /etc/gcrypt
241384
241384
* Mon Sep 15 2008 Nalin Dahyabhai <nalin@redhat.com>
241384
- invoke make with %%{?_smp_mflags} to build faster on multi-processor
241384
  systems (Steve Grubb)
241384
241384
* Mon Sep  8 2008 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-1
241384
- update to 1.4.2
241384
241384
* Tue Apr 29 2008 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-1
241384
- update to 1.4.1
241384
- bump libgpgerror-devel requirement to 1.4, matching the requirement enforced
241384
  by the configure script
241384
241384
* Thu Apr  3 2008 Joe Orton <jorton@redhat.com> 1.4.0-3
241384
- add patch from upstream to fix severe performance regression
241384
  in entropy gathering
241384
241384
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.4.0-2
241384
- Autorebuild for GCC 4.3
241384
241384
* Mon Dec 10 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.4.0-1
241384
- update to 1.4.0
241384
241384
* Tue Oct 16 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-6
241384
- use ldconfig to build the soname symlink for packaging along with the
241384
  shared library (#334731)
241384
241384
* Wed Aug 22 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-5
241384
- add missing gawk buildrequirement
241384
- switch from explicitly specifying the /dev/random RNG to just verifying
241384
  that the non-LGPL ones were disabled by the configure script
241384
241384
* Thu Aug 16 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-4
241384
- clarify license
241384
- force use of the linux /dev/random RNG, to avoid accidentally falling back
241384
  to others which would affect the license of the resulting library
241384
241384
* Mon Jul 30 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-3
241384
- disable static libraries (part of #249815)
241384
241384
* Fri Jul 27 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-2
241384
- move libgcrypt shared library to /%%{_lib} (#249815)
241384
241384
* Tue Feb  6 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-1
241384
- update to 1.2.4
241384
241384
* Mon Jan 22 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.3-2
241384
- make use of install-info more failsafe (Ville Skyttä, #223705)
241384
241384
* Fri Sep  1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.2.3-1
241384
- update to 1.2.3
241384
241384
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.2.2-3.1
241384
- rebuild
241384
241384
* Mon Jun 05 2006 Jesse Keating <jkeating@redhat.com> 1.2.2-3
241384
- Added missing buildreq pkgconfig
241384
241384
* Tue May 16 2006 Nalin Dahyabhai <nalin@redhat.com> 1.2.2-2
241384
- remove file conflicts in libgcrypt-config by making the 64-bit version
241384
  think the libraries are in /usr/lib (which is wrong, but which it also
241384
  prunes from the suggest --libs output, so no harm done, hopefully)
241384
241384
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.2.2-1.2.1
241384
- bump again for double-long bug on ppc(64)
241384
241384
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.2.2-1.2
241384
- rebuilt for new gcc4.1 snapshot and glibc changes
241384
241384
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
241384
- rebuilt
241384
241384
* Wed Oct  5 2005 Nalin Dahyabhai <nalin@redhat.com> 1.2.2-1
241384
- update to 1.2.2
241384
241384
* Wed Mar 16 2005 Nalin Dahyabhai <nalin@redhat.com> 1.2.1-1
241384
- update to 1.2.1
241384
241384
* Fri Jul 30 2004 Florian La Roche <Florian.LaRoche@redhat.de>
241384
- another try to package the symlink
241384
241384
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
241384
- rebuilt
241384
241384
* Sun May  2 2004 Bill Nottingham <notting@redhat.com> - 1.2.0-1
241384
- update to official 1.2.0
241384
241384
* Fri Apr 16 2004 Bill Nottingham <notting@redhat.com> - 1.1.94-1
241384
- update to 1.1.94
241384
241384
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
241384
- rebuilt
241384
241384
* Sat Feb 21 2004 Florian La Roche <Florian.LaRoche@redhat.de>
241384
- add symlinks to shared libs at compile time
241384
241384
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
241384
- rebuilt
241384
241384
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
241384
- rebuilt
241384
241384
* Thu Mar 20 2003 Jeff Johnson <jbj@redhat.com> 1.1.12-1
241384
- upgrade to 1.1.12 (beta).
241384
241384
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
241384
- automated rebuild
241384
241384
* Sun May 26 2002 Tim Powers <timp@redhat.com>
241384
- automated rebuild
241384
241384
* Tue May 21 2002 Jeff Johnson <jbj@redhat.com>
241384
- update to 1.1.7
241384
- change license to LGPL.
241384
- include splint annotations patch.
241384
- install info pages.
241384
241384
* Tue Apr  2 2002 Nalin Dahyabhai <nalin@redhat.com> 1.1.6-1
241384
- update to 1.1.6
241384
241384
* Thu Jan 10 2002 Nalin Dahyabhai <nalin@redhat.com> 1.1.5-1
241384
- fix the Source tag so that it's a real URL
241384
241384
* Thu Dec 20 2001 Nalin Dahyabhai <nalin@redhat.com>
241384
- initial package