Skip to content

Commit

Permalink
change of package names per request by holoscan team. 1) libholoscan-…
Browse files Browse the repository at this point in the history
…python -> holoscan 2) libholoscan3 -> libholoscan
  • Loading branch information
billysuh7 committed Feb 25, 2025
1 parent 0f10a50 commit d7d8a3c
Showing 1 changed file with 18 additions and 19 deletions.
37 changes: 18 additions & 19 deletions recipes/holoscan/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
{% set platform = "linux-sbsa" %} # [aarch64]
{% set extension = "tar.xz" %}

{% set soname = version.split(".")[0] %}
{% set sha256 = "e0f38b5e74c61f0a9974460dd3947b102519d5e5db18c5fade610491b1ccd012" %} # [linux64]
{% set sha256 = "" %} # [aarch64]

Expand All @@ -28,7 +27,7 @@ requirements:
- python ={{ python_version }}

outputs:
- name: libholoscan{{ soname }}
- name: libholoscan
build:
missing_dso_whitelist:
- "*libcuda.so*" # driver
Expand Down Expand Up @@ -184,10 +183,10 @@ outputs:
- test -f $PREFIX/lib/libyaml-cpp.so.0.7.0
- test -f $PREFIX/lib/libholoviz_imgui.a

- name: libholoscan-python
- name: holoscan
build:
run_exports:
- {{ pin_subpackage("libholoscan" ~ soname, max_pin=None) }}
- {{ pin_subpackage("libholoscan", max_pin="x") }}
files:
- lib/python{{ python_version }}/site-packages/gxf
- lib/python{{ python_version }}/site-packages/holoscan
Expand All @@ -198,11 +197,11 @@ outputs:
- {{ stdlib("c") }}
- arm-variant * {{ arm_variant_type }} # [aarch64]
host:
- {{ pin_subpackage("libholoscan" ~ soname, exact=True) }}
- {{ pin_subpackage("libholoscan", exact=True) }}
- cuda-version {{ cuda_version }}
- python ={{ python_version }}
run:
- {{ pin_subpackage("libholoscan" ~ soname, exact=True) }}
- {{ pin_subpackage("libholoscan", exact=True) }}
- cuda-cudart
- python ={{ python_version }}
run_constrained:
Expand All @@ -215,19 +214,19 @@ outputs:
- name: libholoscan-dev
build:
missing_dso_whitelist:
- "*libgxf_app.so" # Packaged in libholoscan{{ soname }} lib, but referened by examples/** here
- "*libgxf_core.so" # Packaged in libholoscan{{ soname }} lib, but referened by examples/** here
- "*libgxf_holoscan_wrapper_lib.so" # Packaged in libholoscan{{ soname }} lib, but referened by examples/** here
- "*libgxf_multimedia.so" # Packaged in libholoscan{{ soname }} lib, but referened by examples/** here
- "*libgxf_rmm.so" # Packaged in libholoscan{{ soname }} lib, but referened by examples/** here
- "*libgxf_std.so" # Packaged in libholoscan{{ soname }} lib, but referened by examples/** here
- "*libgxf_sample.so" # Packaged in libholoscan{{ soname }} lib, but referened by examples/** here
- "*libgxf_serialization.so" # Packaged in libholoscan{{ soname }} lib, but referened by examples/** here
- "*libgxf_ucx.so" # Packaged in libholoscan{{ soname }} lib, but referened by examples/** here
- "*libholoscan_*.so.3" # Packaged in libholoscan{{ soname }} lib, but referened by python/** here
- "*libyaml-cpp.so.0.7" # Packaged in libholoscan{{ soname }} lib, but referened by python/** here
- "*libgxf_app.so" # Packaged in libholoscan lib, but referened by examples/** here
- "*libgxf_core.so" # Packaged in libholoscan lib, but referened by examples/** here
- "*libgxf_holoscan_wrapper_lib.so" # Packaged in libholoscan lib, but referened by examples/** here
- "*libgxf_multimedia.so" # Packaged in libholoscan lib, but referened by examples/** here
- "*libgxf_rmm.so" # Packaged in libholoscan lib, but referened by examples/** here
- "*libgxf_std.so" # Packaged in libholoscan lib, but referened by examples/** here
- "*libgxf_sample.so" # Packaged in libholoscan lib, but referened by examples/** here
- "*libgxf_serialization.so" # Packaged in libholoscan lib, but referened by examples/** here
- "*libgxf_ucx.so" # Packaged in libholoscan lib, but referened by examples/** here
- "*libholoscan_*.so.3" # Packaged in libholoscan lib, but referened by python/** here
- "*libyaml-cpp.so.0.7" # Packaged in libholoscan lib, but referened by python/** here
run_exports:
- {{ pin_subpackage("libholoscan" ~ soname, max_pin=None) }}
- {{ pin_subpackage("libholoscan", max_pin="x") }}
files:
- bin/README.md
- bin/convert_gxf_entities_to_images.py
Expand Down Expand Up @@ -271,7 +270,7 @@ outputs:
- cuda-cudart-dev
- cuda-version {{ cuda_version }}
run:
- {{ pin_subpackage("libholoscan" ~ soname, exact=True) }}
- {{ pin_subpackage("libholoscan", exact=True) }}
run_constrained:
- arm-variant * {{ arm_variant_type }} # [aarch64]
test:
Expand Down

0 comments on commit d7d8a3c

Please sign in to comment.