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 50B6F159C9B 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 9285AE2A58; 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 74B70E2A58 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 B05B9343005 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 421FC1E5D 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: <1722755864.17a390643654410d20262cec3446dcf38495dfa0.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-r2.ebuild X-VCS-Directories: app-text/htmlrecode/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 17a390643654410d20262cec3446dcf38495dfa0 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: 823205e9-0b4c-4bce-913e-5d6f11e02af6 X-Archives-Hash: 9b89145d2370cf641903b6eda5737c4b commit: 17a390643654410d20262cec3446dcf38495dfa0 Author: Filip Kobierski pm me> AuthorDate: Sun Jul 28 12:18:43 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sun Aug 4 07:17:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17a39064 app-text/htmlrecode: bump EAPI, fix QA issues Signed-off-by: Filip Kobierski pm.me> Closes: https://github.com/gentoo/gentoo/pull/37761 Signed-off-by: Joonas Niilola gentoo.org> app-text/htmlrecode/htmlrecode-1.3.1-r2.ebuild | 40 ++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/app-text/htmlrecode/htmlrecode-1.3.1-r2.ebuild b/app-text/htmlrecode/htmlrecode-1.3.1-r2.ebuild new file mode 100644 index 000000000000..36dd29809cda --- /dev/null +++ b/app-text/htmlrecode/htmlrecode-1.3.1-r2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +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" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +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 +}