- All Debian software is now mirrored by ftp.us.debian.org.
- LibFFI is mirrored by ftp.sourceware.org.
- All kernel.org software is now mirrored by mirrorservice.org.
FixesHomebrew/homebrew#7478.
Clean XCode 4.x installs (i.e., not on top of an existing XCode 3.2.x
installation) do not include Perl MakeMaker.
Tentatively fixesHomebrew/homebrew#7091.
The downloads for "1.7.3.2" were missing for a while, so we reverted
to 1.7.3.1; the .2 versions are back up, and no security issue on that
version is known, so bumping back up to that version.
This reverts commit ea668ec2f00bcdb33e78093e1215a18a4cb7ac10.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
The git-completion script isn't really configuration, so it should be
installed into the Cellar, rather than directly into HOMEBREW_PREFIX.
That way it will get upgraded whenever git itself gets upgraded.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
* Use new "url" features
* Use keg_only DSL
* Use "skip_clean :all" DSL
* Whitespace and style cleanups
* Make bash invocations less silly
* Use new man2-man8 helpers
* Remove "FileUtils." since it is included in Formula
* Use real names for deps instead of aliases
* ENV.x11 now updates path, so remove that from individual brews
brewkit.rb changes ENV destructively, so lets not do that everytime a formula
is required. Now it's possible for other tools to require a formula
description without worrying about side-effects.
This regards Issue Homebrew/homebrew#30.
Turns out -march=native isn't supported by Apple's GCC, but while investigating it I found they'd back ported the -march=core2 option, so we win anyway.
Logic reverted to how it was yesterday.
I moved the gcc options stuff back to brewkit.rb as we manipulate the cflags more later and it seemed bad form to split the logic for this area over two files.
Additionally the brew command exits immediately on powerpc now. Brewkit doesn't throw as theoretically it is a useful library file for other projects.
I used the imagemagick-installer script that made the rounds on Twitter lately as a basis.
But a number of improvements, eg. lets not mess around with the OS X installation of cups.
Large refactor to Formula, mostly improving reliability and error handling but
also layout and readability.
General improvements so testing can be more complete.
Patches are automatically downloaded and applied for Formula that return a
list of urls from Formula::patches.
Split out the brew command logic to facilitate testing.
Facility from Adam Vandenberg to allow selective cleaning of files, added
because Python doesn't work when stripped.
strip unlinks the file first, breaking hard links, so we detect instances where we are about to strip a file with many linkages and prevent it.
This fixes the libexec non executable bug in the git package.
Took me a long time to figure out what was wrong! :P
Moved Forumla and Cellar/homebrew into Library.
This way the homebrew core files are more sensibly placed, Cellar is
more internally consistent and only generated. And Homebrew is ready for
use straight out of the tarball.