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

Update yarp to 3.9.0 and rename yarp-cxx to libyarp and keep yarp-cxx compatibility package #28

Merged
merged 3 commits into from
Dec 19, 2023
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 .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .azure-pipelines/azure-pipelines-osx.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .azure-pipelines/azure-pipelines-win.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 12 additions & 3 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .scripts/run_docker_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 10 additions & 3 deletions .scripts/run_osx_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 12 additions & 2 deletions .scripts/run_win_build.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 26 additions & 12 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 16 additions & 5 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{% set name = "yarp" %}
{% set namecxx = "yarp-cxx" %}
{% set namecxx = "libyarp" %}
{% set namepython = "yarp-python" %}
{% set version = "3.8.1" %}
{% set version = "3.9.0" %}

package:
name: {{ name }}
version: {{ version }}

source:
url: https://github.com/robotology/yarp/archive/refs/tags/v{{ version }}.tar.gz
sha256: 2fafadcd2a965d3c0e4d683cd2748277565c67db6a4acd4a435b4122cba2d749
sha256: 3691c12a522e246ea506866df99a30b0d2c50d5c5efde602e7e207cd5dd7a4e2
patches:
- fixpypy.patch
- 2983.patch

build:
number: 7
number: 0

outputs:
- name: {{ namecxx }}
Expand Down Expand Up @@ -66,7 +66,7 @@ outputs:

run:
# ycm and eigen are mentioned in the headers so needed when building
# against yarp-cxx
# against libyarp
- ycm-cmake-modules
- eigen

Expand Down Expand Up @@ -125,6 +125,17 @@ outputs:
imports:
- yarp

- name: yarp-cxx
build:
run_exports:
- {{ pin_subpackage(namecxx, max_pin='x.x.x') }}
requirements:
run:
- {{ pin_subpackage(namecxx, exact=True) }}
test:
commands:
- yarp help

about:
home: https://github.com/robotology/yarp
license: BSD-3-Clause AND MIT AND GPL-3.0-or-later
Expand Down