aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git.rb
AgeCommit message (Collapse)Author
2014-12-18git: update 2.2.1 bottle.BrewTestBot
2014-12-18git 2.2.1Mike McQuaid
Closes #35105. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-12-01git: fix broken svn option if no swig exists prior.Dominyk Tiller
Resolves the bug where installing Git with brewed-svn wouldn't automatically drag in the required Swig dependency and consequently the build would instantly error out. The error itself could be with the subversion formulae or Homebrew itself, and this may just be a workaround. Given building git with-brewed-svn specifies svn with perl, it should trigger a swig download automatically prior to attempting to install the svn dep, but for some reason it doesn't. Both from-source and from-bottle installs error out in the same way: ``` ==> Installing git dependency: subversion Error: /usr/local/opt/swig not present or broken Please reinstall swig. Sorry :( ``` For now, have resolved this bug by dragging in an explicit swig dependency prior to the subversion one, if you choose to install with-brewed-svn. Closes #34554. Closes #34576. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-11-29git: update 2.2.0 bottle.BrewTestBot
2014-11-29git: fix openssl linkageDominyk Tiller
Prunes the system-openssl linkage in the event someone compiles git without brewed-openssl. Closes #34539. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-11-27git: update 2.2.0 bottle.BrewTestBot
2014-11-27git 2.2.0Denis Denisov
Closes #34491. Closes #34483. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-10-30git: update 2.1.3 bottle.BrewTestBot
Closes #33737. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-10-30git 2.1.3Michael Paquier
2014-10-06git: add Yosemite bottle.Mike McQuaid
2014-10-02git: update 2.1.2 bottle.BrewTestBot
Closes #32891. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-10-02git 2.1.2Michael Paquier
This is a bugfix release, including the following changes: * "git push" over HTTP transport had an artificial limit on number of refs that can be pushed imposed by the command line length. * When receiving an invalid pack stream that records the same object twice, multiple threads got confused due to a race. * An attempt to remove the entire tree in the "git fast-import" input stream caused it to misbehave. * Reachability check (used in "git prune" and friends) did not add a detached HEAD as a starting point to traverse objects still in use. * "git config --add section.var val" used to lose existing section.var whose value was an empty string. * "git fsck" failed to report that it found corrupt objects via its exit status in some cases.
2014-09-27git: stop installing remote helpersJack Nagel
These are now maintained outside of the main tree: https://github.com/felipec/git-remote-hg https://github.com/felipec/git-remote-bzr
2014-09-21git: update 2.1.1 bottle.BrewTestBot
2014-09-21git 2.1.1Tomasz Pajor
Closes #32486. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-08-17git: update 2.1.0 bottle.BrewTestBot
2014-08-17git 2.1.0, fix bug git-subtree MakefileDenis Denisov
Closes #31638. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-08-12git: fix PERLLIB_EXTRA for 10.10Mohammed Tangestani
Fixes #31310. Closes #31312. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-08-02git: update 2.0.4 bottle.BrewTestBot
Closes #31298. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-08-02git 2.0.4Chongyu Zhu
2014-07-25git: update 2.0.3 bottle.BrewTestBot
Closes #31108. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-07-25git 2.0.3droid-Q
2014-07-21git: update 2.0.2 bottle.BrewTestBot
2014-07-21git 2.0.2droid-Q
Closes #30989. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-02git: update 2.0.1 bottle.BrewTestBot
2014-07-02git 2.0.1Jack Nagel
2014-06-18git: add --with-brewed-svn option.Mikko Lehtonen
Fixes #29641. Fixes #30255.
2014-06-17git: update 2.0.0 bottle.BrewTestBot
2014-06-17git: fix permissions on html doc directoriesJack Nagel
2014-05-28git: update 2.0.0 bottle.BrewTestBot
2014-05-28git 2.0.0Jack Nagel
2014-05-14git: update 1.9.3 bottle.BrewTestBot
2014-05-14git: make perl lib path portable on 10.9Jack Nagel
Fixes #29128.
2014-05-10git: update 1.9.3 bottle.BrewTestBot
2014-05-10git 1.9.3; devel 2.0.0rc3Geoff Nixon
Closes #29108. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-05-01Remove MacOS.dev_tools_path and MacOS.dev_tools_prefixJack Nagel
These methods are no longer required.
2014-04-14git: update 1.9.2 bottle.BrewTestBot
2014-04-14git 1.9.2asaph
Closes #28302. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-03-19git: update 1.9.1 bottle.BrewTestBot
2014-03-19git 1.9.1Jack Nagel
Closes #27711.
2014-03-08Batch convert http urls from Google Code to httpsIan Lancaster
Closes #27218.
2014-03-08formulae: fix with/without usage.Mike McQuaid
Closes #27275. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-03-06git: fix --HEAD builds to report proper versionJay Soffian
For the GIT-VERSION-FILE scripts to work properly, it either needs to have $GIT_DIR pointing to the '.git' directory or find '.git' within the cwd. Further, for `git describe` to work correctly, we can't use a shallow clone (at least not one of depth 1), as it needs to find a tag within recent history. Closes #27227. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-02-27git: use Formula[]Adam Vandenberg
2014-02-18git: add 1.9.0 bottle.BrewTestBot
Closes #26734. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-02-18git 1.9.0asaph
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-02-14git: add 1.8.5.5 bottle.BrewTestBot
Closes #26723. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-02-14git 1.8.5.5asaph
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-02-10git 1.8.5.4Jack Nagel
2014-01-29git: do not apply patches on headFrancisco Souza
Closes #26259. Signed-off-by: Jack Nagel <jacknagel@gmail.com>