Class: Simp::Rake::Build::Build
- Inherits:
-
Rake::TaskLib
- Object
- Rake::TaskLib
- Simp::Rake::Build::Build
- Includes:
- Constants
- Defined in:
- lib/simp/rake/build/build.rb
Instance Method Summary collapse
-
#define_tasks ⇒ Object
define rake tasks.
-
#initialize(base_dir) ⇒ Build
constructor
A new instance of Build.
Methods included from Constants
#distro_build_dir, #init_member_vars
Constructor Details
#initialize(base_dir) ⇒ Build
Returns a new instance of Build.
17 18 19 20 21 |
# File 'lib/simp/rake/build/build.rb', line 17 def initialize( base_dir ) init_member_vars( base_dir ) define_tasks end |
Instance Method Details
#define_tasks ⇒ Object
define rake tasks
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 |
# File 'lib/simp/rake/build/build.rb', line 24 def define_tasks namespace :build do task :prep do if $simp6 @build_dir = $simp6_build_dir || @distro_build_dir end end desc <<-EOM Run bundle at every level of the project. This taks runs 'bundle' at each level of the Git subproject tree as well as the top level. The intent is to ensure that the entire development space is up to date when starting work. Arguments: * :action => The action that you with bundle to take. Default => 'install' * :verbose => Enable verbose reporting. Default => 'false' EOM task :bundle, [:action, :verbose, :method] => [:prep] do |t, args| args.with_defaults(:action => 'install') args.with_defaults(:verbose => 'false') args.with_defaults(:method => 'tracking') verbose = args[:verbose] == 'false' ? false : true load_puppetfile(args[:method]) # Grab all currently tracked submodules. failed_mods = [] failed_mod_lock = Mutex.new Parallel.map( module_paths, :in_processes => 1, :progress => t.name ) do |mod| status = true fail("Could not find directory #{mod}") unless Dir.exist?(mod) next unless File.exists?(File.join(mod,'Gemfile')) puts "\n#{mod}\n" if verbose Dir.chdir(mod) do if File.exist?('Gemfile.lock') puts "Cleaning Gemfile.lock from #{mod}" if verbose rm('Gemfile.lock') end # Any ruby code that opens a subshell will automatically use the # current Bundler environment. # # Clean env will give bundler the environment present before # Bundler is activated. clean_env_method = Bundler.respond_to?(:with_unbundled_env) ? :with_unbundled_env : :with_clean_env ::Bundler.send(clean_env_method) do out = %x(bundle #{args[:action]} 2>&1) status = $?.success? puts out if verbose failed_mod_lock.synchronize do failed_mods << mod unless status end end end end failed_mods.compact! fail(%(The following modules failed bundle #{args[:action]}:\n * #{failed_mods.sort.join("\n *")})) unless failed_mods.empty? end namespace :yum do task :prep do if $simp6 # `$simp6_build_dir` is set by the build:auto task @build_dir = $simp6_build_dir || @distro_build_dir unless @build_dir if ENV['SIMP_BUILD_yum_dir'] && File.exist?(File.join(ENV['SIMP_BUILD_yum_dir'], 'yum_data')) @build_dir = ENV['SIMP_BUILD_yum_dir'] end end raise('Error: For SIMP 6+ builds, you need to set SIMP_BUILD_yum_dir to the directory holding the "yum_data" directory that you wish to sync') unless @build_dir end @build_base_dir = File.join(@build_dir,'yum_data') @build_arch = 'x86_64' end ############################################################################## # Helpers ############################################################################## # Return the target directory # Expects one argument which is the 'arguments' hash to one of the tasks. def get_target_dir(args) if $simp6 return @build_base_dir else fail("Error: You must specify 'os'") unless args[:os] fail("Error: You must specify 'os_version'") unless args[:os_version] fail("Error: You must specify both major and minor version for the OS") unless args[:os_version] =~ /^.+\..+$/ fail("Error: You must specify 'simp_version'") unless args[:simp_version] fail("Error: You must specify 'arch'") unless args[:arch] # Yes, this is a kluge but the amount of variable passing that would need # to be done to support this is silly. @build_arch = args[:arch] return File.join( @build_base_dir, "SIMP#{args[:simp_version]}_#{args[:os]}#{args[:os_version]}_#{args[:arch]}" ) end end # Return where YUM finds the passed RPM def get_rpm_source(rpm, yum_conf) puts("Looking up: #{rpm}") yum_helper = Simp::YUM.new(yum_conf) return yum_helper.get_source(rpm, @build_arch) end # Snag an RPM via YUM. # Returns where the tool got the file from. # # If passed a source, simply downloads the file into the packages directory def download_rpm(rpm, yum_conf, source=nil, distro_dir=Dir.pwd) yum_helper = Simp::YUM.new(yum_conf) # We're doing this so that we can be 100% sure that we're pulling the RPM # from where the last command indicated. YUM can choose multiple sources # and we definitely want the one that we actually state! source = yum_helper.get_source(rpm) unless source Dir.chdir('packages') do unless File.exist?(rpm) puts("Downloading: #{rpm}") downloaded_rpm = yum_helper.download(source) raise(SIMPBuildException,"#{rpm} could not be downloaded") unless downloaded_rpm begin validate_rpm(downloaded_rpm) rescue SIMPBuildException rm(rpm) if File.exist?(rpm) raise(SIMPBuildException,"#{rpm} could not be downloaded") end end end return source end # Check to see if an RPM is actually a valid RPM # Optionally remove any invalid RPMS. # # Returns true if the rpm is valid raises a SIMPBuildException otherwise def validate_rpm(rpm, clean=true) # Check to see if what we got is actually valid %x(rpm -K --nosignature "#{rpm}" 2>&1 > /dev/null) unless $?.success? errmsg = "RPM '#{rpm}' is invalid" if clean errmsg += ', removing' FileUtils.rm(rpm) if File.exist?(rpm) end raise(SIMPBuildException,errmsg) end true end def get_known_packages(target_dir=Dir.pwd) known_package_hash = {} Dir.chdir(target_dir) do if File.exist?('packages.yaml') # The empty YAML file returns 'false' known_package_hash = YAML::load_file('packages.yaml') || {} end end unless known_package_hash.empty? unless known_package_hash.first.last[:rpm_name] # Convert from Legacy # This is imperfect since we can't accurately determine the RPM sort # name but the code should straighten everything out since we rewrite # the entire file based on what has been downloaded. new_package_hash = known_package_hash.dup known_package_hash.each_key { |k| new_package_hash[k][:rpm_name] = k } known_package_hash = new_package_hash end end return known_package_hash end def get_downloaded_packages(target_dir=Dir.pwd) downloaded_packages = {} Dir.chdir(target_dir) do Dir.glob('packages/*.rpm').each do |pkg| downloaded_packages[Simp::RPM.get_info(pkg)[:basename]] = { :rpm_name => File.basename(pkg) } end end return downloaded_packages end # Update the packages.yaml and packages/ directories # * target_dir => The actual distribution directory where packages.yaml and # packages/ reside. def update_packages(target_dir, bootstrap=false) # This really should never happen.... unless File.directory?(target_dir) fail <<-EOM Error: Could not update packages. Target directory '#{target_dir}' does not exist! EOM end Dir.chdir(target_dir) do unless File.exist?('packages.yaml') || File.directory?('packages') fail <<-EOM Error: Either 'packages.yaml' or the 'packages/' directory need to exist under '#{target_dir} EOM end yum_helper = Simp::YUM.new(Simp::YUM.generate_yum_conf) yum_conf = yum_helper.yum_conf known_package_hash = get_known_packages downloaded_package_hash = get_downloaded_packages # This holds packages for which we could not find a source. unknown_package_hash = {} known_packages = known_package_hash.keys.collect{ |pkg| pkg = known_package_hash[pkg][:rpm_name] }.compact downloaded_packages = downloaded_package_hash.keys.collect{ |pkg| pkg = downloaded_package_hash[pkg][:rpm_name] }.compact if known_packages.empty? && downloaded_packages.empty? && Dir.glob('reposync/**/repomd.xml').empty? fail <<-EOM Error: Could not find anything to do! In #{target_dir}: No packages in either packages.yaml or the packages/ directory and no repos found in the reposync/ directory EOM end failed_updates = {} # Kill any pre-existing invalid packages that might be hanging around downloaded_packages.dup.each do |package| begin validate_rpm(%(packages/#{package})) rescue SIMPBuildException => e rm(%(packages/#{package})) if File.exist?(%(packages/#{package})) downloaded_packages.delete(package) failed_updates[package] = e end end # Let's go ahead and grab everything that we know the source for (known_packages - downloaded_packages).sort.each do |package_to_download| begin # Do we have a valid external source? package_source = known_package_hash.find{|k,h| h[:rpm_name] == package_to_download}.last[:source] if package_source && (package_source =~ %r(^[a-z]+://)) begin download_rpm(package_to_download, yum_conf, package_source) rescue => e if ['yes','true'].include?(ENV['SIMP_BUILD_update_packages']) pkg_shortname = known_package_hash.find {|k,v| v[:rpm_name] == package_to_download } if pkg_shortname pkg_shortname = pkg_shortname.first download_rpm(pkg_shortname, yum_conf) else raise(e) end else raise(e) end end else # If you get here, then you'll need to have an internal mirror of the # repositories in question. This covers things like private RPMs as # well as Commercial RPMs from Red Hat. download_rpm(package_to_download, yum_conf) end rescue SIMPBuildException => e base_package_name = known_package_hash.find{|k,h| h[:rpm_name] == package_to_download}.first updated_package = update_rpm(base_package_name,yum_conf,true) if updated_package updated_package_rpm_name = updated_package[base_package_name][:rpm_name] # We just got a new one! Replace the old one. puts "Updating: #{package_to_download} with #{updated_package_rpm_name}" # We now know about this downloaded_packages.delete(package_to_download) downloaded_package_hash.merge!(updated_package) known_package_hash.merge!(updated_package) known_packages << updated_package_rpm_name else failed_updates[package_to_download] = e end end end # Now, let's update the known_packages data structure for anything that's # new! (downloaded_packages - known_packages).each do |package| downloaded_package_hash.keys.each do |key| if downloaded_package_hash[key][:rpm_name] == package begin rpm_source = yum_helper.get_source(package) #rpm_source = get_rpm_source(package,yum_conf) known_package_hash[key] = downloaded_package_hash[key] known_package_hash[key][:source] = rpm_source rescue SIMPBuildException => e unknown_package_hash[key] = {} unless unknown_package_hash[key] unknown_package_hash[key][:rpm_name] = package failed_updates[package] = e end break end end end # OK! In theory, we're done with all of this nonsense! Let's update the # YAML file. File.open('packages.yaml','w') do |fh| sorted_packages = {} known_package_hash.keys.sort.each do |k| # Make sure we don't capture any legacy malformed info if known_package_hash[k][:rpm_name][-4..-1] == '.rpm' sorted_packages[k] ||= {} known_package_hash[k].keys.sort.each do |subk| sorted_packages[k][subk] = known_package_hash[k][subk] end end end fh.puts(clean_yaml(sorted_packages.to_yaml)) end if unknown_package_hash.empty? rm('unknown_packages.yaml') if File.exist?('unknown_packages.yaml') else # Next, let's freshen up the unknown packages reference file File.open('unknown_packages.yaml','w') do |fh| sorted_packages = {} unknown_package_hash.keys.sort.each do |k| sorted_packages[k] ||= {} unknown_package_hash[k].keys.sort.each do |subk| sorted_packages[k][subk] = unknown_package_hash[k][subk] end end fh.puts(clean_yaml(sorted_packages.to_yaml)) end end # Now, let's tell the user what went wrong. unless failed_updates.empty? $stderr.puts("Warning: There were errors updating some files:") failed_updates.keys.sort.each do |k| $stderr.puts(" * #{k} => #{failed_updates[k]}") end raise('Could not update all packages') end end end # Downloads a packge into the *current working directory* # # Will create a directory called 'obsolete' and move any old packages into # that location if a newer one is found. # # Arguments: # * pkg => The name of the package to download. YUM supported globs # are allowed. # * verbose => If true, identify potential actions of note. # # Returns a hash of the new package information if found. # def update_rpm(pkg,yum_conf,verbose=false) updated_pkg = nil begin new_pkg_source = download_rpm(pkg, yum_conf) new_pkg = new_pkg_source.split('/').last Dir.chdir('packages') do new_pkg_info = Simp::RPM.new(new_pkg) # Find any old packages and move them into the 'obsolete' directory. Dir.glob("#{new_pkg_info.basename}*.rpm").each do |old_pkg| old_pkg_info = Simp::RPM.new(old_pkg) # Don't obsolete yourself! next unless new_pkg_info.basename == old_pkg_info.basename if new_pkg_info.newer?(old_pkg_info.rpm_name) mkdir('obsolete') unless File.directory?('obsolete') puts("Retiring #{old_pkg}") if verbose mv(old_pkg,'obsolete') end end updated_pkg = { new_pkg_info.basename => { :source => new_pkg_source, :rpm_name => new_pkg } } end rescue SIMPBuildException => e puts("Failed to update #{pkg} -> #{e}") if verbose end updated_pkg end ############################################################################## # Main tasks ############################################################################## desc <<-EOM Create a new yum directory tree for a new distribution. Creates a YUM directory tree under {dist_build_dir}/yum_data/SIMP{:simp_version}_{:os}{:os_version}_{:arch}. * :os - The Operating System that you wish to use. Supported OSs: #{@target_dists}.join(', ') * :os_version - The Major and Minor version of the OS. Ex: 6.6, 7.0, etc... * :simp_version - The Full version of SIMP that you are going to support. Do not enter the revision number. Ex: 5.1.0, 4.2.0. Default: Auto * :arch - The architecture that you support. Default: x86_64 Set ENV['SIMP_BUILD_yum_dir'] to override the path of {dist_build_dir} Will not overwrite existing directories or package.yaml files EOM task :scaffold,[:os,:os_version,:simp_version,:arch] do |t,args| # @simp_version is set in the main Rakefile args.with_defaults(:simp_version => @simp_version.split('-').first) args.with_defaults(:arch => @build_arch) major_os_ver = args[:os_version].split('.').first build_dir = distro_build_dir( File.join(@base_dir,'build'), args[:os], major_os_ver, args[:arch] ) build_dir = ENV['SIMP_BUILD_yum_dir'] if File.directory?(ENV['SIMP_BUILD_yum_dir'].to_s) ENV['SIMP_BUILD_yum_dir'] ||= build_dir # <-- for hacky :prep task target_dir = File.join(build_dir,'yum_data') # Create directories my_repos = $simp6 ? '../my_repos' : 'my_repos' [ target_dir, File.join(target_dir,'repos'), File.join(target_dir,'packages'), File.(my_repos,target_dir) ].each { |dir| mkdir_p(dir, verbose: false) } # Create example packages.yaml packages_yaml_path = File.join(target_dir, 'packages.yaml') unless File.exists? packages_yaml_path pkg = 'example-package-name' pkg_file = "#{pkg}-1.0.0-1.el#{major_os_ver}.#{args[:arch]}.rpm" yum_url = "https://yum.server/#{args[:os]}/#{major_os_ver}/#{args[:arch]}" pkg_url = "#{yum_url}/#{pkg_file}" yaml = { pkg => { rpm_name: pkg_file, source: pkg_url } }.to_yaml File.open(packages_yaml_path,'w'){|f| f.puts yaml.gsub(/^/,'# ') } puts "Created #{target_dir}" puts "Created example file at #{packages_yaml_path}" end end desc <<-EOM Download ALL THE PACKAGES. Downloads everything as appropriate for the distribution at #{@build_dir}/yum_data/SIMP{:simp_version}_{:os}{:os_version}_{:arch}. * :os - The Operating System that you wish to use. Supported OSs: #{@target_dists}.join(', ') * :os_version - The Major and Minor version of the OS. Ex: 6.6, 7.0, etc... * :simp_version - The Full version of SIMP that you are going to support. Do not enter the revision number. Ex: 5.1.0, 4.2.0. Default: Auto * :arch - The architecture that you support. Default: x86_64 EOM task :sync,[:os,:os_version,:simp_version,:arch] => [:scaffold, :prep] do |t,args| # @simp_version is set in the main Rakefile args.with_defaults(:simp_version => @simp_version.split('-').first) args.with_defaults(:arch => @build_arch) target_dir = get_target_dir(args) update_packages(target_dir) end desc <<-EOM Display the difference between record and download. Provides a list of the differences between what we have recorded in 'packages.yaml' and the downloads in the 'packages' directory. * :os - The Operating System that you wish to use. Supported OSs: #{@target_dists}.join(', ') * :os_version - The Major and Minor version of the OS. Ex: 6.6, 7.0, etc... * :simp_version - The Full version of SIMP that you are going to support. Do not enter the revision number. Ex: 5.1.0, 4.2.0. Default: Auto * :arch - The architecture that you support. Default: x86_64 EOM task :diff,[:os,:os_version,:simp_version,:arch] => [:scaffold, :prep] do |t,args| args.with_defaults(:simp_version => @simp_version.split('-').first) args.with_defaults(:arch => @build_arch) differences_found = false target_dir = get_target_dir(args) known_package_hash = get_known_packages(target_dir) downloaded_package_hash = get_downloaded_packages(target_dir) known_packages = known_package_hash.keys.compact downloaded_packages = downloaded_package_hash.keys.compact known_not_downloaded = (known_packages - downloaded_packages).sort unless known_not_downloaded.empty? differences_found = true puts("=== Packages Not Downloaded ===") known_not_downloaded.each do |package| puts " - #{package}" end end downloaded_not_known = (downloaded_packages - known_packages).sort unless downloaded_not_known.empty? differences_found = true puts ("=== Pacakges Downloaded not Recorded ===") downloaded_not_known.each do |package| puts " ~ #{downloaded_package_hash[package][:rpm_name]}" end end if differences_found exit 1 else puts("=== No Differences Found ===") exit 0 end end desc <<-EOM Download an RPM for the given distribution. Fetches the *latest* version of an RPM from the included sources and places it in the downloads directory. Any old versions are moved into an 'obsolete' directory. This does *not* update the packages.yaml file. Note: for convienience, you can specify the output of yum_diff as your input package and it will try to pull down everything in the file. * If you do this, it must be the *full path* to the file. * :pkg - The package that you wish to download. * :os - The Operating System that you wish to use. Supported OSs: #{@target_dists}.join(', ') * :os_version - The Major and Minor version of the OS. Ex: 6.6, 7.0, etc... * :simp_version - The Full version of SIMP that you are going to support. Do not enter the revision number. Ex: 5.1.0, 4.2.0. Default: Auto * :arch - The architecture that you support. Default: x86_64 EOM task :fetch,[:pkg,:os,:os_version,:simp_version,:arch] => [:scaffold, :prep] do |t,args| args.with_defaults(:simp_version => @simp_version.split('-').first) args.with_defaults(:arch => @build_arch) fail("Error: You must specify 'pkg'") unless args[:pkg] pkgs = [] # Handle the output of build:yum_diff if File.readable?(args[:pkg]) File.read(args[:pkg]).each_line do |line| if line =~ /\s+~\s+(.*)/ pkgs << $1.split(/-\d+/).first end end else # Handle the default case pkgs = [args[:pkg]] end Dir.chdir(get_target_dir(args)) do pkgs.each do |pkg| # Pull down the RPM update_rpm(pkg, Simp::YUM.generate_yum_conf, true) end end end end end end |