Update to 2.42.0

This commit is contained in:
Kalev Lember 2013-03-25 22:13:58 +01:00
parent 910d475814
commit 85267c4da0
4 changed files with 7 additions and 32 deletions

1
.gitignore vendored
View File

@ -41,3 +41,4 @@ libsoup-2.31.6.tar.bz2
/libsoup-2.41.90.tar.xz
/libsoup-2.41.91.tar.xz
/libsoup-2.41.92.tar.xz
/libsoup-2.42.0.tar.xz

View File

@ -1,27 +0,0 @@
From 096eed1a810f8c09c6e646adaeee248ed914595a Mon Sep 17 00:00:00 2001
From: Kalev Lember <kalevlember@gmail.com>
Date: Wed, 20 Mar 2013 17:33:35 +0100
Subject: [PATCH] requester-test: fix a printf format compiler warning
Could use G_GSIZE_FORMAT here, but casting to gulong is simpler.
---
tests/requester-test.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/requester-test.c b/tests/requester-test.c
index 147ba4c..6e169ad 100644
--- a/tests/requester-test.c
+++ b/tests/requester-test.c
@@ -691,7 +691,8 @@ do_null_char_request (SoupSession *session, const char *encoded_data,
}
if (nread != expected_len) {
- debug_printf (1, " response length mismatch: expected %d, got %lu\n", expected_len, nread);
+ debug_printf (1, " response length mismatch: expected %d, got %lu\n",
+ expected_len, (gulong)nread);
errors++;
} else if (memcmp (buf, expected_data, nread) != 0) {
debug_printf (1, " response data mismatch\n");
--
1.8.1.4

View File

@ -3,15 +3,14 @@
### Abstract ###
Name: libsoup
Version: 2.41.92
Version: 2.42.0
Release: 1%{?dist}
License: LGPLv2
Group: Development/Libraries
Summary: Soup, an HTTP library implementation
URL: http://live.gnome.org/LibSoup
#VCS: git:git://git.gnome.org/libsoup
Source: http://download.gnome.org/sources/libsoup/2.41/libsoup-%{version}.tar.xz
Patch0: libsoup-2.41.92-printf.patch
Source: http://download.gnome.org/sources/libsoup/2.42/libsoup-%{version}.tar.xz
Requires: glib-networking >= %{glib2_version}
### Build Dependencies ###
@ -48,7 +47,6 @@ you to develop applications that use the libsoup library.
%prep
%setup -q
%patch0 -p1 -b .printf
%build
%configure --disable-static
@ -83,6 +81,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
%{_datadir}/gtk-doc/html/%{name}-2.4
%changelog
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 2.42.0-1
- Update to 2.42.0
* Tue Mar 19 2013 Richard Hughes <rhughes@redhat.com> - 2.41.92-1
- Update to 2.41.92

View File

@ -1 +1 @@
a0788e6233c7e4f692a5849ac844fd0d libsoup-2.41.92.tar.xz
a632a38d2983c2a88679672d00940128 libsoup-2.42.0.tar.xz