Update to 2.42.0
This commit is contained in:
parent
910d475814
commit
85267c4da0
1
.gitignore
vendored
1
.gitignore
vendored
@ -41,3 +41,4 @@ libsoup-2.31.6.tar.bz2
|
|||||||
/libsoup-2.41.90.tar.xz
|
/libsoup-2.41.90.tar.xz
|
||||||
/libsoup-2.41.91.tar.xz
|
/libsoup-2.41.91.tar.xz
|
||||||
/libsoup-2.41.92.tar.xz
|
/libsoup-2.41.92.tar.xz
|
||||||
|
/libsoup-2.42.0.tar.xz
|
||||||
|
@ -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
|
|
||||||
|
|
@ -3,15 +3,14 @@
|
|||||||
### Abstract ###
|
### Abstract ###
|
||||||
|
|
||||||
Name: libsoup
|
Name: libsoup
|
||||||
Version: 2.41.92
|
Version: 2.42.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: LGPLv2
|
License: LGPLv2
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Summary: Soup, an HTTP library implementation
|
Summary: Soup, an HTTP library implementation
|
||||||
URL: http://live.gnome.org/LibSoup
|
URL: http://live.gnome.org/LibSoup
|
||||||
#VCS: git:git://git.gnome.org/libsoup
|
#VCS: git:git://git.gnome.org/libsoup
|
||||||
Source: http://download.gnome.org/sources/libsoup/2.41/libsoup-%{version}.tar.xz
|
Source: http://download.gnome.org/sources/libsoup/2.42/libsoup-%{version}.tar.xz
|
||||||
Patch0: libsoup-2.41.92-printf.patch
|
|
||||||
Requires: glib-networking >= %{glib2_version}
|
Requires: glib-networking >= %{glib2_version}
|
||||||
|
|
||||||
### Build Dependencies ###
|
### Build Dependencies ###
|
||||||
@ -48,7 +47,6 @@ you to develop applications that use the libsoup library.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1 -b .printf
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static
|
%configure --disable-static
|
||||||
@ -83,6 +81,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
|
|||||||
%{_datadir}/gtk-doc/html/%{name}-2.4
|
%{_datadir}/gtk-doc/html/%{name}-2.4
|
||||||
|
|
||||||
%changelog
|
%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
|
* Tue Mar 19 2013 Richard Hughes <rhughes@redhat.com> - 2.41.92-1
|
||||||
- Update to 2.41.92
|
- Update to 2.41.92
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user