autoproj 2.7.1 → 2.8.0
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.
- checksums.yaml +5 -5
- data/Rakefile +31 -1
- data/autoproj.gemspec +2 -0
- data/bin/alocate +3 -5
- data/bin/alog +3 -3
- data/bin/amake +3 -4
- data/bin/aup +4 -3
- data/bin/autoproj +1 -6
- data/bin/autoproj_bootstrap +153 -47
- data/bin/autoproj_install +153 -47
- data/lib/autoproj/autobuild_extensions/dsl.rb +5 -0
- data/lib/autoproj/bash_completion.rb +26 -0
- data/lib/autoproj/cli/base.rb +4 -4
- data/lib/autoproj/cli/build.rb +2 -3
- data/lib/autoproj/cli/main.rb +52 -2
- data/lib/autoproj/cli/main_global.rb +39 -0
- data/lib/autoproj/cli/osdeps.rb +2 -1
- data/lib/autoproj/cli/update.rb +13 -1
- data/lib/autoproj/configuration.rb +14 -2
- data/lib/autoproj/environment.rb +48 -31
- data/lib/autoproj/ops/install.rb +153 -47
- data/lib/autoproj/shell_completion.rb +164 -0
- data/lib/autoproj/templates/helpers.bash.erb +79 -0
- data/lib/autoproj/templates/helpers.zsh.erb +38 -0
- data/lib/autoproj/templates/main.bash.erb +35 -0
- data/lib/autoproj/templates/main.zsh.erb +9 -0
- data/lib/autoproj/templates/subcommand.bash.erb +50 -0
- data/lib/autoproj/templates/subcommand.zsh.erb +51 -0
- data/lib/autoproj/version.rb +1 -1
- data/lib/autoproj/workspace.rb +97 -19
- data/lib/autoproj/zsh_completion.rb +43 -0
- data/shell/autoproj_bash +67 -0
- data/shell/autoproj_zsh +26 -0
- data/shell/completion/alocate_bash +68 -0
- data/shell/completion/alocate_zsh +22 -0
- data/shell/completion/alog_bash +61 -0
- data/shell/completion/alog_zsh +20 -0
- data/shell/completion/amake_bash +77 -0
- data/shell/completion/amake_zsh +27 -0
- data/shell/completion/aup_bash +89 -0
- data/shell/completion/aup_zsh +34 -0
- data/shell/completion/autoproj_bash +1556 -0
- data/shell/completion/autoproj_zsh +1005 -0
- metadata +51 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autoproj
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sylvain Joyeux
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-08-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -168,6 +168,20 @@ dependencies:
|
|
168
168
|
- - ">="
|
169
169
|
- !ruby/object:Gem::Version
|
170
170
|
version: '0'
|
171
|
+
- !ruby/object:Gem::Dependency
|
172
|
+
name: xdg
|
173
|
+
requirement: !ruby/object:Gem::Requirement
|
174
|
+
requirements:
|
175
|
+
- - ">="
|
176
|
+
- !ruby/object:Gem::Version
|
177
|
+
version: '0'
|
178
|
+
type: :runtime
|
179
|
+
prerelease: false
|
180
|
+
version_requirements: !ruby/object:Gem::Requirement
|
181
|
+
requirements:
|
182
|
+
- - ">="
|
183
|
+
- !ruby/object:Gem::Version
|
184
|
+
version: '0'
|
171
185
|
- !ruby/object:Gem::Dependency
|
172
186
|
name: flexmock
|
173
187
|
requirement: !ruby/object:Gem::Requirement
|
@@ -236,6 +250,20 @@ dependencies:
|
|
236
250
|
- - ">="
|
237
251
|
- !ruby/object:Gem::Version
|
238
252
|
version: '0'
|
253
|
+
- !ruby/object:Gem::Dependency
|
254
|
+
name: tty-cursor
|
255
|
+
requirement: !ruby/object:Gem::Requirement
|
256
|
+
requirements:
|
257
|
+
- - ">="
|
258
|
+
- !ruby/object:Gem::Version
|
259
|
+
version: '0'
|
260
|
+
type: :development
|
261
|
+
prerelease: false
|
262
|
+
version_requirements: !ruby/object:Gem::Requirement
|
263
|
+
requirements:
|
264
|
+
- - ">="
|
265
|
+
- !ruby/object:Gem::Version
|
266
|
+
version: '0'
|
239
267
|
description: autoproj is a manager for sets of software packages. It allows the user
|
240
268
|
to import and build packages from source, still using the underlying distribution's
|
241
269
|
native package manager for software that is available on it.
|
@@ -276,6 +304,7 @@ files:
|
|
276
304
|
- lib/autoproj/autobuild_extensions/package.rb
|
277
305
|
- lib/autoproj/autobuild_extensions/svn.rb
|
278
306
|
- lib/autoproj/base.rb
|
307
|
+
- lib/autoproj/bash_completion.rb
|
279
308
|
- lib/autoproj/build_option.rb
|
280
309
|
- lib/autoproj/cli.rb
|
281
310
|
- lib/autoproj/cli/base.rb
|
@@ -291,6 +320,7 @@ files:
|
|
291
320
|
- lib/autoproj/cli/locate.rb
|
292
321
|
- lib/autoproj/cli/log.rb
|
293
322
|
- lib/autoproj/cli/main.rb
|
323
|
+
- lib/autoproj/cli/main_global.rb
|
294
324
|
- lib/autoproj/cli/main_plugin.rb
|
295
325
|
- lib/autoproj/cli/main_test.rb
|
296
326
|
- lib/autoproj/cli/manifest.rb
|
@@ -356,15 +386,23 @@ files:
|
|
356
386
|
- lib/autoproj/package_set.rb
|
357
387
|
- lib/autoproj/query_base.rb
|
358
388
|
- lib/autoproj/reporter.rb
|
389
|
+
- lib/autoproj/shell_completion.rb
|
359
390
|
- lib/autoproj/source_package_query.rb
|
360
391
|
- lib/autoproj/system.rb
|
361
392
|
- lib/autoproj/templates/create-set/packages.autobuild
|
362
393
|
- lib/autoproj/templates/create-set/source.yml
|
394
|
+
- lib/autoproj/templates/helpers.bash.erb
|
395
|
+
- lib/autoproj/templates/helpers.zsh.erb
|
396
|
+
- lib/autoproj/templates/main.bash.erb
|
397
|
+
- lib/autoproj/templates/main.zsh.erb
|
398
|
+
- lib/autoproj/templates/subcommand.bash.erb
|
399
|
+
- lib/autoproj/templates/subcommand.zsh.erb
|
363
400
|
- lib/autoproj/test.rb
|
364
401
|
- lib/autoproj/variable_expansion.rb
|
365
402
|
- lib/autoproj/vcs_definition.rb
|
366
403
|
- lib/autoproj/version.rb
|
367
404
|
- lib/autoproj/workspace.rb
|
405
|
+
- lib/autoproj/zsh_completion.rb
|
368
406
|
- manifest.xml
|
369
407
|
- samples/autoproj/README.md
|
370
408
|
- samples/autoproj/init.rb
|
@@ -374,6 +412,16 @@ files:
|
|
374
412
|
- shell/autoproj_bash
|
375
413
|
- shell/autoproj_sh
|
376
414
|
- shell/autoproj_zsh
|
415
|
+
- shell/completion/alocate_bash
|
416
|
+
- shell/completion/alocate_zsh
|
417
|
+
- shell/completion/alog_bash
|
418
|
+
- shell/completion/alog_zsh
|
419
|
+
- shell/completion/amake_bash
|
420
|
+
- shell/completion/amake_zsh
|
421
|
+
- shell/completion/aup_bash
|
422
|
+
- shell/completion/aup_zsh
|
423
|
+
- shell/completion/autoproj_bash
|
424
|
+
- shell/completion/autoproj_zsh
|
377
425
|
homepage: http://rock-robotics.org
|
378
426
|
licenses:
|
379
427
|
- BSD
|
@@ -394,7 +442,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
394
442
|
version: '0'
|
395
443
|
requirements: []
|
396
444
|
rubyforge_project:
|
397
|
-
rubygems_version: 2.
|
445
|
+
rubygems_version: 2.7.6
|
398
446
|
signing_key:
|
399
447
|
specification_version: 4
|
400
448
|
summary: Easy installation and management of sets of software packages
|