From 74ca5a13157fc6aab764ff50c4a5791c4effd609 Mon Sep 17 00:00:00 2001 From: "Yaakov M. Nemoy" Date: Tue, 30 Dec 2008 20:35:36 -0500 Subject: Updated license. --- modules/audit.py | 17 +++++++++++++++++ modules/bugs.py | 19 ++++++++++++++++++- modules/build.py | 20 +++++++++++++++++++- modules/cabal.py | 17 +++++++++++++++++ modules/mail.py | 19 ++++++++++++++++++- modules/mock.py | 19 ++++++++++++++++++- modules/package.py | 18 ++++++++++++++++++ modules/profile.py | 20 +++++++++++++++++++- modules/source.py | 20 +++++++++++++++++++- 9 files changed, 163 insertions(+), 6 deletions(-) (limited to 'modules') diff --git a/modules/audit.py b/modules/audit.py index fccd494..672e431 100644 --- a/modules/audit.py +++ b/modules/audit.py @@ -1,3 +1,20 @@ +# Fedora Developer Shell +# +# 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; 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 the +# GNU Library General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# Authors: Yaakov M. Nemoy +# from base.module import Module class Audit(Module): diff --git a/modules/bugs.py b/modules/bugs.py index 19dbb70..d98aa61 100644 --- a/modules/bugs.py +++ b/modules/bugs.py @@ -1,3 +1,20 @@ +# Fedora Developer Shell +# +# 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; 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 the +# GNU Library General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# Authors: Luke Macken +# import os from base.module import Module @@ -23,4 +40,4 @@ class Bugs(Module): """ os.system('firefox "https://bugzilla.redhat.com/buglist.cgi?query_format=specific&order=bugs.bug_id&bug_status=__open__&product=&content=%s"' % text) -__all__ = ['Bugs'] \ No newline at end of file +__all__ = ['Bugs'] diff --git a/modules/build.py b/modules/build.py index 2b5d6e0..de89d88 100644 --- a/modules/build.py +++ b/modules/build.py @@ -1,3 +1,21 @@ +# Fedora Developer Shell +# +# 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; 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 the +# GNU Library General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# Authors: Yaakov M. Nemoy +# + from __future__ import with_statement from shutil import copyfileobj @@ -90,4 +108,4 @@ class Build(Module): def close(self): self.pkg.close() -__all__ = ['Build'] \ No newline at end of file +__all__ = ['Build'] diff --git a/modules/cabal.py b/modules/cabal.py index 81f4b68..faa01cd 100644 --- a/modules/cabal.py +++ b/modules/cabal.py @@ -1,3 +1,20 @@ +# Fedora Developer Shell +# +# 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; 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 the +# GNU Library General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# Authors: Yaakov M. Nemoy +# from __future__ import with_statement from os import listdir, getcwd diff --git a/modules/mail.py b/modules/mail.py index 9a2532a..f401456 100644 --- a/modules/mail.py +++ b/modules/mail.py @@ -1,3 +1,20 @@ +# Fedora Developer Shell +# +# 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; 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 the +# GNU Library General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# Authors: Luke Macken +# import re import os import gzip @@ -116,4 +133,4 @@ class Mail(Module): log.info("Subject: %s" % msg['Subject']) log.info('\n'.join(self.__body(msg))) -__all__ = ['Mail'] \ No newline at end of file +__all__ = ['Mail'] diff --git a/modules/mock.py b/modules/mock.py index 3655c37..a49231f 100644 --- a/modules/mock.py +++ b/modules/mock.py @@ -1,3 +1,20 @@ +# Fedora Developer Shell +# +# 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; 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 the +# GNU Library General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# Authors: Yaakov M. Nemoy +# from __future__ import with_statement from base.module import Module @@ -43,4 +60,4 @@ class Mock(Module): p.wait() -__all__ = ['Mock'] \ No newline at end of file +__all__ = ['Mock'] diff --git a/modules/package.py b/modules/package.py index 18e4dde..869874e 100644 --- a/modules/package.py +++ b/modules/package.py @@ -1,3 +1,21 @@ +# Fedora Developer Shell +# +# 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; 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 the +# GNU Library General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# Authors: Yaakov M. Nemoy +# + from __future__ import with_statement import tarfile diff --git a/modules/profile.py b/modules/profile.py index bac1553..d85710f 100644 --- a/modules/profile.py +++ b/modules/profile.py @@ -1,3 +1,21 @@ +# Fedora Developer Shell +# +# 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; 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 the +# GNU Library General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# Authors: Yaakov M. Nemoy +# + from base.module import Module from base.exceptions import ExecutionException @@ -8,4 +26,4 @@ class Profile(Module): elif name: pass else: - raise ExecutionException('need a saved profile or a branch to lookup') \ No newline at end of file + raise ExecutionException('need a saved profile or a branch to lookup') diff --git a/modules/source.py b/modules/source.py index d586795..ff3708d 100644 --- a/modules/source.py +++ b/modules/source.py @@ -1,3 +1,21 @@ +# Fedora Developer Shell +# +# 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; 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 the +# GNU Library General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# Authors: Luke Macken +# Yaakov M. Nemoy +# import os import commands @@ -132,4 +150,4 @@ class Source(Module): def bugs(self): raise NotImplementedError -__all__ = ['Source'] \ No newline at end of file +__all__ = ['Source'] -- cgit