| Age | Commit message (Collapse) | Author |
|
|
|
|
|
This commit supports "-" and "_" in names of user and repository.
Closes Homebrew/homebrew#28203.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
Closes Homebrew/homebrew#28418.
|
|
|
|
|
|
Closes Homebrew/homebrew#25813.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
Just make it a warning instead.
Closes Homebrew/homebrew#25511.
Closes Homebrew/homebrew#25617.
|
|
|
|
|
|
|
|
This should be a temporary workaround until we get a grip on some
Mavericks/Xcode 5.0 issues with e.g. ghc and go (stuff in core
that currently needs GCC at runtime). These formulae both have
Clang fixes in development.
Things that needs GCC at compile-time should be booted from core.
References Homebrew/homebrew#22872.
References Homebrew/homebrew-dupes#229
|
|
Closes Homebrew/homebrew#19192.
|
|
Array#count was apparently introduced in 1.8.7.
|
|
This reverts commit d72901f92b7385d44d8c980976db6a4336572e7e.
References Homebrew/homebrew#18366.
Closes Homebrew/homebrew#18432.
|
|
Currently `brew tap` only works on repos with 'homebrew-' in their name.
This version tries the repo name as is and then falls back to try
'homebrew-repo' only if that fails.
I've also tweaked the regex in tap_args to allow '-' in repo names. The
previous regex required a match on \w. This made it impossible for people
to tap repos with names like 'username/why-not'.
Closes Homebrew/homebrew#18366.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
Relying on the output of `tapped` results in ignoring formulae which
already exist in core, with messages like "Tapped 0 formula" for
non-empty taps.
|
|
Closes Homebrew/homebrew#17518.
Closes Homebrew/homebrew#17511.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
This stuff sucks. I'd like to just replace the dash with a directory division or tilde character. But this makes the code even more complicated, unless we can figure out how to migrate the taps.
|
|
Closes Homebrew/homebrew#12247.
Closes Homebrew/homebrew#12244.
Signed-off-by: Max Howell <mxcl@me.com>
|
|
Removes dead symlinks in Formula and re-symlinks all Taps.
Closes Homebrew/homebrew#11565.
|
|
Repos can't at this point. Hard to easily fix so avoiding it until 2.0 or until someone moans enough.
|
|
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
|
|
We allow homebrew/dupes for instance, rather than Homebrew/dupes. Because nobody likes shifting in the terminal.
In the process of doing this I discovered some case-insensitive filesystem bugs we have avoided before because I had the foresight to mandate lowercase in formula names. GitHub considers Homebrew and homebrew to be different (even though you can't create both). So we had to allow case insensitivity in tap input. I have made it now so the resulting directory however is lowercased, neatly avoiding the issue. And so we also downcase tap arguments when applying them to tap directories or formula.
|
|
For when the symlink for a tap already exists and points to the thing we are about to symlink. This can happen, mostly because my code has sucked, but since the filesystem can be edited by the user at whim, it's possible then too.
|
|
Fixes:
$ brew tap adamv/alt
...blah blah blah..
$ brew tap josegonzalez/php
...blah blah blah...
Warning: Could not tap josegonzalez/php/php over mxcl/master/php
Where it should be "over adamv/alt/php".
|
|
Fixes Homebrew/homebrew#10994.
|
|
|
|
This shouldn't happen but is possible and we should handle it.
Also added some puts when tapping/untapping.
|
|
I got fed up writing HOMEBREW_REPOSITORY/"Library" and also correcting mistakes when I did HOMEBREW_PREFIX instead.
|
|
|
|
|
|
Required me to spoil tap's code. All in the name of DRY! Alas!
|
|
|
|
The symlinks taps write to Formula show up in git status, but this trick prevents this. brew-(un)tap maintain a .gitignore in Formula that contains all the symlinks brew-tap creates.
We add the .gitignore to the root .gitignore and TADA! Magic.
|
|
|