commit: 00c44198aaa36a78b9f35f41d68baad8aea6caa8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 10 04:32:01 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan 10 04:32:45 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00c44198
dev-util/rr: enable py3.11, fix rr-collect-symbols.py shebang
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-util/rr/{rr-5.6.0-r1.ebuild => rr-5.6.0-r2.ebuild} | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/dev-util/rr/rr-5.6.0-r1.ebuild b/dev-util/rr/rr-5.6.0-r2.ebuild
similarity index 89%
rename from dev-util/rr/rr-5.6.0-r1.ebuild
rename to dev-util/rr/rr-5.6.0-r2.ebuild
index 3092495a06e7..5b243d13e78c 100644
--- a/dev-util/rr/rr-5.6.0-r1.ebuild
+++ b/dev-util/rr/rr-5.6.0-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-PYTHON_COMPAT=( python3_{8,9,10} )
+PYTHON_COMPAT=( python3_{8..11} )
CMAKE_BUILD_TYPE=Release
inherit cmake linux-info python-single-r1
@@ -79,3 +79,8 @@ src_configure() {
cmake_src_configure
}
+
+src_install() {
+ cmake_src_install
+ python_fix_shebang "${ED}"/usr/bin/rr-collect-symbols.py
+}