Class: MiniPortile

Inherits:
Object
  • Object
show all
Defined in:
lib/mini_portile2/version.rb,
lib/mini_portile2/mini_portile.rb

Direct Known Subclasses

MiniPortileCMake

Constant Summary collapse

VERSION =
"2.8.0"
DEFAULT_TIMEOUT =
10

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, version, **kwargs) ⇒ MiniPortile

Returns a new instance of MiniPortile.



51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/mini_portile2/mini_portile.rb', line 51

def initialize(name, version, **kwargs)
  @name = name
  @version = version
  @target = 'ports'
  @files = []
  @patch_files = []
  @log_files = {}
  @logger = STDOUT
  @source_directory = nil

  @original_host = @host = detect_host

  @gcc_command = kwargs[:gcc_command]
  @make_command = kwargs[:make_command]
  @open_timeout = kwargs[:open_timeout] || DEFAULT_TIMEOUT
  @read_timeout = kwargs[:read_timeout] || DEFAULT_TIMEOUT
end

Instance Attribute Details

#configure_optionsObject



124
125
126
# File 'lib/mini_portile2/mini_portile.rb', line 124

def configure_options
  @configure_options ||= configure_defaults
end

#filesObject

Returns the value of attribute files.



35
36
37
# File 'lib/mini_portile2/mini_portile.rb', line 35

def files
  @files
end

#hostObject

Returns the value of attribute host.



35
36
37
# File 'lib/mini_portile2/mini_portile.rb', line 35

def host
  @host
end

#loggerObject

Returns the value of attribute logger.



35
36
37
# File 'lib/mini_portile2/mini_portile.rb', line 35

def logger
  @logger
end

#nameObject (readonly)

Returns the value of attribute name.



33
34
35
# File 'lib/mini_portile2/mini_portile.rb', line 33

def name
  @name
end

#original_hostObject (readonly)

Returns the value of attribute original_host.



33
34
35
# File 'lib/mini_portile2/mini_portile.rb', line 33

def original_host
  @original_host
end

#patch_filesObject

Returns the value of attribute patch_files.



35
36
37
# File 'lib/mini_portile2/mini_portile.rb', line 35

def patch_files
  @patch_files
end

#source_directoryObject

Returns the value of attribute source_directory.



35
36
37
# File 'lib/mini_portile2/mini_portile.rb', line 35

def source_directory
  @source_directory
end

#targetObject

Returns the value of attribute target.



35
36
37
# File 'lib/mini_portile2/mini_portile.rb', line 35

def target
  @target
end

#versionObject (readonly)

Returns the value of attribute version.



33
34
35
# File 'lib/mini_portile2/mini_portile.rb', line 33

def version
  @version
end

Class Method Details

.mingw?Boolean

GNU MinGW compiled Ruby?

Returns:

  • (Boolean)


42
43
44
# File 'lib/mini_portile2/mini_portile.rb', line 42

def self.mingw?
  RbConfig::CONFIG['target_os'] =~ /mingw/
end

.mswin?Boolean

MS Visual-C compiled Ruby?

Returns:

  • (Boolean)


47
48
49
# File 'lib/mini_portile2/mini_portile.rb', line 47

def self.mswin?
  RbConfig::CONFIG['target_os'] =~ /mswin/
end

.windows?Boolean

Returns:

  • (Boolean)


37
38
39
# File 'lib/mini_portile2/mini_portile.rb', line 37

def self.windows?
  RbConfig::CONFIG['target_os'] =~ /mswin|mingw/
end

Instance Method Details

#activateObject



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
# File 'lib/mini_portile2/mini_portile.rb', line 193

def activate
  lib_path = File.join(port_path, "lib")
  vars = {
    'PATH'          => File.join(port_path, 'bin'),
    'CPATH'         => File.join(port_path, 'include'),
    'LIBRARY_PATH'  => lib_path
  }.reject { |env, path| !File.directory?(path) }

  output "Activating #{@name} #{@version} (from #{port_path})..."
  vars.each do |var, path|
    full_path = File.expand_path(path)

    # turn into a valid Windows path (if required)
    full_path.gsub!(File::SEPARATOR, File::ALT_SEPARATOR) if File::ALT_SEPARATOR

    # save current variable value
    old_value = ENV[var] || ''

    unless old_value.include?(full_path)
      ENV[var] = "#{full_path}#{File::PATH_SEPARATOR}#{old_value}"
    end
  end

  # rely on LDFLAGS when cross-compiling
  if File.exist?(lib_path) && (@host != @original_host)
    full_path = File.expand_path(lib_path)

    old_value = ENV.fetch("LDFLAGS", "")

    unless old_value.include?(full_path)
      ENV["LDFLAGS"] = "-L#{full_path} #{old_value}".strip
    end
  end
end

#apply_patch(patch_file) ⇒ Object



94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# File 'lib/mini_portile2/mini_portile.rb', line 94

def apply_patch(patch_file)
  (
    # Not a class variable because closures will capture self.
    @apply_patch ||=
    case
    when which('git')
      lambda { |file|
        message "Running git apply with #{file}... "
        # By --work-tree=. git-apply uses the current directory as
        # the project root and will not search upwards for .git.
        execute('patch', ["git", "--git-dir=.", "--work-tree=.", "apply", "--whitespace=warn", file], :initial_message => false)
      }
    when which('patch')
      lambda { |file|
        message "Running patch with #{file}... "
        execute('patch', ["patch", "-p1", "-i", file], :initial_message => false)
      }
    else
      raise "Failed to complete patch task; patch(1) or git(1) is required."
    end
  ).call(patch_file)
end

#compileObject



143
144
145
# File 'lib/mini_portile2/mini_portile.rb', line 143

def compile
  execute('compile', make_cmd)
end

#configureObject



128
129
130
131
132
133
134
135
136
137
138
139
140
141
# File 'lib/mini_portile2/mini_portile.rb', line 128

def configure
  return if configured?

  FileUtils.mkdir_p(tmp_path)
  cache_file = File.join(tmp_path, 'configure.options_cache')
  File.open(cache_file, "w") { |f| f.write computed_options.to_s }

  command = Array(File.join((source_directory || "."), "configure"))
  if RUBY_PLATFORM=~/mingw|mswin/
    # Windows doesn't recognize the shebang.
    command.unshift("sh")
  end
  execute('configure', command + computed_options)
end

#configured?Boolean

Returns:

  • (Boolean)


160
161
162
163
164
165
166
167
168
169
# File 'lib/mini_portile2/mini_portile.rb', line 160

def configured?
  configure = File.join((source_directory || work_path), 'configure')
  makefile  = File.join(work_path, 'Makefile')
  cache_file  = File.join(tmp_path, 'configure.options_cache')

  stored_options  = File.exist?(cache_file) ? File.read(cache_file) : ""
  current_options = computed_options.to_s

  (current_options == stored_options) && newer?(makefile, configure)
end

#cookObject



178
179
180
181
182
183
184
185
186
187
188
189
190
191
# File 'lib/mini_portile2/mini_portile.rb', line 178

def cook
  if source_directory
    prepare_build_directory
  else
    download unless downloaded?
    extract
    patch
  end
  configure unless configured?
  compile
  install unless installed?

  return true
end

#downloadObject



80
81
82
83
84
85
# File 'lib/mini_portile2/mini_portile.rb', line 80

def download
  files_hashs.each do |file|
    download_file(file[:url], file[:local_path])
    verify_file(file)
  end
end

#downloaded?Boolean

Returns:

  • (Boolean)


152
153
154
155
156
157
158
# File 'lib/mini_portile2/mini_portile.rb', line 152

def downloaded?
  missing = files_hashs.detect do |file|
    !File.exist?(file[:local_path])
  end

  missing ? false : true
end

#extractObject



87
88
89
90
91
92
# File 'lib/mini_portile2/mini_portile.rb', line 87

def extract
  files_hashs.each do |file|
    verify_file(file)
    extract_file(file[:local_path], tmp_path)
  end
end

#gcc_cmdObject



232
233
234
# File 'lib/mini_portile2/mini_portile.rb', line 232

def gcc_cmd
  (ENV["CC"] || @gcc_command || RbConfig::CONFIG["CC"] || "gcc").dup
end

#installObject



147
148
149
150
# File 'lib/mini_portile2/mini_portile.rb', line 147

def install
  return if installed?
  execute('install', %Q(#{make_cmd} install))
end

#installed?Boolean

Returns:

  • (Boolean)


171
172
173
174
175
176
# File 'lib/mini_portile2/mini_portile.rb', line 171

def installed?
  makefile  = File.join(work_path, 'Makefile')
  target_dir = Dir.glob("#{port_path}/*").find { |d| File.directory?(d) }

  newer?(target_dir, makefile)
end

#make_cmdObject



236
237
238
# File 'lib/mini_portile2/mini_portile.rb', line 236

def make_cmd
  (ENV["MAKE"] || @make_command || ENV["make"] || "make").dup
end

#patchObject



117
118
119
120
121
122
# File 'lib/mini_portile2/mini_portile.rb', line 117

def patch
  @patch_files.each do |full_path|
    next unless File.exist?(full_path)
    apply_patch(full_path)
  end
end

#pathObject



228
229
230
# File 'lib/mini_portile2/mini_portile.rb', line 228

def path
  File.expand_path(port_path)
end

#prepare_build_directoryObject



73
74
75
76
77
78
# File 'lib/mini_portile2/mini_portile.rb', line 73

def prepare_build_directory
  raise "source_directory is not set" if source_directory.nil?
  output "Building #{@name} #{@version} from source at '#{source_directory}'"
  FileUtils.mkdir_p(File.join(tmp_path, [name, version].join("-")))
  FileUtils.rm_rf(port_path) # make sure we always re-install
end