|
|
9199b3 |
%bcond_without dane
|
|
|
9199b3 |
%bcond_with guile
|
|
|
9199b3 |
Summary: A TLS protocol implementation
|
|
|
9199b3 |
Name: gnutls
|
|
|
9199b3 |
Version: 3.1.16
|
|
|
9199b3 |
Release: 1%{?dist}
|
|
|
9199b3 |
# The libraries are LGPLv2.1+, utilities are GPLv3+, however
|
|
|
9199b3 |
# the bundled gnulib is LGPLv3+
|
|
|
9199b3 |
License: GPLv3+ and LGPLv2+ and LGPLv3+
|
|
|
9199b3 |
Group: System Environment/Libraries
|
|
|
9199b3 |
BuildRequires: p11-kit-devel >= 0.11, gettext
|
|
|
9199b3 |
BuildRequires: zlib-devel, readline-devel, libtasn1-devel >= 3.1
|
|
|
9199b3 |
BuildRequires: lzo-devel, libtool, automake, autoconf, texinfo
|
|
|
9199b3 |
BuildRequires: nettle-devel >= 2.5
|
|
|
9199b3 |
%if %{with dane}
|
|
|
9199b3 |
BuildRequires: unbound-devel
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
%if %{with guile}
|
|
|
9199b3 |
BuildRequires: guile-devel
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
URL: http://www.gnutls.org/
|
|
|
9199b3 |
#Source0: ftp://ftp.gnutls.org/gcrypt/gnutls/%{name}-%{version}.tar.xz
|
|
|
9199b3 |
#Source1: ftp://ftp.gnutls.org/gcrypt/gnutls/%{name}-%{version}.tar.xz.sig
|
|
|
9199b3 |
# XXX patent tainted code removed.
|
|
|
9199b3 |
Source0: %{name}-%{version}-hobbled.tar.xz
|
|
|
9199b3 |
Source1: libgnutls-config
|
|
|
9199b3 |
Source2: hobble-gnutls
|
|
|
9199b3 |
Source3: ecc.c
|
|
|
9199b3 |
Patch1: gnutls-3.1.7-rpath.patch
|
|
|
9199b3 |
# Use only FIPS approved ciphers in the FIPS mode
|
|
|
9199b3 |
Patch7: gnutls-2.12.21-fips-algorithms.patch
|
|
|
9199b3 |
Patch8: gnutls-3.1.11-nosrp.patch
|
|
|
9199b3 |
# Use random port in some tests to avoid conflicts during simultaneous builds on the same machine
|
|
|
9199b3 |
Patch9: gnutls-3.1.10-tests-rndport.patch
|
|
|
9199b3 |
Patch10: gnutls-3.1.11-suiteb.patch
|
|
|
9199b3 |
|
|
|
9199b3 |
# Wildcard bundling exception https://fedorahosted.org/fpc/ticket/174
|
|
|
9199b3 |
Provides: bundled(gnulib) = 20130424
|
|
|
9199b3 |
|
|
|
9199b3 |
%package c++
|
|
|
9199b3 |
Summary: The C++ interface to GnuTLS
|
|
|
9199b3 |
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
9199b3 |
|
|
|
9199b3 |
%package devel
|
|
|
9199b3 |
Summary: Development files for the %{name} package
|
|
|
9199b3 |
Group: Development/Libraries
|
|
|
9199b3 |
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
9199b3 |
Requires: %{name}-c++%{?_isa} = %{version}-%{release}
|
|
|
9199b3 |
%if %{with dane}
|
|
|
9199b3 |
Requires: %{name}-dane%{?_isa} = %{version}-%{release}
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
Requires: pkgconfig
|
|
|
9199b3 |
Requires(post): /sbin/install-info
|
|
|
9199b3 |
Requires(preun): /sbin/install-info
|
|
|
9199b3 |
|
|
|
9199b3 |
%package utils
|
|
|
9199b3 |
License: GPLv3+
|
|
|
9199b3 |
Summary: Command line tools for TLS protocol
|
|
|
9199b3 |
Group: Applications/System
|
|
|
9199b3 |
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
9199b3 |
%if %{with dane}
|
|
|
9199b3 |
Requires: %{name}-dane%{?_isa} = %{version}-%{release}
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
|
|
|
9199b3 |
%if %{with dane}
|
|
|
9199b3 |
%package dane
|
|
|
9199b3 |
Summary: A DANE protocol implementation for GnuTLS
|
|
|
9199b3 |
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
|
|
|
9199b3 |
%if %{with guile}
|
|
|
9199b3 |
%package guile
|
|
|
9199b3 |
Summary: Guile bindings for the GNUTLS library
|
|
|
9199b3 |
Group: Development/Libraries
|
|
|
9199b3 |
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
9199b3 |
Requires: guile
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
|
|
|
9199b3 |
%description
|
|
|
9199b3 |
GnuTLS is a project that aims to develop a library which provides a secure
|
|
|
9199b3 |
layer, over a reliable transport layer. Currently the GnuTLS library implements
|
|
|
9199b3 |
the proposed standards by the IETF's TLS working group.
|
|
|
9199b3 |
|
|
|
9199b3 |
%description c++
|
|
|
9199b3 |
GnuTLS is a project that aims to develop a library which provides a secure
|
|
|
9199b3 |
layer, over a reliable transport layer. Currently the GnuTLS library implements
|
|
|
9199b3 |
the proposed standards by the IETF's TLS working group.
|
|
|
9199b3 |
This package contains the C++ interface for the GnuTLS library.
|
|
|
9199b3 |
|
|
|
9199b3 |
%description devel
|
|
|
9199b3 |
GnuTLS is a project that aims to develop a library which provides a secure
|
|
|
9199b3 |
layer, over a reliable transport layer. Currently the GnuTLS library implements
|
|
|
9199b3 |
the proposed standards by the IETF's TLS working group.
|
|
|
9199b3 |
This package contains files needed for developing applications with
|
|
|
9199b3 |
the GnuTLS library.
|
|
|
9199b3 |
|
|
|
9199b3 |
%description utils
|
|
|
9199b3 |
GnuTLS is a project that aims to develop a library which provides a secure
|
|
|
9199b3 |
layer, over a reliable transport layer. Currently the GnuTLS library implements
|
|
|
9199b3 |
the proposed standards by the IETF's TLS working group.
|
|
|
9199b3 |
This package contains command line TLS client and server and certificate
|
|
|
9199b3 |
manipulation tools.
|
|
|
9199b3 |
|
|
|
9199b3 |
%if %{with dane}
|
|
|
9199b3 |
%description dane
|
|
|
9199b3 |
GnuTLS is a project that aims to develop a library which provides a secure
|
|
|
9199b3 |
layer, over a reliable transport layer. Currently the GnuTLS library implements
|
|
|
9199b3 |
the proposed standards by the IETF's TLS working group.
|
|
|
9199b3 |
This package contains library that implements the DANE protocol for verifying
|
|
|
9199b3 |
TLS certificates through DNSSEC.
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
|
|
|
9199b3 |
%if %{with guile}
|
|
|
9199b3 |
%description guile
|
|
|
9199b3 |
GnuTLS is a project that aims to develop a library which provides a secure
|
|
|
9199b3 |
layer, over a reliable transport layer. Currently the GnuTLS library implements
|
|
|
9199b3 |
the proposed standards by the IETF's TLS working group.
|
|
|
9199b3 |
This package contains Guile bindings for the library.
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
|
|
|
9199b3 |
%prep
|
|
|
9199b3 |
%setup -q
|
|
|
9199b3 |
|
|
|
9199b3 |
%patch1 -p1 -b .rpath
|
|
|
9199b3 |
# This patch is not applicable as we use nettle now but some parts will be
|
|
|
9199b3 |
# later reused.
|
|
|
9199b3 |
#%patch7 -p1 -b .fips
|
|
|
9199b3 |
%patch8 -p1 -b .nosrp
|
|
|
9199b3 |
%patch9 -p1 -b .rndport
|
|
|
9199b3 |
%patch10 -p1 -b .suiteb
|
|
|
9199b3 |
|
|
|
9199b3 |
%{SOURCE2} -e
|
|
|
9199b3 |
|
|
|
9199b3 |
cp -f %{SOURCE3} lib/algorithms
|
|
|
9199b3 |
|
|
|
9199b3 |
%build
|
|
|
9199b3 |
|
|
|
9199b3 |
export LDFLAGS="-Wl,--no-add-needed"
|
|
|
9199b3 |
|
|
|
9199b3 |
%configure --with-libtasn1-prefix=%{_prefix} \
|
|
|
9199b3 |
--with-included-libcfg \
|
|
|
9199b3 |
--disable-static \
|
|
|
9199b3 |
--disable-openssl-compatibility \
|
|
|
9199b3 |
--disable-srp-authentication \
|
|
|
9199b3 |
%if %{with guile}
|
|
|
9199b3 |
--enable-guile \
|
|
|
9199b3 |
%ifarch %{arm}
|
|
|
9199b3 |
--disable-largefile \
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
%else
|
|
|
9199b3 |
--disable-guile \
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
%if %{with dane}
|
|
|
9199b3 |
--enable-dane \
|
|
|
9199b3 |
%else
|
|
|
9199b3 |
--disable-dane \
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
--disable-rpath
|
|
|
9199b3 |
# Note that the arm hack above is not quite right and the proper thing would
|
|
|
9199b3 |
# be to compile guile with largefile support.
|
|
|
9199b3 |
make
|
|
|
9199b3 |
|
|
|
9199b3 |
%install
|
|
|
9199b3 |
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
9199b3 |
rm -f $RPM_BUILD_ROOT%{_bindir}/srptool
|
|
|
9199b3 |
rm -f $RPM_BUILD_ROOT%{_bindir}/gnutls-srpcrypt
|
|
|
9199b3 |
cp -f %{SOURCE1} $RPM_BUILD_ROOT%{_bindir}/libgnutls-config
|
|
|
9199b3 |
cp -f %{SOURCE1} $RPM_BUILD_ROOT%{_bindir}/libgnutls-extra-config
|
|
|
9199b3 |
rm -f $RPM_BUILD_ROOT%{_mandir}/man1/srptool.1
|
|
|
9199b3 |
rm -f $RPM_BUILD_ROOT%{_mandir}/man3/*srp*
|
|
|
9199b3 |
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
|
|
9199b3 |
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
|
|
9199b3 |
rm -f $RPM_BUILD_ROOT%{_libdir}/libguile*.a
|
|
|
9199b3 |
%if %{without dane}
|
|
|
9199b3 |
rm -f $RPM_BUILD_ROOT%{_libdir}/pkgconfig/gnutls-dane.pc
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
|
|
|
9199b3 |
%find_lang gnutls
|
|
|
9199b3 |
|
|
|
9199b3 |
%check
|
|
|
9199b3 |
make check
|
|
|
9199b3 |
|
|
|
9199b3 |
%post -p /sbin/ldconfig
|
|
|
9199b3 |
|
|
|
9199b3 |
%postun -p /sbin/ldconfig
|
|
|
9199b3 |
|
|
|
9199b3 |
%post c++ -p /sbin/ldconfig
|
|
|
9199b3 |
|
|
|
9199b3 |
%postun c++ -p /sbin/ldconfig
|
|
|
9199b3 |
|
|
|
9199b3 |
%post devel
|
|
|
9199b3 |
if [ -f %{_infodir}/gnutls.info.gz ]; then
|
|
|
9199b3 |
/sbin/install-info %{_infodir}/gnutls.info.gz %{_infodir}/dir || :
|
|
|
9199b3 |
fi
|
|
|
9199b3 |
|
|
|
9199b3 |
%preun devel
|
|
|
9199b3 |
if [ $1 = 0 -a -f %{_infodir}/gnutls.info.gz ]; then
|
|
|
9199b3 |
/sbin/install-info --delete %{_infodir}/gnutls.info.gz %{_infodir}/dir || :
|
|
|
9199b3 |
fi
|
|
|
9199b3 |
|
|
|
9199b3 |
%if %{with dane}
|
|
|
9199b3 |
%post dane -p /sbin/ldconfig
|
|
|
9199b3 |
|
|
|
9199b3 |
%postun dane -p /sbin/ldconfig
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
|
|
|
9199b3 |
%if %{with guile}
|
|
|
9199b3 |
%post guile -p /sbin/ldconfig
|
|
|
9199b3 |
|
|
|
9199b3 |
%postun guile -p /sbin/ldconfig
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
|
|
|
9199b3 |
%files -f gnutls.lang
|
|
|
9199b3 |
%defattr(-,root,root,-)
|
|
|
9199b3 |
%{_libdir}/libgnutls.so.28*
|
|
|
9199b3 |
%{_libdir}/libgnutls-xssl.so.0*
|
|
|
9199b3 |
%doc COPYING COPYING.LESSER README AUTHORS NEWS THANKS
|
|
|
9199b3 |
|
|
|
9199b3 |
%files c++
|
|
|
9199b3 |
%{_libdir}/libgnutlsxx.so.*
|
|
|
9199b3 |
|
|
|
9199b3 |
%files devel
|
|
|
9199b3 |
%defattr(-,root,root,-)
|
|
|
9199b3 |
%{_bindir}/libgnutls*-config
|
|
|
9199b3 |
%{_includedir}/*
|
|
|
9199b3 |
%{_libdir}/libgnutls*.so
|
|
|
9199b3 |
%{_libdir}/pkgconfig/*.pc
|
|
|
9199b3 |
%{_mandir}/man3/*
|
|
|
9199b3 |
%{_infodir}/gnutls*
|
|
|
9199b3 |
%{_infodir}/pkcs11-vision*
|
|
|
9199b3 |
|
|
|
9199b3 |
%files utils
|
|
|
9199b3 |
%defattr(-,root,root,-)
|
|
|
9199b3 |
%{_bindir}/certtool
|
|
|
9199b3 |
%{_bindir}/ocsptool
|
|
|
9199b3 |
%{_bindir}/psktool
|
|
|
9199b3 |
%{_bindir}/p11tool
|
|
|
9199b3 |
%if %{with dane}
|
|
|
9199b3 |
%{_bindir}/danetool
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
%{_bindir}/gnutls*
|
|
|
9199b3 |
%{_mandir}/man1/*
|
|
|
9199b3 |
%doc doc/certtool.cfg
|
|
|
9199b3 |
|
|
|
9199b3 |
%if %{with dane}
|
|
|
9199b3 |
%files dane
|
|
|
9199b3 |
%defattr(-,root,root,-)
|
|
|
9199b3 |
%{_libdir}/libgnutls-dane.so.*
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
|
|
|
9199b3 |
%if %{with guile}
|
|
|
9199b3 |
%files guile
|
|
|
9199b3 |
%defattr(-,root,root,-)
|
|
|
9199b3 |
%{_libdir}/libguile*.so*
|
|
|
9199b3 |
%{_datadir}/guile/site/gnutls
|
|
|
9199b3 |
%{_datadir}/guile/site/gnutls.scm
|
|
|
9199b3 |
%endif
|
|
|
9199b3 |
|
|
|
9199b3 |
%changelog
|
|
|
9199b3 |
* Tue Nov 5 2013 Tomáš Mráz <tmraz@redhat.com> 3.1.16-1
|
|
|
9199b3 |
- new upstream release
|
|
|
9199b3 |
- fixes CVE-2013-4466 off-by-one in dane_query_tlsa()
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Oct 29 2013 Tomáš Mráz <tmraz@redhat.com> 3.1.15-1
|
|
|
9199b3 |
- new upstream release
|
|
|
9199b3 |
- fixes CVE-2013-4466 buffer overflow in handling DANE entries
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon Jul 15 2013 Tomáš Mráz <tmraz@redhat.com> 3.1.13-1
|
|
|
9199b3 |
- new upstream release
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu May 23 2013 Tomáš Mráz <tmraz@redhat.com> 3.1.11-1
|
|
|
9199b3 |
- new upstream release
|
|
|
9199b3 |
- enable ECC NIST Suite B curves
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon Mar 25 2013 Tomas Mraz <tmraz@redhat.com> 3.1.10-1
|
|
|
9199b3 |
- new upstream release
|
|
|
9199b3 |
- license of the library is back to LGPLv2.1+
|
|
|
9199b3 |
|
|
|
9199b3 |
* Fri Mar 15 2013 Tomas Mraz <tmraz@redhat.com> 3.1.9-1
|
|
|
9199b3 |
- new upstream release
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Mar 7 2013 Tomas Mraz <tmraz@redhat.com> 3.1.8-3
|
|
|
9199b3 |
- drop the temporary old library
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Feb 26 2013 Tomas Mraz <tmraz@redhat.com> 3.1.8-2
|
|
|
9199b3 |
- don't send ECC algos as supported (#913797)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Feb 21 2013 Tomas Mraz <tmraz@redhat.com> 3.1.8-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Feb 6 2013 Tomas Mraz <tmraz@redhat.com> 3.1.7-1
|
|
|
9199b3 |
- new upstream version, requires rebuild of dependencies
|
|
|
9199b3 |
- this release temporarily includes old compatibility .so
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Feb 5 2013 Tomas Mraz <tmraz@redhat.com> 2.12.22-2
|
|
|
9199b3 |
- rebuilt with new libtasn1
|
|
|
9199b3 |
- make guile bindings optional - breaks i686 build and there is
|
|
|
9199b3 |
no dependent package
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Jan 8 2013 Tomas Mraz <tmraz@redhat.com> 2.12.22-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Nov 28 2012 Tomas Mraz <tmraz@redhat.com> 2.12.21-2
|
|
|
9199b3 |
- use RSA bit sizes supported by libgcrypt in FIPS mode for security
|
|
|
9199b3 |
levels (#879643)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Fri Nov 9 2012 Tomas Mraz <tmraz@redhat.com> 2.12.21-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Nov 1 2012 Tomas Mraz <tmraz@redhat.com> 2.12.20-4
|
|
|
9199b3 |
- negotiate only FIPS approved algorithms in the FIPS mode (#871826)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Aug 8 2012 Tomas Mraz <tmraz@redhat.com> 2.12.20-3
|
|
|
9199b3 |
- fix the gnutls-cli-debug manpage - patch by Peter Schiffer
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.12.20-2
|
|
|
9199b3 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon Jun 18 2012 Tomas Mraz <tmraz@redhat.com> 2.12.20-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Fri May 18 2012 Tomas Mraz <tmraz@redhat.com> 2.12.19-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Mar 29 2012 Tomas Mraz <tmraz@redhat.com> 2.12.18-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Mar 8 2012 Tomas Mraz <tmraz@redhat.com> 2.12.17-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
- fix leaks in key generation (#796302)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Fri Feb 03 2012 Kevin Fenzi <kevin@scrye.com> - 2.12.14-3
|
|
|
9199b3 |
- Disable largefile on arm arch. (#787287)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.12.14-2
|
|
|
9199b3 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Nov 8 2011 Tomas Mraz <tmraz@redhat.com> 2.12.14-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon Oct 24 2011 Tomas Mraz <tmraz@redhat.com> 2.12.12-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Sep 29 2011 Tomas Mraz <tmraz@redhat.com> 2.12.11-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Fri Aug 26 2011 Tomas Mraz <tmraz@redhat.com> 2.12.9-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Aug 16 2011 Tomas Mraz <tmraz@redhat.com> 2.12.8-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon Jul 25 2011 Tomas Mraz <tmraz@redhat.com> 2.12.7-2
|
|
|
9199b3 |
- fix problem when using new libgcrypt
|
|
|
9199b3 |
- split libgnutlsxx to a subpackage (#455146)
|
|
|
9199b3 |
- drop libgnutls-openssl (#460310)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Jun 21 2011 Tomas Mraz <tmraz@redhat.com> 2.12.7-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon May 9 2011 Tomas Mraz <tmraz@redhat.com> 2.12.4-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Apr 26 2011 Tomas Mraz <tmraz@redhat.com> 2.12.3-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon Apr 18 2011 Tomas Mraz <tmraz@redhat.com> 2.12.2-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Mar 3 2011 Tomas Mraz <tmraz@redhat.com> 2.10.5-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.4-2
|
|
|
9199b3 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Dec 8 2010 Tomas Mraz <tmraz@redhat.com> 2.10.4-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Dec 2 2010 Tomas Mraz <tmraz@redhat.com> 2.10.3-2
|
|
|
9199b3 |
- fix buffer overflow in gnutls-serv (#659259)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Fri Nov 19 2010 Tomas Mraz <tmraz@redhat.com> 2.10.3-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Sep 30 2010 Tomas Mraz <tmraz@redhat.com> 2.10.2-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Sep 29 2010 jkeating - 2.10.1-4
|
|
|
9199b3 |
- Rebuilt for gcc bug 634757
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Sep 23 2010 Tomas Mraz <tmraz@redhat.com> 2.10.1-3
|
|
|
9199b3 |
- more patching for internal errors regression (#629858)
|
|
|
9199b3 |
patch by Vivek Dasmohapatra
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Sep 21 2010 Tomas Mraz <tmraz@redhat.com> 2.10.1-2
|
|
|
9199b3 |
- backported patch from upstream git hopefully fixing internal errors
|
|
|
9199b3 |
(#629858)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Aug 4 2010 Tomas Mraz <tmraz@redhat.com> 2.10.1-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Jun 2 2010 Tomas Mraz <tmraz@redhat.com> 2.8.6-2
|
|
|
9199b3 |
- add support for safe renegotiation CVE-2009-3555 (#533125)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed May 12 2010 Tomas Mraz <tmraz@redhat.com> 2.8.6-1
|
|
|
9199b3 |
- upgrade to a new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon Feb 15 2010 Rex Dieter <rdieter@fedoraproject.org> 2.8.5-4
|
|
|
9199b3 |
- FTBFS gnutls-2.8.5-3.fc13: ImplicitDSOLinking (#564624)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Jan 28 2010 Tomas Mraz <tmraz@redhat.com> 2.8.5-3
|
|
|
9199b3 |
- drop superfluous rpath from binaries
|
|
|
9199b3 |
- do not call autoreconf during build
|
|
|
9199b3 |
- specify the license on utils subpackage
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon Jan 18 2010 Tomas Mraz <tmraz@redhat.com> 2.8.5-2
|
|
|
9199b3 |
- do not create static libraries (#556052)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon Nov 2 2009 Tomas Mraz <tmraz@redhat.com> 2.8.5-1
|
|
|
9199b3 |
- upgrade to a new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Sep 23 2009 Tomas Mraz <tmraz@redhat.com> 2.8.4-1
|
|
|
9199b3 |
- upgrade to a new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Fri Aug 14 2009 Tomas Mraz <tmraz@redhat.com> 2.8.3-1
|
|
|
9199b3 |
- upgrade to a new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.1-2
|
|
|
9199b3 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Jun 10 2009 Tomas Mraz <tmraz@redhat.com> 2.8.1-1
|
|
|
9199b3 |
- upgrade to a new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Jun 3 2009 Tomas Mraz <tmraz@redhat.com> 2.8.0-1
|
|
|
9199b3 |
- upgrade to a new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon May 4 2009 Tomas Mraz <tmraz@redhat.com> 2.6.6-1
|
|
|
9199b3 |
- upgrade to a new upstream version - security fixes
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Apr 14 2009 Tomas Mraz <tmraz@redhat.com> 2.6.5-1
|
|
|
9199b3 |
- upgrade to a new upstream version, minor bugfixes only
|
|
|
9199b3 |
|
|
|
9199b3 |
* Fri Mar 6 2009 Tomas Mraz <tmraz@redhat.com> 2.6.4-1
|
|
|
9199b3 |
- upgrade to a new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.3-2
|
|
|
9199b3 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon Dec 15 2008 Tomas Mraz <tmraz@redhat.com> 2.6.3-1
|
|
|
9199b3 |
- upgrade to a new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Dec 4 2008 Tomas Mraz <tmraz@redhat.com> 2.6.2-1
|
|
|
9199b3 |
- upgrade to a new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Nov 11 2008 Tomas Mraz <tmraz@redhat.com> 2.4.2-3
|
|
|
9199b3 |
- fix chain verification issue CVE-2008-4989 (#470079)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Sep 25 2008 Tomas Mraz <tmraz@redhat.com> 2.4.2-2
|
|
|
9199b3 |
- add guile subpackage (#463735)
|
|
|
9199b3 |
- force new libtool through autoreconf to drop unnecessary rpaths
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Sep 23 2008 Tomas Mraz <tmraz@redhat.com> 2.4.2-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Jul 1 2008 Tomas Mraz <tmraz@redhat.com> 2.4.1-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
- correct the license tag
|
|
|
9199b3 |
- explicit --with-included-opencdk not needed
|
|
|
9199b3 |
- use external lzo library, internal not included anymore
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Jun 24 2008 Tomas Mraz <tmraz@redhat.com> 2.4.0-1
|
|
|
9199b3 |
- upgrade to latest upstream
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue May 20 2008 Tomas Mraz <tmraz@redhat.com> 2.0.4-3
|
|
|
9199b3 |
- fix three security issues in gnutls handshake - GNUTLS-SA-2008-1
|
|
|
9199b3 |
(#447461, #447462, #447463)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon Feb 4 2008 Joe Orton <jorton@redhat.com> 2.0.4-2
|
|
|
9199b3 |
- use system libtasn1
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Dec 4 2007 Tomas Mraz <tmraz@redhat.com> 2.0.4-1
|
|
|
9199b3 |
- upgrade to latest upstream
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Aug 21 2007 Tomas Mraz <tmraz@redhat.com> 1.6.3-2
|
|
|
9199b3 |
- license tag fix
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Jun 6 2007 Tomas Mraz <tmraz@redhat.com> 1.6.3-1
|
|
|
9199b3 |
- upgrade to latest upstream (#232445)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Apr 10 2007 Tomas Mraz <tmraz@redhat.com> 1.4.5-2
|
|
|
9199b3 |
- properly require install-info (patch by Ville Skyttä)
|
|
|
9199b3 |
- standard buildroot and use dist tag
|
|
|
9199b3 |
- add COPYING and README to doc
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Feb 7 2007 Tomas Mraz <tmraz@redhat.com> 1.4.5-1
|
|
|
9199b3 |
- new upstream version
|
|
|
9199b3 |
- drop libtermcap-devel from buildrequires
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Sep 14 2006 Tomas Mraz <tmraz@redhat.com> 1.4.1-2
|
|
|
9199b3 |
- detect forged signatures - CVE-2006-4790 (#206411), patch
|
|
|
9199b3 |
from upstream
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Jul 18 2006 Tomas Mraz <tmraz@redhat.com> - 1.4.1-1
|
|
|
9199b3 |
- upgrade to new upstream version, only minor changes
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.4.0-1.1
|
|
|
9199b3 |
- rebuild
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Jun 14 2006 Tomas Mraz <tmraz@redhat.com> - 1.4.0-1
|
|
|
9199b3 |
- upgrade to new upstream version (#192070), rebuild
|
|
|
9199b3 |
of dependent packages required
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue May 16 2006 Tomas Mraz <tmraz@redhat.com> - 1.2.10-2
|
|
|
9199b3 |
- added missing buildrequires
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon Feb 13 2006 Tomas Mraz <tmraz@redhat.com> - 1.2.10-1
|
|
|
9199b3 |
- updated to new version (fixes CVE-2006-0645)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.2.9-3.2
|
|
|
9199b3 |
- bump again for double-long bug on ppc(64)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.2.9-3.1
|
|
|
9199b3 |
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Jan 3 2006 Jesse Keating <jkeating@redhat.com> 1.2.9-3
|
|
|
9199b3 |
- rebuilt
|
|
|
9199b3 |
|
|
|
9199b3 |
* Fri Dec 9 2005 Tomas Mraz <tmraz@redhat.com> 1.2.9-2
|
|
|
9199b3 |
- replaced *-config scripts with calls to pkg-config to
|
|
|
9199b3 |
solve multilib conflicts
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Nov 23 2005 Tomas Mraz <tmraz@redhat.com> 1.2.9-1
|
|
|
9199b3 |
- upgrade to newest upstream
|
|
|
9199b3 |
- removed .la files (#172635)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Sun Aug 7 2005 Tomas Mraz <tmraz@redhat.com> 1.2.6-1
|
|
|
9199b3 |
- upgrade to newest upstream (rebuild of dependencies necessary)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon Jul 4 2005 Tomas Mraz <tmraz@redhat.com> 1.0.25-2
|
|
|
9199b3 |
- split the command line tools to utils subpackage
|
|
|
9199b3 |
|
|
|
9199b3 |
* Sat Apr 30 2005 Tomas Mraz <tmraz@redhat.com> 1.0.25-1
|
|
|
9199b3 |
- new upstream version fixes potential DOS attack
|
|
|
9199b3 |
|
|
|
9199b3 |
* Sat Apr 23 2005 Tomas Mraz <tmraz@redhat.com> 1.0.24-2
|
|
|
9199b3 |
- readd the version script dropped by upstream
|
|
|
9199b3 |
|
|
|
9199b3 |
* Fri Apr 22 2005 Tomas Mraz <tmraz@redhat.com> 1.0.24-1
|
|
|
9199b3 |
- update to the latest upstream version on the 1.0 branch
|
|
|
9199b3 |
|
|
|
9199b3 |
* Wed Mar 2 2005 Warren Togami <wtogami@redhat.com> 1.0.20-6
|
|
|
9199b3 |
- gcc4 rebuild
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Jan 4 2005 Ivana Varekova <varekova@redhat.com> 1.0.20-5
|
|
|
9199b3 |
- add gnutls Requires zlib-devel (#144069)
|
|
|
9199b3 |
|
|
|
9199b3 |
* Mon Nov 08 2004 Colin Walters <walters@redhat.com> 1.0.20-4
|
|
|
9199b3 |
- Make gnutls-devel Require libgcrypt-devel
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Sep 21 2004 Jeff Johnson <jbj@redhat.com> 1.0.20-3
|
|
|
9199b3 |
- rebuild with release++, otherwise unchanged.
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Sep 7 2004 Jeff Johnson <jbj@redhat.com> 1.0.20-2
|
|
|
9199b3 |
- patent tainted SRP code removed.
|
|
|
9199b3 |
|
|
|
9199b3 |
* Sun Sep 5 2004 Jeff Johnson <jbj@redhat.com> 1.0.20-1
|
|
|
9199b3 |
- update to 1.0.20.
|
|
|
9199b3 |
- add --with-included-opencdk --with-included-libtasn1
|
|
|
9199b3 |
- add --with-included-libcfg --with-included-lzo
|
|
|
9199b3 |
- add --disable-srp-authentication.
|
|
|
9199b3 |
- do "make check" after build.
|
|
|
9199b3 |
|
|
|
9199b3 |
* Fri Mar 21 2003 Jeff Johnson <jbj@redhat.com> 0.9.2-1
|
|
|
9199b3 |
- upgrade to 0.9.2
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Jun 25 2002 Jeff Johnson <jbj@redhat.com> 0.4.4-1
|
|
|
9199b3 |
- update to 0.4.4.
|
|
|
9199b3 |
|
|
|
9199b3 |
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
|
|
9199b3 |
- automated rebuild
|
|
|
9199b3 |
|
|
|
9199b3 |
* Sat May 25 2002 Jeff Johnson <jbj@redhat.com> 0.4.3-1
|
|
|
9199b3 |
- update to 0.4.3.
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue May 21 2002 Jeff Johnson <jbj@redhat.com> 0.4.2-1
|
|
|
9199b3 |
- update to 0.4.2.
|
|
|
9199b3 |
- change license to LGPL.
|
|
|
9199b3 |
- include splint annotations patch.
|
|
|
9199b3 |
|
|
|
9199b3 |
* Tue Apr 2 2002 Nalin Dahyabhai <nalin@redhat.com> 0.4.0-1
|
|
|
9199b3 |
- update to 0.4.0
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Jan 17 2002 Nalin Dahyabhai <nalin@redhat.com> 0.3.2-1
|
|
|
9199b3 |
- update to 0.3.2
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Jan 10 2002 Nalin Dahyabhai <nalin@redhat.com> 0.3.0-1
|
|
|
9199b3 |
- add a URL
|
|
|
9199b3 |
|
|
|
9199b3 |
* Thu Dec 20 2001 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
9199b3 |
- initial package
|