diff options
author | Yixun Lan <dlan@gentoo.org> | 2023-08-09 23:08:00 +0000 |
---|---|---|
committer | Yixun Lan <dlan@gentoo.org> | 2023-08-09 23:09:05 +0000 |
commit | fc45a151f99c6b2f015e380b39ab76a704a1327f (patch) | |
tree | f06e1feb9d475850a67f680ee9111b0ff1bd6337 /dev-util/crash | |
parent | dev-util/crash: fix strlcpy() issue for glibc-2.38 (diff) | |
download | gentoo-fc45a151f99c6b2f015e380b39ab76a704a1327f.tar.gz gentoo-fc45a151f99c6b2f015e380b39ab76a704a1327f.tar.bz2 gentoo-fc45a151f99c6b2f015e380b39ab76a704a1327f.zip |
dev-util/crash: drop 8.0.3
Signed-off-by: Yixun Lan <dlan@gentoo.org>
Diffstat (limited to 'dev-util/crash')
-rw-r--r-- | dev-util/crash/crash-8.0.3.ebuild | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/dev-util/crash/crash-8.0.3.ebuild b/dev-util/crash/crash-8.0.3.ebuild deleted file mode 100644 index 8255200bc2b3..000000000000 --- a/dev-util/crash/crash-8.0.3.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -GDB_VERSION=10.2 -UPSTREAM_VER= -EXTRA_VER=0 - -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 - [[ -n ${UPSTREAM_VER} ]] && \ - UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${CATEGORY}/${PN}/${P}-patches-${UPSTREAM_VER}.tar.xz" - - [[ -n ${EXTRA_VER} ]] && \ - EXTRA_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${CATEGORY}/${PN}/${P}-extra-${EXTRA_VER}.tar.xz" - - SRC_URI="https://github.com/crash-utility/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz - ${UPSTREAM_PATCHSET_URI} ${EXTRA_PATCHSET_URI} - mirror://gnu/gdb/gdb-${GDB_VERSION}.tar.gz" - KEYWORDS="-* ~alpha ~amd64 ~arm ~ia64 ~ppc64 ~riscv ~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() { - default - - if [[ -n ${UPSTREAM_VER} ]]; then - einfo "Try to apply Crash's Upstream patch set" - eapply "${WORKDIR}"/patches-upstream - fi - - if [[ -n ${EXTRA_VER} ]]; then - einfo "Try to apply Crash's Extra patch set" - eapply "${WORKDIR}"/patches-extra - fi - - sed -i -e "s|ar -rs|\${AR} -rs|g" Makefile || die - ln -s "${DISTDIR}"/gdb-10.2.tar.gz . || die -} - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - AR="$(tc-getAR)" \ - CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" -} |