diff options
author | wiz <wiz@pkgsrc.org> | 2015-07-11 16:15:49 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2015-07-11 16:15:49 +0000 |
commit | 6157d937483ec00a4478355a797ab50d11eba6bf (patch) | |
tree | 839722d06aa4d028c9a27bffd1d060c1246f4d45 /www/librest07 | |
parent | a1f46df2f8d0162dafa00a0f887afd74e6a51987 (diff) | |
download | pkgsrc-6157d937483ec00a4478355a797ab50d11eba6bf.tar.gz |
Update to 0.7.93. No Changelog/NEWS file available,
but two pkgsrc patches are included.
Diffstat (limited to 'www/librest07')
-rw-r--r-- | www/librest07/Makefile | 6 | ||||
-rw-r--r-- | www/librest07/distinfo | 10 | ||||
-rw-r--r-- | www/librest07/patches/patch-rest_oauth-proxy-call.c | 17 | ||||
-rw-r--r-- | www/librest07/patches/patch-rest_rest-xml-parser.c | 18 |
4 files changed, 6 insertions, 45 deletions
diff --git a/www/librest07/Makefile b/www/librest07/Makefile index 41f06ce7f27..fa3f7ffe9a9 100644 --- a/www/librest07/Makefile +++ b/www/librest07/Makefile @@ -1,9 +1,7 @@ -# $NetBSD: Makefile,v 1.16 2015/06/07 14:06:00 youri Exp $ -# +# $NetBSD: Makefile,v 1.17 2015/07/11 16:15:49 wiz Exp $ -DISTNAME= rest-0.7.92 +DISTNAME= rest-0.7.93 PKGNAME= ${DISTNAME:S/rest/librest07/} -PKGREVISION= 1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_GNOME:=sources/rest/0.7/} EXTRACT_SUFX= .tar.xz diff --git a/www/librest07/distinfo b/www/librest07/distinfo index 1e00717bc1f..2270161f2d7 100644 --- a/www/librest07/distinfo +++ b/www/librest07/distinfo @@ -1,7 +1,5 @@ -$NetBSD: distinfo,v 1.2 2014/12/06 07:41:16 obache Exp $ +$NetBSD: distinfo,v 1.3 2015/07/11 16:15:49 wiz Exp $ -SHA1 (rest-0.7.92.tar.xz) = e8cb955148745e75313766a6b5fb7a0da6bf42e8 -RMD160 (rest-0.7.92.tar.xz) = 5d0a9c31094ebc5ead442df9019c1b714a09b18e -Size (rest-0.7.92.tar.xz) = 321580 bytes -SHA1 (patch-rest_oauth-proxy-call.c) = 102dcfab3f08272feb4e8536abbecb983dc3df11 -SHA1 (patch-rest_rest-xml-parser.c) = 23c5c77a146d86afb5c85e18a557374c2a017d79 +SHA1 (rest-0.7.93.tar.xz) = 9dd47fbc890f54894cf4c7a04546935c24f908c9 +RMD160 (rest-0.7.93.tar.xz) = 636ae4459814189d3087cd82f60401bd6c8e076a +Size (rest-0.7.93.tar.xz) = 321072 bytes diff --git a/www/librest07/patches/patch-rest_oauth-proxy-call.c b/www/librest07/patches/patch-rest_oauth-proxy-call.c deleted file mode 100644 index e6ff9d6d97a..00000000000 --- a/www/librest07/patches/patch-rest_oauth-proxy-call.c +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-rest_oauth-proxy-call.c,v 1.1 2014/12/06 07:41:16 obache Exp $ - -oauth: Add missing include -This fixes a compilation warning about a missing prototype. - -https://git.gnome.org/browse/librest/commit/?id=b50ace7738ea03817acdad87fb2b338a86018329 - ---- rest/oauth-proxy-call.c.orig 2014-09-03 08:29:14.000000000 +0000 -+++ rest/oauth-proxy-call.c -@@ -25,6 +25,7 @@ - #include <rest/rest-proxy-call.h> - #include "oauth-proxy-call.h" - #include "oauth-proxy-private.h" -+#include "rest-proxy-call-private.h" - #include "sha1.h" - - G_DEFINE_TYPE (OAuthProxyCall, oauth_proxy_call, REST_TYPE_PROXY_CALL) diff --git a/www/librest07/patches/patch-rest_rest-xml-parser.c b/www/librest07/patches/patch-rest_rest-xml-parser.c deleted file mode 100644 index 035eef45bc4..00000000000 --- a/www/librest07/patches/patch-rest_rest-xml-parser.c +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-rest_rest-xml-parser.c,v 1.1 2014/12/06 07:41:16 obache Exp $ - -xml-parser: Add missing break in switch statement -This would result in an inappropriate debug message appearing on valid -text data. - -https://git.gnome.org/browse/librest/commit/?id=272db68e131a20652c98453b75b9c743cda2b327 - ---- rest/rest-xml-parser.c.orig 2014-09-02 19:23:50.000000000 +0000 -+++ rest/rest-xml-parser.c -@@ -197,6 +197,7 @@ rest_xml_parser_parse_from_data (RestXml - cur_node->content = g_strdup (G(xmlTextReaderConstValue (reader))); - REST_DEBUG (XML_PARSER, "Text content found: %s", - cur_node->content); -+ break; - default: - REST_DEBUG (XML_PARSER, "Found unknown content with type: 0x%x", - xmlTextReaderNodeType (reader)); |