summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-08-21 13:46:06 +0200
committerPacho Ramos <pacho@gentoo.org>2016-08-21 14:43:35 +0200
commitd23c4edfc4b40371d06c6d8747ece4777a1fa201 (patch)
tree94bee4dcbb862725f8efcdaa4c0cc5e3b4e5901a /net-libs/rest
parentprofiles/base/package.use.mask: media-libs/libdlna is being removed, bug #540214 (diff)
downloadgentoo-d23c4edfc4b40371d06c6d8747ece4777a1fa201.tar.gz
gentoo-d23c4edfc4b40371d06c6d8747ece4777a1fa201.tar.bz2
gentoo-d23c4edfc4b40371d06c6d8747ece4777a1fa201.zip
net-libs/rest: drop old
Package-Manager: portage-2.3.0
Diffstat (limited to 'net-libs/rest')
-rw-r--r--net-libs/rest/Manifest1
-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
-rw-r--r--net-libs/rest/rest-0.7.93.ebuild60
5 files changed, 0 insertions, 152 deletions
diff --git a/net-libs/rest/Manifest b/net-libs/rest/Manifest
index 59dcd200ed3e..26f1d0f79fc8 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 2fafa2c52758..000000000000
--- 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 edc8b7075905..000000000000
--- 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 7f2b5c40be77..000000000000
--- 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 39dd6a34de4e..000000000000
--- 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
-}