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 E1838158083 for ; Wed, 11 Sep 2024 06:52:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B58FE29EB; Wed, 11 Sep 2024 06:52:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 00A6EE29EB for ; Wed, 11 Sep 2024 06:52:55 +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 17B5D34133B for ; Wed, 11 Sep 2024 06:52:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A06DA1952 for ; Wed, 11 Sep 2024 06:52:53 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1726037538.215a36bb4f77e29a6462921d9a556ec070c84682.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/indent/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/indent/Manifest dev-util/indent/indent-2.2.12.ebuild X-VCS-Directories: dev-util/indent/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 215a36bb4f77e29a6462921d9a556ec070c84682 X-VCS-Branch: master Date: Wed, 11 Sep 2024 06:52:53 +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: 2bc83337-6325-4a94-a328-330da9e18670 X-Archives-Hash: ec902abdf12de583ba58003538d59ddf commit: 215a36bb4f77e29a6462921d9a556ec070c84682 Author: Petr Vaněk gentoo org> AuthorDate: Wed Sep 11 06:35:03 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Wed Sep 11 06:52:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=215a36bb dev-util/indent: drop 2.2.12 Signed-off-by: Petr Vaněk gentoo.org> dev-util/indent/Manifest | 1 - dev-util/indent/indent-2.2.12.ebuild | 50 ------------------------------------ 2 files changed, 51 deletions(-) diff --git a/dev-util/indent/Manifest b/dev-util/indent/Manifest index cbc063493398..849bf83bbbd6 100644 --- a/dev-util/indent/Manifest +++ b/dev-util/indent/Manifest @@ -1,2 +1 @@ -DIST indent-2.2.12.tar.xz 620280 BLAKE2B c3414ebe58d75b74356b5c37234639dc34998b73e45a4c28ee20ab2932c523b528d577c45c32db88f2ee4aed58d1dceeda2fe68b8975d211dc0dad4a3a20f7c7 SHA512 dbe73bd3729074825f9f5b4241a4c539ad32069df56511963417caf0351ff9ec5edd77e9580338301c8abf89ab9c0592bc7e82c14eec7450c496259d7e9045dd DIST indent-2.2.13.tar.xz 475360 BLAKE2B 6aad65e966f91c9776d0b3d32f185a6c7b45eabca847c806c1fff935562f6c4512f472ec814dc54d3fc40498f513baee99b5bcfc2ea25fd67fd24b0cd0f9fe1a SHA512 a92028f99cc64b451aac99802de564f2e915e7f0e258df761141f77595c07cc95c3f2c35917618dbc2cfa3aa5b163544e07aa6641c32298aca3a1c5331bb8c69 diff --git a/dev-util/indent/indent-2.2.12.ebuild b/dev-util/indent/indent-2.2.12.ebuild deleted file mode 100644 index 11b20f5a8555..000000000000 --- a/dev-util/indent/indent-2.2.12.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools strip-linguas - -DESCRIPTION="Indent program source files" -HOMEPAGE="https://www.gnu.org/software/indent/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.xz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="nls" - -BDEPEND="app-text/texi2html - nls? ( sys-devel/gettext )" -DEPEND="nls? ( virtual/libintl )" -RDEPEND="${DEPEND}" - -src_prepare() { - default - - sed -i -e '/AM_CFLAGS/s:-Werror::g' src/Makefile.{am,in} || die - eautoreconf -} - -src_configure() { - strip-linguas -i po/ - - if use nls; then - gl_cv_cc_vis_werror=no \ - econf $(use_enable nls) - else - ac_cv_func_setlocale=no \ - gl_cv_cc_vis_werror=no \ - econf $(use_enable nls) - fi -} - -src_test() { - emake -C regression/ -} - -src_install() { - # htmldir as set in configure is ignored in doc/Makefile* - emake DESTDIR="${D}" htmldir="${EPREFIX}/usr/share/doc/${PF}/html" install - dodoc AUTHORS NEWS README.md ChangeLog{,-1990,-1998,-2001} -}