feat: add xontrib-homebrew (#4389)

replaces xontrib-linuxbrew by expanding OS support to Homebrew on macOS
This commit is contained in:
Evgeny 2021-07-28 17:17:55 +03:00 committed by GitHub
parent 9ae302fb11
commit 6591346243
Failed to generate hash of commit
2 changed files with 33 additions and 10 deletions

23
news/xontrib-homebrew.rst Normal file
View file

@ -0,0 +1,23 @@
**Added:**
* <news item>
**Changed:**
* Replaced `xontrib-linuxbrew <https://github.com/eugenesvk/xontrib-linuxbrew>`_ with `xontrib-homebrew <https://github.com/eugenesvk/xontrib-homebrew>`_, which also supports Homebrew on macOS
**Deprecated:**
* <news item>
**Removed:**
* <news item>
**Fixed:**
* <news item>
**Security:**
* <news item>

View file

@ -383,6 +383,16 @@ def define_xontribs():
url="https://github.com/con-f-use/xontrib-histcpy",
),
),
"homebrew": Xontrib(
url="https://github.com/eugenesvk/xontrib-homebrew",
description="Add Homebrew's shell environment to xonsh shell on macOS/Linux",
package=_XontribPkg(
name="xontrib-homebrew",
license="MIT",
install={"pip": "xpip install xontrib-homebrew"},
url="https://github.com/eugenesvk/xontrib-homebrew",
),
),
"jedi": Xontrib(
url="http://xon.sh",
description="Use Jedi as xonsh's python completer.",
@ -401,16 +411,6 @@ def define_xontribs():
url="https://github.com/scopatz/xontrib-kitty",
),
),
"linuxbrew": Xontrib(
url="https://github.com/eugenesvk/xontrib-linuxbrew",
description="Add Homebrew's shell environment to xonsh shell on Linux",
package=_XontribPkg(
name="xontrib-linuxbrew",
license="MIT",
install={"pip": "xpip install xontrib-linuxbrew"},
url="https://github.com/eugenesvk/xontrib-linuxbrew",
),
),
"macro_lib": Xontrib(
url="https://github.com/anki-code/xontrib-macro-lib",
description="Library of the useful macros for the xonsh shell.",