From ea56ca9450de8f6e230f7f5fb5a97e19ac5e1d25 Mon Sep 17 00:00:00 2001 From: Kamil Dudka Date: Tue, 1 Dec 2009 12:26:26 +0000 Subject: [PATCH] - do not require valgrind on s390 and s390x - temporarily disabled SCP/SFTP test-suite (#539444) --- curl.spec | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/curl.spec b/curl.spec index d54504d..1d1a8f9 100644 --- a/curl.spec +++ b/curl.spec @@ -1,7 +1,7 @@ Summary: A utility for getting files from remote servers (FTP, HTTP, and others) Name: curl Version: 7.19.7 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: Applications/Internet Source: http://curl.haxx.se/download/%{name}-%{version}.tar.lzma @@ -23,11 +23,21 @@ BuildRequires: libidn-devel BuildRequires: libssh2-devel >= 1.2 BuildRequires: nss-devel BuildRequires: openldap-devel -BuildRequires: openssh-clients -BuildRequires: openssh-server + +# SCP/SFTP test suite temporarily disabled (#539444) + +#BuildRequires: openssh-clients +#BuildRequires: openssh-server + BuildRequires: pkgconfig BuildRequires: stunnel + +# valgrind is not available on some architectures, however it's going to be +# used only by the test-suite anyway +%ifnarch s390 s390x BuildRequires: valgrind +%endif + BuildRequires: zlib-devel Requires: libcurl = %{version}-%{release} @@ -162,6 +172,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/libcurl.m4 %changelog +* Tue Dec 01 2009 Kamil Dudka 7.19.7-4 +- do not require valgrind on s390 and s390x +- temporarily disabled SCP/SFTP test-suite (#539444) + * Thu Nov 12 2009 Kamil Dudka 7.19.7-3 - fix crash on doubly closed NSPR descriptor, patch contributed by Kevin Baughman (#534176)