Skip to content

Commit

Permalink
remove conan v1 test_package
Browse files Browse the repository at this point in the history
  • Loading branch information
AbrilRBS authored Nov 11, 2024
1 parent ce4b1a3 commit ec83fd7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 31 deletions.
11 changes: 5 additions & 6 deletions recipes/exiv2/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,11 @@ def validate(self):
"clang": "5",
"apple-clang": "10",
}
if not is_msvc(self):
minimum_version = compilers_minimum_version.get(str(self.settings.compiler), False)
if minimum_version and Version(self.info.settings.compiler.version) < minimum_version:
raise ConanInvalidConfiguration(
f"{self.ref} requires C++{min_cppstd}, which your compiler does not fully support."
)
minimum_version = compilers_minimum_version.get(str(self.settings.compiler), False)
if minimum_version and Version(self.info.settings.compiler.version) < minimum_version:
raise ConanInvalidConfiguration(
f"{self.ref} requires C++{min_cppstd}, which your compiler does not fully support."
)
else:
# https://github.com/Exiv2/exiv2/tree/v0.27.7#217-building-with-c11-and-other-compilers
check_max_cppstd(self, 14)
Expand Down
8 changes: 0 additions & 8 deletions recipes/exiv2/all/test_v1_package/CMakeLists.txt

This file was deleted.

17 changes: 0 additions & 17 deletions recipes/exiv2/all/test_v1_package/conanfile.py

This file was deleted.

0 comments on commit ec83fd7

Please sign in to comment.