diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-10-31 08:26:13 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-10-31 08:52:58 +0100 |
commit | 3b68c8d5bd1e1d858a17a384992f0d430bd81980 (patch) | |
tree | 6372384f653d6151516ea32a24f4631db1b68b38 /dev-cpp | |
parent | dev-cpp/rapidfuzz-cpp: Remove old (diff) | |
download | gentoo-3b68c8d5bd1e1d858a17a384992f0d430bd81980.tar.gz gentoo-3b68c8d5bd1e1d858a17a384992f0d430bd81980.tar.bz2 gentoo-3b68c8d5bd1e1d858a17a384992f0d430bd81980.zip |
dev-cpp/rapidfuzz-cpp: Bump to 2.2.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-cpp')
-rw-r--r-- | dev-cpp/rapidfuzz-cpp/Manifest | 1 | ||||
-rw-r--r-- | dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-2.2.0.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-cpp/rapidfuzz-cpp/Manifest b/dev-cpp/rapidfuzz-cpp/Manifest index a647233adc3c..1e24800c5762 100644 --- a/dev-cpp/rapidfuzz-cpp/Manifest +++ b/dev-cpp/rapidfuzz-cpp/Manifest @@ -1,2 +1,3 @@ DIST rapidfuzz-cpp-2.0.0.gh.tar.gz 287804 BLAKE2B f49e5681c41da985c71b61f7deb3f50ec778c15c9ccbc0484107b7508adf22c24b707c7f6a309ff307312e3e862ff7b8e0672c528201708a4ed5f3361dd76935 SHA512 02af141b123545303d634ffe84fbe83e635f06c9ffa3a6506661e53beb22fe7221942b3e46d33b2a49ef929c5de9acfb00c48cb5685c760506c5fcf37c716f9a DIST rapidfuzz-cpp-2.1.1.gh.tar.gz 294473 BLAKE2B 71dc85cc8b5b11224ee26b3be117869e26c4fe43a780baa5629282675c2a9ca523deb22fbe58c15f265b53960fa0a8310b99ecd2fc412b2dbaacd3983dd69ab9 SHA512 802f465a1e3e21e6417c40e77e241a4e50a996f6aa70739f25cee228490fff4f2b366d6029beea9639769493f63520e5242665a91a6f105ebf1feb377a3a2e50 +DIST rapidfuzz-cpp-2.2.0.gh.tar.gz 297682 BLAKE2B 98b781eb64e14ed62ab388e6858f1183e231aa293d5561f778a786fe7a6cca97ead9af9665ec29c6683acbbc3513df15832879e6fff3ab383e52c41d1a126579 SHA512 a3dee89e37d085b2c41ab6541a5e7098ab1dcc42255ee722faa8d723a1d61f4593036a2a8c875f71e426d8964b3fc4fda955432df00108c713c0d6028688a2f1 diff --git a/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-2.2.0.ebuild b/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-2.2.0.ebuild new file mode 100644 index 000000000000..1cf4910aa2c4 --- /dev/null +++ b/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-2.2.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Rapid fuzzy string matching in C++" +HOMEPAGE="https://github.com/maxbachmann/rapidfuzz-cpp/" +SRC_URI=" + https://github.com/maxbachmann/rapidfuzz-cpp/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + test? ( + >=dev-cpp/catch-3 + ) +" + +src_configure() { + local mycmakeargs=( + -DRAPIDFUZZ_BUILD_TESTING=$(usex test) + ) + cmake_src_configure +} |