Skip to content

Commit

Permalink
(#24085) lely-core: add version 2.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
toge authored May 24, 2024
1 parent 3e398de commit a78bd93
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
3 changes: 3 additions & 0 deletions recipes/lely-core/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
sources:
"2.3.4":
url: "https://gitlab.com/lely_industries/lely-core/-/archive/v2.3.4/lely-core-v2.3.4.tar.gz"
sha256: "6f31b4fd7ea6aafb1a62b9d956a12a900386564859099e97af1c6bd1d10bdaf2"
"2.3.3":
url: "https://gitlab.com/lely_industries/lely-core/-/archive/v2.3.3/lely-core-v2.3.3.tar.gz"
sha256: "6d0810f9e835543f0aeb5f86dcdc7a24578041f5d0a714bf5a14db2cb24ce373"
Expand Down
11 changes: 8 additions & 3 deletions recipes/lely-core/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,18 @@

class LelyConan(ConanFile):
name = "lely-core"
description = (
"The Lely core libraries are a collection of C and C++ libraries and tools, "
"providing high-performance I/O and sensor/actuator control for robotics and IoT applications. "
"The libraries are cross-platform and have few dependencies. "
"They can be even be used on bare-metal microcontrollers with as little as 32 kB RAM."
)
license = "Apache-2.0"
homepage = "https://gitlab.com/lely_industries/lely-core/"
url = "https://github.com/conan-io/conan-center-index"
description = "The Lely core libraries are a collection of C and C++ libraries and tools, providing high-performance I/O and sensor/actuator control for robotics and IoT applications. The libraries are cross-platform and have few dependencies. They can be even be used on bare-metal microcontrollers with as little as 32 kB RAM."
homepage = "https://gitlab.com/lely_industries/lely-core/"
topics = ("canopen",)
package_type = "library"
settings = "os", "compiler", "build_type", "arch"
settings = "os", "arch", "compiler", "build_type"
options = {
"shared": [True, False],
"fPIC": [True, False],
Expand Down
2 changes: 1 addition & 1 deletion recipes/lely-core/all/test_package/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.2)
project(test_package)
project(test_package LANGUAGES CXX)

find_package(lely-core REQUIRED)

Expand Down
2 changes: 2 additions & 0 deletions recipes/lely-core/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
versions:
"2.3.4":
folder: all
"2.3.3":
folder: all
"2.3.2":
Expand Down

0 comments on commit a78bd93

Please sign in to comment.