Blame SPECS/libgcrypt.spec

5bcc82
Name: libgcrypt
5bcc82
Version: 1.8.5
5bcc82
Release: 3%{?dist}
5bcc82
URL: http://www.gnupg.org/
5bcc82
Source0: libgcrypt-%{version}-hobbled.tar.xz
5bcc82
# The original libgcrypt sources now contain potentially patented ECC
5bcc82
# cipher support. We have to remove it in the tarball we ship with
5bcc82
# the hobble-libgcrypt script. 
5bcc82
# (We replace it with RH approved ECC in Source4-5)
5bcc82
#Source0: ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-{version}.tar.bz2
5bcc82
#Source1: ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-{version}.tar.bz2.sig
5bcc82
Source2: wk@g10code.com
5bcc82
Source3: hobble-libgcrypt
5bcc82
# Approved ECC support
5bcc82
Source4: ecc-curves.c
5bcc82
Source5: curves.c
5bcc82
Source6: t-mpi-point.c
5bcc82
Source7: random.conf
5bcc82
# make FIPS hmac compatible with fipscheck - non upstreamable
5bcc82
# update on soname bump
5bcc82
Patch2: libgcrypt-1.8.5-use-fipscheck.patch
5bcc82
# modify FIPS RSA and DSA keygen to comply with requirements
5bcc82
Patch5: libgcrypt-1.8.4-fips-keygen.patch
5bcc82
# fix the tests to work correctly in the FIPS mode
5bcc82
Patch6: libgcrypt-1.8.4-tests-fipsmode.patch
5bcc82
# update the CAVS tests
5bcc82
Patch7: libgcrypt-1.7.3-fips-cavs.patch
5bcc82
# use poll instead of select when gathering randomness
5bcc82
Patch11: libgcrypt-1.8.4-use-poll.patch
5bcc82
# slight optimalization of mpicoder.c to silence Valgrind (#968288)
5bcc82
Patch13: libgcrypt-1.6.1-mpicoder-gccopt.patch
5bcc82
# fix tests to work with approved ECC
5bcc82
Patch14: libgcrypt-1.7.3-ecc-test-fix.patch
5bcc82
# Run the FIPS mode initialization in the shared library constructor
5bcc82
Patch18: libgcrypt-1.8.3-fips-ctor.patch
5bcc82
# Block some operations if in FIPS non-operational state
5bcc82
Patch22: libgcrypt-1.7.3-fips-reqs.patch
5bcc82
# Do not try to open /dev/urandom if getrandom() works
5bcc82
Patch24: libgcrypt-1.8.5-getrandom.patch
5bcc82
# CMAC selftest for FIPS POST
5bcc82
Patch25: libgcrypt-1.8.3-cmac-selftest.patch
5bcc82
# Continuous FIPS entropy test
5bcc82
Patch26: libgcrypt-1.8.3-fips-enttest.patch
5bcc82
# Disable non-approved FIPS hashes in the enforced FIPS mode
5bcc82
Patch27: libgcrypt-1.8.3-md-fips-enforce.patch
5bcc82
# Intel CET support, in upstream master
5bcc82
Patch28: libgcrypt-1.8.5-intel-cet.patch
5bcc82
# Fix build on ARMv7
5bcc82
Patch29: libgcrypt-1.8.5-build.patch
5bcc82
# FIPS module is redefined a little bit (implicit by kernel FIPS mode)
5bcc82
Patch30: libgcrypt-1.8.5-fips-module.patch
5bcc82
# Backported AES performance improvements
5bcc82
Patch31: libgcrypt-1.8.5-aes-perf.patch
5bcc82
5bcc82
%define gcrylibdir %{_libdir}
5bcc82
5bcc82
# Technically LGPLv2.1+, but Fedora's table doesn't draw a distinction.
5bcc82
# Documentation and some utilities are GPLv2+ licensed. These files
5bcc82
# are in the devel subpackage.
5bcc82
License: LGPLv2+
5bcc82
Summary: A general-purpose cryptography library
5bcc82
BuildRequires: gcc
5bcc82
BuildRequires: gawk, libgpg-error-devel >= 1.11, pkgconfig
5bcc82
BuildRequires: fipscheck
5bcc82
# This is needed only when patching the .texi doc.
5bcc82
BuildRequires: texinfo
5bcc82
BuildRequires: autoconf, automake, libtool
5bcc82
5bcc82
%package devel
5bcc82
Summary: Development files for the %{name} package
5bcc82
License: LGPLv2+ and GPLv2+
5bcc82
Requires(pre): /sbin/install-info
5bcc82
Requires(post): /sbin/install-info
5bcc82
Requires: libgpg-error-devel
5bcc82
Requires: %{name} = %{version}-%{release}
5bcc82
5bcc82
%description
5bcc82
Libgcrypt is a general purpose crypto library based on the code used
5bcc82
in GNU Privacy Guard.  This is a development version.
5bcc82
5bcc82
%description devel
5bcc82
Libgcrypt is a general purpose crypto library based on the code used
5bcc82
in GNU Privacy Guard.  This package contains files needed to develop
5bcc82
applications using libgcrypt.
5bcc82
5bcc82
%prep
5bcc82
%setup -q
5bcc82
%{SOURCE3}
5bcc82
%patch2 -p1 -b .use-fipscheck
5bcc82
%patch5 -p1 -b .fips-keygen
5bcc82
%patch6 -p1 -b .tests-fipsmode
5bcc82
%patch7 -p1 -b .cavs
5bcc82
%patch11 -p1 -b .use-poll
5bcc82
%patch13 -p1 -b .gccopt
5bcc82
%patch14 -p1 -b .eccfix
5bcc82
%patch18 -p1 -b .fips-ctor
5bcc82
%patch22 -p1 -b .fips-reqs
5bcc82
%patch24 -p1 -b .getrandom
5bcc82
%patch25 -p1 -b .cmac-selftest
5bcc82
%patch26 -p1 -b .fips-enttest
5bcc82
%patch27 -p1 -b .fips-enforce
5bcc82
%patch28 -p1 -b .intel-cet
5bcc82
%patch29 -p1 -b .build
5bcc82
%patch30 -p1 -b .fips-module
5bcc82
%patch31 -p1 -b .aes-perf
5bcc82
5bcc82
cp %{SOURCE4} cipher/
5bcc82
cp %{SOURCE5} %{SOURCE6} tests/
5bcc82
5bcc82
%build
5bcc82
autoreconf -f
5bcc82
%configure --disable-static \
5bcc82
%ifarch sparc64
5bcc82
     --disable-asm \
5bcc82
%endif
5bcc82
     --enable-noexecstack \
5bcc82
     --enable-hmac-binary-check \
5bcc82
     --enable-pubkey-ciphers='dsa elgamal rsa ecc' \
5bcc82
     --disable-O-flag-munging
5bcc82
sed -i -e '/^sys_lib_dlsearch_path_spec/s,/lib /usr/lib,/usr/lib /lib64 /usr/lib64 /lib,g' libtool
5bcc82
make %{?_smp_mflags}
5bcc82
5bcc82
%check
5bcc82
fipshmac src/.libs/libgcrypt.so.??
5bcc82
make check
5bcc82
5bcc82
# Add generation of HMAC checksums of the final stripped binaries 
5bcc82
%define __spec_install_post \
5bcc82
    %{?__debug_package:%{__debug_install_post}} \
5bcc82
    %{__arch_install_post} \
5bcc82
    %{__os_install_post} \
5bcc82
    fipshmac $RPM_BUILD_ROOT%{gcrylibdir}/*.so.?? \
5bcc82
%{nil}
5bcc82
5bcc82
%install
5bcc82
make install DESTDIR=$RPM_BUILD_ROOT
5bcc82
5bcc82
# Change /usr/lib64 back to /usr/lib.  This saves us from having to patch the
5bcc82
# script to "know" that -L/usr/lib64 should be suppressed, and also removes
5bcc82
# a file conflict between 32- and 64-bit versions of this package.
5bcc82
# Also replace my_host with none.
5bcc82
sed -i -e 's,^libdir="/usr/lib.*"$,libdir="/usr/lib",g' $RPM_BUILD_ROOT/%{_bindir}/libgcrypt-config
5bcc82
sed -i -e 's,^my_host=".*"$,my_host="none",g' $RPM_BUILD_ROOT/%{_bindir}/libgcrypt-config
5bcc82
5bcc82
rm -f ${RPM_BUILD_ROOT}/%{_infodir}/dir ${RPM_BUILD_ROOT}/%{_libdir}/*.la
5bcc82
/sbin/ldconfig -n $RPM_BUILD_ROOT/%{_libdir}
5bcc82
5bcc82
%if "%{gcrylibdir}" != "%{_libdir}"
5bcc82
# Relocate the shared libraries to %{gcrylibdir}.
5bcc82
mkdir -p $RPM_BUILD_ROOT%{gcrylibdir}
5bcc82
for shlib in $RPM_BUILD_ROOT%{_libdir}/*.so* ; do
5bcc82
	if test -L "$shlib" ; then
5bcc82
		rm "$shlib"
5bcc82
	else
5bcc82
		mv "$shlib" $RPM_BUILD_ROOT%{gcrylibdir}/
5bcc82
	fi
5bcc82
done
5bcc82
5bcc82
# Add soname symlink.
5bcc82
/sbin/ldconfig -n $RPM_BUILD_ROOT/%{_lib}/
5bcc82
%endif
5bcc82
5bcc82
# Overwrite development symlinks.
5bcc82
pushd $RPM_BUILD_ROOT/%{gcrylibdir}
5bcc82
for shlib in lib*.so.?? ; do
5bcc82
	target=$RPM_BUILD_ROOT/%{_libdir}/`echo "$shlib" | sed -e 's,\.so.*,,g'`.so
5bcc82
%if "%{gcrylibdir}" != "%{_libdir}"
5bcc82
	shlib=%{gcrylibdir}/$shlib
5bcc82
%endif
5bcc82
	ln -sf $shlib $target
5bcc82
done
5bcc82
popd
5bcc82
5bcc82
# Create /etc/gcrypt (hardwired, not dependent on the configure invocation) so
5bcc82
# that _someone_ owns it.
5bcc82
mkdir -p -m 755 $RPM_BUILD_ROOT/etc/gcrypt
5bcc82
install -m644 %{SOURCE7} $RPM_BUILD_ROOT/etc/gcrypt/random.conf
5bcc82
5bcc82
# Drop the pkgconfig as it would require an updated libgpg-error
5bcc82
rm $RPM_BUILD_ROOT/%{_libdir}/pkgconfig/libgcrypt.pc
5bcc82
5bcc82
%post -p /sbin/ldconfig
5bcc82
5bcc82
%postun -p /sbin/ldconfig
5bcc82
5bcc82
%post devel
5bcc82
[ -f %{_infodir}/gcrypt.info.gz ] && \
5bcc82
    /sbin/install-info %{_infodir}/gcrypt.info.gz %{_infodir}/dir
5bcc82
exit 0
5bcc82
5bcc82
%preun devel
5bcc82
if [ $1 = 0 -a -f %{_infodir}/gcrypt.info.gz ]; then
5bcc82
    /sbin/install-info --delete %{_infodir}/gcrypt.info.gz %{_infodir}/dir
5bcc82
fi
5bcc82
exit 0
5bcc82
5bcc82
%files
5bcc82
%dir /etc/gcrypt
5bcc82
%config(noreplace) /etc/gcrypt/random.conf
5bcc82
%{gcrylibdir}/libgcrypt.so.*
5bcc82
%{gcrylibdir}/.libgcrypt.so.*.hmac
5bcc82
%{!?_licensedir:%global license %%doc}
5bcc82
%license COPYING.LIB
5bcc82
%doc AUTHORS NEWS THANKS
5bcc82
5bcc82
%files devel
5bcc82
%{_bindir}/%{name}-config
5bcc82
%{_bindir}/dumpsexp
5bcc82
%{_bindir}/hmac256
5bcc82
%{_bindir}/mpicalc
5bcc82
%{_includedir}/*
5bcc82
%{_libdir}/*.so
5bcc82
%{_datadir}/aclocal/*
5bcc82
%{_mandir}/man1/*
5bcc82
5bcc82
%{_infodir}/gcrypt.info*
5bcc82
%{!?_licensedir:%global license %%doc}
5bcc82
%license COPYING
5bcc82
5bcc82
%changelog
5bcc82
* Tue Apr 28 2020 Tomáš Mráz <tmraz@redhat.com> 1.8.5-3
5bcc82
- new upstream version 1.8.5
5bcc82
- AES performance improvements backported from master branch
5bcc82
- FIPS module is implicit with kernel FIPS flag
5bcc82
- always run the FIPS selftests if FIPS module is installed
5bcc82
5bcc82
* Mon Jun 24 2019 Tomáš Mráz <tmraz@redhat.com> 1.8.3-4
5bcc82
- improve the continuous FIPS entropy test
5bcc82
5bcc82
* Mon Jun  3 2019 Tomáš Mráz <tmraz@redhat.com> 1.8.3-3
5bcc82
- add CMAC selftest for FIPS POST
5bcc82
- add continuous FIPS entropy test
5bcc82
- disable non-approved FIPS hashes in the enforced FIPS mode
5bcc82
5bcc82
* Thu Jul 12 2018 Tomáš Mráz <tmraz@redhat.com> 1.8.3-2
5bcc82
- make only_urandom a default in non-presence of configuration file
5bcc82
- run the full FIPS selftests only when the library is called from
5bcc82
  application
5bcc82
5bcc82
* Thu Jun 14 2018 Tomáš Mráz <tmraz@redhat.com> 1.8.3-1
5bcc82
- new upstream version 1.8.3
5bcc82
5bcc82
* Tue Feb  6 2018 Tomáš Mráz <tmraz@redhat.com> 1.8.2-2
5bcc82
- fix behavior when getrandom syscall is not present (#1542453)
5bcc82
5bcc82
* Thu Dec 21 2017 Tomáš Mráz <tmraz@redhat.com> 1.8.2-1
5bcc82
- new upstream version 1.8.2
5bcc82
5bcc82
* Tue Dec  5 2017 Tomáš Mráz <tmraz@redhat.com> 1.8.1-3
5bcc82
- do not try to access() /dev/urandom either if getrandom() works
5bcc82
5bcc82
* Mon Dec  4 2017 Tomáš Mráz <tmraz@redhat.com> 1.8.1-2
5bcc82
- do not try to open /dev/urandom if getrandom() works (#1380866)
5bcc82
5bcc82
* Tue Sep  5 2017 Tomáš Mráz <tmraz@redhat.com> 1.8.1-1
5bcc82
- new upstream version 1.8.1
5bcc82
5bcc82
* Wed Aug 16 2017 Tomáš Mráz <tmraz@redhat.com> 1.8.0-1
5bcc82
- new upstream version 1.8.0
5bcc82
5bcc82
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.8-3
5bcc82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
5bcc82
5bcc82
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.8-2
5bcc82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
5bcc82
5bcc82
* Thu Jun 29 2017 Tomáš Mráz <tmraz@redhat.com> 1.7.8-1
5bcc82
- new upstream version 1.7.8
5bcc82
5bcc82
* Fri Jun  2 2017 Tomáš Mráz <tmraz@redhat.com> 1.7.7-1
5bcc82
- new upstream version 1.7.7
5bcc82
- GOST is now enabled
5bcc82
5bcc82
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.6-2
5bcc82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
5bcc82
5bcc82
* Mon Jan 30 2017 Tomáš Mráz <tmraz@redhat.com> 1.7.6-1
5bcc82
- new upstream version 1.7.6
5bcc82
5bcc82
* Fri Dec 16 2016 Tomáš Mráz <tmraz@redhat.com> 1.7.5-1
5bcc82
- new upstream version 1.7.5
5bcc82
5bcc82
* Wed Nov 23 2016 Tomáš Mráz <tmraz@redhat.com> 1.7.3-1
5bcc82
- new upstream version 1.7.3
5bcc82
5bcc82
* Wed Aug 17 2016 Tomáš Mráz <tmraz@redhat.com> 1.6.6-1
5bcc82
- new upstream version with important security fix (CVE-2016-6316)
5bcc82
5bcc82
* Thu Jul 21 2016 Tomáš Mráz <tmraz@redhat.com> 1.6.5-1
5bcc82
- new upstream version fixing low impact issue CVE-2015-7511
5bcc82
5bcc82
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.4-2
5bcc82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
5bcc82
5bcc82
* Wed Sep  9 2015 Tomáš Mráz <tmraz@redhat.com> 1.6.4-1
5bcc82
- new upstream version
5bcc82
5bcc82
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.3-5
5bcc82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
5bcc82
5bcc82
* Fri Apr  3 2015 Tomáš Mráz <tmraz@redhat.com> 1.6.3-4
5bcc82
- deinitialize the RNG after the selftest is run
5bcc82
5bcc82
* Tue Mar 24 2015 Tomáš Mráz <tmraz@redhat.com> 1.6.3-3
5bcc82
- touch only urandom in the selftest and when /dev/random is
5bcc82
  unavailable for example by SELinux confinement
5bcc82
- fix the RSA selftest key (p q swap) (#1204517)
5bcc82
5bcc82
* Fri Mar 13 2015 Tomáš Mráz <tmraz@redhat.com> 1.6.3-2
5bcc82
- do not use strict aliasing for bufhelp functions (#1201219)
5bcc82
5bcc82
* Fri Mar  6 2015 Tomáš Mráz <tmraz@redhat.com> 1.6.3-1
5bcc82
- new upstream version
5bcc82
5bcc82
* Wed Feb 25 2015 Tomáš Mráz <tmraz@redhat.com> 1.6.2-4
5bcc82
- do not initialize secure memory during the selftest (#1195850)
5bcc82
5bcc82
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.6.2-3
5bcc82
- Rebuilt for Fedora 23 Change
5bcc82
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
5bcc82
5bcc82
* Wed Jan 14 2015 Tomáš Mráz <tmraz@redhat.com> 1.6.2-2
5bcc82
- fix buildability of programs using gcrypt.h with -ansi (#1182200)
5bcc82
5bcc82
* Mon Dec  8 2014 Tomáš Mráz <tmraz@redhat.com> 1.6.2-1
5bcc82
- new upstream version
5bcc82
5bcc82
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-7
5bcc82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
5bcc82
5bcc82
* Thu Jul 17 2014 Tom Callaway <spot@fedoraproject.org> - 1.6.1-6
5bcc82
- fix license handling
5bcc82
5bcc82
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-5
5bcc82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
5bcc82
5bcc82
* Tue May 20 2014 Kyle McMartin <kyle@fedoraproject.org> 1.6.1-4
5bcc82
- Re-enable below algos, apply patch from upstream list to make
5bcc82
  that code -fPIC friendly. (rhbz#1069792)
5bcc82
5bcc82
* Mon May 19 2014 Kyle McMartin <kyle@fedoraproject.org> 1.6.1-3
5bcc82
- Disable rijndael, cast5, camellia ARM assembly, as it's non-PIC as
5bcc82
  presently written, which results in .text relocations in the shared
5bcc82
  library. (rhbz#1069792)
5bcc82
5bcc82
* Thu Apr 24 2014 Tomáš Mráz <tmraz@redhat.com> 1.6.1-2
5bcc82
- drop the temporary compat shared library version
5bcc82
- fix the soname version in -use-fipscheck.patch
5bcc82
5bcc82
* Fri Feb 28 2014 Tomáš Mráz <tmraz@redhat.com> 1.6.1-1
5bcc82
- new upstream version breaking ABI compatibility
5bcc82
- this release temporarily includes old compatibility .so
5bcc82
5bcc82
* Tue Jan 21 2014 Tomáš Mráz <tmraz@redhat.com> 1.5.3-3
5bcc82
- add back the nistp521r1 EC curve
5bcc82
- fix a bug in the Whirlpool hash implementation
5bcc82
- speed up the PBKDF2 computation
5bcc82
5bcc82
* Sun Oct 20 2013 Tom Callaway <spot@fedoraproject.org> - 1.5.3-2
5bcc82
- add cleared ECC support
5bcc82
5bcc82
* Fri Jul 26 2013 Tomáš Mráz <tmraz@redhat.com> 1.5.3-1
5bcc82
- new upstream version fixing cache side-channel attack on RSA private keys
5bcc82
5bcc82
* Thu Jun 20 2013 Tomáš Mráz <tmraz@redhat.com> 1.5.2-3
5bcc82
- silence false error detected by valgrind (#968288)
5bcc82
5bcc82
* Thu Apr 25 2013 Tomáš Mráz <tmraz@redhat.com> 1.5.2-2
5bcc82
- silence strict aliasing warning in Rijndael
5bcc82
- apply UsrMove
5bcc82
- spec file cleanups
5bcc82
5bcc82
* Fri Apr 19 2013 Tomáš Mráz <tmraz@redhat.com> 1.5.2-1
5bcc82
- new upstream version
5bcc82
5bcc82
* Wed Mar 20 2013 Tomas Mraz <tmraz@redhat.com> 1.5.1-1
5bcc82
- new upstream version
5bcc82
5bcc82
* Tue Mar  5 2013 Tomas Mraz <tmraz@redhat.com> 1.5.0-11
5bcc82
- use poll() instead of select() when gathering randomness (#913773)
5bcc82
5bcc82
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-10
5bcc82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
5bcc82
5bcc82
* Thu Jan  3 2013 Tomas Mraz <tmraz@redhat.com> 1.5.0-9
5bcc82
- allow empty passphrase in PBKDF2 needed for cryptsetup (=891266)
5bcc82
5bcc82
* Mon Dec  3 2012 Tomas Mraz <tmraz@redhat.com> 1.5.0-8
5bcc82
- fix multilib conflict in libgcrypt-config
5bcc82
- fix minor memory leaks and other bugs found by Coverity scan
5bcc82
5bcc82
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-6
5bcc82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
5bcc82
5bcc82
* Thu Apr  5 2012 Tomas Mraz <tmraz@redhat.com> 1.5.0-5
5bcc82
- Correctly rebuild the info documentation
5bcc82
5bcc82
* Wed Apr  4 2012 Tomas Mraz <tmraz@redhat.com> 1.5.0-4
5bcc82
- Add GCRYCTL_SET_ENFORCED_FIPS_FLAG command
5bcc82
5bcc82
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-3
5bcc82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
5bcc82
5bcc82
* Mon Aug 15 2011 Kalev Lember <kalevlember@gmail.com> 1.5.0-2
5bcc82
- Rebuilt for rpm bug #728707
5bcc82
5bcc82
* Thu Jul 21 2011 Tomas Mraz <tmraz@redhat.com> 1.5.0-1
5bcc82
- new upstream version
5bcc82
5bcc82
* Mon Jun 20 2011 Tomas Mraz <tmraz@redhat.com> 1.4.6-4
5bcc82
- Always xor seed from /dev/urandom over /etc/gcrypt/rngseed
5bcc82
5bcc82
* Mon May 30 2011 Tomas Mraz <tmraz@redhat.com> 1.4.6-3
5bcc82
- Make the FIPS-186-3 DSA implementation CAVS testable
5bcc82
- add configurable source of RNG seed /etc/gcrypt/rngseed
5bcc82
  in the FIPS mode (#700388)
5bcc82
5bcc82
* Fri Feb 11 2011 Tomas Mraz <tmraz@redhat.com> 1.4.6-1
5bcc82
- new upstream version with minor changes
5bcc82
5bcc82
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.5-7
5bcc82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
5bcc82
5bcc82
* Fri Feb  4 2011 Tomas Mraz <tmraz@redhat.com> 1.4.5-6
5bcc82
- fix a bug in the fips-186-3 dsa parameter generation code
5bcc82
5bcc82
* Tue Feb  1 2011 Tomas Mraz <tmraz@redhat.com> 1.4.5-5
5bcc82
- use /dev/urandom for seeding in the FIPS mode
5bcc82
- make the tests to pass in the FIPS mode also fixing
5bcc82
  the FIPS-186-3 DSA keygen
5bcc82
5bcc82
* Sun Feb 14 2010 Rex Dieter <rdieter@fedoraproject.org> 1.4.5-4
5bcc82
- FTBFS libgcrypt-1.4.5-3.fc13: ImplicitDSOLinking (#564973)
5bcc82
5bcc82
* Wed Feb  3 2010 Tomas Mraz <tmraz@redhat.com> 1.4.5-3
5bcc82
- drop the S390 build workaround as it is no longer needed
5bcc82
- additional spec file cleanups for merge review (#226008)
5bcc82
5bcc82
* Mon Dec 21 2009 Tomas Mraz <tmraz@redhat.com> 1.4.5-1
5bcc82
- workaround for build on S390 (#548825)
5bcc82
- spec file cleanups
5bcc82
- upgrade to new minor upstream release
5bcc82
5bcc82
* Tue Aug 11 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-8
5bcc82
- fix warning when installed with --excludedocs (#515961)
5bcc82
5bcc82
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.4-7
5bcc82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
5bcc82
5bcc82
* Thu Jun 18 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-6
5bcc82
- and now really apply the padlock patch
5bcc82
5bcc82
* Wed Jun 17 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-5
5bcc82
- fix VIA padlock RNG inline assembly call (#505724)
5bcc82
5bcc82
* Thu Mar  5 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-4
5bcc82
- with the integrity verification check the library needs to link to libdl
5bcc82
  (#488702)
5bcc82
5bcc82
* Tue Mar  3 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-3
5bcc82
- add hmac FIPS integrity verification check
5bcc82
5bcc82
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.4-2
5bcc82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
5bcc82
5bcc82
* Fri Jan 30 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-1
5bcc82
- update to 1.4.4
5bcc82
- do not abort when the fips mode kernel flag is inaccessible
5bcc82
  due to permissions (#470219)
5bcc82
- hobble the library to drop the ECC support
5bcc82
5bcc82
* Mon Oct 20 2008 Dennis Gilmore <dennis@ausil.us> 1.4.3-2
5bcc82
- disable asm on sparc64
5bcc82
5bcc82
* Thu Sep 18 2008 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-1
5bcc82
- update to 1.4.3
5bcc82
- own /etc/gcrypt
5bcc82
5bcc82
* Mon Sep 15 2008 Nalin Dahyabhai <nalin@redhat.com>
5bcc82
- invoke make with %%{?_smp_mflags} to build faster on multi-processor
5bcc82
  systems (Steve Grubb)
5bcc82
5bcc82
* Mon Sep  8 2008 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-1
5bcc82
- update to 1.4.2
5bcc82
5bcc82
* Tue Apr 29 2008 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-1
5bcc82
- update to 1.4.1
5bcc82
- bump libgpgerror-devel requirement to 1.4, matching the requirement enforced
5bcc82
  by the configure script
5bcc82
5bcc82
* Thu Apr  3 2008 Joe Orton <jorton@redhat.com> 1.4.0-3
5bcc82
- add patch from upstream to fix severe performance regression
5bcc82
  in entropy gathering
5bcc82
5bcc82
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.4.0-2
5bcc82
- Autorebuild for GCC 4.3
5bcc82
5bcc82
* Mon Dec 10 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.4.0-1
5bcc82
- update to 1.4.0
5bcc82
5bcc82
* Tue Oct 16 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-6
5bcc82
- use ldconfig to build the soname symlink for packaging along with the
5bcc82
  shared library (#334731)
5bcc82
5bcc82
* Wed Aug 22 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-5
5bcc82
- add missing gawk buildrequirement
5bcc82
- switch from explicitly specifying the /dev/random RNG to just verifying
5bcc82
  that the non-LGPL ones were disabled by the configure script
5bcc82
5bcc82
* Thu Aug 16 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-4
5bcc82
- clarify license
5bcc82
- force use of the linux /dev/random RNG, to avoid accidentally falling back
5bcc82
  to others which would affect the license of the resulting library
5bcc82
5bcc82
* Mon Jul 30 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-3
5bcc82
- disable static libraries (part of #249815)
5bcc82
5bcc82
* Fri Jul 27 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-2
5bcc82
- move libgcrypt shared library to /%%{_lib} (#249815)
5bcc82
5bcc82
* Tue Feb  6 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-1
5bcc82
- update to 1.2.4
5bcc82
5bcc82
* Mon Jan 22 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.3-2
5bcc82
- make use of install-info more failsafe (Ville Skyttä, #223705)
5bcc82
5bcc82
* Fri Sep  1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.2.3-1
5bcc82
- update to 1.2.3
5bcc82
5bcc82
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.2.2-3.1
5bcc82
- rebuild
5bcc82
5bcc82
* Mon Jun 05 2006 Jesse Keating <jkeating@redhat.com> 1.2.2-3
5bcc82
- Added missing buildreq pkgconfig
5bcc82
5bcc82
* Tue May 16 2006 Nalin Dahyabhai <nalin@redhat.com> 1.2.2-2
5bcc82
- remove file conflicts in libgcrypt-config by making the 64-bit version
5bcc82
  think the libraries are in /usr/lib (which is wrong, but which it also
5bcc82
  prunes from the suggest --libs output, so no harm done, hopefully)
5bcc82
5bcc82
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.2.2-1.2.1
5bcc82
- bump again for double-long bug on ppc(64)
5bcc82
5bcc82
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.2.2-1.2
5bcc82
- rebuilt for new gcc4.1 snapshot and glibc changes
5bcc82
5bcc82
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
5bcc82
- rebuilt
5bcc82
5bcc82
* Wed Oct  5 2005 Nalin Dahyabhai <nalin@redhat.com> 1.2.2-1
5bcc82
- update to 1.2.2
5bcc82
5bcc82
* Wed Mar 16 2005 Nalin Dahyabhai <nalin@redhat.com> 1.2.1-1
5bcc82
- update to 1.2.1
5bcc82
5bcc82
* Fri Jul 30 2004 Florian La Roche <Florian.LaRoche@redhat.de>
5bcc82
- another try to package the symlink
5bcc82
5bcc82
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
5bcc82
- rebuilt
5bcc82
5bcc82
* Sun May  2 2004 Bill Nottingham <notting@redhat.com> - 1.2.0-1
5bcc82
- update to official 1.2.0
5bcc82
5bcc82
* Fri Apr 16 2004 Bill Nottingham <notting@redhat.com> - 1.1.94-1
5bcc82
- update to 1.1.94
5bcc82
5bcc82
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
5bcc82
- rebuilt
5bcc82
5bcc82
* Sat Feb 21 2004 Florian La Roche <Florian.LaRoche@redhat.de>
5bcc82
- add symlinks to shared libs at compile time
5bcc82
5bcc82
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
5bcc82
- rebuilt
5bcc82
5bcc82
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
5bcc82
- rebuilt
5bcc82
5bcc82
* Thu Mar 20 2003 Jeff Johnson <jbj@redhat.com> 1.1.12-1
5bcc82
- upgrade to 1.1.12 (beta).
5bcc82
5bcc82
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
5bcc82
- automated rebuild
5bcc82
5bcc82
* Sun May 26 2002 Tim Powers <timp@redhat.com>
5bcc82
- automated rebuild
5bcc82
5bcc82
* Tue May 21 2002 Jeff Johnson <jbj@redhat.com>
5bcc82
- update to 1.1.7
5bcc82
- change license to LGPL.
5bcc82
- include splint annotations patch.
5bcc82
- install info pages.
5bcc82
5bcc82
* Tue Apr  2 2002 Nalin Dahyabhai <nalin@redhat.com> 1.1.6-1
5bcc82
- update to 1.1.6
5bcc82
5bcc82
* Thu Jan 10 2002 Nalin Dahyabhai <nalin@redhat.com> 1.1.5-1
5bcc82
- fix the Source tag so that it's a real URL
5bcc82
5bcc82
* Thu Dec 20 2001 Nalin Dahyabhai <nalin@redhat.com>
5bcc82
- initial package