Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Feb 7, 2024
1 parent ba560e0 commit e243b99
Show file tree
Hide file tree
Showing 44 changed files with 173 additions and 130 deletions.
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/audit.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var auditCmd = &cobra.Command{
Use: "audit",
Short: "Check <formula> for Homebrew coding style violations",
Run: func(cmd *cobra.Command, args []string) {},
Use: "audit",
Short: "Check <formula> for Homebrew coding style violations",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/bottle.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var bottleCmd = &cobra.Command{
Use: "bottle",
Short: "Generate a bottle (binary package) from a formula that was installed with `--build-bottle`",
Run: func(cmd *cobra.Command, args []string) {},
Use: "bottle",
Short: "Generate a bottle (binary package) from a formula that was installed with `--build-bottle`",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/bump.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var bumpCmd = &cobra.Command{
Use: "bump",
Short: "Display out-of-date brew formulae and the latest version available",
Run: func(cmd *cobra.Command, args []string) {},
Use: "bump",
Short: "Display out-of-date brew formulae and the latest version available",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/bumpCaskPr.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var bumpCaskPrCmd = &cobra.Command{
Use: "bump-cask-pr",
Short: "Create a pull request to update <cask> with a new version",
Run: func(cmd *cobra.Command, args []string) {},
Use: "bump-cask-pr",
Short: "Create a pull request to update <cask> with a new version",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/bumpFormulaPr.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var bumpFormulaPrCmd = &cobra.Command{
Use: "bump-formula-pr",
Short: "Create a pull request to update <formula> with a new URL or a new tag",
Run: func(cmd *cobra.Command, args []string) {},
Use: "bump-formula-pr",
Short: "Create a pull request to update <formula> with a new URL or a new tag",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/bumpRevision.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var bumpRevisionCmd = &cobra.Command{
Use: "bump-revision",
Short: "Create a commit to increment the revision of <formula>",
Run: func(cmd *cobra.Command, args []string) {},
Use: "bump-revision",
Short: "Create a commit to increment the revision of <formula>",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/bumpUnversionedCasks.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var bumpUnversionedCasksCmd = &cobra.Command{
Use: "bump-unversioned-casks",
Short: "Check all casks with unversioned URLs in a given <tap> for updates",
Run: func(cmd *cobra.Command, args []string) {},
Use: "bump-unversioned-casks",
Short: "Check all casks with unversioned URLs in a given <tap> for updates",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/cat.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var catCmd = &cobra.Command{
Use: "cat",
Short: "Display the source of a <formula> or <cask>",
Run: func(cmd *cobra.Command, args []string) {},
Use: "cat",
Short: "Display the source of a <formula> or <cask>",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var commandCmd = &cobra.Command{
Use: "command",
Short: "Display the path to the file being used when invoking `brew` <cmd>",
Run: func(cmd *cobra.Command, args []string) {},
Use: "command",
Short: "Display the path to the file being used when invoking `brew` <cmd>",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/contributions.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var contributionsCmd = &cobra.Command{
Use: "contributions",
Short: "Summarise contributions to Homebrew repositories",
Run: func(cmd *cobra.Command, args []string) {},
Use: "contributions",
Short: "Summarise contributions to Homebrew repositories",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var createCmd = &cobra.Command{
Use: "create",
Short: "Generate a formula or, with `--cask`, a cask for the downloadable file at <URL> and open it in the editor",
Run: func(cmd *cobra.Command, args []string) {},
Use: "create",
Short: "Generate a formula or, with `--cask`, a cask for the downloadable file at <URL> and open it in the editor",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/determineTestRunners.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var determineTestRunnersCmd = &cobra.Command{
Use: "determine-test-runners",
Short: "Determines the runners used to test formulae or their dependents",
Run: func(cmd *cobra.Command, args []string) {},
Use: "determine-test-runners",
Short: "Determines the runners used to test formulae or their dependents",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/dispatchBuildBottle.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var dispatchBuildBottleCmd = &cobra.Command{
Use: "dispatch-build-bottle",
Short: "Build bottles for these formulae with GitHub Actions",
Run: func(cmd *cobra.Command, args []string) {},
Use: "dispatch-build-bottle",
Short: "Build bottles for these formulae with GitHub Actions",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/edit.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ import (
)

var editCmd = &cobra.Command{
Use: "edit",
Short: "Open a <formula>, <cask> or <tap> in the editor set by `EDITOR` or `HOMEBREW_EDITOR`, or open the Homebrew repository for editing if no argument is provided",
Run: func(cmd *cobra.Command, args []string) {},
Use: "edit",
Short: "Open a <formula>, <cask> or <tap> in the editor set by `EDITOR` or `HOMEBREW_EDITOR`, or open the Homebrew repository for editing if no argument is provided",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/extract.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var extractCmd = &cobra.Command{
Use: "extract",
Short: "Look through repository history to find the most recent version of <formula> and create a copy in <tap>",
Run: func(cmd *cobra.Command, args []string) {},
Use: "extract",
Short: "Look through repository history to find the most recent version of <formula> and create a copy in <tap>",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
2 changes: 1 addition & 1 deletion completers/brew_completer/cmd/formula.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
var formulaCmd = &cobra.Command{
Use: "formula",
Short: "Display the path where <formula> is located",
GroupID: "main",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/generateCaskApi.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var generateCaskApiCmd = &cobra.Command{
Use: "generate-cask-api",
Short: "Generate `homebrew/cask` API data files for <https://formulae.brew.sh>",
Run: func(cmd *cobra.Command, args []string) {},
Use: "generate-cask-api",
Short: "Generate `homebrew/cask` API data files for <https://formulae.brew.sh>",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/generateFormulaApi.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var generateFormulaApiCmd = &cobra.Command{
Use: "generate-formula-api",
Short: "Generate `homebrew/core` API data files for <https://formulae.brew.sh>",
Run: func(cmd *cobra.Command, args []string) {},
Use: "generate-formula-api",
Short: "Generate `homebrew/core` API data files for <https://formulae.brew.sh>",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/generateManCompletions.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var generateManCompletionsCmd = &cobra.Command{
Use: "generate-man-completions",
Short: "Generate Homebrew's manpages and shell completions",
Run: func(cmd *cobra.Command, args []string) {},
Use: "generate-man-completions",
Short: "Generate Homebrew's manpages and shell completions",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/installBundlerGems.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var installBundlerGemsCmd = &cobra.Command{
Use: "install-bundler-gems",
Short: "Install Homebrew's Bundler gems",
Run: func(cmd *cobra.Command, args []string) {},
Use: "install-bundler-gems",
Short: "Install Homebrew's Bundler gems",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/irb.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var irbCmd = &cobra.Command{
Use: "irb",
Short: "Enter the interactive Homebrew Ruby shell",
Run: func(cmd *cobra.Command, args []string) {},
Use: "irb",
Short: "Enter the interactive Homebrew Ruby shell",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/linkage.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var linkageCmd = &cobra.Command{
Use: "linkage",
Short: "Check the library links from the given <formula> kegs",
Run: func(cmd *cobra.Command, args []string) {},
Use: "linkage",
Short: "Check the library links from the given <formula> kegs",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/livecheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var livecheckCmd = &cobra.Command{
Use: "livecheck",
Short: "Check for newer versions of formulae and/or casks from upstream",
Run: func(cmd *cobra.Command, args []string) {},
Use: "livecheck",
Short: "Check for newer versions of formulae and/or casks from upstream",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/prAutomerge.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var prAutomergeCmd = &cobra.Command{
Use: "pr-automerge",
Short: "Find pull requests that can be automatically merged using `brew pr-publish`",
Run: func(cmd *cobra.Command, args []string) {},
Use: "pr-automerge",
Short: "Find pull requests that can be automatically merged using `brew pr-publish`",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/prPublish.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var prPublishCmd = &cobra.Command{
Use: "pr-publish",
Short: "Publish bottles for a pull request with GitHub Actions",
Run: func(cmd *cobra.Command, args []string) {},
Use: "pr-publish",
Short: "Publish bottles for a pull request with GitHub Actions",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/prPull.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var prPullCmd = &cobra.Command{
Use: "pr-pull",
Short: "Download and publish bottles, and apply the bottle commit from a pull request with artifacts generated by GitHub Actions",
Run: func(cmd *cobra.Command, args []string) {},
Use: "pr-pull",
Short: "Download and publish bottles, and apply the bottle commit from a pull request with artifacts generated by GitHub Actions",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/prUpload.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var prUploadCmd = &cobra.Command{
Use: "pr-upload",
Short: "Apply the bottle commit and publish bottles to a host",
Run: func(cmd *cobra.Command, args []string) {},
Use: "pr-upload",
Short: "Apply the bottle commit and publish bottles to a host",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
7 changes: 4 additions & 3 deletions completers/brew_completer/cmd/prof.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
)

var profCmd = &cobra.Command{
Use: "prof",
Short: "Run Homebrew with a Ruby profiler",
Run: func(cmd *cobra.Command, args []string) {},
Use: "prof",
Short: "Run Homebrew with a Ruby profiler",
GroupID: "developer",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down
Loading

0 comments on commit e243b99

Please sign in to comment.