-
Notifications
You must be signed in to change notification settings - Fork 25
/
shopify-ruby.rb
185 lines (158 loc) · 5.34 KB
/
shopify-ruby.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
class ShopifyRuby < Formula
desc "Powerful, clean, object-oriented scripting language"
homepage "https://www.ruby-lang.org/"
conflicts_with "ruby", :because => "both install ruby. `brew uninstall --force ruby` first."
url "https://github.com/shopify/ruby.git",
:tag => "v2_2_3_shopify2-1",
:revision => "baa4f6f4a13080795c2263b42e29769be63d8c91"
version "2.2.3-shopify"
revision 2
def abi_version
"2.2.3"
end
bottle do
root_url "https://s3.amazonaws.com/burkelibbey"
rebuild 2
sha256 sierra: "78dbba5c1744c944cef438678c1d1371536fc10654735b630d8621863501806c"
end
bottle do
rebuild 3
root_url "https://github.com/Shopify/homebrew-shopify/releases/download/bag-of-holding"
sha256 catalina: "e2de4422c5d2e8afe822184fac0b84e17d1e5f7e22a6f9fd53e14ec64070c320"
end
keg_only "because chruby"
option :universal
option "with-doc", "Install documentation"
depends_on "pkg-config" => :build
depends_on "autoconf" => :build
depends_on "readline" => :recommended
depends_on "gdbm" => :optional
depends_on "gmp" => :optional
depends_on "libffi" => :optional
depends_on "libyaml"
depends_on "openssl"
def install
system "autoconf"
args = %W[
--prefix=#{prefix}
--enable-shared
--disable-silent-rules
--with-sitedir=#{HOMEBREW_PREFIX}/lib/ruby/site_ruby
--with-vendordir=#{HOMEBREW_PREFIX}/lib/ruby/vendor_ruby
]
if build.universal?
ENV.universal_binary
args << "--with-arch=#{Hardware::CPU.universal_archs.join(",")}"
end
args << "--disable-install-doc" if build.without? "doc"
args << "--disable-dtrace" unless MacOS::CLT.installed?
args << "--without-gmp" if build.without? "gmp"
# Reported upstream: https://bugs.ruby-lang.org/issues/10272
args << "--with-setjmp-type=setjmp" if MacOS.version == :lion
paths = [
Formula["libyaml"].opt_prefix,
Formula["openssl"].opt_prefix,
]
%w[readline gdbm gmp libffi].each do |dep|
paths << Formula[dep].opt_prefix if build.with? dep
end
args << "--with-opt-dir=#{paths.join(":")}"
system "./configure", *args
# Ruby has been configured to look in the HOMEBREW_PREFIX for the
# sitedir and vendordir directories; however we don't actually want to create
# them during the install.
#
# These directories are empty on install; sitedir is used for non-rubygems
# third party libraries, and vendordir is used for packager-provided libraries.
inreplace "tool/rbinstall.rb" do |s|
s.gsub! 'prepare "extension scripts", sitelibdir', ""
s.gsub! 'prepare "extension scripts", vendorlibdir', ""
s.gsub! 'prepare "extension objects", sitearchlibdir', ""
s.gsub! 'prepare "extension objects", vendorarchlibdir', ""
end
system "make"
system "make", "install"
# A newer version of ruby-mode.el is shipped with Emacs
elisp.install Dir["misc/*.el"].reject { |f| f == "misc/ruby-mode.el" }
end
def program_suffix
""
end
def post_install
# Customize rubygems to look/install in the global gem directory
# instead of in the Cellar, making gems last across reinstalls
config_file = lib/"ruby/#{abi_version}/rubygems/defaults/operating_system.rb"
config_file.unlink if config_file.exist?
config_file.write rubygems_config
# Create the sitedir and vendordir that were skipped during install
ruby="#{bin}/ruby#{program_suffix}"
%w[sitearchdir vendorarchdir].each do |dir|
mkdir_p `#{ruby} -rrbconfig -e 'print RbConfig::CONFIG["#{dir}"]'`
end
end
def rubygems_bindir
"#{HOMEBREW_PREFIX}/bin"
end
def rubygems_config; <<~EOS
module Gem
class << self
alias :old_default_dir :default_dir
alias :old_default_path :default_path
alias :old_default_bindir :default_bindir
alias :old_ruby :ruby
end
def self.default_dir
path = [
"#{HOMEBREW_PREFIX}",
"lib",
"ruby",
"gems",
"#{abi_version}"
]
@default_dir ||= File.join(*path)
end
def self.private_dir
path = if defined? RUBY_FRAMEWORK_VERSION then
[
File.dirname(RbConfig::CONFIG['sitedir']),
'Gems',
RbConfig::CONFIG['ruby_version']
]
elsif RbConfig::CONFIG['rubylibprefix'] then
[
RbConfig::CONFIG['rubylibprefix'],
'gems',
RbConfig::CONFIG['ruby_version']
]
else
[
RbConfig::CONFIG['libdir'],
ruby_engine,
'gems',
RbConfig::CONFIG['ruby_version']
]
end
@private_dir ||= File.join(*path)
end
def self.default_path
if Gem.user_home && File.exist?(Gem.user_home)
[user_dir, default_dir, private_dir]
else
[default_dir, private_dir]
end
end
def self.default_bindir
"#{rubygems_bindir}"
end
def self.ruby
"#{opt_bin}/ruby#{program_suffix}"
end
end
EOS
end
test do
hello_text = shell_output("#{bin}/ruby#{program_suffix} -e 'puts :hello'")
assert_equal "hello\n", hello_text
system "#{bin}/gem#{program_suffix}", "list", "--local"
end
end