commit: 8dae3b20d22eef50d708b547a11000962b2c0106
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May 12 18:32:53 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 12 18:33:23 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dae3b20
dev-util/cvise: fix Python shebang on cvise
Also, drop obsolete LLVM impls.
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-util/cvise/{cvise-2.4.0.ebuild => cvise-2.4.0-r1.ebuild} | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/dev-util/cvise/cvise-2.4.0.ebuild
b/dev-util/cvise/cvise-2.4.0-r1.ebuild
similarity index 91%
rename from dev-util/cvise/cvise-2.4.0.ebuild
rename to dev-util/cvise/cvise-2.4.0-r1.ebuild
index f1901e09417d..0da34e94e399 100644
--- a/dev-util/cvise/cvise-2.4.0.ebuild
+++ b/dev-util/cvise/cvise-2.4.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -24,8 +24,6 @@ DEPEND="
|| (
sys-devel/clang:13
sys-devel/clang:12
- sys-devel/clang:11
- sys-devel/clang:10
)
<sys-devel/clang-$(( LLVM_MAX_SLOT + 1 )):="
RDEPEND="${DEPEND}
@@ -65,3 +63,10 @@ src_test() {
cd "${BUILD_DIR}" || die
epytest
}
+
+src_install() {
+ cmake_src_install
+
+
+ python_fix_shebang "${ED}"/usr/bin/cvise
+}