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: Sat, 01 Oct 2022 09:36:42
Message-Id: 1664616916.006a5c467708ab7d8e7469f4d57a070d32ca2657.mgorny@gentoo
1 commit: 006a5c467708ab7d8e7469f4d57a070d32ca2657
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 1 09:35:16 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 1 09:35:16 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=006a5c46
7
8 dev-cpp/rapidfuzz-cpp: Remove old
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.6.0.ebuild | 42 ------------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/dev-cpp/rapidfuzz-cpp/Manifest b/dev-cpp/rapidfuzz-cpp/Manifest
17 index c2897932159e..ef7563b2f466 100644
18 --- a/dev-cpp/rapidfuzz-cpp/Manifest
19 +++ b/dev-cpp/rapidfuzz-cpp/Manifest
20 @@ -1,2 +1 @@
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.6.0.ebuild b/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.6.0.ebuild
25 deleted file mode 100644
26 index 99e66055cc0f..000000000000
27 --- a/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.6.0.ebuild
28 +++ /dev/null
29 @@ -1,42 +0,0 @@
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 -}