aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-07-27add Pathname.write_binaryAdam Vandenberg
2014-07-26A period is a valid formula name characterJack Nagel
Fixes Homebrew/homebrew#31052.
2014-07-26Add test for reporting tap updatesJack Nagel
2014-07-26Clean up updater testsJack Nagel
2014-07-26Remove obsolete hacks from updater reportJack Nagel
2014-07-26Only populate the report with formula pathsJack Nagel
2014-07-26Switch from backticks to Utils.popen_readJack Nagel
2014-07-26Separate reading and parsing the diffJack Nagel
2014-07-25update: remove unused rename detectionJack Nagel
Right now this code only produces false positives. When we have real support for renames, we can implement it more carefully. Closes Homebrew/homebrew#31126.
2014-07-25update: simplify diff parsingJack Nagel
2014-07-24Stop rescuing Exception when making opt linkJack Nagel
2014-07-24Push keg_only special-case into linkJack Nagel
2014-07-24Pass the keg object into link and fix_install_namesJack Nagel
2014-07-24brew-test-bot: clear compiler version cache.Mike McQuaid
This fix means that brew-test-bot can bottle formulae that require GCC again.
2014-07-24OS::Mac: allow clearing compiler version cache.Mike McQuaid
Without this itโ€™s impossible for brew-test-bot to be able to verify if installing GCC has allowed it to fix a compiler selection failure.
2014-07-24brew.1: reference GCC 4.9.Mike McQuaid
2014-07-23storm 0.9.2Adrian Petrescu
Closes Homebrew/homebrew#31025. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-07-23Modify "git rev-parse --verify" args in "has_ref?"Dabrien 'Dabe' Murphy
Per the `git-rev-parse(1)` manpage: --verify Verify that exactly one parameter is provided, and that it can be turned into a raw 20-byte SHA-1 that can be used to access the object database. If so, emit it to the standard output; otherwise, error out. If you want to make sure that the output actually names an object in your object database and/or can be used as a specific type of object For example, git rev-parse "$VAR^{commit}" will make sure $VAR names an existing object that is a commit-ish (i.e. a commit, or an annotated tag that points at a commit). That actually means that: git rev-parse --verify af8e768e2bd3b4398bca033998f83b0eb8874914 will _always_ return the SHA-1 hash โ€” regardless of whether or not that's actually a valid reference! Thus, when `GitDownloadStragtegy#update_repo` tries to check `has_ref?`, it mistakenly succeeds, and doesn't actually do a `git fetch origin`. The fix is to use: git rev-parse --verify "af8e768e2bd3b4398bca033998f83b0eb8874914^{commit}" Fixes Homebrew/homebrew#31045. Closes Homebrew/homebrew#31054. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-23Stop exposing mirrors arrayJack Nagel
2014-07-22Stop exposing the downloader as an attributeJack Nagel
2014-07-22Hide the downloader implementation from the installerJack Nagel
2014-07-21Ruby 1.8 doesn't have the \h regexp metacharacterJack Nagel
2014-07-21dependency_collector: add :java symbolMike McQuaid
2014-07-21requirements: add JavaDependency.Mike McQuaid
Requested in Homebrew/homebrew-science#1039. Closes Homebrew/homebrew#30852.
2014-07-21brew-pull: don't fail to pull on Formula exceptionMike McQuaid
2014-07-20Simplify onoeJack Nagel
2014-07-20Fix install names in files in sbinJack Nagel
2014-07-20improve commentAdam Vandenberg
2014-07-20use ObserverPathnameExtension to remove these filesAdam Vandenberg
2014-07-20add clarifying commentsAdam Vandenberg
2014-07-19fix commentAdam Vandenberg
2014-07-19Passing an empty array to puts prints nothingJack Nagel
2014-07-19Pass the string directly to the output methodJack Nagel
2014-07-19Pass array to puts instead of iterating over itJack Nagel
2014-07-19Default to stdout since other code calls this methodJack Nagel
2014-07-19Remove intermediate methodJack Nagel
2014-07-19brew-gist-logs: dump config directlyJack Nagel
2014-07-19Allow verbose config to be written to any IO objectJack Nagel
2014-07-19Don't mess with stdout when writing build config to a fileJack Nagel
2014-07-19Remove a conditional and always pass the spec to satisfied_requirementsJack Nagel
2014-07-19Remove the patch from the cache after applying itJack Nagel
2014-07-19Use if-else instead of postfix unlessJack Nagel
2014-07-19Improve pull request URL regexpJack Nagel
- use a regexp literal and avoid escaping forward slashes - escape the period in "github.com" - match only hex characters in the commit part - allow hyphen in usernames and repo names, matching what we allow for tap names - avoid unnecessary capture
2014-07-18Fix checking out recursive git submodulesMaurus Cuelenaere
When nested submodules appear in a git repository, the `git submodule foreach git checkout-index ..` command would fail because it would checkout at the root directory instead of in its parent(s)' folder. Eg: root/submodule1/submodule2 would be checked out in root/submodule2 Closes Homebrew/homebrew#30841. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-18clang doesn't support -fuse-linker-pluginDan
Closes Homebrew/homebrew#30930. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-18Add a factory method that accepts a formula objectJack Nagel
2014-07-18Ask the filename object for the prefixJack Nagel
2014-07-18Move bottle URL construction to the bottle objectJack Nagel
2014-07-18Move bottle filename construction to a classJack Nagel
2014-07-18exec_editor with no arguments should not silently succeedJack Nagel