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 core-snp-filter to 0.2.0 #52219

Merged
merged 3 commits into from
Nov 20, 2024
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
5 changes: 0 additions & 5 deletions recipes/core-snp-filter/build.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
#!/bin/bash -euo

# Add workaround for SSH-based Git connections from Rust/cargo. See https://github.com/rust-lang/cargo/issues/2078 for details.
# We set CARGO_HOME because we don't pass on HOME to conda-build, thus rendering the default "${HOME}/.cargo" defunct.
export CARGO_NET_GIT_FETCH_WITH_CLI=true CARGO_HOME="${BUILD_PREFIX}/.cargo"

# build statically linked binary with Rust
RUST_BACKTRACE=1
cargo install --verbose --path . --root $PREFIX

10 changes: 6 additions & 4 deletions recipes/core-snp-filter/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
{% set version = "0.1.1" %}
{% set version = "0.2.0" %}

package:
name: core-snp-filter
version: {{ version }}

source:
url: https://github.com/rrwick/Core-SNP-filter/archive/refs/tags/v{{ version }}.tar.gz
sha256: 6ac542524a22c2c66edba69a937ae637a4a1e62105379ba79708ad74187feed9
sha256: 5fa0357c4429e52644a9bdd5dfa4be3a3fc6889073f7678ed5a47f8a7f267c3d

build:
number: 1
number: 0
run_exports:
- {{ pin_subpackage('core-snp-filter', max_pin="x.x") }}

requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- rust >=1.39
- {{ compiler('rust') }}
- pkg-config
- clangdev
- make
Expand Down