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 4C64E1581F0 for ; Sat, 25 Jan 2025 14:17:23 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 37C46343472 for ; Sat, 25 Jan 2025 14:17:23 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 3C6E811042D; Sat, 25 Jan 2025 14:17:22 +0000 (UTC) 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 bobolink.gentoo.org (Postfix) with ESMTPS id 31F5211042D for ; Sat, 25 Jan 2025 14:17:22 +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 D17B4343472 for ; Sat, 25 Jan 2025 14:17:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B05497F for ; Sat, 25 Jan 2025 14:17:20 +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: <1737814616.14c74583fd921b2c0881a43f569fe15ba49b5456.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-r2.ebuild sys-devel/dwz/dwz-0.15-r3.ebuild X-VCS-Directories: sys-devel/dwz/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 14c74583fd921b2c0881a43f569fe15ba49b5456 X-VCS-Branch: master Date: Sat, 25 Jan 2025 14:17:20 +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: 1aa188d9-7c60-40da-b12b-592bb31b2b56 X-Archives-Hash: 72920bf4d1afac568726f09137408674 commit: 14c74583fd921b2c0881a43f569fe15ba49b5456 Author: Sam James gentoo org> AuthorDate: Sat Jan 25 14:16:56 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jan 25 14:16:56 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14c74583 sys-devel/dwz: drop 0.15-r2, 0.15-r3 Signed-off-by: Sam James gentoo.org> sys-devel/dwz/dwz-0.15-r2.ebuild | 57 ------------------------------- sys-devel/dwz/dwz-0.15-r3.ebuild | 72 ---------------------------------------- 2 files changed, 129 deletions(-) diff --git a/sys-devel/dwz/dwz-0.15-r2.ebuild b/sys-devel/dwz/dwz-0.15-r2.ebuild deleted file mode 100644 index 09e446237df4..000000000000 --- a/sys-devel/dwz/dwz-0.15-r2.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2024 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" -fi - -LICENSE="GPL-2+ GPL-3+" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/elfutils - dev-libs/xxhash -" -DEPEND="${RDEPEND}" -BDEPEND=" - test? ( - dev-debug/gdb - dev-libs/elfutils[utils] - dev-util/dejagnu - ) -" - -PATCHES=( - "${FILESDIR}"/${P}-gdb-15.patch -) - -src_prepare() { - default - tc-export CC -} - -src_compile() { - emake CFLAGS="${CFLAGS}" srcdir="${S}" -} - -src_test() { - emake CFLAGS="${CFLAGS}" srcdir="${S}" check -} - -src_install() { - emake DESTDIR="${D}" CFLAGS="${CFLAGS}" srcdir="${S}" install -} diff --git a/sys-devel/dwz/dwz-0.15-r3.ebuild b/sys-devel/dwz/dwz-0.15-r3.ebuild deleted file mode 100644 index 3773c9782abd..000000000000 --- a/sys-devel/dwz/dwz-0.15-r3.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2024 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 ~riscv ~x86" -fi - -LICENSE="GPL-2+ GPL-3+" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/elfutils - dev-libs/xxhash - elibc_musl? ( -