Skip to content

Update cyclonedds[-cxx] packages to include 0.10.5 releases #26399

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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/cyclonedds-cxx/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
sources:
"0.10.5":
url: "https://github.com/eclipse-cyclonedds/cyclonedds-cxx/archive/refs/tags/0.10.5.tar.gz"
sha256: "94a6287f617e689690fc17a068b60be1ae003099702d3e1a95162f74edb88442"
"0.10.4":
url: "https://github.com/eclipse-cyclonedds/cyclonedds-cxx/archive/refs/tags/0.10.4.tar.gz"
sha256: "ca09d738b150a7dc1fa63dcb5ad211a4ba516c92710ebff7b9fe817c7c5a257e"
2 changes: 1 addition & 1 deletion recipes/cyclonedds-cxx/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def requirements(self):
self.requires("cyclonedds/{}".format(self.version), transitive_headers=True)

if self.options.with_shm:
self.requires("iceoryx/2.0.5")
self.requires("iceoryx/2.0.6")

def validate(self):
if self.settings.compiler.get_safe("cppstd"):
Expand Down
2 changes: 2 additions & 0 deletions recipes/cyclonedds-cxx/config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
versions:
"0.10.5":
folder: all
"0.10.4":
folder: all
3 changes: 3 additions & 0 deletions recipes/cyclonedds/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
sources:
"0.10.5":
url: "https://github.com/eclipse-cyclonedds/cyclonedds/archive/refs/tags/0.10.5.tar.gz"
sha256: "ec3ec898c52b02f939a969cd1a276e219420e5e8419b21cea276db35b4821848"
"0.10.4":
url: "https://github.com/eclipse-cyclonedds/cyclonedds/archive/0.10.4.tar.gz"
sha256: "fe7bb5a4348e31656a935f72dec909a7d2b0fcf10840614fb552f08eb2da8484"
Expand Down
5 changes: 4 additions & 1 deletion recipes/cyclonedds/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ class CycloneDDSConan(ConanFile):
"fPIC": [True, False],
"with_ssl": [True, False],
"with_shm" : [True, False],
"with_lto": [True, False],
"enable_security" : [True, False],
"enable_discovery" : [True, False],
}
Expand All @@ -35,6 +36,7 @@ class CycloneDDSConan(ConanFile):
"with_shm": False,
"enable_security": False,
"enable_discovery": True,
"with_lto": True,
}

short_paths = True
Expand Down Expand Up @@ -77,7 +79,7 @@ def layout(self):

def requirements(self):
if self.options.with_shm:
self.requires("iceoryx/2.0.5")
self.requires("iceoryx/2.0.6")
if self.options.with_ssl:
self.requires("openssl/[>=1.1 <4]")

Expand Down Expand Up @@ -111,6 +113,7 @@ def generate(self):
# variables which effects build
tc.variables["ENABLE_SSL"] = self.options.with_ssl
tc.variables["ENABLE_SHM"] = self.options.with_shm
tc.variables["ENABLE_LTO"] = self.options.with_lto
tc.variables["ENABLE_SECURITY"] = self.options.enable_security
tc.variables["ENABLE_TYPE_DISCOVERY"] = self.options.enable_discovery
tc.variables["ENABLE_TOPIC_DISCOVERY"] = self.options.enable_discovery
Expand Down
2 changes: 2 additions & 0 deletions recipes/cyclonedds/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
versions:
"0.10.5":
folder: all
"0.10.4":
folder: all
"0.10.3":
Expand Down