Skip to content
Draft
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
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# GitHub syntax highlighting
pixi.lock linguist-language=YAML
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
build/
install/
output/
.pixi/
35 changes: 35 additions & 0 deletions recipes/tcb_span/recipe.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
context:
name: ros-humble-tcb-span
version: "1.0.2"

package:
name: "{{ name|lower }}"
version: "{{ version }}"

source:
git_url: https://github.com/PickNikRobotics/cpp_polyfills.git
git_rev: 1.0.2

build:
number: 0
script:
- cd tcb_span
- cmake ${CMAKE_ARGS} -DBUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release -S . -B build
- cmake --build build
- cmake --install build --prefix $PREFIX

requirements:
build:
- "{{ compiler('cxx') }}"
- cmake
- make
- ros-humble-ament-cmake

test:
commands:
- test -f ${PREFIX}/include/tcb_span/span.hpp

about:
home: https://github.com/PickNikRobotics/cpp_polyfills
license: BSL-1.0
summary: Implementation of C++20's std::span
36 changes: 36 additions & 0 deletions recipes/tl_expected/recipe.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
context:
name: ros-humble-tl-expected
version: "1.0.2"

package:
name: "{{ name|lower }}"
version: "{{ version }}"

source:
git_url: https://github.com/PickNikRobotics/cpp_polyfills.git
git_rev: 1.0.2

build:
number: 0
script:
- cd tl_expected
- cmake ${CMAKE_ARGS} -DBUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release -S . -B build
- cmake --build build
- cmake --install build --prefix $PREFIX

requirements:
build:
- "{{ compiler('cxx') }}"
- cmake
- make
- ros-humble-ament-cmake
- ros-humble-ament-cmake-gtest

test:
commands:
- test -f ${PREFIX}/include/tl_expected/expected.hpp

about:
home: https://github.com/PickNikRobotics/cpp_polyfills
license: CC0-1.0
summary: C++11/14/17 std::expected with functional-style extensions
2 changes: 1 addition & 1 deletion tcb_span/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<description>Implementation of C++20's std::span</description>
<maintainer email="[email protected]">Tyler Weaver</maintainer>

<license>Boost Software License</license>
<license>BSL-1.0</license>
<url>https://github.com/tcbrindle/span</url>

<buildtool_depend>ament_cmake</buildtool_depend>
Expand Down
Loading