summaryrefslogtreecommitdiff
path: root/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.8.0.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-10-30 06:53:17 +0100
committerMichał Górny <mgorny@gentoo.org>2022-10-30 07:38:46 +0100
commitca7e2e6f3fab6aa1be87c4f5dc60f7cd8a6fc806 (patch)
tree3a03d7f52f5584403b4fb336faca86eedb9fc091 /dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.8.0.ebuild
parentec476d075006e7a60c23df66a3db762044deb61b (diff)
downloadgentoo-ca7e2e6f3fab6aa1be87c4f5dc60f7cd8a6fc806.tar.gz
gentoo-ca7e2e6f3fab6aa1be87c4f5dc60f7cd8a6fc806.tar.bz2
gentoo-ca7e2e6f3fab6aa1be87c4f5dc60f7cd8a6fc806.zip
dev-cpp/rapidfuzz-cpp: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.8.0.ebuild')
-rw-r--r--dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.8.0.ebuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.8.0.ebuild b/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.8.0.ebuild
deleted file mode 100644
index 6fb280d52d37..000000000000
--- a/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.8.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2022 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="~amd64 ~riscv"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- test? (
- >=dev-cpp/catch-3
- )
-"
-
-src_prepare() {
- # apparently "C++ best practices" don't mind fetching random stuff
- # at build time
- sed -i -e '/aminya/,/^)/d' test/CMakeLists.txt || die
- find -name 'CMakeLists.txt' -exec \
- sed -i -e 's:project_warnings::' {} + || die
-
- cmake_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DRAPIDFUZZ_BUILD_TESTING=$(usex test)
- )
- cmake_src_configure
-}