diff options
| author | Ralph Amissah <ralph@amissah.com> | 2015-05-18 09:55:06 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2015-05-18 09:55:06 -0400 | 
| commit | bd3f4be045e9f1a34b4922e4b4eeb065a1c9191f (patch) | |
| tree | 170e6aa01e2bf0cab4b47b2b93f0100173d734d1 /setup | |
| parent | debian/changelog (7.1.0-1) (diff) | |
| parent | version & changelog, tag for release (diff) | |
Merge tag 'sisu_7.1.1' into debian/sid
SiSU 7.1.1
Diffstat (limited to 'setup')
| -rw-r--r-- | setup/qi_libs.rb | 17 | ||||
| -rw-r--r-- | setup/sisu_version.rb | 2 | 
2 files changed, 12 insertions, 7 deletions
| diff --git a/setup/qi_libs.rb b/setup/qi_libs.rb index 5f325302..ec069fee 100644 --- a/setup/qi_libs.rb +++ b/setup/qi_libs.rb @@ -405,7 +405,7 @@ proceed? }            changelog_arr_current = IO.readlines(fn)            changelog_arr_next=changelog_arr_current.each.map do |line|              if line =~/^\*\s+sisu_[0-9]+\.[0-9]+\.[0-9]+(?:_pre_rel)?\.orig\.tar\.xz \(Open commit window: [0-9]{4}-[0-9]{2}-[0-9]{2}; Pre-Release\)\)$/ -              "** sisu_#{vi[:version]}.orig.tar.xz " \ +              "* sisu_#{vi[:version]}.orig.tar.xz " \                + "(#{vi[:date]}:#{vi[:date_stamp].gsub(/20\d\dw/,'')})\n"              else line              end @@ -437,7 +437,7 @@ proceed? }      def self.changelog_header_pre_release(vi)        vn=version_number(vi)        <<-WOK -* #{vn}.orig.tar.xz (Open commit window: #{vi[:date]}; Pre-Release)) +* sisu_#{vn}.orig.tar.xz (Open commit window: #{vi[:date]}; Pre-Release))    http://git.sisudoc.org/gitweb/?p=code/sisu.git;a=log;h=refs/tags/sisu_#{vn}        WOK      end @@ -616,9 +616,9 @@ end    def self.build(fn)      system(%{ gem build #{fn}.gemspec })    end -  def self.install(fn) +  def self.install(vn)      system(%{ -      sudo gem install --local --no-document --verbose #{fn}.gem +      sudo gem install --local --no-document --verbose sisu-#{vn}.gem      })    end    module Current @@ -651,8 +651,13 @@ end      def self.build_stable        Gemspecs.build(filename)      end -    def self.install_stable -      Gemspecs.install(filename_stable) +    def self.install_stable(version=:version_standard) +      vi=Version_info::Current.setting_stable +      vn=((version==:version_git) \ +      && (Version_info.version_number_use(vi) != vi[:version_number])) \ +      ? (Version_info.version_number_use(vi)) +      : (vi[:version_number]) +      Gemspecs.install(vn)      end    end  end diff --git a/setup/sisu_version.rb b/setup/sisu_version.rb index b1d77053..106089d2 100644 --- a/setup/sisu_version.rb +++ b/setup/sisu_version.rb @@ -1,6 +1,6 @@  #% constants  module SiSUversion -  SiSU_version                       = '7.1.0' +  SiSU_version                       = '7.1.1'  end  module Dev    GPGpubKey                          = '1BB4B289' | 
