From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id ADC3215827B for ; Tue, 19 Aug 2025 00:33:45 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 948FF342145 for ; Tue, 19 Aug 2025 00:33:45 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 8733C11055F; Tue, 19 Aug 2025 00:33:44 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 80FF1110280 for ; Tue, 19 Aug 2025 00:33:44 +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 366E0342145 for ; Tue, 19 Aug 2025 00:33:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8747B28C1 for ; Tue, 19 Aug 2025 00:33:42 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1755563570.fbe7740ab080c5b78dc3771bbed2b23e20467eb1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/dwz/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/dwz/dwz-0.15-r4.ebuild X-VCS-Directories: sys-devel/dwz/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fbe7740ab080c5b78dc3771bbed2b23e20467eb1 X-VCS-Branch: master Date: Tue, 19 Aug 2025 00:33:42 +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: 82cf3639-dc1e-4775-8ffb-cd7a84764b56 X-Archives-Hash: 8190e9c90e903814091ef2538b97b30c commit: fbe7740ab080c5b78dc3771bbed2b23e20467eb1 Author: Sam James gentoo org> AuthorDate: Mon Aug 18 23:55:52 2025 +0000 Commit: Sam James gentoo org> CommitDate: Tue Aug 19 00:32:50 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbe7740a sys-devel/dwz: drop 0.15-r4 Signed-off-by: Sam James gentoo.org> sys-devel/dwz/dwz-0.15-r4.ebuild | 77 ---------------------------------------- 1 file changed, 77 deletions(-) diff --git a/sys-devel/dwz/dwz-0.15-r4.ebuild b/sys-devel/dwz/dwz-0.15-r4.ebuild deleted file mode 100644 index 5ca87a13592a..000000000000 --- a/sys-devel/dwz/dwz-0.15-r4.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="DWARF optimization and duplicate removal tool" -HOMEPAGE="https://sourceware.org/dwz" -if [[ ${PV} == 9999 ]] ; then - EGIT_REPO_URI="https://sourceware.org/git/dwz.git" - inherit git-r3 -else - SRC_URI="https://sourceware.org/ftp/dwz/releases/${P}.tar.xz" - S="${WORKDIR}/${PN}" - - #KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" - KEYWORDS="amd64 arm arm64 hppa ~loong ppc ppc64 ~riscv sparc x86" -fi - -LICENSE="GPL-2+ GPL-3+" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/elfutils - dev-libs/xxhash - elibc_musl? ( - >=sys-libs/error-standalone-2.0 - sys-libs/obstack-standalone - ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - test? ( - dev-debug/gdb - dev-libs/elfutils[utils] - dev-util/dejagnu - ) - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}"/${P}-gdb-15.patch - "${FILESDIR}"/${P}-readelf.patch -) - -src_prepare() { - default - tc-export CC -} - -src_compile() { - export LANG=C LC_ALL=C # grep find nothing for non-ascii locales - - local current_binutils_path=$(binutils-config -B) - export READELF="${current_binutils_path}/readelf" - - tc-export PKG_CONFIG READELF - - export LIBS="-lelf" - if use elibc_musl; then - export CFLAGS="${CFLAGS} $(${PKG_CONFIG} --cflags obstack-standalone error-standalone)" - export LIBS="${LIBS} $(${PKG_CONFIG} --libs obstack-standalone error-standalone)" - fi - - emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" -} - -src_test() { - emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" check -} - -src_install() { - emake DESTDIR="${D}" CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" install -}