From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cvise/
Date: Thu, 4 Mar 2021 14:56:05 +0000 (UTC) [thread overview]
Message-ID: <1614869752.1ed07b5e0a3871dfee0be85f5b8fd5a8f627219b.mgorny@gentoo> (raw)
commit: 1ed07b5e0a3871dfee0be85f5b8fd5a8f627219b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 4 13:04:47 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Mar 4 14:55:52 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ed07b5e
dev-util/cvise: Bump to 2.2.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-util/cvise/Manifest | 1 +
dev-util/cvise/cvise-2.2.0.ebuild | 64 +++++++++++++++++++++++++++++++++++++++
2 files changed, 65 insertions(+)
diff --git a/dev-util/cvise/Manifest b/dev-util/cvise/Manifest
index 262ee4b4ea2..509888b01fc 100644
--- a/dev-util/cvise/Manifest
+++ b/dev-util/cvise/Manifest
@@ -1,3 +1,4 @@
DIST cvise-1.9.0.tar.gz 249042 BLAKE2B 357d429afc43691e616dba31621d1de89fb1f85fcbc177847b3367aac993ccd2c3bec20226e910a319d5d6194b32d0be9704e4fa7b8fce49f23788d10a378012 SHA512 518c48b7b9d9af9b856bfc46d4fb8064bca3730735bdabf2b3aa981a3f743fa6988594b7cbe39da71ac01fbadb4a45e5212d7c79b510fa36d86055978829495b
DIST cvise-2.0.0.tar.gz 249307 BLAKE2B ba1a70da71706969a35b1223ad0c0fa1a1d4caf7f70eef184adc4dbc69586be6a33bdf11d7c1b606ea4b20d4cd2bf68170aabc1764364c235fe5f67182419080 SHA512 e49ca9919ced9db67b16af4b8a7cd3c18c7d96dea5724c9ee6d60736c8f34074d68ade151be702794c93b24943d167278e1c1a6e6f67a9a1422f695f3a177e46
DIST cvise-2.1.0.tar.gz 249215 BLAKE2B e36def48de68dfb91990fd1daced56ae5fc9a32070bae3a696e7c21980757e30ccc8ef2d4940c391a72417296968f0dad680ffe6ca3c88104f09839d86174e27 SHA512 bc239ddb207bc6bb70d1a131df7ca0c13c4a3921382613aebb319f1cb1d5f19be273e82945e4f1c9479eaeac07bbb8a9c4c7f515e0474fe6bede84afd20b560c
+DIST cvise-2.2.0.tar.gz 250169 BLAKE2B ed994a288de750b8eee603cf38641614206c0c322152f061b33600c250f24156bbcb2c660c4ae92ff46f3ad2620ba6557213475b8eab0476baa289b7270e6678 SHA512 c54908784d15cb38fe58b731f65ed719a8c073a208d48d7a756acbbaa3804f052963e0ef0f74b811ba77bd3d5e900b622491c7c62c48eb2d7aef708edbec3eb2
diff --git a/dev-util/cvise/cvise-2.2.0.ebuild b/dev-util/cvise/cvise-2.2.0.ebuild
new file mode 100644
index 00000000000..bca1400c8e6
--- /dev/null
+++ b/dev-util/cvise/cvise-2.2.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+: ${CMAKE_MAKEFILE_GENERATOR=ninja}
+PYTHON_COMPAT=( python3_{7..9} )
+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 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+LLVM_MAX_SLOT=11
+DEPEND="
+ || (
+ sys-devel/clang:11
+ sys-devel/clang:10
+ )
+ <=sys-devel/clang-$(( LLVM_MAX_SLOT + 1 )):="
+RDEPEND="${DEPEND}
+ ${PYTHON_DEPS}
+ $(python_gen_cond_dep '
+ dev-python/pebble[${PYTHON_USEDEP}]
+ dev-python/psutil[${PYTHON_USEDEP}]
+ ')
+ dev-util/unifdef
+ sys-devel/flex"
+BDEPEND="
+ ${PYTHON_DEPS}
+ sys-devel/flex
+ 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:-n auto::' -e 's:--flake8::' setup.cfg || die
+ cmake_src_prepare
+}
+
+src_test() {
+ cd "${BUILD_DIR}" || die
+ pytest -vv || die
+}
next reply other threads:[~2021-03-04 14:56 UTC|newest]
Thread overview: 84+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-04 14:56 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-10-04 18:08 [gentoo-commits] repo/gentoo:master commit in: dev-util/cvise/ Sam James
2025-08-30 15:16 Arthur Zamarin
2025-08-30 14:05 Arthur Zamarin
2025-08-30 9:04 Arthur Zamarin
2025-08-30 1:06 Sam James
2025-08-28 19:45 Sam James
2025-08-28 19:40 Sam James
2025-08-14 2:20 Sam James
2025-08-14 2:13 Sam James
2025-07-23 14:01 Sam James
2025-07-22 18:52 Sam James
2025-06-21 5:50 Arthur Zamarin
2025-06-20 6:12 Sam James
2025-06-20 4:27 Sam James
2025-04-10 14:44 Sam James
2025-04-10 14:44 Sam James
2024-11-28 0:09 Jakov Smolić
2024-11-27 20:10 Sam James
2024-11-27 20:10 Sam James
2024-11-23 15:49 Sam James
2024-10-28 8:11 Sam James
2024-10-03 10:00 Sam James
2024-05-18 17:06 Sam James
2024-05-04 8:02 Arthur Zamarin
2024-04-29 2:38 Sam James
2024-04-29 2:38 Sam James
2024-03-15 6:24 Sam James
2024-03-15 6:24 Sam James
2024-01-03 6:22 Sam James
2023-12-16 7:05 Arthur Zamarin
2023-12-16 4:46 Sam James
2023-11-07 20:02 Sam James
2023-11-07 20:02 Sam James
2023-11-07 15:19 Michał Górny
2023-10-21 16:42 WANG Xuerui
2023-06-02 1:38 Sam James
2023-06-02 1:13 Yixun Lan
2023-06-01 21:23 Sam James
2023-06-01 20:04 Sam James
2023-04-28 14:13 Michał Górny
2023-03-10 18:34 Arthur Zamarin
2023-03-10 12:25 Sam James
2023-03-10 11:32 Arthur Zamarin
2023-02-03 12:35 Michał Górny
2023-02-03 12:31 Arthur Zamarin
2023-02-03 12:20 Arthur Zamarin
2022-12-23 11:25 Michał Górny
2022-12-11 17:36 Arthur Zamarin
2022-10-08 20:10 Michał Górny
2022-10-08 19:28 Sam James
2022-10-08 19:28 Sam James
2022-10-03 19:55 Michał Górny
2022-08-30 10:15 Michał Górny
2022-07-28 13:59 Sam James
2022-06-03 6:22 Michał Górny
2022-05-13 16:46 Jakov Smolić
2022-05-12 18:33 Sam James
2022-05-12 18:33 Sam James
2021-12-20 13:18 Michał Górny
2021-12-20 12:10 Agostino Sarubbo
2021-12-18 15:09 Arthur Zamarin
2021-10-15 6:05 Michał Górny
2021-10-14 21:13 Michał Górny
2021-04-11 11:23 Michał Górny
2021-04-11 11:11 Sam James
2021-04-11 11:06 Sam James
2021-03-10 3:04 Sam James
2021-03-09 11:31 Sam James
2021-03-09 8:54 Michał Górny
2021-01-29 10:43 Michał Górny
2021-01-11 11:40 Michał Górny
2020-12-20 20:34 Michał Górny
2020-12-20 19:07 Thomas Deutschmann
2020-11-10 9:38 Michał Górny
2020-11-10 8:24 Michał Górny
2020-10-21 18:53 Michał Górny
2020-09-30 7:55 Michał Górny
2020-09-30 7:14 Michał Górny
2020-09-24 6:59 Agostino Sarubbo
2020-09-23 11:03 Agostino Sarubbo
2020-09-18 9:38 Michał Górny
2020-08-03 11:18 Michał Górny
2020-05-01 15:44 Michał Górny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1614869752.1ed07b5e0a3871dfee0be85f5b8fd5a8f627219b.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox