| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-08-22 | superenv: fix CC value for ENV.gcc | Misty De Meo | |
| 'gcc' could refer to anything of llvm-gcc, clang, or gcc-4.0 on various Xcode versions. | |||
| 2013-08-19 | Use ENV.prepend_path | Jack Nagel | |
| 2013-08-19 | Use ENV.append_path | Jack Nagel | |
| 2013-08-19 | Add ENV.append_path | Jack Nagel | |
| 2013-08-19 | Fix typo | Jack Nagel | |
| 2013-08-19 | Use File::PATH_SEPARATOR globally instead of ':' | Amos Wenger | |
| On Unix, the path separator is ':', whereas on Windows, it is ';'. This is the first of a series of patch to bring macbrew's and winbrew's codebases closer together. The main places the magic constant ':' was being used were: - the $PATH environment variable - CMAKE-related environment variables - pkg-config related environment variables Closes #21921. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2013-08-19 | Remove ENV.expand_xcrun | Jack Nagel | |
| This method is currently unused and after inspecting the git history, it appears it may never have been used at all. | |||
| 2013-08-19 | More robust implementation of ENV.with_build_environment | Jack Nagel | |
| 2013-08-19 | Rename HomebrewEnvExtension to Stdenv | Jack Nagel | |
| 2013-08-19 | Move common ENV methods to a shared module | Jack Nagel | |
| 2013-08-19 | Move superenv.rb to extend/ENV/super.rb | Jack Nagel | |
| 2013-08-19 | Reference self, not ENV, in ENV.fortran | Jack Nagel | |
| 2013-08-19 | Move extra stdenv setup to extended callback | Jack Nagel | |
| 2013-08-19 | Move common stuff to extend/ENV.rb | Jack Nagel | |
| 2013-08-16 | This is a backreference, not an embedded NUL | Jack Nagel | |
| 2013-08-15 | ENV.universal_binary: use as_arch_flags | Misty De Meo | |
| 2013-08-15 | Add Hardware::CPU.arch_(32|64)_bit | Misty De Meo | |
| This replaces hardcoding of i386/x86_64 all over the code. | |||
| 2013-08-13 | pathname: remove unused return values | Adam Vandenberg | |
| Return value was used only by one test, rewrote test to know expected value. | |||
| 2013-08-13 | Improve checksum perf by providing an output buffer | Jack Nagel | |
| 2013-08-10 | Make usage of ObserverPathnameExtension more obvious | Jack Nagel | |
| Remove use of globals. Closes #21795. | |||
| 2013-08-05 | ENV: add usage note to ncurses_define | Adam Vandenberg | |
| 2013-07-22 | Pathname#write: don't check ARGV.force? | Jack Nagel | |
| Closes #21390. | |||
| 2013-07-22 | typo | Phil Smith | |
| Closes #21385. Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
| 2013-07-19 | Add String#end_with? | Jack Nagel | |
| I'm tired of not remembering if start_with?/end_with? are portable, so just add them both if they're not defined. | |||
| 2013-07-19 | Fix String#start_with? implementation | Jack Nagel | |
| It is supposed to accept a variable number of prefixes, and also to check if they are convertible to strings. This matches behavior documented in RubySpec. | |||
| 2013-07-17 | add ARGV.value | Adam Vandenberg | |
| 2013-07-13 | Handle NULs in link targets in Pathname#resolved_path_exists? | Jack Nagel | |
| Fixes #19475. Fixes #21184. | |||
| 2013-07-11 | Remove unreachable branch in ENV.fortran | Jack Nagel | |
| Now that this is handled by a Requirement with a default formula, this code cannot be triggered under normal circumstances. The advice given has now been moved to the Formula Cookbook on the wiki. | |||
| 2013-07-06 | Don't use install_p directly | Jack Nagel | |
| 2013-06-26 | ARGV: filter build-bottle from dependencies. | Mike McQuaid | |
| Fixes #20682. | |||
| 2013-06-24 | Add Fortran ENV helpers | Adam Vandenberg | |
| 2013-06-22 | ARGV: ensure ? methods return truth values. | Mike McQuaid | |
| 2013-06-20 | Splatted parameter is always an array | Jack Nagel | |
| 2013-06-14 | Fix another constant reference | Jack Nagel | |
| 2013-06-14 | Fix constant reference | Jack Nagel | |
| 2013-06-14 | Favor compound if over compound unless | Jack Nagel | |
| 2013-06-14 | Use ||= instead of unless | Jack Nagel | |
| 2013-06-14 | Remove outdated comment | Jack Nagel | |
| 2013-06-14 | Assign this inline | Jack Nagel | |
| 2013-06-14 | Delete rather than assign nil | Jack Nagel | |
| 2013-06-14 | Simplify nested conditional | Jack Nagel | |
| 2013-06-14 | Use has_key? rather than accessing the value | Jack Nagel | |
| 2013-06-14 | Rename single-letter variable | Jack Nagel | |
| 2013-06-14 | Make flag lists into constants | Jack Nagel | |
| 2013-06-14 | ENV: clean up set_cpu_flags and set_cpu_cflags usage | Jack Nagel | |
| 2013-06-14 | Use Hardware::CPU module | Jack Nagel | |
| 2013-06-09 | Remove adamv-alt references. | Adam Vandenberg | |
| Closes #20364. | |||
| 2013-06-08 | Add :ld64 dependency | Misty De Meo | |
| This allows formulae which won't build with Tiger's ld to conditionally request a dependency on the ld64 formula. This modifies the build environment appropriately, and will only be active on Tiger. | |||
| 2013-06-08 | Sniff for non-tarred gzips | Adam Vandenberg | |
| Don't try to untar non-tarred gzips. | |||
| 2013-06-08 | Add Enumerable#group_by | Jack Nagel | |
