cirandas.net

ref: master

lib/tasks/release.rake


  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
# encoding: UTF-8

$version = Noosfero::VERSION.split('-')[0]
$last_version = $version

namespace :noosfero do

  def pendencies_on_changelog
    sh "git status | grep 'CHANGELOG.md' > /dev/null" do |ok, res|
      return {:ok => !ok, :res => res}
    end
  end

  def pendencies_on_authors
    sh "git status | grep 'AUTHORS.md' > /dev/null" do |ok, res|
      return {:ok => !ok, :res => res}
    end
  end

  def pendencies_on_repo
    sh "git status | grep 'nothing.*commit' > /dev/null" do |ok, res|
      return {:ok => ok, :res => res}
    end
  end

  def pendencies_on_public_errors
    sh "git status | grep -e '500.html' -e '503.html' > /dev/null" do |ok, res|
      return {:ok => !ok, :res => res}
    end
  end

  def commit_changes(files, commit_message)
    files = files.join(' ')
    puts "\nThere are changes in the following files:"
    sh "git diff #{files}"
    if confirm('Do you want to commit these changes')
      sh "git add #{files}"
      sh "git commit -m '#{commit_message}'"
    else
      sh "git checkout #{files}"
      abort 'There are changes to be commited. Reverting changes and exiting...'
    end
  end

  desc 'checks if there are uncommitted changes in the repo'
  task :check_repo do
    if !pendencies_on_repo[:ok]
      raise "******** There are uncommited changes in the repository, cannot continue"
    end
  end

  desc 'checks if there is already a tag for the current version'
  task :check_tag do
    sh "git tag | grep '^#{$version}$' >/dev/null" do |ok, res|
      if ok
        raise "******** There is already a tag for version #{$version}, cannot continue"
      end
    end
    puts "Not found tag for version #{$version}, we can go on."
  end

  AUTHORS_HEADER = <<EOF
This list is automatically generated at release time. Please do not change it.

If you are not listed here, but should be, please write to the noosfero mailing
list: http://listas.softwarelivre.org/cgi-bin/mailman/listinfo/noosfero-dev
(this list requires subscription to post, but since you are an author of
noosfero, that's not a problem).

Developers
==========

EOF
  AUTHORS_FOOTER = <<EOF

Ideas, specifications and incentive
===================================
Daniel Tygel <dtygel@fbes.org.br>
Guilherme Rocha <guilherme@gf7.com.br>
Raphael Rousseau <raph@r4f.org>
Théo Bondolfi <move@cooperation.net>
Vicente Aguiar <vicenteaguiar@colivre.coop.br>

Arts
===================================
Nara Oliveira <narananet@gmail.com>
EOF

  desc 'updates the authors file'
  task :authors do
    begin
      File.open("AUTHORS.md", 'w') do |output|
        output.puts AUTHORS_HEADER
        output.puts `./script/authors`
        output.puts AUTHORS_FOOTER
      end
      commit_changes(['AUTHORS.md'], 'Updating authors file') if !pendencies_on_authors[:ok]
    rescue Exception => e
      rm_f 'AUTHORS'
      raise e
    end
  end

  desc 'updates the changelog file'
  task :changelog do
    begin
      File.open("CHANGELOG.md.tmp", 'w') do |output|
        output.puts "# #{$version}\n"
        output.puts `./script/changelog #{$last_version}`
        output.puts "\n"
        output.puts `cat CHANGELOG.md`
      end
      `mv CHANGELOG.md.tmp CHANGELOG.md`
      commit_changes(['CHANGELOG.md'], 'Updating changelog file') if !pendencies_on_changelog[:ok]
    rescue Exception => e
      rm_f 'CHANGELOG.md.tmp'
      raise e
    end
  end

  def ask(message, default = nil, default_message = nil, symbol = ':')
    default_choice = default ? " [#{default_message || default}]#{symbol} " : "#{symbol} "
    print message + default_choice
    answer = STDIN.gets.chomp
    answer.blank? && default.present? ? default : answer
  end

  def confirm(message, default=true)
    default_message = default ? 'Y/n' : 'y/N'
    default_value = default ? 'y' : 'n'
    choice = nil
    while choice.nil?
      answer = ask(message, default_value, default_message, '?')
      if answer.blank?
        choice = default
      elsif ['y', 'yes'].include?(answer.downcase)
        choice = true
      elsif ['n', 'no'].include?(answer.downcase)
        choice = false
      end
    end
    choice
  end

  desc "uploads the packages to the repository"
  task :upload_packages, :target do |t, args|
    target = args[:target] || 'stable'
    source = Dir['pkg/noosfero-*.tar.gz'].first
    sh "gpg --detach-sign #{source}"
    sh "sha256sum #{source} > #{source}.sha256sum"
    sh "rsync -avp #{source}* download.noosfero.org:repos/source/"
    sh "dput --unchecked noosfero-#{target} #{Dir['pkg/*.changes'].first}"
  end

  desc 'sets the new version on apropriate files'
  task :set_version, :target do |t, args|
    next if File.exist?("tmp/pending-release")
    target = args[:target]

    new_version = $version.dup

    if target =~ /-test$/
      if new_version =~ /~rc\d+/
        new_version.sub!(/\~rc([0-9]+).*/) { "~rc#{$1.to_i + 1}" }
      else
        new_version += '~rc1'
      end
    else
      if new_version =~ /~rc\d+.*/
        new_version.sub!(/~rc[0-9]+.*/, '')
      else
        components = new_version.split('.').map(&:to_i)
        if components.size < 3
          components << 1
        else
          components[-1] += 1
        end
        new_version = components.join('.')
      end
    end

    puts "Current version: #{$version}"
    new_version = ask("Version to release", new_version)
    release_message = ask("Release message", "Noosfero #{new_version}")

    sh 'git checkout debian/changelog lib/noosfero/version.rb'
    sh "sed -i \"s/VERSION = '[^']*'/VERSION = '#{new_version}'/\" lib/noosfero/version.rb"
    ENV['DEBFULLNAME'] ||= `git config user.name`.strip
    ENV['DEBEMAIL'] ||= `git config user.email`.strip
    distribution = `dpkg-parsechangelog | sed '/Distribution:/!d; s/^.*:\s*//'`.strip
    sh "dch --newversion #{new_version} --distribution #{distribution} --force-distribution '#{release_message}'"

    sh 'git diff --color debian/changelog lib/noosfero/version.rb'
    if confirm("Commit version bump to #{new_version} on #{target} distribution")
      sh 'git add debian/changelog lib/noosfero/version.rb'
      sh "git commit -m 'Bumping version #{new_version}'"
      sh "touch tmp/pending-release"
    else
      sh 'git checkout debian/changelog lib/noosfero/version.rb'
      abort 'Version update not confirmed. Reverting changes and exiting...'
    end

    $version = new_version
  end

  task :check_release_deps do
    missing = false
    {
      dput: :dput,
      dch: :devscripts,
      git: :git,
    }.each do |program, package|
      if ! system("which #{program} >/dev/null 2>&1")
        puts "Program #{program} missing, install the package #{package}"
        missing = true
      end
    end
    abort if missing
  end

  task :tag do
    sh "git tag -s -m 'Noosfero #{$version}' #{$version.gsub('~','-')}"
  end

  task :pushtag do
    sh "git push origin #{$version.gsub('~','-')}"
  end

  desc 'prepares a release tarball'
  task :release, :target do |t, args|
    target = args[:target]
    if ! target
      abort "Usage: rake noosfero:release[TARGET]"
    end

    puts "==> Checking required packages"
    Rake::Task['noosfero:check_release_deps'].invoke

    puts "==> Updating authors..."
    Rake::Task['noosfero:authors'].invoke

    puts "==> Checking translations..."
    Rake::Task['noosfero:error-pages:translate'].invoke
    if !pendencies_on_public_errors[:ok]
      commit_changes(['public/500.html', 'public/503.html'], 'Updating public error pages')
    end

    Rake::Task['noosfero:set_version'].invoke(target)

    Rake::Task['noosfero:changelog'].invoke

    puts "==> Checking tags..."
    Rake::Task['noosfero:check_tag'].invoke

    puts "==> Checking repository..."
    Rake::Task['noosfero:check_repo'].invoke

    puts "==> Preparing debian packages..."
    Rake::Task['noosfero:debian_packages'].invoke

    if confirm("Create tag for version #{$version}")
      Rake::Task['noosfero:tag'].invoke
      if confirm('Push new version tag')
        puts "==> Uploading tags..."
        Rake::Task['noosfero:pushtag'].invoke
      end
    end

    if confirm('Upload the packages')
      puts "==> Uploading debian packages..."
      Rake::Task['noosfero:upload_packages'].invoke(target)
    else
      puts "I: please upload the package manually later by running"
      puts "I: $ rake noosfero:upload_packages"
    end

    rm_f "tmp/pending-release"
  end

  desc "finishes the release"
  task 'release:finish', :target do |t, args|
    target = args[:target]
    unless target
      abort "E: usage: rake noosfero:release:finish[TARGET]"
    end
    Rake::Task['noosfero:upload_packages'].invoke(target)
    Rake::Task['noosfero:tag'].invoke
    Rake::Task['noosfero:pushtag'].invoke
  end

  desc 'Build Debian packages'
  task :debian_packages => :package do
    target = "pkg/noosfero-#{$version}"

    # base pre-config
    mkdir "#{target}/tmp"

    sh "cd #{target} && dpkg-buildpackage -us -uc -b"
  end

  desc "Build Debian packages (shorcut)"
  task :deb => :debian_packages

  desc 'Build Debian snapshot packages (for local testing)'
  task 'deb:snapshot' => :package do
    target = "pkg/noosfero-#{$version}"
    Dir.chdir target do
      sh 'dch', '-v', $version.gsub('-', '.'), 'snapshot'
    end
    Rake::Task['noosfero:deb'].invoke
  end

  desc 'Test Debian package'
  task 'debian:test' => :debian_packages do
    Dir.chdir 'pkg' do
      rm_rf "noosfero-#{$version}"
      sh 'apt-ftparchive packages . > Packages'
      sh 'apt-ftparchive release . > Release'
    end
  end

end