-
-
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
catgirl 2.2a (new formula) #205376
base: master
Are you sure you want to change the base?
catgirl 2.2a (new formula) #205376
Conversation
Thanks for contributing to Homebrew! 🎉 It looks like you're having trouble with a CI failure. See our contribution guide for help. You may be most interested in the section on dealing with CI failures. You can find the CI logs in the Checks tab of your pull request. |
Hi, the software I'm trying to submit supports macOS and Linux, etc. I have performed the steps mentioned for macOS, but the CI failure appears to be for Linux. I don't see much in the CI logs, and I'm having trouble running the Homebrew Docker container on my M1 Pro MacBook Pro. $ uname -a
Darwin REDACTED 24.2.0 Darwin Kernel Version 24.2.0: Fri Dec 6 19:01:59 PST 2024; root:xnu-11215.61.5~2/RELEASE_ARM64_T6000 arm64
$ docker run --interactive --tty --rm --pull always homebrew/ubuntu22.04:latest /bin/bash
docker: Error response from daemon: no matching manifest for linux/arm64/v8 in the manifest list entries: no match for platform in manifest: not found.
See 'docker run --help'. Any advice would be appreciated. Thanks, |
add missing dependencies |
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.
i guess you should list build dependencies in alphabetic order to have correct tap syntax
f62546d
to
f669b2b
Compare
use |
f669b2b
to
986ec58
Compare
Just tried new test case on my machine and it works fine Also I think it would be nice to include args = %W[
--mandir=#{man}
]
if OS.mac?
args << "--enable-sandman"
end
system "./configure", "--disable-silent-rules", *std_configure_args, *args
system "make"
system "make", "install" |
@ bevanjkay:
It did indeed. Thanks! @ botantony:
Good idea! Added. |
can you squash your commits into one and follow the commit style (so the tests wont complain about it). i guess your commit summary should be just |
1fe4d77
to
eab80a9
Compare
eab80a9
to
254ffab
Compare
OK - squashed my commits w/ commit style. |
license "GPL-3.0-or-later" | ||
|
||
depends_on "ctags" => :build |
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.
license "GPL-3.0-or-later" | |
depends_on "ctags" => :build | |
license "GPL-3.0-or-later" | |
livecheck do | |
url "https://git.causal.agency/catgirl" | |
regex(/href=.*?catgirl[._-]v?(\d+(?:\.\d+)+[a-z]?)\.t/i) | |
end | |
depends_on "ctags" => :build |
We need an explicit livecheck
block as brew livecheck
isn't able to fetch versions without one. The Git
strategy doesn't seem to work so we can go with this, at least for now.
HOMEBREW_NO_INSTALL_FROM_API=1 brew install --build-from-source <formula>
, where<formula>
is the name of the formula you're submitting?brew test <formula>
, where<formula>
is the name of the formula you're submitting?brew audit --strict <formula>
(after doingHOMEBREW_NO_INSTALL_FROM_API=1 brew install --build-from-source <formula>
)? If this is a new formula, does it passbrew audit --new <formula>
?