diff options
author | Sam James <sam@gentoo.org> | 2024-03-15 02:56:29 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-03-15 03:18:06 +0000 |
commit | f32be099df1a2bd61efa9334a76e7b1718467324 (patch) | |
tree | e40ffbe6af4fc3f688c8617be3a26ab4e2f5e1c5 /dev-util/rr/rr-5.6.0-r4.ebuild | |
parent | dev-lang/go-bootstrap: rebuild x86 bootstrap binary without se2 instructions (diff) | |
download | gentoo-f32be099df1a2bd61efa9334a76e7b1718467324.tar.gz gentoo-f32be099df1a2bd61efa9334a76e7b1718467324.tar.bz2 gentoo-f32be099df1a2bd61efa9334a76e7b1718467324.zip |
dev-util/rr: drop 5.6.0-r2, 5.6.0-r4
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-util/rr/rr-5.6.0-r4.ebuild')
-rw-r--r-- | dev-util/rr/rr-5.6.0-r4.ebuild | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/dev-util/rr/rr-5.6.0-r4.ebuild b/dev-util/rr/rr-5.6.0-r4.ebuild deleted file mode 100644 index 435e16eb2002..000000000000 --- a/dev-util/rr/rr-5.6.0-r4.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..11} ) -CMAKE_BUILD_TYPE=Release - -inherit cmake linux-info python-single-r1 - -DESCRIPTION="Record and Replay Framework" -HOMEPAGE="https://rr-project.org/" -SRC_URI="https://github.com/rr-debugger/${PN}/archive/${PV}.tar.gz -> mozilla-${P}.tar.gz" - -LICENSE="MIT BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="multilib test" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -DEPEND=" - ${PYTHON_DEPS} - dev-libs/capnproto:= - sys-libs/zlib:= -" -RDEPEND=" - ${DEPEND} - dev-debug/gdb[xml] -" -# Add all the deps needed only at build/test time. -DEPEND+=" - test? ( - $(python_gen_cond_dep ' - dev-python/pexpect[${PYTHON_USEDEP}] - ') - dev-debug/gdb[xml] - )" - -QA_FLAGS_IGNORED=" - usr/lib.*/rr/librrpage.so - usr/lib.*/rr/librrpage_32.so -" - -RESTRICT="test" # toolchain and kernel version dependent - -PATCHES=( - "${FILESDIR}"/${P}-linux-headers-6.0.patch - "${FILESDIR}"/${P}-tests-clang16.patch - "${FILESDIR}"/${P}-gcc13.patch - "${FILESDIR}"/${P}-gcc13-workaround.patch -) - -pkg_setup() { - if use kernel_linux; then - CONFIG_CHECK="SECCOMP" - linux-info_pkg_setup - fi - python-single-r1_pkg_setup -} - -src_prepare() { - cmake_src_prepare - - sed -i 's:-Werror::' CMakeLists.txt || die #609192 -} - -src_test() { - if has usersandbox ${FEATURES} ; then - ewarn "Test suite fails under FEATURES=usersandbox (bug #632394). Skipping." - return 0 - fi - - cmake_src_test -} - -src_configure() { - local mycmakeargs=( - -DBUILD_TESTS=$(usex test) - -Ddisable32bit=$(usex !multilib) #636786 - ) - - cmake_src_configure -} - -src_install() { - cmake_src_install - python_fix_shebang "${ED}"/usr/bin/rr-collect-symbols.py -} |