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 sylph to 0.7.0 #51971

Merged
merged 3 commits into from
Nov 7, 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
4 changes: 0 additions & 4 deletions recipes/sylph/build.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
#!/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="$(pwd)/.cargo"

# build statically linked binary with Rust
RUST_BACKTRACE=1 cargo install --verbose --path . --root $PREFIX
9 changes: 5 additions & 4 deletions recipes/sylph/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "0.6.1" %}
{% set version = "0.7.0" %}

package:
name: sylph
Expand All @@ -11,12 +11,12 @@ build:

source:
url: https://github.com/bluenote-1577/sylph/archive/v{{ version }}.tar.gz
sha256: 9f384ecf33d5eed57e518c1cc238ffb5ac68948dcf921731ba77ccbd02b57bdb
sha256: 8d0dd0c4b64de9b4c7402f6a44a019b2f54aae0626308a6b8831b3239640b609

requirements:
build:
- {{ compiler("cxx") }}
- rust >=1.61
- {{ compiler("rust") }}
- make
- cmake >=3.12

Expand All @@ -27,10 +27,11 @@ test:
about:
home: https://github.com/bluenote-1577/sylph
license: MIT
license_family: MIT
summary: sylph quickly enables querying of genomes against even low-coverage shotgun metagenomes to find nearest neighbour ANI.
license_file: LICENSE
dev_url: https://github.com/bluenote-1577/sylph

extra:
recipe-maintainers:
- bluenote-1577