| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
This command looks for Cocoa Applications (.app bundles) in the prefix
of all installed formulae. If any are found, they are linked into
"~/Applications", the system-defined location for per-user apps.
|
|
A formula using svn can now provide a spec:
:revisions => {...revision numbers...}
that contains a mapping of revision numbers to use
for externals.
The name of the external is keyed to the revision to
use for that external.
The symbol :trunk should be used to specify the reivsion
of the main repo.
An example from the Ffmpeg formula:
head 'svn://svn.ffmpeg.org/ffmpeg/trunk',
:revisions => { :trunk => 22916, 'libswscale' => 31045 }
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Now makes use of `svn up` to make cache act like
a cache. Externals without a revision specified
are now checked out at HEAD, whereas before they
were ignored. Escaping arguments to backticks.
Making sure main repo is checked out before the
externals.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
See:
* http://github.com/mxcl/homebrew/issues/issue/1359
* http://github.com/mxcl/homebrew/issues/issue/1438
|
|
|
|
|
|
This allows formulaes which use CVS to support:
brew --cache [formula]
|
|
|
|
Like pkgconfig, perl5 & php, we don't want any one formula to "own" the
lib/python2.6 path.
Fixes Homebrew/homebrew#1218.
|
|
Homebrew expects manpages to be linked in shared/man/...
and not man/...
|
|
* Add --config
* Alphabetize various lists
* Remove some local temp variables
|
|
Between the quick-install steps and other instructions on the Wiki,
this "self-link" script is no longer needed (and no longer recommended.)
|
|
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
* Work on commands or dylibs
* Use an extension for the list of arches
|
|
|
|
|
|
|
|
|
|
|
|
Report "Expected <supplied digest>, got <file's digest>"
when verify_download_integrity sees a mismatch. (It had
been, confusingly, reporting "Expected <file's digest>".)
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
If the user has linked the keg-only gettext, then a large number
of formulae which don't have "depends_on 'gettext'" will pick it
up anyway. Knowing this about the user's setup may help diagnose
bug reports.
|
|
brew_doctor's gcc version checks wasn't taking into account the case
where the user doesn't have one or both of GCC 4.0.x and 4.2.x installed.
|
|
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Signed-off-by: David Höppner <0xffea@gmail.com>
|
|
|
|
This allows for easy generation of diffs, per a trick in
http://wiki.github.com/mxcl/homebrew/formula-cookbook
|
|
Homebrew's pkg-config didn't originally add X11 to its search path.
This causes problems for long-time Homebrew users brewing software
that depends on X11-related packages, such as Cairo.
|
|
For operations that read all formulae, catch exceptions and
skip broken ones, rather than bomb out entirely.
|
|
|
|
|
|
|
|
When a formula specifies both an `url` and a `head`, and the latter
specified a `:using` spec, brew would try to fetch the `url` using the
specified download strategy. With this change, brew respects `:using`
specs only when determining the download strategy for `head`.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
* Add tests that run only if 'jruby' is installed.
* Note that if your formula has :jruby deps, it should likely
"depend_on 'jruby'" as well.
|
|
|
|
|
|
If submodules exists for a git repo then checkout their index as well
into the appropriate path.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
|
|
A 'head' in a formula can now specify which download strategy to use via
a ':using' specification:
head 'http://svn.macosforge.org/repository/darwinbuild/trunk/',
:using => :svn
This reduces the number of cases where "download_strategy" needs to be
overriden.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|