Accepting request 314335 from devel:libraries:c_c++

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/314335
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libnettle?expand=0&rev=22
This commit is contained in:
Stephan Kulow 2015-07-05 15:53:34 +00:00 committed by Git OBS Bridge
parent e53d15a4a4
commit fa8e21bc4d
3 changed files with 6 additions and 15 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Jun 22 08:43:05 UTC 2015 - tchvatal@suse.com
- Remove off-by-one-test-suite.patch as it was fixed by upstream
differently
-------------------------------------------------------------------
Sun Apr 26 19:43:52 UTC 2015 - astieger@suse.com

View File

@ -29,7 +29,6 @@ Source0: https://ftp.gnu.org/gnu/nettle/nettle-%{version}.tar.gz
Source1: https://ftp.gnu.org/gnu/nettle/nettle-%{version}.tar.gz.sig
Source2: %{name}.keyring
Source3: baselibs.conf
Patch0: off-by-one-test-suite.patch
BuildRequires: gmp-devel
BuildRequires: makeinfo
BuildRequires: pkgconfig
@ -92,7 +91,6 @@ operations using the nettle library.
%prep
%setup -q -n nettle-%{version}
%patch0
%build
%configure \

View File

@ -1,13 +0,0 @@
Index: testsuite/des-compat-test.c
===================================================================
--- testsuite/des-compat-test.c.orig
+++ testsuite/des-compat-test.c
@@ -346,7 +346,7 @@ test_main(void)
#ifndef LIBDES_LIT
if (verbose) printf("Doing ede ecb\n");
- for (i=0; i<(NUM_TESTS-1); i++)
+ for (i=0; i<(NUM_TESTS-2); i++)
{
if ((j=des_key_sched(&key_data[i], ks)) != 0)
{