-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.rb
executable file
·1482 lines (1233 loc) · 36.2 KB
/
setup.rb
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env ruby
# Setup.rb v3.5.0
# Copyright (c) 2008 Minero Aoki, Trans
#
# This program is free software.
# You can distribute/modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
# Need the package name, and whether to generate documentation.
PACKAGE = File.read(Dir.glob('{.,meta/}unixname{,.txt}', File::FNM_CASEFOLD).first).strip
GENERATE_RDOCS = true # package developer may need to deactivate
require 'optparse'
require 'rbconfig'
class SetupError < StandardError; end
# Typical installation procedure:
#
# $ ./setup.rb
#
# -- or --
#
# $ ./setup.rb config
# $ ./setup.rb setup
# $ ./setup.rb install
#
# @all@ and @install@ may require root privileges.
#
# This update only works with Ruby 1.6.3 and above.
#
# TODO: Update shebangs on install of binaries.
# TODO: Make cleaning more comprehensive (?)
module Setup
Version = "3.5.0"
Copyright = "Copyright (c) 2000,2008 Minero Aoki, Trans"
# ConfigTable stores platform information.
class ConfigTable
RBCONFIG = ::Config::CONFIG
CONFIGFILE = '.config'
DESCRIPTIONS = [
[:prefix , :path, 'path prefix of target environment'],
[:bindir , :path, 'directory for commands'],
[:libdir , :path, 'directory for libraries'],
[:datadir , :path, 'directory for shared data'],
[:mandir , :path, 'directory for man pages'],
[:docdir , :path, 'Directory for documentation'],
[:sysconfdir , :path, 'directory for system configuration files'],
[:localstatedir , :path, 'directory for local state data'],
[:libruby , :path, 'directory for ruby libraries'],
[:librubyver , :path, 'directory for standard ruby libraries'],
[:librubyverarch , :path, 'directory for standard ruby extensions'],
[:siteruby , :path, 'directory for version-independent aux ruby libraries'],
[:siterubyver , :path, 'directory for aux ruby libraries'],
[:siterubyverarch , :path, 'directory for aux ruby binaries'],
[:rbdir , :path, 'directory for ruby scripts'],
[:sodir , :path, 'directory for ruby extentions'],
[:rubypath , :prog, 'path to set to #! line'],
[:rubyprog , :prog, 'ruby program using for installation'],
[:makeprog , :prog, 'make program to compile ruby extentions'],
[:extconfopt , :name, 'options to pass-thru to extconf.rb'],
[:without_ext , :bool, 'do not compile/install ruby extentions'],
[:without_doc , :bool, 'do not generate html documentation'],
[:shebang , :pick, 'shebang line (#!) editing mode (all,ruby,never)'],
[:doctemplate , :pick, 'document template to use (html|xml)'],
[:testrunner , :pick, 'Runner to use for testing (auto|console|tk|gtk|gtk2)'],
[:installdirs , :pick, 'install location mode (std,site,home :: libruby,site_ruby,$HOME)']
]
# List of configurable options.
OPTIONS = DESCRIPTIONS.collect{ |(k,t,v)| k.to_s }
# Pathname attribute. Pathnames are automatically expanded
# unless they start with '$', a path variable.
def self.attr_pathname(name)
class_eval %{
def #{name}
@#{name}.gsub(%r<\\$([^/]+)>){ self[$1] }
end
def #{name}=(path)
raise SetupError, "bad config: #{name.to_s.upcase} requires argument" unless path
@#{name} = (path[0,1] == '$' ? path : File.expand_path(path))
end
}
end
# List of pathnames. These are not expanded though.
def self.attr_pathlist(name)
class_eval %{
def #{name}
@#{name}
end
def #{name}=(pathlist)
case pathlist
when Array
@#{name} = pathlist
else
@#{name} = pathlist.to_s.split(/[:;,]/)
end
end
}
end
# Adds boolean support.
def self.attr_accessor(*names)
bools, attrs = names.partition{ |name| name.to_s =~ /\?$/ }
attr_boolean *bools
super *attrs
end
# Boolean attribute. Can be assigned true, false, nil, or
# a string matching yes|true|y|t or no|false|n|f.
def self.attr_boolean(*names)
names.each do |name|
name = name.to_s.chomp('?')
attr_reader name # MAYBE: Deprecate
code = %{
def #{name}?; @#{name}; end
def #{name}=(val)
case val
when true, false, nil
@#{name} = val
else
case val.to_s.downcase
when 'y', 'yes', 't', 'true'
@#{name} = true
when 'n', 'no', 'f', 'false'
@#{name} = false
else
raise SetupError, "bad config: use #{name.upcase}=(yes|no) [\#{val}]"
end
end
end
}
class_eval code
end
end
DESCRIPTIONS.each do |k,t,d|
case t
when :path
attr_pathname k
when :bool
attr_boolean k
else
attr_accessor k
end
end
# # provide verbosity (default is true)
# attr_accessor :verbose?
# # don't actually write files to system
# attr_accessor :no_harm?
# shebang has only three options.
def shebang=(val)
if %w(all ruby never).include?(val)
@shebang = val
else
raise SetupError, "bad config: use SHEBANG=(all|ruby|never) [#{val}]"
end
end
# installdirs has only three options; and it has side-effects.
def installdirs=(val)
@installdirs = val
case val.to_s
when 'std'
self.rbdir = '$librubyver'
self.sodir = '$librubyverarch'
when 'site'
self.rbdir = '$siterubyver'
self.sodir = '$siterubyverarch'
when 'home'
raise SetupError, 'HOME is not set.' unless ENV['HOME']
self.prefix = ENV['HOME']
self.rbdir = '$libdir/ruby'
self.sodir = '$libdir/ruby'
else
raise SetupError, "bad config: use INSTALLDIRS=(std|site|home|local) [#{val}]"
end
end
# New ConfigTable
def initialize(values=nil)
initialize_defaults
if values
values.each{ |k,v| __send__("#{k}=", v) }
end
yeild(self) if block_given?
load_config if File.file?(CONFIGFILE)
end
# Assign CONFIG defaults
#
# TODO: Does this handle 'nmake' on windows?
def initialize_defaults
prefix = RBCONFIG['prefix']
rubypath = File.join(RBCONFIG['bindir'], RBCONFIG['ruby_install_name'] + RBCONFIG['EXEEXT'])
major = RBCONFIG['MAJOR'].to_i
minor = RBCONFIG['MINOR'].to_i
teeny = RBCONFIG['TEENY'].to_i
version = "#{major}.#{minor}"
# ruby ver. >= 1.4.4?
newpath_p = ((major >= 2) or
((major == 1) and
((minor >= 5) or
((minor == 4) and (teeny >= 4)))))
if RBCONFIG['rubylibdir']
# V > 1.6.3
libruby = "#{prefix}/lib/ruby"
librubyver = RBCONFIG['rubylibdir']
librubyverarch = RBCONFIG['archdir']
siteruby = RBCONFIG['sitedir']
siterubyver = RBCONFIG['sitelibdir']
siterubyverarch = RBCONFIG['sitearchdir']
elsif newpath_p
# 1.4.4 <= V <= 1.6.3
libruby = "#{prefix}/lib/ruby"
librubyver = "#{prefix}/lib/ruby/#{version}"
librubyverarch = "#{prefix}/lib/ruby/#{version}/#{c['arch']}"
siteruby = RBCONFIG['sitedir']
siterubyver = "$siteruby/#{version}"
siterubyverarch = "$siterubyver/#{RBCONFIG['arch']}"
else
# V < 1.4.4
libruby = "#{prefix}/lib/ruby"
librubyver = "#{prefix}/lib/ruby/#{version}"
librubyverarch = "#{prefix}/lib/ruby/#{version}/#{c['arch']}"
siteruby = "#{prefix}/lib/ruby/#{version}/site_ruby"
siterubyver = siteruby
siterubyverarch = "$siterubyver/#{RBCONFIG['arch']}"
end
if arg = RBCONFIG['configure_args'].split.detect {|arg| /--with-make-prog=/ =~ arg }
makeprog = arg.sub(/'/, '').split( /=/, 2)[1]
else
makeprog = 'make'
end
parameterize = lambda do |path|
val = RBCONFIG[path]
raise "Unknown path -- #{path}" if val.nil?
val.sub(/\A#{Regexp.quote(prefix)}/, '$prefix')
end
self.prefix = prefix
self.bindir = parameterize['bindir']
self.libdir = parameterize['libdir']
self.datadir = parameterize['datadir']
self.mandir = parameterize['mandir']
self.docdir = File.dirname(parameterize['docdir']) # b/c of trailing $(PACKAGE)
self.sysconfdir = parameterize['sysconfdir']
self.localstatedir = parameterize['localstatedir']
self.libruby = libruby
self.librubyver = librubyver
self.librubyverarch = librubyverarch
self.siteruby = siteruby
self.siterubyver = siterubyver
self.siterubyverarch = siterubyverarch
self.rbdir = '$siterubyver'
self.sodir = '$siterubyverarch'
self.rubypath = rubypath
self.rubyprog = rubypath
self.makeprog = makeprog
self.extconfopt = ''
self.shebang = 'ruby'
self.without_ext = 'no'
self.without_doc = 'yes'
self.doctemplate = 'html'
self.testrunner = 'auto'
self.installdirs = 'site'
end
# Get configuration from environment.
def env_config
OPTIONS.each do |name|
if value = ENV[name]
__send__("#{name}=",value)
end
end
end
# Load configuration.
def load_config
#if File.file?(CONFIGFILE)
begin
File.foreach(CONFIGFILE) do |line|
k, v = *line.split( /=/, 2)
__send__("#{k}=",v.strip) #self[k] = v.strip
end
rescue Errno::ENOENT
raise SetupError, $!.message + "\n#{File.basename($0)} config first"
end
#end
end
# Save configuration.
def save_config
File.open(CONFIGFILE, 'w') do |f|
OPTIONS.each do |name|
val = self[name]
f << "#{name}=#{val}\n"
end
end
end
def show
fmt = "%-20s %s\n"
OPTIONS.each do |name|
value = self[name]
reslv = __send__(name)
case reslv
when String
reslv = "(none)" if reslv.empty?
when false, nil
reslv = "no"
when true
reslv = "yes"
end
printf fmt, name, reslv
end
end
#
def extconfs
@extconfs ||= Dir['ext/**/extconf.rb']
end
def extensions
@extensions ||= extconfs.collect{ |f| File.dirname(f) }
end
def compiles?
!extensions.empty?
end
private
# Get unresloved attribute.
def [](name)
instance_variable_get("@#{name}")
end
# Set attribute.
def []=(name, value)
instance_variable_set("@#{name}", value)
end
# Resolved attribute. (for paths)
#def resolve(name)
# self[name].gsub(%r<\\$([^/]+)>){ self[$1] }
#end
end
# Installer class handles the actual install procedure,
# as well as the other tasks, such as testing.
class Installer
MANIFEST = '.installedfiles'
FILETYPES = %w( bin lib ext data conf man doc )
TASK_DESCRIPTIONS = [
[ 'all', 'do config, setup, then install' ],
[ 'config', 'saves your configurations' ],
[ 'show', 'shows current configuration' ],
[ 'setup', 'compiles ruby extentions and others' ],
[ 'doc', 'generate html documentation' ],
[ 'index', 'generate index documentation' ],
[ 'install', 'installs files' ],
[ 'test', 'run all tests in test/' ],
[ 'clean', "does `make clean' for each extention" ],
[ 'distclean',"does `make distclean' for each extention" ]
]
TASKS = %w(all config show setup test install uninstall doc index clean distclean)
# Configuration
attr :config
attr_writer :no_harm
attr_writer :verbose
attr_writer :quiet
attr_accessor :install_prefix
# New Installer.
def initialize #:yield:
srcroot = '.'
objroot = '.'
@config = ConfigTable.new
@srcdir = File.expand_path(srcroot)
@objdir = File.expand_path(objroot)
@currdir = '.'
self.quiet = ENV['quiet'] if ENV['quiet']
self.verbose = ENV['verbose'] if ENV['verbose']
self.no_harm = ENV['nowrite'] if ENV['nowrite']
yield(self) if block_given?
end
def inspect
"#<#{self.class} #{File.basename(@srcdir)}>"
end
# Are we running an installation?
def installation?; @installation; end
def installation!; @installation = true; end
def no_harm?; @no_harm; end
def verbose?; @verbose; end
def quiet?; @quiet; end
def verbose_off #:yield:
begin
save, @verbose = verbose?, false
yield
ensure
@verbose = save
end
end
# Rake task handlers
def rake_define
require 'rake/clean'
desc 'Config, setup and then install'
task :all => [:config, :setup, :install]
desc 'Saves your configurations'
task :config do exec_config end
desc 'Compiles ruby extentions'
task :setup do exec_setup end
desc 'Runs unit tests'
task :test do exec_test end
desc 'Generate html api docs'
task :doc do exec_doc end
desc 'Generate api index docs'
task :index do exec_index end
desc 'Installs files'
task :install do exec_install end
desc 'Uninstalls files'
task :uninstall do exec_uninstall end
#desc "Does `make clean' for each extention"
task :makeclean do exec_clean end
task :clean => [:makeclean]
#desc "Does `make distclean' for each extention"
task :distclean do exec_distclean end
task :clobber => [:distclean]
desc 'Shows current configuration'
task :show do exec_show end
end
# Added these for future use in simplificaiton of design.
def extensions
@extensions ||= Dir['ext/**/extconf.rb']
end
def compiles?
!extensions.empty?
end
#
def noop(rel); end
#
# Hook Script API bases
#
def srcdir_root
@srcdir
end
def objdir_root
@objdir
end
def relpath
@currdir
end
#
# Task all
#
def exec_all
exec_config
exec_setup
exec_test # TODO: we need to stop here if tests fail (how?)
exec_doc if GENERATE_RDOCS && !config.without_doc?
exec_install
end
#
# TASK config
#
def exec_config
config.env_config
config.save_config
config.show unless quiet?
puts("Configuration saved.") unless quiet?
exec_task_traverse 'config'
end
alias config_dir_bin noop
alias config_dir_lib noop
def config_dir_ext(rel)
extconf if extdir?(curr_srcdir())
end
alias config_dir_data noop
alias config_dir_conf noop
alias config_dir_man noop
alias config_dir_doc noop
def extconf
ruby "#{curr_srcdir()}/extconf.rb", config.extconfopt
end
#
# TASK show
#
def exec_show
config.show
end
#
# TASK setup
#
# FIXME: Update shebang at time of install not before.
# for now I've commented it out the shebang.
def exec_setup
exec_task_traverse 'setup'
end
def setup_dir_bin(rel)
files_of(curr_srcdir()).each do |fname|
#update_shebang_line "#{curr_srcdir()}/#{fname}"
end
end
alias setup_dir_lib noop
def setup_dir_ext(rel)
make if extdir?(curr_srcdir())
end
alias setup_dir_data noop
alias setup_dir_conf noop
alias setup_dir_man noop
alias setup_dir_doc noop
def update_shebang_line(path)
return if no_harm?
return if config.shebang == 'never'
old = Shebang.load(path)
if old
if old.args.size > 1
$stderr.puts "warning: #{path}"
$stderr.puts "Shebang line has too many args."
$stderr.puts "It is not portable and your program may not work."
end
new = new_shebang(old)
return if new.to_s == old.to_s
else
return unless config.shebang == 'all'
new = Shebang.new(config.rubypath)
end
$stderr.puts "updating shebang: #{File.basename(path)}" if verbose?
open_atomic_writer(path) {|output|
File.open(path, 'rb') {|f|
f.gets if old # discard
output.puts new.to_s
output.print f.read
}
}
end
def new_shebang(old)
if /\Aruby/ =~ File.basename(old.cmd)
Shebang.new(config.rubypath, old.args)
elsif File.basename(old.cmd) == 'env' and old.args.first == 'ruby'
Shebang.new(config.rubypath, old.args[1..-1])
else
return old unless config.shebang == 'all'
Shebang.new(config.rubypath)
end
end
def open_atomic_writer(path, &block)
tmpfile = File.basename(path) + '.tmp'
begin
File.open(tmpfile, 'wb', &block)
File.rename tmpfile, File.basename(path)
ensure
File.unlink tmpfile if File.exist?(tmpfile)
end
end
class Shebang
def Shebang.load(path)
line = nil
File.open(path) {|f|
line = f.gets
}
return nil unless /\A#!/ =~ line
parse(line)
end
def Shebang.parse(line)
cmd, *args = *line.strip.sub(/\A\#!/, '').split(' ')
new(cmd, args)
end
def initialize(cmd, args = [])
@cmd = cmd
@args = args
end
attr_reader :cmd
attr_reader :args
def to_s
"#! #{@cmd}" + (@args.empty? ? '' : " #{@args.join(' ')}")
end
end
#
# TASK test
#
# TODO: Add spec support.
def exec_test
$stderr.puts 'Running tests...' if verbose?
runner = config.testrunner
case runner
when 'auto'
unless File.directory?('test')
$stderr.puts 'no test in this package' if verbose?
return
end
begin
require 'test/unit'
rescue LoadError
setup_rb_error 'test/unit cannot loaded. You need Ruby 1.8 or later to invoke this task.'
end
autorunner = Test::Unit::AutoRunner.new(true)
autorunner.to_run << 'test'
autorunner.run
else # use testrb
opt = []
opt << " -v" if verbose?
opt << " --runner #{runner}"
if File.file?('test/suite.rb')
notests = false
opt << "test/suite.rb"
else
notests = Dir["test/**/*.rb"].empty?
lib = ["lib"] + config.extensions.collect{ |d| File.dirname(d) }
opt << "-I" + lib.join(':')
opt << Dir["test/**/{test,tc}*.rb"]
end
opt = opt.flatten.join(' ').strip
# run tests
if notests
$stderr.puts 'no test in this package' if verbose?
else
cmd = "testrb #{opt}"
$stderr.puts cmd if verbose?
system cmd #config.ruby "-S tesrb", opt
end
end
end
# MAYBE: We could traverse and run each test independently (?)
#def test_dir_test
#end
#
# TASK doc
#
def exec_doc
output = File.join('doc', 'rdoc')
title = (PACKAGE.capitalize + " API").strip
main = Dir.glob("README{,.txt}", File::FNM_CASEFOLD).first
template = config.doctemplate || 'html'
opt = []
opt << "-U"
opt << "-S"
opt << "--op=#{output}"
opt << "--template=#{template}"
opt << "--title=#{title}"
opt << "--main=#{main}" if main
if File.exist?('.document')
files = File.read('.document').split("\n")
files.reject!{ |l| l =~ /^\s*[#]/ || l !~ /\S/ }
files.collect!{ |f| f.strip }
opt << files
else
opt << main if main
opt << ["lib", "ext"]
end
opt = opt.flatten
if no_harm?
puts "rdoc " + opt.join(' ').strip
else
#sh "rdoc {opt.join(' ').strip}"
require 'rdoc/rdoc'
::RDoc::RDoc.new.document(opt)
end
end
#
# TASK index
#
# TODO: Totally deprecate stadard ri support in favor of fastri.
def exec_index
begin
require 'fastri/version'
fastri = true
rescue LoadError
fastri = false
end
if fastri
if no_harm?
$stderr.puts "fastri-server -b"
else
system "fastri-server -b"
end
else
case config.installdirs
when 'std'
output = "--ri-system"
when 'site'
output = "--ri-site"
when 'home'
output = "--ri"
else
abort "bad config: sould not be possible -- installdirs = #{config.installdirs}"
end
if File.exist?('.document')
files = File.read('.document').split("\n")
files.reject!{ |l| l =~ /^\s*[#]/ || l !~ /\S/ }
files.collect!{ |f| f.strip }
else
files = ["lib", "ext"]
end
opt = []
opt << "-U"
opt << output
opt << files
opt = opt.flatten
if no_harm?
puts "rdoc #{opt.join(' ').strip}"
else
#sh "rdoc #{opt.join(' ').strip}"
require 'rdoc/rdoc'
::RDoc::RDoc.new.document(opt)
end
end
end
#
# TASK install
#
def exec_install
installation! # were are installing
#rm_f MANIFEST # we'll append rather then delete!
exec_task_traverse 'install'
end
def install_dir_bin(rel)
install_files targetfiles(), "#{config.bindir}/#{rel}", 0755
end
def install_dir_lib(rel)
install_files libfiles(), "#{config.rbdir}/#{rel}", 0644
end
def install_dir_ext(rel)
return unless extdir?(curr_srcdir())
install_files rubyextentions('.'),
"#{config.sodir}/#{File.dirname(rel)}", 0555
end
def install_dir_data(rel)
install_files targetfiles(), "#{config.datadir}/#{rel}", 0644
end
def install_dir_conf(rel)
# FIXME: should not remove current config files
# (rename previous file to .old/.org)
install_files targetfiles(), "#{config.sysconfdir}/#{rel}", 0644
end
def install_dir_man(rel)
install_files targetfiles(), "#{config.mandir}/#{rel}", 0644
end
# doc installs to directory named: "ruby-#{package}"
def install_dir_doc(rel)
return if config.without_doc?
dir = "#{config.docdir}/ruby-#{PACKAGE}/#{rel}" # "#{config.docdir}/#{rel}"
install_files targetfiles(), dir, 0644
end
def install_files(list, dest, mode)
mkdir_p dest, install_prefix
list.each do |fname|
install fname, dest, mode, install_prefix
end
end
def libfiles
glob_reject(%w(*.y *.output), targetfiles())
end
def rubyextentions(dir)
ents = glob_select("*.#{dllext}", targetfiles())
if ents.empty?
setup_rb_error "no ruby extention exists: 'ruby #{$0} setup' first"
end
ents
end
def dllext
ConfigTable::RBCONFIG['DLEXT']
end
def targetfiles
mapdir(existfiles() - hookfiles())
end
def mapdir(ents)
ents.map {|ent|
if File.exist?(ent)
then ent # objdir
else "#{curr_srcdir()}/#{ent}" # srcdir
end
}
end
# picked up many entries from cvs-1.11.1/src/ignore.c
JUNK_FILES = %w(
core RCSLOG tags TAGS .make.state
.nse_depinfo #* .#* cvslog.* ,* .del-* *.olb
*~ *.old *.bak *.BAK *.orig *.rej _$* *$
*.org *.in .*
)
def existfiles
glob_reject(JUNK_FILES, (files_of(curr_srcdir()) | files_of('.')))
end
def hookfiles
%w( pre-%s post-%s pre-%s.rb post-%s.rb ).map {|fmt|
%w( config setup install clean ).map {|t| sprintf(fmt, t) }
}.flatten
end
def glob_select(pat, ents)
re = globs2re([pat])
ents.select {|ent| re =~ ent }
end
def glob_reject(pats, ents)
re = globs2re(pats)
ents.reject {|ent| re =~ ent }
end
GLOB2REGEX = {
'.' => '\.',
'$' => '\$',
'#' => '\#',
'*' => '.*'
}
def globs2re(pats)
/\A(?:#{
pats.map {|pat| pat.gsub(/[\.\$\#\*]/) {|ch| GLOB2REGEX[ch] } }.join('|')
})\z/
end
#
# TASK uninstall
#
def exec_uninstall
paths = File.read(MANIFEST).split("\n")
dirs, files = paths.partition{ |f| File.dir?(f) }
files.each do |file|
next if /^\#/ =~ file # skip comments
rm_f(file) if File.exist?(file)
end
dirs.each do |dir|
# okay this is over kill, but playing it safe...
empty = Dir[File.join(dir,'*')].empty?
begin
if no_harm?
$stderr.puts "rmdir #{dir}"
else
rmdir(dir) if empty
end
rescue Errno::ENOTEMPTY
$stderr.puts "may not be empty -- #{dir}" if verbose?
end
end
rm_f(MANIFEST)
end
#
# TASK clean
#
def exec_clean
exec_task_traverse 'clean'
rm_f ConfigTable::CONFIGFILE
#rm_f MANIFEST # only on clobber!
end
alias clean_dir_bin noop
alias clean_dir_lib noop
alias clean_dir_data noop
alias clean_dir_conf noop
alias clean_dir_man noop
alias clean_dir_doc noop
def clean_dir_ext(rel)
return unless extdir?(curr_srcdir())
make 'clean' if File.file?('Makefile')
end
#
# TASK distclean
#
def exec_distclean
exec_task_traverse 'distclean'
rm_f ConfigTable::CONFIGFILE
rm_f MANIFEST
end
alias distclean_dir_bin noop
alias distclean_dir_lib noop
def distclean_dir_ext(rel)
return unless extdir?(curr_srcdir())
make 'distclean' if File.file?('Makefile')
end