This commit is contained in:
parent
77d5c73da7
commit
cf2f757f25
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a2cb85e2d35dfb7dacce20737dec6f0e8c0eccf4062e44c8eeaa74e4cb6f9615
|
|
||||||
size 4945945
|
|
3
gnutls-2.2.2.tar.bz2
Normal file
3
gnutls-2.2.2.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:cbb0e76c28a8b8ee93d49e1fea4cb31549904d95cd8f488309126f7f5046d616
|
||||||
|
size 4923519
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 3 17:40:32 CEST 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
|
- update to version 2.2.2
|
||||||
|
* Cipher priority string handling now handle strings that
|
||||||
|
starts with NULL
|
||||||
|
* Corrected memory leaks in session resuming and DHE ciphersuites
|
||||||
|
* Increased the default certificate verification chain limits and
|
||||||
|
allowed for checks without limitation
|
||||||
|
* Corrected the behaviour of gnutls_x509_crt_get_subject_alt_name()
|
||||||
|
and gnutls_x509_crt_get_subject_alt_name() to not null terminate
|
||||||
|
binary strings and return the proper size
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 31 11:12:46 CET 2008 - mkoenig@suse.de
|
Thu Jan 31 11:12:46 CET 2008 - mkoenig@suse.de
|
||||||
|
|
||||||
|
22
gnutls.spec
22
gnutls.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package gnutls (Version 2.2.1)
|
# spec file for package gnutls (Version 2.2.2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -13,9 +13,9 @@
|
|||||||
|
|
||||||
Name: gnutls
|
Name: gnutls
|
||||||
BuildRequires: gcc-c++ libgcrypt-devel libopencdk-devel
|
BuildRequires: gcc-c++ libgcrypt-devel libopencdk-devel
|
||||||
Version: 2.2.1
|
Version: 2.2.2
|
||||||
Release: 2
|
Release: 1
|
||||||
License: GPL v2 or later; LGPL v2.1 or later
|
License: GPL v3 or later; LGPL v2.1 or later
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Url: http://www.gnutls.org/
|
Url: http://www.gnutls.org/
|
||||||
Source0: %name-%version.tar.bz2
|
Source0: %name-%version.tar.bz2
|
||||||
@ -40,6 +40,7 @@ Authors:
|
|||||||
Andrew McDonald
|
Andrew McDonald
|
||||||
|
|
||||||
%package -n libgnutls26
|
%package -n libgnutls26
|
||||||
|
License: LGPL v2.1 or later
|
||||||
Summary: The GNU Transport Layer Security Library
|
Summary: The GNU Transport Layer Security Library
|
||||||
Group: Productivity/Networking/Security
|
Group: Productivity/Networking/Security
|
||||||
|
|
||||||
@ -58,6 +59,7 @@ Authors:
|
|||||||
Andrew McDonald
|
Andrew McDonald
|
||||||
|
|
||||||
%package -n libgnutls-extra26
|
%package -n libgnutls-extra26
|
||||||
|
License: GPL v3 or later
|
||||||
Summary: The GNU Transport Layer Security Library
|
Summary: The GNU Transport Layer Security Library
|
||||||
Group: Productivity/Networking/Security
|
Group: Productivity/Networking/Security
|
||||||
|
|
||||||
@ -76,6 +78,7 @@ Authors:
|
|||||||
Andrew McDonald
|
Andrew McDonald
|
||||||
|
|
||||||
%package -n libgnutls-devel
|
%package -n libgnutls-devel
|
||||||
|
License: LGPL v2.1 or later
|
||||||
Summary: Development package for gnutls
|
Summary: Development package for gnutls
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: libgnutls26 = %version glibc-devel libopencdk-devel libgcrypt-devel
|
Requires: libgnutls26 = %version glibc-devel libopencdk-devel libgcrypt-devel
|
||||||
@ -94,6 +97,7 @@ Authors:
|
|||||||
Andrew McDonald
|
Andrew McDonald
|
||||||
|
|
||||||
%package -n libgnutls-extra-devel
|
%package -n libgnutls-extra-devel
|
||||||
|
License: GPL v3 or later
|
||||||
Summary: The GNU Transport Layer Security Library
|
Summary: The GNU Transport Layer Security Library
|
||||||
Group: Productivity/Networking/Security
|
Group: Productivity/Networking/Security
|
||||||
Requires: libgnutls-extra26 = %version libgnutls-devel
|
Requires: libgnutls-extra26 = %version libgnutls-devel
|
||||||
@ -205,6 +209,16 @@ rm -rf %buildroot
|
|||||||
%_libdir/pkgconfig/gnutls-extra.pc
|
%_libdir/pkgconfig/gnutls-extra.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Apr 03 2008 mkoenig@suse.de
|
||||||
|
- update to version 2.2.2
|
||||||
|
* Cipher priority string handling now handle strings that
|
||||||
|
starts with NULL
|
||||||
|
* Corrected memory leaks in session resuming and DHE ciphersuites
|
||||||
|
* Increased the default certificate verification chain limits and
|
||||||
|
allowed for checks without limitation
|
||||||
|
* Corrected the behaviour of gnutls_x509_crt_get_subject_alt_name()
|
||||||
|
and gnutls_x509_crt_get_subject_alt_name() to not null terminate
|
||||||
|
binary strings and return the proper size
|
||||||
* Thu Jan 31 2008 mkoenig@suse.de
|
* Thu Jan 31 2008 mkoenig@suse.de
|
||||||
- update to version 2.2.1
|
- update to version 2.2.1
|
||||||
* Fixes the post_client_hello_function()
|
* Fixes the post_client_hello_function()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user