-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
221 lines (184 loc) · 7.86 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
# -----------------------------------------------------------------------------
#
# RGeo Rakefile
#
# -----------------------------------------------------------------------------
# Copyright 2010 Daniel Azuma
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
# * Neither the name of the copyright holder, nor the names of any other
# contributors to this software, may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# -----------------------------------------------------------------------------
;
module RAKEFILE
PRODUCT_NAME = 'rgeo'
PRODUCT_VERSION = ::File.read(::File.dirname(__FILE__)+'/Version').strip
RUBYFORGE_PROJECT = 'virtuoso'
SOURCE_FILES = ::Dir.glob('lib/**/*.rb')
C_EXT_SOURCE_FILES = ::Dir.glob('ext/**/*.{rb,c,h}')
C_EXT_INFO = {
'geos_c_impl' => 'lib/rgeo/geos/geos_c_impl',
'proj4_c_impl' => 'lib/rgeo/coord_sys/proj4_c_impl',
}
EXTRA_RDOC_FILES = ::Dir.glob('*.rdoc')
ALL_RDOC_FILES = SOURCE_FILES + EXTRA_RDOC_FILES
MAIN_RDOC_FILE = 'README.rdoc'
RDOC_TITLE = "RGeo #{PRODUCT_VERSION} Documentation"
EXTRA_DISTRIB_FILES = ['Version']
EXTRA_CLEAN_FILES = []
TESTCASE_FILES = ::Dir.glob('test/**/tc_*.rb')
ALL_TEST_FILES = ::Dir.glob('test/**/*.rb')
DOC_DIRECTORY = 'doc'
PKG_DIRECTORY = 'pkg'
TMP_DIRECTORY = 'tmp'
PRODUCT_SUMMARY = "RGeo is a spatial data library for Ruby."
PRODUCT_DESCRIPTION = "RGeo is a spatial data library for Ruby. It provides an implementation of the Open Geospatial Consortium's Simple Features Specification, used by most standard spatial/geographic data storage systems such as PostGIS. A number of add-on modules are also available to help with writing location-based applications using Ruby-based frameworks such as Ruby On Rails."
DEPENDENCIES = []
DEVELOPMENT_DEPENDENCIES = []
end
require 'rubygems'
dlext_ = ::Config::CONFIG['DLEXT']
platform_ =
case ::RUBY_DESCRIPTION
when /^jruby\s/ then :jruby
when /^ruby\s/ then :mri
when /^rubinius\s/ then :rubinius
else :unknown
end
platform_suffix_ =
case platform_
when :mri
if ::RUBY_VERSION =~ /^1\.8\..*$/
'mri18'
elsif ::RUBY_VERSION =~ /^1\.9\..*$/
'mri19'
else
raise "Unknown version of Matz Ruby Interpreter (#{::RUBY_VERSION})"
end
when :rubinius then 'rbx'
when :jruby then 'jruby'
else 'unknown'
end
internal_ext_info_ = ::RAKEFILE::C_EXT_INFO.map do |name_, path_|
{
:name => name_,
:source_dir => "ext/#{name_}",
:extconf_path => "ext/#{name_}/extconf.rb",
:source_glob => "ext/#{name_}/*.{c,h}",
:obj_glob => "ext/#{name_}/*.{o,dSYM}",
:suffix_makefile_path => "ext/#{name_}/Makefile_#{platform_suffix_}",
:built_lib_path => "ext/#{name_}/#{name_}.#{dlext_}",
:staged_lib_path => "ext/#{name_}/#{name_}_#{platform_suffix_}.#{dlext_}",
:installed_lib_path => "#{path_}.#{dlext_}",
}
end
internal_ext_info_ = [] if platform_ == :jruby
clean_files_ = [::RAKEFILE::DOC_DIRECTORY, ::RAKEFILE::PKG_DIRECTORY, ::RAKEFILE::TMP_DIRECTORY] + ::Dir.glob('ext/**/Makefile*') + ::Dir.glob('ext/**/*.{o,class,log,dSYM}') + ::Dir.glob("**/*.{#{dlext_},rbc,jar}") + ::RAKEFILE::EXTRA_CLEAN_FILES
c_gemspec_ = ::Gem::Specification.new do |s_|
s_.name = ::RAKEFILE::PRODUCT_NAME
s_.summary = ::RAKEFILE::PRODUCT_SUMMARY
s_.description = ::RAKEFILE::PRODUCT_DESCRIPTION
s_.version = ::RAKEFILE::PRODUCT_VERSION.dup # Because it gets modified
s_.author = 'Daniel Azuma'
s_.email = '[email protected]'
s_.homepage = "http://#{::RAKEFILE::RUBYFORGE_PROJECT}.rubyforge.org/#{::RAKEFILE::PRODUCT_NAME}"
s_.rubyforge_project = ::RAKEFILE::RUBYFORGE_PROJECT
s_.required_ruby_version = '>= 1.8.7'
s_.files = ::RAKEFILE::SOURCE_FILES + ::RAKEFILE::EXTRA_RDOC_FILES + ::RAKEFILE::ALL_TEST_FILES + ::RAKEFILE::C_EXT_SOURCE_FILES + ::RAKEFILE::EXTRA_DISTRIB_FILES
s_.extra_rdoc_files = ::RAKEFILE::EXTRA_RDOC_FILES
s_.has_rdoc = true
s_.test_files = ::RAKEFILE::TESTCASE_FILES
s_.platform = ::Gem::Platform::RUBY
s_.extensions = ::Dir.glob('ext/**/extconf.rb')
::RAKEFILE::DEPENDENCIES.each{ |d_| s_.add_dependency(*d_) }
::RAKEFILE::DEVELOPMENT_DEPENDENCIES.each{ |d_| s_.add_development_dependency(*d_) }
end
internal_ext_info_.each do |info_|
file info_[:staged_lib_path] => [info_[:suffix_makefile_path]] + ::Dir.glob(info_[:source_glob]) do
::Dir.chdir(info_[:source_dir]) do
cp "Makefile_#{platform_suffix_}", 'Makefile'
sh 'make'
rm 'Makefile'
end
mv info_[:built_lib_path], info_[:staged_lib_path]
rm_r ::Dir.glob(info_[:obj_glob])
end
file info_[:suffix_makefile_path] => info_[:extconf_path] do
::Dir.chdir(info_[:source_dir]) do
ruby 'extconf.rb'
mv 'Makefile', "Makefile_#{platform_suffix_}"
end
end
end
task :build_ext => internal_ext_info_.map{ |info_| info_[:staged_lib_path] } do
internal_ext_info_.each do |info_|
cp info_[:staged_lib_path], info_[:installed_lib_path]
end
end
task :clean do
clean_files_.each{ |path_| rm_rf path_ }
end
task :build_rdoc => "#{::RAKEFILE::DOC_DIRECTORY}/index.html"
file "#{::RAKEFILE::DOC_DIRECTORY}/index.html" => ::RAKEFILE::ALL_RDOC_FILES do
rm_r ::RAKEFILE::DOC_DIRECTORY rescue nil
args_ = []
args_ << '-o' << ::RAKEFILE::DOC_DIRECTORY
args_ << '--main' << ::RAKEFILE::MAIN_RDOC_FILE
args_ << '--title' << ::RAKEFILE::RDOC_TITLE
args_ << '-f' << 'darkfish'
args_ << '--verbose' if ::ENV['VERBOSE']
require 'rdoc'
require 'rdoc/rdoc'
require 'rdoc/generator/darkfish'
::RDoc::RDoc.new.document(args_ + ::RAKEFILE::ALL_RDOC_FILES)
end
task :publish_rdoc => :build_rdoc do
config_ = ::YAML.load(::File.read(::File.expand_path("~/.rubyforge/user-config.yml")))
username_ = config_['username']
sh "rsync -av --delete #{::RAKEFILE::DOC_DIRECTORY}/ #{username_}@rubyforge.org:/var/www/gforge-projects/#{::RAKEFILE::RUBYFORGE_PROJECT}/#{::RAKEFILE::PRODUCT_NAME}"
end
task :build_gem do
::Gem::Builder.new(c_gemspec_).build
mkdir_p ::RAKEFILE::PKG_DIRECTORY
mv "#{::RAKEFILE::PRODUCT_NAME}-#{::RAKEFILE::PRODUCT_VERSION}.gem", "#{::RAKEFILE::PKG_DIRECTORY}/"
end
task :release_gem => [:build_gem] do
::Dir.chdir(::RAKEFILE::PKG_DIRECTORY) do
sh "#{::RbConfig::TOPDIR}/bin/gem push #{::RAKEFILE::PRODUCT_NAME}-#{::RAKEFILE::PRODUCT_VERSION}.gem"
end
end
task :test => :build_ext do
$:.unshift(::File.expand_path('lib', ::File.dirname(__FILE__)))
if ::ENV['TESTCASE']
test_files_ = ::Dir.glob("test/#{::ENV['TESTCASE']}.rb")
else
test_files_ = ::RAKEFILE::TESTCASE_FILES
end
test_files_.each do |path_|
load path_
puts "Loaded testcase #{path_}"
end
end
task :default => [:clean, :build_rdoc, :build_gem, :test]