From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9ECBC59CA6 for ; Mon, 21 Mar 2016 15:24:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A117E21C053; Mon, 21 Mar 2016 15:24:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 06E6621C053 for ; Mon, 21 Mar 2016 15:24:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 31EE6340A67 for ; Mon, 21 Mar 2016 15:24:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C17E862 for ; Mon, 21 Mar 2016 15:24:10 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1458573023.f74e6f4cacc1f82a4b38aef75476a36b175e6875.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/html-xml-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/html-xml-utils/html-xml-utils-6.9-r1.ebuild X-VCS-Directories: app-text/html-xml-utils/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: f74e6f4cacc1f82a4b38aef75476a36b175e6875 X-VCS-Branch: master Date: Mon, 21 Mar 2016 15:24:10 +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-Archives-Salt: 910e688a-5946-414a-982c-77ffe4f7ab59 X-Archives-Hash: 496d6a510f2b1f9e7cd42712e379d0b2 commit: f74e6f4cacc1f82a4b38aef75476a36b175e6875 Author: Patrice Clement gentoo org> AuthorDate: Mon Mar 21 13:33:37 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Mon Mar 21 15:10:23 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f74e6f4c app-text/html-xml-utils: EAPI 6. Package-Manager: portage-2.2.26 .../html-xml-utils/html-xml-utils-6.9-r1.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/app-text/html-xml-utils/html-xml-utils-6.9-r1.ebuild b/app-text/html-xml-utils/html-xml-utils-6.9-r1.ebuild new file mode 100644 index 0000000..60893fd --- /dev/null +++ b/app-text/html-xml-utils/html-xml-utils-6.9-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="A number of simple utilities for manipulating HTML and XML files" +SRC_URI="http://www.w3.org/Tools/HTML-XML-utils/${P}.tar.gz" +HOMEPAGE="http://www.w3.org/Tools/HTML-XML-utils/" + +LICENSE="W3C" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-linux ~ppc-macos ~x86-macos" +IUSE="" + +RDEPEND="net-misc/curl" +DEPEND="${RDEPEND}" + +src_prepare() { + default + sed -e "/doc_DATA = COPYING/d" -i Makefile.in || die +}