From 14e6e99cef11361e52f19a2a58d6880ea7a166c2 Mon Sep 17 00:00:00 2001 From: Llewellyn Falco Date: Wed, 8 Sep 2021 10:50:38 -0600 Subject: [PATCH 1/8] Add approvaltests.cpp 10.12.0 --- recipes/approvaltests.cpp/all/conandata.yml | 5 +++++ recipes/approvaltests.cpp/config.yml | 2 ++ 2 files changed, 7 insertions(+) diff --git a/recipes/approvaltests.cpp/all/conandata.yml b/recipes/approvaltests.cpp/all/conandata.yml index ce145471fa437..795dad492a414 100644 --- a/recipes/approvaltests.cpp/all/conandata.yml +++ b/recipes/approvaltests.cpp/all/conandata.yml @@ -169,3 +169,8 @@ sources: sha256: 7f4efb835d59b2f31c3dc8a6f35335ad621da538ccb09abf2037d29d4f13f0b2 - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.11.0/LICENSE" sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 + 10.12.0: + - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.12.0/ApprovalTests.v.10.12.0.hpp + sha256: 5084ad71b8cc73ea9d753685b652d8828842335a59ab93a2199ceac879a4b292 + - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.12.0/LICENSE" + sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 diff --git a/recipes/approvaltests.cpp/config.yml b/recipes/approvaltests.cpp/config.yml index 1f6ee2de19cb2..2e88d34b706cb 100644 --- a/recipes/approvaltests.cpp/config.yml +++ b/recipes/approvaltests.cpp/config.yml @@ -67,3 +67,5 @@ versions: folder: all 10.11.0: folder: all + 10.12.0: + folder: all From 430a609c3e01a9f9491f0fb1ece9ae103f6008a2 Mon Sep 17 00:00:00 2001 From: Llewellyn Falco Date: Fri, 10 Sep 2021 11:23:33 -0600 Subject: [PATCH 2/8] e disable build on armv8 as requested Co-Authored-By: Clare Macrae --- recipes/approvaltests.cpp/all/conanfile.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes/approvaltests.cpp/all/conanfile.py b/recipes/approvaltests.cpp/all/conanfile.py index 15193eade5562..c5cc66da1eedf 100644 --- a/recipes/approvaltests.cpp/all/conanfile.py +++ b/recipes/approvaltests.cpp/all/conanfile.py @@ -83,6 +83,8 @@ def _std_puttime_required(self): return Version(self.version) >= "10.2.0" def _validate_compiler_settings(self): + if self.settings.arch == "armv8": + raise ConanInvalidConfiguration("see #7146") if self._std_puttime_required(): self._require_at_least_compiler_version("gcc", 5) From bef9533e4a1c2c021d002e2b67356413a16f429a Mon Sep 17 00:00:00 2001 From: Clare Macrae Date: Fri, 10 Sep 2021 20:09:24 +0100 Subject: [PATCH 3/8] Add "arch" to settings in test_package dir --- recipes/approvaltests.cpp/all/conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/approvaltests.cpp/all/conanfile.py b/recipes/approvaltests.cpp/all/conanfile.py index c5cc66da1eedf..5bfff5d080b51 100644 --- a/recipes/approvaltests.cpp/all/conanfile.py +++ b/recipes/approvaltests.cpp/all/conanfile.py @@ -28,7 +28,7 @@ class ApprovalTestsCppConan(ConanFile): "with_cpputest": False, } no_copy_source = True - settings = "compiler" + settings = "compiler", "arch" def configure(self): if not self._boost_test_supported(): From 947378b21d7d45097b188757d402c9a7fb2e421e Mon Sep 17 00:00:00 2001 From: Clare Macrae Date: Sun, 12 Sep 2021 08:48:32 +0100 Subject: [PATCH 4/8] Make error message more specific Thank you @prince-chrismc Co-authored-by: Chris Mc --- recipes/approvaltests.cpp/all/conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/approvaltests.cpp/all/conanfile.py b/recipes/approvaltests.cpp/all/conanfile.py index 5bfff5d080b51..dd2aa0f043cce 100644 --- a/recipes/approvaltests.cpp/all/conanfile.py +++ b/recipes/approvaltests.cpp/all/conanfile.py @@ -84,7 +84,7 @@ def _std_puttime_required(self): def _validate_compiler_settings(self): if self.settings.arch == "armv8": - raise ConanInvalidConfiguration("see #7146") + raise ConanInvalidConfiguration("Currently unsupported by this recipe, see https://github.com/conan-io/conan-center-index/pull/7213#issuecomment-916983425 for more information") if self._std_puttime_required(): self._require_at_least_compiler_version("gcc", 5) From 0a902215114fea6fb1f71a7327aff3f1dea94932 Mon Sep 17 00:00:00 2001 From: Clare Macrae Date: Sun, 12 Sep 2021 09:40:06 +0100 Subject: [PATCH 5/8] Update Catch2 version, to fix building on armv8 --- recipes/approvaltests.cpp/all/conanfile.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/recipes/approvaltests.cpp/all/conanfile.py b/recipes/approvaltests.cpp/all/conanfile.py index dd2aa0f043cce..1d97d67e683c9 100644 --- a/recipes/approvaltests.cpp/all/conanfile.py +++ b/recipes/approvaltests.cpp/all/conanfile.py @@ -45,7 +45,7 @@ def requirements(self): if self.options.get_safe("with_boosttest"): self.requires("boost/1.72.0") if self.options.with_catch2: - self.requires("catch2/2.11.0") + self.requires("catch2/2.13.7") if self.options.with_gtest: self.requires("gtest/1.10.0") if self.options.with_doctest: @@ -83,8 +83,6 @@ def _std_puttime_required(self): return Version(self.version) >= "10.2.0" def _validate_compiler_settings(self): - if self.settings.arch == "armv8": - raise ConanInvalidConfiguration("Currently unsupported by this recipe, see https://github.com/conan-io/conan-center-index/pull/7213#issuecomment-916983425 for more information") if self._std_puttime_required(): self._require_at_least_compiler_version("gcc", 5) From 767dae8dc1f2e2f19f2fc908cf8ba9ad79501174 Mon Sep 17 00:00:00 2001 From: Clare Macrae Date: Sun, 12 Sep 2021 09:42:02 +0100 Subject: [PATCH 6/8] Remove arch from settings in test_package - no longer needed... --- recipes/approvaltests.cpp/all/conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/approvaltests.cpp/all/conanfile.py b/recipes/approvaltests.cpp/all/conanfile.py index 1d97d67e683c9..628ffaa6bb18d 100644 --- a/recipes/approvaltests.cpp/all/conanfile.py +++ b/recipes/approvaltests.cpp/all/conanfile.py @@ -28,7 +28,7 @@ class ApprovalTestsCppConan(ConanFile): "with_cpputest": False, } no_copy_source = True - settings = "compiler", "arch" + settings = "compiler" def configure(self): if not self._boost_test_supported(): From 0622ec0c12c893be18bbf3e168fe2c7ab7c68fac Mon Sep 17 00:00:00 2001 From: Clare Macrae Date: Sun, 12 Sep 2021 12:14:17 +0100 Subject: [PATCH 7/8] Update doctest version, to fix building on armv8 --- recipes/approvaltests.cpp/all/conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/approvaltests.cpp/all/conanfile.py b/recipes/approvaltests.cpp/all/conanfile.py index 628ffaa6bb18d..deb401e131a6e 100644 --- a/recipes/approvaltests.cpp/all/conanfile.py +++ b/recipes/approvaltests.cpp/all/conanfile.py @@ -49,7 +49,7 @@ def requirements(self): if self.options.with_gtest: self.requires("gtest/1.10.0") if self.options.with_doctest: - self.requires("doctest/2.3.6") + self.requires("doctest/2.4.6") if self.options.get_safe("with_cpputest"): self.requires("cpputest/4.0") From 879ea58e3a90e1b885f1292518c16e4facb9f23c Mon Sep 17 00:00:00 2001 From: Clare Macrae Date: Wed, 15 Sep 2021 19:49:59 +0100 Subject: [PATCH 8/8] Stop updating many old ApprovalTests.cpp versions in conan-center-index All the older versions will persist on conan center: their recipes will just no longer be tested during CI builds, and they won't get new revisions. It was suggested by @uilianries that I retain the newest releases on the 8.x and 9.x series, in case their receipes ever need updating, and so long as they do not complicate the Python recipes. I've also kept a few of the 10.x series as well. --- recipes/approvaltests.cpp/all/conandata.yml | 145 -------------------- recipes/approvaltests.cpp/config.yml | 58 -------- 2 files changed, 203 deletions(-) diff --git a/recipes/approvaltests.cpp/all/conandata.yml b/recipes/approvaltests.cpp/all/conandata.yml index 795dad492a414..5cec1bee8bd0e 100644 --- a/recipes/approvaltests.cpp/all/conandata.yml +++ b/recipes/approvaltests.cpp/all/conandata.yml @@ -1,74 +1,4 @@ sources: - 8.0.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.8.0.0/ApprovalTests.v.8.0.0.hpp - sha256: e16a97081f8582be951d95a9d53dc611f1f5a84e117a477029890d0b34ae99d6 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.8.0.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 8.1.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.8.1.0/ApprovalTests.v.8.1.0.hpp - sha256: 6212684654b3deec3e54669602832b45bd9d9b6a2f45dbddce23ab5ba91e2d7e - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.8.1.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 8.1.1: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.8.1.1/ApprovalTests.v.8.1.1.hpp - sha256: 19b39976cbe381c64470399bcf40b61d34712fe959396e1cf4b60c9508a28d34 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.8.1.1/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 8.2.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.8.2.0/ApprovalTests.v.8.2.0.hpp - sha256: ef8eeafdef5b1c158e2dc73ba7e12b7697621cbf0c34b175755718f159fa4df8 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.8.2.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 8.3.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.8.3.0/ApprovalTests.v.8.3.0.hpp - sha256: 6e422b22a369c1a4134b68e7ef611e021ffbe43cfd411a81529b92d48fd03f59 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.8.3.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 8.4.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.8.4.0/ApprovalTests.v.8.4.0.hpp - sha256: 65e826aaca1cb9126c7bd41da9f1b4b131ec4cdde57450dda49233578e389bbb - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.8.4.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 8.5.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.8.5.0/ApprovalTests.v.8.5.0.hpp - sha256: ab2bee6487229e4f1f26d578b36ac6a73dfeb0fdab36b2ed774b4575ee544a33 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.8.5.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 8.6.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.8.6.0/ApprovalTests.v.8.6.0.hpp - sha256: eb62bc0aae1996fed35db0ab8571199a694954668c3ce27d5250db6a09b98f06 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.8.6.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 8.7.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.8.7.0/ApprovalTests.v.8.7.0.hpp - sha256: 764f0d441b10739d2cba5fb5aff43d2e4dcd1eb7972cccf884db92eae30c3460 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.8.7.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 8.7.1: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.8.7.1/ApprovalTests.v.8.7.1.hpp - sha256: 8b68e0278ccdc277cf39a59aacfd651c5ca59ff7b1a2604f251dc9162b64a214 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.8.7.1/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 8.8.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.8.8.0/ApprovalTests.v.8.8.0.hpp - sha256: fa572c13dd27c885427dc3539813518502456545993f9eb32b8eb5c5c388d857 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.8.8.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 8.8.1: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.8.8.1/ApprovalTests.v.8.8.1.hpp - sha256: 5fb945e50d37b1cdfdd35aacdd93dab58f0d1c6814f8792c79f7c4aa521f9f40 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.8.8.1/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 8.9.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.8.9.0/ApprovalTests.v.8.9.0.hpp - sha256: eaba5a46ab4406f5bd5c735ae26f453a957b664662c5febe1dad7de88718988d - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.8.9.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 8.9.1: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.8.9.1/ApprovalTests.v.8.9.1.hpp - sha256: 8c27eefe37355aaf6f8b8d1ecb23a1354c0c5af97725f105182f1eb1fd17ee3c - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.8.9.1/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 8.9.2: - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.8.9.2/ApprovalTests.v.8.9.2.hpp sha256: e743f1b83afb045cb9bdee310e438a3ed610a549240e4b4c4c995e548c773da5 @@ -79,81 +9,6 @@ sources: sha256: cae3599dc29bd50c2cf48967e209c854e7b867ecdc8a5aec143b6fb4a7dcc739 - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.9.0.0/LICENSE" sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 10.0.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.0.0/ApprovalTests.v.10.0.0.hpp - sha256: 3d1beff2305b067f12a56cc79f0f091fde6cb9edc02fcbfef28c26e24352976c - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.0.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 10.0.1: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.0.1/ApprovalTests.v.10.0.1.hpp - sha256: 62dad6a3803a49e2281497c07f64e0396503b8e99a474293383acb7be98a69ef - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.0.1/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 10.1.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.1.0/ApprovalTests.v.10.1.0.hpp - sha256: 031cdaeeb31d3b78aed5a6e13fc80c4d1ec607932703b38066ac2afb9b2bb2f8 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.1.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 10.1.1: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.1.1/ApprovalTests.v.10.1.1.hpp - sha256: 3d4109bb926f53e18c12b14de934baad8c6464c220076293b63a63155a82f754 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.1.1/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 10.1.2: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.1.2/ApprovalTests.v.10.1.2.hpp - sha256: 614af9434a821df39b0ffbc79ac079f2e025eb19db32e1891e9e082729b70ddc - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.1.2/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 10.2.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.2.0/ApprovalTests.v.10.2.0.hpp - sha256: 6d699ba637213c30ef09dfc43cb3e9ce114044f593aeea9a94e88d8baa74d33a - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.2.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 10.2.1: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.2.1/ApprovalTests.v.10.2.1.hpp - sha256: 9a080f5f7c502998a08e1213fd66a884ca278e764e6555bb5eb305810adc28cc - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.2.1/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 10.3.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.3.0/ApprovalTests.v.10.3.0.hpp - sha256: 2d86c0c2e09627620e065bbebae5676c7f69e78431bb82f1f7d74334275c9af9 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.3.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 10.4.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.4.0/ApprovalTests.v.10.4.0.hpp - sha256: 36d8a0eb9c1765e745e8a2da7cbdc6546206e17410a04b7572757ee2c3a67d55 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.4.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 10.5.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.5.0/ApprovalTests.v.10.5.0.hpp - sha256: 6f922787d3590d38d4fa2e42fe2c33cba1a04eed8e80aa420c2eb999bf21f671 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.5.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 10.5.1: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.5.1/ApprovalTests.v.10.5.1.hpp - sha256: 9097155f20631fd7e0cebe86a1d5744fe2b0d76a1ce7f7b4f63f0368c71a7d5e - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.5.1/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 10.6.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.6.0/ApprovalTests.v.10.6.0.hpp - sha256: e4ae4a5fa19cb2a2b723bdbef940fd6e0c6f0e18dc6ee0e7b10b88218a33d7dc - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.6.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 10.7.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.7.0/ApprovalTests.v.10.7.0.hpp - sha256: bfb1cc074cef756e0310cdf666116932a6779ba002a11ba9f4db7558ded28f04 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.7.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 10.7.1: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.7.1/ApprovalTests.v.10.7.1.hpp - sha256: 453eff5d04dcfdc566690df8393bf02f21aced80f5ec03068d00111632a7b549 - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.7.1/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 - 10.8.0: - - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.8.0/ApprovalTests.v.10.8.0.hpp - sha256: adcc8ac09777f62eda5dcb721d6c1ebc9f22a621997c761920c9d3858c4d3eff - - url: "https://raw.githubusercontent.com/approvals/ApprovalTests.cpp/v.10.8.0/LICENSE" - sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 10.9.1: - url: https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.9.1/ApprovalTests.v.10.9.1.hpp sha256: 65aa9ab1afa1b9c2df5890274010eed0f8c2f57b08a81c5cb719b71a0ad9d14c diff --git a/recipes/approvaltests.cpp/config.yml b/recipes/approvaltests.cpp/config.yml index 2e88d34b706cb..1f6e1bc201ca5 100644 --- a/recipes/approvaltests.cpp/config.yml +++ b/recipes/approvaltests.cpp/config.yml @@ -1,66 +1,8 @@ versions: - 8.0.0: - folder: all - 8.1.0: - folder: all - 8.1.1: - folder: all - 8.2.0: - folder: all - 8.3.0: - folder: all - 8.4.0: - folder: all - 8.5.0: - folder: all - 8.6.0: - folder: all - 8.7.0: - folder: all - 8.7.1: - folder: all - 8.8.0: - folder: all - 8.8.1: - folder: all - 8.9.0: - folder: all - 8.9.1: - folder: all 8.9.2: folder: all 9.0.0: folder: all - 10.0.0: - folder: all - 10.0.1: - folder: all - 10.1.0: - folder: all - 10.1.1: - folder: all - 10.1.2: - folder: all - 10.2.0: - folder: all - 10.2.1: - folder: all - 10.3.0: - folder: all - 10.4.0: - folder: all - 10.5.0: - folder: all - 10.5.1: - folder: all - 10.6.0: - folder: all - 10.7.0: - folder: all - 10.7.1: - folder: all - 10.8.0: - folder: all 10.9.1: folder: all 10.10.0: