autoproj 2.0.0.rc22 → 2.0.0.rc23
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 +4 -4
- data/lib/autoproj/default.osdeps +4 -1
- data/lib/autoproj/os_package_installer.rb +2 -2
- data/lib/autoproj/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 817b21d65c9eeeac6eae117f038a4d67d175bfbe
|
|
4
|
+
data.tar.gz: 986a8083ddd65049128c60512d95f241babdaadd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a6378285a457d2ea2d74e619e9245cdd3ced190fef47873f22a02ed2d1cbdd39001d1f7d250dbac61ace64aa346b6b45e3ea16952c935d2e48608cc56ba1ddc
|
|
7
|
+
data.tar.gz: a4c558ba8e077f1350ee447375c824ed0db62ded2b7e7cb7d0067eedf9c436c5e95e5f46f8ab1dcd4fa4cb914cb9b810fc72f796e5e22eb34231fcb37585a52c
|
data/lib/autoproj/default.osdeps
CHANGED
|
@@ -143,13 +143,15 @@ svn:
|
|
|
143
143
|
freebsd: subversion
|
|
144
144
|
|
|
145
145
|
cmake:
|
|
146
|
-
debian,ubuntu:
|
|
146
|
+
debian,ubuntu:
|
|
147
|
+
- cmake
|
|
147
148
|
gentoo: dev-util/cmake
|
|
148
149
|
arch: cmake
|
|
149
150
|
fedora: cmake
|
|
150
151
|
darwin: cmake
|
|
151
152
|
opensuse: cmake
|
|
152
153
|
freebsd: cmake
|
|
154
|
+
osdep: build-essential
|
|
153
155
|
|
|
154
156
|
autotools:
|
|
155
157
|
debian,ubuntu:
|
|
@@ -173,6 +175,7 @@ autotools:
|
|
|
173
175
|
freebsd:
|
|
174
176
|
- automake
|
|
175
177
|
- autoconf
|
|
178
|
+
osdep: build-essential
|
|
176
179
|
|
|
177
180
|
archive:
|
|
178
181
|
debian,ubuntu:
|
|
@@ -102,7 +102,7 @@ def osdeps_mode_option_unsupported_os(config)
|
|
|
102
102
|
|
|
103
103
|
* if you say "all", all OS-independent packages are going to be installed.
|
|
104
104
|
* if you say "gem", the RubyGem packages will be installed.
|
|
105
|
-
* if you say "pip", the
|
|
105
|
+
* if you say "pip", the Python PIP packages will be installed.
|
|
106
106
|
* if you say "none", autoproj will not do anything related to the OS
|
|
107
107
|
dependencies.
|
|
108
108
|
|
|
@@ -136,7 +136,7 @@ def osdeps_mode_option_supported_os(config)
|
|
|
136
136
|
|
|
137
137
|
* if you say "all", it will install all packages automatically.
|
|
138
138
|
This requires root access thru 'sudo'
|
|
139
|
-
* if you say "pip", only the
|
|
139
|
+
* if you say "pip", only the Python packages will be installed.
|
|
140
140
|
Installing these packages does not require root access.
|
|
141
141
|
* if you say "gem", only the Ruby packages will be installed.
|
|
142
142
|
Installing these packages does not require root access.
|
data/lib/autoproj/version.rb
CHANGED