<feed xmlns='http://www.w3.org/2005/Atom'>
<title>brew/Library/Homebrew/os/mac/ruby_mach.rb, branch 1.1.2</title>
<subtitle>🍺 The missing package manager for macOS</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/'/>
<entry>
<title>os/mac: Delete old cctools-based relocation code.</title>
<updated>2016-09-20T21:48:21+00:00</updated>
<author>
<name>William Woodruff</name>
</author>
<published>2016-09-20T21:37:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=d16e4a782efb217070159bfb182cc10f8b68a426'/>
<id>d16e4a782efb217070159bfb182cc10f8b68a426</id>
<content type='text'>
Disable check for $HOMEBREW_NO_RUBY_MACHO now that no alternative exists.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Disable check for $HOMEBREW_NO_RUBY_MACHO now that no alternative exists.
</pre>
</div>
</content>
</entry>
<entry>
<title>rubocop --auto-correct all hash-rocket usage.</title>
<updated>2016-09-17T15:14:13+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2016-09-17T14:32:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=3982950e6106d45811a396a6a7478eeeee2817d7'/>
<id>3982950e6106d45811a396a6a7478eeeee2817d7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>os/mac: Update ruby-macho calls for compatibility with 0.2.5.</title>
<updated>2016-08-11T20:34:49+00:00</updated>
<author>
<name>William Woodruff</name>
</author>
<published>2016-08-07T17:37:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=97a66aa513f515472b3c36256f4624060d5e365c'/>
<id>97a66aa513f515472b3c36256f4624060d5e365c</id>
<content type='text'>
Closes #656.

Signed-off-by: Martin Afanasjew &lt;martin@afanasjew.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #656.

Signed-off-by: Martin Afanasjew &lt;martin@afanasjew.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ruby_mach: Update cputype case block.</title>
<updated>2016-06-20T21:36:18+00:00</updated>
<author>
<name>William Woodruff</name>
</author>
<published>2016-06-18T00:41:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=f3a6385c8cfe867811d539ab1506198f3f6048dd'/>
<id>f3a6385c8cfe867811d539ab1506198f3f6048dd</id>
<content type='text'>
MachOFile#cputype now returns a Symbol.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
MachOFile#cputype now returns a Symbol.
</pre>
</div>
</content>
</entry>
<entry>
<title>os/mac/*_mach: move shared code into 'SharedMachO' (#282)</title>
<updated>2016-05-27T21:13:51+00:00</updated>
<author>
<name>Martin Afanasjew</name>
</author>
<published>2016-05-27T21:13:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=9cf2710dc95f1c81e8c5111e22681836225e32e2'/>
<id>9cf2710dc95f1c81e8c5111e22681836225e32e2</id>
<content type='text'>
Both the `CctoolsMachO` and `RubyMachO` module implement a common set of
methods that simplify querying `mach_data`. Move these into a shared
module, that gets included after either of these implementations is
loaded and included in `Pathname`.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Both the `CctoolsMachO` and `RubyMachO` module implement a common set of
methods that simplify querying `mach_data`. Move these into a shared
module, that gets included after either of these implementations is
loaded and included in `Pathname`.</pre>
</div>
</content>
</entry>
<entry>
<title>os/mac/ruby_mach: don't hide actual parse errors</title>
<updated>2016-02-25T20:54:42+00:00</updated>
<author>
<name>Martin Afanasjew</name>
</author>
<published>2016-02-15T16:56:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=c20809526c4f3c794de592dbde2663bb0da28451'/>
<id>c20809526c4f3c794de592dbde2663bb0da28451</id>
<content type='text'>
The current approach of suppressing all output regardless of what the
error is makes it very hard to debug any issues and misread but valid
Mach-O files will be silently interpreted as non-Mach-O files instead.

Prefer to fail if we are a Homebrew developer or running on the bot
(`HOMEBREW_DEVELOPER=1`), so that problems will be noticed and fixed
before the silent failure leads to hard-to-diagnose user problems.

Closes Homebrew/homebrew#48817.

Signed-off-by: Martin Afanasjew &lt;martin@afanasjew.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The current approach of suppressing all output regardless of what the
error is makes it very hard to debug any issues and misread but valid
Mach-O files will be silently interpreted as non-Mach-O files instead.

Prefer to fail if we are a Homebrew developer or running on the bot
(`HOMEBREW_DEVELOPER=1`), so that problems will be noticed and fixed
before the silent failure leads to hard-to-diagnose user problems.

Closes Homebrew/homebrew#48817.

Signed-off-by: Martin Afanasjew &lt;martin@afanasjew.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>os/mac: optionally use ruby_macho.</title>
<updated>2016-02-03T21:25:40+00:00</updated>
<author>
<name>William Woodruff</name>
</author>
<published>2016-02-01T19:19:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=afe0fde49ceb29aba6f152967582ced5ba206c32'/>
<id>afe0fde49ceb29aba6f152967582ced5ba206c32</id>
<content type='text'>
- and branch for dylib_id_and_dylibs
- add branches for dylib id changing and change_install_name
- rename MachO module to HomebrewMachO to prevent namespace clashes
  with MachO in ruby-macho. this will eventually be replaced entirely
  with direct calls to ruby-macho methods
- break ruby-macho implementation out into separate RubyMachO module,
  and include either RubyMachO or CctoolsMachO (the original
  implementation) based on the HOMEBREW_RUBY_MACHO env var
- move ArchitectureListExtension and RubyMachO into separate files
- create {ruby_,cctools_,,}relocate.rb for isolation of different
  methods of mach-o relocation (ruby-macho vs. cctools)
- fill in require_install_name_tool? for ruby_relocate.rb
- rename {ruby_,cctools_,,}relocate.rb to keg, isolate requires in
  os/mac

Closes Homebrew/homebrew#45001.

Signed-off-by: Mike McQuaid &lt;mike@mikemcquaid.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- and branch for dylib_id_and_dylibs
- add branches for dylib id changing and change_install_name
- rename MachO module to HomebrewMachO to prevent namespace clashes
  with MachO in ruby-macho. this will eventually be replaced entirely
  with direct calls to ruby-macho methods
- break ruby-macho implementation out into separate RubyMachO module,
  and include either RubyMachO or CctoolsMachO (the original
  implementation) based on the HOMEBREW_RUBY_MACHO env var
- move ArchitectureListExtension and RubyMachO into separate files
- create {ruby_,cctools_,,}relocate.rb for isolation of different
  methods of mach-o relocation (ruby-macho vs. cctools)
- fill in require_install_name_tool? for ruby_relocate.rb
- rename {ruby_,cctools_,,}relocate.rb to keg, isolate requires in
  os/mac

Closes Homebrew/homebrew#45001.

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