autoproj 1.6.2.rc9 → 1.6.2

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -10,7 +10,7 @@
10
10
  errors are properly presented at the end of the run.
11
11
  * when boostrapping, check that the current directory is empty and warn the
12
12
  user if it is not.
13
- * a few more minor bugfixes
13
+ * a few minor bugfixes
14
14
 
15
15
  = Version 1.6.1
16
16
  * fix a limitation of giving directories on the command line. Before, only
data/Manifest.txt CHANGED
@@ -7,6 +7,7 @@ doc/guide/config.yaml
7
7
  doc/guide/ext/init.rb
8
8
  doc/guide/ext/previous_next.rb
9
9
  doc/guide/ext/rdoc_links.rb
10
+ doc/guide/src/adding_packages.page
10
11
  doc/guide/src/autoproj_bootstrap
11
12
  doc/guide/src/customization.page
12
13
  doc/guide/src/default.css
@@ -41,6 +42,7 @@ lib/autoproj/options.rb
41
42
  lib/autoproj/osdeps.rb
42
43
  lib/autoproj/system.rb
43
44
  lib/autoproj/version.rb
45
+ samples/autoproj/README.txt
44
46
  samples/autoproj/init.rb
45
47
  samples/autoproj/manifest
46
48
  samples/autoproj/overrides.rb
data/Rakefile CHANGED
@@ -14,7 +14,7 @@ begin
14
14
  self.changes = paragraphs_of('History.txt', 0..1).join("\n\n")
15
15
 
16
16
  extra_deps <<
17
- ['autobuild', '>= 1.5.9'] <<
17
+ ['autobuild', '>= 1.5.23'] <<
18
18
  ['rmail', '>= 1.0.0'] <<
19
19
  ['utilrb', '>= 1.3.3'] <<
20
20
  ['nokogiri', '>= 1.3.3'] <<
@@ -0,0 +1,40 @@
1
+ ---
2
+ title: Adding packages (for the impatient)
3
+ sort_info: 50
4
+ ---
5
+
6
+ To register a package in autoproj, you need to basically do two things
7
+
8
+ * declare it in an autobuild file
9
+ * add VCS information for it (i.e. "where to get it")
10
+
11
+ A first step
12
+ ------------
13
+
14
+ A quick thing that can be done to register a new package in your autoproj
15
+ installation is to add it to the local package set.
16
+
17
+ * [register it](package_sets/autobuild.html) in
18
+ <tt>autoproj/local.autobuild</tt>
19
+ * [give version control information](package_sets/importers.html) for it in
20
+ <tt>autoproj/overrides.yml</tt>
21
+
22
+ Alternatively to the last point, you can register it under the "type: none"
23
+ importer in autoproj/overrides.yml to make autoproj not care about updating that
24
+ package.
25
+
26
+ Sharing package definitions with the rest of the world
27
+ ------------------------------------------------------
28
+
29
+ To do that, you will either have to move the package definition to a separate
30
+ package set (usually one of those that are in autoproj/remotes/), or to create
31
+ your own package set]
32
+
33
+ For the first solution, you will have to move the package definition from
34
+ autoproj/local.autobuild to an autobuild file in the package set directory (name
35
+ does not matter as long as it ends with .autobuild). Moreover, you will have to
36
+ move the importer definition from autoproj/overrides.yml to the package set's
37
+ source.yml file.
38
+
39
+ For the second solution, [read on](package_sets/index.html)
40
+
@@ -218,11 +218,11 @@ module Autoproj
218
218
  # system on which we are installed
219
219
  def self.supported_operating_system?
220
220
  if @supported_operating_system.nil?
221
- osdef = operating_system
221
+ os_names, _ = operating_system
222
222
  @supported_operating_system =
223
- if !osdef then false
223
+ if !os_names then false
224
224
  else
225
- OS_AUTO_PACKAGE_INSTALL.has_key?(osdef[0])
225
+ os_names.any? { |os_name| OS_AUTO_PACKAGE_INSTALL.has_key?(os_name) }
226
226
  end
227
227
  end
228
228
  return @supported_operating_system
@@ -242,15 +242,21 @@ module Autoproj
242
242
  if @operating_system
243
243
  return @operating_system
244
244
  elsif Autoproj.has_config_key?('operating_system')
245
- return (@operating_system = Autoproj.user_config('operating_system'))
245
+ os = Autoproj.user_config('operating_system')
246
+ if !os.respond_to?(:to_ary) # upgrade from previous format
247
+ @operating_system = nil
248
+ end
246
249
  end
247
250
 
248
251
  Autoproj.progress " autodetecting the operating system"
249
- if data = os_from_lsb
250
- if data[0] != "debian"
251
- # if on Debian proper, fall back to reading debian_version,
252
- # as sid is listed as lenny by lsb-release
253
- @operating_system = data
252
+ name, versions = os_from_lsb
253
+ if name
254
+ if name != "debian"
255
+ if File.exists?("/etc/debian_version")
256
+ @operating_system = [[name, "debian"], versions]
257
+ else
258
+ @operating_system = [[name], versions]
259
+ end
254
260
  end
255
261
  end
256
262
 
@@ -258,18 +264,18 @@ module Autoproj
258
264
  # Need to do some heuristics unfortunately
259
265
  @operating_system =
260
266
  if File.exists?('/etc/debian_version')
261
- codename = [File.read('/etc/debian_version').strip]
262
- if codename.first =~ /sid/
263
- codename << "unstable" << "sid"
267
+ codenames = [File.read('/etc/debian_version').strip]
268
+ if codenames.first =~ /sid/
269
+ codenames << "unstable" << "sid"
264
270
  end
265
- ['debian', codename]
271
+ [['debian'], codenames]
266
272
  elsif File.exists?('/etc/gentoo-release')
267
273
  release_string = File.read('/etc/gentoo-release').strip
268
274
  release_string =~ /^.*([^\s]+)$/
269
275
  version = $1
270
- ['gentoo', [version]]
276
+ [['gentoo'], [version]]
271
277
  elsif File.exists?('/etc/arch-release')
272
- ['arch', []]
278
+ [['arch'], []]
273
279
  end
274
280
  end
275
281
 
@@ -279,8 +285,8 @@ module Autoproj
279
285
 
280
286
  # Normalize the names to lowercase
281
287
  @operating_system =
282
- [@operating_system[0].downcase,
283
- @operating_system[1].map(&:downcase)]
288
+ [@operating_system[0].map(&:downcase),
289
+ [@operating_system[1].map(&:downcase) + ["default"]]]
284
290
  Autoproj.change_option('operating_system', @operating_system, true)
285
291
  @operating_system
286
292
  end
@@ -372,28 +378,30 @@ fi
372
378
  # +definition+ is an array of package names that this OS's package
373
379
  # manager can understand
374
380
  def resolve_package(name)
375
- os_name, os_version = OSDependencies.operating_system
381
+ os_names, os_versions = OSDependencies.operating_system
376
382
 
377
383
  dep_def = definitions[name]
378
384
  if !dep_def
379
385
  return NO_PACKAGE
380
386
  end
381
387
 
382
- if !os_name
388
+ if !os_names
383
389
  return UNKNOWN_OS
384
390
  end
385
391
 
386
392
  # Find a matching entry for the OS name
387
- os_entry = dep_def.find do |name_list, data|
388
- name_list.split(',').
389
- map(&:downcase).
390
- any? { |n| n == os_name }
393
+ os_entry = nil
394
+ os_names.find do |os_name|
395
+ os_entry = dep_def.find do |name_list, data|
396
+ name_list.split(',').
397
+ map(&:downcase).
398
+ any? { |n| n == os_name }
399
+ end
391
400
  end
392
401
 
393
402
  if !os_entry
394
403
  return WRONG_OS
395
404
  end
396
-
397
405
  data = os_entry.last
398
406
 
399
407
  # This package does not need to be installed on this operating system (example: build tools on Gentoo)
@@ -402,12 +410,17 @@ fi
402
410
  end
403
411
 
404
412
  if data.kind_of?(Hash)
405
- version_entry = data.find do |version_list, data|
406
- version_list.to_s.split(',').
407
- map(&:downcase).
408
- any? do |v|
409
- os_version.any? { |osv| Regexp.new(v) =~ osv }
413
+ version_entry = nil
414
+ os_versions.each do |os_version|
415
+ version_entry =
416
+ data.find do |version_list, data|
417
+ version_list.to_s.split(',').
418
+ map(&:downcase).
419
+ any? do |v|
420
+ os_version.any? { |osv| Regexp.new(v) =~ osv }
421
+ end
410
422
  end
423
+ break if version_entry
411
424
  end
412
425
 
413
426
  if !version_entry
@@ -418,7 +431,7 @@ fi
418
431
 
419
432
  if data.respond_to?(:to_ary)
420
433
  return [PACKAGES, data]
421
- elsif data.to_str =~ /\w+/
434
+ elsif data.respond_to?(:to_str)
422
435
  return [PACKAGES, [data.to_str]]
423
436
  else
424
437
  raise ConfigError, "invalid package specificiation #{data} in #{source_of(name)}"
@@ -430,7 +443,7 @@ fi
430
443
  #
431
444
  # Raises ConfigError if some packages can't be found
432
445
  def resolve_os_dependencies(dependencies)
433
- os_name, os_version = OSDependencies.operating_system
446
+ os_names, _ = OSDependencies.operating_system
434
447
 
435
448
  os_packages = []
436
449
  dependencies.each do |name|
@@ -448,22 +461,30 @@ fi
448
461
  end
449
462
  end
450
463
 
451
- if !OS_AUTO_PACKAGE_INSTALL.has_key?(os_name)
452
- raise ConfigError, "I don't know how to install packages on #{os_name}"
464
+ if !os_names.any? { |os_name| OS_AUTO_PACKAGE_INSTALL.has_key?(os_name) }
465
+ raise ConfigError, "I don't know how to install packages on #{os_names.first}"
453
466
  end
454
467
 
455
468
  return os_packages
456
469
  end
457
470
 
458
471
 
459
- def generate_user_os_script(os_name, os_packages)
460
- if OS_USER_PACKAGE_INSTALL[os_name]
461
- (OS_USER_PACKAGE_INSTALL[os_name] % [os_packages.join("' '")])
462
- else generate_auto_os_script(os_name, os_packages)
472
+ def generate_user_os_script(os_names, os_packages)
473
+ user_package_install = nil
474
+ os_names.find do |os_name|
475
+ user_package_install = OS_USER_PACKAGE_INSTALL[os_name]
476
+ end
477
+ if user_package_install
478
+ (user_package_install % [os_packages.join("' '")])
479
+ else generate_auto_os_script(os_names, os_packages)
463
480
  end
464
481
  end
465
- def generate_auto_os_script(os_name, os_packages)
466
- (OS_AUTO_PACKAGE_INSTALL[os_name] % [os_packages.join("' '")])
482
+ def generate_auto_os_script(os_names, os_packages)
483
+ auto_package_install = nil
484
+ os_names.find do |os_name|
485
+ auto_package_install = OS_AUTO_PACKAGE_INSTALL[os_name]
486
+ end
487
+ (auto_package_install % [os_packages.join("' '")])
467
488
  end
468
489
 
469
490
  # Returns true if +name+ is an acceptable OS package for this OS and
@@ -557,14 +578,17 @@ fi
557
578
  # Returns true if the osdeps system knows how to remove uptodate
558
579
  # packages from the needs-to-be-installed package list on this OS
559
580
  def can_filter_uptodate_packages?
560
- os_name, _ = OSDependencies.operating_system
561
- !!OS_PACKAGE_CHECK[os_name]
581
+ os_names, _ = OSDependencies.operating_system
582
+ !!os_names.any? { |os_name| OS_PACKAGE_CHECK[os_name] }
562
583
  end
563
584
 
564
585
  # Returns the set of packages in +packages+ that are not already
565
586
  # installed on this OS, if it is supported
566
- def filter_uptodate_os_packages(packages, os_name)
567
- check_method = OS_PACKAGE_CHECK[os_name]
587
+ def filter_uptodate_os_packages(packages, os_names)
588
+ check_method = nil
589
+ os_names.find do |os_name|
590
+ check_method = OS_PACKAGE_CHECK[os_name]
591
+ end
568
592
  return packages.dup if !check_method
569
593
 
570
594
  packages.find_all { |pkg| !check_method[pkg] }
@@ -851,10 +875,10 @@ with the corresponding option (--all, --ruby, --os or --none).
851
875
 
852
876
  osdeps, gems = partition_packages(packages, package_osdeps)
853
877
  if handled_os
854
- os_name, os_version = OSDependencies.operating_system
878
+ os_names, os_versions = OSDependencies.operating_system
855
879
  os_packages = resolve_os_dependencies(osdeps)
856
880
  if filter_uptodate_packages
857
- os_packages = filter_uptodate_os_packages(os_packages, os_name)
881
+ os_packages = filter_uptodate_os_packages(os_packages, os_names)
858
882
  end
859
883
  end
860
884
  if filter_uptodate_packages
@@ -865,8 +889,8 @@ with the corresponding option (--all, --ruby, --os or --none).
865
889
 
866
890
  if !osdeps.empty? && (!os_packages || !os_packages.empty?)
867
891
  if handled_os
868
- shell_script = generate_auto_os_script(os_name, os_packages)
869
- user_shell_script = generate_user_os_script(os_name, os_packages)
892
+ shell_script = generate_auto_os_script(os_names, os_packages)
893
+ user_shell_script = generate_user_os_script(os_names, os_packages)
870
894
  end
871
895
  if osdeps_interaction(osdeps, os_packages, user_shell_script, silent?)
872
896
  Autoproj.progress " installing OS packages: #{os_packages.sort.join(", ")}"
@@ -1291,83 +1315,85 @@ end
1291
1315
 
1292
1316
  DEFS = <<EODEFS
1293
1317
  ---
1294
- svn:
1295
- arch: subversion
1296
- gentoo: dev-util/subversion
1297
- debian,ubuntu: subversion
1298
- autobuild: gem
1299
- zlib:
1300
- debian,ubuntu: zlib1g-dev
1301
- libxml2:
1302
- arch: libxml2
1303
- gentoo: dev-libs/libxml2
1304
- debian,ubuntu: libxml2-dev
1305
1318
  none: ignore
1306
- autotools:
1307
- arch: automake autoconf
1308
- gentoo:
1309
- - sys-devel/automake:1.9
1310
- - sys-devel/autoconf
1311
- debian,ubuntu:
1312
- - automake1.9
1313
- - autoconf
1314
- autoproj: gem
1315
- archive:
1316
- arch:
1317
- - tar
1318
- - unzip
1319
- gentoo:
1320
- - app-arch/tar
1321
- - app-arch/unzip
1322
- debian,ubuntu:
1323
- - tar
1324
- - unzip
1325
- lsb_release:
1326
- arch:
1327
- gentoo: sys-apps/lsb-release
1328
- debian,ubuntu: lsb-release
1329
1319
  ruby18:
1330
- gentoo:
1331
- - dev-lang/ruby:1.8
1332
1320
  debian,ubuntu:
1333
1321
  - ruby1.8-dev
1334
1322
  - ruby1.8
1335
1323
  - rubygems1.8
1336
1324
  - ri1.8
1337
1325
  - libopenssl-ruby1.8
1326
+ gentoo:
1327
+ - dev-lang/ruby:1.8
1338
1328
  ruby19:
1339
1329
  debian:
1340
- stable,squeeze,sid:
1341
- - ruby1.9.1
1342
- - ruby1.9.1-dev
1343
- - rubygems1.9.1
1344
- arch:
1345
- - ruby
1346
- gentoo:
1347
- - dev-lang/ruby:1.9
1330
+ - ruby1.9.1
1331
+ - ruby1.9.1-dev
1332
+ - rubygems1.9.1
1348
1333
  ubuntu:
1349
1334
  - ruby1.9.1
1350
1335
  - ruby1.9.1-dev
1351
1336
  - rubygems1.9.1
1352
1337
  - ri1.9.1
1353
1338
  - libopenssl-ruby1.9.1
1339
+ gentoo:
1340
+ - dev-lang/ruby:1.9
1341
+ arch:
1342
+ - ruby
1343
+ rdoc: gem
1344
+ build-essential:
1345
+ debian,ubuntu: build-essential
1346
+ gentoo:
1347
+ arch:
1348
+ libxml2:
1349
+ debian,ubuntu: libxml2-dev
1350
+ gentoo: dev-libs/libxml2
1351
+ arch: libxml2
1352
+ libxslt:
1353
+ debian,ubuntu: libxslt1-dev
1354
+ gentoo: dev-libs/libxslt
1355
+ arch: libxslt
1356
+ zlib:
1357
+ debian,ubuntu: zlib1g-dev
1358
+ autobuild: gem
1359
+ autoproj: gem
1354
1360
  git:
1355
- arch: git
1361
+ debian:
1362
+ lenny: git
1363
+ default: git-core
1364
+ ubuntu: git-core
1356
1365
  gentoo: dev-vcs/git
1357
- debian,ubuntu: git-core
1366
+ arch: git
1367
+ svn:
1368
+ debian,ubuntu: subversion
1369
+ gentoo: dev-util/subversion
1370
+ arch: subversion
1358
1371
  cmake:
1359
- arch: cmake
1360
- gentoo: dev-util/cmake
1361
1372
  debian,ubuntu: cmake
1362
- build-essential:
1373
+ gentoo: dev-util/cmake
1374
+ arch: cmake
1375
+ autotools:
1376
+ debian,ubuntu:
1377
+ - automake1.9
1378
+ - autoconf
1379
+ gentoo:
1380
+ - sys-devel/automake:1.9
1381
+ - sys-devel/autoconf
1382
+ arch: automake autoconf
1383
+ lsb_release:
1384
+ debian,ubuntu: lsb-release
1385
+ gentoo: sys-apps/lsb-release
1363
1386
  arch:
1387
+ archive:
1388
+ debian,ubuntu:
1389
+ - tar
1390
+ - unzip
1364
1391
  gentoo:
1365
- debian,ubuntu: build-essential
1366
- libxslt:
1367
- arch: libxslt
1368
- gentoo: dev-libs/libxslt
1369
- debian,ubuntu: libxslt1-dev
1370
- rdoc: gem
1392
+ - app-arch/tar
1393
+ - app-arch/unzip
1394
+ arch:
1395
+ - tar
1396
+ - unzip
1371
1397
 
1372
1398
  EODEFS
1373
1399
 
@@ -1282,7 +1282,6 @@ module Autoproj
1282
1282
  if pkg_name =~ match_pkg_name || pkg.srcdir =~ match_dir
1283
1283
  # Check-out packages that are not in the manifest only
1284
1284
  # if they are explicitely selected
1285
- puts "#{pkg_name} #{pkg.srcdir} #{sel} #{pkg_name != sel} #{pkg.srcdir != sel}"
1286
1285
  if pkg_name != sel && pkg.srcdir != sel && !all_layout_packages.include?(pkg.name)
1287
1286
  next
1288
1287
  end
@@ -87,9 +87,12 @@ module Autoproj
87
87
  if possible_values = options[:possible_values]
88
88
  if options[:lowercase]
89
89
  value = value.downcase
90
+ elsif options[:uppercase]
91
+ value = value.upcase
90
92
  end
93
+
91
94
  if !possible_values.include?(value)
92
- raise InputError, "invalid value '#{value}', accepted values are '#{possible_values.join(", ")}'"
95
+ raise InputError, "invalid value '#{value}', accepted values are '#{possible_values.join("', '")}' (without the quotes)"
93
96
  end
94
97
  end
95
98
  value
@@ -1,3 +1,3 @@
1
1
  module Autoproj
2
- VERSION = "1.6.2.rc9"
2
+ VERSION = "1.6.2"
3
3
  end
@@ -0,0 +1,52 @@
1
+
2
+ Configuration of your autoproj build
3
+
4
+ - CMake
5
+ Since everything is CMake based, environment variables such as
6
+ CMAKE_PREFIX_PATH are always picked up. You can set them
7
+ in init.rb too, which will copy them to your env.sh script.
8
+
9
+ Because of cmake's aggressive caching behaviour, manual options
10
+ given to cmake will be overriden by autoproj later on. To make
11
+ such options permanent, add
12
+
13
+ package('package_name').define "OPTION", "VALUE"
14
+
15
+ in overrides.rb. For instance, to set CMAKE_BUILD_TYPE for the rtt
16
+ package, do
17
+
18
+ package('rtt').define "CMAKE_BUILD_TYPE", "Debug"
19
+
20
+ - Config files
21
+ There are various file that influence your build:
22
+
23
+ *.yml files: are simple 'key: value' pairs in the YAML format to set
24
+ config options. This list is limited to what autoproj
25
+ knows.
26
+
27
+ *.rb files: are ruby scripts that can influence any part of the
28
+ autoproj program, without modifying autoproj itself.
29
+ This is only for advanced users that understand ruby
30
+ and the internals of autoproj.
31
+
32
+ - Configuration options
33
+
34
+ config.yml: Save build configuration. You should not change it
35
+ manually. If you need to change an option, run an
36
+ autoproj operation with --reconfigure, as for
37
+ instance
38
+ autoproj build --reconfigure
39
+
40
+ overrides.yml:
41
+ Override branch information for specific packages.
42
+ Most people leave this to the default, unless they
43
+ want to use a feature from an experimental branch.
44
+
45
+ - Influencing Autoproj ruby code:
46
+
47
+ init.rb: Write in this file customization code that will get executed
48
+ before autoproj is loaded.
49
+
50
+ overrides.rb:
51
+ Write in this file customization code that will get
52
+ executed after autoproj loaded.
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autoproj
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: true
4
+ hash: 11
5
+ prerelease: false
5
6
  segments:
6
7
  - 1
7
8
  - 6
8
9
  - 2
9
- - rc9
10
- version: 1.6.2.rc9
10
+ version: 1.6.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Sylvain Joyeux
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-11-02 00:00:00 +01:00
18
+ date: 2010-11-10 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -26,11 +26,12 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
+ hash: 45
29
30
  segments:
30
31
  - 1
31
32
  - 5
32
- - 9
33
- version: 1.5.9
33
+ - 23
34
+ version: 1.5.23
34
35
  type: :runtime
35
36
  version_requirements: *id001
36
37
  - !ruby/object:Gem::Dependency
@@ -41,6 +42,7 @@ dependencies:
41
42
  requirements:
42
43
  - - ">="
43
44
  - !ruby/object:Gem::Version
45
+ hash: 23
44
46
  segments:
45
47
  - 1
46
48
  - 0
@@ -56,6 +58,7 @@ dependencies:
56
58
  requirements:
57
59
  - - ">="
58
60
  - !ruby/object:Gem::Version
61
+ hash: 29
59
62
  segments:
60
63
  - 1
61
64
  - 3
@@ -71,6 +74,7 @@ dependencies:
71
74
  requirements:
72
75
  - - ">="
73
76
  - !ruby/object:Gem::Version
77
+ hash: 29
74
78
  segments:
75
79
  - 1
76
80
  - 3
@@ -86,6 +90,7 @@ dependencies:
86
90
  requirements:
87
91
  - - ">="
88
92
  - !ruby/object:Gem::Version
93
+ hash: 3
89
94
  segments:
90
95
  - 1
91
96
  - 5
@@ -101,6 +106,7 @@ dependencies:
101
106
  requirements:
102
107
  - - ">="
103
108
  - !ruby/object:Gem::Version
109
+ hash: 7
104
110
  segments:
105
111
  - 2
106
112
  - 0
@@ -116,6 +122,7 @@ dependencies:
116
122
  requirements:
117
123
  - - ">="
118
124
  - !ruby/object:Gem::Version
125
+ hash: 25
119
126
  segments:
120
127
  - 0
121
128
  - 5
@@ -131,6 +138,7 @@ dependencies:
131
138
  requirements:
132
139
  - - ">="
133
140
  - !ruby/object:Gem::Version
141
+ hash: 31
134
142
  segments:
135
143
  - 2
136
144
  - 4
@@ -146,6 +154,7 @@ dependencies:
146
154
  requirements:
147
155
  - - ">="
148
156
  - !ruby/object:Gem::Version
157
+ hash: 19
149
158
  segments:
150
159
  - 2
151
160
  - 6
@@ -188,6 +197,7 @@ extra_rdoc_files:
188
197
  - History.txt
189
198
  - Manifest.txt
190
199
  - README.txt
200
+ - samples/autoproj/README.txt
191
201
  files:
192
202
  - History.txt
193
203
  - Manifest.txt
@@ -198,6 +208,7 @@ files:
198
208
  - doc/guide/ext/init.rb
199
209
  - doc/guide/ext/previous_next.rb
200
210
  - doc/guide/ext/rdoc_links.rb
211
+ - doc/guide/src/adding_packages.page
201
212
  - doc/guide/src/autoproj_bootstrap
202
213
  - doc/guide/src/customization.page
203
214
  - doc/guide/src/default.css
@@ -232,6 +243,7 @@ files:
232
243
  - lib/autoproj/osdeps.rb
233
244
  - lib/autoproj/system.rb
234
245
  - lib/autoproj/version.rb
246
+ - samples/autoproj/README.txt
235
247
  - samples/autoproj/init.rb
236
248
  - samples/autoproj/manifest
237
249
  - samples/autoproj/overrides.rb
@@ -257,19 +269,19 @@ required_ruby_version: !ruby/object:Gem::Requirement
257
269
  requirements:
258
270
  - - ">="
259
271
  - !ruby/object:Gem::Version
272
+ hash: 3
260
273
  segments:
261
274
  - 0
262
275
  version: "0"
263
276
  required_rubygems_version: !ruby/object:Gem::Requirement
264
277
  none: false
265
278
  requirements:
266
- - - ">"
279
+ - - ">="
267
280
  - !ruby/object:Gem::Version
281
+ hash: 3
268
282
  segments:
269
- - 1
270
- - 3
271
- - 1
272
- version: 1.3.1
283
+ - 0
284
+ version: "0"
273
285
  requirements: []
274
286
 
275
287
  rubyforge_project: autobuild