From 5423c279e4006a26df5b73b0b7807fa6b6af2e2c Mon Sep 17 00:00:00 2001 From: Lucas Meneghel Rodrigues Date: Thu, 10 Apr 2014 08:20:42 -0300 Subject: [PATCH] avocado: Fill in the last python files with license files Signed-off-by: Lucas Meneghel Rodrigues --- avocado/core/__init__.py | 13 +++++++++++++ avocado/linux/__init__.py | 13 +++++++++++++ avocado/plugins/__init__.py | 13 +++++++++++++ docs/source/conf.py | 13 +++++++++++++ tests/failtest/failtest.py | 14 ++++++++++++++ tests/sleeptest/sleeptest.py | 14 ++++++++++++++ tests/synctest/synctest.py | 14 ++++++++++++++ 7 files changed, 94 insertions(+) diff --git a/avocado/core/__init__.py b/avocado/core/__init__.py index e69de29b..c6d0e8c7 100644 --- a/avocado/core/__init__.py +++ b/avocado/core/__init__.py @@ -0,0 +1,13 @@ +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; specifically version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# See LICENSE for more details. +# +# Copyright: RedHat 2013-2014 +# Author: Lucas Meneghel Rodrigues + diff --git a/avocado/linux/__init__.py b/avocado/linux/__init__.py index e69de29b..c6d0e8c7 100644 --- a/avocado/linux/__init__.py +++ b/avocado/linux/__init__.py @@ -0,0 +1,13 @@ +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; specifically version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# See LICENSE for more details. +# +# Copyright: RedHat 2013-2014 +# Author: Lucas Meneghel Rodrigues + diff --git a/avocado/plugins/__init__.py b/avocado/plugins/__init__.py index e69de29b..c6d0e8c7 100644 --- a/avocado/plugins/__init__.py +++ b/avocado/plugins/__init__.py @@ -0,0 +1,13 @@ +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; specifically version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# See LICENSE for more details. +# +# Copyright: RedHat 2013-2014 +# Author: Lucas Meneghel Rodrigues + diff --git a/docs/source/conf.py b/docs/source/conf.py index 5eb6f662..3aaa97d0 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,3 +1,16 @@ +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; specifically version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# See LICENSE for more details. +# +# Copyright: RedHat 2013-2014 +# Author: Lucas Meneghel Rodrigues + # -*- coding: utf-8 -*- # # avocado documentation build configuration file, created by diff --git a/tests/failtest/failtest.py b/tests/failtest/failtest.py index 12d612cf..9b0ec025 100755 --- a/tests/failtest/failtest.py +++ b/tests/failtest/failtest.py @@ -1,5 +1,19 @@ #!/usr/bin/python +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; specifically version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# See LICENSE for more details. +# +# Copyright: RedHat 2013-2014 +# Author: Lucas Meneghel Rodrigues + + from avocado import test from avocado import job from avocado.core import exceptions diff --git a/tests/sleeptest/sleeptest.py b/tests/sleeptest/sleeptest.py index bab71710..f9dd7df8 100755 --- a/tests/sleeptest/sleeptest.py +++ b/tests/sleeptest/sleeptest.py @@ -1,5 +1,19 @@ #!/usr/bin/python +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; specifically version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# See LICENSE for more details. +# +# Copyright: RedHat 2013-2014 +# Author: Lucas Meneghel Rodrigues + + import time from avocado import job diff --git a/tests/synctest/synctest.py b/tests/synctest/synctest.py index 9925b935..fbc6c828 100755 --- a/tests/synctest/synctest.py +++ b/tests/synctest/synctest.py @@ -1,5 +1,19 @@ #!/usr/bin/python +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; specifically version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# See LICENSE for more details. +# +# Copyright: RedHat 2013-2014 +# Author: Lucas Meneghel Rodrigues + + import os from avocado import test -- GitLab