[Pkg-debile-commits] [debile-slave] 01/01: Add missing license headers

Sylvestre Ledru sylvestre at alioth.debian.org
Thu Sep 12 15:01:45 UTC 2013


This is an automated email from the git hooks/post-receive script.

sylvestre pushed a commit to branch master
in repository debile-slave.

commit 552e1668a7ba6c488af6f3ad6da8d4b05b480e0a
Author: Sylvestre Ledru <sylvestre.ledru at scilab-enterprises.com>
Date:   Thu Sep 12 17:01:33 2013 +0200

    Add missing license headers
---
 debileslave/__init__.py                       |   21 +++++++++++++++++++++
 debileslave/client.py                         |   21 +++++++++++++++++++++
 debileslave/commands/__init__.py              |   21 +++++++++++++++++++++
 debileslave/commands/adequate.py              |   21 +++++++++++++++++++++
 debileslave/commands/build.py                 |   21 +++++++++++++++++++++
 debileslave/commands/clanganalyzer.py         |   21 +++++++++++++++++++++
 debileslave/commands/coccinelle.py            |   21 +++++++++++++++++++++
 debileslave/commands/cppcheck.py              |   21 +++++++++++++++++++++
 debileslave/commands/desktop_file_validate.py |   21 +++++++++++++++++++++
 debileslave/commands/lintian.py               |   21 +++++++++++++++++++++
 debileslave/commands/lintian4py.py            |   21 +++++++++++++++++++++
 debileslave/commands/pep8.py                  |   21 +++++++++++++++++++++
 debileslave/commands/perlcritic.py            |   21 +++++++++++++++++++++
 debileslave/commands/piuparts.py              |   21 +++++++++++++++++++++
 debileslave/config.py                         |   21 +++++++++++++++++++++
 debileslave/daemon.py                         |   21 +++++++++++++++++++++
 debileslave/error.py                          |   21 +++++++++++++++++++++
 debileslave/runners/__init__.py               |   21 +++++++++++++++++++++
 debileslave/runners/adequate.py               |   21 +++++++++++++++++++++
 debileslave/runners/clanganalyzer.py          |   21 +++++++++++++++++++++
 debileslave/runners/coccinelle.py             |   21 +++++++++++++++++++++
 debileslave/runners/cppcheck.py               |   21 +++++++++++++++++++++
 debileslave/runners/desktop_file_validate.py  |   21 +++++++++++++++++++++
 debileslave/runners/lintian.py                |   21 +++++++++++++++++++++
 debileslave/runners/pep8.py                   |   21 +++++++++++++++++++++
 debileslave/runners/perlcritic.py             |   21 +++++++++++++++++++++
 debileslave/runners/piuparts.py               |   21 +++++++++++++++++++++
 debileslave/runners/sbuild.py                 |   21 +++++++++++++++++++++
 debileslave/utils.py                          |   21 +++++++++++++++++++++
 debileslave/wrappers/__init__.py              |   21 +++++++++++++++++++++
 debileslave/wrappers/adequate.py              |   21 +++++++++++++++++++++
 debileslave/wrappers/coccinelle.py            |   21 +++++++++++++++++++++
 debileslave/wrappers/cppcheck.py              |   21 +++++++++++++++++++++
 debileslave/wrappers/desktop_file_validate.py |   21 +++++++++++++++++++++
 debileslave/wrappers/lintian.py               |   21 +++++++++++++++++++++
 debileslave/wrappers/pep8.py                  |   21 +++++++++++++++++++++
 debileslave/wrappers/perlcritic.py            |   21 +++++++++++++++++++++
 debileslave/wrappers/piuparts.py              |   21 +++++++++++++++++++++
 38 files changed, 798 insertions(+)

diff --git a/debileslave/__init__.py b/debileslave/__init__.py
index 75bd3ac..cdec0ac 100644
--- a/debileslave/__init__.py
+++ b/debileslave/__init__.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 
 
 __appname__ = "debile-slave"
diff --git a/debileslave/client.py b/debileslave/client.py
index 189c9f9..438a848 100644
--- a/debileslave/client.py
+++ b/debileslave/client.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.utils import tdir, cd, dget, run_command
 from debileslave.config import Config
 
diff --git a/debileslave/commands/__init__.py b/debileslave/commands/__init__.py
index f41eb78..8fa7bb3 100644
--- a/debileslave/commands/__init__.py
+++ b/debileslave/commands/__init__.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 import importlib
 
 
diff --git a/debileslave/commands/adequate.py b/debileslave/commands/adequate.py
index 3414fbb..434b6fc 100644
--- a/debileslave/commands/adequate.py
+++ b/debileslave/commands/adequate.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.runners.adequate import adequate, version
 from debileslave.config import Config
 
diff --git a/debileslave/commands/build.py b/debileslave/commands/build.py
index 3df080e..e2f0f6c 100644
--- a/debileslave/commands/build.py
+++ b/debileslave/commands/build.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.runners.sbuild import sbuild, version
 from debileslave.utils import upload
 import glob
diff --git a/debileslave/commands/clanganalyzer.py b/debileslave/commands/clanganalyzer.py
index d2560e6..a900b27 100644
--- a/debileslave/commands/clanganalyzer.py
+++ b/debileslave/commands/clanganalyzer.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.runners.clanganalyzer import clanganalyzer, version
 from debileslave.config import Config
 
diff --git a/debileslave/commands/coccinelle.py b/debileslave/commands/coccinelle.py
index e056b9d..b79a3d0 100644
--- a/debileslave/commands/coccinelle.py
+++ b/debileslave/commands/coccinelle.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.runners.coccinelle import coccinelle, version
 
 
diff --git a/debileslave/commands/cppcheck.py b/debileslave/commands/cppcheck.py
index 8854023..6021cc5 100644
--- a/debileslave/commands/cppcheck.py
+++ b/debileslave/commands/cppcheck.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.runners.cppcheck import cppcheck, version
 
 
diff --git a/debileslave/commands/desktop_file_validate.py b/debileslave/commands/desktop_file_validate.py
index 24b4a37..a0c4bfa 100644
--- a/debileslave/commands/desktop_file_validate.py
+++ b/debileslave/commands/desktop_file_validate.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.runners.desktop_file_validate\
     import desktop_file_validate, version
 from debileslave.utils import run_command, cd
diff --git a/debileslave/commands/lintian.py b/debileslave/commands/lintian.py
index 8b7a1d0..31e8f95 100644
--- a/debileslave/commands/lintian.py
+++ b/debileslave/commands/lintian.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.runners.lintian import lintian, version
 
 # Can take either a .dsc or a .deb as target
diff --git a/debileslave/commands/lintian4py.py b/debileslave/commands/lintian4py.py
index f53001f..e2c9e00 100644
--- a/debileslave/commands/lintian4py.py
+++ b/debileslave/commands/lintian4py.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.runners.lintian import lintian, version
 
 
diff --git a/debileslave/commands/pep8.py b/debileslave/commands/pep8.py
index 800514a..4555ff7 100644
--- a/debileslave/commands/pep8.py
+++ b/debileslave/commands/pep8.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.runners.pep8 import pep8, version
 
 
diff --git a/debileslave/commands/perlcritic.py b/debileslave/commands/perlcritic.py
index debf7b0..7b37f4d 100644
--- a/debileslave/commands/perlcritic.py
+++ b/debileslave/commands/perlcritic.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.runners.perlcritic import perlcritic, version
 
 
diff --git a/debileslave/commands/piuparts.py b/debileslave/commands/piuparts.py
index f8116f8..f936572 100644
--- a/debileslave/commands/piuparts.py
+++ b/debileslave/commands/piuparts.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.runners.piuparts import piuparts, version
 from debileslave.config import Config
 
diff --git a/debileslave/config.py b/debileslave/config.py
index 6fcecbd..340d62e 100644
--- a/debileslave/config.py
+++ b/debileslave/config.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 import ConfigParser
 
 
diff --git a/debileslave/daemon.py b/debileslave/daemon.py
index a9dab39..ccf88ba 100644
--- a/debileslave/daemon.py
+++ b/debileslave/daemon.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from firehose.model import (Analysis, Generator, Metadata,
                             DebianBinary, DebianSource)
 
diff --git a/debileslave/error.py b/debileslave/error.py
index b61c595..eb578bc 100644
--- a/debileslave/error.py
+++ b/debileslave/error.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 
 
 class EthelError(Exception):
diff --git a/debileslave/runners/__init__.py b/debileslave/runners/__init__.py
index e69de29..72afb95 100644
--- a/debileslave/runners/__init__.py
+++ b/debileslave/runners/__init__.py
@@ -0,0 +1,21 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
diff --git a/debileslave/runners/adequate.py b/debileslave/runners/adequate.py
index e101fe0..aeaee1a 100644
--- a/debileslave/runners/adequate.py
+++ b/debileslave/runners/adequate.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.wrappers.adequate import parse_adequate
 from schroot import schroot
 
diff --git a/debileslave/runners/clanganalyzer.py b/debileslave/runners/clanganalyzer.py
index da2300d..61f5dc5 100644
--- a/debileslave/runners/clanganalyzer.py
+++ b/debileslave/runners/clanganalyzer.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.utils import run_command
 from schroot import schroot
 
diff --git a/debileslave/runners/coccinelle.py b/debileslave/runners/coccinelle.py
index 787579a..7754ec9 100644
--- a/debileslave/runners/coccinelle.py
+++ b/debileslave/runners/coccinelle.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.wrappers.coccinelle import parse_coccinelle
 from debileslave.utils import run_command, cd
 from debileslave.config import Config
diff --git a/debileslave/runners/cppcheck.py b/debileslave/runners/cppcheck.py
index 6e0cab0..2e4e378 100644
--- a/debileslave/runners/cppcheck.py
+++ b/debileslave/runners/cppcheck.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.wrappers.cppcheck import parse_cppcheck
 from debileslave.utils import run_command, cd
 
diff --git a/debileslave/runners/desktop_file_validate.py b/debileslave/runners/desktop_file_validate.py
index cbbe477..134de5b 100644
--- a/debileslave/runners/desktop_file_validate.py
+++ b/debileslave/runners/desktop_file_validate.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.wrappers.desktop_file_validate \
     import parse_desktop_file_validate
 from debileslave.utils import run_command
diff --git a/debileslave/runners/lintian.py b/debileslave/runners/lintian.py
index 12c2a1f..ff10c44 100644
--- a/debileslave/runners/lintian.py
+++ b/debileslave/runners/lintian.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.wrappers.lintian import parse_lintian
 from debileslave.utils import run_command
 
diff --git a/debileslave/runners/pep8.py b/debileslave/runners/pep8.py
index ebc28fa..6fee77b 100644
--- a/debileslave/runners/pep8.py
+++ b/debileslave/runners/pep8.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.wrappers.pep8 import parse_pep8
 from debileslave.utils import run_command, cd
 
diff --git a/debileslave/runners/perlcritic.py b/debileslave/runners/perlcritic.py
index 5dc0fc8..5c7c2b4 100644
--- a/debileslave/runners/perlcritic.py
+++ b/debileslave/runners/perlcritic.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.wrappers.perlcritic import parse_perlcritic
 from debileslave.utils import run_command, cd
 
diff --git a/debileslave/runners/piuparts.py b/debileslave/runners/piuparts.py
index c3ed7d4..0bddf37 100644
--- a/debileslave/runners/piuparts.py
+++ b/debileslave/runners/piuparts.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.wrappers.piuparts import parse_piuparts
 
 from schroot.chroot import SchrootCommandError
diff --git a/debileslave/runners/sbuild.py b/debileslave/runners/sbuild.py
index 02c0142..baccb6e 100644
--- a/debileslave/runners/sbuild.py
+++ b/debileslave/runners/sbuild.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.utils import run_command
 
 from firehose.model import Stats
diff --git a/debileslave/utils.py b/debileslave/utils.py
index b3a4587..9d32189 100644
--- a/debileslave/utils.py
+++ b/debileslave/utils.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from debileslave.error import EthelError
 from debileslave.config import Config
 
diff --git a/debileslave/wrappers/__init__.py b/debileslave/wrappers/__init__.py
index e69de29..72afb95 100644
--- a/debileslave/wrappers/__init__.py
+++ b/debileslave/wrappers/__init__.py
@@ -0,0 +1,21 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
diff --git a/debileslave/wrappers/adequate.py b/debileslave/wrappers/adequate.py
index 3436348..00a0342 100644
--- a/debileslave/wrappers/adequate.py
+++ b/debileslave/wrappers/adequate.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from firehose.model import Issue, Message, File, Location
 import re
 
diff --git a/debileslave/wrappers/coccinelle.py b/debileslave/wrappers/coccinelle.py
index 0e1b40d..8e0143f 100644
--- a/debileslave/wrappers/coccinelle.py
+++ b/debileslave/wrappers/coccinelle.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 import StringIO
 from firehose.model import Analysis
 
diff --git a/debileslave/wrappers/cppcheck.py b/debileslave/wrappers/cppcheck.py
index 6e6dda1..b0175bc 100644
--- a/debileslave/wrappers/cppcheck.py
+++ b/debileslave/wrappers/cppcheck.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from firehose.model import Issue, Message, File, Location, Point
 import lxml.etree
 
diff --git a/debileslave/wrappers/desktop_file_validate.py b/debileslave/wrappers/desktop_file_validate.py
index 9555842..61c8d3f 100644
--- a/debileslave/wrappers/desktop_file_validate.py
+++ b/debileslave/wrappers/desktop_file_validate.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from firehose.model import Issue, Message, File, Location
 import re
 
diff --git a/debileslave/wrappers/lintian.py b/debileslave/wrappers/lintian.py
index 267476c..920f9cc 100644
--- a/debileslave/wrappers/lintian.py
+++ b/debileslave/wrappers/lintian.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from firehose.model import Issue, Message, File, Location
 import re
 
diff --git a/debileslave/wrappers/pep8.py b/debileslave/wrappers/pep8.py
index 369a862..19f22d7 100644
--- a/debileslave/wrappers/pep8.py
+++ b/debileslave/wrappers/pep8.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from firehose.model import Issue, Message, File, Location, Point
 import re
 
diff --git a/debileslave/wrappers/perlcritic.py b/debileslave/wrappers/perlcritic.py
index 70249d3..3a4d080 100644
--- a/debileslave/wrappers/perlcritic.py
+++ b/debileslave/wrappers/perlcritic.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from firehose.model import Issue, Message, File, Location, Point
 import re
 
diff --git a/debileslave/wrappers/piuparts.py b/debileslave/wrappers/piuparts.py
index c6b4ad0..b4eaf0d 100644
--- a/debileslave/wrappers/piuparts.py
+++ b/debileslave/wrappers/piuparts.py
@@ -1,3 +1,24 @@
+# Copyright (c) 2012-2013 Paul Tagliamonte <paultag at debian.org>
+# Copyright (c) 2013 Leo Cavaille <leo at cavaille.net>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
 from firehose.model import Issue, Message, File, Location
 import re
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-debile/debile-slave.git



More information about the Pkg-debile-commits mailing list