我想为 https://github.com/uber/h3-py 创建一个conda-forge包并遵循了 https://conda-forge.org/docs/maintainer/adding_pkgs.html#staging-test-locally 的指示。
食谱可以在这里找到:https://github.com/geoHeil/staged-recipes/blob/h3-py/recipes/h3/meta.yaml
尝试使用以下方法执行本地构建时:
/.circleci/run_docker_build.sh
它失败并显示:
echo 'cc required but not found.'
meta.yml 的重要部分如下所示:
requirements:
build:
# If your project compiles code (such as a C extension) then add the required compilers as separate entries here.
# Compilers are named 'c', 'cxx' and 'fortran'.
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- cmake
- make
host:
- python
- pip
run:
- python
我怎样才能让它工作以提交给 conda-forge?
cc
是对编译器的一般引用,如何在不分叉源存储库/及其安装脚本的情况下将这样的引用/符号链接添加到 conda 提供的 C、C++ 编译器(大概是 cxx/gcc(中?
不该
- {{ compiler('c') }}
- {{ compiler('cxx') }}
添加这个?
错误是由 https://github.com/uber/h3-py/blob/master/.install.sh#L25
command -v cc >/dev/null 2>&1 || { echo "cc required but not found."; exit 1; }
我必须创建一个自定义 build.sh 文件:
其中,cmake
自动使用正确的环境,而不是依赖于某些$CC
https://github.com/conda-forge/staged-recipes/pull/8467/files。