commit: fbe7740ab080c5b78dc3771bbed2b23e20467eb1 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon Aug 18 23:55:52 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Aug 19 00:32:50 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbe7740a
sys-devel/dwz: drop 0.15-r4 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-devel/dwz/dwz-0.15-r4.ebuild | 77 ---------------------------------------- 1 file changed, 77 deletions(-) diff --git a/sys-devel/dwz/dwz-0.15-r4.ebuild b/sys-devel/dwz/dwz-0.15-r4.ebuild deleted file mode 100644 index 5ca87a13592a..000000000000 --- a/sys-devel/dwz/dwz-0.15-r4.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2025 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 hppa ~loong 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 - elibc_musl? ( - >=sys-libs/error-standalone-2.0 - sys-libs/obstack-standalone - ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - test? ( - dev-debug/gdb - dev-libs/elfutils[utils] - dev-util/dejagnu - ) - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}"/${P}-gdb-15.patch - "${FILESDIR}"/${P}-readelf.patch -) - -src_prepare() { - default - tc-export CC -} - -src_compile() { - export LANG=C LC_ALL=C # grep find nothing for non-ascii locales - - local current_binutils_path=$(binutils-config -B) - export READELF="${current_binutils_path}/readelf" - - tc-export PKG_CONFIG READELF - - export LIBS="-lelf" - if use elibc_musl; then - export CFLAGS="${CFLAGS} $(${PKG_CONFIG} --cflags obstack-standalone error-standalone)" - export LIBS="${LIBS} $(${PKG_CONFIG} --libs obstack-standalone error-standalone)" - fi - - emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" -} - -src_test() { - emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" check -} - -src_install() { - emake DESTDIR="${D}" CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" install -}
