Reputation: 66961
Following some online directions to install older versions of formulae, get this:
% brew tap homebrew/versions
Error: homebrew/versions was deprecated. This tap is now empty and all its contents were either deleted or migrated.
What does this mean and where have they migrated to/what to do now as its alternative?
Upvotes: 1
Views: 2936
Reputation: 27768
The packages/formulae in tap homebrew/versions
are merged into homebrew-core
. If you wanna find an old version of a package. Just search it in the homebrew-core tap,
❯ brew search go
==> Formulae
algol68g [email protected] googler mongo-orchestration
anycable-go [email protected]
...
[email protected] google-benchmark libgosu wireguard-go
[email protected] google-java-format lunchy-go write-good
[email protected] google-sparsehash mongo-c-driver
[email protected]
Basically all old package are migrated as [email protected]
in homebrew-core.
BTW, homebrew-core is the default tap included after homebrew installation.
Upvotes: 1