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 A91EE15808E for ; Wed, 27 Apr 2022 09:08:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9534E077A; Wed, 27 Apr 2022 09:08:39 +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 AC005E077A for ; Wed, 27 Apr 2022 09:08:39 +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 B631D341BE0 for ; Wed, 27 Apr 2022 09:08:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3AB003BE for ; Wed, 27 Apr 2022 09:08:37 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1651050499.fdb78703b7a110111da8e9a0030e98fa7659c607.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/crash/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/crash/crash-8.0.0.ebuild X-VCS-Directories: dev-util/crash/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: fdb78703b7a110111da8e9a0030e98fa7659c607 X-VCS-Branch: master Date: Wed, 27 Apr 2022 09:08:37 +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: 7a91076a-f9d7-4aba-ac79-fbe76e77a3e5 X-Archives-Hash: 78b5a6fbea9235aae07ccee1557780c6 commit: fdb78703b7a110111da8e9a0030e98fa7659c607 Author: Yixun Lan gentoo org> AuthorDate: Wed Apr 27 09:08:19 2022 +0000 Commit: Yixun Lan gentoo org> CommitDate: Wed Apr 27 09:08:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdb78703 dev-util/crash: drop 8.0.0 Signed-off-by: Yixun Lan gentoo.org> dev-util/crash/crash-8.0.0.ebuild | 41 --------------------------------------- 1 file changed, 41 deletions(-) diff --git a/dev-util/crash/crash-8.0.0.ebuild b/dev-util/crash/crash-8.0.0.ebuild deleted file mode 100644 index e37d6d2d621a..000000000000 --- a/dev-util/crash/crash-8.0.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -GDB_VERSION=10.2 -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://github.com/crash-utility/crash.git" - SRC_URI="mirror://gnu/gdb/gdb-${GDB_VERSION}.tar.gz" - EGIT_BRANCH="master" - inherit git-r3 -else - SRC_URI="https://github.com/crash-utility/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz - mirror://gnu/gdb/gdb-${GDB_VERSION}.tar.gz" - KEYWORDS="-* ~alpha ~amd64 ~arm ~ia64 ~ppc64 ~s390 ~x86" -fi - -DESCRIPTION="Red Hat crash utility; used for analyzing kernel core dumps" -HOMEPAGE="https://crash-utility.github.io/" - -LICENSE="GPL-3" -SLOT="0" -IUSE="" -# there is no "make test" target, but there is a test.c so the automatic -# make rules catch it and tests fail -RESTRICT="test" - -src_prepare() { - sed -i -e "s|ar -rs|\${AR} -rs|g" Makefile || die - ln -s "${DISTDIR}"/gdb-10.2.tar.gz . || die - default -} - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - AR="$(tc-getAR)" \ - CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" -}