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 6ECFC138334 for ; Wed, 12 Sep 2018 05:28:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0846DE0934; Wed, 12 Sep 2018 05:28:40 +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 D7133E0934 for ; Wed, 12 Sep 2018 05:28:39 +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 EC65533BE68 for ; Wed, 12 Sep 2018 05:28:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5114F3D7 for ; Wed, 12 Sep 2018 05:28:36 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1536730088.77efd3d130fe4313e2f53c34d5c672f2ceaf4039.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/htmlrecode/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/htmlrecode/htmlrecode-1.3.1.ebuild X-VCS-Directories: app-text/htmlrecode/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 77efd3d130fe4313e2f53c34d5c672f2ceaf4039 X-VCS-Branch: master Date: Wed, 12 Sep 2018 05:28:36 +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: 0b38bc4a-9ead-4f84-921b-6a6df6f65d8b X-Archives-Hash: 9dbfa1a97bdcb5575b41daa258b3480f commit: 77efd3d130fe4313e2f53c34d5c672f2ceaf4039 Author: Michael Mair-Keimberger gmail com> AuthorDate: Tue Sep 11 18:54:35 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Sep 12 05:28:08 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77efd3d1 app-text/htmlrecode: Drop old app-text/htmlrecode/htmlrecode-1.3.1.ebuild | 44 ----------------------------- 1 file changed, 44 deletions(-) diff --git a/app-text/htmlrecode/htmlrecode-1.3.1.ebuild b/app-text/htmlrecode/htmlrecode-1.3.1.ebuild deleted file mode 100644 index 1174c57d9c7..00000000000 --- a/app-text/htmlrecode/htmlrecode-1.3.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils toolchain-funcs - -DESCRIPTION="Recodes HTML file using a new character set" -HOMEPAGE="https://bisqwit.iki.fi/source/htmlrecode.html" -SRC_URI="https://bisqwit.iki.fi/src/arch/${P}.tar.bz2" - -KEYWORDS="~amd64 ~ppc ~x86" -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=">=sys-apps/sed-4" -RDEPEND="" - -src_prepare() { - epatch "${FILESDIR}/${P}-ar.patch" - touch .depend argh/.depend -} - -src_configure() { - : -} - -src_compile() { - local makeopts=( - AR="$(tc-getAR)" - CPPDEBUG= - CXX="$(tc-getCXX)" - CXXFLAGS="${CXXFLAGS}" - LDFLAGS="${LDFLAGS}" - ) - emake "${makeopts[@]}" -C argh libargh.a - emake "${makeopts[@]}" htmlrecode -} - -src_install() { - dobin htmlrecode - dohtml README.html -}