dev-debug/rr: drop 5.8.0

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2026-04-20 20:37:54 +01:00
parent c4ea286159
commit b08dc3b8f4
2 changed files with 0 additions and 95 deletions

View File

@@ -1,2 +1 @@
DIST mozilla-rr-5.8.0.tar.gz 1734617 BLAKE2B 75fcd99da89dc4acc033d033abc91ff61500ad1429702641888c628ad0e70f1dfb61309aa76092f34d3314086572a6af334970e5f4abb4d7c812800b23e64869 SHA512 98f0c970fad5c3a2c5d7c17f40c454db072d31053425ffc308a66a643e2f36ede04f33ab8b13f94c42c60a3b00e18a790783467f99a97e421551c498df313a6b
DIST mozilla-rr-5.9.0.tar.gz 1801696 BLAKE2B b87d0a33201a513a692e8deb20ada38f235ce7a3e41dd806d0dba9a1a73f2c3dbf71d7f95b7cb0b284c7e38a4a19ea58f9ddef31d2e9b92efc686b24a8e551e7 SHA512 796d9b0b64e3993dfc14cf488e5e598b1de4828da415b1f97435598d62c1c133fc268d7838601275a00f59f05bf53d0bb796380418f4cb6cdfdda2c50207f996

View File

@@ -1,94 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
CMAKE_BUILD_TYPE=Release
inherit cmake linux-info python-single-r1
DESCRIPTION="Record and Replay Framework"
HOMEPAGE="https://rr-project.org/"
if [[ ${PV} == 9999 ]] ; then
EGIT_REPO_URI="https://github.com/rr-debugger/rr"
inherit git-r3
else
SRC_URI="https://github.com/rr-debugger/${PN}/archive/${PV}.tar.gz -> mozilla-${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~x86"
fi
# rr itself is MIT and BSD-2, but there's various bits under third-party too.
LICENSE="MIT BSD-2 GPL-2 ZLIB"
SLOT="0"
IUSE="multilib test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND="
${PYTHON_DEPS}
dev-libs/capnproto:=
virtual/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}"/${PN}-5.7.0-no-force-lto.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
python_newscript scripts/zen_workaround.py rr-zen_workaround.py
}