homebrew-core/Formula/zpython.rb
2019-10-15 20:34:11 +02:00

74 lines
2.5 KiB
Ruby

class Zpython < Formula
desc "Embeds a Python interpreter into zsh"
homepage "https://bitbucket.org/ZyX_I/zsh"
revision 1
head "https://bitbucket.org/ZyX_I/zsh.git", :branch => "zpython"
stable do
url "https://downloads.sourceforge.net/project/zsh/zsh/5.0.5/zsh-5.0.5.tar.bz2"
mirror "https://www.zsh.org/pub/old/zsh-5.0.5.tar.bz2"
# We prepend `00-` for the first version of the zpython module, which is
# itself a patch on top of zsh and does not have own version number yet.
# Hoping that upstream will provide tags that we could download properly.
# Starting here with `00-`, so that once we get tags for the upstream
# repository at https://bitbucket.org/ZyX_I/zsh.git, brew outdated will
# be able to tell us to upgrade zpython.
version "00-5.0.5"
sha256 "6624d2fb6c8fa4e044d2b009f86ed1617fe8583c83acfceba7ec82826cfa8eaf"
# Note, non-head version is completly implemented in this lengthy patch
# later on, we hope to use https://bitbucket.org/ZyX_I/zsh.git to download a tagged release.
patch do
url "https://gist.githubusercontent.com/felixbuenemann/5790777/raw/cb5ea3b34617174e50fd3972792ec0944959de3c/zpython.patch"
sha256 "73d6565536abe269cc7715e5200ba63000b7fb830c8975db7e5e6db2222e8f09"
end
end
bottle do
cellar :any
rebuild 1
sha256 "96e60fde74aced3f604a886899bc6ae81a428626d7b98f27c38b15eada389a0e" => :catalina
sha256 "0e46595052e37148376385290c0f0f9be7c6ee14bb958632fc264f830a9c8d74" => :mojave
sha256 "28224b9114bfc72a79f739a3ca62327a25c22f78d68b8bd6faa46960d21640a0" => :high_sierra
end
depends_on "autoconf" => :build
depends_on "zsh"
def install
args = %w[
--disable-gdbm
--enable-zpython
--with-tcsetpgrp
DL_EXT=bundle
]
system "autoreconf"
system "./configure", *args
# Disable building docs due to exotic yodl dependency
inreplace "Makefile", "subdir in Src Doc;", "subdir in Src;"
system "make"
(lib/"zpython/zsh").install "Src/Modules/zpython.bundle"
end
def caveats; <<~EOS
To use the zpython module in zsh you need to
add the following line to your .zshrc:
module_path=($module_path #{HOMEBREW_PREFIX}/lib/zpython)
If you want to use this with powerline, make sure you set
it early in .zshrc, before your prompt gets initialized.
After reloading your shell you can test with:
zmodload zsh/zpython && zpython 'print "hello world"'
EOS
end
test do
system "zsh -c 'MODULE_PATH=#{HOMEBREW_PREFIX}/lib/zpython zmodload zsh/zpython && zpython print'"
end
end