Angelos Evripiotis pushed to branch master at BuildStream / buildstream
Commits:
-
1c24979a
by Angelos Evripiotis at 2018-10-19T21:17:01Z
-
43a2eee3
by Angelos Evripiotis at 2018-10-19T21:48:59Z
11 changed files:
- buildstream/_scheduler/queues/queue.py
- buildstream/_yaml.py
- buildstream/buildelement.py
- buildstream/plugin.py
- buildstream/plugins/elements/autotools.yaml
- buildstream/plugins/elements/cmake.yaml
- buildstream/plugins/elements/make.yaml
- buildstream/plugins/elements/manual.yaml
- buildstream/plugins/elements/meson.yaml
- buildstream/plugins/elements/qmake.yaml
- buildstream/plugins/sources/git.py
Changes:
... | ... | @@ -208,7 +208,7 @@ class Queue(): |
208 | 208 |
# This will have different results for elements depending
|
209 | 209 |
# on the Queue.status() implementation.
|
210 | 210 |
#
|
211 |
- # o Elements which are QueueStatus.WAIT will not be effected
|
|
211 |
+ # o Elements which are QueueStatus.WAIT will not be affected
|
|
212 | 212 |
#
|
213 | 213 |
# o Elements which are QueueStatus.SKIP will move directly
|
214 | 214 |
# to the dequeue pool
|
... | ... | @@ -972,7 +972,7 @@ def node_validate(node, valid_keys): |
972 | 972 |
#
|
973 | 973 |
# The purpose of this is to create a virtual copy-on-write
|
974 | 974 |
# copy of a dictionary, so that mutating it in any way does
|
975 |
-# not effect the underlying dictionaries.
|
|
975 |
+# not affect the underlying dictionaries.
|
|
976 | 976 |
#
|
977 | 977 |
# collections.ChainMap covers this already mostly, but fails
|
978 | 978 |
# to record internal state so as to hide keys which have been
|
... | ... | @@ -176,7 +176,7 @@ class BuildElement(Element): |
176 | 176 |
|
177 | 177 |
# Specifying notparallel for a given element effects the
|
178 | 178 |
# cache key, while having the side effect of setting max-jobs to 1,
|
179 |
- # which is normally automatically resolved and does not effect
|
|
179 |
+ # which is normally automatically resolved and does not affect
|
|
180 | 180 |
# the cache key.
|
181 | 181 |
if self.get_variable('notparallel'):
|
182 | 182 |
dictionary['notparallel'] = True
|
... | ... | @@ -266,7 +266,7 @@ class Plugin(): |
266 | 266 |
such as an sha256 sum of a tarball content.
|
267 | 267 |
|
268 | 268 |
Elements and Sources should implement this by collecting any configurations
|
269 |
- which could possibly effect the output and return a dictionary of these settings.
|
|
269 |
+ which could possibly affect the output and return a dictionary of these settings.
|
|
270 | 270 |
|
271 | 271 |
For Sources, this is guaranteed to only be called if
|
272 | 272 |
:func:`Source.get_consistency() <buildstream.source.Source.get_consistency>`
|
... | ... | @@ -123,7 +123,7 @@ environment: |
123 | 123 |
V: 1
|
124 | 124 |
|
125 | 125 |
# And dont consider MAKEFLAGS or V as something which may
|
126 |
-# effect build output.
|
|
126 |
+# affect build output.
|
|
127 | 127 |
environment-nocache:
|
128 | 128 |
- MAKEFLAGS
|
129 | 129 |
- V
|
... | ... | @@ -66,7 +66,7 @@ environment: |
66 | 66 |
V: 1
|
67 | 67 |
|
68 | 68 |
# And dont consider JOBS or V as something which may
|
69 |
-# effect build output.
|
|
69 |
+# affect build output.
|
|
70 | 70 |
environment-nocache:
|
71 | 71 |
- JOBS
|
72 | 72 |
- V
|
... | ... | @@ -36,7 +36,7 @@ environment: |
36 | 36 |
V: 1
|
37 | 37 |
|
38 | 38 |
# And dont consider MAKEFLAGS or V as something which may
|
39 |
-# effect build output.
|
|
39 |
+# affect build output.
|
|
40 | 40 |
environment-nocache:
|
41 | 41 |
- MAKEFLAGS
|
42 | 42 |
- V
|
... | ... | @@ -35,7 +35,7 @@ environment: |
35 | 35 |
V: 1
|
36 | 36 |
|
37 | 37 |
# And dont consider MAKEFLAGS or V as something which may
|
38 |
-# effect build output.
|
|
38 |
+# affect build output.
|
|
39 | 39 |
environment-nocache:
|
40 | 40 |
- MAKEFLAGS
|
41 | 41 |
- V
|
... | ... | @@ -74,6 +74,6 @@ environment: |
74 | 74 |
%{max-jobs}
|
75 | 75 |
|
76 | 76 |
# And dont consider NINJAJOBS as something which may
|
77 |
-# effect build output.
|
|
77 |
+# affect build output.
|
|
78 | 78 |
environment-nocache:
|
79 | 79 |
- NINJAJOBS
|
... | ... | @@ -44,7 +44,7 @@ environment: |
44 | 44 |
V: 1
|
45 | 45 |
|
46 | 46 |
# And dont consider MAKEFLAGS or V as something which may
|
47 |
-# effect build output.
|
|
47 |
+# affect build output.
|
|
48 | 48 |
environment-nocache:
|
49 | 49 |
- MAKEFLAGS
|
50 | 50 |
- V
|
... | ... | @@ -415,7 +415,7 @@ class GitSource(Source): |
415 | 415 |
def get_unique_key(self):
|
416 | 416 |
# Here we want to encode the local name of the repository and
|
417 | 417 |
# the ref, if the user changes the alias to fetch the same sources
|
418 |
- # from another location, it should not effect the cache key.
|
|
418 |
+ # from another location, it should not affect the cache key.
|
|
419 | 419 |
key = [self.original_url, self.mirror.ref]
|
420 | 420 |
|
421 | 421 |
# Only modify the cache key with checkout_submodules if it's something
|