OBS User unknown 2007-07-10 15:25:05 +00:00 committed by Git OBS Bridge
parent 28a25cd7b3
commit 82e276bd8c
7 changed files with 47 additions and 30 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2e833e81d43f6294e5bd0d1776d68bd147bdab31e86c7544dc1462e44db9bfa2
size 1664414

3
curl-7.16.3.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8aa3a836fbfedec173afa28fecd286eb3329c6801b78e57ca167ab7c2b966736
size 1667843

View File

@ -1,6 +1,10 @@
--- tests/data/test241
---
tests/data/test241 | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--- tests/data/test241.orig
+++ tests/data/test241
@@ -29,10 +29,10 @@
@@ -30,10 +30,10 @@ ipv6
http-ipv6
</server>
<name>
@ -13,7 +17,7 @@
</command>
<precheck>
./server/resolve --ipv6 ip6-localhost
@@ -47,7 +47,7 @@
@@ -48,7 +48,7 @@ HTTP-IPv6 GET (using ip6-localhost)
</strip>
<protocol>
GET /241 HTTP/1.1

View File

@ -1,11 +0,0 @@
--- lib/progress.c
+++ lib/progress.c
@@ -68,7 +68,7 @@
Add suffix k, M, G when suitable... */
static char *max5data(curl_off_t bytes, char *max5)
{
-#define ONE_KILOBYTE 1024
+#define ONE_KILOBYTE 1024LL
#define ONE_MEGABYTE (1024* ONE_KILOBYTE)
#define ONE_GIGABYTE (1024* ONE_MEGABYTE)
#define ONE_TERRABYTE ((curl_off_t)1024* ONE_GIGABYTE)

View File

@ -1,6 +1,10 @@
--- lib/ldap.c
---
lib/ldap.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
--- lib/ldap.c.orig
+++ lib/ldap.c
@@ -204,7 +204,10 @@ static dynafunc DynaGetFunction(const ch
@@ -198,7 +198,10 @@ static dynafunc DynaGetFunction(const ch
* cannot typecast a data pointer to a function pointer, but that's
* exactly what we need to do here to avoid compiler warnings on picky
* compilers! */
@ -10,5 +14,5 @@
+ * strict aliasing bugs... */
+ func = dlsym(libldap, name);
}
#elif defined(WIN32)
if (libldap) {
#ifdef DL_LBER_FILE
if (!func && liblber) {

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Mon Jul 9 10:35:48 CEST 2007 - mmarek@suse.cz
- updated to 7.16.3
* many bugfixes
* support for running multiple testsuites in paralell
- removed lfs patch leftover
-------------------------------------------------------------------
Mon Jun 4 10:16:40 CEST 2007 - mmarek@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package curl (Version 7.16.2)
# spec file for package curl (Version 7.16.3)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@ -12,18 +12,16 @@
Name: curl
BuildRequires: libidn-devel openssl-devel zlib-devel
Version: 7.16.2
Release: 7
Version: 7.16.3
Release: 1
Autoreqprov: on
License: BSD License and BSD-like, X11/MIT
License: BSD 3-Clause, X11/MIT
Group: Productivity/Networking/Web/Utilities
Summary: A Tool for Transferring Data from URLs
URL: http://curl.haxx.se/
Source: curl-%{version}.tar.bz2
Patch1: curl-lfs.patch
Patch2: curl-ipv6tests.patch
Patch3: curl-7.16.1-strict-aliasing.patch
# The ftp-range bug is fixed in 7.16.2, testcase works, Patch4 is obsolete.
Patch3: curl-strict-aliasing.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@ -87,7 +85,6 @@ Authors:
%prep
%setup -q
%patch1
%patch2
%patch3
@ -109,7 +106,17 @@ export CFLAGS="$RPM_OPT_FLAGS -fstack-protector"
--disable-static
# enable-hidden-symbols needs gcc4 and causes that curl exports only its API
make %{?jobs:-j%jobs}
make check
cd tests
make
# make sure the testsuite runs don't race on MP machines in autobuild
if test -z "$BUILD_INCARNATION" -a -r /.buildenv; then
. /.buildenv
fi
if test -z "$BUILD_INCARNATION"; then
BUILD_INCARNATION=0
fi
base=$((8990 + $BUILD_INCARNATION * 20))
perl ./runtests.pl -a -b$base !279 # test 279 doesn't work with -b<num>
%install
make install DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir}
@ -151,6 +158,11 @@ rm -rf $RPM_BUILD_ROOT
%doc %{_mandir}/man3/*
%changelog
* Mon Jul 09 2007 - mmarek@suse.cz
- updated to 7.16.3
* many bugfixes
* support for running multiple testsuites in paralell
- removed lfs patch leftover
* Mon Jun 04 2007 - mmarek@suse.cz
- install libcurl.m4 [#275462]
* Fri Jun 01 2007 - dmueller@suse.de