aboutsummaryrefslogtreecommitdiffstats
path: root/Library
AgeCommit message (Collapse)Author
2015-05-16ENV: Add gcc-5 to compilers support C++11なつき
Closes Homebrew/homebrew#39758. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-05-15datamash: move to homebrew/science.Shaun Jackman
See Homebrew/homebrew-science#2261 Closes Homebrew/homebrew#39736. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-14Stop supporting LeopardMisty De Meo
Is this really Misty?!
2015-05-14Clear GOPATH and GOROOT in build environmentJack Nagel
Fixes Homebrew/homebrew#37936.
2015-05-14doctor: add homebrew_temp sticky bit checkDominyk Tiller
Adds a small check to the Doctor command to ensure HOMEBREW_TEMP has a sticky bit set. This has become a significant issue lately. Closes Homebrew/homebrew#39735 Original issue: Homebrew/homebrew#39170 Closes Homebrew/homebrew#39739. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-14audit: fix two message typosViktor Szakats
Originally submitted as part of https://github.com/Homebrew/homebrew/pull/38824/files, later reverted due another hunk. Closes Homebrew/homebrew#39753. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-14Install specific Rubocop version.Mike McQuaid
Closes Homebrew/homebrew#39620.
2015-05-14test-bot: rerun brew update if it fails.Mike McQuaid
2015-05-14test-bot: cleanup more locks.Mike McQuaid
2015-05-14Tweak audit copyJack Nagel
URLs are not links.
2015-05-14Use "directory", not "folder"Jack Nagel
2015-05-14brew.1.md: Document HOMEBREW_LOGSShaun Jackman
Edit Library/Homebrew/manpages/brew.1.md Regenerate share/man/man1/brew.1 Closes Homebrew/homebrew#39722. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-05-14Extend gnome stable/unstable audit to download.gnome.org URLsJack Nagel
2015-05-13pull: warning if we are not in masterXu Cheng
Closes Homebrew/homebrew#39708. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-05-13ghc: cleanup/decruft.Geoff Nixon
- Fix static GMP - Remove --32-bit option (ghc 7.6 or newer is needed to build). - Building with llvm-gcc and 7.6.3 works on Snow Leopard and Lion. Closes Homebrew/homebrew#39134. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-12Audit: stop warning about Github .patch URLsMisty De Meo
These no longer have a git version appended; e.g.: https://github.com/mitchellh/packer/commit/ddb966061f88709537c93f16f7c4066ddf2b8adf.patch
2015-05-12Close the socket after sending the file descriptor to the childJack Nagel
Fixes Homebrew/homebrew#39691.
2015-05-12Disable trailing comma style rule for Ruby 1.8 supportJack Nagel
2015-05-12Avoid explicit control flowJack Nagel
2015-05-12texwrapper: emigrating to homebrew/tex tapLarry Gilbert
Closes Homebrew/homebrew#39196. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-05-11Handle deprecated options in dependency specificationsJack Nagel
Fixes Homebrew/homebrew#38069.
2015-05-10Stop enforcing the use of "fail" instead of "raise"Jack Nagel
We use raise everywhere else in the codebase.
2015-05-10sandbox: fix the rulesXu Cheng
1. `script` (used to fake the tty) requires write access to /dev/ptmx and /dev/ttys* 2. sandbox profile only accepts `[0-9]` instead of `\d`.
2015-05-09audit: tweak ftp.gnu.org language for clarityDominyk Tiller
Closes Homebrew/homebrew#39421. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-05-08Remove conditionalJack Nagel
2015-05-08compilers: support gcc 5なつき
Closes Homebrew/homebrew#39470. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-05-08tap: support fast cloneXu Cheng
Closes Homebrew/homebrew#37592. Closes Homebrew/homebrew#38268. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-05-08git-latexdiff: migrate to homebrew/tex tapLarry Gilbert
Closes Homebrew/homebrew#39463. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-05-08RubyRequirement: clean upXu Cheng
1. Remove dead code (RubyRequirement always has a version) 2. Perfer `Utils.popen_read` instead of backticks.
2015-05-08add EmacsRequirementAlex Dunn
Closes Homebrew/homebrew#39326. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-05-08add Formulary::path methodXu Cheng
This is a little code refactoring splited from Homebrew/homebrew#36753 The idea is to eliminate `Formula#path` outside of `formulary.rb`. And I indent to deprecate `Formula#path` method when I reimplement symlink free tap function. Closes Homebrew/homebrew#39313.
2015-05-08audit: enforce SSL/TLS MetaCPAN urlsViktor Szakats
Closes Homebrew/homebrew#39513. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-05-07Rename methodJack Nagel
2015-05-07Push URL audits down to ResourceAuditorJack Nagel
2015-05-07Warn about duplicated URLsJack Nagel
Closes Homebrew/homebrew#39486.
2015-05-07add audit check for explicit Python linkageTim D. Smith
Verifies that CPython extension modules are not explicitly linked to a Python framework, which should never be necessary. Python's distutils uses -undefined dynamic_lookup, as seen here: https://github.com/python/cpython/blob/9a77656/configure.ac#L2214-L2245 Closes Homebrew/homebrew#39405. Signed-off-by: Tim D. Smith <git@tim-smith.us>
2015-05-07anticipate python 3.5 in .pth auditTim D. Smith
2015-05-06manpage: fix brew upgrade sentenceXu Cheng
2015-05-06replace `brew upgrade` with `brew upgrade --all`.Xu Cheng
2015-05-05Update links to GitHub's personal access tokenAlex Muller
The link for the page that allows creation of API tokens has changed from /settings/applications to /settings/tokens. Also the wording on that page calls them "personal access tokens", so update Homebrew to be consistent with that. Closes Homebrew/homebrew#39378. Signed-off-by: Tim D. Smith <git@tim-smith.us>
2015-05-05shell.fm: migrating to homebrew/boneyardBaptiste Fontaine
Closes Homebrew/homebrew#39290. Signed-off-by: Tim D. Smith <git@tim-smith.us>
2015-05-05audit: Don't complain about untapped conflictsXu Cheng
Closes Homebrew/homebrew#39304.
2015-05-04audit: flag incorrect automake/autoconf/libtool dep handlingDominyk Tiller
Just makes the audit cough out this: ``` * :libtool is deprecated. Usage should be "libtool" * :autoconf is deprecated. Usage should be "autoconf" * :automake is deprecated. Usage should be "automake" ``` Closes Homebrew/homebrew#39303. Closes Homebrew/homebrew#39322. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-05-04Add upgrade --all flag to bash completion scriptEli Young
Closes Homebrew/homebrew#39359. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-05-04audit: require https for all *.googlecode.com resourcesViktor Szakats
Closes Homebrew/homebrew#39206. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-05-04Stop testing implementationJack Nagel
2015-05-03Use TapFormulaUnavailableError instead of HOMEBREW_TAP_FORMULA_REGEXXu Cheng
Closes Homebrew/homebrew#39307. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-05-03Revert "Default HOMEBREW_TEMP to Dir.tmpdir"Jack Nagel
This reverts commit b95f27ce9f956c56d080b6dc29ba8efb841c6690.
2015-05-01fileutils: use rm_rf to clean temp dirXu Cheng
Honestly, I don't know why git is broken under sandbox. But this seems fix the problem in Homebrew/homebrew#38978. Closes Homebrew/homebrew#39138. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-05-01Use predicate methodJack Nagel