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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0DEC21382C5 for ; Thu, 17 Dec 2020 21:02:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F15A6E0942; Thu, 17 Dec 2020 21:02:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D6112E0942 for ; Thu, 17 Dec 2020 21:02:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F63434132E for ; Thu, 17 Dec 2020 21:02:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 115AA57 for ; Thu, 17 Dec 2020 21:02:52 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1608238968.8221499051ba54c3cfaad2bae1a6928564a0a351.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/judy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/judy/judy-1.0.5-r2.ebuild dev-libs/judy/judy-1.0.5-r3.ebuild X-VCS-Directories: dev-libs/judy/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 8221499051ba54c3cfaad2bae1a6928564a0a351 X-VCS-Branch: master Date: Thu, 17 Dec 2020 21:02:52 +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: 56da8175-31e5-4ae2-bf9c-17cc5dc58dcf X-Archives-Hash: 0db6ae658861697491fce645f3e7e8e5 commit: 8221499051ba54c3cfaad2bae1a6928564a0a351 Author: Brian Evans gentoo org> AuthorDate: Thu Dec 17 20:44:49 2020 +0000 Commit: Brian Evans gentoo org> CommitDate: Thu Dec 17 21:02:48 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82214990 dev-libs/judy: Drop ltprune inherit; Revbump for EAPI 7 Signed-off-by: Brian Evans gentoo.org> dev-libs/judy/judy-1.0.5-r2.ebuild | 4 ++-- dev-libs/judy/{judy-1.0.5-r2.ebuild => judy-1.0.5-r3.ebuild} | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-libs/judy/judy-1.0.5-r2.ebuild b/dev-libs/judy/judy-1.0.5-r2.ebuild index 9e0e3bc742e..548bcefdca8 100644 --- a/dev-libs/judy/judy-1.0.5-r2.ebuild +++ b/dev-libs/judy/judy-1.0.5-r2.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit autotools ltprune multilib-minimal +inherit autotools multilib-minimal DESCRIPTION="A C library that implements a dynamic array" HOMEPAGE="http://judy.sourceforge.net/" @@ -30,5 +30,5 @@ multilib_src_configure() { multilib_src_install_all(){ einstalldocs - prune_libtool_files + find "${ED}" -name '*.la' -delete || die } diff --git a/dev-libs/judy/judy-1.0.5-r2.ebuild b/dev-libs/judy/judy-1.0.5-r3.ebuild similarity index 80% copy from dev-libs/judy/judy-1.0.5-r2.ebuild copy to dev-libs/judy/judy-1.0.5-r3.ebuild index 9e0e3bc742e..3c9b879d9d3 100644 --- a/dev-libs/judy/judy-1.0.5-r2.ebuild +++ b/dev-libs/judy/judy-1.0.5-r3.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit autotools ltprune multilib-minimal +inherit autotools multilib-minimal DESCRIPTION="A C library that implements a dynamic array" HOMEPAGE="http://judy.sourceforge.net/" @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/judy/Judy-${PV}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" IUSE="static-libs" DOCS=( AUTHORS ChangeLog README ) @@ -30,5 +30,5 @@ multilib_src_configure() { multilib_src_install_all(){ einstalldocs - prune_libtool_files + find "${ED}" -name '*.la' -delete || die }