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!
|
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! |
||||
|
|
|
(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
Obviously,
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 E.g.
These commit hashes are probably better than the (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: 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.)
In order to activate the versions repository, you need to tap it:
And now it’s ready to use:
Hopefully, the backported versions will be kept up-to-date, so this solution will be more future-proof with respect to download URLs than |
|||||||||||||||||
|
|
There's now a much easier way to install an older version of a formula that you'd previously installed. Simply use
For instance, I alternate regularly between Node.js 0.4.12 and 0.6.5:
Since |
|||||||
|
Simple WorkflowStep 1:Navigate to your homebrew base directory (usually this is
Step 2:Enter You will then get something like:
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:
Step 3.5 (maybe necessary)
Step 4:
Step 5:DONE, you can now use |
|||||||||||||||||||||
|
|
I've discovered a better alternative solution then the other complex solutions.
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.
Thanks for reading. |
||||
|
|
I just used Homebrew to go back to Maven 2.2.1 since the simple 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 Edit: The Apache Maven project reorganized their repo. Updated this answer to account for this change. |
|||||||||||
|
|
Along the lines of @halfcube's suggestion, this works really well:
|
|||
|
|
|
Based on the workflow described by @tschundeee and @Debilski’s update 1, I automated the procedure and added cleanup in this script. Download it,
:) |
|||||
|
|
Update on the Library/Formula/postgresql.rb line 8 to
And MD5 on line 9 to
Save and exit.
Now in this stage you might face the
Try To run postgresql on start
Hope that helps :) |
|||
|
|