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

Remove various packages from the blacklist #10269

Merged
merged 2 commits into from
Aug 6, 2018
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
9 changes: 0 additions & 9 deletions build-fail-blacklist
Original file line number Diff line number Diff line change
Expand Up @@ -1586,18 +1586,9 @@ recipes/ms
# GL missing, needs the extended base image
recipes/emperor

recipes/graphmap
# /opt/rh/devtoolset-2/root/usr/libexec/gcc/x86_64-redhat-linux/4.8.2/ld: cannot find -lz
recipes/hera


# RuntimeError: Setuptools downloading is disabled in conda build. Be sure to add all dependencies in the meta.yaml url=https://pypi.org/simple/HyPhy/
recipes/hivtrace


# [Jun 26 23:28:29] SERR ImportError: libstdc++.so.6: cannot open shared object file: No such file or directory
recipes/htseq/0.6.1

# sed: can't read /opt/conda/conda-bld/idba_1530055808563/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/bin/aclocal: No such file or directory
recipes/idba
# socket.timeout: timed out
Expand Down
7 changes: 4 additions & 3 deletions recipes/graphmap/build.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#!/bin/bash

export CFLAGS="-I$PREFIX/include"
export LDFLAGS="-L$PREFIX/lib"
export CPATH=${PREFIX}/include
export CPP_INCLUDE_PATH=${PREFIX}/include
export CPLUS_INCLUDE_PATH=${PREFIX}/include
export CXX_INCLUDE_PATH=${PREFIX}/include
export LIBRARY_PATH=${PREFIX}/lib

mkdir -p $PREFIX/bin

Expand Down
5 changes: 3 additions & 2 deletions recipes/graphmap/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ package:

build:
number: 2
skip: True # [osx]

source:
url: https://github.com/isovic/{{ name|lower }}/archive/eb8c75d68b03be95464318afa69b645a59f8f6b7.tar.gz
Expand All @@ -18,12 +19,12 @@ source:

requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
host:
- wget
- zlib
run:
- zlib
- zlib

test:
commands:
Expand Down
1 change: 1 addition & 0 deletions recipes/hera/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

mkdir -p $PREFIX/bin

export LIBRARY_PATH=${PREFIX}/lib
if [ `uname` == Darwin ]; then
export CFLAGS="-I$PREFIX/include -fgnu89-inline -O2 -D USE_JEMALLOC -w -lz -Wl,-rpath,${PREFIX}/lib"
else
Expand Down
1 change: 1 addition & 0 deletions recipes/htseq/0.6.1/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ package:
requirements:
host:
- python
- cython
- numpy ==1.7.1
- matplotlib ==1.2.1
run:
Expand Down