summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2015-08-08 13:49:04 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2015-08-08 17:38:18 -0700
commit56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch)
tree3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-libs/rest/files
downloadgentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip
proj/gentoo: Initial commit
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-libs/rest/files')
-rw-r--r--net-libs/rest/files/rest-0.7.92-oauth-missing-include.patch25
-rw-r--r--net-libs/rest/files/rest-0.7.92-tests-GError-pointers.patch40
-rw-r--r--net-libs/rest/files/rest-0.7.92-xml-parser-missing-break.patch26
3 files changed, 91 insertions, 0 deletions
diff --git a/net-libs/rest/files/rest-0.7.92-oauth-missing-include.patch b/net-libs/rest/files/rest-0.7.92-oauth-missing-include.patch
new file mode 100644
index 000000000000..2fafa2c52758
--- /dev/null
+++ b/net-libs/rest/files/rest-0.7.92-oauth-missing-include.patch
@@ -0,0 +1,25 @@
+From b50ace7738ea03817acdad87fb2b338a86018329 Mon Sep 17 00:00:00 2001
+From: Christophe Fergeau <cfergeau@redhat.com>
+Date: Wed, 3 Sep 2014 11:31:49 +0200
+Subject: [PATCH 2/3] oauth: Add missing include
+
+This fixes a compilation warning about a missing prototype.
+---
+ rest/oauth-proxy-call.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/rest/oauth-proxy-call.c b/rest/oauth-proxy-call.c
+index dce2c66..ab77b1a 100644
+--- a/rest/oauth-proxy-call.c
++++ b/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)
+--
+2.3.1
+
diff --git a/net-libs/rest/files/rest-0.7.92-tests-GError-pointers.patch b/net-libs/rest/files/rest-0.7.92-tests-GError-pointers.patch
new file mode 100644
index 000000000000..edc8b7075905
--- /dev/null
+++ b/net-libs/rest/files/rest-0.7.92-tests-GError-pointers.patch
@@ -0,0 +1,40 @@
+From 1bd0dc67914b7398acf60aaa42aa03bb4d36b839 Mon Sep 17 00:00:00 2001
+From: Alexandre Rostovtsev <tetromino@gentoo.org>
+Date: Thu, 5 Mar 2015 13:05:21 -0500
+Subject: [PATCH] tests: GError pointers must be initialized
+
+https://bugzilla.gnome.org/show_bug.cgi?id=745694
+---
+ tests/custom-serialize.c | 2 +-
+ tests/proxy-continuous.c | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/tests/custom-serialize.c b/tests/custom-serialize.c
+index b50405d..f683941 100644
+--- a/tests/custom-serialize.c
++++ b/tests/custom-serialize.c
+@@ -115,7 +115,7 @@ main (int argc, char **argv)
+ RestProxy *proxy;
+ RestProxyCall *call;
+ char *url;
+- GError *error;
++ GError *error = NULL;
+
+ #if !GLIB_CHECK_VERSION (2, 36, 0)
+ g_type_init ();
+diff --git a/tests/proxy-continuous.c b/tests/proxy-continuous.c
+index 9395cd2..22ad0f7 100644
+--- a/tests/proxy-continuous.c
++++ b/tests/proxy-continuous.c
+@@ -139,7 +139,7 @@ static void
+ stream_test (RestProxy *proxy)
+ {
+ RestProxyCall *call;
+- GError *error;
++ GError *error = NULL;
+
+ client_count = 1;
+
+--
+2.3.1
+
diff --git a/net-libs/rest/files/rest-0.7.92-xml-parser-missing-break.patch b/net-libs/rest/files/rest-0.7.92-xml-parser-missing-break.patch
new file mode 100644
index 000000000000..7f2b5c40be77
--- /dev/null
+++ b/net-libs/rest/files/rest-0.7.92-xml-parser-missing-break.patch
@@ -0,0 +1,26 @@
+From 272db68e131a20652c98453b75b9c743cda2b327 Mon Sep 17 00:00:00 2001
+From: Rob Bradford <rob@linux.intel.com>
+Date: Fri, 19 Sep 2014 17:06:00 +0100
+Subject: [PATCH 3/3] xml-parser: Add missing break in switch statement
+
+This would result in an inappropriate debug message appearing on valid
+text data.
+---
+ rest/rest-xml-parser.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/rest/rest-xml-parser.c b/rest/rest-xml-parser.c
+index 49b49b4..4447a1a 100644
+--- a/rest/rest-xml-parser.c
++++ b/rest/rest-xml-parser.c
+@@ -197,6 +197,7 @@ rest_xml_parser_parse_from_data (RestXmlParser *parser,
+ 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));
+--
+2.3.1
+