| Age | Commit message (Collapse) | Author |
|
`brew-unpack` now runs `Formula.brew` and copies the stage directory to the
unpack location. This provides two improvements:
- Patches may be applied. The `patch` metho of the Formula class is
overloaded such that patches are only applied if the `--patch` option is
passed to `brew unpack`.
- Formula can respond better to flags passed by `ARGV`.
Some trickery is pulled to ensure `DATA` is correctly set for each unpacked
formula.
|
|
If an integer is passed to `brew-pull`, such as `brew pull 6600`, it will be
interpreted as a pull request number. This has the same effect as the more
verbose command line:
brew pull https://github.com/mxcl/homebrew/pull/6600
|
|
Rationale: more typical.
|
|
Consequence: you can no longer install when something is already installed, you must upgrade it. This doesn't apply if the formula in question was unlinked. You can still --force installs though.
Rationale: the old way of installing over the top would leave symlinks to multiple versions in /usr/local if the old version had a file the newer version didn't. The new upgrade command handles everything properly.
|
|
Qt and PhantomJS install apps to this folder, so find those apps too.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Don't install when bottling. Homebrew should bottle whatever is installed. If nothing is installed, error out.
|
|
|
|
|
|
|
|
Also clean-up this external command in preparation
for becoming a built-in command.
Make which_versions available in Homebrew module so
that it can be used by other commands in the future.
|
|
|
|
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
`brew-unpack` is inspired by the `unpack` command of Haskell's Cabal.
`brew unpack <formulae ...>` will fetch the source code archives of one or more
formula and extract them into subfolders of the current working directory. An
alternate root directory may be specified by invoking the `--destdir` flag.
This provides some nice advantages for inspecting source code compared to
`brew install -i -f <formula>`:
- The extracted source code won't be deleted when the Ruby process
terminates---which allows for long-term experimentation.
- The user has control over which directory the code is extracted into.
- No install process is initiated, so accidentally typing the equivalent of
`exit 0` will not cause `brew` to mess with an existing installation.
- Several formulae may be unpacked at once.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
If a formula is given, it will be checked for missing deps.
The formula does not have to be installed first.
Without a formula list, still checks all installed brews.
|
|
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The code was sucking. To the extent that maintenance was hard. It's a lot
easier to work with code that is sensibly split at sensible boundaries. So
now it is more like that.
But the refactor is minimal. Because we don't want you to have more merge
hell than absolutely necessary.
If you merge you will need to pay attention to brew.h.rb (as it is deleted)
and bin/brew (as command logic is gone). It will be painful, but you will just
have to help git out by moving any changes around manually.
Note compatibility.rb. It ensures that any function renames or removals don't
break anything. We're pretty serious about backwards compatibility. And that's
because we encourage you to hack around with the innards. And we couldn't do
that if we would then just make stuff disappear behind your back.
|
|
Accept any options that `brew deps` accepts.
Default to `--all` to preserve previous behaviour.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
We shouldn't ever really have these but better to be safe than sorry.
|
|
|
|
|
|
* Urls for Git Commits need to be between 4-40 not 40.
For example:
https://github.com/mxcl/homebrew/commit/805a
https://github.com/mxcl/homebrew/commit/805
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
We were checking that at least one URL argument was added but
the --install parameter was also counted in that.
|
|
|
|
|
|
Also, revise main man page, and update brew-man command to handle
multiple input files.
|
|
|
|
|
|
|
|
Add a new mode "brew audit --warn" that performs stricter checks
that might not need to be fixed.
Currently this includes a check for using tabs instead of spaces
for indentation; Homebrew style is "2-space indentation."
Documented this new switch.
|
|
|
|
|
|
|
|
|