# File lib/packaging/config.rb, line 149
      def load_versioning
        if @project_root and Pkg::Util::Version.git_tagged?
          @ref         = Pkg::Util::Version.git_sha_or_tag
          @version     = Pkg::Util::Version.get_dash_version
          @gemversion  = Pkg::Util::Version.get_dot_version
          @ipsversion  = Pkg::Util::Version.get_ips_version
          @debversion  = Pkg::Util::Version.get_debversion
          @origversion = Pkg::Util::Version.get_origversion
          @rpmversion  = Pkg::Util::Version.get_rpmversion
          @rpmrelease  = Pkg::Util::Version.get_rpmrelease
        else
          puts "Skipping determination of version via git describe, Pkg::Config.project_root is not set to the path of a tagged git repo."
        end
      end