Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

turtle: add new version 2.0.0 #25552

Merged
merged 3 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions recipes/turtle/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
sources:
"1.3.1":
url: "https://github.com/mat007/turtle/archive/v1.3.1.tar.gz"
sha256: "1ea10600a4046286a781c898ed3110d48fdab473f5320dc48cc2775353039b8b"
"2.0.0":
url: "https://github.com/mat007/turtle/archive/v2.0.0.tar.gz"
sha256: "636a552fc442d452955eca1f554e6a962b38270c1a6290538c6405da59b49e45"
"1.3.2":
url: "https://github.com/mat007/turtle/archive/v1.3.2.tar.gz"
sha256: "4dc0bd79ddecd337691d5805ecb25f427bd85d9549f44d06cd3a6b7f0f0235d4"
"1.3.1":
url: "https://github.com/mat007/turtle/archive/v1.3.1.tar.gz"
sha256: "1ea10600a4046286a781c898ed3110d48fdab473f5320dc48cc2775353039b8b"
41 changes: 35 additions & 6 deletions recipes/turtle/all/conanfile.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,37 @@
from conan import ConanFile
from conan.errors import ConanInvalidConfiguration
from conan.tools.build import check_min_cppstd
from conan.tools.files import get, copy
from conan.tools.layout import basic_layout
from conan.tools.scm import Version
import os

required_conan_version = ">=1.53.0"

class TurtleConan(ConanFile):
name = "turtle"
description = "Turtle is a C++ mock object library based on Boost with a focus on usability, simplicity and flexibility."
topics = ("mock", "test", "boost")
license = "BSL-1.0"
url = "https://github.com/conan-io/conan-center-index"
homepage = "https://github.com/mat007/turtle"
license = "BSL-1.0"
no_copy_source = True
topics = ("mock", "test", "boost", "header-only")
package_type = "header-library"
settings = "os", "arch", "compiler", "build_type"
no_copy_source = True

@property
def _min_cppstd(self):
return 14

@property
def _compilers_minimum_version(self):
return {
"apple-clang": "13", # for std::remove_cv_t
"clang": "7",
"gcc": "7",
"msvc": "191",
"Visual Studio": "15",
}

def layout(self):
basic_layout(self, src_folder="src")
Expand All @@ -25,13 +42,25 @@ def requirements(self):
def package_id(self):
self.info.clear()

def package_info(self):
self.cpp_info.libdirs = []
self.cpp_info.bindirs = []
def validate(self):
if Version(self.version) < "2.0.0":
return

if self.settings.compiler.get_safe("cppstd"):
check_min_cppstd(self, self._min_cppstd)
minimum_version = self._compilers_minimum_version.get(str(self.settings.compiler), False)
if minimum_version and Version(self.settings.compiler.version) < minimum_version:
raise ConanInvalidConfiguration(
f"{self.ref} requires C++{self._min_cppstd}, which your compiler does not support."
)

def source(self):
get(self, **self.conan_data["sources"][self.version], strip_root=True)

def package(self):
copy(self, "LICENSE_1_0.txt", dst=os.path.join(self.package_folder, "licenses"), src=self.source_folder)
copy(self, "*.hpp", dst=os.path.join(self.package_folder, "include"), src=os.path.join(self.source_folder, "include"))

def package_info(self):
self.cpp_info.libdirs = []
self.cpp_info.bindirs = []
4 changes: 3 additions & 1 deletion recipes/turtle/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
versions:
"1.3.1":
"2.0.0":
folder: all
"1.3.2":
folder: all
"1.3.1":
folder: all
Loading