Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I install a specific version of a formula in homebrew? For example, postgresql-8.4.4 instead of the latest 9.0.

Thanks!

share|improve this question

8 Answers

up vote 223 down vote accepted

(New readers: Please try the part labelled ‘Update II’ first.)

Since the whole formula directory is a git repository, one can install specific versions using plain git commands.

First, we’ll need to find a commit where postgresql 8.4.4 was available. One way to do this is using git log. (I assume we are in the base directory of homebrew. Probably /usr/local.)

$ git log -S'8.4.4' -- Library/Formula/postgresql.rb

git log -S looks for all commits in which the string '8.4.4' was either added or removed in the file Library/Formula/postgresql.rb. We get two commits as a result.

commit 7dc7ccef9e1ab7d2fc351d7935c96a0e0b031552
Author: Aku Kotkavuo
Date:   Sun Sep 19 18:03:41 2010 +0300

    Update PostgreSQL to 9.0.0.

    Signed-off-by: Adam Vandenberg

commit fa992c6a82eebdc4cc36a0c0d2837f4c02f3f422
Author: David Höppner
Date:   Sun May 16 12:35:18 2010 +0200

    postgresql: update version to 8.4.4

Obviously, fa992c6a82eebdc4cc36a0c0d2837f4c02f3f422 is the commit we’re interested in.

$ git checkout -b postgresql-8.4.4 fa992c6a82eebdc4cc36a0c0d2837f4c02f3f422
$ brew install postgresql
$ git checkout master
$ git branch -d postgresql-8.4.4

You may skip the last command to keep the reference in your git repository.

One note: When checking out the older commit, you temporarily downgrade your homebrew installation. So, you should be careful as some commands in homebrew might be different to the most recent version.


Update I

As of August 2011, homebrew has a brew versions command, which spits out all available versions with their respective SHA hashes.

E.g.

$ brew versions postgresql
9.0.4    git checkout 2accac4 /usr/local/Library/Formula/postgresql.rb
9.0.3    git checkout b782d9d /usr/local/Library/Formula/postgresql.rb
9.0.2    git checkout 2c3b88a /usr/local/Library/Formula/postgresql.rb
9.0.1    git checkout b7fab6c /usr/local/Library/Formula/postgresql.rb
9.0.0    git checkout 1168d8f /usr/local/Library/Formula/postgresql.rb
8.4.4    git checkout c32bea0 /usr/local/Library/Formula/postgresql.rb
...

These commit hashes are probably better than the git log -S approach, because they seem to include also later fixes and changes to the formula files. git log -S would always show the point where the version changed, not including any later additions to that formula.

(And of course it is pretty neat that the output includes everything one needs to do in order to install the old formula.)


Update II

As of March 2012 and Homebrew 0.9, there is another possibility for specific formulae: brew tap & the homebrew versions repository.

That versions repository may include backports of older versions for several formulae. (Mostly only the large and famous ones, but e.g. there is a formula for postgres.)

brew search postgres will show you where to look:

postgresql
homebrew/versions/postgresql8    homebrew/versions/postgresql9

In order to activate the versions repository, you need to tap it:

$ brew tap homebrew/versions
Cloning into '/usr/local/Library/Taps/homebrew-versions'...
remote: Counting objects: 274, done.
remote: Compressing objects: 100% (137/137), done.
remote: Total 274 (delta 144), reused 267 (delta 137)
Receiving objects: 100% (274/274), 63.60 KiB, done.
Resolving deltas: 100% (144/144), done.
Tapped 39 formula

And now it’s ready to use:

$ brew install postgresql8
==> Downloading http://ftp.postgresql.org/pub/source/v8.4.11/postgresql-8.4.11.tar.gz

Hopefully, the backported versions will be kept up-to-date, so this solution will be more future-proof with respect to download URLs than brew versions.

share|improve this answer
10  
You can also just checkout the formula using git checkout fa992 -- Library/Formula/postgresql.rb. When you're done, you can undo the changes to the formula using git revert HEAD Library/Formula/postgresql.rb && git checkout -- Library/Formula/postgresql.rb. – mipadi Jan 3 '11 at 20:59
Postgresql v8.4.4 is no longer at the ftp server that the formula refers to. It is easy, though, to change the formula to reference the 8.4.6, which may work for you. The MD5 in the formula also needs to change - the correct MD5 will be reported when you try to brew install. – Swards May 3 '11 at 21:55
11  
Note: on a fresh Homebrew install, you may need to brew update to establish its Git repo. – Bluu May 28 '11 at 0:57
3  
I'm a brew newbie (brewbie?) and I ran the git checkout ... for a specific mysql version, but now what? I tried brew install mysql at this point, but I get Error: This is a head-only formula; install with "brew install --HEAD mysql". Then I try brew install --HEAD mysql and I get Error: No head is defined for mysql. Am I missing something obvious? – istrasci Jan 9 '12 at 21:06
For update I, I had to brew unlink <formula> before running the brew install part – Josh Diehl Aug 19 '12 at 4:42
show 5 more comments

There's now a much easier way to install an older version of a formula that you'd previously installed. Simply use

brew switch [formula] [version]

For instance, I alternate regularly between Node.js 0.4.12 and 0.6.5:

brew switch node 0.4.12
brew switch node 0.6.5

Since brew switch just changes the symlinks, it's very fast. See further documentation on the Homebrew Wiki under External Commands.

share|improve this answer
1  
I tried this, and it succeded with the message " 33 links created for /usr/local/Cellar/node/0.4.7 " , but when I run node afterwards, it fails with the message " -bash: /usr/local/bin/node: No such file or directory " . Any idea what couldlve gone wrong? Note: i downloaded 0.4.7 manually and put it in the cellar directory, because I dont know how to download anyhting but the latest node version using brew. – Soroush Hakami Dec 22 '11 at 21:36
@Souroush Hakami you can't just put it in the folder, you have to put the compiled version in the Cellar folder. – aledalgrande Mar 2 '12 at 23:49

Simple Workflow

Step 1:

Navigate to your homebrew base directory (usually this is /usr/local) Example:

cd /usr/local

Step 2:

Enter brew versions <formula> ( is the formula you want to install).

You will then get something like:

1.0.1 git checkout 1234567 Library/Formula/<formula>.rb
1.0.0 git checkout 0123456 Library/Formula/<formula>.rb
...

Step 3:

Choose the desired version and check it out via copy and paste of the desired version line (leave out the version number in the beginning).

Example for getting 1.0.0:

git checkout 0123456 Library/Formula/<formula>.rb

Step 3.5 (maybe necessary)

brew unlink <formula>

Step 4:

brew install <formula>

Step 5:

DONE, you can now use brew switch <formula> <version> to switch between versions.

share|improve this answer
9  
Simple, accurate, concise. Perfect answer. – cweekly Jun 21 '12 at 17:07
1  
Seems like the simplest, but when I copy and paste, get fatal: Not a git repository (or any of the parent directories): .git. I just cd into the directory instead (without the FORMULANAME.rb), then do the git checkout 120938 – Ramon Tayag Jul 1 '12 at 12:28
1  
Thanks for the really informative explanation – dreampowder Sep 4 '12 at 13:04
4  
@RamonTayag, I had the same problem. Be sure to cd /usr/local first. – gjb Dec 19 '12 at 11:22
4  
I Found you need a step 3.5: brew unlink FORMULANAME – Intentss Feb 24 at 2:47
show 4 more comments

I've discovered a better alternative solution then the other complex solutions.

brew install https://github.com/adamv/homebrew-alt/raw/master/versions/postgresql8.rb

This will download and install PostgreSQL 8.4.8


I found this solution by starting to follow the steps of searching the repo and a comment in the repo .

After a little research found that someone has a collection of rare formulars to brew up with.


If your looking for MySQL 5.1.x, give this a try.

brew install https://github.com/adamv/homebrew-alt/raw/master/versions/mysql51.rb

Thanks for reading.

share|improve this answer
hmm, brew install https://github.com/Homebrew/homebrew-versions/blob/master/node06.rb seemed to fail with syntax errors. – Brian Armstrong Dec 17 '12 at 7:43

I just used Homebrew to go back to Maven 2.2.1 since the simple brew install maven installed Maven 3.0.3.

First you have to leave the maven dir there so

$ brew unlink maven

Use the brew tap command

$ brew tap homebrew/versions
Cloning into '/usr/local/Library/Taps/homebrew-versions'...
remote: Counting objects: 590, done.
remote: Compressing objects: 100% (265/265), done.
remote: Total 590 (delta 362), reused 549 (delta 325)
Receiving objects: 100% (590/590), 117.49 KiB | 79 KiB/s, done.
Resolving deltas: 100% (362/362), done.
Tapped 50 formula

Now you can install the maven2 formula:

$ brew install maven2
==> Downloading http://www.apache.org/dist/maven/maven-2/2.2.1/binaries/apache-maven-2.2.1-bin.tar.gz
######################################################################## 100.0%
/usr/local/Cellar/maven2/2.2.1: 10 files, 3.1M, built in 6 seconds
$ mvn --version
Apache Maven 2.2.1 (r801777; 2009-08-06 12:16:01-0700)
Java version: 1.6.0_37
Java home: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home
Default locale: en_US, platform encoding: MacRoman
OS name: "mac os x" version: "10.7.4" arch: "x86_64" Family: "mac" 

Edit: You can also just brew switch maven 2.2.1 to switch to a different version.

Edit: The Apache Maven project reorganized their repo. Updated this answer to account for this change.

share|improve this answer
1  
This is exactly what I wanted thanks! – micmcg Mar 8 '12 at 6:08
Glad you found it useful. – Cameron Goodale May 3 '12 at 16:59
This was very helpful. Note, the apache foundation has reorganized the maven binaries into version (1,2,3) specific directories, so you will need to edit the maven.rb for 2.2.1 and perhaps others to fit the new structure. For example, the binary for 2.2.1 was located at: apache.org/dist/maven/maven-2/2.2.1/binaries/…. Note the "maven-2/2.2.1/" in the url. – Charles Forcey Feb 5 at 7:22
@CharlesForcey You are correct about the maven dist repo being reorganized. I will update the answer to use brew tap to use the older maven2 formula. Thanks for the comment. – Cameron Goodale Feb 6 at 20:31

Based on the workflow described by @tschundeee and @Debilski’s update 1, I automated the procedure and added cleanup in this script.

Download it, chmod u+x it, and brewv <formula_name> <wanted_version>. For the specific OP, it would be:

brewv postgresql 8.4.4

:)

share|improve this answer
1  
just awesome. why isn't this in brew? – Adrian Apr 3 at 11:29

Update on the Library/Formula/postgresql.rb line 8 to

http://ftp2.uk.postgresql.org/sites/ftp.postgresql.org/source/v8.4.6/postgresql-8.4.6.tar.bz2

And MD5 on line 9 to

fcc3daaf2292fa6bf1185ec45e512db6

Save and exit.

brew install postgres
initdb /usr/local/var/postgres

Now in this stage you might face the postgresql could not create shared memory segment error, to work around that update the /etc/sysctl.conf like this:

kern.sysv.shmall=65536
kern.sysv.shmmax=16777216

Try initdb /usr/local/var/postgres again, and it should run smooth.

To run postgresql on start

launchctl load -w /usr/local/Cellar/postgresql/8.4.6/org.postgresql.postgres.plist

Hope that helps :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.