diff options
author | Petr Vaněk <arkamar@atlas.cz> | 2022-08-17 12:08:52 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-08-27 12:38:25 +0100 |
commit | 2ad25f5aab3e13a207f6a242481da11ba9437471 (patch) | |
tree | a13c2ce4f3b305800591499b7fdadd3f5349f850 /dev-cpp/doctest | |
parent | net-libs/libbtbb: remove sourceforge upstream metadata (diff) | |
download | gentoo-2ad25f5aab3e13a207f6a242481da11ba9437471.tar.gz gentoo-2ad25f5aab3e13a207f6a242481da11ba9437471.tar.bz2 gentoo-2ad25f5aab3e13a207f6a242481da11ba9437471.zip |
dev-cpp/doctest: drop 2.4.6, 2.4.8-r1
Signed-off-by: Petr Vaněk <arkamar@atlas.cz>
Closes: https://github.com/gentoo/gentoo/pull/26896
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp/doctest')
-rw-r--r-- | dev-cpp/doctest/Manifest | 2 | ||||
-rw-r--r-- | dev-cpp/doctest/doctest-2.4.6.ebuild | 25 | ||||
-rw-r--r-- | dev-cpp/doctest/doctest-2.4.8-r1.ebuild | 27 | ||||
-rw-r--r-- | dev-cpp/doctest/files/doctest-2.4.6-remove-unused-bla2.patch | 23 | ||||
-rw-r--r-- | dev-cpp/doctest/files/doctest-2.4.8-move-only-types-fix.patch | 56 |
5 files changed, 0 insertions, 133 deletions
diff --git a/dev-cpp/doctest/Manifest b/dev-cpp/doctest/Manifest index b71ab3292ace..cd05ef97c453 100644 --- a/dev-cpp/doctest/Manifest +++ b/dev-cpp/doctest/Manifest @@ -1,3 +1 @@ -DIST doctest-2.4.6.tar.gz 2277281 BLAKE2B e6835ad33522273a3151ccfa1e760a150e2f0ccc15fb739cb518d8c9b4258f4b1529537bb6f41b285660aa00f1791b30a7db14155d9f23ea54dd11bfdeb81ec3 SHA512 a5cccf085af946003140af688f071a6407d42fc685324a537e3b704ef9de0f2228bd06eabfd1df8da70dec001420dd0b2813e5e4320b5c1da450cb0aadd63788 -DIST doctest-2.4.8.tar.gz 2275833 BLAKE2B 334ed6fda624788adf07fb92a773f3fa69addfbff389e3669e58f66271536d42ff8d20e73e20a4f1d3eee59233d476e527680bb19dcae1d9a6d062e6feedfde5 SHA512 f9b40abfd756331f9b667f3c1e7dcf2652effacac70523834dd3946522f01459c095bdbad04651ad2ad155977e1395025f868ed4dcf5d5712aae9807afb5699c DIST doctest-2.4.9.tar.gz 2292632 BLAKE2B 7d501eede5a2311117a04a11da5b518fcac4de53a73ba7b14f47395a759bc5d708438f25df61053a16a256ffcdfa37500a6892ef0890aa4df4d9f23533bfb18d SHA512 c7337e2de371c18973a0f4cb76458d6ae387e78874c9bc8aa367ffd2d592514b774e7c5ebf44f83b7046f6b33c6905fd079c36f4c33eadf52b3d651d978182cb diff --git a/dev-cpp/doctest/doctest-2.4.6.ebuild b/dev-cpp/doctest/doctest-2.4.6.ebuild deleted file mode 100644 index c8d01f2279f3..000000000000 --- a/dev-cpp/doctest/doctest-2.4.6.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2021-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="The fastest feature-rich C++11/14/17/20 single-header testing framework" -HOMEPAGE="https://github.com/doctest/doctest" -SRC_URI="https://github.com/doctest/doctest/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~ppc64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -PATCHES=( "${FILESDIR}/${P}-remove-unused-bla2.patch" ) - -src_configure() { - local mycmakeargs=( - -DDOCTEST_WITH_TESTS=$(usex test) - ) - cmake_src_configure -} diff --git a/dev-cpp/doctest/doctest-2.4.8-r1.ebuild b/dev-cpp/doctest/doctest-2.4.8-r1.ebuild deleted file mode 100644 index e611f524f5fa..000000000000 --- a/dev-cpp/doctest/doctest-2.4.8-r1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="The fastest feature-rich C++11/14/17/20 single-header testing framework" -HOMEPAGE="https://github.com/doctest/doctest" -SRC_URI="https://github.com/doctest/doctest/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -PATCHES=( - "${FILESDIR}/${P}-move-only-types-fix.patch" # bug 830624 -) - -src_configure() { - local mycmakeargs=( - -DDOCTEST_WITH_TESTS=$(usex test) - ) - cmake_src_configure -} diff --git a/dev-cpp/doctest/files/doctest-2.4.6-remove-unused-bla2.patch b/dev-cpp/doctest/files/doctest-2.4.6-remove-unused-bla2.patch deleted file mode 100644 index 69efd40e6a42..000000000000 --- a/dev-cpp/doctest/files/doctest-2.4.6-remove-unused-bla2.patch +++ /dev/null @@ -1,23 +0,0 @@ -This patch follows proposed fixes to upstream. - -PR-1: https://github.com/onqtam/doctest/pull/505 -PR-2: https://github.com/onqtam/doctest/pull/520 - - -diff --git a/examples/all_features/stringification.cpp b/examples/all_features/stringification.cpp -index a8b5d5b..492e1ec 100644 ---- a/examples/all_features/stringification.cpp -+++ b/examples/all_features/stringification.cpp -@@ -103,9 +103,6 @@ TEST_CASE("all asserts should fail and show how the objects get stringified") { - MyTypeInherited<int> bla1; - bla1.one = 5; - bla1.two = 4u; -- MyTypeInherited<int> bla2; -- bla2.one = 5; -- bla2.two = 6u; - - Bar::Foo f1; - Bar::Foo f2; --- -2.32.0 - diff --git a/dev-cpp/doctest/files/doctest-2.4.8-move-only-types-fix.patch b/dev-cpp/doctest/files/doctest-2.4.8-move-only-types-fix.patch deleted file mode 100644 index 1a0343282685..000000000000 --- a/dev-cpp/doctest/files/doctest-2.4.8-move-only-types-fix.patch +++ /dev/null @@ -1,56 +0,0 @@ -This patch is derived from upstream commit ce13bc44b99c ("Fix move-only -types failing to decompose correctly (#634)"). - -Upstream-PR: https://github.com/doctest/doctest/pull/634 - -diff --git a/doctest/doctest.h b/doctest/doctest.h -index d25f526..31096ff 100644 ---- a/doctest/doctest.h -+++ b/doctest/doctest.h -@@ -1320,7 +1320,7 @@ DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Wunused-comparison") - assertType::Enum m_at; - - explicit Expression_lhs(L&& in, assertType::Enum at) -- : lhs(doctest::detail::forward<L>(in)) -+ : lhs(static_cast<L&&>(in)) - , m_at(at) {} - - DOCTEST_NOINLINE operator Result() { -@@ -1394,8 +1394,8 @@ DOCTEST_CLANG_SUPPRESS_WARNING_POP - // https://github.com/catchorg/Catch2/issues/870 - // https://github.com/catchorg/Catch2/issues/565 - template <typename L> -- Expression_lhs<const L> operator<<(const L &&operand) { -- return Expression_lhs<const L>(doctest::detail::forward<const L>(operand), m_at); -+ Expression_lhs<L> operator<<(L&& operand) { -+ return Expression_lhs<L>(static_cast<L&&>(operand), m_at); - } - - template <typename L,typename enable_if<!doctest::detail::is_rvalue_reference<L>::value,void >::type* = nullptr> -diff --git a/doctest/parts/doctest_fwd.h b/doctest/parts/doctest_fwd.h -index b0d786f..ff9fed0 100644 ---- a/doctest/parts/doctest_fwd.h -+++ b/doctest/parts/doctest_fwd.h -@@ -1317,7 +1317,7 @@ DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Wunused-comparison") - assertType::Enum m_at; - - explicit Expression_lhs(L&& in, assertType::Enum at) -- : lhs(doctest::detail::forward<L>(in)) -+ : lhs(static_cast<L&&>(in)) - , m_at(at) {} - - DOCTEST_NOINLINE operator Result() { -@@ -1391,8 +1391,8 @@ DOCTEST_CLANG_SUPPRESS_WARNING_POP - // https://github.com/catchorg/Catch2/issues/870 - // https://github.com/catchorg/Catch2/issues/565 - template <typename L> -- Expression_lhs<const L> operator<<(const L &&operand) { -- return Expression_lhs<const L>(doctest::detail::forward<const L>(operand), m_at); -+ Expression_lhs<L> operator<<(L&& operand) { -+ return Expression_lhs<L>(static_cast<L&&>(operand), m_at); - } - - template <typename L,typename enable_if<!doctest::detail::is_rvalue_reference<L>::value,void >::type* = nullptr> --- -2.35.1 - |