Sha256: fb9da99fdd690be968ef6ce81521b9f91952de245e1810c32e2c6508542a6ee7

Contents?: true

Size: 1.28 KB

Versions: 33

Compression:

Stored size: 1.28 KB

Contents

# This is something of a work in progress. Unfortunately,
# many of the projects that use the packaging repo carry
# version files with hard-coded versions, and many of these
# are in completely disparate formats.
#
# This task attempts to automate the updating of this file
# with the version to be packaged, but given the many version
# file formats in use, doing so cleanly is difficult. With
# any luck, going forward some of these projects will move
# away from maintaining hard-coded versions in source.
# However, if this effort loses momentum, we may end up
# revisiting this task and improving it substantially,
# and/or standardizing the expected version file format.
namespace :package do
  desc "Set and commit the version in #{Pkg::Config.version_file}, requires VERSION."
  task :versionset do
    Pkg::Util.check_var('VERSION', ENV['VERSION'])
    Pkg::Util::Version.versionbump
    Pkg::Util::Git.commit_file(Pkg::Config.version_file, "update to #{ENV['VERSION']}")
  end

  task :versionbump, :workdir do |t, args|
    Pkg::Util::Version.versionbump(args.workdir)
  end

  # A set of tasks for printing the version
  %i[version rpmversion rpmrelease debversion release].each do |task|
    task task.to_s do
      $stdout.puts Pkg::Config.instance_variable_get("@#{task}")
    end
  end
end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
packaging-0.122.3 tasks/version.rake
packaging-0.122.2 tasks/version.rake
packaging-0.122.1 tasks/version.rake
packaging-0.122.0 tasks/version.rake
packaging-0.121.0 tasks/version.rake
packaging-0.120.0 tasks/version.rake
packaging-0.118.0 tasks/version.rake
packaging-0.117.0 tasks/version.rake
packaging-0.116.0 tasks/version.rake
packaging-0.115.0 tasks/version.rake
packaging-0.114.0 tasks/version.rake
packaging-0.113.0 tasks/version.rake
packaging-0.112.0 tasks/version.rake
packaging-0.111.0 tasks/version.rake
packaging-0.110.1 tasks/version.rake
packaging-0.110.0 tasks/version.rake
packaging-0.109.7 tasks/version.rake
packaging-0.109.6 tasks/version.rake
packaging-0.109.5 tasks/version.rake
packaging-0.109.4 tasks/version.rake