doitlive: build with virtualenv
Closes #48406. Signed-off-by: FX Coudert <fxcoudert@gmail.com>
This commit is contained in:
parent
c4c1df5da1
commit
64823d421e
1 changed files with 40 additions and 7 deletions
|
@ -1,9 +1,11 @@
|
|||
class Doitlive < Formula
|
||||
include Language::Python::Virtualenv
|
||||
|
||||
desc "Replay stored shell commands for live presentations"
|
||||
homepage "https://doitlive.readthedocs.io/en/latest/"
|
||||
url "https://files.pythonhosted.org/packages/e5/d9/4ce969d98f521c253ec3b15a0c759104a01061ac90fb9d8636b015bcb4ea/doitlive-4.3.0.tar.gz"
|
||||
sha256 "4cb1030e082d8649f10a61d599d3ff3bcad7f775e08f0e68ee06882e06d0190f"
|
||||
revision 6
|
||||
revision 7
|
||||
|
||||
bottle do
|
||||
cellar :any_skip_relocation
|
||||
|
@ -14,13 +16,44 @@ class Doitlive < Formula
|
|||
|
||||
depends_on "python"
|
||||
|
||||
def install
|
||||
xy = Language::Python.major_minor_version "python3"
|
||||
ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python#{xy}/site-packages"
|
||||
system "python3", "setup.py", "install", "--prefix=#{libexec}"
|
||||
resource "click" do
|
||||
url "https://files.pythonhosted.org/packages/f8/5c/f60e9d8a1e77005f664b76ff8aeaee5bc05d0a91798afd7f53fc998dbc47/Click-7.0.tar.gz"
|
||||
sha256 "5b94b49521f6456670fdb30cd82a4eca9412788a93fa6dd6df72c94d5a8ff2d7"
|
||||
end
|
||||
|
||||
bin.install Dir[libexec/"bin/*"]
|
||||
bin.env_script_all_files(libexec/"bin", :PYTHONPATH => ENV["PYTHONPATH"])
|
||||
resource "click-completion" do
|
||||
url "https://files.pythonhosted.org/packages/93/18/74e2542defdda23b021b12b835b7abbd0fc55896aa8d77af280ad65aa406/click-completion-0.5.2.tar.gz"
|
||||
sha256 "5bf816b81367e638a190b6e91b50779007d14301b3f9f3145d68e3cade7bce86"
|
||||
end
|
||||
|
||||
resource "click-didyoumean" do
|
||||
url "https://files.pythonhosted.org/packages/9f/79/d265d783dd022541b744d002745d9e55d84c04a41930e35d8795934f6526/click-didyoumean-0.0.3.tar.gz"
|
||||
sha256 "112229485c9704ff51362fe34b2d4f0b12fc71cc20f6d2b3afabed4b8bfa6aeb"
|
||||
end
|
||||
|
||||
resource "Jinja2" do
|
||||
url "https://files.pythonhosted.org/packages/7b/db/1d037ccd626d05a7a47a1b81ea73775614af83c2b3e53d86a0bb41d8d799/Jinja2-2.10.3.tar.gz"
|
||||
sha256 "9fe95f19286cfefaa917656583d020be14e7859c6b0252588391e47db34527de"
|
||||
end
|
||||
|
||||
resource "MarkupSafe" do
|
||||
url "https://files.pythonhosted.org/packages/b9/2e/64db92e53b86efccfaea71321f597fa2e1b2bd3853d8ce658568f7a13094/MarkupSafe-1.1.1.tar.gz"
|
||||
sha256 "29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b"
|
||||
end
|
||||
|
||||
resource "shellingham" do
|
||||
url "https://files.pythonhosted.org/packages/1b/82/52b4facd501d1cdfee1f2b3aa6092dc0ee6c07baf78692f9035adb1357da/shellingham-1.3.1.tar.gz"
|
||||
sha256 "985b23bbd1feae47ca6a6365eacd314d93d95a8a16f8f346945074c28fe6f3e0"
|
||||
end
|
||||
|
||||
resource "six" do
|
||||
url "https://files.pythonhosted.org/packages/94/3e/edcf6fef41d89187df7e38e868b2dd2182677922b600e880baad7749c865/six-1.13.0.tar.gz"
|
||||
sha256 "30f610279e8b2578cab6db20741130331735c781b56053c59c4076da27f06b66"
|
||||
end
|
||||
|
||||
def install
|
||||
virtualenv_create(libexec, "python3")
|
||||
virtualenv_install_with_resources
|
||||
|
||||
output = Utils.popen_read("SHELL=bash #{libexec}/bin/doitlive completion")
|
||||
(bash_completion/"doitlive").write output
|
||||
|
|
Loading…
Reference in a new issue