brew/Library/Homebrew/official_taps.rb
Issy Long 0232610381
official_taps: Refer toHomebrew/homebrew-cask-versions properly
- This is needed for https://github.com/Homebrew/brew/pull/13603 because `Homebrew/homebrew-versions` is deprecated (legitimately), but `OFFICIAL_CASK_TAPS` spits out `versions` as a repo, which could then be interpreted as `Homebrew/versions` rather than `Homebrew/cask-versions` which it actually is.
2022-08-03 11:19:23 +01:00

39 lines
691 B
Ruby

# typed: true
# frozen_string_literal: true
OFFICIAL_CASK_TAPS = %w[
cask
cask-versions
].freeze
OFFICIAL_CMD_TAPS = {
"homebrew/aliases" => ["alias", "unalias"],
"homebrew/autoupdate" => ["autoupdate"],
"homebrew/bundle" => ["bundle"],
"homebrew/command-not-found" => ["command-not-found-init", "which-formula", "which-update"],
"homebrew/test-bot" => ["test-bot"],
"homebrew/services" => ["services"],
}.freeze
DEPRECATED_OFFICIAL_TAPS = %w[
apache
binary
cask-eid
completions
devel-only
dupes
emacs
fuse
games
gui
head-only
livecheck
nginx
php
python
science
tex
versions
x11
].freeze