<feed xmlns='http://www.w3.org/2005/Atom'>
<title>brew/Library/Contributions/examples, branch master</title>
<subtitle>🍺 The missing package manager for macOS</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/'/>
<entry>
<title>Rename external commands directory from examples.</title>
<updated>2012-03-18T02:34:41+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2012-03-18T02:33:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=e33937a1e35e75dffae043f22e975bfd51dea409'/>
<id>e33937a1e35e75dffae043f22e975bfd51dea409</id>
<content type='text'>
Fixes Homebrew/homebrew#10829.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes Homebrew/homebrew#10829.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use new Requirements code in Homebrew</title>
<updated>2012-03-10T17:24:10+00:00</updated>
<author>
<name>Adam Vandenberg</name>
</author>
<published>2012-02-29T03:56:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=cef5429f9373526ed1fe523bcbbbb42b5cf65ea9'/>
<id>cef5429f9373526ed1fe523bcbbbb42b5cf65ea9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make `brew-bottle` an internal command.</title>
<updated>2012-03-10T04:57:10+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2012-03-07T22:29:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=22f908d5206bbc4184ec7686593f1f04b9c9ff2f'/>
<id>22f908d5206bbc4184ec7686593f1f04b9c9ff2f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>'brew doctor' provides bad example command</title>
<updated>2012-03-06T15:38:33+00:00</updated>
<author>
<name>Jonathan Hitchcock</name>
</author>
<published>2012-03-06T15:03:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=de30a7844f6bf08c040ec81500e9d6d73409e3d6'/>
<id>de30a7844f6bf08c040ec81500e9d6d73409e3d6</id>
<content type='text'>
If there are multiple dependencies missing, 'brew doctor' can suggest
that you run something like:

  brew install autoconf libyaml autoconf, libyaml

This commit improves that output.

Closes Homebrew/homebrew#10720.

Signed-off-by: Max Howell &lt;max@methylblue.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If there are multiple dependencies missing, 'brew doctor' can suggest
that you run something like:

  brew install autoconf libyaml autoconf, libyaml

This commit improves that output.

Closes Homebrew/homebrew#10720.

Signed-off-by: Max Howell &lt;max@methylblue.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>brew-man: only exit 1 when an error occurs</title>
<updated>2012-03-03T20:25:45+00:00</updated>
<author>
<name>Nicolas Despres</name>
</author>
<published>2012-03-03T18:02:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=6898eadcc570cc7842efe5c377bda591d867db89'/>
<id>6898eadcc570cc7842efe5c377bda591d867db89</id>
<content type='text'>
Because of "set -e" in non verbose mode brew man had an exit status
equals to 1 whereas there was no error.  The reason was that the "test"
command failed.  This patch fix this.

Closes Homebrew/homebrew#10664.

Signed-off-by: Jack Nagel &lt;jacknagel@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Because of "set -e" in non verbose mode brew man had an exit status
equals to 1 whereas there was no error.  The reason was that the "test"
command failed.  This patch fix this.

Closes Homebrew/homebrew#10664.

Signed-off-by: Jack Nagel &lt;jacknagel@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>missing: adjust to new ARGV.formulae behavior</title>
<updated>2012-03-02T00:04:41+00:00</updated>
<author>
<name>Jack Nagel</name>
</author>
<published>2012-03-02T00:02:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=d9fdd401da4409cb33b0f336ae1293af830fea7c'/>
<id>d9fdd401da4409cb33b0f336ae1293af830fea7c</id>
<content type='text'>
Since 25aefdd ("don't complain if args are empty"), ARGV.formulae does
not raise an exception; `brew missing` was relying on that to determine
what set of formulae to act on. Fix this, and also a typo.

Fixes Homebrew/homebrew#10617.

Signed-off-by: Jack Nagel &lt;jacknagel@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since 25aefdd ("don't complain if args are empty"), ARGV.formulae does
not raise an exception; `brew missing` was relying on that to determine
what set of formulae to act on. Fix this, and also a typo.

Fixes Homebrew/homebrew#10617.

Signed-off-by: Jack Nagel &lt;jacknagel@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>brew-pull should build bottles.</title>
<updated>2012-02-25T11:36:04+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2012-02-25T11:36:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=5d1db0e934b906ed6e84bcd53b4e24fb0c48424c'/>
<id>5d1db0e934b906ed6e84bcd53b4e24fb0c48424c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix brew-bottle output for new bottle syntax.</title>
<updated>2012-01-29T20:35:40+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2012-01-29T20:34:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=c38efcef16e42f87efe5f36a0386cb2fc7e2a084'/>
<id>c38efcef16e42f87efe5f36a0386cb2fc7e2a084</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add beer recipe. This is homebrew after all.</title>
<updated>2012-01-28T05:13:44+00:00</updated>
<author>
<name>Cameron Barrie</name>
</author>
<published>2012-01-20T05:16:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=6b669981decfc2e8463bb00143b6684f477295eb'/>
<id>6b669981decfc2e8463bb00143b6684f477295eb</id>
<content type='text'>
Signed-off-by: Adam Vandenberg &lt;flangy@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Adam Vandenberg &lt;flangy@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't bottle unless built with correct flag.</title>
<updated>2012-01-16T21:05:00+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2012-01-16T19:37:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=38b4a06207240f84c8c9ff5c92fccc86143e570c'/>
<id>38b4a06207240f84c8c9ff5c92fccc86143e570c</id>
<content type='text'>
Closes Homebrew/homebrew#9350.

Signed-off-by: Mike McQuaid &lt;mike@mikemcquaid.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes Homebrew/homebrew#9350.

Signed-off-by: Mike McQuaid &lt;mike@mikemcquaid.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
