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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B29B1159C9B for ; Sun, 4 Aug 2024 07:19:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4DEDE2A5B; Sun, 4 Aug 2024 07:19:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A8B36E2A5B for ; Sun, 4 Aug 2024 07:19:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EAAD1343008 for ; Sun, 4 Aug 2024 07:19:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 571481E80 for ; Sun, 4 Aug 2024 07:19:33 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1722755910.ba68002f25a9a3adb9fe5a0696a20c4ae7e8bced.juippis@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-r1.ebuild X-VCS-Directories: app-text/htmlrecode/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: ba68002f25a9a3adb9fe5a0696a20c4ae7e8bced X-VCS-Branch: master Date: Sun, 4 Aug 2024 07:19:33 +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: 81443877-4a2b-4219-babf-f47fcfbeaedf X-Archives-Hash: 14ab3896c07eb5400a108876a297181a commit: ba68002f25a9a3adb9fe5a0696a20c4ae7e8bced Author: Joonas Niilola gentoo org> AuthorDate: Sun Aug 4 07:18:30 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sun Aug 4 07:18:30 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba68002f app-text/htmlrecode: drop 1.3.1-r1 Signed-off-by: Joonas Niilola gentoo.org> app-text/htmlrecode/htmlrecode-1.3.1-r1.ebuild | 41 -------------------------- 1 file changed, 41 deletions(-) diff --git a/app-text/htmlrecode/htmlrecode-1.3.1-r1.ebuild b/app-text/htmlrecode/htmlrecode-1.3.1-r1.ebuild deleted file mode 100644 index 4b9258115b94..000000000000 --- a/app-text/htmlrecode/htmlrecode-1.3.1-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit 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="" - -PATCHES=( "${FILESDIR}/${P}-ar.patch" ) - -src_prepare() { - touch .depend argh/.depend || die - default -} - -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 - dodoc README.html -}