11027 Commits

Author SHA1 Message Date
Josh Hagins
b6a0fdd357 Merge pull request #1312 from narendasan/cask_update_error_msgs
Cask update error msgs
2016-10-18 11:00:07 -04:00
Naren
5f2929788c following to follow 2016-10-18 09:52:55 -04:00
Naren
6ac54f297f remove empty line and concatenate newline to e.message in cli.rb 2016-10-18 09:52:55 -04:00
Naren
29d81fc647 updating DSL test 2016-10-18 09:52:55 -04:00
Naren
8e9720c5b9 updated cmd to point to prebug steps url 2016-10-18 09:52:55 -04:00
Mike McQuaid
2da012d84d Merge pull request #1311 from MikeMcQuaid/audit-no-trailing-whitespace
audit: don't complain about trailing whitespace.
2016-10-18 08:38:39 +01:00
Mike McQuaid
56ae868cf1 audit: don't complain about trailing whitespace.
This is handled by `brew style` now.
2016-10-18 08:11:02 +01:00
Josh Hagins
1fd7d52505 Merge pull request #1291 from Homebrew/cask/bump-rubocop-cask
hbc/cli/style: bump RUBOCOP_CASK_VERSION
2016-10-17 23:56:02 -04:00
Josh Hagins
e9863a71f6 hbc/cli/style: bump RUBOCOP_CASK_VERSION 2016-10-17 16:43:24 -04:00
Mike McQuaid
0296439c83 Merge pull request #1306 from apjanke/tweak-brew-deps-zsh-completion
tweak 'brew deps' zsh completions
1.0.8
2016-10-17 08:36:35 +01:00
Mike McQuaid
e04bb5cdd7 Merge pull request #1307 from apjanke/format-identifiers-inside-other-formatting
Formatter: identifier: only reset color, not full styling
2016-10-17 08:35:20 +01:00
Andrew Janke
e72f1139ad Formatter: identifier: only reset color, not full styling 2016-10-17 00:45:37 -04:00
Andrew Janke
b7fc819150 tweak zsh 'brew deps' completions 2016-10-17 00:15:18 -04:00
Tim D. Smith
de880f1e87 Merge pull request #1298 from tdsmith/no-no-bad-unicode
Don't choke on invalid UTF-8 in `file` output
2016-10-16 09:47:02 -07:00
Mike McQuaid
87fad259a0 Merge pull request #1304 from MikeMcQuaid/old-osx-git-shim-more
scm/git: more old OS X versions tweaks.
2016-10-16 16:42:48 +01:00
Mike McQuaid
be2e6df948 scm/git: more old OS X versions tweaks.
- unset IFS to fix version parsing on older Bashes
- reuse existing HOMEBREW_MACOS_VERSION if it’s available
- set rather than unset popup_stub
2016-10-16 16:11:41 +01:00
Mike McQuaid
2a18378a03 Merge pull request #1303 from MikeMcQuaid/old-osx-git-shim
shims/scm/git: fix on old OS X versions.
2016-10-16 15:45:18 +01:00
ilovezfs
560bea6768 Merge pull request #1301 from ilovezfs/mountain-lion-depend-on-xz
dependency_collector: need xz dep on <= macOS 10.8
2016-10-16 06:59:14 -07:00
Mike McQuaid
7292ad1f1a shims/scm/git: fix on old OS X versions.
On older versions of OS X (i.e. pre-Mavericks) `xcode-select` is not
required to be set when using the CLT. Fix this behaviour so `brew
update` doesn't tell everyone on that configuration to `brew install
git`.
2016-10-16 14:14:23 +01:00
Uladzislau Shablinski
717eb97228 Merge pull request #1300 from delamoe/patch-3
Update FAQ.md
2016-10-16 15:50:32 +03:00
ilovezfs
a53eca8cde dependency_collector: need xz dep on <= macOS 10.8
Mountain Lion: http://opensource.apple.com/source/libarchive/libarchive-25.1/config.h
  `/* #undef HAVE_LIBLZMA */`

Mavericks: http://opensource.apple.com/source/libarchive/libarchive-29/config.h
  `#define HAVE_LIBLZMA 1`
2016-10-16 05:48:37 -07:00
delamoe
17f7a33dcb Update FAQ.md
### Is there a glossary of terms around?
All your terminology needs can be [found here](docs/Formula-Cookbook.md#homebrew-terminology). results in 404 error
2016-10-16 11:14:17 +03:00
Tim D. Smith
22a64aa6c6 Explain why info could be nil 2016-10-15 23:52:55 -07:00
Tim D. Smith
371cd0dd3e Don't choke on invalid UTF-8 in file output
Sometimes `file` output contains data from the file under examination,
which may include binary data that does not represent valid UTF-8
codepoints. String#split dies if it doesn't understand the encoding, so
tell Ruby to treat `file` output as a bytestring.
2016-10-15 21:21:08 -07:00
Mike McQuaid
7ac90613fd Merge pull request #1290 from maxnordlund/patch-1
Fix wrong ordering on when clauses in audit.rb
2016-10-15 17:52:54 +01:00
Markus Reiter
c233cacaf2 Merge pull request #1208 from reitermarkus/puts-columns
Refactor `puts_columns` to allow `$stderr.puts_columns`.
2016-10-15 18:51:11 +02:00
Max Nordlund
c7fde5ddc9 Fix when clause ordering. 2016-10-15 18:31:06 +02:00
Markus Reiter
581a1245bf Move Formatter.columns into utils/formatter. 2016-10-15 17:22:10 +02:00
Markus Reiter
ef70677e88 Add test for Formatter.columns. 2016-10-15 17:13:38 +02:00
Markus Reiter
198bf4d3bd Convert puts_columns to puts Formatter.columns. 2016-10-15 17:13:38 +02:00
Markus Reiter
429327cac8 Use proc to fallback to puts. 2016-10-15 17:13:38 +02:00
Markus Reiter
5ee6df6d82 Fallback to $stdout.tty? unless respond_to?(:tty?). 2016-10-15 17:13:38 +02:00
Markus Reiter
a89dc33834 Change test for puts_columns with empty input. 2016-10-15 17:13:38 +02:00
Markus Reiter
01d87f8107 Don’t use puts_columns if empty? or single item. 2016-10-15 17:13:38 +02:00
Markus Reiter
4bfeaaf212 puts_columns only has to be defined inside module Kernel. 2016-10-15 17:13:38 +02:00
Markus Reiter
6e10f91371 Refactor puts_columns. 2016-10-15 17:13:37 +02:00
Mike McQuaid
527a62b64b Merge pull request #1279 from MikeMcQuaid/use-tar-xz
Use BSD tar's libarchive LZMA support if available
2016-10-15 13:37:35 +01:00
Mike McQuaid
44822340f2 Merge pull request #1277 from MikeMcQuaid/tap-new-command
Rename tap-readme command to tap-new.
2016-10-15 13:37:28 +01:00
Mike McQuaid
b1a16deb19 Use BSD tar's libarchive LZMA support if available
Avoid using an unnecessary `xz` dependency when it's not needed.
2016-10-15 13:10:37 +01:00
Mike McQuaid
7ab39e184b Improve integration command test case output. 2016-10-15 12:32:34 +01:00
Mike McQuaid
f435adc2d0 Rename tap-readme command to tap-new.
Write the README but also a `.travis.yml` file (and in future perhaps a
`Jenkinsfile`).
2016-10-15 12:32:34 +01:00
Mike McQuaid
13276409a9 Merge pull request #1275 from woodruffw/goodbye-cctools
formula_installer: Remove obsolete hard dependency on cctools.
2016-10-15 11:47:29 +01:00
Max Nordlund
d9242c540d Fix wrong ordering on when clauses in audit.rb
It looks like a rebase/merge conflict remmenet.
2016-10-14 23:05:34 +02:00
Markus Reiter
ac50ffc82d Merge pull request #1289 from Homebrew/jawshooah-readme-link
README.md: fix URL for jawshooah
2016-10-14 19:53:04 +02:00
Josh Hagins
ebe50703ca README.md: fix URL for jawshooah 2016-10-14 10:59:10 -04:00
Mike McQuaid
ce1f8a5135 Merge pull request #1287 from jawshooah/haggins-hagins
Haggins -> Hagins
2016-10-14 12:49:19 +01:00
Josh Hagins
2c1c36354a Haggins -> Hagins 2016-10-14 07:36:48 -04:00
Mike McQuaid
ff64d42c7f Merge pull request #1283 from DomT4/U+1F44B
All things must come to an end eventually.
2016-10-14 09:06:55 +01:00
Mike McQuaid
c598ce1be0 Add tschoonj. 2016-10-14 08:46:02 +01:00
Mike McQuaid
4c87852df3 Add maintainers from Cask. 2016-10-14 08:36:52 +01:00