-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhb-python-bootstrap.rb
executable file
·62 lines (48 loc) · 1.76 KB
/
hb-python-bootstrap.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
class HbPythonBootstrap < Formula
desc "hb-python-bootstrap, the zip version"
homepage "https://github.com/"
url "http://san.customer.hb/repos.hb/macos/homebrew/packages/hb-python-bootstrap.tar.gz"
sha256 "21c83bd1163ba591bc21736ab8bfd660faeb591968694752d67bbf64c7ac7abd"
version "0.0.2"
revision 0
depends_on "curl"
depends_on "python37"
bottle :unneeded
def sitepackages34
prefix/"lib/python3.4/site-packages"
end
def sitepackages34live
HOMEBREW_PREFIX/"lib/python3.4/site-packages"
end
def sitepackages36
prefix/"lib/python3.6/site-packages"
end
def sitepackages36live
HOMEBREW_PREFIX/"lib/python3.6/site-packages"
end
def sitepackages37
prefix/"lib/python3.7/site-packages"
end
def sitepackages37live
HOMEBREW_PREFIX/"lib/python3.7/site-packages"
end
def install
lib.install "hb-python-bootstrap.zip"
libexec.install "sitecustomize.py"
# puts sitepackages36
if sitepackages34live.exist?
sitepackages34.install_symlink libexec/"sitecustomize.py"
end
if sitepackages36live.exist?
sitepackages36.install_symlink libexec/"sitecustomize.py" => "sitecustomize.py"
end
if sitepackages37live.exist?
# this line fails with...
# Errno::EPERM: Operation not permitted @ rb_file_s_rename - (/usr/local/lib/python3.7/site-packages/sitecustomize.py, /usr/local/lib/python3.7/site-packages/sitecustomize.brew.py)
# mv sitepackages37live/"sitecustomize.py", sitepackages37live/"sitecustomize.brew.py" if File.exist?(sitepackages37live/"sitecustomize.py")
# system "mv", "#{sitepackages37live}/sitecustomize.py", "#{sitepackages37live}/sitecustomize.brew.py" if File.exist?(sitepackages37live/"sitecustomize.py")
# system "whoami"
sitepackages37.install_symlink libexec/"sitecustomize.py" => "sitecustomize.py"
end
end
end