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
|
load "./GIT-VERSION-GEN"
manifest = "Manifest.txt"
gitidx = File.stat(".git/index") rescue nil
if ! File.exist?(manifest) || File.stat(manifest).mtime < gitidx.mtime
system("git ls-files > #{manifest}")
File.open(manifest, "a") do |fp|
fp.puts "NEWS"
fp.puts "lib/dtas/version.rb"
if system("make -C Documentation")
require 'fileutils'
FileUtils.rm_rf 'man'
if system("make -C Documentation install-man")
`git ls-files -o man`.split(/\n/).each do |man|
fp.puts man
end
else
warn "failed to install manpages for distribution"
end
else
warn "failed to build manpages for distribution"
end
end
File.open("NEWS", "w") do |fp|
`git tag -l`.split(/\n/).each do |tag|
%r{\Av([\d\.]+)} =~ tag or next
version = $1
header, subject, body = `git cat-file tag #{tag}`.split(/\n\n/, 3)
header = header.split(/\n/)
tagger = header.grep(/\Atagger /)[0]
time = Time.at(tagger.split(/ /)[-2].to_i).utc
date = time.strftime("%Y-%m-%d")
fp.write("=== #{version} / #{date}\n\n#{subject}\n\n#{body}")
end
fp.flush
if fp.size <= 5
fp.puts "Unreleased"
end
end
end
require 'hoe'
Hoe.plugin :git
include Rake::DSL
Hoe.spec('dtas') do |p|
developer 'Eric Wong', 'e@80x24.org'
self.readme_file = 'README'
self.history_file = 'NEWS'
self.urls = %w(http://dtas.80x24.org/)
self.summary = x = File.readlines("README")[0].split(/\s+/)[1].chomp
self.description = self.paragraphs_of("README", 1)
license "GPLv3+"
end
task :publish_docs do
dest = "80x24.org:/srv/dtas/"
system("rsync", "--files-from=.document", "-av", "#{Dir.pwd}/", dest)
end
task :coverage do
env = {
"COVERAGE" => "1",
"RUBYOPT" => "-r./test/helper",
}
File.open("coverage.dump", "w").close # clear
pid = Process.spawn(env, "rake")
_, status = Process.waitpid2(pid)
require './test/covshow'
exit status.exitstatus
end
|