Class: MiniPortile
- Inherits:
-
Object
- Object
- MiniPortile
- Defined in:
- lib/mini_portile.rb
Instance Attribute Summary collapse
- #configure_options ⇒ Object
-
#files ⇒ Object
Returns the value of attribute files.
-
#host ⇒ Object
Returns the value of attribute host.
-
#logger ⇒ Object
Returns the value of attribute logger.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#original_host ⇒ Object
readonly
Returns the value of attribute original_host.
-
#patch_files ⇒ Object
Returns the value of attribute patch_files.
-
#target ⇒ Object
Returns the value of attribute target.
-
#version ⇒ Object
readonly
Returns the value of attribute version.
Instance Method Summary collapse
- #activate ⇒ Object
- #compile ⇒ Object
- #configure ⇒ Object
- #configured? ⇒ Boolean
- #cook ⇒ Object
- #download ⇒ Object
- #downloaded? ⇒ Boolean
- #extract ⇒ Object
-
#initialize(name, version) ⇒ MiniPortile
constructor
A new instance of MiniPortile.
- #install ⇒ Object
- #installed? ⇒ Boolean
- #patch ⇒ Object
- #path ⇒ Object
Constructor Details
#initialize(name, version) ⇒ MiniPortile
Returns a new instance of MiniPortile.
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/mini_portile.rb', line 14 def initialize(name, version) @name = name @version = version @target = 'ports' @files = [] @patch_files = [] @logger = STDOUT @original_host = @host = detect_host end |
Instance Attribute Details
#configure_options ⇒ Object
55 56 57 |
# File 'lib/mini_portile.rb', line 55 def @configure_options ||= configure_defaults end |
#files ⇒ Object
Returns the value of attribute files.
12 13 14 |
# File 'lib/mini_portile.rb', line 12 def files @files end |
#host ⇒ Object
Returns the value of attribute host.
12 13 14 |
# File 'lib/mini_portile.rb', line 12 def host @host end |
#logger ⇒ Object
Returns the value of attribute logger.
12 13 14 |
# File 'lib/mini_portile.rb', line 12 def logger @logger end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
10 11 12 |
# File 'lib/mini_portile.rb', line 10 def name @name end |
#original_host ⇒ Object (readonly)
Returns the value of attribute original_host.
10 11 12 |
# File 'lib/mini_portile.rb', line 10 def original_host @original_host end |
#patch_files ⇒ Object
Returns the value of attribute patch_files.
12 13 14 |
# File 'lib/mini_portile.rb', line 12 def patch_files @patch_files end |
#target ⇒ Object
Returns the value of attribute target.
12 13 14 |
# File 'lib/mini_portile.rb', line 12 def target @target end |
#version ⇒ Object (readonly)
Returns the value of attribute version.
10 11 12 |
# File 'lib/mini_portile.rb', line 10 def version @version end |
Instance Method Details
#activate ⇒ Object
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 |
# File 'lib/mini_portile.rb', line 116 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.(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.(lib_path) old_value = ENV.fetch("LDFLAGS", "") unless old_value.include?(full_path) ENV["LDFLAGS"] = "-L#{full_path} #{old_value}".strip end end end |
#compile ⇒ Object
69 70 71 |
# File 'lib/mini_portile.rb', line 69 def compile execute('compile', make_cmd) end |
#configure ⇒ Object
59 60 61 62 63 64 65 66 67 |
# File 'lib/mini_portile.rb', line 59 def configure return if configured? md5_file = File.join(tmp_path, 'configure.md5') digest = Digest::MD5.hexdigest() File.open(md5_file, "w") { |f| f.write digest } execute('configure', %Q(sh configure #{})) end |
#configured? ⇒ Boolean
87 88 89 90 91 92 93 94 95 96 |
# File 'lib/mini_portile.rb', line 87 def configured? configure = File.join(work_path, 'configure') makefile = File.join(work_path, 'Makefile') md5_file = File.join(tmp_path, 'configure.md5') stored_md5 = File.exist?(md5_file) ? File.read(md5_file) : "" current_md5 = Digest::MD5.hexdigest() (current_md5 == stored_md5) && newer?(makefile, configure) end |
#cook ⇒ Object
105 106 107 108 109 110 111 112 113 114 |
# File 'lib/mini_portile.rb', line 105 def cook download unless downloaded? extract patch configure unless configured? compile install unless installed? return true end |
#download ⇒ Object
25 26 27 28 29 30 |
# File 'lib/mini_portile.rb', line 25 def download @files.each do |url| filename = File.basename(url) download_file(url, File.join(archives_path, filename)) end end |
#downloaded? ⇒ Boolean
78 79 80 81 82 83 84 85 |
# File 'lib/mini_portile.rb', line 78 def downloaded? missing = @files.detect do |url| filename = File.basename(url) !File.exist?(File.join(archives_path, filename)) end missing ? false : true end |
#extract ⇒ Object
32 33 34 35 36 37 |
# File 'lib/mini_portile.rb', line 32 def extract @files.each do |url| filename = File.basename(url) extract_file(File.join(archives_path, filename), tmp_path) end end |
#install ⇒ Object
73 74 75 76 |
# File 'lib/mini_portile.rb', line 73 def install return if installed? execute('install', %Q(#{make_cmd} install)) end |
#installed? ⇒ Boolean
98 99 100 101 102 103 |
# File 'lib/mini_portile.rb', line 98 def installed? makefile = File.join(work_path, 'Makefile') target_dir = Dir.glob("#{port_path}/*").find { |d| File.directory?(d) } newer?(target_dir, makefile) end |
#patch ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/mini_portile.rb', line 39 def patch # Set GIT_DIR while appying patches to work around # git-apply doing nothing when started within another # git directory. ENV['GIT_DIR'], old_git = '.', ENV['GIT_DIR'] begin @patch_files.each do |full_path| next unless File.exists?(full_path) output "Running git apply with #{full_path}..." execute('patch', %Q(git apply #{full_path})) end ensure ENV['GIT_DIR'] = old_git end end |
#path ⇒ Object
151 152 153 |
# File 'lib/mini_portile.rb', line 151 def path File.(port_path) end |