diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-03-04 14:47:47 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-03-04 15:52:43 +0100 |
commit | ff41195d145fc41687ee14a1d4d784b72eeda47a (patch) | |
tree | 86cb6b225a5450c6d5fa8d2357efe582754e0950 /dev-cpp | |
parent | dev-python/jupyter-server: Bump to 2.13.0 (diff) | |
download | gentoo-ff41195d145fc41687ee14a1d4d784b72eeda47a.tar.gz gentoo-ff41195d145fc41687ee14a1d4d784b72eeda47a.tar.bz2 gentoo-ff41195d145fc41687ee14a1d4d784b72eeda47a.zip |
dev-cpp/rapidfuzz-cpp: Bump to 3.0.2
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-3.0.2.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-cpp/rapidfuzz-cpp/Manifest b/dev-cpp/rapidfuzz-cpp/Manifest index 3d811e1e18d3..452130e2c753 100644 --- a/dev-cpp/rapidfuzz-cpp/Manifest +++ b/dev-cpp/rapidfuzz-cpp/Manifest @@ -1,3 +1,4 @@ DIST rapidfuzz-cpp-2.2.3.gh.tar.gz 299404 BLAKE2B e45cf997cb6454aae781cb67663bcc12a0b507efd88b9293a4ec3424fb67ff713983e77041808488abad3d710a5a81aa45295f838908a8fdbad1f980a8eeb00f SHA512 5ef4833334ccc3309d43ae4a2644eb57fa2a382b797c791b150b8d78451d7e6d57a8af23d0b7645eecfe539a128d2d8585e2a7380b6772b23cf8fd71d6a7f38b DIST rapidfuzz-cpp-3.0.0.gh.tar.gz 301220 BLAKE2B c5fb0c088a18d86afcea71ef32711951da9c1b3f4d0d75e74f0d3ca84711c52dac2fe3d2f7790722fb7f88378e4c0d04dabbc4f9e1a656314ec61bd5b9bbc7df SHA512 c5f20399bd1cfaa057c40cc17be5d730d50c1014553241f80f461a2fa89de670357d17a4f090394170263b09a53aa29238e5eff2caf9064a2a118c42aa14f320 DIST rapidfuzz-cpp-3.0.1.gh.tar.gz 301815 BLAKE2B 751644e01c6195bf5bd13fa7bb35bed4b4878ed39d0fe8102c2c257d54bddecc6f480bab4e78d9b9b81e1366737afb77db5af45dcf4bde0555ba147d50b0b681 SHA512 6bca79a2f4c411993e6f0d9cb60d6a8f88b5c612c6a94e7876158cb7ab9e392965cecfc1264d5165a59e82684edc73fbf16c9da2a8d478d420f0824f67da2732 +DIST rapidfuzz-cpp-3.0.2.gh.tar.gz 301823 BLAKE2B 49743ab1634649bf5a2b33d91dce1877b0c3135345d9c187eb2d633a1bb804701697d8245a74cfde2a76564abeb3fc8228dce121dcc1a05f74630400d06bb659 SHA512 76c1c5cc193c023c3994404c634bfb071eb45e737fcf81a74f1fa6c345a4daf69202d96bb31041b5393f344c176709f466df46eeb0ee0c4c329e70a58b7cab9d diff --git a/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-3.0.2.ebuild b/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-3.0.2.ebuild new file mode 100644 index 000000000000..d6330403376e --- /dev/null +++ b/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-3.0.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 2022-2024 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/rapidfuzz/rapidfuzz-cpp/" +SRC_URI=" + https://github.com/rapidfuzz/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 +} |