Skip to content

Commit

Permalink
(conan-io#25556) ouster_sdk: add version 0.13.0
Browse files Browse the repository at this point in the history
* ouster_sdk: add version 0.13.0

* update homepage to new repo URL

* update: reviewer comments
  • Loading branch information
jmdaly authored and OMGtechy committed Dec 31, 2024
1 parent 206cc27 commit 6141c43
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
20 changes: 11 additions & 9 deletions recipes/ouster_sdk/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@
sources:
# The C++ library uses a separate versioning scheme from the overall releases
"0.13.0":
url: "https://github.com/ouster-lidar/ouster-sdk/archive/refs/tags/release-0.13.0.tar.gz"
sha256: "baf65fbf547375fe73fdaee89c6c1246fdf9f0cabe4f4bd16391d3a06d0117a1"
"0.12.0":
url: "https://github.com/ouster-lidar/ouster_example/archive/refs/tags/20240703.tar.gz"
sha256: "aac9f82d8b8376bd11366204a57ab4e2a27e92a1a758238f2d3859e570be4914"
url: "https://github.com/ouster-lidar/ouster-sdk/archive/refs/tags/20240703.tar.gz"
sha256: "7edff33451e99fe094aeafc4c10081d77bfe02d2f2ab16da93a44a5e61473af7"
"0.11.0":
url: "https://github.com/ouster-lidar/ouster_example/archive/refs/tags/20240425.tar.gz"
sha256: "f4f38f6787021e697633f2c290c95b544af81d388a18cb9f790234d4f592caf0"
url: "https://github.com/ouster-lidar/ouster-sdk/archive/refs/tags/20240425.tar.gz"
sha256: "8141abf4caef8a175a48c35c47bd841b34f8a7d758cb3ad66cf948a7042adbf9"
"0.10.0":
url: "https://github.com/ouster-lidar/ouster_example/archive/refs/tags/20231031.tar.gz"
sha256: "150482d28930308ef089233f3d4eb15d1330727a167aad3f9b2190078dcecfbf"
url: "https://github.com/ouster-lidar/ouster-sdk/archive/refs/tags/20231031.tar.gz"
sha256: "c45dfd42ff11e171b605ffd0a98d8094ec88ecbbccb923d396e1e73cba7737f3"
patches:
"0.11.0":
- patch_file: "patches/001-579-fix-cpp20-string-error.patch"
patch_type: "portability"
patch_description: "Fix non-const string issue with C++20"
patch_source: "https://github.com/ouster-lidar/ouster_example/pull/579"
patch_source: "https://github.com/ouster-lidar/ouster-sdk/pull/579"
"0.10.0":
- patch_file: "patches/001-579-fix-cpp20-string-error.patch"
patch_type: "portability"
patch_description: "Fix non-const string issue with C++20"
patch_source: "https://github.com/ouster-lidar/ouster_example/pull/579"
patch_source: "https://github.com/ouster-lidar/ouster-sdk/pull/579"
6 changes: 1 addition & 5 deletions recipes/ouster_sdk/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class OusterSdkConan(ConanFile):
description = "Ouster SDK - tools for working with Ouster Lidars"
license = "BSD 3-Clause"
url = "https://github.com/conan-io/conan-center-index"
homepage = "https://github.com/ouster-lidar/ouster_example"
homepage = "https://github.com/ouster-lidar/ouster-sdk"
topics = ("ouster", "lidar", "driver", "hardware", "point cloud", "3d", "robotics", "automotive")

package_type = "library"
Expand Down Expand Up @@ -98,8 +98,6 @@ def requirements(self):
if self.options.build_viz:
self.requires("glad/0.1.36")
self.requires("glfw/3.4")
if self.settings.os != "Windows":
self.requires("xorg/system")

def validate(self):
if conan_version.major < 2 and self.settings.os == "Windows":
Expand Down Expand Up @@ -212,8 +210,6 @@ def package_info(self):
"glad::glad",
"glfw::glfw",
]
if self.settings.os != "Windows":
self.cpp_info.components["ouster_viz"].requires.append("xorg::xorg")

# TODO: to remove in conan v2 once cmake_find_package_* generators removed
self.cpp_info.filenames["cmake_find_package"] = "OusterSDK"
Expand Down
2 changes: 2 additions & 0 deletions recipes/ouster_sdk/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
versions:
"0.13.0":
folder: all
"0.12.0":
folder: all
"0.11.0":
Expand Down

0 comments on commit 6141c43

Please sign in to comment.