autoproj 1.7.0 → 1.7.1
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/History.txt +44 -31
- data/lib/autoproj/autobuild.rb +1 -1
- data/lib/autoproj/cmdline.rb +34 -19
- data/lib/autoproj/version.rb +1 -1
- metadata +4 -4
data/History.txt
CHANGED
@@ -1,52 +1,65 @@
|
|
1
|
+
= Version 1.7.1
|
2
|
+
== Quickfix release
|
3
|
+
* autoproj update was not installing osdeps even if the osdeps mode was not
|
4
|
+
'none'
|
5
|
+
* fix autolocate (and therefore acd) in configurations that use not_on and
|
6
|
+
only_on
|
7
|
+
|
1
8
|
= Version 1.7.0
|
2
|
-
* 1.6.2 should have been 1.7.0. Bump it now.
|
3
9
|
== For basic use
|
4
|
-
* removed some OS dependency updates that should not be there. In
|
5
|
-
means that build and fast-build will generally be a
|
6
|
-
|
7
|
-
|
8
|
-
|
10
|
+
* removed some OS dependency updates that should not be there. In
|
11
|
+
practice, it means that build and fast-build will generally be a
|
12
|
+
lot faster
|
13
|
+
* The shell function "acd", akin to rosbuild's roscd, is also
|
14
|
+
provided for recognized shells (bash and zsh at the moment). The
|
15
|
+
relevant files are sourced in env.sh if the user's shell is
|
16
|
+
compatible
|
9
17
|
See http://rock-robotics.org/quick_start.html#shell_helpers
|
10
|
-
* added an easier way to add a local checked-out package to a build
|
11
|
-
going through editing 20 files. Packages are automatically
|
12
|
-
to the build as soon as their path, relative to
|
13
|
-
listed in autoproj/manifest.
|
18
|
+
* added an easier way to add a local checked-out package to a build
|
19
|
+
without going through editing 20 files. Packages are automatically
|
20
|
+
detected and added to the build as soon as their path, relative to
|
21
|
+
the root dir, are explicitely listed in autoproj/manifest.
|
14
22
|
See http://rock-robotics.org/autoproj/autoproj/adding_packages.html
|
15
|
-
* added the --stats option that displays timing statistics about the
|
16
|
-
Raw statistics are always saved in install/log/stats.log
|
23
|
+
* added the --stats option that displays timing statistics about the
|
24
|
+
build. Raw statistics are always saved in install/log/stats.log
|
17
25
|
== For advanced use
|
18
|
-
* introduced cross-package-set imports. A package set can now tell
|
19
|
-
install another one in a recursive manner
|
26
|
+
* introduced cross-package-set imports. A package set can now tell
|
27
|
+
autoproj to install another one in a recursive manner
|
20
28
|
See http://rock-robotics.org/autoproj/advanced/cross_set_dependencies.html
|
21
|
-
* added optional dependencies, which will not be considered if the
|
22
|
-
upon package is either not existing or is explicitely
|
29
|
+
* added optional dependencies, which will not be considered if the
|
30
|
+
depended- upon package is either not existing or is explicitely
|
31
|
+
excluded from the build.
|
23
32
|
See http://rock-robotics.org/autoproj/advanced/package_dependencies.html
|
24
33
|
* added the #package toplevel method to get a package handle, i.e.
|
25
34
|
package('orocos/rtt')
|
26
35
|
is equivalent to the former
|
27
36
|
Autobuild::Package['orocos/rtt']
|
28
37
|
* added tools to test the build configuration on build servers.
|
29
|
-
- the --randomize-layout option which makes autoproj build each
|
30
|
-
in a separate non-trivial subfolder, and install it in a
|
31
|
-
well. This is meant to test the definition and
|
32
|
-
between the different packages.
|
33
|
-
- the autoproj_stress_test script clears the layout and adds
|
34
|
-
one in a random order, testing at each step if
|
35
|
-
works fine. It turns on
|
36
|
-
|
38
|
+
- the --randomize-layout option which makes autoproj build each
|
39
|
+
package in a separate non-trivial subfolder, and install it in a
|
40
|
+
separate folder as well. This is meant to test the definition and
|
41
|
+
handling of dependencies between the different packages.
|
42
|
+
- the autoproj_stress_test script clears the layout and adds
|
43
|
+
packages one by one in a random order, testing at each step if
|
44
|
+
the resulting configuration works fine. It turns on
|
45
|
+
--randomize-layout as well.
|
46
|
+
* "acd" is using the autolocate tool, which returns the full path to
|
47
|
+
a certain package.
|
37
48
|
|
38
49
|
= Version 1.6.2
|
39
50
|
* overhauled osdeps fine-grained configuration. See
|
40
|
-
http://
|
51
|
+
http://rock-robotics.org/autoproj/osdeps.html
|
41
52
|
for more information
|
42
53
|
* fix too-aggressive caching of operating system characteristics,
|
43
54
|
which breaks on OS upgrades.
|
44
|
-
* on Debian-like systems, filter out packages that are already
|
45
|
-
|
46
|
-
*
|
47
|
-
|
48
|
-
*
|
49
|
-
|
55
|
+
* on Debian-like systems, filter out packages that are already
|
56
|
+
installed
|
57
|
+
* on all systems, filter packages that have already been handled by
|
58
|
+
the osdeps
|
59
|
+
* add a -k option that continues operation even after errors. The sum
|
60
|
+
of all errors are properly presented at the end of the run.
|
61
|
+
* when boostrapping, check that the current directory is empty and
|
62
|
+
warn the user if it is not.
|
50
63
|
* a few more minor bugfixes
|
51
64
|
|
52
65
|
= Version 1.6.1
|
data/lib/autoproj/autobuild.rb
CHANGED
@@ -419,7 +419,7 @@ def not_on(*architectures)
|
|
419
419
|
end
|
420
420
|
end
|
421
421
|
|
422
|
-
os = OSDependencies.operating_system
|
422
|
+
os = Autoproj::OSDependencies.operating_system
|
423
423
|
matching_archs = architectures.find_all { |arch| arch[0] == os[0] }
|
424
424
|
if matching_archs.empty?
|
425
425
|
return yield
|
data/lib/autoproj/cmdline.rb
CHANGED
@@ -902,7 +902,7 @@ where 'mode' is one of:
|
|
902
902
|
remaining_args.clear
|
903
903
|
|
904
904
|
@display_configuration = true
|
905
|
-
Autobuild.do_build
|
905
|
+
Autobuild.do_build = false
|
906
906
|
Autobuild.do_update = false
|
907
907
|
@update_os_dependencies = false
|
908
908
|
@only_config = true
|
@@ -918,62 +918,77 @@ where 'mode' is one of:
|
|
918
918
|
when "reconfigure"
|
919
919
|
Autoproj.reconfigure = true
|
920
920
|
Autobuild.do_update = false
|
921
|
-
Autobuild.do_build
|
921
|
+
Autobuild.do_build = false
|
922
922
|
@update_os_dependencies = false
|
923
923
|
|
924
|
+
when "fast-build"
|
925
|
+
Autobuild.do_update = false
|
926
|
+
Autobuild.do_build = true
|
927
|
+
@update_os_dependencies = false
|
924
928
|
when "build"
|
929
|
+
Autobuild.do_update = nil
|
930
|
+
Autobuild.do_build = true
|
931
|
+
@update_os_dependencies = nil
|
925
932
|
when "force-build"
|
933
|
+
Autobuild.do_update = nil
|
934
|
+
Autobuild.do_build = true
|
935
|
+
@update_os_dependencies = nil
|
926
936
|
Autobuild.do_forced_build = true
|
927
937
|
when "rebuild"
|
938
|
+
Autobuild.do_update = nil
|
939
|
+
Autobuild.do_build = true
|
940
|
+
@update_os_dependencies = nil
|
928
941
|
Autobuild.do_rebuild = true
|
929
|
-
when "
|
930
|
-
Autobuild.do_update =
|
931
|
-
|
942
|
+
when "full-build"
|
943
|
+
Autobuild.do_update = true
|
944
|
+
Autobuild.do_build = true
|
945
|
+
@update_os_dependencies = true
|
932
946
|
when "snapshot"
|
933
947
|
@snapshot_dir = remaining_args.shift
|
934
948
|
Autobuild.do_update = false
|
935
|
-
Autobuild.do_build
|
949
|
+
Autobuild.do_build = false
|
936
950
|
@update_os_dependencies = false
|
937
|
-
when "full-build"
|
938
|
-
Autobuild.do_update = true
|
939
|
-
@update_os_dependencies = true
|
940
951
|
when "update"
|
941
952
|
Autobuild.do_update = true
|
942
953
|
Autobuild.do_build = false
|
954
|
+
@update_os_dependencies = true
|
943
955
|
when "check"
|
944
956
|
Autobuild.do_update = false
|
957
|
+
Autobuild.do_build = false
|
945
958
|
@update_os_dependencies = false
|
946
|
-
Autobuild.do_build = false
|
947
959
|
@check = true
|
948
960
|
when "manifest-update"
|
949
961
|
Autobuild.do_update = false
|
962
|
+
Autobuild.do_build = false
|
950
963
|
@update_os_dependencies = false
|
951
|
-
Autobuild.do_build = false
|
952
964
|
@manifest_update = true
|
953
965
|
when "osdeps"
|
954
966
|
Autobuild.do_update = false
|
955
|
-
@update_os_dependencies = true
|
956
967
|
Autobuild.do_build = false
|
968
|
+
@update_os_dependencies = true
|
957
969
|
when "status"
|
958
|
-
@only_status = true
|
959
970
|
Autobuild.do_update = false
|
971
|
+
Autobuild.do_build = false
|
960
972
|
@update_os_dependencies = false
|
973
|
+
@only_status = true
|
961
974
|
when "envsh"
|
962
|
-
Autobuild.do_build = false
|
963
975
|
Autobuild.do_update = false
|
976
|
+
Autobuild.do_build = false
|
964
977
|
@update_os_dependencies = false
|
965
978
|
when "update-config"
|
966
|
-
@only_config = true
|
967
979
|
Autobuild.do_update = true
|
968
|
-
|
969
|
-
|
970
|
-
when "list-config"
|
980
|
+
Autobuild.do_build = false
|
981
|
+
@update_os_dependencies = false
|
971
982
|
@only_config = true
|
972
|
-
|
983
|
+
when "list-config"
|
973
984
|
Autobuild.do_update = false
|
985
|
+
Autobuild.do_build = false
|
974
986
|
@update_os_dependencies = false
|
987
|
+
@only_config = true
|
988
|
+
@display_configuration = true
|
975
989
|
when "doc"
|
976
990
|
Autobuild.do_update = false
|
991
|
+
Autobuild.do_build = false
|
977
992
|
@update_os_dependencies = false
|
978
993
|
Autobuild.do_doc = true
|
979
994
|
Autobuild.only_doc = true
|
data/lib/autoproj/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autoproj
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 9
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 7
|
9
|
-
-
|
10
|
-
version: 1.7.
|
9
|
+
- 1
|
10
|
+
version: 1.7.1
|
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-12-
|
18
|
+
date: 2010-12-08 00:00:00 +01:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|