#!./miniruby # Used by the "make install" target to install Ruby. # See common.mk for more details. begin load "./rbconfig.rb" rescue LoadError CONFIG = Hash.new {""} else include RbConfig $".unshift File.expand_path("./rbconfig.rb") end srcdir = File.expand_path('../..', __FILE__) unless defined?(CROSS_COMPILING) and CROSS_COMPILING $:.replace([srcdir+"/lib", Dir.pwd]) end require 'fileutils' require 'shellwords' require 'optparse' require 'optparse/shellwords' require 'ostruct' require 'rubygems' begin require "zlib" rescue LoadError $" << "zlib.rb" end INDENT = " "*36 STDOUT.sync = true File.umask(022) def parse_args(argv = ARGV) $mantype = 'doc' $destdir = nil $extout = nil $make = 'make' $mflags = [] $install = [] $installed_list = nil $dryrun = false $rdocdir = nil $data_mode = 0644 $prog_mode = 0755 $dir_mode = nil $script_mode = nil $strip = false $cmdtype = (if File::ALT_SEPARATOR == '\\' File.exist?("rubystub.exe") ? 'exe' : 'cmd' end) mflags = [] opt = OptionParser.new opt.on('-n', '--dry-run') {$dryrun = true} opt.on('--dest-dir=DIR') {|dir| $destdir = dir} opt.on('--extout=DIR') {|dir| $extout = (dir unless dir.empty?)} opt.on('--make=COMMAND') {|make| $make = make} opt.on('--mantype=MAN') {|man| $mantype = man} opt.on('--make-flags=FLAGS', '--mflags', Shellwords) do |v| if arg = v.first arg.insert(0, '-') if /\A[^-][^=]*\Z/ =~ arg end $mflags.concat(v) end opt.on('-i', '--install=TYPE', $install_procs.keys) do |ins| $install << ins end opt.on('--data-mode=OCTAL-MODE', OptionParser::OctalInteger) do |mode| $data_mode = mode end opt.on('--prog-mode=OCTAL-MODE', OptionParser::OctalInteger) do |mode| $prog_mode = mode end opt.on('--dir-mode=OCTAL-MODE', OptionParser::OctalInteger) do |mode| $dir_mode = mode end opt.on('--script-mode=OCTAL-MODE', OptionParser::OctalInteger) do |mode| $script_mode = mode end opt.on('--installed-list [FILENAME]') {|name| $installed_list = name} opt.on('--rdoc-output [DIR]') {|dir| $rdocdir = dir} opt.on('--cmd-type=TYPE', %w[cmd plain]) {|cmd| $cmdtype = (cmd unless cmd == 'plain')} opt.on('--[no-]strip') {|strip| $strip = strip} opt.order!(argv) do |v| case v when /\AINSTALL[-_]([-\w]+)=(.*)/ argv.unshift("--#{$1.tr('_', '-')}=#{$2}") when /\A\w[-\w+]*=\z/ mflags << v when /\A\w[-\w+]*\z/ $install << v.intern else raise OptionParser::InvalidArgument, v end end rescue abort "#{$!.message}\n#{opt.help}" unless defined?(RbConfig) puts opt.help exit end $make, *rest = Shellwords.shellwords($make) $mflags.unshift(*rest) unless rest.empty? $mflags.unshift(*mflags) def $mflags.set?(flag) grep(/\A-(?!-).*#{flag.chr}/i) { return true } false end def $mflags.defined?(var) grep(/\A#{var}=(.*)/) {return block_given? ? yield($1) : $1} false end if $mflags.set?(?n) $dryrun = true else $mflags << '-n' if $dryrun end $destdir ||= $mflags.defined?("DESTDIR") if $extout ||= $mflags.defined?("EXTOUT") RbConfig.expand($extout) end $continue = $mflags.set?(?k) if $installed_list ||= $mflags.defined?('INSTALLED_LIST') RbConfig.expand($installed_list, RbConfig::CONFIG) $installed_list = open($installed_list, "ab") $installed_list.sync = true end $rdocdir ||= $mflags.defined?('RDOCOUT') $dir_mode ||= $prog_mode | 0700 $script_mode ||= $prog_mode end $install_procs = Hash.new {[]} def install?(*types, &block) $install_procs[:all] <<= block types.each do |type| $install_procs[type] <<= block end end def strip_file(files) if !defined?($strip_command) and (cmd = CONFIG["STRIP"]) case cmd when "", "true", ":" then return else $strip_command = Shellwords.shellwords(cmd) end elsif !$strip_command return end system(*($strip_command + [files].flatten)) end def install(src, dest, options = {}) options = options.clone strip = options.delete(:strip) options[:preserve] = true d = with_destdir(dest) super(src, d, options) srcs = Array(src) if strip d = srcs.map {|s| File.join(d, File.basename(s))} if $made_dirs[dest] strip_file(d) end if $installed_list dest = srcs.map {|s| File.join(dest, File.basename(s))} if $made_dirs[dest] $installed_list.puts dest end end def ln_sf(src, dest) super(src, with_destdir(dest)) $installed_list.puts dest if $installed_list end $made_dirs = {} def makedirs(dirs) dirs = fu_list(dirs) dirs.collect! do |dir| realdir = with_destdir(dir) realdir unless $made_dirs.fetch(dir) do $made_dirs[dir] = true $installed_list.puts(File.join(dir, "")) if $installed_list File.directory?(realdir) end end.compact! super(dirs, :mode => $dir_mode) unless dirs.empty? end FalseProc = proc {false} def path_matcher(pat) if pat and !pat.empty? proc {|f| pat.any? {|n| File.fnmatch?(n, f)}} else FalseProc end end def install_recursive(srcdir, dest, options = {}) opts = options.clone noinst = opts.delete(:no_install) glob = opts.delete(:glob) || "*" maxdepth = opts.delete(:maxdepth) subpath = (srcdir.size+1)..-1 prune = [] skip = [] if noinst if Array === noinst prune = noinst.grep(/#{File::SEPARATOR}/o).map!{|f| f.chomp(File::SEPARATOR)} skip = noinst.grep(/\A[^#{File::SEPARATOR}]*\z/o) else if noinst.index(File::SEPARATOR) prune = [noinst] else skip = [noinst] end end end skip |= %w"#*# *~ *.old *.bak *.orig *.rej *.diff *.patch *.core" prune = path_matcher(prune) skip = path_matcher(skip) File.directory?(srcdir) or return rescue return paths = [[srcdir, dest, 0]] found = [] while file = paths.shift found << file file, d, dir = *file if dir depth = dir + 1 next if maxdepth and maxdepth < depth files = [] Dir.foreach(file) do |f| src = File.join(file, f) d = File.join(dest, dir = src[subpath]) stat = File.lstat(src) rescue next if stat.directory? files << [src, d, depth] if maxdepth != depth and /\A\./ !~ f and !prune[dir] elsif stat.symlink? # skip else files << [src, d, false] if File.fnmatch?(glob, f) and !skip[f] end end paths.insert(0, *files) end end for src, d, dir in found if dir makedirs(d) else makedirs(d[/.*(?=\/)/m]) if block_given? yield src, d, opts else install src, d, opts end end end end def open_for_install(path, mode) data = open(realpath = with_destdir(path), "rb") {|f| f.read} rescue nil newdata = yield unless $dryrun unless newdata == data open(realpath, "wb", mode) {|f| f.write newdata} end File.chmod(mode, realpath) end $installed_list.puts path if $installed_list end def with_destdir(dir) return dir if !$destdir or $destdir.empty? dir = dir.sub(/\A\w:/, '') if File::PATH_SEPARATOR == ';' $destdir + dir end def without_destdir(dir) return dir if !$destdir or $destdir.empty? dir.start_with?($destdir) ? dir[$destdir.size..-1] : dir end def prepare(mesg, basedir, subdirs=nil) return unless basedir case when !subdirs dirs = basedir when subdirs.size == 0 subdirs = nil when subdirs.size == 1 dirs = [basedir = File.join(basedir, subdirs)] subdirs = nil else dirs = [basedir, *subdirs.collect {|dir| File.join(basedir, dir)}] end printf("%-*s%s%s\n", INDENT.size, "installing #{mesg}:", basedir, (subdirs ? " (#{subdirs.join(', ')})" : "")) makedirs(dirs) end def CONFIG.[](name, mandatory = false) value = super(name) if mandatory raise "CONFIG['#{name}'] must be set" if !value or value.empty? end value end exeext = CONFIG["EXEEXT"] ruby_install_name = CONFIG["ruby_install_name", true] rubyw_install_name = CONFIG["rubyw_install_name"] goruby_install_name = "go" + ruby_install_name bindir = CONFIG["bindir", true] libdir = CONFIG[CONFIG.fetch("libdirname", "libdir"), true] rubyhdrdir = CONFIG["rubyhdrdir", true] archhdrdir = CONFIG["rubyarchhdrdir"] || (rubyhdrdir + "/" + CONFIG['arch']) rubylibdir = CONFIG["rubylibdir", true] archlibdir = CONFIG["rubyarchdir", true] sitelibdir = CONFIG["sitelibdir"] sitearchlibdir = CONFIG["sitearchdir"] vendorlibdir = CONFIG["vendorlibdir"] vendorarchlibdir = CONFIG["vendorarchdir"] mandir = CONFIG["mandir", true] docdir = CONFIG["docdir", true] enable_shared = CONFIG["ENABLE_SHARED"] == 'yes' dll = CONFIG["LIBRUBY_SO", enable_shared] lib = CONFIG["LIBRUBY", true] arc = CONFIG["LIBRUBY_A", true] load_relative = CONFIG["LIBRUBY_RELATIVE"] == 'yes' install?(:local, :arch, :bin, :'bin-arch') do prepare "binary commands", bindir install ruby_install_name+exeext, bindir, :mode => $prog_mode, :strip => $strip if rubyw_install_name and !rubyw_install_name.empty? install rubyw_install_name+exeext, bindir, :mode => $prog_mode, :strip => $strip end if File.exist? goruby_install_name+exeext install goruby_install_name+exeext, bindir, :mode => $prog_mode, :strip => $strip end if enable_shared and dll != lib install dll, bindir, :mode => $prog_mode, :strip => $strip end end install?(:local, :arch, :lib, :'lib-arch') do prepare "base libraries", libdir install lib, libdir, :mode => $prog_mode, :strip => $strip unless lib == arc install arc, libdir, :mode => $data_mode unless CONFIG["INSTALL_STATIC_LIBRARY"] == "no" if dll == lib and dll != arc for link in CONFIG["LIBRUBY_ALIASES"].split - [File.basename(dll)] ln_sf(dll, File.join(libdir, link)) end end prepare "arch files", archlibdir install "rbconfig.rb", archlibdir, :mode => $data_mode if CONFIG["ARCHFILE"] for file in CONFIG["ARCHFILE"].split install file, archlibdir, :mode => $data_mode end end end install?(:local, :arch, :data) do pc = CONFIG["ruby_pc"] if pc and File.file?(pc) and File.size?(pc) prepare "pkgconfig data", pkgconfigdir = File.join(libdir, "pkgconfig") install pc, pkgconfigdir, :mode => $data_mode end end install?(:ext, :arch, :'ext-arch') do prepare "extension objects", archlibdir noinst = %w[-* -*/] | (CONFIG["no_install_files"] || "").split install_recursive("#{$extout}/#{CONFIG['arch']}", archlibdir, :no_install => noinst, :mode => $prog_mode, :strip => $strip) prepare "extension objects", sitearchlibdir prepare "extension objects", vendorarchlibdir if extso = File.read("exts.mk")[/^EXTSO[ \t]*=[ \t]*((?:.*\\\n)*.*)/, 1] and !(extso = extso.gsub(/\\\n/, '').split).empty? libpathenv = CONFIG["LIBPATHENV"] dest = CONFIG[!libpathenv || libpathenv == "PATH" ? "bindir" : "libdir"] prepare "external libraries", dest for file in extso install file, dest, :mode => $prog_mode end end end install?(:ext, :arch, :hdr, :'arch-hdr', :'hdr-arch') do prepare "extension headers", archhdrdir install_recursive("#{$extout}/include/#{CONFIG['arch']}", archhdrdir, :glob => "*.h", :mode => $data_mode) end install?(:ext, :comm, :'ext-comm') do prepare "extension scripts", rubylibdir install_recursive("#{$extout}/common", rubylibdir, :mode => $data_mode) prepare "extension scripts", sitelibdir prepare "extension scripts", vendorlibdir end install?(:ext, :comm, :hdr, :'comm-hdr', :'hdr-comm') do hdrdir = rubyhdrdir + "/ruby" prepare "extension headers", hdrdir install_recursive("#{$extout}/include/ruby", hdrdir, :glob => "*.h", :mode => $data_mode) end install?(:doc, :rdoc) do if $rdocdir ridatadir = File.join(CONFIG['ridir'], CONFIG['ruby_version'], "system") prepare "rdoc", ridatadir install_recursive($rdocdir, ridatadir, :mode => $data_mode) end end install?(:doc, :capi) do prepare "capi-docs", docdir install_recursive "doc/capi", docdir+"/capi", :mode => $data_mode end prolog_script = < %q<-*- ruby -*- @"%~dp0#{ruby_install_name}" -x "%~f0" %* @exit /b %ERRORLEVEL% };{#\n#{prolog_script.gsub(/(?=\n)/, ' #')}>,\n} EOS PROLOG_SCRIPT.default = (load_relative || /\s/ =~ bindir) ? < e abort "No #{stubfile}: #{e}" else stub end def stub super or self.stub = self.class.get_rubystub end break new(ruby_shebang, ruby_bin, ruby_install_name, nil, trans) end install?(:local, :comm, :bin, :'bin-comm') do prepare "command scripts", bindir install_recursive(File.join(srcdir, "bin"), bindir, :maxdepth => 1) do |src, cmd| $script_installer.install(src, cmd) end end install?(:local, :comm, :lib) do prepare "library scripts", rubylibdir noinst = %w[*.txt *.rdoc *.gemspec] install_recursive(File.join(srcdir, "lib"), rubylibdir, :no_install => noinst, :mode => $data_mode) end install?(:local, :comm, :hdr, :'comm-hdr') do prepare "common headers", rubyhdrdir noinst = [] unless RUBY_PLATFORM =~ /mswin|mingw|bccwin/ noinst << "win32.h" end noinst = nil if noinst.empty? install_recursive(File.join(srcdir, "include"), rubyhdrdir, :no_install => noinst, :glob => "*.h", :mode => $data_mode) end install?(:local, :comm, :man) do mdocs = Dir["#{srcdir}/man/*.[1-9]"] prepare "manpages", mandir, ([] | mdocs.collect {|mdoc| mdoc[/\d+$/]}).sort.collect {|sec| "man#{sec}"} case $mantype when /\.(?:(gz)|bz2)\z/ compress = $1 ? "gzip" : "bzip2" suffix = $& end mandir = File.join(mandir, "man") has_goruby = File.exist?(goruby_install_name+exeext) require File.join(srcdir, "tool/mdoc2man.rb") if /\Adoc\b/ !~ $mantype mdocs.each do |mdoc| next unless File.file?(mdoc) and open(mdoc){|fh| fh.read(1) == '.'} base = File.basename(mdoc) if base == "goruby.1" next unless has_goruby end destdir = mandir + (section = mdoc[/\d+$/]) destname = ruby_install_name.sub(/ruby/, base.chomp(".#{section}")) destfile = File.join(destdir, "#{destname}.#{section}") if /\Adoc\b/ =~ $mantype if compress w = open(mdoc) {|f| stdin = STDIN.dup STDIN.reopen(f) begin destfile << suffix IO.popen(compress, &:read) ensure STDIN.reopen(stdin) stdin.close end } open_for_install(destfile, $data_mode) {w} else install mdoc, destfile, :mode => $data_mode end else class << (w = []) alias print push end open(mdoc) {|r| Mdoc2Man.mdoc2man(r, w)} w = w.join("") if compress require 'tmpdir' Dir.mktmpdir("man") {|d| dest = File.join(d, File.basename(destfile)) File.open(dest, "wb") {|f| f.write w} if system(compress, dest) w = File.open(dest+suffix, "rb") {|f| f.read} destfile << suffix end } end open_for_install(destfile, $data_mode) {w} end end end module RbInstall class UnpackedInstaller < Gem::Installer module DirPackage def extract_files(destination_dir, pattern = "*") path = File.dirname(@gem.path) return if path == destination_dir File.chmod(0700, destination_dir) mode = pattern == "bin/*" ? $script_mode : $data_mode spec.files.each do |f| src = File.join(path, f) dest = File.join(without_destdir(destination_dir), f) makedirs(dest[/.*(?=\/)/m]) install src, dest, :mode => mode end File.chmod($dir_mode, destination_dir) end end def initialize(spec, *options) super(spec.loaded_from, *options) @package.extend(DirPackage).spec = spec end def write_cache_file end def build_extensions end def shebang(bin_file_name) path = File.join(gem_dir, spec.bindir, bin_file_name) first_line = File.open(path, "rb") {|file| file.gets} $script_installer.prolog(first_line).chomp end def app_script_text(bin_file_name) # move shell script part after comments generated by RubyGems. super.sub(/\A (\#!\/bin\/sh\n\#.*-\*-\s*ruby\s*-\*-.*\n) ((?:.*\n)*?\#!.*ruby.*\n) \#\n ((?:\#.*\n)+)/x, '\1\3\2') end def check_executable_overwrite(filename) return if @wrappers and same_bin_script?(filename, @bin_dir) super end def generate_bin_script(filename, bindir) return if same_bin_script?(filename, bindir) super end def same_bin_script?(filename, bindir) path = File.join(bindir, formatted_program_filename(filename)) begin return true if File.binread(path) == app_script_text(filename) rescue end false end end end class Gem::Installer install = instance_method(:install) define_method(:install) do spec.post_install_message = nil begin u = File.umask(0022) install.bind(self).call ensure File.umask(u) end end generate_bin_script = instance_method(:generate_bin_script) define_method(:generate_bin_script) do |filename, bindir| generate_bin_script.bind(self).call(filename, bindir) File.chmod($script_mode, File.join(bindir, formatted_program_filename(filename))) end end # :startdoc: install?(:ext, :comm, :gem, :'default-gems', :'default-gems-comm') do install_default_gem('lib', srcdir) end install?(:ext, :arch, :gem, :'default-gems', :'default-gems-arch') do install_default_gem('ext', srcdir) do |path| # assume that gemspec and extconf.rb are placed in the same directory success = false begin IO.foreach(File.dirname(path[(srcdir.size+1)..-1]) + "/Makefile") do |l| break success = true if /^TARGET\s*=/ =~ l end rescue Errno::ENOENT end success end end def load_gemspec(file) code = File.read(file, encoding: "utf-8:-") code.gsub!(/`git.*?`/m, '""') begin spec = eval(code, binding, file) rescue SignalException, SystemExit raise rescue SyntaxError, Exception end raise("invalid spec in #{file}") unless spec spec.loaded_from = file spec end def install_default_gem(dir, srcdir) gem_dir = Gem.default_dir directories = Gem.ensure_gem_subdirectories(gem_dir, :mode => $dir_mode) prepare "default gems from #{dir}", gem_dir, directories spec_dir = File.join(gem_dir, directories.grep(/^spec/)[0]) default_spec_dir = "#{spec_dir}/default" makedirs(default_spec_dir) gems = Dir.glob("#{srcdir}/#{dir}/**/*.gemspec").map {|src| next if block_given? and !yield(src) load_gemspec(src) } gems.compact.sort_by(&:name).each do |gemspec| full_name = "#{gemspec.name}-#{gemspec.version}" puts "#{INDENT}#{gemspec.name} #{gemspec.version}" gemspec_path = File.join(default_spec_dir, "#{full_name}.gemspec") open_for_install(gemspec_path, $data_mode) do gemspec.to_ruby end unless gemspec.executables.empty? then bin_dir = File.join(gem_dir, 'gems', full_name, gemspec.bindir) makedirs(bin_dir) gemspec.executables.map {|exec| $script_installer.install(File.join(srcdir, 'bin', exec), File.join(bin_dir, exec)) } end end end install?(:ext, :comm, :gem, :'bundled-gems') do gem_dir = Gem.default_dir directories = Gem.ensure_gem_subdirectories(gem_dir, :mode => $dir_mode) prepare "bundled gems", gem_dir, directories install_dir = with_destdir(gem_dir) installed_gems = {} options = { :install_dir => install_dir, :bin_dir => with_destdir(bindir), :domain => :local, :ignore_dependencies => true, :dir_mode => $dir_mode, :data_mode => $data_mode, :prog_mode => $prog_mode, :wrappers => true, :format_executable => true, } gem_ext_dir = "#$extout/gems/#{CONFIG['arch']}" extensions_dir = Gem::StubSpecification.gemspec_stub("", gem_dir, gem_dir).extensions_dir dirs = Gem::Util.glob_files_in_dir "*/", "#{srcdir}/gems" Gem::Specification.each_gemspec(dirs) do |path| spec = load_gemspec(path) next unless spec.platform == Gem::Platform::RUBY next unless spec.full_name == path[srcdir.size..-1][/\A\/gems\/([^\/]+)/, 1] spec.extension_dir = "#{extensions_dir}/#{spec.full_name}" if File.directory?(ext = "#{gem_ext_dir}/#{spec.full_name}") spec.extensions[0] ||= "-" end ins = RbInstall::UnpackedInstaller.new(spec, options) puts "#{INDENT}#{spec.name} #{spec.version}" ins.install File.chmod($data_mode, File.join(install_dir, "specifications", "#{spec.full_name}.gemspec")) unless spec.extensions.empty? install_recursive(ext, spec.extension_dir) end installed_gems[spec.full_name] = true end installed_gems, gems = Dir.glob(srcdir+'/gems/*.gem').partition {|gem| installed_gems.key?(File.basename(gem, '.gem'))} unless installed_gems.empty? install installed_gems, gem_dir+"/cache" end next if gems.empty? if defined?(Zlib) Gem.instance_variable_set(:@ruby, with_destdir(File.join(bindir, ruby_install_name))) silent = Gem::SilentUI.new gems.each do |gem| inst = Gem::Installer.new(gem, options) inst.spec.extension_dir = with_destdir(inst.spec.extension_dir) begin Gem::DefaultUserInteraction.use_ui(silent) {inst.install} rescue Gem::InstallError next end gemname = File.basename(gem) puts "#{INDENT}#{gemname}" end # fix directory permissions # TODO: Gem.install should accept :dir_mode option or something File.chmod($dir_mode, *Dir.glob(install_dir+"/**/")) # fix .gemspec permissions File.chmod($data_mode, *Dir.glob(install_dir+"/specifications/*.gemspec")) else puts "skip installing bundled gems because of lacking zlib" end end parse_args() include FileUtils include FileUtils::NoWrite if $dryrun @fileutils_output = STDOUT @fileutils_label = '' all = $install.delete(:all) $install << :local << :ext if $install.empty? installs = $install.map do |inst| if !(procs = $install_procs[inst]) || procs.empty? next warn("unknown install target - #{inst}") end procs end installs.flatten! installs.uniq! installs |= $install_procs[:all] if all installs.each do |block| dir = Dir.pwd begin block.call ensure Dir.chdir(dir) end end # vi:set sw=2: