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 annonars to 0.42.3 #51210

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
6 changes: 0 additions & 6 deletions recipes/annonars/build.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
#!/bin/bash -e

# TODO: Remove the following export when pinning is updated and we use
# {{ compiler('rust') }} in the recipe.
export \
CARGO_NET_GIT_FETCH_WITH_CLI=true \
CARGO_HOME="${BUILD_PREFIX}/.cargo"

export BINDGEN_EXTRA_CLANG_ARGS="${CFLAGS} ${CPPFLAGS} ${LDFLAGS}"

cargo install --no-track --verbose --root "${PREFIX}" --path .
20 changes: 12 additions & 8 deletions recipes/annonars/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,31 +1,33 @@
{% set version = "0.41.0" %}
{% set version = "0.41.2" %}

package:
name: annonars
version: {{ version }}

build:
number: 0
skip: True # [osx]
skip: True # [osx]
run_exports:
- {{ pin_subpackage("annonars", max_pin="x.x") }}

source:
url: https://github.com/varfish-org/annonars/archive/refs/tags/v{{ version }}.tar.gz
sha256: 11cf6d760c9a4f5896c5a6883fda2bd39b734862a6acf6af004704edb0752569
sha256: e0c666204fcea6e559a704220959c1d2608ae11d00282201bb5bcf4760e5d59a

requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- rust >=1.30
- clangdev
- {{ compiler('rust') }}
- pkg-config
- protobuf
- make
- cmake
- libprotobuf
- rocksdb
- snappy
host:
Comment on lines +26 to +27
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Address RocksDB execution issues

Based on the PR comments, there are execution failures related to using conda-forge's RocksDB package. Consider either:

  1. Compiling RocksDB from source instead of using the conda package
  2. Pinning to a specific working version of RocksDB

Would you like assistance in implementing either of these solutions?

Also applies to: 32-32, 36-36

Comment on lines +25 to +27
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Critical: Address RocksDB execution issues

Based on the PR comments, there are execution failures related to using conda-forge's RocksDB package. Consider either:

  1. Compiling RocksDB from source instead of using the conda package
  2. Investigating if specific version constraints on RocksDB and its dependencies (snappy) would resolve the issue

Would you like assistance in implementing either of these solutions?

- clangdev
- libprotobuf
- openssl
- sqlite
- zlib
Expand All @@ -39,12 +41,14 @@ test:
about:
home: https://github.com/varfish-org/annonars
license: Apache-2.0
license_family: APACHE
license_file: LICENSE.txt
summary: 'Genome annotation based on Rust and RocksDB.'
dev_url: https://github.com/varfish-org/annonars

extra:
recipe-maintainers:
- holtgrewe
- tedil
additional-platforms:
- linux-aarch64
# additional-platforms:
# - linux-aarch64
Loading