diff options
| author | Misty De Meo | 2012-01-22 22:32:15 -0600 | 
|---|---|---|
| committer | Misty De Meo | 2012-01-25 21:45:19 -0600 | 
| commit | aedacdf209815450204602ff403bb5c4510d6a3a (patch) | |
| tree | 27ecb795418341d3ea2e435c3eb415c7bfc37f91 /Library/Formula/boost.rb | |
| parent | 84a2e44db41ee4c45ad8735b96d9bb7a655efde3 (diff) | |
| download | homebrew-aedacdf209815450204602ff403bb5c4510d6a3a.tar.bz2 | |
Add `devel` to the DSL, + stable and bottle blocks
This commit adds a `devel` entry to the DSL, allowing formulae to
specify an unstable branch.
`devel` takes a block, which should contain standard `url` and `md5`
fields (and `version`, if necessary). This must come after the standard
DSL fields.
This commit also migrates over all formulae currently using `devel` to
the new syntax, as well as formulae which used `head` for non-VCS urls.
The new syntax is also available for `stable` and `bottle`. `stable` is
an option alongside the old syntax. `bottle` replaces the old syntax.
Note that the @stable ivar in Formula has been renamed to @standard,
and the @bottle ivar has been renamed to @bottle_url.
Closes #9735.
Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library/Formula/boost.rb')
| -rw-r--r-- | Library/Formula/boost.rb | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/boost.rb b/Library/Formula/boost.rb index 56f3c814a..d4c542403 100644 --- a/Library/Formula/boost.rb +++ b/Library/Formula/boost.rb @@ -7,8 +7,10 @@ class Boost < Formula    head 'http://svn.boost.org/svn/boost/trunk', :using => :svn    # Bottle built on 10.7.2 using XCode 4.2 -  bottle 'https://downloads.sourceforge.net/project/machomebrew/Bottles/boost-1.48.0-bottle.tar.gz' -  bottle_sha1 'c7871ddd020a24e3b0cfd3c9a352a1210b68b372' +  bottle do +    url 'https://downloads.sourceforge.net/project/machomebrew/Bottles/boost-1.48.0-bottle.tar.gz' +    sha1 'c7871ddd020a24e3b0cfd3c9a352a1210b68b372' +  end    def patches      # https://svn.boost.org/trac/boost/ticket/6131  | 
