-
-
Notifications
You must be signed in to change notification settings - Fork 12.6k
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
notcurses 2.3.12 (new formula) #82112
Conversation
The CI seems to be complaining about the |
8f30c33
to
a9dbdd8
Compare
a9dbdd8
to
819d901
Compare
819d901
to
82a5a98
Compare
still unsure what to do about this
is the "image not found" related to the early failure? and how do i work around this to require the Brew of ncurses? i seem to be doing the same thing as the vim package. |
It fails to load it's own library from the rpath. It's unrelated to the ncurses audit above. |
8ae0004
to
495001a
Compare
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.
LGTM, provided the only failure remaining is the audit failure.
Thanks for your contribution to Homebrew, @dankamongmen.
Oops, Linux will fail as we haven't bottled |
no, thank you for the opportunity and feedback, and for making open source available to macOS users! i will diligently maintain this Formula as i do all my other packages elsewhere. |
Great. You probably won't need to do much as long as you don't change your build system or your dependencies. For version bumps, you might be interested in |
Signed-off-by: Nick Black <[email protected]> Co-authored-by: Sean Molenaar <[email protected]> Co-authored-by: Carlo Cabrera <[email protected]>
70e5e20
to
a285bdb
Compare
Have you followed the guidelines for contributing?
-Yes, including the line
I asked for a clarification regarding this at how popular is "very popular"? discussions#1893, and believe it not to be an issue.
Have you ensured that your commits follow the commit style guide?
Have you checked that there aren't other open pull requests for the same formula update/change?
Have you built your formula locally with
brew install --build-from-source <formula>
, where<formula>
is the name of the formula you're submitting?Is your test running fine
brew test <formula>
, where<formula>
is the name of the formula you're submitting?-Yes, but I had to do two gross things. I export a
TERM
ofxterm
, as otherwise there is noTERM
. I ought be pulling inTERM
from the environment, where it ought always be set. Two, I redirect stdout (not stderr) to/dev/null
, as otherwise the test process blows up (notcurses-tester
generates a lot of output).Does your build pass
brew audit --strict <formula>
(after doingbrew install --build-from-source <formula>
)? If this is a new formula, does it passbrew audit --new <formula>
?-No. I get the output
Dependency 'ncurses' is provided by macOS; please replace 'depends_on' with 'uses_from_macos'.
I wantncurses
from homebrew, though. Is this the incorrect way to specify that? I'm usinguses_from_macos
forzlib
, as you can see.