<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel">
    <title>gmane.os.apple.homebrew.devel</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1107"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1106"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1105"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1104"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1103"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1102"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1101"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1100"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1099"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1098"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1097"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1096"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1095"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1094"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1093"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1092"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1091"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1090"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1089"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1088"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1107">
    <title>Re: Node NPM - no formula available</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1107</link>
    <description>&lt;pre&gt;
hello, geoff, et al,

i was having similar issues yesterday and mistym in the #machomebrew channel of freenode.net irc helped me with this.

that is an older package of node.js with npm separated out of the homebrew formula, like node.js vers. 0.8.0.

the current stable version homebrew has a package for is node.js vers. 0.10.10, with npm included, so you no longer need the separate curl script for it (also why that curl script no longer works).

do —

$ brew update

and once that completes successfully (you might have some files and dependencies to add or move around, as i did, to get update to complete), then run —

$ brew install node

... which should install the latest node.js 0.10.10 and it's correct npm. you can verify after install by doing —

$ node -v

$ npm -v

that worked for me. hope this helps you.

—  faddah wolf
     portland, oregon

Sent from my slick, cool, white iPad 2012... 'cuz i am so '7337!!


On Jun 6, 2013, at 2:24 PM, Geoff Hoffman &amp;lt;ghoffman-tFexAHto8dV2j+Rk3+F/YA&amp;lt; at &amp;gt;public.g&lt;/pre&gt;</description>
    <dc:creator>bidnez account</dc:creator>
    <dc:date>2013-06-06T21:53:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1106">
    <title>Node NPM - no formula available</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1106</link>
    <description>&lt;pre&gt;Mac-mini:~ me$ brew install npm
Error: No available formula for npm
Mac-mini:~ me$ brew install node npm
Error: No available formula for npm
Mac-mini:~ me$ curl http://npmjs.org/install.sh | sh
  % Total    % Received % Xferd  Average Speed   Time    Time     Time
 Current
                                 Dload  Upload   Total   Spent    Left
 Speed
100    85    0    85    0     0    335      0 --:--:-- --:--:-- --:--:--
867
sh: line 1: syntax error near unexpected token `newline'
sh: line 1: `&amp;lt;html&amp;gt;Moved: &amp;lt;a href="https://npmjs.org/install.sh"&amp;gt;
https://npmjs.org/install.sh&amp;lt;/a&amp;gt;'

Thanks to this stackoverflow post
http://stackoverflow.com/a/12751548

I realized that the reason is because npm is now bundled with node, so the
standalone npm install just fails with cryptic messages.

Hope it helps someone.

&lt;/pre&gt;</description>
    <dc:creator>Geoff Hoffman</dc:creator>
    <dc:date>2013-06-06T21:24:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1105">
    <title>Re: recording CPPFLAGS used during build</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1105</link>
    <description>&lt;pre&gt;
Yes, that works.  Thanks.

&lt;/pre&gt;</description>
    <dc:creator>Peter Eisentraut</dc:creator>
    <dc:date>2013-06-03T20:20:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1104">
    <title>Re: recording CPPFLAGS used during build</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1104</link>
    <description>&lt;pre&gt;
Does "env :std" do what you're looking for?

As an existing example, the mariadb.rb formula and some other ones
(non-database) use it.

Regards and best wishes,

Justin Clift

--
Open Source and Standards &amp;lt; at &amp;gt; Red Hat

twitter.com/realjustinclift


&lt;/pre&gt;</description>
    <dc:creator>Justin Clift</dc:creator>
    <dc:date>2013-05-31T09:06:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1103">
    <title>recording CPPFLAGS used during build</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1103</link>
    <description>&lt;pre&gt;This is related to this issue:

https://github.com/petere/homebrew-postgresql/issues/2

I have a tap that builds PostgreSQL with gettext/libintl.  (The standard
formula doesn't do that, but it reasonably could.)  When one builds a
PostgreSQL plugin (which is what the reporter of the above bug did),
that ends up wanting to include libintl.h, because that's what the
header files supplied by PostgreSQL do.  Since gettext is keg-only,
libintl.h is not in the default path.  In a Homebrew build environment,
building PostgreSQL this way works, because the include directories of
all keg-only formulas are automatically added to the build flags
(correct?).  But this is not recorded anywhere, so the plugins I'm later
building have no idea how the Homebrew PostgreSQL build got its header
files.

This issue potentially exists for all packages that have keg-only build
dependencies and exposes its header files for building plugins.  Maybe
there aren't that many of those.

What I'd ideally like is a way to write some varian&lt;/pre&gt;</description>
    <dc:creator>Peter Eisentraut</dc:creator>
    <dc:date>2013-05-30T19:16:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1102">
    <title>Re: More advanced testing</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1102</link>
    <description>&lt;pre&gt;These aren't directly supported right now, but with brew-build-bot getting
developed and the test hardware coming online, we definitely have momentum
to improve the situation.


On Mon, May 27, 2013 at 2:17 PM, David Hall &amp;lt;dhcrawley-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Adam Vandenberg</dc:creator>
    <dc:date>2013-05-28T00:26:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1101">
    <title>More advanced testing</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1101</link>
    <description>&lt;pre&gt;I have a couple of more advanced testing ideas, and I was wondering if these are already possible within the current homebrew release? There is not much documentation on providing tests for formulae.

1. Is it possible to perform different tests based upon the installation configuration? For example, if you have an optional dependency, it might be nice to test that the linking worked correctly. But you would only want to perform this test if this option was enabled.

2. Is it possible to provide nicer output? For example, print a string based on the return value of the test. I imagine this is possible within ruby, but I was wondering if there is something within homebrew to handle this explicitly?

Thanks,
David


&lt;/pre&gt;</description>
    <dc:creator>David Hall</dc:creator>
    <dc:date>2013-05-27T21:17:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1100">
    <title>Re: Separating source and binary trees during build</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1100</link>
    <description>&lt;pre&gt;Thank you both for your help. For the archives, my final solution was:

def install
    mkdir '../build' do
      system "cmake", buildpath, "-Dmomentum:STRING=GEV", "-Dlength:STRING=MM", *std_cmake_args
      system "make install"
    end
  end

Cheers,
David


On 27 May 2013, at 16:57, Jack Nagel &amp;lt;jacknagel-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:



&lt;/pre&gt;</description>
    <dc:creator>David Hall</dc:creator>
    <dc:date>2013-05-27T18:46:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1099">
    <title>Re: What would it take to do a superenv for Snow Leopard?</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1099</link>
    <description>&lt;pre&gt;Pushed a commit that improves compiler selection (but doesn't turn
superenv on for Xcode 3.2.6 yet).

https://github.com/mxcl/homebrew/commit/08523d915856d75e9de02085c9498fc848e4bbc4

On Mon, May 27, 2013 at 12:50 PM, Misty De Meo &amp;lt;mistydemeo-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Misty De Meo</dc:creator>
    <dc:date>2013-05-27T17:57:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1098">
    <title>Re: What would it take to do a superenv for Snow Leopard?</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1098</link>
    <description>&lt;pre&gt;It also benefits us by exposing unexpected issues in the code. I find
weird older environments really useful for stress-testing this kind of
thing. I've already run into some bad assumptions and edge cases
within the scope of those small changes that theoretically *could*
affect newer Xcodes at some point.

On Mon, May 27, 2013 at 12:37 PM, Adam Vandenberg &amp;lt;flangy-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Misty De Meo</dc:creator>
    <dc:date>2013-05-27T17:50:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1097">
    <title>Re: What would it take to do a superenv for Snow Leopard?</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1097</link>
    <description>&lt;pre&gt;Though I suppose it will encourage tagging older `fails_with` versions.


On Mon, May 27, 2013 at 10:28 AM, Adam Vandenberg &amp;lt;flangy-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Adam Vandenberg</dc:creator>
    <dc:date>2013-05-27T17:37:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1096">
    <title>Re: What would it take to do a superenv for Snow Leopard?</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1096</link>
    <description>&lt;pre&gt;OK, so I gave this a try today. I had 64 outdated packages, so it ran
across a good cross-section of stuff (both C and C++).

The results are actually really promising. After I made changes to
about ~14 LOC (in `determine_cc` and `tool`) everything is working
smoothly; the only software that won't build won't build in stdenv
either.

On Mon, May 27, 2013 at 4:19 AM, Mike McQuaid &amp;lt;mike-NL2XmxyG56w7/pHV7SlfWg&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Misty De Meo</dc:creator>
    <dc:date>2013-05-27T17:30:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1095">
    <title>Re: What would it take to do a superenv for Snow Leopard?</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1095</link>
    <description>&lt;pre&gt;Symlinking 3.2 -&amp;gt; 4.3 let Tig compile, but it is choosing `clang` by
default apparently. Probably not what we want for 3.2.

determine_cc will need to be updated I suppose.


On Mon, May 27, 2013 at 2:19 AM, Mike McQuaid &amp;lt;mike-NL2XmxyG56w7/pHV7SlfWg&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Adam Vandenberg</dc:creator>
    <dc:date>2013-05-27T17:28:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1094">
    <title>Re: Separating source and binary trees during build</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1094</link>
    <description>&lt;pre&gt;
On 27 May 2013, at 16:23, David Hall &amp;lt;dhcrawley-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:



`system "cmake", srcDir` is equivalent so use that.

Mike McQuaid
http://mikemcquaid.com


&lt;/pre&gt;</description>
    <dc:creator>Mike McQuaid</dc:creator>
    <dc:date>2013-05-27T16:14:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1093">
    <title>Re: Separating source and binary trees during build</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1093</link>
    <description>&lt;pre&gt;

Just change

"#{srcDir}"

to

srcDir

(the string interpolation is unnecessary).

Though you can actually just use the buildpath attribute, which is
always set to the build root.

Jack

&lt;/pre&gt;</description>
    <dc:creator>Jack Nagel</dc:creator>
    <dc:date>2013-05-27T15:57:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1092">
    <title>Separating source and binary trees during build</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1092</link>
    <description>&lt;pre&gt;I'm developing a formula which requires the binary tree to be outside the source tree during the build. This is enforced by the CMakeLists file of the package.

I currently achieve this by:
def install
   # Build directory must be outside source directory tree
   srcDir = Dir.pwd
   mkdir '../build' do
     system "cmake", "#{srcDir}", "-Dmomentum:STRING=GEV", "-Dlength:STRING=MM", *std_cmake_args
     system "make"
     system "make install"
   end
 end

but this causes brew audit to complain
"Don't need to interpolate "srcDir" with system"

Any suggestions?


&lt;/pre&gt;</description>
    <dc:creator>David Hall</dc:creator>
    <dc:date>2013-05-27T15:23:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1091">
    <title>Re: What would it take to do a superenv for Snow Leopard?</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1091</link>
    <description>&lt;pre&gt;
On 26 May 2013, at 23:42, Misty De Meo &amp;lt;mistydemeo-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:


Sounds to me like it might be worth just turning on (assuming it doesn't crash and burn). Longer-term I think it would be good to kill stdenv by adding enough stuff to superenv that it's no longer needed (for core formulae at least). When doing stuff like fixing the bottle CFLAGS it's pretty annoying to have to fix the same problem across two very different code paths.

Mike McQuaid
http://mikemcquaid.com


&lt;/pre&gt;</description>
    <dc:creator>Mike McQuaid</dc:creator>
    <dc:date>2013-05-27T09:19:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1090">
    <title>Re: What would it take to do a superenv for Snow Leopard?</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1090</link>
    <description>&lt;pre&gt;I'll give it a try tomorrow and see what crashes and burns.

I've been interested in adapting superenv for Xcode 3/2.5, so I'm
hopeful there isn't too much that needs adjustment.

On Sun, May 26, 2013 at 5:34 PM, Jack Nagel &amp;lt;jacknagel-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Misty De Meo</dc:creator>
    <dc:date>2013-05-26T22:42:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1089">
    <title>Re: What would it take to do a superenv for Snow Leopard?</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1089</link>
    <description>&lt;pre&gt;A starting point would be symlinking Library/ENV/3.2.6 to
Library/ENV/4.3 and see what doesn't work.

Since I have Xcode 4.2 installed on 10.6 I have a 4.2 -&amp;gt; 4.3 symlink
and pretty much everything just works, though I'm guessing that's not
the case with 3.2.6.

On Sun, May 26, 2013 at 3:30 PM, Adam Vandenberg &amp;lt;flangy-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Jack Nagel</dc:creator>
    <dc:date>2013-05-26T22:34:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1088">
    <title>What would it take to do a superenv for Snow Leopard?</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1088</link>
    <description>&lt;pre&gt;Not that there's much benefit to this at this point, but what would it take
in general to create a superenv profile for Snow Leopard?
&lt;/pre&gt;</description>
    <dc:creator>Adam Vandenberg</dc:creator>
    <dc:date>2013-05-26T20:30:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1087">
    <title>Re: Taps vs. Formula directory</title>
    <link>http://permalink.gmane.org/gmane.os.apple.homebrew.devel/1087</link>
    <description>&lt;pre&gt;
On 21 May 2013, at 04:09, Tim Moore &amp;lt;tmoore-RpA6I7J3ewCKqjuihJC/7axOck334EZe&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:


Agreed, nice work Charlie.


There isn't one really. Probably depends on one of us having a good chunk of time to get started on it.


We do. However we only give commit access to people who have had consistently good pull requests and been consistently helpful on the issue tracker for a while. Even fixing an odd issue here and there would be incredibly helpful to the project though and we'd love it if you could help.

Mike McQuaid
http://mikemcquaid.com


&lt;/pre&gt;</description>
    <dc:creator>Mike McQuaid</dc:creator>
    <dc:date>2013-05-24T10:41:32</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.os.apple.homebrew.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.os.apple.homebrew.devel</link>
  </textinput>
</rdf:RDF>
