Merge lp:~kyrofa/unity-scope-snappy/license_file_headers into lp:~unity-api-team/unity-scope-snappy/trunk

Proposed by Kyle Fazzari
Status: Merged
Approved by: Charles Kerr
Approved revision: 35
Merged at revision: 35
Proposed branch: lp:~kyrofa/unity-scope-snappy/license_file_headers
Merge into: lp:~unity-api-team/unity-scope-snappy/trunk
Diff against target: 1648 lines (+1129/-0)
63 files modified
store/actions/cancel_uninstall_runner.go (+18/-0)
store/actions/cancel_uninstall_runner_test.go (+18/-0)
store/actions/confirm_uninstall_runner.go (+18/-0)
store/actions/confirm_uninstall_runner_test.go (+18/-0)
store/actions/failed_runner.go (+18/-0)
store/actions/failed_runner_test.go (+18/-0)
store/actions/finished_runner.go (+18/-0)
store/actions/finished_runner_test.go (+18/-0)
store/actions/install_runner.go (+18/-0)
store/actions/install_runner_test.go (+18/-0)
store/actions/open_runner.go (+18/-0)
store/actions/open_runner_test.go (+18/-0)
store/actions/runner.go (+18/-0)
store/actions/runner_test.go (+18/-0)
store/actions/uninstall_runner.go (+18/-0)
store/actions/uninstall_runner_test.go (+18/-0)
store/main.go (+18/-0)
store/operation/metadata.go (+18/-0)
store/packages/dbus_manager.go (+18/-0)
store/packages/dbus_manager_client.go (+18/-0)
store/packages/dbus_manager_client_test.go (+18/-0)
store/packages/fakes/fake_dbus_manager.go (+18/-0)
store/packages/fakes/fake_dbus_manager_test.go (+18/-0)
store/packages/fakes/fake_webdm_manager.go (+18/-0)
store/packages/fakes/fake_webdm_manager_test.go (+18/-0)
store/packages/webdm_manager.go (+18/-0)
store/previews/confirm_uninstall_preview.go (+18/-0)
store/previews/confirm_uninstall_preview_test.go (+18/-0)
store/previews/fakes/fake_widget_receiver.go (+18/-0)
store/previews/fakes/fake_widget_receiver_test.go (+18/-0)
store/previews/humanize/bytes.go (+18/-0)
store/previews/humanize/bytes_test.go (+18/-0)
store/previews/interfaces/preview_generator.go (+18/-0)
store/previews/interfaces/widget_receiver.go (+18/-0)
store/previews/packages/preview.go (+18/-0)
store/previews/packages/preview_test.go (+18/-0)
store/previews/packages/templates/generic_template.go (+18/-0)
store/previews/packages/templates/generic_template_test.go (+18/-0)
store/previews/packages/templates/installed_template.go (+18/-0)
store/previews/packages/templates/installed_template_test.go (+18/-0)
store/previews/packages/templates/installing_template.go (+18/-0)
store/previews/packages/templates/installing_template_test.go (+18/-0)
store/previews/packages/templates/store_template.go (+18/-0)
store/previews/packages/templates/store_template_test.go (+18/-0)
store/previews/packages/templates/template.go (+18/-0)
store/previews/packages/templates/uninstalling_template.go (+18/-0)
store/previews/packages/templates/uninstalling_template_test.go (+18/-0)
store/previews/preview_generator.go (+18/-0)
store/previews/preview_generator_test.go (+18/-0)
store/scope/scope.go (+18/-0)
store/utilities/utilities.go (+18/-0)
store/utilities/utilities_test.go (+18/-0)
test/fakes/fake_webdm_server.py (+19/-0)
test/fakes/package.py (+19/-0)
test/fakes/test_fake_webdm_server.py (+17/-0)
test/store/package_management_tasks.py (+17/-0)
test/store/test_departments.py (+17/-0)
test/store/test_package_management.py (+17/-0)
test/store/test_package_management_failures.py (+17/-0)
test/store/test_previews.py (+17/-0)
test/store/test_surface.py (+17/-0)
test/test_fixtures/server_fixture.py (+19/-0)
test_coverage.sh (+17/-0)
To merge this branch: bzr merge lp:~kyrofa/unity-scope-snappy/license_file_headers
Reviewer Review Type Date Requested Status
Charles Kerr (community) Approve
PS Jenkins bot (community) continuous-integration Approve
Review via email: mp+266137@code.launchpad.net

Commit message

Add license information in file headers.

Description of the change

Add license information in file headers.

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
35. By Kyle Fazzari

Remove license header from Makefile.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Charles Kerr (charlesk) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'store/actions/cancel_uninstall_runner.go'
2--- store/actions/cancel_uninstall_runner.go 2015-06-30 19:31:01 +0000
3+++ store/actions/cancel_uninstall_runner.go 2015-07-28 19:02:41 +0000
4@@ -1,3 +1,21 @@
5+/* Copyright (C) 2015 Canonical Ltd.
6+ *
7+ * This file is part of unity-scope-snappy.
8+ *
9+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
10+ * under the terms of the GNU General Public License as published by the Free
11+ * Software Foundation, either version 3 of the License, or (at your option) any
12+ * later version.
13+ *
14+ * unity-scope-snappy is distributed in the hope that it will be useful, but
15+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17+ * details.
18+ *
19+ * You should have received a copy of the GNU General Public License along with
20+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
21+ */
22+
23 package actions
24
25 import (
26
27=== modified file 'store/actions/cancel_uninstall_runner_test.go'
28--- store/actions/cancel_uninstall_runner_test.go 2015-06-30 19:31:01 +0000
29+++ store/actions/cancel_uninstall_runner_test.go 2015-07-28 19:02:41 +0000
30@@ -1,3 +1,21 @@
31+/* Copyright (C) 2015 Canonical Ltd.
32+ *
33+ * This file is part of unity-scope-snappy.
34+ *
35+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
36+ * under the terms of the GNU General Public License as published by the Free
37+ * Software Foundation, either version 3 of the License, or (at your option) any
38+ * later version.
39+ *
40+ * unity-scope-snappy is distributed in the hope that it will be useful, but
41+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
42+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
43+ * details.
44+ *
45+ * You should have received a copy of the GNU General Public License along with
46+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
47+ */
48+
49 package actions
50
51 import (
52
53=== modified file 'store/actions/confirm_uninstall_runner.go'
54--- store/actions/confirm_uninstall_runner.go 2015-06-30 19:31:01 +0000
55+++ store/actions/confirm_uninstall_runner.go 2015-07-28 19:02:41 +0000
56@@ -1,3 +1,21 @@
57+/* Copyright (C) 2015 Canonical Ltd.
58+ *
59+ * This file is part of unity-scope-snappy.
60+ *
61+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
62+ * under the terms of the GNU General Public License as published by the Free
63+ * Software Foundation, either version 3 of the License, or (at your option) any
64+ * later version.
65+ *
66+ * unity-scope-snappy is distributed in the hope that it will be useful, but
67+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
68+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
69+ * details.
70+ *
71+ * You should have received a copy of the GNU General Public License along with
72+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
73+ */
74+
75 package actions
76
77 import (
78
79=== modified file 'store/actions/confirm_uninstall_runner_test.go'
80--- store/actions/confirm_uninstall_runner_test.go 2015-06-30 19:31:01 +0000
81+++ store/actions/confirm_uninstall_runner_test.go 2015-07-28 19:02:41 +0000
82@@ -1,3 +1,21 @@
83+/* Copyright (C) 2015 Canonical Ltd.
84+ *
85+ * This file is part of unity-scope-snappy.
86+ *
87+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
88+ * under the terms of the GNU General Public License as published by the Free
89+ * Software Foundation, either version 3 of the License, or (at your option) any
90+ * later version.
91+ *
92+ * unity-scope-snappy is distributed in the hope that it will be useful, but
93+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
94+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
95+ * details.
96+ *
97+ * You should have received a copy of the GNU General Public License along with
98+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
99+ */
100+
101 package actions
102
103 import (
104
105=== modified file 'store/actions/failed_runner.go'
106--- store/actions/failed_runner.go 2015-07-01 14:26:11 +0000
107+++ store/actions/failed_runner.go 2015-07-28 19:02:41 +0000
108@@ -1,3 +1,21 @@
109+/* Copyright (C) 2015 Canonical Ltd.
110+ *
111+ * This file is part of unity-scope-snappy.
112+ *
113+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
114+ * under the terms of the GNU General Public License as published by the Free
115+ * Software Foundation, either version 3 of the License, or (at your option) any
116+ * later version.
117+ *
118+ * unity-scope-snappy is distributed in the hope that it will be useful, but
119+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
120+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
121+ * details.
122+ *
123+ * You should have received a copy of the GNU General Public License along with
124+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
125+ */
126+
127 package actions
128
129 import (
130
131=== modified file 'store/actions/failed_runner_test.go'
132--- store/actions/failed_runner_test.go 2015-07-01 14:26:11 +0000
133+++ store/actions/failed_runner_test.go 2015-07-28 19:02:41 +0000
134@@ -1,3 +1,21 @@
135+/* Copyright (C) 2015 Canonical Ltd.
136+ *
137+ * This file is part of unity-scope-snappy.
138+ *
139+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
140+ * under the terms of the GNU General Public License as published by the Free
141+ * Software Foundation, either version 3 of the License, or (at your option) any
142+ * later version.
143+ *
144+ * unity-scope-snappy is distributed in the hope that it will be useful, but
145+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
146+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
147+ * details.
148+ *
149+ * You should have received a copy of the GNU General Public License along with
150+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
151+ */
152+
153 package actions
154
155 import (
156
157=== modified file 'store/actions/finished_runner.go'
158--- store/actions/finished_runner.go 2015-06-30 19:31:01 +0000
159+++ store/actions/finished_runner.go 2015-07-28 19:02:41 +0000
160@@ -1,3 +1,21 @@
161+/* Copyright (C) 2015 Canonical Ltd.
162+ *
163+ * This file is part of unity-scope-snappy.
164+ *
165+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
166+ * under the terms of the GNU General Public License as published by the Free
167+ * Software Foundation, either version 3 of the License, or (at your option) any
168+ * later version.
169+ *
170+ * unity-scope-snappy is distributed in the hope that it will be useful, but
171+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
172+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
173+ * details.
174+ *
175+ * You should have received a copy of the GNU General Public License along with
176+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
177+ */
178+
179 package actions
180
181 import (
182
183=== modified file 'store/actions/finished_runner_test.go'
184--- store/actions/finished_runner_test.go 2015-06-30 19:31:01 +0000
185+++ store/actions/finished_runner_test.go 2015-07-28 19:02:41 +0000
186@@ -1,3 +1,21 @@
187+/* Copyright (C) 2015 Canonical Ltd.
188+ *
189+ * This file is part of unity-scope-snappy.
190+ *
191+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
192+ * under the terms of the GNU General Public License as published by the Free
193+ * Software Foundation, either version 3 of the License, or (at your option) any
194+ * later version.
195+ *
196+ * unity-scope-snappy is distributed in the hope that it will be useful, but
197+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
198+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
199+ * details.
200+ *
201+ * You should have received a copy of the GNU General Public License along with
202+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
203+ */
204+
205 package actions
206
207 import (
208
209=== modified file 'store/actions/install_runner.go'
210--- store/actions/install_runner.go 2015-06-30 19:59:02 +0000
211+++ store/actions/install_runner.go 2015-07-28 19:02:41 +0000
212@@ -1,3 +1,21 @@
213+/* Copyright (C) 2015 Canonical Ltd.
214+ *
215+ * This file is part of unity-scope-snappy.
216+ *
217+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
218+ * under the terms of the GNU General Public License as published by the Free
219+ * Software Foundation, either version 3 of the License, or (at your option) any
220+ * later version.
221+ *
222+ * unity-scope-snappy is distributed in the hope that it will be useful, but
223+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
224+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
225+ * details.
226+ *
227+ * You should have received a copy of the GNU General Public License along with
228+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
229+ */
230+
231 package actions
232
233 import (
234
235=== modified file 'store/actions/install_runner_test.go'
236--- store/actions/install_runner_test.go 2015-06-30 19:59:02 +0000
237+++ store/actions/install_runner_test.go 2015-07-28 19:02:41 +0000
238@@ -1,3 +1,21 @@
239+/* Copyright (C) 2015 Canonical Ltd.
240+ *
241+ * This file is part of unity-scope-snappy.
242+ *
243+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
244+ * under the terms of the GNU General Public License as published by the Free
245+ * Software Foundation, either version 3 of the License, or (at your option) any
246+ * later version.
247+ *
248+ * unity-scope-snappy is distributed in the hope that it will be useful, but
249+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
250+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
251+ * details.
252+ *
253+ * You should have received a copy of the GNU General Public License along with
254+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
255+ */
256+
257 package actions
258
259 import (
260
261=== modified file 'store/actions/open_runner.go'
262--- store/actions/open_runner.go 2015-06-30 19:31:01 +0000
263+++ store/actions/open_runner.go 2015-07-28 19:02:41 +0000
264@@ -1,3 +1,21 @@
265+/* Copyright (C) 2015 Canonical Ltd.
266+ *
267+ * This file is part of unity-scope-snappy.
268+ *
269+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
270+ * under the terms of the GNU General Public License as published by the Free
271+ * Software Foundation, either version 3 of the License, or (at your option) any
272+ * later version.
273+ *
274+ * unity-scope-snappy is distributed in the hope that it will be useful, but
275+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
276+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
277+ * details.
278+ *
279+ * You should have received a copy of the GNU General Public License along with
280+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
281+ */
282+
283 package actions
284
285 import (
286
287=== modified file 'store/actions/open_runner_test.go'
288--- store/actions/open_runner_test.go 2015-06-30 19:31:01 +0000
289+++ store/actions/open_runner_test.go 2015-07-28 19:02:41 +0000
290@@ -1,3 +1,21 @@
291+/* Copyright (C) 2015 Canonical Ltd.
292+ *
293+ * This file is part of unity-scope-snappy.
294+ *
295+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
296+ * under the terms of the GNU General Public License as published by the Free
297+ * Software Foundation, either version 3 of the License, or (at your option) any
298+ * later version.
299+ *
300+ * unity-scope-snappy is distributed in the hope that it will be useful, but
301+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
302+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
303+ * details.
304+ *
305+ * You should have received a copy of the GNU General Public License along with
306+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
307+ */
308+
309 package actions
310
311 import (
312
313=== modified file 'store/actions/runner.go'
314--- store/actions/runner.go 2015-07-01 14:30:19 +0000
315+++ store/actions/runner.go 2015-07-28 19:02:41 +0000
316@@ -1,3 +1,21 @@
317+/* Copyright (C) 2015 Canonical Ltd.
318+ *
319+ * This file is part of unity-scope-snappy.
320+ *
321+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
322+ * under the terms of the GNU General Public License as published by the Free
323+ * Software Foundation, either version 3 of the License, or (at your option) any
324+ * later version.
325+ *
326+ * unity-scope-snappy is distributed in the hope that it will be useful, but
327+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
328+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
329+ * details.
330+ *
331+ * You should have received a copy of the GNU General Public License along with
332+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
333+ */
334+
335 package actions
336
337 import (
338
339=== modified file 'store/actions/runner_test.go'
340--- store/actions/runner_test.go 2015-07-01 14:30:19 +0000
341+++ store/actions/runner_test.go 2015-07-28 19:02:41 +0000
342@@ -1,3 +1,21 @@
343+/* Copyright (C) 2015 Canonical Ltd.
344+ *
345+ * This file is part of unity-scope-snappy.
346+ *
347+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
348+ * under the terms of the GNU General Public License as published by the Free
349+ * Software Foundation, either version 3 of the License, or (at your option) any
350+ * later version.
351+ *
352+ * unity-scope-snappy is distributed in the hope that it will be useful, but
353+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
354+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
355+ * details.
356+ *
357+ * You should have received a copy of the GNU General Public License along with
358+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
359+ */
360+
361 package actions
362
363 import (
364
365=== modified file 'store/actions/uninstall_runner.go'
366--- store/actions/uninstall_runner.go 2015-06-30 19:59:02 +0000
367+++ store/actions/uninstall_runner.go 2015-07-28 19:02:41 +0000
368@@ -1,3 +1,21 @@
369+/* Copyright (C) 2015 Canonical Ltd.
370+ *
371+ * This file is part of unity-scope-snappy.
372+ *
373+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
374+ * under the terms of the GNU General Public License as published by the Free
375+ * Software Foundation, either version 3 of the License, or (at your option) any
376+ * later version.
377+ *
378+ * unity-scope-snappy is distributed in the hope that it will be useful, but
379+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
380+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
381+ * details.
382+ *
383+ * You should have received a copy of the GNU General Public License along with
384+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
385+ */
386+
387 package actions
388
389 import (
390
391=== modified file 'store/actions/uninstall_runner_test.go'
392--- store/actions/uninstall_runner_test.go 2015-06-30 19:59:02 +0000
393+++ store/actions/uninstall_runner_test.go 2015-07-28 19:02:41 +0000
394@@ -1,3 +1,21 @@
395+/* Copyright (C) 2015 Canonical Ltd.
396+ *
397+ * This file is part of unity-scope-snappy.
398+ *
399+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
400+ * under the terms of the GNU General Public License as published by the Free
401+ * Software Foundation, either version 3 of the License, or (at your option) any
402+ * later version.
403+ *
404+ * unity-scope-snappy is distributed in the hope that it will be useful, but
405+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
406+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
407+ * details.
408+ *
409+ * You should have received a copy of the GNU General Public License along with
410+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
411+ */
412+
413 package actions
414
415 import (
416
417=== modified file 'store/main.go'
418--- store/main.go 2015-07-15 16:34:50 +0000
419+++ store/main.go 2015-07-28 19:02:41 +0000
420@@ -1,3 +1,21 @@
421+/* Copyright (C) 2015 Canonical Ltd.
422+ *
423+ * This file is part of unity-scope-snappy.
424+ *
425+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
426+ * under the terms of the GNU General Public License as published by the Free
427+ * Software Foundation, either version 3 of the License, or (at your option) any
428+ * later version.
429+ *
430+ * unity-scope-snappy is distributed in the hope that it will be useful, but
431+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
432+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
433+ * details.
434+ *
435+ * You should have received a copy of the GNU General Public License along with
436+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
437+ */
438+
439 package main
440
441 import (
442
443=== modified file 'store/operation/metadata.go'
444--- store/operation/metadata.go 2015-07-01 14:26:11 +0000
445+++ store/operation/metadata.go 2015-07-28 19:02:41 +0000
446@@ -1,3 +1,21 @@
447+/* Copyright (C) 2015 Canonical Ltd.
448+ *
449+ * This file is part of unity-scope-snappy.
450+ *
451+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
452+ * under the terms of the GNU General Public License as published by the Free
453+ * Software Foundation, either version 3 of the License, or (at your option) any
454+ * later version.
455+ *
456+ * unity-scope-snappy is distributed in the hope that it will be useful, but
457+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
458+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
459+ * details.
460+ *
461+ * You should have received a copy of the GNU General Public License along with
462+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
463+ */
464+
465 package operation
466
467 import (
468
469=== modified file 'store/packages/dbus_manager.go'
470--- store/packages/dbus_manager.go 2015-06-30 19:31:01 +0000
471+++ store/packages/dbus_manager.go 2015-07-28 19:02:41 +0000
472@@ -1,3 +1,21 @@
473+/* Copyright (C) 2015 Canonical Ltd.
474+ *
475+ * This file is part of unity-scope-snappy.
476+ *
477+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
478+ * under the terms of the GNU General Public License as published by the Free
479+ * Software Foundation, either version 3 of the License, or (at your option) any
480+ * later version.
481+ *
482+ * unity-scope-snappy is distributed in the hope that it will be useful, but
483+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
484+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
485+ * details.
486+ *
487+ * You should have received a copy of the GNU General Public License along with
488+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
489+ */
490+
491 package packages
492
493 import (
494
495=== modified file 'store/packages/dbus_manager_client.go'
496--- store/packages/dbus_manager_client.go 2015-06-30 19:59:02 +0000
497+++ store/packages/dbus_manager_client.go 2015-07-28 19:02:41 +0000
498@@ -1,3 +1,21 @@
499+/* Copyright (C) 2015 Canonical Ltd.
500+ *
501+ * This file is part of unity-scope-snappy.
502+ *
503+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
504+ * under the terms of the GNU General Public License as published by the Free
505+ * Software Foundation, either version 3 of the License, or (at your option) any
506+ * later version.
507+ *
508+ * unity-scope-snappy is distributed in the hope that it will be useful, but
509+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
510+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
511+ * details.
512+ *
513+ * You should have received a copy of the GNU General Public License along with
514+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
515+ */
516+
517 package packages
518
519 import (
520
521=== modified file 'store/packages/dbus_manager_client_test.go'
522--- store/packages/dbus_manager_client_test.go 2015-06-30 18:32:04 +0000
523+++ store/packages/dbus_manager_client_test.go 2015-07-28 19:02:41 +0000
524@@ -1,3 +1,21 @@
525+/* Copyright (C) 2015 Canonical Ltd.
526+ *
527+ * This file is part of unity-scope-snappy.
528+ *
529+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
530+ * under the terms of the GNU General Public License as published by the Free
531+ * Software Foundation, either version 3 of the License, or (at your option) any
532+ * later version.
533+ *
534+ * unity-scope-snappy is distributed in the hope that it will be useful, but
535+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
536+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
537+ * details.
538+ *
539+ * You should have received a copy of the GNU General Public License along with
540+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
541+ */
542+
543 package packages
544
545 import (
546
547=== modified file 'store/packages/fakes/fake_dbus_manager.go'
548--- store/packages/fakes/fake_dbus_manager.go 2015-06-30 18:32:04 +0000
549+++ store/packages/fakes/fake_dbus_manager.go 2015-07-28 19:02:41 +0000
550@@ -1,3 +1,21 @@
551+/* Copyright (C) 2015 Canonical Ltd.
552+ *
553+ * This file is part of unity-scope-snappy.
554+ *
555+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
556+ * under the terms of the GNU General Public License as published by the Free
557+ * Software Foundation, either version 3 of the License, or (at your option) any
558+ * later version.
559+ *
560+ * unity-scope-snappy is distributed in the hope that it will be useful, but
561+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
562+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
563+ * details.
564+ *
565+ * You should have received a copy of the GNU General Public License along with
566+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
567+ */
568+
569 package fakes
570
571 import (
572
573=== modified file 'store/packages/fakes/fake_dbus_manager_test.go'
574--- store/packages/fakes/fake_dbus_manager_test.go 2015-06-30 18:32:04 +0000
575+++ store/packages/fakes/fake_dbus_manager_test.go 2015-07-28 19:02:41 +0000
576@@ -1,3 +1,21 @@
577+/* Copyright (C) 2015 Canonical Ltd.
578+ *
579+ * This file is part of unity-scope-snappy.
580+ *
581+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
582+ * under the terms of the GNU General Public License as published by the Free
583+ * Software Foundation, either version 3 of the License, or (at your option) any
584+ * later version.
585+ *
586+ * unity-scope-snappy is distributed in the hope that it will be useful, but
587+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
588+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
589+ * details.
590+ *
591+ * You should have received a copy of the GNU General Public License along with
592+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
593+ */
594+
595 package fakes
596
597 import (
598
599=== modified file 'store/packages/fakes/fake_webdm_manager.go'
600--- store/packages/fakes/fake_webdm_manager.go 2015-07-06 16:46:07 +0000
601+++ store/packages/fakes/fake_webdm_manager.go 2015-07-28 19:02:41 +0000
602@@ -1,3 +1,21 @@
603+/* Copyright (C) 2015 Canonical Ltd.
604+ *
605+ * This file is part of unity-scope-snappy.
606+ *
607+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
608+ * under the terms of the GNU General Public License as published by the Free
609+ * Software Foundation, either version 3 of the License, or (at your option) any
610+ * later version.
611+ *
612+ * unity-scope-snappy is distributed in the hope that it will be useful, but
613+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
614+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
615+ * details.
616+ *
617+ * You should have received a copy of the GNU General Public License along with
618+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
619+ */
620+
621 package fakes
622
623 import (
624
625=== modified file 'store/packages/fakes/fake_webdm_manager_test.go'
626--- store/packages/fakes/fake_webdm_manager_test.go 2015-07-06 16:46:07 +0000
627+++ store/packages/fakes/fake_webdm_manager_test.go 2015-07-28 19:02:41 +0000
628@@ -1,3 +1,21 @@
629+/* Copyright (C) 2015 Canonical Ltd.
630+ *
631+ * This file is part of unity-scope-snappy.
632+ *
633+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
634+ * under the terms of the GNU General Public License as published by the Free
635+ * Software Foundation, either version 3 of the License, or (at your option) any
636+ * later version.
637+ *
638+ * unity-scope-snappy is distributed in the hope that it will be useful, but
639+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
640+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
641+ * details.
642+ *
643+ * You should have received a copy of the GNU General Public License along with
644+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
645+ */
646+
647 package fakes
648
649 import (
650
651=== modified file 'store/packages/webdm_manager.go'
652--- store/packages/webdm_manager.go 2015-07-06 16:46:07 +0000
653+++ store/packages/webdm_manager.go 2015-07-28 19:02:41 +0000
654@@ -1,3 +1,21 @@
655+/* Copyright (C) 2015 Canonical Ltd.
656+ *
657+ * This file is part of unity-scope-snappy.
658+ *
659+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
660+ * under the terms of the GNU General Public License as published by the Free
661+ * Software Foundation, either version 3 of the License, or (at your option) any
662+ * later version.
663+ *
664+ * unity-scope-snappy is distributed in the hope that it will be useful, but
665+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
666+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
667+ * details.
668+ *
669+ * You should have received a copy of the GNU General Public License along with
670+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
671+ */
672+
673 package packages
674
675 import (
676
677=== modified file 'store/previews/confirm_uninstall_preview.go'
678--- store/previews/confirm_uninstall_preview.go 2015-07-06 17:11:40 +0000
679+++ store/previews/confirm_uninstall_preview.go 2015-07-28 19:02:41 +0000
680@@ -1,3 +1,21 @@
681+/* Copyright (C) 2015 Canonical Ltd.
682+ *
683+ * This file is part of unity-scope-snappy.
684+ *
685+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
686+ * under the terms of the GNU General Public License as published by the Free
687+ * Software Foundation, either version 3 of the License, or (at your option) any
688+ * later version.
689+ *
690+ * unity-scope-snappy is distributed in the hope that it will be useful, but
691+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
692+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
693+ * details.
694+ *
695+ * You should have received a copy of the GNU General Public License along with
696+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
697+ */
698+
699 package previews
700
701 import (
702
703=== modified file 'store/previews/confirm_uninstall_preview_test.go'
704--- store/previews/confirm_uninstall_preview_test.go 2015-07-06 17:06:20 +0000
705+++ store/previews/confirm_uninstall_preview_test.go 2015-07-28 19:02:41 +0000
706@@ -1,3 +1,21 @@
707+/* Copyright (C) 2015 Canonical Ltd.
708+ *
709+ * This file is part of unity-scope-snappy.
710+ *
711+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
712+ * under the terms of the GNU General Public License as published by the Free
713+ * Software Foundation, either version 3 of the License, or (at your option) any
714+ * later version.
715+ *
716+ * unity-scope-snappy is distributed in the hope that it will be useful, but
717+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
718+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
719+ * details.
720+ *
721+ * You should have received a copy of the GNU General Public License along with
722+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
723+ */
724+
725 package previews
726
727 import (
728
729=== modified file 'store/previews/fakes/fake_widget_receiver.go'
730--- store/previews/fakes/fake_widget_receiver.go 2015-06-30 13:40:57 +0000
731+++ store/previews/fakes/fake_widget_receiver.go 2015-07-28 19:02:41 +0000
732@@ -1,3 +1,21 @@
733+/* Copyright (C) 2015 Canonical Ltd.
734+ *
735+ * This file is part of unity-scope-snappy.
736+ *
737+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
738+ * under the terms of the GNU General Public License as published by the Free
739+ * Software Foundation, either version 3 of the License, or (at your option) any
740+ * later version.
741+ *
742+ * unity-scope-snappy is distributed in the hope that it will be useful, but
743+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
744+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
745+ * details.
746+ *
747+ * You should have received a copy of the GNU General Public License along with
748+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
749+ */
750+
751 package fakes
752
753 import (
754
755=== modified file 'store/previews/fakes/fake_widget_receiver_test.go'
756--- store/previews/fakes/fake_widget_receiver_test.go 2015-06-30 13:40:57 +0000
757+++ store/previews/fakes/fake_widget_receiver_test.go 2015-07-28 19:02:41 +0000
758@@ -1,3 +1,21 @@
759+/* Copyright (C) 2015 Canonical Ltd.
760+ *
761+ * This file is part of unity-scope-snappy.
762+ *
763+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
764+ * under the terms of the GNU General Public License as published by the Free
765+ * Software Foundation, either version 3 of the License, or (at your option) any
766+ * later version.
767+ *
768+ * unity-scope-snappy is distributed in the hope that it will be useful, but
769+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
770+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
771+ * details.
772+ *
773+ * You should have received a copy of the GNU General Public License along with
774+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
775+ */
776+
777 package fakes
778
779 import (
780
781=== modified file 'store/previews/humanize/bytes.go'
782--- store/previews/humanize/bytes.go 2015-06-30 13:14:24 +0000
783+++ store/previews/humanize/bytes.go 2015-07-28 19:02:41 +0000
784@@ -1,3 +1,21 @@
785+/* Copyright (C) 2015 Canonical Ltd.
786+ *
787+ * This file is part of unity-scope-snappy.
788+ *
789+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
790+ * under the terms of the GNU General Public License as published by the Free
791+ * Software Foundation, either version 3 of the License, or (at your option) any
792+ * later version.
793+ *
794+ * unity-scope-snappy is distributed in the hope that it will be useful, but
795+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
796+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
797+ * details.
798+ *
799+ * You should have received a copy of the GNU General Public License along with
800+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
801+ */
802+
803 package humanize
804
805 import (
806
807=== modified file 'store/previews/humanize/bytes_test.go'
808--- store/previews/humanize/bytes_test.go 2015-06-30 13:14:24 +0000
809+++ store/previews/humanize/bytes_test.go 2015-07-28 19:02:41 +0000
810@@ -1,3 +1,21 @@
811+/* Copyright (C) 2015 Canonical Ltd.
812+ *
813+ * This file is part of unity-scope-snappy.
814+ *
815+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
816+ * under the terms of the GNU General Public License as published by the Free
817+ * Software Foundation, either version 3 of the License, or (at your option) any
818+ * later version.
819+ *
820+ * unity-scope-snappy is distributed in the hope that it will be useful, but
821+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
822+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
823+ * details.
824+ *
825+ * You should have received a copy of the GNU General Public License along with
826+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
827+ */
828+
829 package humanize
830
831 import (
832
833=== modified file 'store/previews/interfaces/preview_generator.go'
834--- store/previews/interfaces/preview_generator.go 2015-06-30 13:14:24 +0000
835+++ store/previews/interfaces/preview_generator.go 2015-07-28 19:02:41 +0000
836@@ -1,3 +1,21 @@
837+/* Copyright (C) 2015 Canonical Ltd.
838+ *
839+ * This file is part of unity-scope-snappy.
840+ *
841+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
842+ * under the terms of the GNU General Public License as published by the Free
843+ * Software Foundation, either version 3 of the License, or (at your option) any
844+ * later version.
845+ *
846+ * unity-scope-snappy is distributed in the hope that it will be useful, but
847+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
848+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
849+ * details.
850+ *
851+ * You should have received a copy of the GNU General Public License along with
852+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
853+ */
854+
855 package interfaces
856
857 // PreviewGenerator is an interface to be implemented by any struct that wishes
858
859=== modified file 'store/previews/interfaces/widget_receiver.go'
860--- store/previews/interfaces/widget_receiver.go 2015-06-30 13:14:24 +0000
861+++ store/previews/interfaces/widget_receiver.go 2015-07-28 19:02:41 +0000
862@@ -1,3 +1,21 @@
863+/* Copyright (C) 2015 Canonical Ltd.
864+ *
865+ * This file is part of unity-scope-snappy.
866+ *
867+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
868+ * under the terms of the GNU General Public License as published by the Free
869+ * Software Foundation, either version 3 of the License, or (at your option) any
870+ * later version.
871+ *
872+ * unity-scope-snappy is distributed in the hope that it will be useful, but
873+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
874+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
875+ * details.
876+ *
877+ * You should have received a copy of the GNU General Public License along with
878+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
879+ */
880+
881 package interfaces
882
883 import "launchpad.net/unity-scope-snappy/internal/launchpad.net/go-unityscopes/v2"
884
885=== modified file 'store/previews/packages/preview.go'
886--- store/previews/packages/preview.go 2015-06-30 19:59:02 +0000
887+++ store/previews/packages/preview.go 2015-07-28 19:02:41 +0000
888@@ -1,3 +1,21 @@
889+/* Copyright (C) 2015 Canonical Ltd.
890+ *
891+ * This file is part of unity-scope-snappy.
892+ *
893+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
894+ * under the terms of the GNU General Public License as published by the Free
895+ * Software Foundation, either version 3 of the License, or (at your option) any
896+ * later version.
897+ *
898+ * unity-scope-snappy is distributed in the hope that it will be useful, but
899+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
900+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
901+ * details.
902+ *
903+ * You should have received a copy of the GNU General Public License along with
904+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
905+ */
906+
907 package packages
908
909 import (
910
911=== modified file 'store/previews/packages/preview_test.go'
912--- store/previews/packages/preview_test.go 2015-07-06 17:06:20 +0000
913+++ store/previews/packages/preview_test.go 2015-07-28 19:02:41 +0000
914@@ -1,3 +1,21 @@
915+/* Copyright (C) 2015 Canonical Ltd.
916+ *
917+ * This file is part of unity-scope-snappy.
918+ *
919+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
920+ * under the terms of the GNU General Public License as published by the Free
921+ * Software Foundation, either version 3 of the License, or (at your option) any
922+ * later version.
923+ *
924+ * unity-scope-snappy is distributed in the hope that it will be useful, but
925+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
926+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
927+ * details.
928+ *
929+ * You should have received a copy of the GNU General Public License along with
930+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
931+ */
932+
933 package packages
934
935 import (
936
937=== modified file 'store/previews/packages/templates/generic_template.go'
938--- store/previews/packages/templates/generic_template.go 2015-07-06 17:11:40 +0000
939+++ store/previews/packages/templates/generic_template.go 2015-07-28 19:02:41 +0000
940@@ -1,3 +1,21 @@
941+/* Copyright (C) 2015 Canonical Ltd.
942+ *
943+ * This file is part of unity-scope-snappy.
944+ *
945+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
946+ * under the terms of the GNU General Public License as published by the Free
947+ * Software Foundation, either version 3 of the License, or (at your option) any
948+ * later version.
949+ *
950+ * unity-scope-snappy is distributed in the hope that it will be useful, but
951+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
952+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
953+ * details.
954+ *
955+ * You should have received a copy of the GNU General Public License along with
956+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
957+ */
958+
959 package templates
960
961 import (
962
963=== modified file 'store/previews/packages/templates/generic_template_test.go'
964--- store/previews/packages/templates/generic_template_test.go 2015-06-30 19:59:02 +0000
965+++ store/previews/packages/templates/generic_template_test.go 2015-07-28 19:02:41 +0000
966@@ -1,3 +1,21 @@
967+/* Copyright (C) 2015 Canonical Ltd.
968+ *
969+ * This file is part of unity-scope-snappy.
970+ *
971+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
972+ * under the terms of the GNU General Public License as published by the Free
973+ * Software Foundation, either version 3 of the License, or (at your option) any
974+ * later version.
975+ *
976+ * unity-scope-snappy is distributed in the hope that it will be useful, but
977+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
978+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
979+ * details.
980+ *
981+ * You should have received a copy of the GNU General Public License along with
982+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
983+ */
984+
985 package templates
986
987 import (
988
989=== modified file 'store/previews/packages/templates/installed_template.go'
990--- store/previews/packages/templates/installed_template.go 2015-07-06 17:11:40 +0000
991+++ store/previews/packages/templates/installed_template.go 2015-07-28 19:02:41 +0000
992@@ -1,3 +1,21 @@
993+/* Copyright (C) 2015 Canonical Ltd.
994+ *
995+ * This file is part of unity-scope-snappy.
996+ *
997+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
998+ * under the terms of the GNU General Public License as published by the Free
999+ * Software Foundation, either version 3 of the License, or (at your option) any
1000+ * later version.
1001+ *
1002+ * unity-scope-snappy is distributed in the hope that it will be useful, but
1003+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1004+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1005+ * details.
1006+ *
1007+ * You should have received a copy of the GNU General Public License along with
1008+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1009+ */
1010+
1011 package templates
1012
1013 import (
1014
1015=== modified file 'store/previews/packages/templates/installed_template_test.go'
1016--- store/previews/packages/templates/installed_template_test.go 2015-06-30 19:59:02 +0000
1017+++ store/previews/packages/templates/installed_template_test.go 2015-07-28 19:02:41 +0000
1018@@ -1,3 +1,21 @@
1019+/* Copyright (C) 2015 Canonical Ltd.
1020+ *
1021+ * This file is part of unity-scope-snappy.
1022+ *
1023+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
1024+ * under the terms of the GNU General Public License as published by the Free
1025+ * Software Foundation, either version 3 of the License, or (at your option) any
1026+ * later version.
1027+ *
1028+ * unity-scope-snappy is distributed in the hope that it will be useful, but
1029+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1030+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1031+ * details.
1032+ *
1033+ * You should have received a copy of the GNU General Public License along with
1034+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1035+ */
1036+
1037 package templates
1038
1039 import (
1040
1041=== modified file 'store/previews/packages/templates/installing_template.go'
1042--- store/previews/packages/templates/installing_template.go 2015-07-06 17:11:40 +0000
1043+++ store/previews/packages/templates/installing_template.go 2015-07-28 19:02:41 +0000
1044@@ -1,3 +1,21 @@
1045+/* Copyright (C) 2015 Canonical Ltd.
1046+ *
1047+ * This file is part of unity-scope-snappy.
1048+ *
1049+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
1050+ * under the terms of the GNU General Public License as published by the Free
1051+ * Software Foundation, either version 3 of the License, or (at your option) any
1052+ * later version.
1053+ *
1054+ * unity-scope-snappy is distributed in the hope that it will be useful, but
1055+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1056+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1057+ * details.
1058+ *
1059+ * You should have received a copy of the GNU General Public License along with
1060+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1061+ */
1062+
1063 package templates
1064
1065 import (
1066
1067=== modified file 'store/previews/packages/templates/installing_template_test.go'
1068--- store/previews/packages/templates/installing_template_test.go 2015-06-30 19:59:02 +0000
1069+++ store/previews/packages/templates/installing_template_test.go 2015-07-28 19:02:41 +0000
1070@@ -1,3 +1,21 @@
1071+/* Copyright (C) 2015 Canonical Ltd.
1072+ *
1073+ * This file is part of unity-scope-snappy.
1074+ *
1075+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
1076+ * under the terms of the GNU General Public License as published by the Free
1077+ * Software Foundation, either version 3 of the License, or (at your option) any
1078+ * later version.
1079+ *
1080+ * unity-scope-snappy is distributed in the hope that it will be useful, but
1081+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1082+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1083+ * details.
1084+ *
1085+ * You should have received a copy of the GNU General Public License along with
1086+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1087+ */
1088+
1089 package templates
1090
1091 import (
1092
1093=== modified file 'store/previews/packages/templates/store_template.go'
1094--- store/previews/packages/templates/store_template.go 2015-07-06 17:11:40 +0000
1095+++ store/previews/packages/templates/store_template.go 2015-07-28 19:02:41 +0000
1096@@ -1,3 +1,21 @@
1097+/* Copyright (C) 2015 Canonical Ltd.
1098+ *
1099+ * This file is part of unity-scope-snappy.
1100+ *
1101+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
1102+ * under the terms of the GNU General Public License as published by the Free
1103+ * Software Foundation, either version 3 of the License, or (at your option) any
1104+ * later version.
1105+ *
1106+ * unity-scope-snappy is distributed in the hope that it will be useful, but
1107+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1108+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1109+ * details.
1110+ *
1111+ * You should have received a copy of the GNU General Public License along with
1112+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1113+ */
1114+
1115 package templates
1116
1117 import (
1118
1119=== modified file 'store/previews/packages/templates/store_template_test.go'
1120--- store/previews/packages/templates/store_template_test.go 2015-06-30 19:59:02 +0000
1121+++ store/previews/packages/templates/store_template_test.go 2015-07-28 19:02:41 +0000
1122@@ -1,3 +1,21 @@
1123+/* Copyright (C) 2015 Canonical Ltd.
1124+ *
1125+ * This file is part of unity-scope-snappy.
1126+ *
1127+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
1128+ * under the terms of the GNU General Public License as published by the Free
1129+ * Software Foundation, either version 3 of the License, or (at your option) any
1130+ * later version.
1131+ *
1132+ * unity-scope-snappy is distributed in the hope that it will be useful, but
1133+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1134+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1135+ * details.
1136+ *
1137+ * You should have received a copy of the GNU General Public License along with
1138+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1139+ */
1140+
1141 package templates
1142
1143 import (
1144
1145=== modified file 'store/previews/packages/templates/template.go'
1146--- store/previews/packages/templates/template.go 2015-07-06 17:11:40 +0000
1147+++ store/previews/packages/templates/template.go 2015-07-28 19:02:41 +0000
1148@@ -1,3 +1,21 @@
1149+/* Copyright (C) 2015 Canonical Ltd.
1150+ *
1151+ * This file is part of unity-scope-snappy.
1152+ *
1153+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
1154+ * under the terms of the GNU General Public License as published by the Free
1155+ * Software Foundation, either version 3 of the License, or (at your option) any
1156+ * later version.
1157+ *
1158+ * unity-scope-snappy is distributed in the hope that it will be useful, but
1159+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1160+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1161+ * details.
1162+ *
1163+ * You should have received a copy of the GNU General Public License along with
1164+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1165+ */
1166+
1167 package templates
1168
1169 import (
1170
1171=== modified file 'store/previews/packages/templates/uninstalling_template.go'
1172--- store/previews/packages/templates/uninstalling_template.go 2015-07-06 17:11:40 +0000
1173+++ store/previews/packages/templates/uninstalling_template.go 2015-07-28 19:02:41 +0000
1174@@ -1,3 +1,21 @@
1175+/* Copyright (C) 2015 Canonical Ltd.
1176+ *
1177+ * This file is part of unity-scope-snappy.
1178+ *
1179+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
1180+ * under the terms of the GNU General Public License as published by the Free
1181+ * Software Foundation, either version 3 of the License, or (at your option) any
1182+ * later version.
1183+ *
1184+ * unity-scope-snappy is distributed in the hope that it will be useful, but
1185+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1186+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1187+ * details.
1188+ *
1189+ * You should have received a copy of the GNU General Public License along with
1190+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1191+ */
1192+
1193 package templates
1194
1195 import (
1196
1197=== modified file 'store/previews/packages/templates/uninstalling_template_test.go'
1198--- store/previews/packages/templates/uninstalling_template_test.go 2015-06-30 19:59:02 +0000
1199+++ store/previews/packages/templates/uninstalling_template_test.go 2015-07-28 19:02:41 +0000
1200@@ -1,3 +1,21 @@
1201+/* Copyright (C) 2015 Canonical Ltd.
1202+ *
1203+ * This file is part of unity-scope-snappy.
1204+ *
1205+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
1206+ * under the terms of the GNU General Public License as published by the Free
1207+ * Software Foundation, either version 3 of the License, or (at your option) any
1208+ * later version.
1209+ *
1210+ * unity-scope-snappy is distributed in the hope that it will be useful, but
1211+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1212+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1213+ * details.
1214+ *
1215+ * You should have received a copy of the GNU General Public License along with
1216+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1217+ */
1218+
1219 package templates
1220
1221 import (
1222
1223=== modified file 'store/previews/preview_generator.go'
1224--- store/previews/preview_generator.go 2015-06-30 19:59:02 +0000
1225+++ store/previews/preview_generator.go 2015-07-28 19:02:41 +0000
1226@@ -1,3 +1,21 @@
1227+/* Copyright (C) 2015 Canonical Ltd.
1228+ *
1229+ * This file is part of unity-scope-snappy.
1230+ *
1231+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
1232+ * under the terms of the GNU General Public License as published by the Free
1233+ * Software Foundation, either version 3 of the License, or (at your option) any
1234+ * later version.
1235+ *
1236+ * unity-scope-snappy is distributed in the hope that it will be useful, but
1237+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1238+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1239+ * details.
1240+ *
1241+ * You should have received a copy of the GNU General Public License along with
1242+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1243+ */
1244+
1245 package previews
1246
1247 import (
1248
1249=== modified file 'store/previews/preview_generator_test.go'
1250--- store/previews/preview_generator_test.go 2015-06-30 19:59:02 +0000
1251+++ store/previews/preview_generator_test.go 2015-07-28 19:02:41 +0000
1252@@ -1,3 +1,21 @@
1253+/* Copyright (C) 2015 Canonical Ltd.
1254+ *
1255+ * This file is part of unity-scope-snappy.
1256+ *
1257+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
1258+ * under the terms of the GNU General Public License as published by the Free
1259+ * Software Foundation, either version 3 of the License, or (at your option) any
1260+ * later version.
1261+ *
1262+ * unity-scope-snappy is distributed in the hope that it will be useful, but
1263+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1264+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1265+ * details.
1266+ *
1267+ * You should have received a copy of the GNU General Public License along with
1268+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1269+ */
1270+
1271 package previews
1272
1273 import (
1274
1275=== modified file 'store/scope/scope.go'
1276--- store/scope/scope.go 2015-07-21 17:46:51 +0000
1277+++ store/scope/scope.go 2015-07-28 19:02:41 +0000
1278@@ -1,3 +1,21 @@
1279+/* Copyright (C) 2015 Canonical Ltd.
1280+ *
1281+ * This file is part of unity-scope-snappy.
1282+ *
1283+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
1284+ * under the terms of the GNU General Public License as published by the Free
1285+ * Software Foundation, either version 3 of the License, or (at your option) any
1286+ * later version.
1287+ *
1288+ * unity-scope-snappy is distributed in the hope that it will be useful, but
1289+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1290+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1291+ * details.
1292+ *
1293+ * You should have received a copy of the GNU General Public License along with
1294+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1295+ */
1296+
1297 package scope
1298
1299 import (
1300
1301=== modified file 'store/utilities/utilities.go'
1302--- store/utilities/utilities.go 2015-07-06 16:46:07 +0000
1303+++ store/utilities/utilities.go 2015-07-28 19:02:41 +0000
1304@@ -1,3 +1,21 @@
1305+/* Copyright (C) 2015 Canonical Ltd.
1306+ *
1307+ * This file is part of unity-scope-snappy.
1308+ *
1309+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
1310+ * under the terms of the GNU General Public License as published by the Free
1311+ * Software Foundation, either version 3 of the License, or (at your option) any
1312+ * later version.
1313+ *
1314+ * unity-scope-snappy is distributed in the hope that it will be useful, but
1315+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1316+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1317+ * details.
1318+ *
1319+ * You should have received a copy of the GNU General Public License along with
1320+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1321+ */
1322+
1323 package utilities
1324
1325 import (
1326
1327=== modified file 'store/utilities/utilities_test.go'
1328--- store/utilities/utilities_test.go 2015-07-06 16:46:07 +0000
1329+++ store/utilities/utilities_test.go 2015-07-28 19:02:41 +0000
1330@@ -1,3 +1,21 @@
1331+/* Copyright (C) 2015 Canonical Ltd.
1332+ *
1333+ * This file is part of unity-scope-snappy.
1334+ *
1335+ * unity-scope-snappy is free software: you can redistribute it and/or modify it
1336+ * under the terms of the GNU General Public License as published by the Free
1337+ * Software Foundation, either version 3 of the License, or (at your option) any
1338+ * later version.
1339+ *
1340+ * unity-scope-snappy is distributed in the hope that it will be useful, but
1341+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1342+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1343+ * details.
1344+ *
1345+ * You should have received a copy of the GNU General Public License along with
1346+ * unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1347+ */
1348+
1349 package utilities
1350
1351 import (
1352
1353=== modified file 'test/fakes/fake_webdm_server.py'
1354--- test/fakes/fake_webdm_server.py 2015-07-20 15:27:03 +0000
1355+++ test/fakes/fake_webdm_server.py 2015-07-28 19:02:41 +0000
1356@@ -1,3 +1,22 @@
1357+#!/usr/bin/env python3
1358+
1359+# Copyright (C) 2015 Canonical Ltd.
1360+#
1361+# This file is part of unity-scope-snappy.
1362+#
1363+# unity-scope-snappy is free software: you can redistribute it and/or modify it
1364+# under the terms of the GNU General Public License as published by the Free
1365+# Software Foundation, either version 3 of the License, or (at your option) any
1366+# later version.
1367+#
1368+# unity-scope-snappy is distributed in the hope that it will be useful, but
1369+# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1370+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1371+# details.
1372+#
1373+# You should have received a copy of the GNU General Public License along with
1374+# unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1375+
1376 import http.server
1377 import multiprocessing
1378 import urllib
1379
1380=== modified file 'test/fakes/package.py'
1381--- test/fakes/package.py 2015-07-06 20:14:09 +0000
1382+++ test/fakes/package.py 2015-07-28 19:02:41 +0000
1383@@ -1,3 +1,22 @@
1384+#!/usr/bin/env python3
1385+
1386+# Copyright (C) 2015 Canonical Ltd.
1387+#
1388+# This file is part of unity-scope-snappy.
1389+#
1390+# unity-scope-snappy is free software: you can redistribute it and/or modify it
1391+# under the terms of the GNU General Public License as published by the Free
1392+# Software Foundation, either version 3 of the License, or (at your option) any
1393+# later version.
1394+#
1395+# unity-scope-snappy is distributed in the hope that it will be useful, but
1396+# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1397+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1398+# details.
1399+#
1400+# You should have received a copy of the GNU General Public License along with
1401+# unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1402+
1403 class Package:
1404 def __init__(self, id="", name="", vendor="", version="", description="", icon="", type="", status="", installed_size=0, download_size=0, progress=0):
1405 self.id = id
1406
1407=== modified file 'test/fakes/test_fake_webdm_server.py'
1408--- test/fakes/test_fake_webdm_server.py 2015-07-06 20:14:09 +0000
1409+++ test/fakes/test_fake_webdm_server.py 2015-07-28 19:02:41 +0000
1410@@ -1,5 +1,22 @@
1411 #!/usr/bin/env python3
1412
1413+# Copyright (C) 2015 Canonical Ltd.
1414+#
1415+# This file is part of unity-scope-snappy.
1416+#
1417+# unity-scope-snappy is free software: you can redistribute it and/or modify it
1418+# under the terms of the GNU General Public License as published by the Free
1419+# Software Foundation, either version 3 of the License, or (at your option) any
1420+# later version.
1421+#
1422+# unity-scope-snappy is distributed in the hope that it will be useful, but
1423+# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1424+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1425+# details.
1426+#
1427+# You should have received a copy of the GNU General Public License along with
1428+# unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1429+
1430 import testtools
1431 import fixtures
1432 import json
1433
1434=== modified file 'test/store/package_management_tasks.py'
1435--- test/store/package_management_tasks.py 2015-07-17 18:37:15 +0000
1436+++ test/store/package_management_tasks.py 2015-07-28 19:02:41 +0000
1437@@ -1,5 +1,22 @@
1438 #!/usr/bin/env python3
1439
1440+# Copyright (C) 2015 Canonical Ltd.
1441+#
1442+# This file is part of unity-scope-snappy.
1443+#
1444+# unity-scope-snappy is free software: you can redistribute it and/or modify it
1445+# under the terms of the GNU General Public License as published by the Free
1446+# Software Foundation, either version 3 of the License, or (at your option) any
1447+# later version.
1448+#
1449+# unity-scope-snappy is distributed in the hope that it will be useful, but
1450+# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1451+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1452+# details.
1453+#
1454+# You should have received a copy of the GNU General Public License along with
1455+# unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1456+
1457 from scope_harness import (ScopeHarness,
1458 Parameters,
1459 PreviewView,
1460
1461=== modified file 'test/store/test_departments.py'
1462--- test/store/test_departments.py 2015-07-16 16:41:37 +0000
1463+++ test/store/test_departments.py 2015-07-28 19:02:41 +0000
1464@@ -1,5 +1,22 @@
1465 #!/usr/bin/env python3
1466
1467+# Copyright (C) 2015 Canonical Ltd.
1468+#
1469+# This file is part of unity-scope-snappy.
1470+#
1471+# unity-scope-snappy is free software: you can redistribute it and/or modify it
1472+# under the terms of the GNU General Public License as published by the Free
1473+# Software Foundation, either version 3 of the License, or (at your option) any
1474+# later version.
1475+#
1476+# unity-scope-snappy is distributed in the hope that it will be useful, but
1477+# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1478+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1479+# details.
1480+#
1481+# You should have received a copy of the GNU General Public License along with
1482+# unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1483+
1484 import os
1485 import sys
1486 import unittest
1487
1488=== modified file 'test/store/test_package_management.py'
1489--- test/store/test_package_management.py 2015-07-17 18:37:15 +0000
1490+++ test/store/test_package_management.py 2015-07-28 19:02:41 +0000
1491@@ -1,5 +1,22 @@
1492 #!/usr/bin/env python3
1493
1494+# Copyright (C) 2015 Canonical Ltd.
1495+#
1496+# This file is part of unity-scope-snappy.
1497+#
1498+# unity-scope-snappy is free software: you can redistribute it and/or modify it
1499+# under the terms of the GNU General Public License as published by the Free
1500+# Software Foundation, either version 3 of the License, or (at your option) any
1501+# later version.
1502+#
1503+# unity-scope-snappy is distributed in the hope that it will be useful, but
1504+# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1505+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1506+# details.
1507+#
1508+# You should have received a copy of the GNU General Public License along with
1509+# unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1510+
1511 import os
1512 import sys
1513 import subprocess
1514
1515=== modified file 'test/store/test_package_management_failures.py'
1516--- test/store/test_package_management_failures.py 2015-07-17 18:37:15 +0000
1517+++ test/store/test_package_management_failures.py 2015-07-28 19:02:41 +0000
1518@@ -1,5 +1,22 @@
1519 #!/usr/bin/env python3
1520
1521+# Copyright (C) 2015 Canonical Ltd.
1522+#
1523+# This file is part of unity-scope-snappy.
1524+#
1525+# unity-scope-snappy is free software: you can redistribute it and/or modify it
1526+# under the terms of the GNU General Public License as published by the Free
1527+# Software Foundation, either version 3 of the License, or (at your option) any
1528+# later version.
1529+#
1530+# unity-scope-snappy is distributed in the hope that it will be useful, but
1531+# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1532+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1533+# details.
1534+#
1535+# You should have received a copy of the GNU General Public License along with
1536+# unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1537+
1538 import os
1539 import sys
1540 import subprocess
1541
1542=== modified file 'test/store/test_previews.py'
1543--- test/store/test_previews.py 2015-07-17 18:20:50 +0000
1544+++ test/store/test_previews.py 2015-07-28 19:02:41 +0000
1545@@ -1,5 +1,22 @@
1546 #!/usr/bin/env python3
1547
1548+# Copyright (C) 2015 Canonical Ltd.
1549+#
1550+# This file is part of unity-scope-snappy.
1551+#
1552+# unity-scope-snappy is free software: you can redistribute it and/or modify it
1553+# under the terms of the GNU General Public License as published by the Free
1554+# Software Foundation, either version 3 of the License, or (at your option) any
1555+# later version.
1556+#
1557+# unity-scope-snappy is distributed in the hope that it will be useful, but
1558+# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1559+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1560+# details.
1561+#
1562+# You should have received a copy of the GNU General Public License along with
1563+# unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1564+
1565 import os
1566 import sys
1567 import unittest
1568
1569=== modified file 'test/store/test_surface.py'
1570--- test/store/test_surface.py 2015-07-16 16:41:37 +0000
1571+++ test/store/test_surface.py 2015-07-28 19:02:41 +0000
1572@@ -1,5 +1,22 @@
1573 #!/usr/bin/env python3
1574
1575+# Copyright (C) 2015 Canonical Ltd.
1576+#
1577+# This file is part of unity-scope-snappy.
1578+#
1579+# unity-scope-snappy is free software: you can redistribute it and/or modify it
1580+# under the terms of the GNU General Public License as published by the Free
1581+# Software Foundation, either version 3 of the License, or (at your option) any
1582+# later version.
1583+#
1584+# unity-scope-snappy is distributed in the hope that it will be useful, but
1585+# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1586+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1587+# details.
1588+#
1589+# You should have received a copy of the GNU General Public License along with
1590+# unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1591+
1592 import os
1593 import sys
1594 import unittest
1595
1596=== modified file 'test/test_fixtures/server_fixture.py'
1597--- test/test_fixtures/server_fixture.py 2015-07-06 19:26:07 +0000
1598+++ test/test_fixtures/server_fixture.py 2015-07-28 19:02:41 +0000
1599@@ -1,3 +1,22 @@
1600+#!/usr/bin/env python3
1601+
1602+# Copyright (C) 2015 Canonical Ltd.
1603+#
1604+# This file is part of unity-scope-snappy.
1605+#
1606+# unity-scope-snappy is free software: you can redistribute it and/or modify it
1607+# under the terms of the GNU General Public License as published by the Free
1608+# Software Foundation, either version 3 of the License, or (at your option) any
1609+# later version.
1610+#
1611+# unity-scope-snappy is distributed in the hope that it will be useful, but
1612+# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1613+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1614+# details.
1615+#
1616+# You should have received a copy of the GNU General Public License along with
1617+# unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1618+
1619 import fixtures
1620 import multiprocessing
1621
1622
1623=== modified file 'test_coverage.sh'
1624--- test_coverage.sh 2015-07-15 16:34:50 +0000
1625+++ test_coverage.sh 2015-07-28 19:02:41 +0000
1626@@ -1,5 +1,22 @@
1627 #!/bin/bash
1628
1629+# Copyright (C) 2015 Canonical Ltd.
1630+#
1631+# This file is part of unity-scope-snappy.
1632+#
1633+# unity-scope-snappy is free software: you can redistribute it and/or modify it
1634+# under the terms of the GNU General Public License as published by the Free
1635+# Software Foundation, either version 3 of the License, or (at your option) any
1636+# later version.
1637+#
1638+# unity-scope-snappy is distributed in the hope that it will be useful, but
1639+# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1640+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
1641+# details.
1642+#
1643+# You should have received a copy of the GNU General Public License along with
1644+# unity-scope-snappy. If not, see <http://www.gnu.org/licenses/>.
1645+
1646 coverage_final="$(mktemp)"
1647
1648 # get_coverage runs the given tests and adds the results to the final coverage

Subscribers

People subscribed via source and target branches