From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 061DB138359 for ; Sat, 15 Aug 2020 12:03:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 457ECE089C; Sat, 15 Aug 2020 12:03:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2BEB9E089C for ; Sat, 15 Aug 2020 12:03:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DC30A34F466 for ; Sat, 15 Aug 2020 12:03:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 365CF32D for ; Sat, 15 Aug 2020 12:03:28 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1597492710.b6950dbb4023a794944c216138caaeaa7bd115fc.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libhubbub/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libhubbub/libhubbub-0.3.6-r1.ebuild X-VCS-Directories: net-libs/libhubbub/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: b6950dbb4023a794944c216138caaeaa7bd115fc X-VCS-Branch: master Date: Sat, 15 Aug 2020 12:03:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2af88d62-2459-4ce8-8d0c-3f52d792f2bc X-Archives-Hash: 1dab8c296ac623b9eb82e63f8ba42350 commit: b6950dbb4023a794944c216138caaeaa7bd115fc Author: Michael Orlitzky gentoo org> AuthorDate: Sat Aug 15 01:04:38 2020 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sat Aug 15 11:58:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6950dbb net-libs/libhubbub: remove old "unused" version. Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Michael Orlitzky gentoo.org> net-libs/libhubbub/libhubbub-0.3.6-r1.ebuild | 57 ---------------------------- 1 file changed, 57 deletions(-) diff --git a/net-libs/libhubbub/libhubbub-0.3.6-r1.ebuild b/net-libs/libhubbub/libhubbub-0.3.6-r1.ebuild deleted file mode 100644 index e0afef19c3f..00000000000 --- a/net-libs/libhubbub/libhubbub-0.3.6-r1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs flag-o-matic - -DESCRIPTION="HTML5 compliant parsing library, written in C" -HOMEPAGE="https://www.netsurf-browser.org/projects/hubbub/" -SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz" - -LICENSE="MIT" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~m68k-mint" -IUSE="doc test" - -BDEPEND=" - dev-util/netsurf-buildsystem - virtual/pkgconfig - doc? ( app-doc/doxygen ) - test? ( dev-lang/perl ) -" -RDEPEND="dev-libs/libparserutils:=" -DEPEND="${RDEPEND} - test? ( dev-libs/json-c )" -RESTRICT="!test? ( test )" - -DOCS=( README docs/{Architecture,Macros,Todo,Treebuilder,Updated} ) -PATCHES=( "${FILESDIR}/libhubbub-0.3.6-json-c.patch" ) - -src_prepare() { - default - sed -e '1i#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"' \ - -i test/tree2.c || die -} - -_emake() { - source /usr/share/netsurf-buildsystem/gentoo-helpers.sh - netsurf_define_makeconf - append-cflags -Wno-error - emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@ -} - -src_compile() { - _emake - use doc && _emake docs -} - -src_test() { - _emake test -} - -src_install() { - _emake DESTDIR="${D}" install - use doc && HTML_DOCS=( docs/html/. ) - einstalldocs -}