public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/rapidfuzz-cpp/
Date: Sun, 30 Oct 2022 06:39:54 +0000 (UTC)	[thread overview]
Message-ID: <1667111926.ca7e2e6f3fab6aa1be87c4f5dc60f7cd8a6fc806.mgorny@gentoo> (raw)

commit:     ca7e2e6f3fab6aa1be87c4f5dc60f7cd8a6fc806
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 30 05:53:17 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Oct 30 06:38:46 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca7e2e6f

dev-cpp/rapidfuzz-cpp: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-cpp/rapidfuzz-cpp/Manifest                   |  2 --
 dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.7.0.ebuild | 42 ------------------------
 dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.8.0.ebuild | 42 ------------------------
 3 files changed, 86 deletions(-)

diff --git a/dev-cpp/rapidfuzz-cpp/Manifest b/dev-cpp/rapidfuzz-cpp/Manifest
index 4e7aaa9035db..900a346f34ac 100644
--- a/dev-cpp/rapidfuzz-cpp/Manifest
+++ b/dev-cpp/rapidfuzz-cpp/Manifest
@@ -1,3 +1 @@
-DIST rapidfuzz-cpp-1.7.0.gh.tar.gz 252646 BLAKE2B 5d79c07e26b6bb8e84d3280c3401bad60a3ca9846977a5bf9b13787ed7951c3805c71b7e6e2e03b14e2b988381484d969e1cc885c316bcb805b403e53332b31b SHA512 ed8af678a40161aa738bd3606b41fd54c1dba603c47fbdb1182527abd5667736e50f458af252e7bde954f263040cdbd662ad1c6be0a5caa5289f0a351dfd6d9e
-DIST rapidfuzz-cpp-1.8.0.gh.tar.gz 280419 BLAKE2B ae6b7694df3f8ba97b369608bb02783bdd48572e80a9d4f0ee51585975aaee1c0ee058862b94a7a8e46f835b03c04d134143ed07fb5c6d412b4b5cff8686c6d3 SHA512 35729c90494b419fefd9c6bbd03e42cc485d421defcd65bf5dee776d4d0756318a90456980914ccebc100b1bb388474db54638a8628efd496764c604d6221688
 DIST rapidfuzz-cpp-1.9.0.gh.tar.gz 281385 BLAKE2B 4afc48edd9c8270200645eb77065bf212b9579b90b3916e261bbe69fd60f67c1e510c3ae4ef9877a26c3313063717b362e01c6cf799a0f9fc3429799d9b2dca6 SHA512 d95c90f9118811d650d859a20f847c71427acbc8c4f907f49d23b069cd6d1a848749d32f8fbff7326828b7a030c3f488acacba5845a72a0057ccf4c3088badf4

diff --git a/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.7.0.ebuild b/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.7.0.ebuild
deleted file mode 100644
index 99e66055cc0f..000000000000
--- a/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.7.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"
-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
-}

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
-}


             reply	other threads:[~2022-10-30  6:39 UTC|newest]

Thread overview: 104+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-30  6:39 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-20 13:27 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/rapidfuzz-cpp/ Michał Górny
2024-07-20 11:47 Arthur Zamarin
2024-07-20  8:14 Arthur Zamarin
2024-07-20  7:39 Arthur Zamarin
2024-07-20  7:39 Arthur Zamarin
2024-07-03  3:44 Michał Górny
2024-04-25  3:39 Michał Górny
2024-04-24 17:16 Sam James
2024-04-24 16:15 Sam James
2024-04-24 16:15 Sam James
2024-04-24 15:35 Sam James
2024-04-24 15:32 Sam James
2024-04-24 15:31 Sam James
2024-04-24 15:31 Sam James
2024-04-08  3:06 Michał Górny
2024-04-08  3:06 Michał Górny
2024-04-06 15:01 Michał Górny
2024-03-22 12:37 Michał Górny
2024-03-22  6:14 Arthur Zamarin
2024-03-22  6:14 Arthur Zamarin
2024-03-22  3:58 Sam James
2024-03-22  3:58 Sam James
2024-03-22  3:58 Sam James
2024-03-22  3:58 Sam James
2024-03-21 17:55 Arthur Zamarin
2024-03-04 14:52 Michał Górny
2024-03-04  6:31 Michał Górny
2024-01-23  6:14 Sam James
2024-01-13 12:02 Sam James
2024-01-13 11:16 Sam James
2024-01-13 11:15 Sam James
2024-01-13 11:15 Sam James
2024-01-13  9:43 Arthur Zamarin
2024-01-13  9:24 Arthur Zamarin
2023-12-26 10:46 Michał Górny
2023-11-29 15:29 Michał Górny
2023-11-29 14:56 Arthur Zamarin
2023-11-29 14:42 Arthur Zamarin
2023-11-29 14:05 Arthur Zamarin
2023-11-29 11:32 Michał Górny
2023-11-29 11:15 Michał Górny
2023-11-29 11:04 Michał Górny
2023-11-29 10:12 Michał Górny
2023-11-06 10:19 Michał Górny
2023-11-06  7:09 Arthur Zamarin
2023-11-05 20:07 Sam James
2023-11-05 20:07 Sam James
2023-11-05 19:22 Arthur Zamarin
2023-11-05 19:15 Arthur Zamarin
2023-11-05 19:12 Arthur Zamarin
2023-11-05 19:08 Arthur Zamarin
2023-11-02 14:28 Michał Górny
2023-11-01 16:05 Michał Górny
2023-10-31  7:53 Michał Górny
2023-10-31  7:53 Michał Górny
2023-10-09 13:59 Michał Górny
2023-10-09  4:41 Michał Górny
2023-08-20 17:53 Arthur Zamarin
2023-07-14 16:26 Arthur Zamarin
2023-07-07 21:22 Sam James
2023-07-05 20:52 Sam James
2023-07-05 20:52 Sam James
2023-07-05  8:01 Arthur Zamarin
2023-07-05  8:01 Arthur Zamarin
2023-07-05  8:01 Arthur Zamarin
2023-06-03  6:48 Michał Górny
2023-05-29 20:34 Sam James
2023-05-28 19:06 Arthur Zamarin
2023-05-27 12:53 Arthur Zamarin
2023-05-27 11:02 Arthur Zamarin
2023-05-25 22:30 Sam James
2023-05-25  8:19 Arthur Zamarin
2023-05-25  8:15 Arthur Zamarin
2023-04-19  5:26 Michał Górny
2023-04-17 13:50 Michał Górny
2023-04-14 20:46 Sam James
2023-02-13  3:09 Matt Turner
2023-01-08  8:12 Joonas Niilola
2022-12-25 17:46 Arthur Zamarin
2022-12-25 17:35 Arthur Zamarin
2022-12-25 17:29 Arthur Zamarin
2022-12-25 17:21 Arthur Zamarin
2022-12-25 17:12 Arthur Zamarin
2022-12-25 17:03 Sam James
2022-12-14  6:31 Michał Górny
2022-12-12 14:34 Michał Górny
2022-12-12 14:34 Michał Górny
2022-12-05 19:12 Arthur Zamarin
2022-11-30  4:41 Sam James
2022-11-30  4:41 Sam James
2022-11-18 16:37 Arthur Zamarin
2022-11-18 16:37 Arthur Zamarin
2022-11-18 16:37 Arthur Zamarin
2022-11-18 16:37 Arthur Zamarin
2022-11-06  6:36 Michał Górny
2022-10-30  6:39 Michał Górny
2022-10-29 19:43 Sam James
2022-10-25  8:28 Michał Górny
2022-10-04 19:24 Jakov Smolić
2022-10-03 19:55 Michał Górny
2022-10-01  9:36 Michał Górny
2022-09-27  6:22 Michał Górny
2022-09-18 13:46 Michał Górny

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1667111926.ca7e2e6f3fab6aa1be87c4f5dc60f7cd8a6fc806.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox