<feed xmlns='http://www.w3.org/2005/Atom'>
<title>brew/Library/Homebrew/test, branch 1.1.6</title>
<subtitle>🍺 The missing package manager for macOS</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/'/>
<entry>
<title>Deprecate Homebrew/versions, Homebrew/devel-only.</title>
<updated>2017-01-03T17:50:09+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2017-01-03T17:50:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=cd1579a51a0455f0e7dee1eeddc2191f67780ce6'/>
<id>cd1579a51a0455f0e7dee1eeddc2191f67780ce6</id>
<content type='text'>
Don't use Homebrew/versions in a test and remove them both from the
OFFICIAL_TAPS list (i.e. `brew search`).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Don't use Homebrew/versions in a test and remove them both from the
OFFICIAL_TAPS list (i.e. `brew search`).
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: optlink fake kegs in uninstall test</title>
<updated>2017-01-01T14:27:24+00:00</updated>
<author>
<name>Alyssa Ross</name>
</author>
<published>2016-12-23T17:29:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=e1d7d44e5a13d16bc7773a7afb09c1a789878f5a'/>
<id>e1d7d44e5a13d16bc7773a7afb09c1a789878f5a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>keg: check installed dependencies iff optlinked</title>
<updated>2017-01-01T14:27:24+00:00</updated>
<author>
<name>Alyssa Ross</name>
</author>
<published>2016-11-29T00:50:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=e4856143a6a43a306101abcbf0f2d71d00354a18'/>
<id>e4856143a6a43a306101abcbf0f2d71d00354a18</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>keg: keg_only kegs can have installed dependents</title>
<updated>2017-01-01T14:26:28+00:00</updated>
<author>
<name>Alyssa Ross</name>
</author>
<published>2016-11-17T17:18:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=94ead557723491306515a67138b649d67e8299e0'/>
<id>94ead557723491306515a67138b649d67e8299e0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>keg: update installed dependency resolution</title>
<updated>2017-01-01T14:26:28+00:00</updated>
<author>
<name>Alyssa Ross</name>
</author>
<published>2016-11-17T16:18:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=05b85a7bef112a2d3db7cd56c819a62d9bb34e1b'/>
<id>05b85a7bef112a2d3db7cd56c819a62d9bb34e1b</id>
<content type='text'>
Closes #1525. (See there for a motivation for this change.)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #1525. (See there for a motivation for this change.)
</pre>
</div>
</content>
</entry>
<entry>
<title>keg: test dep fallback with unknown formulae</title>
<updated>2016-12-31T17:53:06+00:00</updated>
<author>
<name>Alyssa Ross</name>
</author>
<published>2016-12-31T15:29:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=524d9ce8f3b8553a62da7223a012b4e332bd02b3'/>
<id>524d9ce8f3b8553a62da7223a012b4e332bd02b3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>keg: handle dependencies of moved/renamed formulae</title>
<updated>2016-12-31T17:53:06+00:00</updated>
<author>
<name>Alyssa Ross</name>
</author>
<published>2016-12-31T13:14:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=8b30abe0600df5c9d3da5b4c31ca88a71a1c3e03'/>
<id>8b30abe0600df5c9d3da5b4c31ca88a71a1c3e03</id>
<content type='text'>
In #1497 I switched from Keg#to_formula for comparing kegs to formulae
to comparing the name and tap in the keg's tab to the name and tap of
the formula.

However, this fails to match if the name and tap of the formula have
changed since the keg was installed, so it's clearly better to use
Keg#to_formula where possible, and fall back to the information in the
tab when #to_formula can't be used.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In #1497 I switched from Keg#to_formula for comparing kegs to formulae
to comparing the name and tap in the keg's tab to the name and tap of
the formula.

However, this fails to match if the name and tap of the formula have
changed since the keg was installed, so it's clearly better to use
Keg#to_formula where possible, and fall back to the information in the
tab when #to_formula can't be used.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1750 from alyssais/fallback_dependencies</title>
<updated>2016-12-31T17:34:55+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2016-12-31T17:34:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=33fbf3f32d4fc0e4c119f070d5ef27c3470a5822'/>
<id>33fbf3f32d4fc0e4c119f070d5ef27c3470a5822</id>
<content type='text'>
keg: fall back for dependencies of buggy tabs</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
keg: fall back for dependencies of buggy tabs</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1756 from alyssais/nil_dependents</title>
<updated>2016-12-31T17:34:17+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2016-12-31T17:34:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=1c9651f04feb8678ee05cb838b16ae7618017bc4'/>
<id>1c9651f04feb8678ee05cb838b16ae7618017bc4</id>
<content type='text'>
keg: don't return nil dependencies</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
keg: don't return nil dependencies</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1752 from alyssais/uninstalling_dependencies</title>
<updated>2016-12-31T17:33:08+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2016-12-31T17:33:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=d85a83c9dcf463185e905a28fb9efd3e9e880bec'/>
<id>d85a83c9dcf463185e905a28fb9efd3e9e880bec</id>
<content type='text'>
keg: fix fallback dependencies with multiple kegs</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
keg: fix fallback dependencies with multiple kegs</pre>
</div>
</content>
</entry>
</feed>
