Hello community,

here is the log from the commit of package curl for openSUSE:Factory checked in 
at 2012-07-30 20:12:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/curl (Old)
 and      /work/SRC/openSUSE:Factory/.curl.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "curl", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/curl/curl.changes        2012-07-12 
12:11:47.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.curl.new/curl.changes   2012-07-30 
20:15:23.000000000 +0200
@@ -1,0 +2,9 @@
+Sun Jul 29 22:14:25 UTC 2012 - [email protected]
+
+- Curl 7.27.0
+* support metalinks
+* Add sasl authentication support
+* various bugfixes
+- Fix previous change, _GNU_SOURCE --> AC_USE_SYSTEM_EXTENSIONS
+
+-------------------------------------------------------------------

Old:
----
  curl-7.25.0.tar.lzma
  curl-7.25.0.tar.lzma.asc

New:
----
  curl-7.27.0.tar.lzma
  curl-7.27.0.tar.lzma.asc

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ curl.spec ++++++
--- /var/tmp/diff_new_pack.Wg1byC/_old  2012-07-30 20:15:29.000000000 +0200
+++ /var/tmp/diff_new_pack.Wg1byC/_new  2012-07-30 20:15:29.000000000 +0200
@@ -21,7 +21,7 @@
 %bcond_without testsuite
 
 Name:           curl
-Version:        7.25.0
+Version:        7.27.0
 Release:        0
 Summary:        A Tool for Transferring Data from URLs
 License:        BSD-3-Clause ; MIT
@@ -98,7 +98,7 @@
 # (currently, libtool sets link_all_deplibs=(yes|unknown) everywhere,
 # will hopefully change in the future)
 sed -i 's/link_all_deplibs=unknown/link_all_deplibs=no/' configure
-%configure CFLAGS="%{optflags} -D_GNU_SOURCE=1" \
+%configure \
        --enable-ipv6 \
 %if %{with openssl}
        --with-ssl \
@@ -158,7 +158,7 @@
 %doc docs/{BUGS,FAQ,FEATURES,MANUAL,RESOURCES,TODO,TheArtOfHttpScripting}
 %doc lib/README.curl_off_t
 %{_prefix}/bin/curl
-%doc %{_mandir}/man1/curl.1.gz
+%doc %{_mandir}/man1/curl.1%{ext_man}
 
 %files -n libcurl4
 %defattr(-,root,root)
@@ -172,8 +172,9 @@
 %{_prefix}/share/aclocal/libcurl.m4
 %{_libdir}/libcurl.so
 %{_libdir}/pkgconfig/libcurl.pc
-%doc %{_mandir}/man1/curl-config.1.gz
-%doc %{_mandir}/man3/*
+%{_mandir}/man1/curl-config.1%{ext_man}
+%{_mandir}/man1/mk-ca-bundle.1%{ext_man}
+%{_mandir}/man3/*
 %doc docs/libcurl/symbols-in-versions
 
 %changelog

++++++ libcurl-ocloexec.patch ++++++
--- /var/tmp/diff_new_pack.Wg1byC/_old  2012-07-30 20:15:29.000000000 +0200
+++ /var/tmp/diff_new_pack.Wg1byC/_new  2012-07-30 20:15:29.000000000 +0200
@@ -118,7 +118,7 @@
  
 --- lib/netrc.c.orig
 +++ lib/netrc.c
-@@ -110,7 +110,7 @@ int Curl_parsenetrc(const char *host,
+@@ -107,7 +107,7 @@ int Curl_parsenetrc(const char *host,
      netrc_alloc = TRUE;
    }
  
@@ -129,7 +129,7 @@
      char *tok_buf;
 --- lib/ssluse.c.orig
 +++ lib/ssluse.c
-@@ -436,7 +436,7 @@ int cert_stuff(struct connectdata *conn,
+@@ -435,7 +435,7 @@ int cert_stuff(struct connectdata *conn,
        STACK_OF(X509) *ca = NULL;
        int i;
  
@@ -138,7 +138,7 @@
        if(!f) {
          failf(data, "could not open PKCS12 file '%s'", cert_file);
          return 0;
-@@ -2316,7 +2316,7 @@ static CURLcode servercert(struct connec
+@@ -2338,7 +2338,7 @@ static CURLcode servercert(struct connec
  
      /* e.g. match issuer name with provided issuer certificate */
      if(data->set.str[STRING_SSL_ISSUERCERT]) {
@@ -146,4 +146,44 @@
 +      fp=fopen(data->set.str[STRING_SSL_ISSUERCERT],"re");
        if(!fp) {
          if(strict)
-           failf(data, "SSL: Unable to open issuer cert (%s)\n",
+           failf(data, "SSL: Unable to open issuer cert (%s)",
+--- lib/connect.c.orig
++++ lib/connect.c
+@@ -1236,7 +1236,7 @@ CURLcode Curl_socket(struct connectdata
+                                     (struct curl_sockaddr *)addr);
+   else
+     /* opensocket callback not set, so simply create the socket now */
+-    *sockfd = socket(addr->family, addr->socktype, addr->protocol);
++    *sockfd = socket(addr->family, addr->socktype | SOCK_CLOEXEC, 
addr->protocol);
+ 
+   if(*sockfd == CURL_SOCKET_BAD)
+     /* no socket, no connection */
+--- configure.ac.orig
++++ configure.ac
+@@ -180,6 +180,7 @@ AC_CANONICAL_HOST
+ dnl Get system canonical name
+ AC_DEFINE_UNQUOTED(OS, "${host}", [cpu-machine-OS])
+ 
++AC_USE_SYSTEM_EXTENSIONS
+ dnl Checks for programs.
+ CURL_CHECK_PROG_CC
+ 
+@@ -193,6 +194,7 @@ dnl Our configure and build reentrant se
+ CURL_CONFIGURE_THREAD_SAFE
+ CURL_CONFIGURE_REENTRANT
+ 
++
+ dnl check for how to do large files
+ AC_SYS_LARGEFILE
+ 
+--- m4/curl-compilers.m4.orig
++++ m4/curl-compilers.m4
+@@ -1272,7 +1272,7 @@ dnl CPPFLAGS from being unexpectedly cha
+ AC_DEFUN([CURL_CHECK_PROG_CC], [
+   ac_save_CFLAGS="$CFLAGS"
+   ac_save_CPPFLAGS="$CPPFLAGS"
+-  AC_PROG_CC
++  AC_PROG_CC_STDC
+   CFLAGS="$ac_save_CFLAGS"
+   CPPFLAGS="$ac_save_CPPFLAGS"
+ ])

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to