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

Sylvestre Ledru sylvestre at alioth.debian.org
Thu Sep 12 15:25:44 UTC 2013


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

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

commit 9e4eac60cef0e3e96c4799890af6bb7037e12505
Author: Sylvestre Ledru <sylvestre.ledru at scilab-enterprises.com>
Date:   Thu Sep 12 17:25:17 2013 +0200

    Add missing license headers
---
 debilemaster/__init__.py     |   21 +++++++++++++++++++++
 debilemaster/archive.py      |   21 +++++++++++++++++++++
 debilemaster/cli/__init__.py |   20 ++++++++++++++++++++
 debilemaster/cli/init.py     |   21 +++++++++++++++++++++
 debilemaster/config.py       |   21 +++++++++++++++++++++
 debilemaster/incoming.py     |   21 +++++++++++++++++++++
 debilemaster/mail.py         |   21 +++++++++++++++++++++
 debilemaster/orm.py          |   21 +++++++++++++++++++++
 debilemaster/server.py       |   21 +++++++++++++++++++++
 debilemaster/utils.py        |   21 +++++++++++++++++++++
 10 files changed, 209 insertions(+)

diff --git a/debilemaster/__init__.py b/debilemaster/__init__.py
index ccee50e..79b87ec 100644
--- a/debilemaster/__init__.py
+++ b/debilemaster/__init__.py
@@ -1,2 +1,23 @@
+# 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-master"
 __version__ = "0.0.1"
diff --git a/debilemaster/archive.py b/debilemaster/archive.py
index 2d5c62e..b7aafdf 100644
--- a/debilemaster/archive.py
+++ b/debilemaster/archive.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 debilemaster.config import Config
 from debilemaster.orm import User, Source, Binary, Package
 from debilemaster.utils import run_command, listize
diff --git a/debilemaster/cli/__init__.py b/debilemaster/cli/__init__.py
index e69de29..5f7c92c 100644
--- a/debilemaster/cli/__init__.py
+++ b/debilemaster/cli/__init__.py
@@ -0,0 +1,20 @@
+# 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/debilemaster/cli/init.py b/debilemaster/cli/init.py
index 8e6e58d..b9f187e 100644
--- a/debilemaster/cli/init.py
+++ b/debilemaster/cli/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.
+
 from clint.textui import progress, puts
 from clint import args
 import debilemaster.orm as debilemodel
diff --git a/debilemaster/config.py b/debilemaster/config.py
index 319e3eb..2f5ad24 100644
--- a/debilemaster/config.py
+++ b/debilemaster/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
 
 class IncompleteConfig(Exception):
diff --git a/debilemaster/incoming.py b/debilemaster/incoming.py
index 7dda5e0..f067cd5 100644
--- a/debilemaster/incoming.py
+++ b/debilemaster/incoming.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 sqlalchemy.orm.exc import NoResultFound, MultipleResultsFound
 from debilemaster.orm import User, Source, Machine, Binary, Job, Group
 from debilemaster.archive import move_to_pool_source, move_to_pool_binary, UserRepository
diff --git a/debilemaster/mail.py b/debilemaster/mail.py
index 902d178..b04aa8c 100644
--- a/debilemaster/mail.py
+++ b/debilemaster/mail.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 email.mime.text import MIMEText
 from email.parser import Parser
 from jinja2 import Template
diff --git a/debilemaster/orm.py b/debilemaster/orm.py
index 7038c93..bbd5e47 100644
--- a/debilemaster/orm.py
+++ b/debilemaster/orm.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.
+
 # This ORM is the declaration of all the entities we are using in debile-master
 # as well as the relations between these entities.
 
diff --git a/debilemaster/server.py b/debilemaster/server.py
index b45e0cd..2b16d7f 100644
--- a/debilemaster/server.py
+++ b/debilemaster/server.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 sqlalchemy import create_engine
 from sqlalchemy.orm import sessionmaker, scoped_session, with_polymorphic, contains_eager, joinedload
 from sqlalchemy.orm.util import aliased
diff --git a/debilemaster/utils.py b/debilemaster/utils.py
index 3bf0fde..9919f8a 100644
--- a/debilemaster/utils.py
+++ b/debilemaster/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.
+
 import subprocess
 import contextlib
 import shlex

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



More information about the Pkg-debile-commits mailing list