diff options
author | Sam James <sam@gentoo.org> | 2024-05-18 18:05:57 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-05-18 18:05:57 +0100 |
commit | da183e1cd5eb0183f97c84f6394c80fb4f3764f1 (patch) | |
tree | 4ddcb3585e3888f01d8b546470995cf2e1a272a3 /dev-util/cvise | |
parent | sys-kernel/linux-headers: drop 6.7-r1 (diff) | |
download | gentoo-da183e1cd5eb0183f97c84f6394c80fb4f3764f1.tar.gz gentoo-da183e1cd5eb0183f97c84f6394c80fb4f3764f1.tar.bz2 gentoo-da183e1cd5eb0183f97c84f6394c80fb4f3764f1.zip |
dev-util/cvise: drop 2.9.0
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-util/cvise')
-rw-r--r-- | dev-util/cvise/Manifest | 1 | ||||
-rw-r--r-- | dev-util/cvise/cvise-2.9.0.ebuild | 78 |
2 files changed, 0 insertions, 79 deletions
diff --git a/dev-util/cvise/Manifest b/dev-util/cvise/Manifest index 61c7137e402e..62e4d47b4a8f 100644 --- a/dev-util/cvise/Manifest +++ b/dev-util/cvise/Manifest @@ -1,2 +1 @@ DIST cvise-2.10.0.tar.gz 270839 BLAKE2B 36f54cbfe8eab0c2d64a4d2d482f558cb9e32ccce0b0c03923f62b682e33941ab37a57a1c51a4173a22e2ad9e59fec3256469e1b19baaea0446caa56877ea056 SHA512 31950f8731f7a8d6b9568be621b14d1f976a71ed0a6caef0cdcc0d31c99eca86c03913e2949f1f4e21a66fbe1618341f5daaff01da51b426b4ce0e6518479281 -DIST cvise-2.9.0.tar.gz 269921 BLAKE2B d3b491316ea4ec5b623eeba0131f31edb421635508786a04868394c9bdc62c4510c34bd30095c5b034fa66ec5f8f6f78bb762e17f1c534ba137eb469544ddafe SHA512 dd3b2e5c4603e8a73594863ce5b83d0ca864fc688a7b094c84b745b7086d384173809b9a915edb51938a7df8310eabbde1ea6a997c480d19618065c0d8270c52 diff --git a/dev-util/cvise/cvise-2.9.0.ebuild b/dev-util/cvise/cvise-2.9.0.ebuild deleted file mode 100644 index 624905d68c72..000000000000 --- a/dev-util/cvise/cvise-2.9.0.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) - -inherit cmake llvm python-single-r1 - -DESCRIPTION="Super-parallel Python port of the C-Reduce" -HOMEPAGE="https://github.com/marxin/cvise/" -SRC_URI=" - https://github.com/marxin/cvise/archive/v${PV}.tar.gz -> ${P}.tar.gz -" - -LICENSE="UoI-NCSA" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ppc64 ~riscv ~sparc x86" -IUSE="test" -RESTRICT="!test? ( test )" -REQUIRED_USE=${PYTHON_REQUIRED_USE} - -LLVM_MAX_SLOT=17 -DEPEND=" - || ( - sys-devel/clang:17 - sys-devel/clang:16 - sys-devel/clang:15 - sys-devel/clang:14 - ) - <sys-devel/clang-$(( LLVM_MAX_SLOT + 1 )):= -" -RDEPEND=" - ${DEPEND} - ${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/chardet[${PYTHON_USEDEP}] - dev-python/pebble[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - ') - dev-util/unifdef - app-alternatives/lex -" -BDEPEND=" - ${PYTHON_DEPS} - app-alternatives/lex - test? ( - $(python_gen_cond_dep ' - dev-python/pebble[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - ') - ) -" - -llvm_check_deps() { - has_version "sys-devel/clang:${LLVM_SLOT}" -} - -pkg_setup() { - python-single-r1_pkg_setup - llvm_pkg_setup -} - -src_prepare() { - sed -i -e 's:-Werror::' -e '/CMAKE_CXX_FLAGS_REL/d' CMakeLists.txt || die - cmake_src_prepare -} - -src_test() { - cd "${BUILD_DIR}" || die - epytest -} - -src_install() { - cmake_src_install - - python_fix_shebang "${ED}"/usr/bin/cvise -} |