Skip to content

README.md: add instructions to switch taps#98

Merged
slp merged 1 commit intocontainers:mainfrom
slp:update-readme
Mar 17, 2026
Merged

README.md: add instructions to switch taps#98
slp merged 1 commit intocontainers:mainfrom
slp:update-readme

Conversation

@slp
Copy link
Collaborator

@slp slp commented Mar 17, 2026

We have deprecated the old tap, so extend the instructions to explain how to switch from it to the new one.

@gemini-code-assist
Copy link

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request enhances the README.md documentation to provide clear guidance for users transitioning from a deprecated Homebrew tap to a new one for installing krunkit. The changes ensure that users can smoothly upgrade or install the latest version by first removing the old tap and then installing from the updated repository.

Highlights

  • Homebrew Tap Migration: Added detailed instructions to the README.md for users to migrate from the deprecated slp/krunkit Homebrew tap to the new slp/krun tap.
  • Deprecation Warning: Included an important notice advising users who previously installed krunkit from the old tap to follow specific removal steps before reinstalling.
  • Installation Command Update: Updated the Homebrew installation command to reflect the new tap name, slp/krun.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • README.md
    • Added a new section detailing how to remove the deprecated slp/krunkit Homebrew tap.
    • Updated the Homebrew installation instructions to use the new slp/krun tap.
Activity
  • No human activity has been recorded on this pull request yet.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the README.md to guide users in switching from the deprecated Homebrew tap slp/krunkit to the new slp/krun tap. The changes are clear and provide necessary commands for the transition. I've added a couple of suggestions to improve the wording and formatting for better clarity and consistency in the documentation.

README.md Outdated
## Installation

> [!IMPORTANT]
> If you've ever installed krunkit from the old tap `slp/krunkit`, to upgrade to the latest version you'll need to follow the "Removing the old Homebrew tap" instructions first, and then install from scratch.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For consistency and readability, it's good practice to wrap package names and tap names in backticks, as you've done elsewhere in the file. Please wrap krunkit and slp/krunkit in backticks.

Suggested change
> If you've ever installed krunkit from the old tap `slp/krunkit`, to upgrade to the latest version you'll need to follow the "Removing the old Homebrew tap" instructions first, and then install from scratch.
> If you've ever installed `krunkit` from the old tap `slp/krunkit`, to upgrade to the latest version you'll need to follow the "Removing the old Homebrew tap" instructions first, and then install from scratch.

@jakecorrenti
Copy link
Member

Other than the comment above, LGTM

We have deprecated the old tap, so extend the instructions to
explain how to switch from it to the new one.

Signed-off-by: Sergio Lopez <slp@redhat.com>
@slp
Copy link
Collaborator Author

slp commented Mar 17, 2026

/gemini review

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the README.md file to provide instructions for users to switch from the old, deprecated Homebrew tap to the new one. The changes are clear and address the goal described. I have one suggestion to simplify the provided shell commands for a more user-friendly and robust process, leveraging Homebrew's own interactive guidance.

Comment on lines +15 to +20
The `slp/krunkit` tap is now deprecated. If you've ever installed `krunkit` from it, you'll need to remove all packages from that tap and then the tap itself:

```
$ brew list --full-name | grep "^slp/krunkit/" | xargs brew uninstall
$ brew untap slp/krunkit
```

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The shell pipeline to uninstall packages is a bit complex and can be fragile. A simpler and more robust approach is to leverage Homebrew's own user-friendly error messages. Running brew untap will fail if packages are installed, but it will also list them for the user, telling them exactly what to uninstall. This is often a better user experience than a 'magic' one-liner.

Suggested change
The `slp/krunkit` tap is now deprecated. If you've ever installed `krunkit` from it, you'll need to remove all packages from that tap and then the tap itself:
```
$ brew list --full-name | grep "^slp/krunkit/" | xargs brew uninstall
$ brew untap slp/krunkit
```
The `slp/krunkit` tap is now deprecated. To remove it, run:

$ brew untap slp/krunkit

If this fails because packages are installed, uninstall them as
prompted by Homebrew, then run the `untap` command again.

@slp slp merged commit 02d4161 into containers:main Mar 17, 2026
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants