-
Notifications
You must be signed in to change notification settings - Fork 13
/
Rakefile
364 lines (293 loc) · 10.2 KB
/
Rakefile
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
#!rake -*- ruby -*-
#
# pg rakefile
#
# Based on various other Rakefiles, especially one by Ben Bleything
#
# Copyright (c) 2007-2010 The FaerieMUD Consortium
#
# Authors:
# * Michael Granger <ged@FaerieMUD.org>
#
BEGIN {
require 'rbconfig'
require 'pathname'
basedir = Pathname.new( __FILE__ ).dirname
libdir = basedir + "lib"
extdir = libdir + Config::CONFIG['sitearch']
$LOAD_PATH.unshift( basedir.to_s ) unless $LOAD_PATH.include?( basedir.to_s )
$LOAD_PATH.unshift( libdir.to_s ) unless $LOAD_PATH.include?( libdir.to_s )
$LOAD_PATH.unshift( extdir.to_s ) unless $LOAD_PATH.include?( extdir.to_s )
}
begin
require 'readline'
include Readline
rescue LoadError
# Fall back to a plain prompt
def readline( text )
$stderr.print( text.chomp )
return $stdin.gets
end
end
begin
require 'rubygems'
rescue LoadError
module Gem
class Specification; end
end
end
require 'rbconfig'
require 'rake'
require 'rake/testtask'
require 'rake/packagetask'
require 'rake/clean'
# require 'rake/191_compat.rb'
$dryrun = false
### Config constants
BASEDIR = Pathname.new( __FILE__ ).dirname.relative_path_from( Pathname.getwd )
BINDIR = BASEDIR + 'bin'
LIBDIR = BASEDIR + 'lib'
EXTDIR = BASEDIR + 'ext'
DOCSDIR = BASEDIR + 'docs'
PKGDIR = BASEDIR + 'pkg'
DATADIR = BASEDIR + 'data'
MANUALDIR = DOCSDIR + 'manual'
PROJECT_NAME = 'pg'
PKG_NAME = PROJECT_NAME.downcase
PKG_SUMMARY = 'A Ruby interface to the PostgreSQL RDBMS'
# Cruisecontrol stuff
CC_BUILD_LABEL = ENV['CC_BUILD_LABEL']
CC_BUILD_ARTIFACTS = ENV['CC_BUILD_ARTIFACTS'] || 'artifacts'
VERSION_FILE = LIBDIR + '../ext/pg.c'
if VERSION_FILE.exist? && buildrev = ENV['CC_BUILD_LABEL']
PKG_VERSION = VERSION_FILE.read[ /VERSION\s*=\s*['"](\d+\.\d+\.\d+)['"]/, 1 ] + '.' + buildrev
elsif VERSION_FILE.exist?
PKG_VERSION = VERSION_FILE.read[ /VERSION\s*=\s*['"](\d+\.\d+\.\d+)['"]/, 1 ]
end
PKG_VERSION = '0.0.0' unless defined?( PKG_VERSION ) && !PKG_VERSION.nil?
PKG_FILE_NAME = "#{PKG_NAME.downcase}-#{PKG_VERSION}"
GEM_FILE_NAME = "#{PKG_FILE_NAME}.gem"
# Universal VCS constants
DEFAULT_EDITOR = 'vi'
COMMIT_MSG_FILE = 'commit-msg.txt'
FILE_INDENT = " " * 12
LOG_INDENT = " " * 3
EXTCONF = EXTDIR + 'extconf.rb'
ARTIFACTS_DIR = Pathname.new( CC_BUILD_ARTIFACTS )
TEXT_FILES = Rake::FileList.new( %w[Rakefile ChangeLog README* LICENSE] )
BIN_FILES = Rake::FileList.new( "#{BINDIR}/*" )
LIB_FILES = Rake::FileList.new( "#{LIBDIR}/**/*.rb" )
EXT_FILES = Rake::FileList.new( "#{EXTDIR}/**/*.{c,h,rb}" )
DATA_FILES = Rake::FileList.new( "#{DATADIR}/**/*" )
SPECDIR = BASEDIR + 'spec'
SPECLIBDIR = SPECDIR + 'lib'
SPEC_FILES = Rake::FileList.new( "#{SPECDIR}/**/*_spec.rb", "#{SPECLIBDIR}/**/*.rb" )
TESTDIR = BASEDIR + 'tests'
TEST_FILES = Rake::FileList.new( "#{TESTDIR}/**/*.tests.rb" )
RAKE_TASKDIR = BASEDIR + 'rake'
RAKE_TASKLIBS = Rake::FileList.new( "#{RAKE_TASKDIR}/*.rb" )
PKG_TASKLIBS = Rake::FileList.new( "#{RAKE_TASKDIR}/{191_compat,helpers,packaging,rdoc,testing}.rb" )
PKG_TASKLIBS.include( "#{RAKE_TASKDIR}/manual.rb" ) if MANUALDIR.exist?
RAKE_TASKLIBS_URL = 'http://repo.deveiate.org/rake-tasklibs'
LOCAL_RAKEFILE = BASEDIR + 'Rakefile.local'
EXTRA_PKGFILES = Rake::FileList.new
EXTRA_PKGFILES.include( "#{BASEDIR}/README.*" )
EXTRA_PKGFILES.include( "#{BASEDIR}/GPL" )
EXTRA_PKGFILES.include( "#{BASEDIR}/BSD" )
EXTRA_PKGFILES.include( "#{BASEDIR}/Contributors" )
RELEASE_FILES = TEXT_FILES +
SPEC_FILES +
TEST_FILES +
BIN_FILES +
LIB_FILES +
EXT_FILES +
DATA_FILES +
RAKE_TASKLIBS +
EXTRA_PKGFILES
RELEASE_FILES << LOCAL_RAKEFILE.to_s if LOCAL_RAKEFILE.exist?
RELEASE_ANNOUNCE_ADDRESSES = [
"Ruby-Talk List <ruby-talk@ruby-lang.org>",
]
COVERAGE_MINIMUM = ENV['COVERAGE_MINIMUM'] ? Float( ENV['COVERAGE_MINIMUM'] ) : 85.0
RCOV_EXCLUDES = 'spec,tests,/Library/Ruby,/var/lib,/usr/local/lib'
RCOV_OPTS = [
'--exclude', RCOV_EXCLUDES,
'--xrefs',
'--save',
'--callsites',
#'--aggregate', 'coverage.data' # <- doesn't work as of 0.8.1.2.0
]
### Load some task libraries that need to be loaded early
if !RAKE_TASKDIR.exist?
$stderr.puts "It seems you don't have the build task directory. Shall I fetch it "
ans = readline( "for you? [y]" )
ans = 'y' if !ans.nil? && ans.empty?
if ans =~ /^y/i
$stderr.puts "Okay, fetching #{RAKE_TASKLIBS_URL} into #{RAKE_TASKDIR}..."
system 'hg', 'clone', RAKE_TASKLIBS_URL, "./#{RAKE_TASKDIR}"
if ! $?.success?
fail "Damn. That didn't work. Giving up; maybe try manually fetching?"
end
else
$stderr.puts "Then I'm afraid I can't continue. Best of luck."
fail "Rake tasklibs not present."
end
RAKE_TASKLIBS.include( "#{RAKE_TASKDIR}/*.rb" )
end
require RAKE_TASKDIR + 'helpers.rb'
include RakefileHelpers
# Set the build ID if the mercurial executable is available
if hg = which( 'hg' )
id = `#{hg} id -n`.chomp
PKG_BUILD = (id.chomp[ /^[[:xdigit:]]+/ ] || '1')
else
PKG_BUILD = '0'
end
SNAPSHOT_PKG_NAME = "#{PKG_FILE_NAME}.#{PKG_BUILD}"
SNAPSHOT_GEM_NAME = "#{SNAPSHOT_PKG_NAME}.gem"
# Documentation constants
API_DOCSDIR = DOCSDIR + 'api'
README_FILE = TEXT_FILES.find {|path| path =~ /^README/ } || 'README'
RDOC_OPTIONS = [
'--tab-width=4',
'--show-hash',
'--include', BASEDIR.to_s,
"--main=#{README_FILE}",
"--title=#{PKG_NAME}",
]
YARD_OPTIONS = [
'--use-cache',
'--protected',
'-r', README_FILE,
'--exclude', 'extconf\\.rb',
'--files', 'ChangeLog,LICENSE',
'--output-dir', API_DOCSDIR.to_s,
'--title', "#{PKG_NAME} #{PKG_VERSION}",
]
# Release constants
SMTP_HOST = "mail.faeriemud.org"
SMTP_PORT = 465 # SMTP + SSL
# Project constants
PROJECT_HOST = 'deveiate.org'
PROJECT_PUBDIR = '/usr/local/www/public/code/'
PROJECT_DOCDIR = "#{PROJECT_PUBDIR}/#{PKG_NAME}"
PROJECT_SCPPUBURL = "#{PROJECT_HOST}:#{PROJECT_PUBDIR}"
PROJECT_SCPDOCURL = "#{PROJECT_HOST}:#{PROJECT_DOCDIR}"
GEM_PUBHOST = 'rubygems.org'
# Gem dependencies: gemname => version
DEPENDENCIES = {
}
# Developer Gem dependencies: gemname => version
DEVELOPMENT_DEPENDENCIES = {
'rake' => '~> 0.8.7',
'rcodetools' => '~> 0.7.0.0',
'rcov' => '~> 0.8.1.2.0',
'yard' => '~> 0.6.1',
'RedCloth' => '~> 4.2.3',
'rspec' => '~> 2.0.1',
'ruby-termios' => '~> 0.9.6',
'text-format' => '~> 1.0.0',
'tmail' => '~> 1.2.3.1',
'rake-compiler' => '~>0.7.0',
}
# Non-gem requirements: packagename => version
REQUIREMENTS = {
'PostgreSQL' => '>=7.4',
}
# RubyGem specification
GEMSPEC = Gem::Specification.new do |gem|
gem.name = PKG_NAME.downcase
gem.version = PKG_VERSION
gem.summary = PKG_SUMMARY
gem.description = [
"This is the extension library to access a PostgreSQL database from Ruby.",
"This library works with PostgreSQL 7.4 and later.",
].join( "\n" )
gem.authors = ["Jeff Davis", "Michael Granger"]
gem.email = ["ruby-pg@j-davis.com", "ged@FaerieMUD.org"]
gem.homepage = 'http://bitbucket.org/ged/ruby-pg/'
gem.licenses = ["Ruby", "GPL", "BSD"]
gem.has_rdoc = true
gem.rdoc_options = RDOC_OPTIONS
gem.extra_rdoc_files = TEXT_FILES - [ 'Rakefile' ]
gem.bindir = BINDIR.relative_path_from(BASEDIR).to_s
gem.executables = BIN_FILES.select {|pn| File.executable?(pn) }.
collect {|pn| File.basename(pn) }
gem.require_paths << EXTDIR.relative_path_from( BASEDIR ).to_s if EXTDIR.exist?
if EXTCONF.exist?
gem.extensions << EXTCONF.relative_path_from( BASEDIR ).to_s
end
gem.files = RELEASE_FILES
gem.test_files = SPEC_FILES
# signing key and certificate chain
gem.signing_key = '/Volumes/Keys/ged-private_gem_key.pem'
gem.cert_chain = [File.expand_path('~/.gem/ged-public_gem_cert.pem')]
gem.required_ruby_version = '>=1.8.7'
DEPENDENCIES.each do |name, version|
version = '>= 0' if version.length.zero?
gem.add_runtime_dependency( name, version )
end
REQUIREMENTS.each do |name, version|
gem.requirements << [ name, version ].compact.join(' ')
end
end
$trace = Rake.application.options.trace ? true : false
$dryrun = Rake.application.options.dryrun ? true : false
$include_dev_dependencies = false
# Load any remaining task libraries
RAKE_TASKLIBS.each do |tasklib|
next if tasklib.to_s =~ %r{/helpers\.rb$}
begin
trace " loading tasklib %s" % [ tasklib ]
import tasklib
rescue ScriptError => err
fail "Task library '%s' failed to load: %s: %s" %
[ tasklib, err.class.name, err.message ]
trace "Backtrace: \n " + err.backtrace.join( "\n " )
rescue => err
log "Task library '%s' failed to load: %s: %s. Some tasks may not be available." %
[ tasklib, err.class.name, err.message ]
trace "Backtrace: \n " + err.backtrace.join( "\n " )
end
end
# Load any project-specific rules defined in 'Rakefile.local' if it exists
import LOCAL_RAKEFILE if LOCAL_RAKEFILE.exist?
#####################################################################
### T A S K S
#####################################################################
### Default task
task :default => [:clean, :local, :spec, :apidocs, :package]
### Task the local Rakefile can append to -- no-op by default
task :local
### Task: clean
CLEAN.include 'coverage', '**/*.orig', '**/*.rej'
CLOBBER.include 'artifacts', 'coverage.info', 'ChangeLog', PKGDIR
### Task: changelog
file 'ChangeLog' do |task|
log "Updating #{task.name}"
changelog = make_changelog()
File.open( task.name, 'w' ) do |fh|
fh.print( changelog )
end
end
### Task: cruise (Cruisecontrol task)
desc "Cruisecontrol build"
task :cruise => [:clean, 'spec:quiet', :package] do |task|
raise "Artifacts dir not set." if ARTIFACTS_DIR.to_s.empty?
artifact_dir = ARTIFACTS_DIR.cleanpath + (CC_BUILD_LABEL || Time.now.strftime('%Y%m%d-%T'))
artifact_dir.mkpath
coverage = BASEDIR + 'coverage'
if coverage.exist? && coverage.directory?
$stderr.puts "Copying coverage stats..."
FileUtils.cp_r( 'coverage', artifact_dir )
end
$stderr.puts "Copying packages..."
FileUtils.cp_r( FileList['pkg/*'].to_a, artifact_dir )
end
desc "Update the build system to the latest version"
task :update_build do
log "Updating the build system"
run 'hg', '-R', RAKE_TASKDIR, 'pull', '-u'
log "Updating the Rakefile"
sh 'rake', '-f', RAKE_TASKDIR + 'Metarakefile'
end