-
Notifications
You must be signed in to change notification settings - Fork 36
/
packer.rb
executable file
·228 lines (207 loc) · 6.76 KB
/
packer.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
#!/usr/bin/ruby -Ke
# -*- coding: utf-8 -*-
require 'fileutils'
require 'optparse'
ruby = nil
begin
require "rbconfig"
ruby = File.join(
RbConfig::CONFIG["bindir"],
RbConfig::CONFIG["ruby_install_name"] + RbConfig::CONFIG["EXEEXT"]
)
rescue LoadError
ruby = "ruby"
end
bitclust_src_path = File.dirname(File.expand_path(__FILE__))
parent_path = File.dirname(bitclust_src_path)
output_path = File.join(parent_path, "ruby-refm-2.0.0-dynamic")
bitclust_dest_dir = "bitclust"
rubydoc_refm_api_src_path = File.join(parent_path, "rubydoc/refm/api/src")
rubydoc_refm_capi_src_path = File.join(parent_path, "rubydoc/refm/capi/src/*")
database_encoding = "utf-8"
database_versions = [
"1.8.7",
"1.9.3",
"2.0.0",
]
database_version_to_dir = proc {|version| "db-" + version.tr(".", "_") }
fu = FileUtils::Verbose
parser = OptionParser.new
parser.on('--ruby=RUBY', 'path to ruby.') {|path|
ruby = path
}
parser.on('--bitclust-srcdir=BITCLUSTDIR', 'path to bitclust.') {|path|
bitclust_src_path = File.expand_path(path)
}
parser.on('--bitclust-dstdir=BITCLUSTDIR', 'dirname of bitclust in output.') {|dir|
bitclust_dest_dir = dir
}
parser.on('--rubydoc-refm-api-srcdir=SRCDIR', 'path to rubydoc/refm/api/src.') {|path|
rubydoc_refm_api_src_path = File.expand_path(path)
}
parser.on('--output-dir=OUTPUTDIR', 'path to output.') {|path|
output_path = File.expand_path(path)
}
parser.on('--database-encoding=ENCODING', 'encoding of database.') {|encoding|
database_encoding = encoding
}
parser.on('--database-versions=VERSION,VERSION', 'versions of database.', Array) {|versions|
database_versions = versions
}
begin
parser.parse!
rescue OptionParser::ParseError => err
$stderr.puts err.message
$stderr.puts parser.help
exit 1
end
bitclust_command = File.join(bitclust_src_path, "bin/bitclust")
bitclust_libdir = File.join(bitclust_src_path, "lib")
def system_verbose(*args)
puts args.inspect
system(*args) or raise "failed: #{args.inspect}"
end
unless File.exist?(File.join(output_path, bitclust_dest_dir))
fu.mkpath(File.join(output_path, bitclust_dest_dir))
Dir.glob("#{bitclust_src_path}/**/*").each do |src|
dest = File.join(output_path, bitclust_dest_dir, src[bitclust_src_path.size..-1])
if File.directory?(src)
fu.mkpath(dest)
else
fu.cp(src, dest)
end
end
end
database_versions.each do |version|
database_path = File.join(output_path, database_version_to_dir.call(version))
unless File.exist?(database_path)
system_verbose(ruby, "-Ku", "-I#{bitclust_libdir}", bitclust_command, "--database=#{database_path}", "init", "encoding=#{database_encoding}", "version=#{version}")
system_verbose(ruby, "-Ku", "-I#{bitclust_libdir}", bitclust_command, "--database=#{database_path}", "update", "--stdlibtree=#{rubydoc_refm_api_src_path}")
system_verbose(ruby, "-Ku", "-I#{bitclust_libdir}", bitclust_command, "--database=#{database_path}", "--capi", "update", *Dir.glob(rubydoc_refm_capi_src_path).to_a)
end
end
server_rb = File.join(output_path, "server.rb")
unless File.exist?(server_rb)
puts "write #{server_rb}"
File.open(server_rb, "wb", 0755) do |f|
f.puts <<-RUBY
#!/usr/bin/ruby -Ku
require 'pathname'
lib_dir = "#{bitclust_dest_dir}/lib"
$LOAD_PATH.unshift(lib_dir)
require "bitclust"
require "bitclust/runner"
argv = [
"server",
"--bind-address=127.0.0.1",
"--baseurl=",
"--debug",
"--auto",
"--capi"
]
BitClust::Runner.new.run(argv)
RUBY
end
end
readme_html = File.join(output_path, "readme.html")
unless File.exist?(readme_html)
puts "write #{readme_html}"
File.open(readme_html, "wb") do |f|
f.puts <<-HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="ja-JP">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Language" content="ja-JP">
<link rel="stylesheet" type="text/css" href="./bitclust/theme/default/style.css">
<title>Ruby リファレンスマニュアル刷新計画</title>
</head>
<body>
<h1>Ruby リファレンスマニュアル刷新計画</h1>
<h2>これは何?</h2>
<p>
Ruby リファレンスマニュアルの簡易 Web サーバシステムです。
</p>
<!--links-->
<p>
使い方に関しては以下の URL を参照してください。
</p>
<ul>
<li><a href="http://bugs.ruby-lang.org/projects/rurema/wiki/ReleasePackageHowTo">http://bugs.ruby-lang.org/projects/rurema/wiki/ReleasePackageHowTo</a></li>
</ul>
<p>
プロジェクト全体に関しては以下の URL を参照してください。
</p>
<ul>
<li><a href="http://bugs.ruby-lang.org/projects/rurema/wiki">http://bugs.ruby-lang.org/projects/rurema/wiki</a></li>
</ul>
</body>
</html>
HTML
end
end
database_versions.each do |version|
database_dir = database_version_to_dir.call(version)
refe = File.join(output_path, database_dir.sub(/db/, "refe"))
refe_cmd = refe + ".cmd"
unless File.exist?(refe_cmd)
puts "write #{refe_cmd}"
File.open(refe_cmd, "wb") do |f|
f.puts(<<-CMD.gsub(/\r?\n/, "\r\n"))
@echo off
pushd "%~dp0"
ruby -Ke -I bitclust/lib bitclust/bin/refe -d #{database_dir} -e sjis %*
popd
CMD
end
end
unless File.exist?(refe)
puts "write #{refe}"
File.open(refe, "wb", 0755) do |f|
f.puts <<-SH
#!/bin/sh
cd "`dirname "$0"`"
exec ruby -Ke -I bitclust/lib bitclust/bin/refe -d #{database_dir} "$@"
SH
end
end
end
Dir.chdir(File.dirname(output_path))
archive_name = File.basename(output_path)
begin
require "Win32API"
# make server.exe using exerb
Dir.chdir(File.basename(output_path)) do
system_verbose("ruby", "-rexerb/mkexy", "server.rb")
File.open("server.exy", "r+") do |f|
yaml = f.read
f.rewind
f.truncate(0)
yaml.each do |line|
f.puts line unless /bitclust/ =~ line
end
end
system_verbose("ruby", "-S", "exerb", "server.exy")
end
# call DLL to make archives
buf = ' '*32*1024
[
["7-zip32", "SevenZip", "-tzip -mx9 a #{archive_name}.zip #{archive_name}"],
["tar32", "Tar", "-z9 -cvf #{archive_name}.tar.gz #{archive_name}"],
["tar32", "Tar", "--xz -cvf #{archive_name}.tar.xz #{archive_name}"],
].each do |dllname, funcname, args|
func = Win32API.new(dllname, funcname, ['N','P','P','N'], 'N')
puts "#{dllname}: #{funcname} #{args}"
p func.call(0, args, buf, buf.size)
puts buf.split(/\x0/,2)[0].rstrip
end
rescue LoadError
begin
system_verbose("7za", "-tzip", "a", archive_name+".zip", archive_name)
rescue
system_verbose("zip", "-r", archive_name+".zip", archive_name)
end
ENV['GZIP'] = '--best'
system_verbose("tar", "--owner=root", "--group=root", "-zcf", archive_name+".tar.gz", archive_name)
system_verbose("tar", "--owner=root", "--group=root", "--xz", "-cf", archive_name+".tar.xz", archive_name)
end