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

[WIP] Standing PR for prosic fixes #9674

Closed
wants to merge 1 commit into from
Closed
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
7 changes: 0 additions & 7 deletions build-fail-blacklist
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,6 @@ recipes/r-pscbs/0.61.0

recipes/openslide

# warning: spurious network error (1 tries remaining): [12/-2] [77] Problem with the SSL CA cert (path? access rights?) (error setting certificate verify locations:
# also failing due to a missing trait bound: the trait `rand::distributions::Distribution<N>` is not implemented for `rand::distributions::Standard`
# |
# = help: consider adding a `where rand::distributions::Standard: rand::distributions::Distribution<N>` bound
# = note: required by `rand::random`
recipes/prosic

# ./configure no such file or directory
recipes/slang

Expand Down
5 changes: 5 additions & 0 deletions recipes/prosic/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#!/bin/bash -euo

# circumvent a bug in conda-build >=2.1.18,<3.0.10
# https://github.com/conda/conda-build/issues/2255
[[ -z $REQUESTS_CA_BUNDLE && ${REQUESTS_CA_BUNDLE+x} ]] && unset REQUESTS_CA_BUNDLE
[[ -z $SSL_CERT_FILE && ${SSL_CERT_FILE+x} ]] && unset SSL_CERT_FILE

# build statically linked binary with Rust
C_INCLUDE_PATH=$PREFIX/include LIBRARY_PATH=$PREFIX/lib cargo install --root $PREFIX
6 changes: 3 additions & 3 deletions recipes/prosic/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{% set version = "2.1.0" %}
{% set version = "2.1.1" %}

package:
name: prosic
version: {{ version }}

build:
number: 3
number: 0

source:
url: https://github.com/PROSIC/prosic2/archive/v{{ version }}.tar.gz
sha256: 575994be1c6f26d4966eedd44a18a5459e90cad7023dd2d329fbe463cb209b96
sha256: xxx


requirements:
Expand Down