public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-libs/hubbub/, net-libs/hubbub/files/, profiles/
@ 2016-06-26 15:17 Michał Górny
  0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2016-06-26 15:17 UTC (permalink / raw
  To: gentoo-commits

commit:     e823285e46e506ace40067ec810e39164fe2be26
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 26 15:13:48 2016 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jun 26 15:13:48 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e823285e

net-libs/hubbub: Remove last rited packages

 net-libs/hubbub/Manifest                           |   1 -
 net-libs/hubbub/files/hubbub-0.1.2-error.patch     | 317 ---------------------
 .../hubbub/files/hubbub-0.1.2-glibc-2.20.patch     |  17 --
 net-libs/hubbub/hubbub-0.1.2-r1.ebuild             |  36 ---
 net-libs/hubbub/hubbub-0.1.2.ebuild                |  79 -----
 net-libs/hubbub/metadata.xml                       |   8 -
 profiles/package.mask                              |   5 -
 7 files changed, 463 deletions(-)

diff --git a/net-libs/hubbub/Manifest b/net-libs/hubbub/Manifest
deleted file mode 100644
index 31e72eb..0000000
--- a/net-libs/hubbub/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST hubbub-0.1.2-src.tar.gz 812684 SHA256 95a1d5a71055b28a8e4ce4dc8516b8f0ed691c5ee03525bf73600495657f1b52 SHA512 c6fee003376a75fcca18ee630308320ae155df0149ceee48ad16bb69420c6a8a053bcfee17d6b315b137408284755028f37782d017873b16304ed041ea7934eb WHIRLPOOL 74c5038eabcf60b641a594300a551c139b4882439b08a70caaf4c22de868f7253dff4abab9eb3e517da86accc73882099ec8f854dcf37d1a7232731ba9d607bc

diff --git a/net-libs/hubbub/files/hubbub-0.1.2-error.patch b/net-libs/hubbub/files/hubbub-0.1.2-error.patch
deleted file mode 100644
index a8abcaf..0000000
--- a/net-libs/hubbub/files/hubbub-0.1.2-error.patch
+++ /dev/null
@@ -1,317 +0,0 @@
---- hubbub-0.1.2/test/csdetect.c
-+++ hubbub-0.1.2/test/csdetect.c
-@@ -108,7 +108,7 @@
- 	static int testnum;
- 
- 	assert(hubbub_charset_extract(data, len,
--			&mibenum, &source) == HUBBUB_OK);
-+			&mibenum, &source) == (parserutils_error)HUBBUB_OK);
- 
- 	assert(mibenum != 0);
- 
---- hubbub-0.1.2/test/parser.c
-+++ hubbub-0.1.2/test/parser.c
-@@ -24,7 +24,7 @@
- 	hubbub_parser *parser;
- 	hubbub_parser_optparams params;
- 	FILE *fp;
--	size_t len, origlen;
-+	size_t len;
- 	uint8_t *buf = alloca(CHUNK_SIZE);
- 	const char *charset;
- 	hubbub_charset_source cssource;
-@@ -46,7 +46,7 @@
- 	}
- 
- 	fseek(fp, 0, SEEK_END);
--	origlen = len = ftell(fp);
-+	len = ftell(fp);
- 	fseek(fp, 0, SEEK_SET);
- 
- 	while (len > 0) {
---- hubbub-0.1.2/test/tokeniser.c
-+++ hubbub-0.1.2/test/tokeniser.c
-@@ -26,7 +26,7 @@
- 	hubbub_tokeniser *tok;
- 	hubbub_tokeniser_optparams params;
- 	FILE *fp;
--	size_t len, origlen;
-+	size_t len;
- #define CHUNK_SIZE (4096)
- 	uint8_t buf[CHUNK_SIZE];
- 
-@@ -44,7 +44,7 @@
- 	params.token_handler.handler = token_handler;
- 	params.token_handler.pw = NULL;
- 	assert(hubbub_tokeniser_setopt(tok, HUBBUB_TOKENISER_TOKEN_HANDLER,
--			&params) == HUBBUB_OK);
-+			&params) == (hubbub_error)HUBBUB_OK);
- 
- 	fp = fopen(argv[1], "rb");
- 	if (fp == NULL) {
-@@ -53,7 +53,7 @@
- 	}
- 
- 	fseek(fp, 0, SEEK_END);
--	origlen = len = ftell(fp);
-+	len = ftell(fp);
- 	fseek(fp, 0, SEEK_SET);
- 
- 	while (len > 0) {
-@@ -63,7 +63,7 @@
-                         break;
-                 
- 		assert(parserutils_inputstream_append(stream,
--				buf, bytes_read) == HUBBUB_OK);
-+				buf, bytes_read) == (parserutils_error)HUBBUB_OK);
-
- 
- 		len -= bytes_read;
- 
---- hubbub-0.1.2/test/tokeniser2.c
-+++ hubbub-0.1.2/test/tokeniser2.c
-@@ -83,11 +83,9 @@
- 				printf("Test: %s\n",
- 					json_object_get_string(val));
- 			} else if (strcmp(key, "input") == 0) {
--				int len;
- 				ctx.input = (const uint8_t *)
--						json_object_get_string_len(val,
--						&len);
--				ctx.input_len = len;
-+						json_object_get_string(val);
-+				ctx.input_len = json_object_get_string_len(val);
- 			} else if (strcmp(key, "output") == 0) {
- 				ctx.output = json_object_get_array(val);
- 				ctx.output_index = 0;
-@@ -151,7 +149,7 @@
- 					ctx->last_start_tag);
- 
- 			assert(parserutils_inputstream_append(stream,
--				buf, len - 1) == HUBBUB_OK);
-+				buf, len - 1) == (parserutils_error)HUBBUB_OK);
- 
- 			assert(hubbub_tokeniser_run(tok) == HUBBUB_OK);
- 		}
-@@ -173,7 +171,7 @@
- 			params.content_model.model =
- 					HUBBUB_CONTENT_MODEL_PCDATA;
- 		} else {
--			char *cm = json_object_get_string(
-+			const char *cm = json_object_get_string(
- 				(struct json_object *)
- 				array_list_get_idx(ctx->content_model, i));
- 
-@@ -196,10 +194,10 @@
- 				&params) == HUBBUB_OK);
- 
- 		assert(parserutils_inputstream_append(stream,
--				ctx->input, ctx->input_len) == HUBBUB_OK);
-+				ctx->input, ctx->input_len) == (parserutils_error)HUBBUB_OK);
- 
- 		assert(parserutils_inputstream_append(stream, NULL, 0) ==
--				HUBBUB_OK);
-+				(parserutils_error)HUBBUB_OK);
- 
- 		printf("Input: '%.*s' (%d)\n", (int) ctx->input_len,
- 				(const char *) ctx->input, 
-@@ -271,11 +269,11 @@
- 	switch (token->type) {
- 	case HUBBUB_TOKEN_DOCTYPE:
- 	{
--		char *expname = json_object_get_string(
-+		const char *expname = json_object_get_string(
- 				array_list_get_idx(items, 1));
--		char *exppub = json_object_get_string(
-+		const char *exppub = json_object_get_string(
- 				array_list_get_idx(items, 2));
--		char *expsys = json_object_get_string(
-+		const char *expsys = json_object_get_string(
- 				array_list_get_idx(items, 3));
- 		bool expquirks = !json_object_get_boolean(
- 				array_list_get_idx(items, 4));
-@@ -332,7 +330,7 @@
- 		break;
- 	case HUBBUB_TOKEN_START_TAG:
- 	{
--		char *expname = json_object_get_string(
-+		const char *expname = json_object_get_string(
- 				array_list_get_idx(items, 1));
- 		struct lh_entry *expattrs = json_object_get_object(
- 				array_list_get_idx(items, 2))->head;
-@@ -366,7 +364,7 @@
- 
- 		for (i = 0; i < token->data.tag.n_attributes; i++) {
- 			char *expname = (char *) expattrs->k;
--			char *expval = json_object_get_string(
-+			const char *expval = json_object_get_string(
- 					(struct json_object *) expattrs->v);
- 			const char *gotname = (const char *)
- 				token->data.tag.attributes[i].name.ptr;
-@@ -395,7 +393,7 @@
- 		break;
- 	case HUBBUB_TOKEN_END_TAG:
- 	{
--		char *expname = json_object_get_string(
-+		const char *expname = json_object_get_string(
- 				array_list_get_idx(items, 1));
- 		const char *tagname = (const char *)
- 				token->data.tag.name.ptr;
-@@ -412,7 +410,7 @@
- 		break;
- 	case HUBBUB_TOKEN_COMMENT:
- 	{
--		char *expstr = json_object_get_string(
-+		const char *expstr = json_object_get_string(
- 				array_list_get_idx(items, 1));
- 		const char *gotstr = (const char *)
- 				token->data.comment.ptr;
-@@ -427,9 +425,10 @@
- 		break;
- 	case HUBBUB_TOKEN_CHARACTER:
- 	{
--		int expstrlen;
--		char *expstr = json_object_get_string_len(
--				array_list_get_idx(items, 1), &expstrlen);
-+		int expstrlen = json_object_get_string_len(
-+				array_list_get_idx(items, 1));
-+		const char *expstr = json_object_get_string(
-+				array_list_get_idx(items, 1));
- 		const char *gotstr = (const char *)
- 				token->data.character.ptr;
- 		size_t len = min(token->data.character.len,
---- hubbub-0.1.2/test/tokeniser3.c
-+++ hubbub-0.1.2/test/tokeniser3.c
-@@ -81,11 +81,9 @@
- 				printf("Test: %s\n",
- 					json_object_get_string(val));
- 			} else if (strcmp(key, "input") == 0) {
--				int len;
- 				ctx.input = (const uint8_t *)
--						json_object_get_string_len(val,
--						&len);
--				ctx.input_len = len;
-+						json_object_get_string(val);
-+				ctx.input_len = json_object_get_string_len(val);
- 			} else if (strcmp(key, "output") == 0) {
- 				ctx.output = json_object_get_array(val);
- 				ctx.output_index = 0;
-@@ -148,7 +146,7 @@
- 					ctx->last_start_tag);
- 
- 			assert(parserutils_inputstream_append(stream,
--				buf, len - 1) == HUBBUB_OK);
-+				buf, len - 1) == (parserutils_error)HUBBUB_OK);
- 
- 			assert(hubbub_tokeniser_run(tok) == HUBBUB_OK);
- 		}
-@@ -170,7 +168,7 @@
- 			params.content_model.model =
- 					HUBBUB_CONTENT_MODEL_PCDATA;
- 		} else {
--			char *cm = json_object_get_string(
-+			const char *cm = json_object_get_string(
- 				(struct json_object *)
- 				array_list_get_idx(ctx->content_model, i));
- 
-@@ -197,13 +197,13 @@
- 		for (j = 0; j < ctx->input_len; j++) {
- 			assert(parserutils_inputstream_append(stream,
- 					ctx->input + j, 1) ==
--							HUBBUB_OK);
-+						(parserutils_error)HUBBUB_OK);
- 
- 			assert(hubbub_tokeniser_run(tok) == HUBBUB_OK);
- 		}
- 
- 		assert(parserutils_inputstream_append(stream, NULL, 0) ==
--				HUBBUB_OK);
-+				(parserutils_error)HUBBUB_OK);
- 
- 		assert(hubbub_tokeniser_run(tok) == HUBBUB_OK);
- 
-@@ -273,11 +271,11 @@
- 	switch (token->type) {
- 	case HUBBUB_TOKEN_DOCTYPE:
- 	{
--		char *expname = json_object_get_string(
-+		const char *expname = json_object_get_string(
- 				array_list_get_idx(items, 1));
--		char *exppub = json_object_get_string(
-+		const char *exppub = json_object_get_string(
- 				array_list_get_idx(items, 2));
--		char *expsys = json_object_get_string(
-+		const char *expsys = json_object_get_string(
- 				array_list_get_idx(items, 3));
- 		bool expquirks = !json_object_get_boolean(
- 				array_list_get_idx(items, 4));
-@@ -337,7 +335,7 @@
- 		break;
- 	case HUBBUB_TOKEN_START_TAG:
- 	{
--		char *expname = json_object_get_string(
-+		const char *expname = json_object_get_string(
- 				array_list_get_idx(items, 1));
- 		struct lh_entry *expattrs = json_object_get_object(
- 				array_list_get_idx(items, 2))->head;
-@@ -371,7 +369,7 @@
- 
- 		for (i = 0; i < token->data.tag.n_attributes; i++) {
- 			char *expname = (char *) expattrs->k;
--			char *expval = json_object_get_string(
-+			const char *expval = json_object_get_string(
- 					(struct json_object *) expattrs->v);
- 			const char *gotname = (const char *)
- 				token->data.tag.attributes[i].name.ptr;
-@@ -400,7 +398,7 @@
- 		break;
- 	case HUBBUB_TOKEN_END_TAG:
- 	{
--		char *expname = json_object_get_string(
-+		const char *expname = json_object_get_string(
- 				array_list_get_idx(items, 1));
- 		const char *tagname = (const char *)
- 				token->data.tag.name.ptr;
-@@ -417,7 +415,7 @@
- 		break;
- 	case HUBBUB_TOKEN_COMMENT:
- 	{
--		char *expstr = json_object_get_string(
-+		const char *expstr = json_object_get_string(
- 				array_list_get_idx(items, 1));
- 		const char *gotstr = (const char *)
- 				token->data.comment.ptr;
-@@ -432,9 +430,10 @@
- 		break;
- 	case HUBBUB_TOKEN_CHARACTER:
- 	{
--		int expstrlen;
--		char *expstr = json_object_get_string_len(
--				array_list_get_idx(items, 1), &expstrlen);
-+		int expstrlen = json_object_get_string_len(
-+				array_list_get_idx(items, 1));
-+		const char *expstr = json_object_get_string(
-+				array_list_get_idx(items, 1));
- 		const char *gotstr = (const char *)
- 				token->data.character.ptr;
- 		size_t len = min(token->data.character.len,
---- hubbub-0.1.2/test/tree.c
-+++ hubbub-0.1.2/test/tree.c
-@@ -88,7 +88,7 @@
- 	hubbub_parser *parser;
- 	hubbub_parser_optparams params;
- 	FILE *fp;
--	size_t len, origlen;
-+	size_t len;
- 	uint8_t *buf = alloca(CHUNK_SIZE);
- 	const char *charset;
- 	hubbub_charset_source cssource;
-@@ -123,7 +123,7 @@
- 	}
- 
- 	fseek(fp, 0, SEEK_END);
--	origlen = len = ftell(fp);
-+	len = ftell(fp);
- 	fseek(fp, 0, SEEK_SET);
- 
- 	while (len > 0) {

diff --git a/net-libs/hubbub/files/hubbub-0.1.2-glibc-2.20.patch b/net-libs/hubbub/files/hubbub-0.1.2-glibc-2.20.patch
deleted file mode 100644
index 55c38ff..0000000
--- a/net-libs/hubbub/files/hubbub-0.1.2-glibc-2.20.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- work/hubbub-0.1.2/Makefile
-+++ work/hubbub-0.1.2/Makefile
-@@ -13,13 +13,7 @@
- WARNFLAGS := -Wall -W -Wundef -Wpointer-arith -Wcast-align \
- 	-Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
- 	-Wmissing-declarations -Wnested-externs -pedantic
--# BeOS/Haiku/AmigaOS have standard library errors that issue warnings.
--ifneq ($(TARGET),beos)
--  ifneq ($(TARGET),amiga)
--    WARNFLAGS := $(WARNFLAGS) -Werror
--  endif
--endif
--CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \
-+CFLAGS := -D_DEFAULT -I$(CURDIR)/include/ \
- 	-I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)
- ifneq ($(GCCVER),2)
-   CFLAGS := $(CFLAGS) -std=c99

diff --git a/net-libs/hubbub/hubbub-0.1.2-r1.ebuild b/net-libs/hubbub/hubbub-0.1.2-r1.ebuild
deleted file mode 100644
index 12d2d41..0000000
--- a/net-libs/hubbub/hubbub-0.1.2-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit netsurf
-
-DESCRIPTION="HTML5 compliant parsing library, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/hubbub/"
-SRC_URI="http://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm"
-IUSE="debug doc static-libs test"
-
-RDEPEND="<dev-libs/libparserutils-0.2
-	!net-libs/libhubbub"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-	virtual/libiconv
-	doc? ( app-doc/doxygen )
-	test? ( dev-lang/perl
-		dev-libs/json-c )"
-
-RESTRICT=test
-
-PATCHES=( "${FILESDIR}"/${P}-glibc-2.20.patch )
-
-src_install() {
-	netsurf_src_install
-
-	dodoc README docs/{Architecture,Macros,Todo,Treebuilder,Updated}
-	use doc && dohtml build/docs/html/*
-}

diff --git a/net-libs/hubbub/hubbub-0.1.2.ebuild b/net-libs/hubbub/hubbub-0.1.2.ebuild
deleted file mode 100644
index 7448df0..0000000
--- a/net-libs/hubbub/hubbub-0.1.2.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="HTML5 compliant parsing library, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/hubbub/"
-SRC_URI="http://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm"
-IUSE="debug doc static-libs test"
-
-RDEPEND="<dev-libs/libparserutils-0.2
-	!net-libs/libhubbub"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-	virtual/libiconv
-	doc? ( app-doc/doxygen )
-	test? ( dev-lang/perl
-		dev-libs/json-c )"
-
-RESTRICT=test
-
-pkg_setup(){
-	netsurf_src_prepare() {
-		sed -e "/^CCOPT :=/s:=.*:=:" \
-			-e "/^CCNOOPT :=/s:=.*:=:" \
-			-e "/^CCDBG :=/s:=.*:=:" \
-			-i build/makefiles/Makefile.{gcc,clang} || die
-		sed -e "/^INSTALL_ITEMS/s: /lib: /$(get_libdir):g" \
-			-i Makefile || die
-		sed -e "/^libdir/s:/lib:/$(get_libdir):g" \
-			-i ${NETSURF_PKGCONFIG:-${PN}}.pc.in || die
-	}
-	netsurf_src_configure() {
-		echo "Q := " >> Makefile.config
-		echo "CC := $(tc-getCC)" >> Makefile.config
-		echo "AR := $(tc-getAR)" >> Makefile.config
-	}
-
-	netsurf_make() {
-		emake COMPONENT_TYPE=lib-shared BUILD=$(usex debug debug release) "$@"
-		use static-libs && \
-			emake COMPONENT_TYPE=lib-static BUILD=$(usex debug debug release) "$@"
-	}
-}
-
-src_prepare() {
-	NETSURF_PKGCONFIG=lib${PN}
-	netsurf_src_prepare
-
-	epatch "${FILESDIR}"/${P}-error.patch
-}
-
-src_configure() {
-	netsurf_src_configure
-}
-
-src_compile() {
-	netsurf_make
-
-	use doc && emake docs
-}
-
-src_test() {
-	netsurf_make test
-}
-
-src_install() {
-	netsurf_make DESTDIR="${D}" PREFIX=/usr install
-
-	dodoc README docs/{Architecture,Macros,Todo,Treebuilder,Updated}
-	use doc && dohtml build/docs/html/*
-}

diff --git a/net-libs/hubbub/metadata.xml b/net-libs/hubbub/metadata.xml
deleted file mode 100644
index a535b88..0000000
--- a/net-libs/hubbub/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="person">
-<email>xmw@gentoo.org</email>
-<name>Michael Weber</name>
-</maintainer>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index b1d268b..badd33b 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -282,11 +282,6 @@ www-client/luakit
 # Force gnutls-3.4 testing so we can stabilize it.
 >=net-libs/gnutls-3.5.0
 
-# Michael Weber <xmw@gentoo.org> (08 May 2016)
-# Replaced by net-libs/libhubbub.
-# Masked for removal in 30 days. Bug #582382.
-net-libs/hubbub
-
 # Maciej Mrozowski <reavertm@gentoo.org> (3 May 2016)
 # Mask until >=net-libs/qxmpp-0.8.3 is provided with qt5 support.
 =net-im/kadu-3.0


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

only message in thread, other threads:[~2016-06-26 15:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-26 15:17 [gentoo-commits] repo/gentoo:master commit in: net-libs/hubbub/, net-libs/hubbub/files/, profiles/ Michał Górny

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