mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-28 05:45:36 +00:00
130 lines
3.3 KiB
Ruby
130 lines
3.3 KiB
Ruby
$use_tempfile_for_run = defined?(RUBY_PLATFORM) && /mingw/i.match(RUBY_PLATFORM)
|
|
require "tempfile" if $use_tempfile_for_run
|
|
|
|
if defined? Mutex
|
|
$message_mutex = Mutex.new
|
|
def puts(message)
|
|
$message_mutex.lock
|
|
$stdout.puts message
|
|
$stdout.flush
|
|
$message_mutex.unlock
|
|
end
|
|
end
|
|
|
|
def error(message)
|
|
puts message
|
|
exit 1
|
|
end
|
|
|
|
def last_exit_code
|
|
$?.respond_to?(:exitstatus) ? $?.exitstatus : $?.to_i
|
|
end
|
|
|
|
def run(cmdline, opts = {})
|
|
cmdline = cmdline.gsub(/\n/, ' ').gsub(/^\s+/, '').gsub(/\s+$/, '').gsub(/\s+/, ' ')
|
|
code = nil
|
|
shell = ENV["RUBYSHELL"].blank? ? "c:/msys/bin/sh" : ENV["RUBYSHELL"]
|
|
|
|
puts cmdline unless opts[:dont_echo].to_bool
|
|
if $use_tempfile_for_run
|
|
Tempfile.open("mkvtoolnix-rake-run") do |t|
|
|
t.puts cmdline
|
|
t.flush
|
|
system shell, t.path
|
|
code = last_exit_code
|
|
t.unlink
|
|
end
|
|
else
|
|
system cmdline
|
|
code = last_exit_code
|
|
end
|
|
|
|
exit code if (code != 0) && !opts[:allow_failure].to_bool
|
|
end
|
|
|
|
def runq(msg, cmdline, options = {})
|
|
verbose = ENV['V'].to_bool
|
|
puts msg if !verbose
|
|
run cmdline, options.clone.merge(:dont_echo => !verbose)
|
|
end
|
|
|
|
def handle_deps(target, exit_code)
|
|
dep_file = target.ext 'd'
|
|
get_out = lambda do
|
|
File.unlink(dep_file) if FileTest.exist?(dep_file)
|
|
exit exit_code if 0 != exit_code
|
|
return
|
|
end
|
|
|
|
FileTest.exist?(dep_file) || get_out.call
|
|
|
|
FileTest.exist?($dependency_dir) && !FileTest.directory?($dependency_dir) && File.unlink($dependency_dir)
|
|
FileTest.exist?($dependency_dir) || Dir.mkdir($dependency_dir)
|
|
|
|
File.open("#{$dependency_dir}/" + dep_file.gsub(/\//, '_').ext('rb'), "w") do |out|
|
|
line = IO.readlines(dep_file).collect { |line| line.chomp }.join(" ").gsub(/\\/, ' ').gsub(/\s+/, ' ')
|
|
if /(.+?):\s*([^\s].*)/.match(line)
|
|
target = $1
|
|
sources = $2.gsub(/^\s+/, '').gsub(/\s+$/, '').split(/\s+/)
|
|
|
|
out.puts "file \"#{target}\" => [ " + sources.collect { |entry| "\"#{entry}\"" }.join(", ") + " ]"
|
|
end
|
|
end
|
|
|
|
get_out.call
|
|
rescue Exception => e
|
|
get_out.call
|
|
end
|
|
|
|
def import_dependencies
|
|
Dir.glob("#{$dependency_dir}/*.rb").each { |file| import file } if FileTest.directory?($dependency_dir)
|
|
end
|
|
|
|
def arrayify(*args)
|
|
args.collect { |arg| arg.is_a?(Array) ? arg.to_a : arg }.flatten
|
|
end
|
|
|
|
def install_dir(*dirs)
|
|
arrayify(*dirs).each do |dir|
|
|
dir = c(dir) if dir.is_a? Symbol
|
|
run "#{c(:mkinstalldirs)} #{c(:DESTDIR)}#{dir}"
|
|
end
|
|
end
|
|
|
|
def install_program(destination, *files)
|
|
destination = c(destination) + '/' if destination.is_a? Symbol
|
|
arrayify(*files).each do |file|
|
|
run "#{c(:INSTALL_PROGRAM)} #{file} #{c(:DESTDIR)}#{destination}"
|
|
end
|
|
end
|
|
|
|
def install_data(destination, *files)
|
|
destination = c(destination) + '/' if destination.is_a? Symbol
|
|
arrayify(*files).each do |file|
|
|
run "#{c(:INSTALL_DATA)} #{file} #{c(:DESTDIR)}#{destination}"
|
|
end
|
|
end
|
|
|
|
def adjust_to_poedit_style(in_name, out_name)
|
|
File.open(out_name, "w") do |out|
|
|
lines = IO.readlines(in_name).collect { |line| line.chomp }
|
|
|
|
no_nl = false
|
|
|
|
lines.each do |line|
|
|
if /^#:/.match(line)
|
|
out.puts line.gsub(/(\d) /, '\1' + "\n#: ")
|
|
elsif /^#~/.match(line)
|
|
no_nl = true
|
|
out.puts line
|
|
elsif !(no_nl && /^\s*$/.match(line))
|
|
out.puts line
|
|
end
|
|
end
|
|
|
|
out.puts
|
|
end
|
|
|
|
File.unlink in_name
|
|
end
|