GHC 2017-05-13

9 comments.

, https://git.io/v97TW in Homebrew/homebrew-core
No problem. Another useless test doesn't hurt 😋 

, https://git.io/v97Tl in Homebrew/homebrew-core
No idea, can't reproduce in any non-interactive environment. Maybe explicitly pipe nothing into it?

By the way, it's a rather shitty test anyway; it is actually testing Zsh's compinit, rather than zsh-completions, and it relies on the formula being linked. How about replacing it with something like

```rb
  test do
    (testpath/"test.zsh").write <<-EOS.undent
      fpath=(#{pkgshare} $fpath)
      autoload _ack
      which _ack
    EOS
    assert_match /^_ack/, shell_output("/bin/zsh test.zsh")
  end
```

Not saying this is any better, but it is basically functionally equivalent, and the shell doesn't need to be interactive (due to skipping `compinit` and directly autoloading `_ack`, which is the only thing `compinit` does that's relevant to `which _ack`).

, https://git.io/v97fC in jarun/nnn
I guess you can add these entries to `matrix.include`:

```yml
- os: linux
  dist: trusty
  env: USE_DOCKER=1 OS_TYPE=centos OS_VERSION=7
- os: linux
  dist: trusty
  env: USE_DOCKER=1 OS_TYPE=fedora OS_VERSION=24
```

etc. then test for `USE_DOCKER` in scripts.

For sanity and easier access to shell language syntax, including Bashism, I would put `before_install`, `script` and `after_success` into standalone scripts in a directory like `ci/`.

, https://git.io/v9Qj3 in Homebrew/homebrew-core
Disabled codesign.

, https://git.io/v9QAr in Homebrew/homebrew-core
terminal-notifier 1.8.0
=======================

Created with `brew bump-formula-pr`.

, https://git.io/v9Q7w in Homebrew/homebrew-core
imagemagick@6 6.9.8-5
=====================

Created with `brew bump-formula-pr`.

---

Please remember to
```
brew mirror imagemagick@6
```
when merging.

, https://git.io/v9Q7r in Homebrew/homebrew-core
imagemagick 7.0.5-6
===================

Created with `brew bump-formula-pr`.

---

Please remember to
```
brew mirror imagemagick
```
when merging.

, https://git.io/v9QEs in jarun/nnn
Oh, I see you were talking about pkg-config. Sure, using pkg-config in Makefile shouldn't be a problem on macOS with any configuration: with or without pkg-config, with stock ncurses 5.x or third-party ncurses 6.x.

, https://git.io/v9Q4j in jarun/nnn
No problem with curses here as we've discussed before. (You know, Makefile has a Darwin branch.)