-
-
Notifications
You must be signed in to change notification settings - Fork 5k
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
Add libevent #1491
Add libevent #1491
Conversation
Hi! This is the friendly automated conda-forge-linting service. I just wanted to let you know that I linted all conda-recipes in your PR ( |
8138d3c
to
86e3374
Compare
d0d5f10
to
5485a14
Compare
./autogen.sh | ||
./configure --prefix="${PREFIX}" | ||
make | ||
eval ${LIBRARY_SEARCH_VAR}="${PREFIX}/lib" make check |
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.
This test section is causing some sort of hanging behavior so it may need to be commented and skipped for now.
Cool. I don't have an immediate use for the non-blocking server in Apache Thrift, but it would be nice to get it building in conda-forge |
5485a14
to
05dd677
Compare
# | ||
# Seems to hand on Mac builds. So have commented it for now. | ||
# | ||
#eval ${LIBRARY_SEARCH_VAR}="${PREFIX}/lib" make check |
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.
Will address this in the feedstock.
bca4c6a
to
e93afcc
Compare
e93afcc
to
d90c163
Compare
|
||
run: | ||
- openssl 1.0.* | ||
- python |
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.
Didn't realize defaults
had a copy of this package. Not seeing a recipe now that I'm looking. Though the defaults
copy doesn't seem to depend on Python despite the fact there is a Python script installed.
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.
Opened issue ( ContinuumIO/anaconda-recipes#44 ) upstream about this problem.
Would love to get your thoughts on this, @msarahan. |
d90c163
to
e5389c5
Compare
7301548
to
eb14e55
Compare
After some discussion with Continuum, it seems the easiest path forward is to drop Python as dependency and remove the Python script that |
Thoughts on this recipe @ilanschnell ? |
@conda-forge/staged-recipes , could I please get a review of this PR and then PR ( #1507 )? |
export LDFLAGS="-L${PREFIX}/lib ${LDFLAGS}" | ||
|
||
# Set the fallback library environment variable. | ||
if [[ `uname` == 'Darwin' ]]; |
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.
Isn't $(uname) preferred over backticks?
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.
Both work (albeit slightly differently). That being said, I don't have a preference. So went ahead and changed it.
LGTM @jakirkham other than the backtick thing |
[skip appveyor]
b91d74b
to
f650702
Compare
Thanks for the review @scopatz . Have incorporated your changes. |
Thanks! I'll merge after CI. |
Thanks @jakirkham! |
This adds a package for
libevent
on OS X and Linux. It may be possible to get a Windows build once there is an official stable 2.1.x release.Letting you know as this may be of interest for
thrift-cpp
, @wesm.