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

jfalcou-eve/v2021.10.0 #7744

Merged
merged 9 commits into from
Oct 23, 2021
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 3 additions & 0 deletions recipes/jfalcou-eve/all/conandata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ sources:
"cci.20210823":
url: "https://github.com/jfalcou/eve/archive/30e7a7f6bcc5cf524a6c2cc624234148eee847be.tar.gz"
sha256: "c267135f7215197ef6859b2aa1c5b6a7fc45ca8333933beda56c96b0d0400ef1"
"v2021.10.0":
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we get rid of the v, it will follow semver and version ranges would work here. Do we know if it is semver?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

url: "https://github.com/jfalcou/eve/archive/refs/tags/v2021.10.0.tar.gz"
sha256: "580c40a8244039a700b93ea49fb0affc1c8d3c100eb6dc66368e101753f51e5c"
5 changes: 4 additions & 1 deletion recipes/jfalcou-eve/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,15 @@ def _compilers_minimum_version(self):
return {
"gcc": "10.2",
ericLemanissier marked this conversation as resolved.
Show resolved Hide resolved
"Visual Studio": "16.9",
"clang": "10",
"clang": "12",
"apple-clang": "13",
}

def validate(self):
if self.settings.compiler.get_safe("cppstd"):
tools.check_min_cppstd(self, self._min_cppstd)
if self.settings.compiler == "Visual Studio":
raise ConanInvalidConfiguration("EVE does not support MSVC yet (https://github.com/jfalcou/eve/issues/1022).")

def lazy_lt_semver(v1, v2):
lv1 = [int(v) for v in v1.split(".")]
Expand Down
2 changes: 2 additions & 0 deletions recipes/jfalcou-eve/config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
versions:
"cci.20210823":
folder: all
"v2021.10.0":
folder: all