mamba-org / conda-specs

A collection of specs, and spec proposals for Mamba packages, recipes and repositories
3 stars 3 forks source link

meta.yaml selector difficult translations #7

Open wolfv opened 4 years ago

wolfv commented 4 years ago

One corner case are duplicate keys. E.g.:

no_link: xxx.so  # [linux]
no_link: xxx.dylib  # [osx]

One way to solve would be:

no_link:
  - sel(linux): xxx.so
  - sel(osx): xxx.dylib