| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-05-27 | audit: simplify ssl/tls audit failure messages | Dominyk Tiller | |
| This cuts the amount of custom code fairly drastically, applying the same generic syntax across the different SSL/TLS enforced areas. It also makes the failure message fit onto one terminal line, which looks cleaner than the multi-line message we currently print for standard-size Terminals. Changes something like: `ftp.gnu.org urls should be https://, not http:// (url is http://ftp.gnu.org/gnu/gawk/gawk-4.1.1.tar.xz)` Into: `Please use https:// for http://ftp.gnu.org/gnu/gawk/gawk-4.1.1.tar.xz` References: Homebrew/homebrew#39421 Homebrew/homebrew#39306 Closes Homebrew/homebrew#40054. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com> | |||
| 2015-05-27 | cmd/switch: fix exception. | pmwheatley | |
| keg_only? should use 'rack' not 'canonical_name' Closes Homebrew/homebrew#40124. Closes Homebrew/homebrew#40126. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2015-05-27 | formula_installer: set tap source for bottles. | Mike McQuaid | |
| This defaults to the value that's in the bottle but that isn't necessarily correct. For example, some Boxen modules will reuse our old bottles and so if they are installed from there we should be sure to set the tab's tap to the tap we've installed from rather than the one set inside the bottle's tarball. Closes Homebrew/homebrew#40096. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2015-05-27 | tab: add method to set tap. | Mike McQuaid | |
| 2015-05-27 | test-bot: always brew install as a non-developer. | Mike McQuaid | |
| Bored of dealing with the bottle conflicts errors here so I don't think it's really worth working around. Closes Homebrew/homebrew#40097. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2015-05-27 | uninstall: load formula from rack | Xu Cheng | |
| Closes Homebrew/homebrew#39524. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2015-05-27 | test-bot: rescue TapFormulaAmbiguityError | Xu Cheng | |
| 2015-05-27 | upgrade: use ARGV.resolved_formulae | Xu Cheng | |
| 2015-05-27 | unpin: use ARGV.resolved_formulae | Xu Cheng | |
| 2015-05-27 | test: use ARGV.resolved_formulae | Xu Cheng | |
| 2015-05-27 | reinstall: use ARGV.resolved_formulae | Xu Cheng | |
| 2015-05-27 | postinstall: use ARGV.resolved_formulae | Xu Cheng | |
| 2015-05-27 | pin: use ARGV.resolved_formulae | Xu Cheng | |
| 2015-05-27 | outdated: use ARGV.resolved_formulae | Xu Cheng | |
| 2015-05-27 | missing: use ARGV.resolved_formulae | Xu Cheng | |
| 2015-05-27 | link: load formula from rack | Xu Cheng | |
| 2015-05-27 | keg: add rack method | Xu Cheng | |
| 2015-05-27 | gist-logs: use ARGV.resolved_formulae | Xu Cheng | |
| 2015-05-27 | doctor: load formula from rack | Xu Cheng | |
| 2015-05-27 | --prefix: use ARGV.resolved_formulae | Xu Cheng | |
| 2015-05-27 | --cellar: use ARGV.resolved_formulae | Xu Cheng | |
| 2015-05-27 | cleanup: load formula from rack and using ARGV.resolved_formulae | Xu Cheng | |
| 2015-05-27 | bottle: use ARGV.resolved_formulae | Xu Cheng | |
| 2015-05-27 | audit: handle TapFormulaAmbiguityError | Xu Cheng | |
| 2015-05-27 | ARGV#kegs: try to load fomrula from rack | Xu Cheng | |
| 2015-05-27 | ARGV: add resolved_formulae method | Xu Cheng | |
| 2015-05-27 | Formula#installed: loading using Formulary.from_rack | Xu Cheng | |
| Also handle TapFormulaAmbiguityError | |||
| 2015-05-27 | Formulary: add from_rack | Xu Cheng | |
| 2015-05-27 | Formulary#canonical_name: handle TapFormulaAmbiguityError | Xu Cheng | |
| If there are multiple tap formulae with the name of ref, then ref is the canonical name | |||
| 2015-05-27 | update manpage | Xu Cheng | |
| 2015-05-27 | tap/untap/update/prune: remove obsolete method, add migrate_taps | Xu Cheng | |
| 2015-05-27 | add Formula.core_names Formula.tap_names and Formula.full_names | Xu Cheng | |
| 2015-05-27 | load tap formula through direct search | Xu Cheng | |
| 2015-05-27 | add Formulary.core_path method, deprecate Formula.path | Xu Cheng | |
| 2015-05-27 | BottleLoader: using Formulary.path to search formula file | Xu Cheng | |
| 2015-05-26 | superenv cc: accept single-digit g++ version | Ryan Hendrickson | |
| Closes Homebrew/homebrew#40117. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2015-05-26 | Check empty? to avoid introducing nils | Jack Nagel | |
| [].last => nil [].max => nil | |||
| 2015-05-26 | More explanation of HOMEBREW_{CELLAR,PREFIX,REPOSITORY} | Larry Gilbert | |
| Closes Homebrew/homebrew#39447. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com> | |||
| 2015-05-26 | bottle: handle nil bottle revision case. | Mike McQuaid | |
| 2015-05-26 | bottle: discard bottle revision from prior pkg_version | Ian Lancaster | |
| Closes Homebrew/homebrew#38628. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2015-05-25 | Use canonical representation of the superenv bin directory | Ryan Hendrickson | |
| The xcrun script should be skipping the ENV directory when it scans $PATH looking for tools to run. Unfortunately, the script compares the paths found to the real path of the ENV directory (following symlinks), but superenv was adding the nominal path to $PATH, not following symlinks. As a consequence, platforms with Xcode < 4.3 would get into infinite loops when trying to call non-system versions of gcc, as xcrun calls the ENV version of gcc-X.X which calls xcrun and so on forever. This commit changes superenv to follow symlinks when determining the bin path to use. Fixes Homebrew/homebrew#33731. Closes Homebrew/homebrew#40062. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2015-05-25 | example-formula.rb has a 'desc' | Nikolaus Wittenstein | |
| Closes Homebrew/homebrew#39911. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2015-05-25 | `brew create` adds a `desc` field to the new formula | Nikolaus Wittenstein | |
| 2015-05-25 | audit looks for and validates 'desc' | Nikolaus Wittenstein | |
| 2015-05-25 | `brew search` can take a `--desc` argument to search descriptions | Nikolaus Wittenstein | |
| 2015-05-25 | Info shows the desc if present | Nikolaus Wittenstein | |
| 2015-05-25 | Add a desc field to Formula | Nikolaus Wittenstein | |
| 2015-05-24 | audit: formula version string should have digit | Xu Cheng | |
| Closes Homebrew/homebrew#40025. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2015-05-24 | audit: add rules for non-ascii character and encoding comment | Xu Cheng | |
| Closes Homebrew/homebrew#40042. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2015-05-24 | audit: move audit_java_home inside audit_line | Xu Cheng | |
