Class: BazaarDownloadStrategy

Inherits:
VCSDownloadStrategy show all
Defined in:
download_strategy.rb

Overview

Strategy for downloading a Bazaar repository.

Constant Summary

Constants inherited from VCSDownloadStrategy

VCSDownloadStrategy::REF_TYPES

Instance Attribute Summary

Attributes inherited from AbstractDownloadStrategy

#cache, #cached_location, #url

Instance Method Summary collapse

Methods inherited from VCSDownloadStrategy

#commit_outdated?, #fetch, #fetch_last_commit, #head?

Methods inherited from AbstractDownloadStrategy

#basename, #clear_cache, #fetch, #quiet?, #shutup!, #stage

Methods included from Context

current, current=, #debug?, #quiet?, #verbose?, #with_context

Constructor Details

#initialize(url, name, version, **meta) ⇒ BazaarDownloadStrategy

Returns a new instance of BazaarDownloadStrategy.



1286
1287
1288
1289
# File 'download_strategy.rb', line 1286

def initialize(url, name, version, **meta)
  super
  @url = @url.sub(%r{^bzr://}, "")
end

Instance Method Details

#last_commitString



1305
1306
1307
1308
# File 'download_strategy.rb', line 1305

def last_commit
  out, = silent_command("bzr", args: ["revno", cached_location])
  out.chomp
end

#source_modified_timeTime



1294
1295
1296
1297
1298
1299
1300
# File 'download_strategy.rb', line 1294

def source_modified_time
  out, = silent_command("bzr", args: ["log", "-l", "1", "--timezone=utc", cached_location])
  timestamp = out.chomp
  raise "Could not get any timestamps from bzr!" if timestamp.blank?

  Time.parse(timestamp)
end