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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 10B0B158089 for ; Fri, 15 Sep 2023 21:54:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA6BE2BC022; Fri, 15 Sep 2023 21:54:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A24132BC022 for ; Fri, 15 Sep 2023 21:54:08 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B623E335CE9 for ; Fri, 15 Sep 2023 21:54:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E819211A9 for ; Fri, 15 Sep 2023 21:54:05 +0000 (UTC) From: "Matthew Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Thode" Message-ID: <1694814832.405417d187c95ed92085f1e80f1fa354c5783f8e.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/augeas/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/augeas/augeas-1.14.0-r1.ebuild X-VCS-Directories: app-admin/augeas/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: 405417d187c95ed92085f1e80f1fa354c5783f8e X-VCS-Branch: master Date: Fri, 15 Sep 2023 21:54:05 +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: 728baea1-d82e-4002-b351-cc6d95cba814 X-Archives-Hash: 8dbbb999d6998bdf9b8ac4cd114f1718 commit: 405417d187c95ed92085f1e80f1fa354c5783f8e Author: Matthew Thode gentoo org> AuthorDate: Fri Sep 15 21:48:11 2023 +0000 Commit: Matthew Thode gentoo org> CommitDate: Fri Sep 15 21:53:52 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=405417d1 app-admin/augeas: drop 1.14.0-r1 Signed-off-by: Matthew Thode gentoo.org> app-admin/augeas/augeas-1.14.0-r1.ebuild | 52 -------------------------------- 1 file changed, 52 deletions(-) diff --git a/app-admin/augeas/augeas-1.14.0-r1.ebuild b/app-admin/augeas/augeas-1.14.0-r1.ebuild deleted file mode 100644 index 5a56cc583629..000000000000 --- a/app-admin/augeas/augeas-1.14.0-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="A library for changing configuration files" -HOMEPAGE="http://augeas.net/" -SRC_URI="https://github.com/hercules-team/augeas/releases/download/release-${PV}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/libxml2 - sys-libs/readline:=" -DEPEND="${RDEPEND}" -BDEPEND=" - >=app-doc/NaturalDocs-1.40 - virtual/pkgconfig - test? ( dev-lang/ruby ) -" - -PATCHES=( -) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - # selinux needs to be implemented - econf --without-selinux -} - -src_compile() { - addpredict /usr/share/NaturalDocs/Config/Languages.txt - addpredict /usr/share/NaturalDocs/Config/Topics.txt - - default -} - -src_install() { - default - - find "${ED}" -name '*.la' -delete || die -}