Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/rapidfuzz-cpp/
Date: Tue, 27 Sep 2022 06:22:16
Message-Id: 1664259729.23ac94fa19f7ab3590553193a7d9936b83c27f90.mgorny@gentoo
1 commit: 23ac94fa19f7ab3590553193a7d9936b83c27f90
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 27 06:17:30 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 27 06:22:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23ac94fa
7
8 dev-cpp/rapidfuzz-cpp: Bump to 1.7.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-cpp/rapidfuzz-cpp/Manifest | 1 +
13 dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.7.0.ebuild | 42 ++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/dev-cpp/rapidfuzz-cpp/Manifest b/dev-cpp/rapidfuzz-cpp/Manifest
17 index 598f34b8d8ac..c2897932159e 100644
18 --- a/dev-cpp/rapidfuzz-cpp/Manifest
19 +++ b/dev-cpp/rapidfuzz-cpp/Manifest
20 @@ -1 +1,2 @@
21 DIST rapidfuzz-cpp-1.6.0.gh.tar.gz 250024 BLAKE2B 96d70680bb9b3c3e053b385845b543f69bb4215c6be92df6b7e61559cfa0f072833a13ceadf24f73531e848517864461cd696504584ea3a489d37e56c0a03c3b SHA512 ba319af67428a96df406b10b11eafa4c73762f0916d2ac4ac2860f1a25a97fc9e4e3a69c8633c8fed8ef76a0c4a8e073bc16048bde111782d0e8f00e396a4df9
22 +DIST rapidfuzz-cpp-1.7.0.gh.tar.gz 252646 BLAKE2B 5d79c07e26b6bb8e84d3280c3401bad60a3ca9846977a5bf9b13787ed7951c3805c71b7e6e2e03b14e2b988381484d969e1cc885c316bcb805b403e53332b31b SHA512 ed8af678a40161aa738bd3606b41fd54c1dba603c47fbdb1182527abd5667736e50f458af252e7bde954f263040cdbd662ad1c6be0a5caa5289f0a351dfd6d9e
23
24 diff --git a/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.7.0.ebuild b/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.7.0.ebuild
25 new file mode 100644
26 index 000000000000..99e66055cc0f
27 --- /dev/null
28 +++ b/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.7.0.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit cmake
36 +
37 +DESCRIPTION="Rapid fuzzy string matching in C++"
38 +HOMEPAGE="https://github.com/maxbachmann/rapidfuzz-cpp/"
39 +SRC_URI="
40 + https://github.com/maxbachmann/rapidfuzz-cpp/archive/v${PV}.tar.gz
41 + -> ${P}.gh.tar.gz
42 +"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +IUSE="test"
48 +RESTRICT="!test? ( test )"
49 +
50 +BDEPEND="
51 + test? (
52 + >=dev-cpp/catch-3
53 + )
54 +"
55 +
56 +src_prepare() {
57 + # apparently "C++ best practices" don't mind fetching random stuff
58 + # at build time
59 + sed -i -e '/aminya/,/^)/d' test/CMakeLists.txt || die
60 + find -name 'CMakeLists.txt' -exec \
61 + sed -i -e 's:project_warnings::' {} + || die
62 +
63 + cmake_src_prepare
64 +}
65 +
66 +src_configure() {
67 + local mycmakeargs=(
68 + -DRAPIDFUZZ_BUILD_TESTING=$(usex test)
69 + )
70 + cmake_src_configure
71 +}