-
-
Notifications
You must be signed in to change notification settings - Fork 12.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
qemu: Add 9p support for darwin #96655
Conversation
@SMillerDev This replaces Ashley's PR. I am less experience to brew so appreciate the review. |
Could you run |
I ran it but nothing in git appears to have changed. Is that expected? |
Are you working in a new clone of homebrew core? |
@SMillerDev Yessir. |
Yeah, that's the issue then. You can also point The general recommendation is to work in your live brew install. |
@SMillerDev So as a noob here, should I be doing what the docs recommend which is to get the patches to apply and then do a git diff on the source code and capture that as foo.diff? And then foo.diff would just be included versus downloaded? |
No, the downloaded option is definitely easier. Just change the file extension you're downloading. |
We good? |
Linux build failure:
Needs Linux-only dependencies within the on_linux do
+ depends_on "attr"
depends_on "gcc"
depends_on "gtk+3"
+ depends_on "libcap-ng"
end |
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.
We probably need to increment this formula's revision
.
When making changes to this PR, please amend your existing commit instead of adding new ones. When you do so, change your commit message to
qemu: add 9p support for Darwin
(or similar) so that it conforms to the commit style guide.
I fixed up the other issues. Is incrementing something I do? If so, can you please elaborate? |
It'd just be adding |
7879785
to
f1c3fd5
Compare
Sorry for getting that wrong — GH is telling me that revision goes before head… |
qemu: add 9p support for Darwin Qemu already has support for 9p in Linux. Adding this for MacOS users will bring them into parity for 9p support. This replaces Ashley's Homebrew#95318 Signed-off-by: Brent Baude <[email protected]>
What happened that two of the tasks were cancelled? |
LGTM |
Can you add the patches from #96743 too? |
Replaces Homebrew#96743 courtesy of AkihiroSuda Signed-off-by: Brent Baude <[email protected]>
I've added #96743 as asked ... I think the a maintainer needs to set the long ci timeout label? |
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.
Thanks!
Great to have 9p support soon! I noticed that if I compile QEMU myself and run |
Qemu already has support for 9p in Linux. Adding this for MacOS users
will bring them into parity for 9p support.
This replaces Ashley's #95318
Signed-off-by: Brent Baude [email protected]
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 doingbrew install --build-from-source <formula>
)? If this is a new formula, does it passbrew audit --new <formula>
?