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 68AD1158041 for ; Wed, 21 Feb 2024 02:15:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 925282BC029; Wed, 21 Feb 2024 02:15:54 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 719FD2BC013 for ; Wed, 21 Feb 2024 02:15:54 +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 9D370343128 for ; Wed, 21 Feb 2024 02:15:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E3A514C5 for ; Wed, 21 Feb 2024 02:15:52 +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: <1708481714.7ba14e1b475ee1b14b4c1a285fc1d542066f6d14.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/dwz/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/dwz/Manifest sys-devel/dwz/dwz-0.14.ebuild X-VCS-Directories: sys-devel/dwz/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7ba14e1b475ee1b14b4c1a285fc1d542066f6d14 X-VCS-Branch: master Date: Wed, 21 Feb 2024 02:15: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: bdfbaba8-9fc1-495c-9bf4-81f14f3ab8fe X-Archives-Hash: cab4dd79c134da691ee20789d75a1df0 commit: 7ba14e1b475ee1b14b4c1a285fc1d542066f6d14 Author: Sam James gentoo org> AuthorDate: Wed Feb 21 02:15:14 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Feb 21 02:15:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ba14e1b sys-devel/dwz: drop 0.14 Signed-off-by: Sam James gentoo.org> sys-devel/dwz/Manifest | 1 - sys-devel/dwz/dwz-0.14.ebuild | 32 -------------------------------- 2 files changed, 33 deletions(-) diff --git a/sys-devel/dwz/Manifest b/sys-devel/dwz/Manifest index c5d5a1555852..d770ee4adc0a 100644 --- a/sys-devel/dwz/Manifest +++ b/sys-devel/dwz/Manifest @@ -1,2 +1 @@ -DIST dwz-0.14.tar.xz 147428 BLAKE2B 286350a8276a1a674937a7adc99560562782044fd6caa50c9a55ec08343f34d8bd27140cca904e648859aba61d181e01ab0755f2115151fab16d498aa1549450 SHA512 62c39f79723ca99305dbb08d1d24a17699b9a84dd98c30904103da116831b1253bf1edbfb905c76fdc4d48305bd1ea0046314c5619209c40a1e624b8ae4908b1 DIST dwz-0.15.tar.xz 150080 BLAKE2B 4ce1722a53cb588cda8195211a26b28d69891ed32cc59e44897270298d033590c79c8c73168dc3b261cb017fc12874a9cbd50db3bfaa0aa7de8ed7cf8a588cca SHA512 43eb4b08c1f529859dc3466697d5ad7e172d6efbf21409530a67a2492ae4acc3734d5134bbd6e07c089ecc358d915871b13e22f6e4f1dd4c3af19ef804f8fcc5 diff --git a/sys-devel/dwz/dwz-0.14.ebuild b/sys-devel/dwz/dwz-0.14.ebuild deleted file mode 100644 index 8879c51bc69e..000000000000 --- a/sys-devel/dwz/dwz-0.14.ebuild +++ /dev/null @@ -1,32 +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" -SRC_URI="https://sourceware.org/ftp/dwz/releases/${P}.tar.xz" - -S="${WORKDIR}/${PN}" - -LICENSE="GPL-2+ GPL-3+" -SLOT="0" -KEYWORDS="~amd64" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-libs/elfutils" -DEPEND="${RDEPEND}" -BDEPEND="test? ( - dev-libs/elfutils[utils] - dev-util/dejagnu - dev-debug/gdb -)" - -src_prepare() { - default - sed -e '/^CFLAGS/d' -i Makefile || die - tc-export CC -}