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 019F4158094 for ; Fri, 16 Sep 2022 11:57:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC18DE082B; Fri, 16 Sep 2022 11:57:05 +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 D471BE082B for ; Fri, 16 Sep 2022 11:57:05 +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 123CB340F85 for ; Fri, 16 Sep 2022 11:57:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 48F8C576 for ; Fri, 16 Sep 2022 11:57:02 +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: <1663329388.aeeb8d037c608d062b0f4cf5ce58c7e21f8d6d9f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libelf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libelf/libelf-0.8.13-r2.ebuild X-VCS-Directories: dev-libs/libelf/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: aeeb8d037c608d062b0f4cf5ce58c7e21f8d6d9f X-VCS-Branch: master Date: Fri, 16 Sep 2022 11:57:02 +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: 0188e52e-0b93-482c-9431-6e8d3585089e X-Archives-Hash: e68f92d9df37e6fb521343749bfaf2d3 commit: aeeb8d037c608d062b0f4cf5ce58c7e21f8d6d9f Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Sep 16 11:56:28 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Sep 16 11:56:28 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aeeb8d03 dev-libs/libelf: drop 0.8.13-r2 Closes: https://bugs.gentoo.org/867109 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/libelf/libelf-0.8.13-r2.ebuild | 48 --------------------------------- 1 file changed, 48 deletions(-) diff --git a/dev-libs/libelf/libelf-0.8.13-r2.ebuild b/dev-libs/libelf/libelf-0.8.13-r2.ebuild deleted file mode 100644 index e373fd9b7e46..000000000000 --- a/dev-libs/libelf/libelf-0.8.13-r2.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit autotools multilib-minimal - -DESCRIPTION="A ELF object file access library" -HOMEPAGE="http://www.mr511.de/software/" -SRC_URI="http://www.mr511.de/software/${P}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~mips ppc ppc64 sparc x86 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="debug nls" - -RDEPEND="!dev-libs/elfutils" -DEPEND="nls? ( sys-devel/gettext )" - -DOCS=( ChangeLog README ) -MULTILIB_WRAPPED_HEADERS=( /usr/include/libelf/sys_elf.h ) - -src_prepare() { - eapply "${FILESDIR}/${P}-build.patch" - eapply_user - eautoreconf -} - -multilib_src_configure() { - # prefix might want to play with this; unfortunately the stupid - # macro used to detect whether we're building ELF is so screwed up - # that trying to fix it is just a waste of time. - export mr_cv_target_elf=yes - - ECONF_SOURCE="${S}" econf \ - $(use_enable nls) \ - --enable-shared \ - $(use_enable debug) -} - -multilib_src_install() { - emake \ - prefix="${ED}usr" \ - libdir="${ED}usr/$(get_libdir)" \ - install \ - install-compat \ - -j1 -}