mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
feat: add xontrib-homebrew (#4389)
replaces xontrib-linuxbrew by expanding OS support to Homebrew on macOS
This commit is contained in:
parent
9ae302fb11
commit
6591346243
2 changed files with 33 additions and 10 deletions
23
news/xontrib-homebrew.rst
Normal file
23
news/xontrib-homebrew.rst
Normal 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>
|
|
@ -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.",
|
||||
|
|
Loading…
Add table
Reference in a new issue