SHA256
1
0
forked from pool/curl
OBS User unknown 2008-09-05 20:26:25 +00:00 committed by Git OBS Bridge
parent 94a690fc4d
commit 321358ed1c
4 changed files with 66 additions and 12 deletions

View File

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

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

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

View File

@ -1,3 +1,28 @@
-------------------------------------------------------------------
Tue Sep 2 14:23:51 CEST 2008 - mmarek@suse.cz
- updated to 7.19.0
* curl_off_t gets its size/typedef somewhat differently than
before. This _may_ cause an ABI change for you. See
/usr/share/doc/packages/curl/README.curl_off_t for a full
explanation. (Should not affect our package as it has LFS
enabled)
* Added CURLINFO_PRIMARY_IP
* Added CURLOPT_CRLFILE and CURLE_SSL_CRL_BADFILE
* Added CURLOPT_ISSUERCERT and CURLE_SSL_ISSUER_ERROR
* curl's option parser for boolean options reworked
* Added --remote-name-all
* Added CURLINFO_APPCONNECT_TIME
* Added test selection by key word in runtests.pl
* the curl tool's -w option support the %{ssl_verify_result}
variable
* Added CURLOPT_ADDRESS_SCOPE and scope parsing of the URL
according to RFC4007
* Support --append on SFTP uploads (not with OpenSSH, though)
* Added curlbuild.h and curlrules.h to the external library
interface
* lots of bugfixes
-------------------------------------------------------------------
Wed Jun 4 18:05:43 CEST 2008 - mmarek@suse.cz

View File

@ -1,16 +1,22 @@
#
# spec file for package curl (Version 7.18.2)
# spec file for package curl (Version 7.19.0)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
%define testsuite_nonfatal 1
Name: curl
BuildRequires: libidn-devel openldap2-devel openssl-devel zlib-devel
@ -24,7 +30,7 @@ BuildRequires: libssh2-devel openssh
%endif
# used by the testsuite
BuildRequires: stunnel
Version: 7.18.2
Version: 7.19.0
Release: 1
AutoReqProv: on
License: BSD 3-Clause; X11/MIT
@ -36,9 +42,9 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Curl is a client to get documents and files from or send documents to a
server using any of the supported protocols (HTTP, HTTPS, FTP, GOPHER,
DICT, TELNET, LDAP, or FILE). The command is designed to work without
user interaction or any kind of interactivity.
server using any of the supported protocols (HTTP, HTTPS, FTP, FTPS,
TFTP, DICT, TELNET, LDAP, or FILE). The command is designed to work
without user interaction or any kind of interactivity.
@ -125,7 +131,7 @@ fi
base=$((8990 + $BUILD_INCARNATION * 20))
# test 279 doesn't work with -b<num>
perl ./runtests.pl -a -b$base !279 || {
%if 0%{?testsuite_nonfatal:1}
%if 0%{?curl_testsuite_nonfatal:1}
echo "WARNING: runtests.pl failed with code $?, continuing nevertheless"
%else
exit
@ -149,6 +155,7 @@ rm -rf $RPM_BUILD_ROOT
%defattr(-,root,root)
%doc README RELEASE-NOTES
%doc docs/{BUGS,FAQ,FEATURES,MANUAL,RESOURCES,TODO,TheArtOfHttpScripting}
%doc lib/README.curl_off_t
%{_prefix}/bin/curl
%doc %{_mandir}/man1/curl.1.gz
@ -167,6 +174,28 @@ rm -rf $RPM_BUILD_ROOT
%doc %{_mandir}/man3/*
%changelog
* Tue Sep 02 2008 mmarek@suse.cz
- updated to 7.19.0
* curl_off_t gets its size/typedef somewhat differently than
before. This _may_ cause an ABI change for you. See
/usr/share/doc/packages/curl/README.curl_off_t for a full
explanation. (Should not affect our package as it has LFS
enabled)
* Added CURLINFO_PRIMARY_IP
* Added CURLOPT_CRLFILE and CURLE_SSL_CRL_BADFILE
* Added CURLOPT_ISSUERCERT and CURLE_SSL_ISSUER_ERROR
* curl's option parser for boolean options reworked
* Added --remote-name-all
* Added CURLINFO_APPCONNECT_TIME
* Added test selection by key word in runtests.pl
* the curl tool's -w option support the %%{ssl_verify_result}
variable
* Added CURLOPT_ADDRESS_SCOPE and scope parsing of the URL
according to RFC4007
* Support --append on SFTP uploads (not with OpenSSH, though)
* Added curlbuild.h and curlrules.h to the external library
interface
* lots of bugfixes
* Wed Jun 04 2008 mmarek@suse.cz
- updated to 7.18.2
* CURLFORM_STREAM was added