aboutsummaryrefslogtreecommitdiffstats
path: root/Library
AgeCommit message (Collapse)Author
2015-07-02audit: fix/extend ietf.org https rulesViktor Szakats
Domains known to be covered by certificates: https://crt.sh/?q=%25ietf.org Closes Homebrew/homebrew#41244. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-06-30Git: unshallow shallow clones if necessaryMisty De Meo
Fixes Homebrew/homebrew#41225.
2015-06-30audit: flag re-added tap migrationsDominyk Tiller
Re https://github.com/Homebrew/homebrew/commit/411c2178448916d4005c059bc35ee780b5af53f5#commitcomment-11714539 Closes Homebrew/homebrew#40806. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-06-29Language module requirement: fix perl testMisty De Meo
The name of the module is "Env", not "ENV"; this test would fail on a case-sensitive filesystem.
2015-06-29download_strategy: remove exclamation pointAlex Dunn
Closes Homebrew/homebrew#41171. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-06-27Stdlib check should use the compiler used to build the bottleJack Nagel
2015-06-27Updated outdated commentJack Nagel
2015-06-27Remove unused methodJack Nagel
2015-06-27xcode: update clang versionDominyk Tiller
Closes Homebrew/homebrew#41095. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-06-27tab: tweak options info outputDominyk Tiller
Closes Homebrew/homebrew#41101. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-06-26man: fix typoDominyk Tiller
2015-06-26outdated: output full nameXu Cheng
Closes Homebrew/homebrew#41099. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-06-26outdated: inline methodXu Cheng
2015-06-26Mark some requirements that don't need the build environmentJack Nagel
2015-06-25Decouple detect_stdlibs from ENVJack Nagel
I want to decouple from the global ENV constant as much as possible so that eventually we can change the build environment implementation. detect_stdlibs only cares about the compiler, not the whole ENV.
2015-06-26pdsh: move to boneyardDominyk Tiller
Closes Homebrew/homebrew#41061. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-06-25Pull complex condition out of loopJack Nagel
2015-06-25Adds JSON output to `outdated` commandColin Dean
After some musing on brunophilipe/Cakebrew#71, I thought it would be useful to let Cakebrew and other tools grab the outdated formulae version information using a method more elegant than regex. Closes Homebrew/homebrew#30693. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-06-25pdf2svg: migrate back to core (from homebrew-x11)Martin Afanasjew
Turns out `pdf2svg` no longer depends on GTK+ or X11 (and previously did this only by mistake). Closes Homebrew/homebrew#41065. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-06-25style: bump rubocop to 0.32.1Dominyk Tiller
Closes Homebrew/homebrew#41049. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-06-24Make warnings yellow (previously red)Radek Simko
Closes Homebrew/homebrew#41003. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-06-23Use Dir.mktmpdir in doctorJack Nagel
This matches how we create temporary directories elsewhere.
2015-06-23Whitelist ntfs-3g libsJack Nagel
Closes Homebrew/homebrew#40950.
2015-06-23Fix audit when tap is nilJack Nagel
This is the case when a formula is passed as a filename.
2015-06-22Ask the exception for the formula nameJack Nagel
2015-06-22Ask the formula object for the opt pathJack Nagel
2015-06-23download_strategy: fix url reassignXu Cheng
We need reassign url after urls are inspected.
2015-06-22manpage: update list commandXu Cheng
Closes Homebrew/homebrew#40921. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-06-22list: support --full-nameXu Cheng
Closes Homebrew/homebrew#29716.
2015-06-22download_strategy: make sure the inspected url is usedXu Cheng
Closes Homebrew/homebrew#40940. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-06-22improve audit_formula_name performanceXu Cheng
Closes Homebrew/homebrew#40939. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-06-21Simplify gcc_version_formulaJack Nagel
2015-06-21Inline variableJack Nagel
2015-06-21Eliminate special case for core gccJack Nagel
2015-06-21Less code in begin/rescue blockJack Nagel
2015-06-21Pass full match to warn_about_non_apple_gccJack Nagel
2015-06-21Formula: cache methods' output to reduce ioXu Cheng
Closes Homebrew/homebrew#40855. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-06-20vobcopy: retire to boneyardLarry Gilbert
Closes Homebrew/homebrew#39854. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-06-21download_strategy: remove extra colonXu Cheng
Closes Homebrew/homebrew#40920. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-06-20sudo_check: don't use a setBaptiste Fontaine
This is unnecessary here because we use it only once. The difference won't be noticeable but the check is ~5 times faster now. Closes Homebrew/homebrew#40901. Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
2015-06-20download_strategy: don't check url if already downloadedXu Cheng
Closes Homebrew/homebrew#40859. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-06-19Remove workarounds for destructuring single-element hashesJack Nagel
2015-06-19Remove backports for Ruby 1.8.6Jack Nagel
refs. Homebrew/linuxbrew#438, mistydemeo/tigerbrew#327, mistydemeo/tigerbrew#334
2015-06-19Move some constants from env to compiler constantsJack Nagel
2015-06-18Pass formula objects, not strings, into the build environmentJack Nagel
2015-06-18'brew man': abort if a formula is givenBaptiste Fontaine
Closes Homebrew/homebrew#40735. Closes Homebrew/homebrew#40736. Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
2015-06-18audit: add benchmark inject codeXu Cheng
Closes Homebrew/homebrew#40847. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-06-18tap_migrations: move some x11 to boneyard.Mike McQuaid
https://github.com/Homebrew/homebrew-boneyard/pull/53
2015-06-18Revert "audit: add benchmark inject code"Xu Cheng
This reverts commit fb23d603ded2796299ed7fc2f4ffee22870b7ea6.
2015-06-18search: cache remote tap formulaeXu Cheng
Closes Homebrew/homebrew#40775. Signed-off-by: Xu Cheng <xucheng@me.com>