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 36E28158090 for ; Tue, 24 May 2022 13:02:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A96DAE089A; Tue, 24 May 2022 13:02:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 855A2E0898 for ; Tue, 24 May 2022 13:02:54 +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 86380341DD5 for ; Tue, 24 May 2022 13:02:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A3904D5 for ; Tue, 24 May 2022 13:02:49 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1653397352.34a06999b1710f4a29bb60295848db3b2455ff0e.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/htmlmin/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/htmlmin/htmlmin-0.1.12-r1.ebuild X-VCS-Directories: app-text/htmlmin/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 34a06999b1710f4a29bb60295848db3b2455ff0e X-VCS-Branch: master Date: Tue, 24 May 2022 13:02:49 +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: 71385a27-71c7-4816-adc8-cb6f45431e96 X-Archives-Hash: fd7a1a5f38b2fc8fcbfae66162868220 commit: 34a06999b1710f4a29bb60295848db3b2455ff0e Author: Andrew Ammerlaan gentoo org> AuthorDate: Tue May 24 12:25:45 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Tue May 24 13:02:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34a06999 app-text/htmlmin: update EAPI 7 -> 8, enable py3.11, pep517 Signed-off-by: Andrew Ammerlaan gentoo.org> app-text/htmlmin/htmlmin-0.1.12-r1.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/app-text/htmlmin/htmlmin-0.1.12-r1.ebuild b/app-text/htmlmin/htmlmin-0.1.12-r1.ebuild new file mode 100644 index 000000000000..6bc38c00903f --- /dev/null +++ b/app-text/htmlmin/htmlmin-0.1.12-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +# upstream doesn't do tags much +EGIT_COMMIT=220b1d16442eb4b6fafed338ee3b61f698a01e63 +DESCRIPTION="A configurable HTML Minifier with safety features" +HOMEPAGE="https://github.com/mankyd/htmlmin" +SRC_URI=" + https://github.com/mankyd/htmlmin/archive/${EGIT_COMMIT}.tar.gz + -> ${P}.gh.tar.gz" +S="${WORKDIR}/${PN}-${EGIT_COMMIT}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +distutils_enable_tests setup.py + +src_prepare() { + sed '/prune/d' -i MANIFEST.in || die + distutils-r1_src_prepare +}