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 55CB213835A 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 781E1E08A0; 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 2CC19E08A0 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 D1F1234F465 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 243E632C 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: <1597492709.c1d5e19feef22b282e47ebd6b98340d74fda392c.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libdom/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libdom/libdom-0.3.3-r1.ebuild net-libs/libdom/libdom-0.4.0.ebuild net-libs/libdom/libdom-0.4.1.ebuild X-VCS-Directories: net-libs/libdom/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: c1d5e19feef22b282e47ebd6b98340d74fda392c 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: 1bcffdc0-ccc1-41c2-b644-aa1bd50f328c X-Archives-Hash: 775b22cecf92a6fe1626c6ea5136a268 commit: c1d5e19feef22b282e47ebd6b98340d74fda392c Author: Michael Orlitzky gentoo org> AuthorDate: Sat Aug 15 01:03:19 2020 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sat Aug 15 11:58:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1d5e19f net-libs/libdom: remove old "unused" ebuilds. Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Michael Orlitzky gentoo.org> net-libs/libdom/libdom-0.3.3-r1.ebuild | 56 -------------------------------- net-libs/libdom/libdom-0.4.0.ebuild | 58 ---------------------------------- net-libs/libdom/libdom-0.4.1.ebuild | 58 ---------------------------------- 3 files changed, 172 deletions(-) diff --git a/net-libs/libdom/libdom-0.3.3-r1.ebuild b/net-libs/libdom/libdom-0.3.3-r1.ebuild deleted file mode 100644 index 1a6947896f9..00000000000 --- a/net-libs/libdom/libdom-0.3.3-r1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="implementation of the W3C DOM, written in C" -HOMEPAGE="http://www.netsurf-browser.org/projects/libdom/" -SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz" - -LICENSE="MIT" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~m68k-mint" -IUSE="expat test xml" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-libs/libparserutils-0.2.1-r1 - >=dev-libs/libwapcaplet-0.3.0 - >=net-libs/libhubbub-0.3.1-r1 - xml? ( - expat? ( >=dev-libs/expat-2.1.0-r3 ) - !expat? ( >=dev-libs/libxml2-2.9.1-r4 ) - )" -DEPEND="${RDEPEND} - dev-util/netsurf-buildsystem - virtual/pkgconfig - test? ( - dev-perl/XML-XPath - dev-perl/libxml-perl - dev-perl/Switch - )" - -REQUIRED_USE="test? ( xml )" - -_emake() { - source /usr/share/netsurf-buildsystem/gentoo-helpers.sh - netsurf_define_makeconf - emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared \ - WITH_EXPAT_BINDING=$(usex xml $(usex expat yes no) no) \ - WITH_LIBXML_BINDING=$(usex xml $(usex expat no yes) no) \ - $@ -} - -src_compile() { - _emake -} - -src_test() { - _emake test -} - -src_install() { - _emake DESTDIR="${ED}" install -} diff --git a/net-libs/libdom/libdom-0.4.0.ebuild b/net-libs/libdom/libdom-0.4.0.ebuild deleted file mode 100644 index e9cb215757f..00000000000 --- a/net-libs/libdom/libdom-0.4.0.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="implementation of the W3C DOM, written in C" -HOMEPAGE="http://www.netsurf-browser.org/projects/libdom/" -SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz" - -LICENSE="MIT" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~m68k-mint" -IUSE="expat test xml" - -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/libparserutils - dev-libs/libwapcaplet - net-libs/libhubbub - xml? ( - expat? ( >=dev-libs/expat-2.1.0-r3 ) - !expat? ( >=dev-libs/libxml2-2.9.1-r4 ) - )" -DEPEND="${RDEPEND} - test? ( - dev-perl/XML-XPath - dev-perl/libxml-perl - dev-perl/Switch - )" -BDEPEND=" - dev-util/netsurf-buildsystem - virtual/pkgconfig" - -REQUIRED_USE="test? ( xml )" - -_emake() { - source /usr/share/netsurf-buildsystem/gentoo-helpers.sh - netsurf_define_makeconf - emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared \ - WITH_EXPAT_BINDING=$(usex xml $(usex expat yes no) no) \ - WITH_LIBXML_BINDING=$(usex xml $(usex expat no yes) no) \ - $@ -} - -src_compile() { - _emake -} - -src_test() { - _emake test -} - -src_install() { - _emake DESTDIR="${ED}" install -} diff --git a/net-libs/libdom/libdom-0.4.1.ebuild b/net-libs/libdom/libdom-0.4.1.ebuild deleted file mode 100644 index cdf28536a5d..00000000000 --- a/net-libs/libdom/libdom-0.4.1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="implementation of the W3C DOM, written in C" -HOMEPAGE="http://www.netsurf-browser.org/projects/libdom/" -SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz" - -LICENSE="MIT" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~m68k-mint" -IUSE="expat test xml" - -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/libparserutils - dev-libs/libwapcaplet - net-libs/libhubbub - xml? ( - expat? ( >=dev-libs/expat-2.1.0-r3 ) - !expat? ( >=dev-libs/libxml2-2.9.1-r4 ) - )" -DEPEND="${RDEPEND} - test? ( - dev-perl/XML-XPath - dev-perl/libxml-perl - dev-perl/Switch - )" -BDEPEND=" - dev-util/netsurf-buildsystem - virtual/pkgconfig" - -REQUIRED_USE="test? ( xml )" - -_emake() { - source /usr/share/netsurf-buildsystem/gentoo-helpers.sh - netsurf_define_makeconf - emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared \ - WITH_EXPAT_BINDING=$(usex xml $(usex expat yes no) no) \ - WITH_LIBXML_BINDING=$(usex xml $(usex expat no yes) no) \ - $@ -} - -src_compile() { - _emake -} - -src_test() { - _emake test -} - -src_install() { - _emake DESTDIR="${D}" install -}