Skip to content

Latest commit

 

History

History
167 lines (103 loc) · 4.61 KB

TAP_MIGRATION.md

File metadata and controls

167 lines (103 loc) · 4.61 KB

Tap Migration

Overview

During April-May 2014, the default location of the Homebrew-cask Tap was moved to a new location on disk, from

"$(brew --repository)"/Library/Taps/phinze-cask

to

"$(brew --repository)"/Library/Taps/caskroom/homebrew-cask

(where "$(brew --repository)" typically evaluates to /usr/local).

The migration should be seamless, but some users have experienced glitches. We are still making improvements to aid in the transition.

What Users Should Do

All users should upgrade to the latest Homebrew (0.9.5 or better), and the latest Homebrew-cask (0.34.0 or better):

$ brew update && brew upgrade brew-cask && brew cleanup && brew cask cleanup

The first time you execute a brew cask command, all Tap migrations should happen for you automatically.

Uncommitted Casks May Be Deleted

If you have recently created a Cask using "brew cask create", and have not submitted that Cask to the main GitHub repository (meaning that your local repository is dirty), you should be aware that Homebrew may delete your uncommited Casks during the process of Tap migration. See

If you are not in the midst of authoring a Cask, this issue will not affect you.

If Something Goes Wrong

If something goes wrong with automatic Tap migration:

Run "brew update" Twice

Try running brew update again. Some users report that Homebrew's Tap migration does not fire on the first try.

Run Any "brew cask" Command

Try running (for example) brew cask doctor. Each time you issue a brew cask command, we examine your directory layout, and attempt to upgrade your Taps to follow the new standard.

Check Your Taps

The output of the command

$ brew tap

should show caskroom/cask in the output. It should not show the old Tap phinze/cask.

Manually Convert Your Taps

The following command should migrate you to the new Tap:

$ brew untap phinze/cask; brew tap caskroom/cask

Manually Check Tap Directories

The following directory should exist:

$ ls -ld "$(brew --repository)"/Library/Taps/caskroom/homebrew-cask

The following directories should not exist:

$ ls -ld "$(brew --repository)"/Library/Taps/phinze/homebrew-cask
$ ls -ld "$(brew --repository)"/Library/Taps/phinze-cask

"Could not tap" Message

You may see the message

Warning: Could not tap caskroom/homebrew-cask/brew-cask over phinze/homebrew-cask/brew-cask

during Tap migration, which means that two conflicting Taps are present.

The auto-migrate code should fix this problem. If you continue to see this message on subsequent commands, refer to Manually Check Tap Directories above.

File an Issue

Please do let us hear from you if you are having problems. Open an issue at GitHub issues page, or find an open issue which duplicates your problem.

It would be helpful to run

$ brew cask doctor

and paste the results into your comment.

Technical Background

Parent Project (Homebrew)

Though we are separate projects, Homebrew-cask is built on the infrastructure provided by Homebrew.

On 24 Apr 2014, the parent project Homebrew changed the layout of the Tap directory to follow the form

"$(brew --repository)"/Library/Taps/<username>/<repo-fullname>

rather than

"$(brew --repository)"/Library/Taps/<username>-<repo-shortname>

causing our project to be moved from

"$(brew --repository)"/Library/Taps/phinze-cask

to

"$(brew --repository)"/Library/Taps/phinze/homebrew-cask

Our Project (Homebrew-cask)

On 3 May 2014, our project also made a change affecting Taps. The main Homebrew-cask repo moved from

https://github.com/phinze/homebrew-cask

to

https://github.com/caskroom/homebrew-cask

This means that the username portion of our Tap path changed from phinze to caskroom, ie:

"$(brew --repository)"/Library/Taps/phinze/homebrew-cask

became

"$(brew --repository)"/Library/Taps/caskroom/homebrew-cask