Merge lp:~statik/tarmac/fix-licensing into lp:tarmac

Proposed by Elliot Murphy
Status: Merged
Approved by: Paul Hummer
Approved revision: 125
Merged at revision: not available
Proposed branch: lp:~statik/tarmac/fix-licensing
Merge into: lp:tarmac
Diff against target: None lines
To merge this branch: bzr merge lp:~statik/tarmac/fix-licensing
Reviewer Review Type Date Requested Status
Paul Hummer Approve
Review via email: mp+8561@code.launchpad.net

Commit message

Small licensing fixes made.

To post a comment you must log in.
Revision history for this message
Elliot Murphy (statik) wrote :

Some license cleanups that I noticed while making a debian package. This updates setup.py to say GPLv3 instead of AGPLv3, and adds GPL3 license headers to all the source files.

Revision history for this message
Paul Hummer (rockstar) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'bzrplugin/__init__.py'
2--- bzrplugin/__init__.py 2009-05-12 02:07:02 +0000
3+++ bzrplugin/__init__.py 2009-07-10 15:10:28 +0000
4@@ -1,3 +1,18 @@
5+# This file is part of Tarmac.
6+#
7+# Tarmac is free software: you can redistribute it and/or modify
8+# it under the terms of the GNU General Public License version 3 as
9+# published by
10+# the Free Software Foundation.
11+#
12+# Tarmac is distributed in the hope that it will be useful,
13+# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+# GNU General Public License for more details.
16+#
17+# You should have received a copy of the GNU General Public License
18+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
19+
20 '''Bazaar Plugin for Tarmac.'''
21
22 from bzrlib.lazy_import import lazy_import
23
24=== modified file 'setup.py'
25--- setup.py 2009-05-12 02:10:05 +0000
26+++ setup.py 2009-07-10 15:10:28 +0000
27@@ -1,5 +1,20 @@
28 #!/usr/bin/env python
29-# Copyright 2009 Paul Hummer - See LICENSE
30+# Copyright 2009 Paul Hummer
31+#
32+# This file is part of Tarmac.
33+#
34+# Tarmac is free software: you can redistribute it and/or modify
35+# it under the terms of the GNU General Public License version 3 as
36+# published by
37+# the Free Software Foundation.
38+#
39+# Tarmac is distributed in the hope that it will be useful,
40+# but WITHOUT ANY WARRANTY; without even the implied warranty of
41+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
42+# GNU General Public License for more details.
43+#
44+# You should have received a copy of the GNU General Public License
45+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
46 '''Tarmac installation script.'''
47
48 from distutils.core import setup
49@@ -11,12 +26,12 @@
50 version=__version__,
51 description=u'Tarmac - The Launchpad Lander',
52 url=u'http://edge.launchpad.net/tarmac',
53- license=u'AGPLv3',
54+ license=u'GPLv3',
55 package_dir={
56 'bzrlib.plugins.tarmac': 'bzrplugin',
57 'tarmac': 'tarmac'},
58 packages=['bzrlib.plugins.tarmac', 'tarmac'],
59- scripts=['tarmac-lander'],
60+ scripts=['tarmac-lander', 'tarmac-authenticate'],
61 long_description='''
62 Tarmac is a series of scripts to facilitate the landing of Bazaar
63 branches in Launchpad (http://edge.launchpad.net).''',
64
65=== modified file 'tarmac-authenticate'
66--- tarmac-authenticate 2009-07-03 02:55:30 +0000
67+++ tarmac-authenticate 2009-07-10 15:10:28 +0000
68@@ -1,5 +1,21 @@
69 #!/usr/bin/env python
70-# Copyright 2009 Paul Hummer - See LICENSE
71+# Copyright 2009 Paul Hummer
72+#
73+# This file is part of Tarmac.
74+#
75+# Tarmac is free software: you can redistribute it and/or modify
76+# it under the terms of the GNU General Public License version 3 as
77+# published by
78+# the Free Software Foundation.
79+#
80+# Tarmac is distributed in the hope that it will be useful,
81+# but WITHOUT ANY WARRANTY; without even the implied warranty of
82+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
83+# GNU General Public License for more details.
84+#
85+# You should have received a copy of the GNU General Public License
86+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
87+
88 from tarmac.bin import TarmacAuthenticate
89
90 if __name__ == '__main__':
91
92=== modified file 'tarmac-lander'
93--- tarmac-lander 2009-05-12 02:10:05 +0000
94+++ tarmac-lander 2009-07-10 15:10:28 +0000
95@@ -1,5 +1,21 @@
96 #!/usr/bin/env python
97-# Copyright 2009 Paul Hummer - See LICENSE
98+# Copyright 2009 Paul Hummer
99+#
100+# This file is part of Tarmac.
101+#
102+# Tarmac is free software: you can redistribute it and/or modify
103+# it under the terms of the GNU General Public License version 3 as
104+# published by
105+# the Free Software Foundation.
106+#
107+# Tarmac is distributed in the hope that it will be useful,
108+# but WITHOUT ANY WARRANTY; without even the implied warranty of
109+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
110+# GNU General Public License for more details.
111+#
112+# You should have received a copy of the GNU General Public License
113+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
114+
115 from tarmac.bin import TarmacLander
116
117 if __name__ == '__main__':
118
119=== modified file 'tarmac/__init__.py'
120--- tarmac/__init__.py 2009-06-29 05:33:49 +0000
121+++ tarmac/__init__.py 2009-07-10 15:10:28 +0000
122@@ -1,4 +1,19 @@
123-# Copyright 2009 Paul Hummer - See LICENSE
124+# Copyright 2009 Paul Hummer
125+# This file is part of Tarmac.
126+#
127+# Tarmac is free software: you can redistribute it and/or modify
128+# it under the terms of the GNU General Public License version 3 as
129+# published by
130+# the Free Software Foundation.
131+#
132+# Tarmac is distributed in the hope that it will be useful,
133+# but WITHOUT ANY WARRANTY; without even the implied warranty of
134+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
135+# GNU General Public License for more details.
136+#
137+# You should have received a copy of the GNU General Public License
138+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
139+
140 '''Tarmac - A tool for controlling the landing of Launchpad branches.'''
141
142 __version__ = u'0.2a'
143
144=== modified file 'tarmac/bin.py'
145--- tarmac/bin.py 2009-07-03 03:16:58 +0000
146+++ tarmac/bin.py 2009-07-10 15:10:28 +0000
147@@ -1,4 +1,19 @@
148-# Copyright 2009 Paul Hummer - See LICENSE
149+# Copyright 2009 Paul Hummer
150+# This file is part of Tarmac.
151+#
152+# Tarmac is free software: you can redistribute it and/or modify
153+# it under the terms of the GNU General Public License version 3 as
154+# published by
155+# the Free Software Foundation.
156+#
157+# Tarmac is distributed in the hope that it will be useful,
158+# but WITHOUT ANY WARRANTY; without even the implied warranty of
159+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
160+# GNU General Public License for more details.
161+#
162+# You should have received a copy of the GNU General Public License
163+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
164+
165 '''Code used by Tarmac scripts.'''
166 import atexit
167 import logging
168
169=== modified file 'tarmac/branch.py'
170--- tarmac/branch.py 2009-06-29 04:24:28 +0000
171+++ tarmac/branch.py 2009-07-10 15:10:28 +0000
172@@ -1,4 +1,19 @@
173-# Copyright 2009 Paul Hummer - See LICENSE
174+# Copyright 2009 Paul Hummer
175+# This file is part of Tarmac.
176+#
177+# Tarmac is free software: you can redistribute it and/or modify
178+# it under the terms of the GNU General Public License version 3 as
179+# published by
180+# the Free Software Foundation.
181+#
182+# Tarmac is distributed in the hope that it will be useful,
183+# but WITHOUT ANY WARRANTY; without even the implied warranty of
184+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
185+# GNU General Public License for more details.
186+#
187+# You should have received a copy of the GNU General Public License
188+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
189+
190 '''Tarmac branch tools.'''
191 import os
192 import shutil
193
194=== modified file 'tarmac/config.py'
195--- tarmac/config.py 2009-06-29 05:38:40 +0000
196+++ tarmac/config.py 2009-07-10 15:10:28 +0000
197@@ -1,4 +1,19 @@
198-# Copyright 2009 Paul Hummer - See LICENSE
199+# Copyright 2009 Paul Hummer
200+# This file is part of Tarmac.
201+#
202+# Tarmac is free software: you can redistribute it and/or modify
203+# it under the terms of the GNU General Public License version 3 as
204+# published by
205+# the Free Software Foundation.
206+#
207+# Tarmac is distributed in the hope that it will be useful,
208+# but WITHOUT ANY WARRANTY; without even the implied warranty of
209+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
210+# GNU General Public License for more details.
211+#
212+# You should have received a copy of the GNU General Public License
213+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
214+
215 '''Configuration handler.'''
216 # pylint: disable-msg=C0103
217 import os
218
219=== modified file 'tarmac/exceptions.py'
220--- tarmac/exceptions.py 2009-05-12 02:10:05 +0000
221+++ tarmac/exceptions.py 2009-07-10 15:10:28 +0000
222@@ -1,2 +1,17 @@
223-# Copyright 2009 Paul Hummer - See LICENSE
224+# Copyright 2009 Paul Hummer
225+# This file is part of Tarmac.
226+#
227+# Tarmac is free software: you can redistribute it and/or modify
228+# it under the terms of the GNU General Public License version 3 as
229+# published by
230+# the Free Software Foundation.
231+#
232+# Tarmac is distributed in the hope that it will be useful,
233+# but WITHOUT ANY WARRANTY; without even the implied warranty of
234+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
235+# GNU General Public License for more details.
236+#
237+# You should have received a copy of the GNU General Public License
238+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
239+
240 '''Tarmac specific exceptions.'''
241
242=== modified file 'tarmac/hooks.py'
243--- tarmac/hooks.py 2009-05-16 01:59:34 +0000
244+++ tarmac/hooks.py 2009-07-10 15:10:28 +0000
245@@ -1,4 +1,19 @@
246-# Copyright 2009 Paul Hummer - See LICENSE
247+# Copyright 2009 Paul Hummer
248+# This file is part of Tarmac.
249+#
250+# Tarmac is free software: you can redistribute it and/or modify
251+# it under the terms of the GNU General Public License version 3 as
252+# published by
253+# the Free Software Foundation.
254+#
255+# Tarmac is distributed in the hope that it will be useful,
256+# but WITHOUT ANY WARRANTY; without even the implied warranty of
257+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
258+# GNU General Public License for more details.
259+#
260+# You should have received a copy of the GNU General Public License
261+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
262+
263 '''Hooks for Tarmac.'''
264
265 from bzrlib import hooks
266
267=== modified file 'tarmac/plugin.py'
268--- tarmac/plugin.py 2009-06-29 04:22:00 +0000
269+++ tarmac/plugin.py 2009-07-10 15:10:28 +0000
270@@ -1,3 +1,18 @@
271+# This file is part of Tarmac.
272+#
273+# Tarmac is free software: you can redistribute it and/or modify
274+# it under the terms of the GNU General Public License version 3 as
275+# published by
276+# the Free Software Foundation.
277+#
278+# Tarmac is distributed in the hope that it will be useful,
279+# but WITHOUT ANY WARRANTY; without even the implied warranty of
280+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
281+# GNU General Public License for more details.
282+#
283+# You should have received a copy of the GNU General Public License
284+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
285+
286 '''Plugin utilities for Tarmac.'''
287 # pylint: disable-msg=W0122,W0612
288
289
290=== modified file 'tarmac/plugins/__init__.py'
291--- tarmac/plugins/__init__.py 2009-05-12 02:46:16 +0000
292+++ tarmac/plugins/__init__.py 2009-07-10 15:10:28 +0000
293@@ -1,4 +1,19 @@
294-# Copyright 2009 Paul Hummer - See LICENSE
295+# Copyright 2009 Paul Hummer
296+# This file is part of Tarmac.
297+#
298+# Tarmac is free software: you can redistribute it and/or modify
299+# it under the terms of the GNU General Public License version 3 as
300+# published by
301+# the Free Software Foundation.
302+#
303+# Tarmac is distributed in the hope that it will be useful,
304+# but WITHOUT ANY WARRANTY; without even the implied warranty of
305+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
306+# GNU General Public License for more details.
307+#
308+# You should have received a copy of the GNU General Public License
309+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
310+
311 '''Tarmac supported plugins.'''
312
313
314
315=== modified file 'tarmac/plugins/ciavc.py'
316--- tarmac/plugins/ciavc.py 2009-06-29 19:09:49 +0000
317+++ tarmac/plugins/ciavc.py 2009-07-10 15:10:28 +0000
318@@ -1,4 +1,19 @@
319-# Copyright 2009 Paul Hummer - See LICENSE
320+# Copyright 2009 Paul Hummer
321+# This file is part of Tarmac.
322+#
323+# Tarmac is free software: you can redistribute it and/or modify
324+# it under the terms of the GNU General Public License version 3 as
325+# published by
326+# the Free Software Foundation.
327+#
328+# Tarmac is distributed in the hope that it will be useful,
329+# but WITHOUT ANY WARRANTY; without even the implied warranty of
330+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
331+# GNU General Public License for more details.
332+#
333+# You should have received a copy of the GNU General Public License
334+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
335+
336 '''Tarmac plugin for enforcing a commit message format.
337
338 This code is derived from Jelmer Vernooij's CIA script for Bazaar that is found
339
340=== modified file 'tarmac/plugins/commitmessage.py'
341--- tarmac/plugins/commitmessage.py 2009-06-29 04:27:59 +0000
342+++ tarmac/plugins/commitmessage.py 2009-07-10 15:10:28 +0000
343@@ -1,4 +1,19 @@
344-# Copyright 2009 Paul Hummer - See LICENSE
345+# Copyright 2009 Paul Hummer
346+# This file is part of Tarmac.
347+#
348+# Tarmac is free software: you can redistribute it and/or modify
349+# it under the terms of the GNU General Public License version 3 as
350+# published by
351+# the Free Software Foundation.
352+#
353+# Tarmac is distributed in the hope that it will be useful,
354+# but WITHOUT ANY WARRANTY; without even the implied warranty of
355+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
356+# GNU General Public License for more details.
357+#
358+# You should have received a copy of the GNU General Public License
359+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
360+
361 '''Tarmac plugin for enforcing a commit message format.'''
362 from tarmac.hooks import tarmac_hooks
363 from tarmac.plugins import TarmacPlugin
364
365=== modified file 'tarmac/plugins/runtest.py'
366--- tarmac/plugins/runtest.py 2009-06-29 04:32:38 +0000
367+++ tarmac/plugins/runtest.py 2009-07-10 15:10:28 +0000
368@@ -1,4 +1,19 @@
369-# Copyright 2009 Paul Hummer - See LICENSE
370+# Copyright 2009 Paul Hummer
371+# This file is part of Tarmac.
372+#
373+# Tarmac is free software: you can redistribute it and/or modify
374+# it under the terms of the GNU General Public License version 3 as
375+# published by
376+# the Free Software Foundation.
377+#
378+# Tarmac is distributed in the hope that it will be useful,
379+# but WITHOUT ANY WARRANTY; without even the implied warranty of
380+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
381+# GNU General Public License for more details.
382+#
383+# You should have received a copy of the GNU General Public License
384+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
385+
386 '''Tarmac plugin for running tests pre-commit.'''
387 import os
388 import subprocess
389
390=== modified file 'tarmac/tests/__init__.py'
391--- tarmac/tests/__init__.py 2009-05-12 02:10:05 +0000
392+++ tarmac/tests/__init__.py 2009-07-10 15:10:28 +0000
393@@ -1,2 +1,17 @@
394-# Copyright 2009 Paul Hummer - See LICENSE
395+# Copyright 2009 Paul Hummer
396+# This file is part of Tarmac.
397+#
398+# Tarmac is free software: you can redistribute it and/or modify
399+# it under the terms of the GNU General Public License version 3 as
400+# published by
401+# the Free Software Foundation.
402+#
403+# Tarmac is distributed in the hope that it will be useful,
404+# but WITHOUT ANY WARRANTY; without even the implied warranty of
405+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
406+# GNU General Public License for more details.
407+#
408+# You should have received a copy of the GNU General Public License
409+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
410+
411 '''Tests for Tarmac!'''
412
413=== modified file 'tarmac/tests/mock.py'
414--- tarmac/tests/mock.py 2009-05-16 06:24:35 +0000
415+++ tarmac/tests/mock.py 2009-07-10 15:10:28 +0000
416@@ -1,4 +1,19 @@
417-# Copyright 2009 Paul Hummer - See LICENSE
418+# Copyright 2009 Paul Hummer
419+# This file is part of Tarmac.
420+#
421+# Tarmac is free software: you can redistribute it and/or modify
422+# it under the terms of the GNU General Public License version 3 as
423+# published by
424+# the Free Software Foundation.
425+#
426+# Tarmac is distributed in the hope that it will be useful,
427+# but WITHOUT ANY WARRANTY; without even the implied warranty of
428+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
429+# GNU General Public License for more details.
430+#
431+# You should have received a copy of the GNU General Public License
432+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
433+
434 '''Mock objects for Tarmac!'''
435 from base64 import b64encode
436 import math
437
438=== modified file 'tarmac/tests/test_branch.py'
439--- tarmac/tests/test_branch.py 2009-06-29 04:44:23 +0000
440+++ tarmac/tests/test_branch.py 2009-07-10 15:10:28 +0000
441@@ -1,4 +1,19 @@
442-# Copyright 2009 Paul Hummer - See LICENSE
443+# Copyright 2009 Paul Hummer
444+# This file is part of Tarmac.
445+#
446+# Tarmac is free software: you can redistribute it and/or modify
447+# it under the terms of the GNU General Public License version 3 as
448+# published by
449+# the Free Software Foundation.
450+#
451+# Tarmac is distributed in the hope that it will be useful,
452+# but WITHOUT ANY WARRANTY; without even the implied warranty of
453+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
454+# GNU General Public License for more details.
455+#
456+# You should have received a copy of the GNU General Public License
457+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
458+
459 '''Tests for tarmac.branch'''
460 import os
461 import unittest
462
463=== modified file 'tarmac/tests/test_scripts.py'
464--- tarmac/tests/test_scripts.py 2009-06-29 04:39:46 +0000
465+++ tarmac/tests/test_scripts.py 2009-07-10 15:10:28 +0000
466@@ -1,4 +1,19 @@
467-# Copyright 2009 Paul Hummer - See LICENSE
468+# Copyright 2009 Paul Hummer
469+# This file is part of Tarmac.
470+#
471+# Tarmac is free software: you can redistribute it and/or modify
472+# it under the terms of the GNU General Public License version 3 as
473+# published by
474+# the Free Software Foundation.
475+#
476+# Tarmac is distributed in the hope that it will be useful,
477+# but WITHOUT ANY WARRANTY; without even the implied warranty of
478+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
479+# GNU General Public License for more details.
480+#
481+# You should have received a copy of the GNU General Public License
482+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
483+
484 '''Tests for Tarmac scripts.'''
485 # pylint: disable-msg=W0212,W0223
486 __metaclass__ = type
487
488=== modified file 'tarmac/utils.py'
489--- tarmac/utils.py 2009-07-03 03:16:58 +0000
490+++ tarmac/utils.py 2009-07-10 15:10:28 +0000
491@@ -1,4 +1,19 @@
492-# Copyright 2009 Paul Hummer - See LICENSE
493+# Copyright 2009 Paul Hummer
494+# This file is part of Tarmac.
495+#
496+# Tarmac is free software: you can redistribute it and/or modify
497+# it under the terms of the GNU General Public License version 3 as
498+# published by
499+# the Free Software Foundation.
500+#
501+# Tarmac is distributed in the hope that it will be useful,
502+# but WITHOUT ANY WARRANTY; without even the implied warranty of
503+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
504+# GNU General Public License for more details.
505+#
506+# You should have received a copy of the GNU General Public License
507+# along with Tarmac. If not, see <http://www.gnu.org/licenses/>.
508+
509 '''Utilities for Tarmac, mostly dealing with Launchpad.'''
510 import os
511

Subscribers

People subscribed via source and target branches