-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
BiocondaBot
wants to merge
13
commits into
master
Choose a base branch
from
bump/annonars
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+14
−14
Open
Update annonars to 0.42.3 #51210
Changes from 7 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
ac278e7
Update annonars to 0.41.1
BiocondaBot d51f2d5
clean up recipe
mencian b4722c2
annonars: Move back protobuf to build deps
martin-g b1cd29f
annonars: Replace protobuf with libprotobuf (it brings protoc)
martin-g e578a08
Update annonars to 0.41.2
BiocondaBot 7cae36c
add missing build requirements
tedil c54c030
skip linux-aarch64 build until rocksdb package has corresponding vers…
tedil c84f72c
add rocksdb dep to host + run sections as well
tedil 1324ddd
Update annonars to 0.41.3
BiocondaBot 7214e2a
Update annonars to 0.42.0
BiocondaBot a6fe078
Update annonars to 0.42.1
BiocondaBot f452f92
Update annonars to 0.42.2
BiocondaBot dbcb696
Update annonars to 0.42.3
BiocondaBot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
+25
to
+27
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Critical: Address RocksDB execution issues Based on the PR comments, there are execution failures related to using conda-forge's RocksDB package. Consider either:
Would you like assistance in implementing either of these solutions? |
||
- clangdev | ||
- libprotobuf | ||
- openssl | ||
- sqlite | ||
- zlib | ||
|
@@ -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 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Address RocksDB execution issues
Based on the PR comments, there are execution failures related to using conda-forge's RocksDB package. Consider either:
Would you like assistance in implementing either of these solutions?
Also applies to: 32-32, 36-36