Sha256: 7f9d3b63e107208a061e033d7c5f8261bc3f99174aef594b17f2d054a94ca7cc

Contents?: true

Size: 1.88 KB

Versions: 11

Compression:

Stored size: 1.88 KB

Contents

module Pkg::Util::Gpg
  class << self

    # Please note that this method is not used in determining what key is used
    # to sign the debian repos. That is defined in the freight config that
    # lives on our internal repo staging host. The debian conf/distribution
    # files that are generated with this repo use the default gpg key to
    # reflect that.
    def key
      fail "You need to set `gpg_key` in your build defaults." unless Pkg::Config.gpg_key && !Pkg::Config.gpg_key.empty?
      Pkg::Config.gpg_key
    end

    def keychain
      if @keychain.nil?
        @keychain = Pkg::Util::Tool.find_tool('keychain')
      else
        @keychain
      end
    end

    def load_keychain
      unless @keychain_loaded
        unless ENV['RPM_GPG_AGENT']
          kill_keychain
          start_keychain
        end
        @keychain_loaded = TRUE
      end
    end

    def kill_keychain
      if keychain
        stdout, _, _ = Pkg::Util::Execution.capture3("#{keychain} -k mine")
        stdout
      end
    end

    def start_keychain
      if keychain
        keychain_output, _, _ = Pkg::Util::Execution.capture3("#{keychain} -q --agents gpg --eval #{key}")
        keychain_output.chomp!
        new_env = keychain_output.match(/GPG_AGENT_INFO=([^;]*)/)
        ENV["GPG_AGENT_INFO"] = new_env[1]
      else
        fail "Keychain is not installed, it is required to autosign using gpg."
      end
    end

    def sign_file(file)
      gpg ||= Pkg::Util::Tool.find_tool('gpg')

      if gpg
        if File.exist? "#{file}.asc"
          warn "Signature on #{file} exists, skipping..."
          return true
        end
        use_tty = "--no-tty --use-agent" if ENV['RPM_GPG_AGENT']
        stdout, _, _ = Pkg::Util::Execution.capture3("#{gpg} #{use_tty} --armor --detach-sign -u #{key} #{file}")
        stdout
      else
        fail "No gpg available. Cannot sign #{file}."
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
packaging-0.99.11 lib/packaging/util/gpg.rb
packaging-0.99.10.pre.dev1 lib/packaging/util/gpg.rb
packaging-0.99.10.2.gfa4c366 lib/packaging/util/gpg.rb
packaging-0.99.10 lib/packaging/util/gpg.rb
packaging-0.99.9.5.g5811fb8 lib/packaging/util/gpg.rb
packaging-0.99.9 lib/packaging/util/gpg.rb
packaging-0.99.8 lib/packaging/util/gpg.rb
packaging-0.99.7 lib/packaging/util/gpg.rb
packaging-0.99.6 lib/packaging/util/gpg.rb
packaging-0.99.5 lib/packaging/util/gpg.rb
packaging-0.99.4 lib/packaging/util/gpg.rb