Merge lp:~canonical-platform-qa/ubuntu-system-tests/fix_licence_text into lp:ubuntu-system-tests

Proposed by Brendan Donegan
Status: Work in progress
Proposed branch: lp:~canonical-platform-qa/ubuntu-system-tests/fix_licence_text
Merge into: lp:ubuntu-system-tests
Diff against target: 719 lines (+90/-135)
45 files modified
debian/tests/sanity (+2/-3)
setup.py (+2/-3)
ubuntu_sanity_tests/__init__.py (+2/-3)
ubuntu_sanity_tests/command_line.py (+2/-3)
ubuntu_sanity_tests/config.py (+2/-3)
ubuntu_sanity_tests/external_tests/__init__.py (+2/-3)
ubuntu_sanity_tests/helpers/addressbook/__init__.py (+2/-3)
ubuntu_sanity_tests/helpers/addressbook/fixture_setup.py (+2/-3)
ubuntu_sanity_tests/helpers/autopilot.py (+2/-3)
ubuntu_sanity_tests/helpers/backup_restore_fixture.py (+2/-3)
ubuntu_sanity_tests/helpers/camera.py (+2/-3)
ubuntu_sanity_tests/helpers/click.py (+2/-3)
ubuntu_sanity_tests/helpers/images.py (+2/-3)
ubuntu_sanity_tests/helpers/indicators.py (+2/-3)
ubuntu_sanity_tests/helpers/ofono.py (+2/-3)
ubuntu_sanity_tests/helpers/radio_killswitch.py (+2/-3)
ubuntu_sanity_tests/helpers/system_settings.py (+2/-3)
ubuntu_sanity_tests/helpers/testbed.py (+2/-3)
ubuntu_sanity_tests/helpers/ubuntuone_credentials.py (+2/-3)
ubuntu_sanity_tests/helpers/unity8/__init__.py (+2/-3)
ubuntu_sanity_tests/helpers/unity8/dash.py (+2/-3)
ubuntu_sanity_tests/helpers/unity8/fixture_setup.py (+2/-3)
ubuntu_sanity_tests/helpers/unity8/greeter.py (+2/-3)
ubuntu_sanity_tests/helpers/unity8/shell.py (+2/-3)
ubuntu_sanity_tests/helpers/unityclickscope.py (+2/-3)
ubuntu_sanity_tests/helpers/webbrowser.py (+2/-3)
ubuntu_sanity_tests/results.py (+2/-3)
ubuntu_sanity_tests/sanity.py (+2/-3)
ubuntu_sanity_tests/selftests/__init__.py (+2/-3)
ubuntu_sanity_tests/selftests/test_command_line.py (+2/-3)
ubuntu_sanity_tests/selftests/test_config.py (+2/-3)
ubuntu_sanity_tests/selftests/test_results.py (+2/-3)
ubuntu_sanity_tests/selftests/test_testbed_commands.py (+2/-3)
ubuntu_sanity_tests/selftests/test_tests_to_run.py (+2/-3)
ubuntu_sanity_tests/tests/__init__.py (+2/-3)
ubuntu_sanity_tests/tests/base.py (+2/-3)
ubuntu_sanity_tests/tests/test_add_contact.py (+2/-3)
ubuntu_sanity_tests/tests/test_app_store.py (+2/-3)
ubuntu_sanity_tests/tests/test_camera.py (+2/-3)
ubuntu_sanity_tests/tests/test_flight_mode.py (+2/-3)
ubuntu_sanity_tests/tests/test_html5_application.py (+2/-3)
ubuntu_sanity_tests/tests/test_sim_pin.py (+2/-3)
ubuntu_sanity_tests/tests/test_tutorial.py (+2/-3)
ubuntu_sanity_tests/tests/test_uninstall_application.py (+2/-3)
ubuntu_sanity_tests/tests/test_with_webbrowser.py (+2/-3)
To merge this branch: bzr merge lp:~canonical-platform-qa/ubuntu-system-tests/fix_licence_text
Reviewer Review Type Date Requested Status
Max Brustkern (community) Approve
PS Jenkins bot continuous-integration Needs Fixing
Review via email: mp+259633@code.launchpad.net

Commit message

Fix licence text

Description of the change

Our licence text was slightly wrong, particularly we shouldn't be allowing use of GPL v3 *or later*, but only GPL v3

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Max Brustkern (nuclearbob) wrote :

Not sure why it's failing the CI run, but other than that, LGTM.

review: Approve

Unmerged revisions

113. By Brendan Donegan

Fix project licencing to follow policy

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/tests/sanity'
2--- debian/tests/sanity 2015-02-04 17:56:52 +0000
3+++ debian/tests/sanity 2015-05-20 14:46:37 +0000
4@@ -5,9 +5,8 @@
5 # Copyright (C) 2014, 2015 Canonical
6 #
7 # This program is free software: you can redistribute it and/or modify
8-# it under the terms of the GNU General Public License as published by
9-# the Free Software Foundation, either version 3 of the License, or
10-# (at your option) any later version.
11+# it under the terms of the GNU General Public License version 3,
12+# as published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16
17=== modified file 'setup.py'
18--- setup.py 2015-02-04 21:23:17 +0000
19+++ setup.py 2015-05-20 14:46:37 +0000
20@@ -5,9 +5,8 @@
21 # Copyright (C) 2014 Canonical
22 #
23 # This program is free software: you can redistribute it and/or modify
24-# it under the terms of the GNU General Public License as published by
25-# the Free Software Foundation, either version 3 of the License, or
26-# (at your option) any later version.
27+# it under the terms of the GNU General Public License version 3,
28+# as published by the Free Software Foundation.
29 #
30 # This program is distributed in the hope that it will be useful,
31 # but WITHOUT ANY WARRANTY; without even the implied warranty of
32
33=== modified file 'ubuntu_sanity_tests/__init__.py'
34--- ubuntu_sanity_tests/__init__.py 2015-03-03 08:18:04 +0000
35+++ ubuntu_sanity_tests/__init__.py 2015-05-20 14:46:37 +0000
36@@ -5,9 +5,8 @@
37 # Copyright (C) 2015 Canonical
38 #
39 # This program is free software: you can redistribute it and/or modify
40-# it under the terms of the GNU General Public License as published by
41-# the Free Software Foundation, either version 3 of the License, or
42-# (at your option) any later version.
43+# it under the terms of the GNU General Public License version 3,
44+# as published by the Free Software Foundation.
45 #
46 # This program is distributed in the hope that it will be useful,
47 # but WITHOUT ANY WARRANTY; without even the implied warranty of
48
49=== modified file 'ubuntu_sanity_tests/command_line.py'
50--- ubuntu_sanity_tests/command_line.py 2015-03-10 10:46:34 +0000
51+++ ubuntu_sanity_tests/command_line.py 2015-05-20 14:46:37 +0000
52@@ -6,9 +6,8 @@
53 # Copyright (C) 2014, 2015 Canonical
54 #
55 # This program is free software: you can redistribute it and/or modify
56-# it under the terms of the GNU General Public License as published by
57-# the Free Software Foundation, either version 3 of the License, or
58-# (at your option) any later version.
59+# it under the terms of the GNU General Public License version 3,
60+# as published by the Free Software Foundation.
61 #
62 # This program is distributed in the hope that it will be useful,
63 # but WITHOUT ANY WARRANTY; without even the implied warranty of
64
65=== modified file 'ubuntu_sanity_tests/config.py'
66--- ubuntu_sanity_tests/config.py 2015-03-30 00:30:24 +0000
67+++ ubuntu_sanity_tests/config.py 2015-05-20 14:46:37 +0000
68@@ -5,9 +5,8 @@
69 # Copyright (C) 2014, 2015 Canonical
70 #
71 # This program is free software: you can redistribute it and/or modify
72-# it under the terms of the GNU General Public License as published by
73-# the Free Software Foundation, either version 3 of the License, or
74-# (at your option) any later version.
75+# it under the terms of the GNU General Public License version 3,
76+# as published by the Free Software Foundation.
77 #
78 # This program is distributed in the hope that it will be useful,
79 # but WITHOUT ANY WARRANTY; without even the implied warranty of
80
81=== modified file 'ubuntu_sanity_tests/external_tests/__init__.py'
82--- ubuntu_sanity_tests/external_tests/__init__.py 2015-03-11 19:16:05 +0000
83+++ ubuntu_sanity_tests/external_tests/__init__.py 2015-05-20 14:46:37 +0000
84@@ -5,9 +5,8 @@
85 # Copyright (C) 2015 Canonical
86 #
87 # This program is free software: you can redistribute it and/or modify
88-# it under the terms of the GNU General Public License as published by
89-# the Free Software Foundation, either version 3 of the License, or
90-# (at your option) any later version.
91+# it under the terms of the GNU General Public License version 3,
92+# as published by the Free Software Foundation.
93 #
94 # This program is distributed in the hope that it will be useful,
95 # but WITHOUT ANY WARRANTY; without even the implied warranty of
96
97=== modified file 'ubuntu_sanity_tests/helpers/addressbook/__init__.py'
98--- ubuntu_sanity_tests/helpers/addressbook/__init__.py 2015-02-27 04:37:40 +0000
99+++ ubuntu_sanity_tests/helpers/addressbook/__init__.py 2015-05-20 14:46:37 +0000
100@@ -5,9 +5,8 @@
101 # Copyright (C) 2015 Canonical
102 #
103 # This program is free software: you can redistribute it and/or modify
104-# it under the terms of the GNU General Public License as published by
105-# the Free Software Foundation, either version 3 of the License, or
106-# (at your option) any later version.
107+# it under the terms of the GNU General Public License version 3,
108+# as published by the Free Software Foundation.
109 #
110 # This program is distributed in the hope that it will be useful,
111 # but WITHOUT ANY WARRANTY; without even the implied warranty of
112
113=== modified file 'ubuntu_sanity_tests/helpers/addressbook/fixture_setup.py'
114--- ubuntu_sanity_tests/helpers/addressbook/fixture_setup.py 2015-02-19 06:19:08 +0000
115+++ ubuntu_sanity_tests/helpers/addressbook/fixture_setup.py 2015-05-20 14:46:37 +0000
116@@ -5,9 +5,8 @@
117 # Copyright (C) 2015 Canonical
118 #
119 # This program is free software: you can redistribute it and/or modify
120-# it under the terms of the GNU General Public License as published by
121-# the Free Software Foundation, either version 3 of the License, or
122-# (at your option) any later version.
123+# it under the terms of the GNU General Public License version 3,
124+# as published by the Free Software Foundation.
125 #
126 # This program is distributed in the hope that it will be useful,
127 # but WITHOUT ANY WARRANTY; without even the implied warranty of
128
129=== modified file 'ubuntu_sanity_tests/helpers/autopilot.py'
130--- ubuntu_sanity_tests/helpers/autopilot.py 2015-05-08 09:37:52 +0000
131+++ ubuntu_sanity_tests/helpers/autopilot.py 2015-05-20 14:46:37 +0000
132@@ -5,9 +5,8 @@
133 # Copyright (C) 2014 Canonical
134 #
135 # This program is free software: you can redistribute it and/or modify
136-# it under the terms of the GNU General Public License as published by
137-# the Free Software Foundation, either version 3 of the License, or
138-# (at your option) any later version.
139+# it under the terms of the GNU General Public License version 3,
140+# as published by the Free Software Foundation.
141 #
142 # This program is distributed in the hope that it will be useful,
143 # but WITHOUT ANY WARRANTY; without even the implied warranty of
144
145=== modified file 'ubuntu_sanity_tests/helpers/backup_restore_fixture.py'
146--- ubuntu_sanity_tests/helpers/backup_restore_fixture.py 2015-03-10 10:38:24 +0000
147+++ ubuntu_sanity_tests/helpers/backup_restore_fixture.py 2015-05-20 14:46:37 +0000
148@@ -4,9 +4,8 @@
149 # Copyright (C) 2015 Canonical
150 #
151 # This program is free software: you can redistribute it and/or modify
152-# it under the terms of the GNU General Public License as published by
153-# the Free Software Foundation, either version 3 of the License, or
154-# (at your option) any later version.
155+# it under the terms of the GNU General Public License version 3,
156+# as published by the Free Software Foundation.
157 #
158 # This program is distributed in the hope that it will be useful,
159 # but WITHOUT ANY WARRANTY; without even the implied warranty of
160
161=== modified file 'ubuntu_sanity_tests/helpers/camera.py'
162--- ubuntu_sanity_tests/helpers/camera.py 2015-03-10 15:39:14 +0000
163+++ ubuntu_sanity_tests/helpers/camera.py 2015-05-20 14:46:37 +0000
164@@ -4,9 +4,8 @@
165 # Copyright (C) 2015 Canonical
166 #
167 # This program is free software: you can redistribute it and/or modify
168-# it under the terms of the GNU General Public License as published by
169-# the Free Software Foundation, either version 3 of the License, or
170-# (at your option) any later version.
171+# it under the terms of the GNU General Public License version 3,
172+# as published by the Free Software Foundation.
173 #
174 # This program is distributed in the hope that it will be useful,
175 # but WITHOUT ANY WARRANTY; without even the implied warranty of
176
177=== modified file 'ubuntu_sanity_tests/helpers/click.py'
178--- ubuntu_sanity_tests/helpers/click.py 2015-05-08 09:37:52 +0000
179+++ ubuntu_sanity_tests/helpers/click.py 2015-05-20 14:46:37 +0000
180@@ -5,9 +5,8 @@
181 # Copyright (C) 2015 Canonical
182 #
183 # This program is free software: you can redistribute it and/or modify
184-# it under the terms of the GNU General Public License as published by
185-# the Free Software Foundation, either version 3 of the License, or
186-# (at your option) any later version.
187+# it under the terms of the GNU General Public License version 3,
188+# as published by the Free Software Foundation.
189 #
190 # This program is distributed in the hope that it will be useful,
191 # but WITHOUT ANY WARRANTY; without even the implied warranty of
192
193=== modified file 'ubuntu_sanity_tests/helpers/images.py'
194--- ubuntu_sanity_tests/helpers/images.py 2015-03-10 10:29:29 +0000
195+++ ubuntu_sanity_tests/helpers/images.py 2015-05-20 14:46:37 +0000
196@@ -4,9 +4,8 @@
197 # Copyright (C) 2015 Canonical
198 #
199 # This program is free software: you can redistribute it and/or modify
200-# it under the terms of the GNU General Public License as published by
201-# the Free Software Foundation, either version 3 of the License, or
202-# (at your option) any later version.
203+# it under the terms of the GNU General Public License version 3,
204+# as published by the Free Software Foundation.
205 #
206 # This program is distributed in the hope that it will be useful,
207 # but WITHOUT ANY WARRANTY; without even the implied warranty of
208
209=== modified file 'ubuntu_sanity_tests/helpers/indicators.py'
210--- ubuntu_sanity_tests/helpers/indicators.py 2015-02-18 04:57:19 +0000
211+++ ubuntu_sanity_tests/helpers/indicators.py 2015-05-20 14:46:37 +0000
212@@ -5,9 +5,8 @@
213 # Copyright (C) 2015 Canonical
214 #
215 # This program is free software: you can redistribute it and/or modify
216-# it under the terms of the GNU General Public License as published by
217-# the Free Software Foundation, either version 3 of the License, or
218-# (at your option) any later version.
219+# it under the terms of the GNU General Public License version 3,
220+# as published by the Free Software Foundation.
221 #
222 # This program is distributed in the hope that it will be useful,
223 # but WITHOUT ANY WARRANTY; without even the implied warranty of
224
225=== modified file 'ubuntu_sanity_tests/helpers/ofono.py'
226--- ubuntu_sanity_tests/helpers/ofono.py 2015-05-07 16:34:54 +0000
227+++ ubuntu_sanity_tests/helpers/ofono.py 2015-05-20 14:46:37 +0000
228@@ -5,9 +5,8 @@
229 # Copyright (C) 2014 Canonical
230 #
231 # This program is free software: you can redistribute it and/or modify
232-# it under the terms of the GNU General Public License as published by
233-# the Free Software Foundation, either version 3 of the License, or
234-# (at your option) any later version.
235+# it under the terms of the GNU General Public License version 3,
236+# as published by the Free Software Foundation.
237 #
238 # This program is distributed in the hope that it will be useful,
239 # but WITHOUT ANY WARRANTY; without even the implied warranty of
240
241=== modified file 'ubuntu_sanity_tests/helpers/radio_killswitch.py'
242--- ubuntu_sanity_tests/helpers/radio_killswitch.py 2015-02-18 04:57:19 +0000
243+++ ubuntu_sanity_tests/helpers/radio_killswitch.py 2015-05-20 14:46:37 +0000
244@@ -5,9 +5,8 @@
245 # Copyright (C) 2015 Canonical
246 #
247 # This program is free software: you can redistribute it and/or modify
248-# it under the terms of the GNU General Public License as published by
249-# the Free Software Foundation, either version 3 of the License, or
250-# (at your option) any later version.
251+# it under the terms of the GNU General Public License version 3,
252+# as published by the Free Software Foundation.
253 #
254 # This program is distributed in the hope that it will be useful,
255 # but WITHOUT ANY WARRANTY; without even the implied warranty of
256
257=== modified file 'ubuntu_sanity_tests/helpers/system_settings.py'
258--- ubuntu_sanity_tests/helpers/system_settings.py 2015-03-04 10:00:51 +0000
259+++ ubuntu_sanity_tests/helpers/system_settings.py 2015-05-20 14:46:37 +0000
260@@ -5,9 +5,8 @@
261 # Copyright (C) 2014, 2015 Canonical
262 #
263 # This program is free software: you can redistribute it and/or modify
264-# it under the terms of the GNU General Public License as published by
265-# the Free Software Foundation, either version 3 of the License, or
266-# (at your option) any later version.
267+# it under the terms of the GNU General Public License version 3,
268+# as published by the Free Software Foundation.
269 #
270 # This program is distributed in the hope that it will be useful,
271 # but WITHOUT ANY WARRANTY; without even the implied warranty of
272
273=== modified file 'ubuntu_sanity_tests/helpers/testbed.py'
274--- ubuntu_sanity_tests/helpers/testbed.py 2015-05-05 12:20:35 +0000
275+++ ubuntu_sanity_tests/helpers/testbed.py 2015-05-20 14:46:37 +0000
276@@ -5,9 +5,8 @@
277 # Copyright (C) 2015 Canonical
278 #
279 # This program is free software: you can redistribute it and/or modify
280-# it under the terms of the GNU General Public License as published by
281-# the Free Software Foundation, either version 3 of the License, or
282-# (at your option) any later version.
283+# it under the terms of the GNU General Public License version 3,
284+# as published by the Free Software Foundation.
285 #
286 # This program is distributed in the hope that it will be useful,
287 # but WITHOUT ANY WARRANTY; without even the implied warranty of
288
289=== modified file 'ubuntu_sanity_tests/helpers/ubuntuone_credentials.py'
290--- ubuntu_sanity_tests/helpers/ubuntuone_credentials.py 2015-02-24 18:06:44 +0000
291+++ ubuntu_sanity_tests/helpers/ubuntuone_credentials.py 2015-05-20 14:46:37 +0000
292@@ -5,9 +5,8 @@
293 # Copyright (C) 2015 Canonical
294 #
295 # This program is free software: you can redistribute it and/or modify
296-# it under the terms of the GNU General Public License as published by
297-# the Free Software Foundation, either version 3 of the License, or
298-# (at your option) any later version.
299+# it under the terms of the GNU General Public License version 3,
300+# as published by the Free Software Foundation.
301 #
302 # This program is distributed in the hope that it will be useful,
303 # but WITHOUT ANY WARRANTY; without even the implied warranty of
304
305=== modified file 'ubuntu_sanity_tests/helpers/unity8/__init__.py'
306--- ubuntu_sanity_tests/helpers/unity8/__init__.py 2015-03-27 05:05:20 +0000
307+++ ubuntu_sanity_tests/helpers/unity8/__init__.py 2015-05-20 14:46:37 +0000
308@@ -5,9 +5,8 @@
309 # Copyright (C) 2014, 2015 Canonical
310 #
311 # This program is free software: you can redistribute it and/or modify
312-# it under the terms of the GNU General Public License as published by
313-# the Free Software Foundation, either version 3 of the License, or
314-# (at your option) any later version.
315+# it under the terms of the GNU General Public License version 3,
316+# as published by the Free Software Foundation.
317 #
318 # This program is distributed in the hope that it will be useful,
319 # but WITHOUT ANY WARRANTY; without even the implied warranty of
320
321=== modified file 'ubuntu_sanity_tests/helpers/unity8/dash.py'
322--- ubuntu_sanity_tests/helpers/unity8/dash.py 2015-04-06 21:55:41 +0000
323+++ ubuntu_sanity_tests/helpers/unity8/dash.py 2015-05-20 14:46:37 +0000
324@@ -5,9 +5,8 @@
325 # Copyright (C) 2014, 2015 Canonical
326 #
327 # This program is free software: you can redistribute it and/or modify
328-# it under the terms of the GNU General Public License as published by
329-# the Free Software Foundation, either version 3 of the License, or
330-# (at your option) any later version.
331+# it under the terms of the GNU General Public License version 3,
332+# as published by the Free Software Foundation.
333 #
334 # This program is distributed in the hope that it will be useful,
335 # but WITHOUT ANY WARRANTY; without even the implied warranty of
336
337=== modified file 'ubuntu_sanity_tests/helpers/unity8/fixture_setup.py'
338--- ubuntu_sanity_tests/helpers/unity8/fixture_setup.py 2015-02-03 19:05:44 +0000
339+++ ubuntu_sanity_tests/helpers/unity8/fixture_setup.py 2015-05-20 14:46:37 +0000
340@@ -5,9 +5,8 @@
341 # Copyright (C) 2014, 2015 Canonical
342 #
343 # This program is free software: you can redistribute it and/or modify
344-# it under the terms of the GNU General Public License as published by
345-# the Free Software Foundation, either version 3 of the License, or
346-# (at your option) any later version.
347+# it under the terms of the GNU General Public License version 3,
348+# as published by the Free Software Foundation.
349 #
350 # This program is distributed in the hope that it will be useful,
351 # but WITHOUT ANY WARRANTY; without even the implied warranty of
352
353=== modified file 'ubuntu_sanity_tests/helpers/unity8/greeter.py'
354--- ubuntu_sanity_tests/helpers/unity8/greeter.py 2015-03-11 18:10:31 +0000
355+++ ubuntu_sanity_tests/helpers/unity8/greeter.py 2015-05-20 14:46:37 +0000
356@@ -5,9 +5,8 @@
357 # Copyright (C) 2014 Canonical
358 #
359 # This program is free software: you can redistribute it and/or modify
360-# it under the terms of the GNU General Public License as published by
361-# the Free Software Foundation, either version 3 of the License, or
362-# (at your option) any later version.
363+# it under the terms of the GNU General Public License version 3,
364+# as published by the Free Software Foundation.
365 #
366 # This program is distributed in the hope that it will be useful,
367 # but WITHOUT ANY WARRANTY; without even the implied warranty of
368
369=== modified file 'ubuntu_sanity_tests/helpers/unity8/shell.py'
370--- ubuntu_sanity_tests/helpers/unity8/shell.py 2015-05-11 04:01:14 +0000
371+++ ubuntu_sanity_tests/helpers/unity8/shell.py 2015-05-20 14:46:37 +0000
372@@ -5,9 +5,8 @@
373 # Copyright (C) 2015 Canonical
374 #
375 # This program is free software: you can redistribute it and/or modify
376-# it under the terms of the GNU General Public License as published by
377-# the Free Software Foundation, either version 3 of the License, or
378-# (at your option) any later version.
379+# it under the terms of the GNU General Public License version 3,
380+# as published by the Free Software Foundation.
381 #
382 # This program is distributed in the hope that it will be useful,
383 # but WITHOUT ANY WARRANTY; without even the implied warranty of
384
385=== modified file 'ubuntu_sanity_tests/helpers/unityclickscope.py'
386--- ubuntu_sanity_tests/helpers/unityclickscope.py 2015-02-25 15:09:04 +0000
387+++ ubuntu_sanity_tests/helpers/unityclickscope.py 2015-05-20 14:46:37 +0000
388@@ -5,9 +5,8 @@
389 # Copyright (C) 2015 Canonical
390 #
391 # This program is free software: you can redistribute it and/or modify
392-# it under the terms of the GNU General Public License as published by
393-# the Free Software Foundation, either version 3 of the License, or
394-# (at your option) any later version.
395+# it under the terms of the GNU General Public License version 3,
396+# as published by the Free Software Foundation.
397 #
398 # This program is distributed in the hope that it will be useful,
399 # but WITHOUT ANY WARRANTY; without even the implied warranty of
400
401=== modified file 'ubuntu_sanity_tests/helpers/webbrowser.py'
402--- ubuntu_sanity_tests/helpers/webbrowser.py 2015-04-09 09:56:15 +0000
403+++ ubuntu_sanity_tests/helpers/webbrowser.py 2015-05-20 14:46:37 +0000
404@@ -5,9 +5,8 @@
405 # Copyright (C) 2015 Canonical
406 #
407 # This program is free software: you can redistribute it and/or modify
408-# it under the terms of the GNU General Public License as published by
409-# the Free Software Foundation, either version 3 of the License, or
410-# (at your option) any later version.
411+# it under the terms of the GNU General Public License version 3,
412+# as published by the Free Software Foundation.
413 #
414 # This program is distributed in the hope that it will be useful,
415 # but WITHOUT ANY WARRANTY; without even the implied warranty of
416
417=== modified file 'ubuntu_sanity_tests/results.py'
418--- ubuntu_sanity_tests/results.py 2015-02-11 19:47:05 +0000
419+++ ubuntu_sanity_tests/results.py 2015-05-20 14:46:37 +0000
420@@ -5,9 +5,8 @@
421 # Copyright (C) 2014 Canonical
422 #
423 # This program is free software: you can redistribute it and/or modify
424-# it under the terms of the GNU General Public License as published by
425-# the Free Software Foundation, either version 3 of the License, or
426-# (at your option) any later version.
427+# it under the terms of the GNU General Public License version 3,
428+# as published by the Free Software Foundation.
429 #
430 # This program is distributed in the hope that it will be useful,
431 # but WITHOUT ANY WARRANTY; without even the implied warranty of
432
433=== modified file 'ubuntu_sanity_tests/sanity.py'
434--- ubuntu_sanity_tests/sanity.py 2015-02-06 14:32:00 +0000
435+++ ubuntu_sanity_tests/sanity.py 2015-05-20 14:46:37 +0000
436@@ -5,9 +5,8 @@
437 # Copyright (C) 2014, 2015 Canonical
438 #
439 # This program is free software: you can redistribute it and/or modify
440-# it under the terms of the GNU General Public License as published by
441-# the Free Software Foundation, either version 3 of the License, or
442-# (at your option) any later version.
443+# it under the terms of the GNU General Public License version 3,
444+# as published by the Free Software Foundation.
445 #
446 # This program is distributed in the hope that it will be useful,
447 # but WITHOUT ANY WARRANTY; without even the implied warranty of
448
449=== modified file 'ubuntu_sanity_tests/selftests/__init__.py'
450--- ubuntu_sanity_tests/selftests/__init__.py 2015-02-05 07:08:23 +0000
451+++ ubuntu_sanity_tests/selftests/__init__.py 2015-05-20 14:46:37 +0000
452@@ -5,9 +5,8 @@
453 # Copyright (C) 2014, 2015 Canonical
454 #
455 # This program is free software: you can redistribute it and/or modify
456-# it under the terms of the GNU General Public License as published by
457-# the Free Software Foundation, either version 3 of the License, or
458-# (at your option) any later version.
459+# it under the terms of the GNU General Public License version 3,
460+# as published by the Free Software Foundation.
461 #
462 # This program is distributed in the hope that it will be useful,
463 # but WITHOUT ANY WARRANTY; without even the implied warranty of
464
465=== modified file 'ubuntu_sanity_tests/selftests/test_command_line.py'
466--- ubuntu_sanity_tests/selftests/test_command_line.py 2015-03-09 11:54:42 +0000
467+++ ubuntu_sanity_tests/selftests/test_command_line.py 2015-05-20 14:46:37 +0000
468@@ -5,9 +5,8 @@
469 # Copyright (C) 2015 Canonical
470 #
471 # This program is free software: you can redistribute it and/or modify
472-# it under the terms of the GNU General Public License as published by
473-# the Free Software Foundation, either version 3 of the License, or
474-# (at your option) any later version.
475+# it under the terms of the GNU General Public License version 3,
476+# as published by the Free Software Foundation.
477 #
478 # This program is distributed in the hope that it will be useful,
479 # but WITHOUT ANY WARRANTY; without even the implied warranty of
480
481=== modified file 'ubuntu_sanity_tests/selftests/test_config.py'
482--- ubuntu_sanity_tests/selftests/test_config.py 2015-03-30 20:53:26 +0000
483+++ ubuntu_sanity_tests/selftests/test_config.py 2015-05-20 14:46:37 +0000
484@@ -5,9 +5,8 @@
485 # Copyright (C) 2014, 2015 Canonical
486 #
487 # This program is free software: you can redistribute it and/or modify
488-# it under the terms of the GNU General Public License as published by
489-# the Free Software Foundation, either version 3 of the License, or
490-# (at your option) any later version.
491+# it under the terms of the GNU General Public License version 3,
492+# as published by the Free Software Foundation.
493 #
494 # This program is distributed in the hope that it will be useful,
495 # but WITHOUT ANY WARRANTY; without even the implied warranty of
496
497=== modified file 'ubuntu_sanity_tests/selftests/test_results.py'
498--- ubuntu_sanity_tests/selftests/test_results.py 2015-02-11 19:47:05 +0000
499+++ ubuntu_sanity_tests/selftests/test_results.py 2015-05-20 14:46:37 +0000
500@@ -5,9 +5,8 @@
501 # Copyright (C) 2014 Canonical
502 #
503 # This program is free software: you can redistribute it and/or modify
504-# it under the terms of the GNU General Public License as published by
505-# the Free Software Foundation, either version 3 of the License, or
506-# (at your option) any later version.
507+# it under the terms of the GNU General Public License version 3,
508+# as published by the Free Software Foundation.
509 #
510 # This program is distributed in the hope that it will be useful,
511 # but WITHOUT ANY WARRANTY; without even the implied warranty of
512
513=== modified file 'ubuntu_sanity_tests/selftests/test_testbed_commands.py'
514--- ubuntu_sanity_tests/selftests/test_testbed_commands.py 2015-02-06 16:33:08 +0000
515+++ ubuntu_sanity_tests/selftests/test_testbed_commands.py 2015-05-20 14:46:37 +0000
516@@ -5,9 +5,8 @@
517 # Copyright (C) 2015 Canonical
518 #
519 # This program is free software: you can redistribute it and/or modify
520-# it under the terms of the GNU General Public License as published by
521-# the Free Software Foundation, either version 3 of the License, or
522-# (at your option) any later version.
523+# it under the terms of the GNU General Public License version 3,
524+# as published by the Free Software Foundation.
525 #
526 # This program is distributed in the hope that it will be useful,
527 # but WITHOUT ANY WARRANTY; without even the implied warranty of
528
529=== modified file 'ubuntu_sanity_tests/selftests/test_tests_to_run.py'
530--- ubuntu_sanity_tests/selftests/test_tests_to_run.py 2015-03-11 19:16:05 +0000
531+++ ubuntu_sanity_tests/selftests/test_tests_to_run.py 2015-05-20 14:46:37 +0000
532@@ -5,9 +5,8 @@
533 # Copyright (C) 2015 Canonical
534 #
535 # This program is free software: you can redistribute it and/or modify
536-# it under the terms of the GNU General Public License as published by
537-# the Free Software Foundation, either version 3 of the License, or
538-# (at your option) any later version.
539+# it under the terms of the GNU General Public License version 3,
540+# as published by the Free Software Foundation.
541 #
542 # This program is distributed in the hope that it will be useful,
543 # but WITHOUT ANY WARRANTY; without even the implied warranty of
544
545=== modified file 'ubuntu_sanity_tests/tests/__init__.py'
546--- ubuntu_sanity_tests/tests/__init__.py 2015-02-25 16:49:02 +0000
547+++ ubuntu_sanity_tests/tests/__init__.py 2015-05-20 14:46:37 +0000
548@@ -5,9 +5,8 @@
549 # Copyright (C) 2014, 2015 Canonical
550 #
551 # This program is free software: you can redistribute it and/or modify
552-# it under the terms of the GNU General Public License as published by
553-# the Free Software Foundation, either version 3 of the License, or
554-# (at your option) any later version.
555+# it under the terms of the GNU General Public License version 3,
556+# as published by the Free Software Foundation.
557 #
558 # This program is distributed in the hope that it will be useful,
559 # but WITHOUT ANY WARRANTY; without even the implied warranty of
560
561=== modified file 'ubuntu_sanity_tests/tests/base.py'
562--- ubuntu_sanity_tests/tests/base.py 2015-05-15 07:48:41 +0000
563+++ ubuntu_sanity_tests/tests/base.py 2015-05-20 14:46:37 +0000
564@@ -5,9 +5,8 @@
565 # Copyright (C) 2014, 2015 Canonical
566 #
567 # This program is free software: you can redistribute it and/or modify
568-# it under the terms of the GNU General Public License as published by
569-# the Free Software Foundation, either version 3 of the License, or
570-# (at your option) any later version.
571+# it under the terms of the GNU General Public License version 3,
572+# as published by the Free Software Foundation.
573 #
574 # This program is distributed in the hope that it will be useful,
575 # but WITHOUT ANY WARRANTY; without even the implied warranty of
576
577=== modified file 'ubuntu_sanity_tests/tests/test_add_contact.py'
578--- ubuntu_sanity_tests/tests/test_add_contact.py 2015-02-27 04:37:40 +0000
579+++ ubuntu_sanity_tests/tests/test_add_contact.py 2015-05-20 14:46:37 +0000
580@@ -5,9 +5,8 @@
581 # Copyright (C) 2015 Canonical
582 #
583 # This program is free software: you can redistribute it and/or modify
584-# it under the terms of the GNU General Public License as published by
585-# the Free Software Foundation, either version 3 of the License, or
586-# (at your option) any later version.
587+# it under the terms of the GNU General Public License version 3,
588+# as published by the Free Software Foundation.
589 #
590 # This program is distributed in the hope that it will be useful,
591 # but WITHOUT ANY WARRANTY; without even the implied warranty of
592
593=== modified file 'ubuntu_sanity_tests/tests/test_app_store.py'
594--- ubuntu_sanity_tests/tests/test_app_store.py 2015-03-30 09:25:06 +0000
595+++ ubuntu_sanity_tests/tests/test_app_store.py 2015-05-20 14:46:37 +0000
596@@ -5,9 +5,8 @@
597 # Copyright (C) 2014, 2015 Canonical
598 #
599 # This program is free software: you can redistribute it and/or modify
600-# it under the terms of the GNU General Public License as published by
601-# the Free Software Foundation, either version 3 of the License, or
602-# (at your option) any later version.
603+# it under the terms of the GNU General Public License version 3,
604+# as published by the Free Software Foundation.
605 #
606 # This program is distributed in the hope that it will be useful,
607 # but WITHOUT ANY WARRANTY; without even the implied warranty of
608
609=== modified file 'ubuntu_sanity_tests/tests/test_camera.py'
610--- ubuntu_sanity_tests/tests/test_camera.py 2015-05-07 10:53:33 +0000
611+++ ubuntu_sanity_tests/tests/test_camera.py 2015-05-20 14:46:37 +0000
612@@ -4,9 +4,8 @@
613 # Copyright (C) 2015 Canonical
614 #
615 # This program is free software: you can redistribute it and/or modify
616-# it under the terms of the GNU General Public License as published by
617-# the Free Software Foundation, either version 3 of the License, or
618-# (at your option) any later version.
619+# it under the terms of the GNU General Public License version 3,
620+# as published by the Free Software Foundation.
621 #
622 # This program is distributed in the hope that it will be useful,
623 # but WITHOUT ANY WARRANTY; without even the implied warranty of
624
625=== modified file 'ubuntu_sanity_tests/tests/test_flight_mode.py'
626--- ubuntu_sanity_tests/tests/test_flight_mode.py 2015-05-07 10:57:45 +0000
627+++ ubuntu_sanity_tests/tests/test_flight_mode.py 2015-05-20 14:46:37 +0000
628@@ -5,9 +5,8 @@
629 # Copyright (C) 2015 Canonical
630 #
631 # This program is free software: you can redistribute it and/or modify
632-# it under the terms of the GNU General Public License as published by
633-# the Free Software Foundation, either version 3 of the License, or
634-# (at your option) any later version.
635+# it under the terms of the GNU General Public License version 3,
636+# as published by the Free Software Foundation.
637 #
638 # This program is distributed in the hope that it will be useful,
639 # but WITHOUT ANY WARRANTY; without even the implied warranty of
640
641=== modified file 'ubuntu_sanity_tests/tests/test_html5_application.py'
642--- ubuntu_sanity_tests/tests/test_html5_application.py 2015-03-30 17:04:24 +0000
643+++ ubuntu_sanity_tests/tests/test_html5_application.py 2015-05-20 14:46:37 +0000
644@@ -5,9 +5,8 @@
645 # Copyright (C) 2015 Canonical
646 #
647 # This program is free software: you can redistribute it and/or modify
648-# it under the terms of the GNU General Public License as published by
649-# the Free Software Foundation, either version 3 of the License, or
650-# (at your option) any later version.
651+# it under the terms of the GNU General Public License version 3,
652+# as published by the Free Software Foundation.
653 #
654 # This program is distributed in the hope that it will be useful,
655 # but WITHOUT ANY WARRANTY; without even the implied warranty of
656
657=== modified file 'ubuntu_sanity_tests/tests/test_sim_pin.py'
658--- ubuntu_sanity_tests/tests/test_sim_pin.py 2015-05-07 10:57:45 +0000
659+++ ubuntu_sanity_tests/tests/test_sim_pin.py 2015-05-20 14:46:37 +0000
660@@ -5,9 +5,8 @@
661 # Copyright (C) 2014, 2015 Canonical
662 #
663 # This program is free software: you can redistribute it and/or modify
664-# it under the terms of the GNU General Public License as published by
665-# the Free Software Foundation, either version 3 of the License, or
666-# (at your option) any later version.
667+# it under the terms of the GNU General Public License version 3,
668+# as published by the Free Software Foundation.
669 #
670 # This program is distributed in the hope that it will be useful,
671 # but WITHOUT ANY WARRANTY; without even the implied warranty of
672
673=== modified file 'ubuntu_sanity_tests/tests/test_tutorial.py'
674--- ubuntu_sanity_tests/tests/test_tutorial.py 2015-02-17 05:29:17 +0000
675+++ ubuntu_sanity_tests/tests/test_tutorial.py 2015-05-20 14:46:37 +0000
676@@ -5,9 +5,8 @@
677 # Copyright (C) 2015 Canonical
678 #
679 # This program is free software: you can redistribute it and/or modify
680-# it under the terms of the GNU General Public License as published by
681-# the Free Software Foundation, either version 3 of the License, or
682-# (at your option) any later version.
683+# it under the terms of the GNU General Public License version 3,
684+# as published by the Free Software Foundation.
685 #
686 # This program is distributed in the hope that it will be useful,
687 # but WITHOUT ANY WARRANTY; without even the implied warranty of
688
689=== modified file 'ubuntu_sanity_tests/tests/test_uninstall_application.py'
690--- ubuntu_sanity_tests/tests/test_uninstall_application.py 2015-03-26 16:58:15 +0000
691+++ ubuntu_sanity_tests/tests/test_uninstall_application.py 2015-05-20 14:46:37 +0000
692@@ -5,9 +5,8 @@
693 # Copyright (C) 2015 Canonical
694 #
695 # This program is free software: you can redistribute it and/or modify
696-# it under the terms of the GNU General Public License as published by
697-# the Free Software Foundation, either version 3 of the License, or
698-# (at your option) any later version.
699+# it under the terms of the GNU General Public License version 3,
700+# as published by the Free Software Foundation.
701 #
702 # This program is distributed in the hope that it will be useful,
703 # but WITHOUT ANY WARRANTY; without even the implied warranty of
704
705=== modified file 'ubuntu_sanity_tests/tests/test_with_webbrowser.py'
706--- ubuntu_sanity_tests/tests/test_with_webbrowser.py 2015-04-30 10:58:05 +0000
707+++ ubuntu_sanity_tests/tests/test_with_webbrowser.py 2015-05-20 14:46:37 +0000
708@@ -5,9 +5,8 @@
709 # Copyright (C) 2014, 2015 Canonical
710 #
711 # This program is free software: you can redistribute it and/or modify
712-# it under the terms of the GNU General Public License as published by
713-# the Free Software Foundation, either version 3 of the License, or
714-# (at your option) any later version.
715+# it under the terms of the GNU General Public License version 3,
716+# as published by the Free Software Foundation.
717 #
718 # This program is distributed in the hope that it will be useful,
719 # but WITHOUT ANY WARRANTY; without even the implied warranty of

Subscribers

People subscribed via source and target branches

to all changes: