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 92778158094 for ; Mon, 29 Aug 2022 19:28:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D53C6E08F1; Mon, 29 Aug 2022 19:28: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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C184CE08F1 for ; Mon, 29 Aug 2022 19:28: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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 00AB4340AB3 for ; Mon, 29 Aug 2022 19:28:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D580D5AF for ; Mon, 29 Aug 2022 19:28:04 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1661801197.8cd570c70a43e502ba6d7ac78980b7fb22259ed4.asturm@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 X-VCS-Directories: dev-libs/judy/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8cd570c70a43e502ba6d7ac78980b7fb22259ed4 X-VCS-Branch: master Date: Mon, 29 Aug 2022 19:28:04 +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: 2fd651f0-dbe7-4d42-94bf-e803686d2cd4 X-Archives-Hash: 8e9c422fbceb36e8597b6774d38e3572 commit: 8cd570c70a43e502ba6d7ac78980b7fb22259ed4 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Aug 29 18:51:01 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Aug 29 19:26:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cd570c7 dev-libs/judy: drop 1.0.5-r2, EAPI-6-- Closes: https://bugs.gentoo.org/865451 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/judy/judy-1.0.5-r2.ebuild | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/dev-libs/judy/judy-1.0.5-r2.ebuild b/dev-libs/judy/judy-1.0.5-r2.ebuild deleted file mode 100644 index 09e76a1992a8..000000000000 --- a/dev-libs/judy/judy-1.0.5-r2.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools multilib-minimal - -DESCRIPTION="A C library that implements a dynamic array" -HOMEPAGE="http://judy.sourceforge.net/" -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" -IUSE="static-libs" -DOCS=( AUTHORS ChangeLog README ) - -src_prepare() { - eapply -p0 "${FILESDIR}/${P}-parallel-make.patch" - eapply "${FILESDIR}/${P}-gcc49.patch" - sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die - eapply_user - eautoreconf - multilib_copy_sources -} - -multilib_src_configure() { - ECONF_SOURCE=${BUILD_DIR} econf $(use_enable static-libs static) -} - -multilib_src_install_all() { - einstalldocs - find "${ED}" -name '*.la' -delete || die -}