Gentoo Archives: gentoo-commits

From: Yixun Lan <dlan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/crash/
Date: Wed, 27 Apr 2022 09:08:40
Message-Id: 1651050499.fdb78703b7a110111da8e9a0030e98fa7659c607.dlan@gentoo
1 commit: fdb78703b7a110111da8e9a0030e98fa7659c607
2 Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 27 09:08:19 2022 +0000
4 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 09:08:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdb78703
7
8 dev-util/crash: drop 8.0.0
9
10 Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
11
12 dev-util/crash/crash-8.0.0.ebuild | 41 ---------------------------------------
13 1 file changed, 41 deletions(-)
14
15 diff --git a/dev-util/crash/crash-8.0.0.ebuild b/dev-util/crash/crash-8.0.0.ebuild
16 deleted file mode 100644
17 index e37d6d2d621a..000000000000
18 --- a/dev-util/crash/crash-8.0.0.ebuild
19 +++ /dev/null
20 @@ -1,41 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -inherit toolchain-funcs
27 -
28 -GDB_VERSION=10.2
29 -if [[ ${PV} == "9999" ]] ; then
30 - EGIT_REPO_URI="https://github.com/crash-utility/crash.git"
31 - SRC_URI="mirror://gnu/gdb/gdb-${GDB_VERSION}.tar.gz"
32 - EGIT_BRANCH="master"
33 - inherit git-r3
34 -else
35 - SRC_URI="https://github.com/crash-utility/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
36 - mirror://gnu/gdb/gdb-${GDB_VERSION}.tar.gz"
37 - KEYWORDS="-* ~alpha ~amd64 ~arm ~ia64 ~ppc64 ~s390 ~x86"
38 -fi
39 -
40 -DESCRIPTION="Red Hat crash utility; used for analyzing kernel core dumps"
41 -HOMEPAGE="https://crash-utility.github.io/"
42 -
43 -LICENSE="GPL-3"
44 -SLOT="0"
45 -IUSE=""
46 -# there is no "make test" target, but there is a test.c so the automatic
47 -# make rules catch it and tests fail
48 -RESTRICT="test"
49 -
50 -src_prepare() {
51 - sed -i -e "s|ar -rs|\${AR} -rs|g" Makefile || die
52 - ln -s "${DISTDIR}"/gdb-10.2.tar.gz . || die
53 - default
54 -}
55 -
56 -src_compile() {
57 - emake \
58 - CC="$(tc-getCC)" \
59 - AR="$(tc-getAR)" \
60 - CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
61 -}