2019-07-02 03:50:50 +02:00
|
|
|
|
|
|
|
require "uuid"
|
|
|
|
require "uri"
|
|
|
|
require "file_utils"
|
|
|
|
|
|
|
|
require "./context.cr"
|
|
|
|
require "./package.cr"
|
|
|
|
require "./instructions.cr"
|
|
|
|
require "./sources.cr"
|
|
|
|
|
|
|
|
# 🤔
|
|
|
|
class URI
|
|
|
|
def basename
|
|
|
|
File.basename path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Package::Recipe
|
|
|
|
@context : Context
|
|
|
|
|
|
|
|
getter name : String
|
|
|
|
getter version : String
|
2019-07-02 08:47:11 +02:00
|
|
|
getter dirname : String?
|
2019-07-02 03:50:50 +02:00
|
|
|
|
|
|
|
getter sources : Sources
|
|
|
|
getter packages : Array(Package)
|
|
|
|
|
|
|
|
getter instructions = Instructions.new
|
|
|
|
def initialize(@context, @name, @version)
|
|
|
|
@sources = Sources.new
|
2019-07-03 03:17:01 +02:00
|
|
|
@packages = [] of Package
|
2019-07-02 03:50:50 +02:00
|
|
|
|
|
|
|
@working_uuid = UUID.random
|
|
|
|
end
|
|
|
|
|
2019-07-03 03:17:01 +02:00
|
|
|
def self.new(context, name, version)
|
|
|
|
instance = Recipe.allocate.tap &.initialize(context, name, version)
|
|
|
|
|
|
|
|
instance.packages << Package.new instance
|
|
|
|
|
|
|
|
instance
|
|
|
|
end
|
|
|
|
|
2019-07-02 03:50:50 +02:00
|
|
|
def working_directory
|
|
|
|
@context.working_directory
|
|
|
|
end
|
|
|
|
|
|
|
|
def building_directory
|
|
|
|
"#{working_directory}/build"
|
|
|
|
end
|
|
|
|
|
|
|
|
def fake_root_directory
|
|
|
|
"#{working_directory}/root"
|
|
|
|
end
|
|
|
|
|
2019-07-02 08:47:11 +02:00
|
|
|
def dirname
|
|
|
|
@dirname || "#{name}-#{version}"
|
|
|
|
end
|
|
|
|
|
2019-07-02 03:50:50 +02:00
|
|
|
def download
|
|
|
|
sources.map do |url|
|
|
|
|
unless File.exists? url.basename
|
2019-07-02 19:45:33 +02:00
|
|
|
@context.run @context.sources_directory, "wget", [ url.to_s, "-O", url.basename ]
|
2019-07-02 03:50:50 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def extract
|
|
|
|
Dir.mkdir_p building_directory
|
|
|
|
|
|
|
|
sources.map do |url|
|
|
|
|
basename = url.basename
|
|
|
|
|
2019-07-02 19:45:33 +02:00
|
|
|
@context.run building_directory, "tar", [ "xvf", @context.sources_directory + "/" + url.basename ]
|
2019-07-02 03:50:50 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# TODO:
|
|
|
|
# - Export packaging directory in $PKG.
|
|
|
|
# - Add (pre|post)-(configure|build|install) instructions.
|
|
|
|
# - Have some instructions be non-critical, like the (pre|post] ones.
|
|
|
|
# - Be careful about return values, flee from everything if something
|
|
|
|
# goes somehow wrong.
|
|
|
|
# - Make things thread-safe. (those ENV[]= calls are definitely not)
|
|
|
|
def build
|
2019-07-02 08:47:11 +02:00
|
|
|
success = true
|
|
|
|
|
2019-07-02 03:50:50 +02:00
|
|
|
Dir.mkdir_p fake_root_directory
|
|
|
|
|
|
|
|
ENV["PKG"] = fake_root_directory
|
|
|
|
|
2019-07-02 19:45:33 +02:00
|
|
|
# Safety precautions.
|
2019-07-02 08:47:11 +02:00
|
|
|
old_dir = Dir.current
|
|
|
|
|
|
|
|
instructions.to_a.each do |instruction|
|
2019-07-02 19:45:33 +02:00
|
|
|
if instruction.run(@context, self).failed?
|
2019-07-02 08:47:11 +02:00
|
|
|
break Instructions::Status::Failed
|
|
|
|
end
|
2019-07-02 03:50:50 +02:00
|
|
|
end
|
|
|
|
|
2019-07-02 08:47:11 +02:00
|
|
|
Dir.cd old_dir
|
|
|
|
|
2019-07-02 03:50:50 +02:00
|
|
|
ENV["PKG"] = nil
|
2019-07-02 08:47:11 +02:00
|
|
|
|
|
|
|
success
|
2019-07-02 03:50:50 +02:00
|
|
|
end
|
|
|
|
|
2019-07-03 03:17:01 +02:00
|
|
|
# TODO:
|
|
|
|
# - Errors management. Stop at first failure?
|
|
|
|
# - Splits. This should be done between #build and #package.
|
2019-07-02 03:50:50 +02:00
|
|
|
def package
|
2019-07-03 03:17:01 +02:00
|
|
|
@packages.find do |package|
|
|
|
|
! @context.package package
|
|
|
|
end
|
2019-07-02 03:50:50 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def clean
|
|
|
|
FileUtils.rm_rf building_directory
|
|
|
|
FileUtils.rm_rf fake_root_directory
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
|
|
|
"#{name}-#{version}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|