autoproj 1.7.17.rc1 → 1.7.17.rc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Manifest.txt +1 -0
- data/bin/autoproj-clean +13 -0
- data/lib/autoproj/version.rb +1 -1
- metadata +5 -3
data/Manifest.txt
CHANGED
data/bin/autoproj-clean
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#! /usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require 'autoproj'
|
|
4
|
+
require 'autoproj/cmdline'
|
|
5
|
+
|
|
6
|
+
Autoproj.silent = true
|
|
7
|
+
root_dir = Autoproj::CmdLine.initialize_root_directory
|
|
8
|
+
Autoproj::CmdLine.initialize_and_load(ARGV)
|
|
9
|
+
|
|
10
|
+
Autoproj.manifest.each_package do |pkg|
|
|
11
|
+
pkg.prepare_for_rebuild
|
|
12
|
+
end
|
|
13
|
+
|
data/lib/autoproj/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autoproj
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 15424201
|
|
5
5
|
prerelease: 7
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 7
|
|
9
9
|
- 17
|
|
10
10
|
- rc
|
|
11
|
-
-
|
|
12
|
-
version: 1.7.17.
|
|
11
|
+
- 2
|
|
12
|
+
version: 1.7.17.rc2
|
|
13
13
|
platform: ruby
|
|
14
14
|
authors:
|
|
15
15
|
- Sylvain Joyeux
|
|
@@ -114,6 +114,7 @@ executables:
|
|
|
114
114
|
- aup
|
|
115
115
|
- autolocate
|
|
116
116
|
- autoproj
|
|
117
|
+
- autoproj-clean
|
|
117
118
|
- autoproj-locate
|
|
118
119
|
- autoproj-query
|
|
119
120
|
- autoproj_bootstrap
|
|
@@ -134,6 +135,7 @@ files:
|
|
|
134
135
|
- bin/aup
|
|
135
136
|
- bin/autolocate
|
|
136
137
|
- bin/autoproj
|
|
138
|
+
- bin/autoproj-clean
|
|
137
139
|
- bin/autoproj-locate
|
|
138
140
|
- bin/autoproj-query
|
|
139
141
|
- bin/autoproj_bootstrap
|