public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-libs/rest/files/, net-libs/rest/
@ 2016-08-21 12:44 Pacho Ramos
  0 siblings, 0 replies; only message in thread
From: Pacho Ramos @ 2016-08-21 12:44 UTC (permalink / raw
  To: gentoo-commits

commit:     d23c4edfc4b40371d06c6d8747ece4777a1fa201
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 21 11:46:06 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Aug 21 12:43:35 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d23c4edf

net-libs/rest: drop old

Package-Manager: portage-2.3.0

 net-libs/rest/Manifest                             |  1 -
 .../files/rest-0.7.92-oauth-missing-include.patch  | 25 ---------
 .../files/rest-0.7.92-tests-GError-pointers.patch  | 40 ---------------
 .../rest-0.7.92-xml-parser-missing-break.patch     | 26 ----------
 net-libs/rest/rest-0.7.93.ebuild                   | 60 ----------------------
 5 files changed, 152 deletions(-)

diff --git a/net-libs/rest/Manifest b/net-libs/rest/Manifest
index 59dcd20..26f1d0f 100644
--- a/net-libs/rest/Manifest
+++ b/net-libs/rest/Manifest
@@ -1,2 +1 @@
-DIST rest-0.7.93.tar.xz 321072 SHA256 c710644455340a44ddc005c645c466f05c0d779993138ea21a62c6082108b216 SHA512 50afb6730b8065d418e724c8afdb903521582669fb8744d91f400ebdbdb52323117193d3039ef4320b1bf7e3f60cc19ee6826ff7cb6c9bd680fc1ced067dff3b WHIRLPOOL 0cee91748750d7afc4a1108a8db91529400bdfb79fac122e11e631b96e9b694fb4bac8f0ca1554e221b9eff9268f4bea2d5802d199c3e69e0c9890d877e775cf
 DIST rest-0.8.0.tar.xz 334024 SHA256 e7b89b200c1417073aef739e8a27ff2ab578056c27796ec74f5886a5e0dff647 SHA512 dfcfed4196e613ed4415ea04eaa890e47d1d2e6899afdefff3dd7bfed5bcace58724158deb4c0cc7974f9a4493d00d5c0a27415160f2795df81c2210c14a823a WHIRLPOOL b4a2de0fac2fe5bd6280c5e06a18a2b3b2fe1ca3d6f6a38ae1a34c3a9d1a3d8efa8c19ffac15ed4f9ca2ef7a7febf225f8954f6446c3a7078a3e2c02ff08ee73

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
deleted file mode 100644
index 2fafa2c..0000000
--- a/net-libs/rest/files/rest-0.7.92-oauth-missing-include.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-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
deleted file mode 100644
index edc8b70..0000000
--- a/net-libs/rest/files/rest-0.7.92-tests-GError-pointers.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-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
deleted file mode 100644
index 7f2b5c4..0000000
--- a/net-libs/rest/files/rest-0.7.92-xml-parser-missing-break.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-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
-

diff --git a/net-libs/rest/rest-0.7.93.ebuild b/net-libs/rest/rest-0.7.93.ebuild
deleted file mode 100644
index 39dd6a3..0000000
--- a/net-libs/rest/rest-0.7.93.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit eutils gnome2 multilib-minimal virtualx
-
-DESCRIPTION="Helper library for RESTful services"
-HOMEPAGE="https://wiki.gnome.org/Projects/Librest"
-
-LICENSE="LGPL-2.1"
-SLOT="0.7"
-IUSE="+gnome +introspection test"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
-
-# Coverage testing should not be enabled
-RDEPEND="
-	app-misc/ca-certificates
-	>=dev-libs/glib-2.24:2[${MULTILIB_USEDEP}]
-	dev-libs/libxml2:2[${MULTILIB_USEDEP}]
-	net-libs/libsoup:2.4[${MULTILIB_USEDEP}]
-	gnome? ( >=net-libs/libsoup-gnome-2.25.1:2.4[${MULTILIB_USEDEP}] )
-	introspection? ( >=dev-libs/gobject-introspection-0.6.7 )
-"
-DEPEND="${RDEPEND}
-	>=dev-util/gtk-doc-am-1.13
-	>=dev-util/intltool-0.40
-	virtual/pkgconfig[${MULTILIB_USEDEP}]
-	test? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
-"
-
-multilib_src_configure() {
-	ECONF_SOURCE=${S} \
-	gnome2_src_configure \
-		--disable-static \
-		--disable-gcov \
-		--with-ca-certificates="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt \
-		$(use_with gnome) \
-		$(multilib_native_use_enable introspection)
-
-	if multilib_is_native_abi; then
-		ln -s "${S}"/docs/reference/rest/html docs/reference/rest/html || die
-	fi
-}
-
-multilib_src_test() {
-	# Tests need dbus
-	Xemake check
-}
-
-multilib_src_compile() {
-	gnome2_src_compile
-}
-
-multilib_src_install() {
-	gnome2_src_install
-}


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-08-21 12:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-21 12:44 [gentoo-commits] repo/gentoo:master commit in: net-libs/rest/files/, net-libs/rest/ Pacho Ramos

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox