2014-10-26 14:54:36 +00:00
# Maintainer Guidelines
2017-01-04 16:16:00 -06:00
2014-10-26 14:54:36 +00:00
**This guide is for maintainers.** These special people have **write
access** to Homebrew’ s repository and help merge the contributions of
others. You may find what is written here interesting, but it’ s
definitely not a beginner’ s guide.
2018-02-23 19:39:19 +00:00
Maybe you were looking for the [Formula Cookbook ](Formula-Cookbook.md )?
2014-10-26 14:54:36 +00:00
2017-03-18 17:45:12 -04:00
## Quick checklist
2014-10-26 14:54:36 +00:00
This is all that really matters:
2016-09-14 19:53:35 +01:00
- Ensure the name seems reasonable.
- Add aliases.
2017-07-24 21:28:29 -04:00
- Ensure it uses `keg_only :provided_by_macos` if it already comes with macOS.
2015-05-27 11:10:06 +01:00
- Ensure it is not a library that can be installed with
[gem ](https://en.wikipedia.org/wiki/RubyGems ),
[cpan ](https://en.wikipedia.org/wiki/Cpan ) or
2015-08-11 16:42:05 +08:00
[pip ](https://pip.pypa.io/en/stable/ ).
2015-05-27 11:10:06 +01:00
- Ensure that any dependencies are accurate and minimal. We don't need to
support every possible optional feature for the software.
2016-09-14 19:53:35 +01:00
- Use the GitHub squash & merge workflow where bottles aren't required.
2017-03-18 17:45:12 -04:00
- Use `brew pull` otherwise, which adds messages to auto-close pull requests and pull bottles built by the Brew Test Bot.
2015-05-27 11:10:06 +01:00
- Thank people for contributing.
Checking dependencies is important, because they will probably stick around
2014-10-26 14:54:36 +00:00
forever. Nobody really checks if they are necessary or not. Use the
`:optional` and `:recommended` modifiers as appropriate.
2015-05-27 11:10:06 +01:00
Depend on as little stuff as possible. Disable X11 functionality by default.
2016-09-14 19:53:35 +01:00
For example, we build Wireshark, but not the heavy GTK/Qt GUI by default.
2014-10-26 14:54:36 +00:00
2015-05-27 11:10:06 +01:00
Homebrew is about Unix software. Stuff that builds to an `.app` should
2015-12-06 22:18:16 +00:00
probably be in Homebrew Cask instead.
2014-10-26 14:54:36 +00:00
### Naming
2016-09-14 19:53:35 +01:00
The name is the strictest item, because avoiding a later name change is
desirable.
2014-10-26 14:54:36 +00:00
2015-12-06 22:18:16 +00:00
Choose a name that’ s the most common name for the project.
2016-09-14 19:53:35 +01:00
For example, we initially chose `objective-caml` but we should have chosen `ocaml` .
2014-10-26 14:54:36 +00:00
Choose what people say to each other when talking about the project.
2016-09-14 19:53:35 +01:00
Add other names as aliases as symlinks in `Aliases` in the tap root. Ensure the
name referenced on the homepage is one of these, as it may be different and have
2015-05-27 11:10:06 +01:00
underscores and hyphens and so on.
2014-10-26 14:54:36 +00:00
2018-02-23 19:39:19 +00:00
We now accept versioned formulae as long as they [meet the requirements ](Versions.md ).
2014-10-26 14:54:36 +00:00
### Merging, rebasing, cherry-picking
2017-03-18 17:45:12 -04:00
Merging should be done in the `Homebrew/brew` repository to preserve history & GPG commit signing,
2016-09-14 19:53:35 +01:00
and squash/merge via GitHub should be used for formulae where those formulae
don't need bottles or the change does not require new bottles to be pulled.
Otherwise, you should use `brew pull` (or `rebase` /`cherry-pick` contributions).
2014-10-26 14:54:36 +00:00
2015-05-27 11:10:06 +01:00
Don’ t `rebase` until you finally `push` . Once `master` is pushed, you can’ t
2017-03-18 17:45:12 -04:00
`rebase` : **you’ re a maintainer now!**
2014-10-26 14:54:36 +00:00
Cherry-picking changes the date of the commit, which kind of sucks.
2017-03-18 17:45:12 -04:00
Don’ t `merge` unclean branches. So if someone is still learning `git` and
2014-10-26 14:54:36 +00:00
their branch is filled with nonsensical merges, then `rebase` and squash
the commits. Our main branch history should be useful to other people,
not confusing.
### Testing
2018-02-23 19:39:19 +00:00
We need to at least check that it builds. Use the [Brew Test Bot ](Brew-Test-Bot.md ) for this.
2014-10-26 14:54:36 +00:00
2015-05-27 11:10:06 +01:00
Verify the formula works if possible. If you can’ t tell (e.g. if it’ s a
library) trust the original contributor, it worked for them, so chances are it
is fine. If you aren’ t an expert in the tool in question, you can’ t really
gauge if the formula installed the program correctly. At some point an expert
will come along, cry blue murder that it doesn’ t work, and fix it. This is how
open source works. Ideally, request a `test do` block to test that
functionality is consistently available.
2014-10-26 14:54:36 +00:00
If the formula uses a repository, then the `url` parameter should have a
2017-03-18 17:45:12 -04:00
tag or revision. `url` s have versions and are stable (not yet
2014-10-26 14:54:36 +00:00
implemented!).
2017-03-18 17:45:12 -04:00
## Common “gotchas”
2014-10-26 14:54:36 +00:00
1. [Ensure you have set your username and email address
2015-01-04 04:27:16 +01:00
properly](https://help.github.com/articles/setting-your-email-in-git/)
2017-03-18 17:45:12 -04:00
2. Sign off cherry-picks if you amended them ([GitX-dev ](https://github.com/rowanj/gitx )
can do this, otherwise there is a command-line flag for it)
2014-10-26 14:54:36 +00:00
3. If the commit fixes a bug, use “Fixes \#104” syntax to close the bug
report and link to the commit
2015-05-27 11:10:06 +01:00
### Duplicates
2017-07-24 21:28:29 -04:00
We now accept stuff that comes with macOS as long as it uses `keg_only :provided_by_macos` to be keg-only by default.
2014-10-26 14:54:36 +00:00
2017-03-18 17:45:12 -04:00
### Add comments
It may be enough to refer to an issue ticket, but make sure changes are clear so that
if you came to them unaware of the surrounding issues they would make sense
2014-10-26 14:54:36 +00:00
to you. Many times on other projects I’ ve seen code removed because the
new guy didn’ t know why it was there. Regressions suck.
### Don’ t allow bloated diffs
Amend a cherry-pick to remove commits that are only changes in
whitespace. They are not acceptable because our history is important and
`git blame` should be useful.
2015-05-27 11:10:06 +01:00
Whitespace corrections (to Ruby standard etc.) are allowed (in fact this
2014-10-26 14:54:36 +00:00
is a good opportunity to do it) provided the line itself has some kind
of modification that is not whitespace in it. But be careful about
making changes to inline patches—make sure they still apply.
2018-04-04 19:46:10 +01:00
## Communication
Maintainers have a variety of ways to communicate with each other:
- Homebrew's public repositories on GitHub
- Homebrew's group communications between more than two maintainers on private channels (e.g. GitHub/Slack/Discourse)
- Homebrew's direct 1:1 messages between two maintainers on private channels (e.g. iMessage/Slack/Discourse/IRC/carrier pigeon)
All communication should ideally occur in public on GitHub. Where this is not possible or appropriate (e.g. a security disclosure, interpersonal issue between two maintainers, urgent breakage that needs to be resolved) this can move to maintainers' private group communication and, if necessary, 1:1 communication. Technical decisions should not happen in 1:1 communications but if they do (or did in the past) they must end up back as something linkable on GitHub. For example, if a technical decision was made a year ago on Slack and another maintainer/contributor/user asks about it on GitHub, that's a good chance to explain it to them and have something that can be linked to in the future.
This makes it easier for other maintainers, contributors and users to follow along with what we're doing (and, more importantly, why we're doing it) and means that decisions have a linkable URL.
2018-08-27 09:29:33 +01:00
## Lead maintainer guidelines
There should be one lead maintainer for Homebrew. This person should (sparingly) be the tiebreaker for decisions where a mutual consensus cannot be reached amongst other maintainers. They should also be seen as the product manager for Homebrew itself and ensuring that changes made to the entire Homebrew ecosystem are consistent and providing an increasingly positive experience for Homebrew's users.
In the same way that Homebrew maintainers are expected to be spending more of their time reviewing and merging contributions from non-maintainer contributors than making their own contributions, the lead maintainer should be spending most of their time reviewing work from and mentoring other maintainers.
Individual Homebrew repositories should not have formal lead maintainers (although those who do the most work will have the loudest voices).