jhbuild r2230 - in trunk: . jhbuild/buildbot jhbuild/buildbot/status/web



Author: fpeters
Date: Thu Aug 14 10:12:08 2008
New Revision: 2230
URL: http://svn.gnome.org/viewvc/jhbuild?rev=2230&view=rev

Log:
* jhbuild/buildbot/__init__.py, jhbuild/buildbot/changes.py,
jhbuild/buildbot/factory.py, jhbuild/buildbot/scheduler.py,
jhbuild/buildbot/status/web/feeder.py, jhbuild/buildbot/steps.py,
jhbuild/buildbot/status/web/__init__.py: updated with header with
license and copyright statements.



Modified:
   trunk/ChangeLog
   trunk/jhbuild/buildbot/__init__.py
   trunk/jhbuild/buildbot/changes.py
   trunk/jhbuild/buildbot/factory.py
   trunk/jhbuild/buildbot/scheduler.py
   trunk/jhbuild/buildbot/status/web/__init__.py
   trunk/jhbuild/buildbot/status/web/feeder.py
   trunk/jhbuild/buildbot/steps.py

Modified: trunk/jhbuild/buildbot/__init__.py
==============================================================================
--- trunk/jhbuild/buildbot/__init__.py	(original)
+++ trunk/jhbuild/buildbot/__init__.py	Thu Aug 14 10:12:08 2008
@@ -1,3 +1,22 @@
+# jhbuild - a build script for GNOME 1.x and 2.x
+# Copyright (C) 2008  apinheiro igalia com, John Carr, Frederic Peters
+#
+#   __init__.py: utility functions for master.cfg
+#
+# 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; either version 2 of the License, or
+# (at your option) any later version.
+#
+# 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 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
+
 import jhbuild.moduleset
 
 def jhbuild_list():

Modified: trunk/jhbuild/buildbot/changes.py
==============================================================================
--- trunk/jhbuild/buildbot/changes.py	(original)
+++ trunk/jhbuild/buildbot/changes.py	Thu Aug 14 10:12:08 2008
@@ -1,3 +1,22 @@
+# jhbuild - a build script for GNOME 1.x and 2.x
+# Copyright (C) 2008  apinheiro igalia com, John Carr, Frederic Peters
+#
+#   changes.py: parsing of svn-commits-list messages
+#
+# 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; either version 2 of the License, or
+# (at your option) any later version.
+#
+# 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 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
+
 from buildbot import util
 from buildbot.changes.mail import MaildirSource
 from buildbot.changes import changes

Modified: trunk/jhbuild/buildbot/factory.py
==============================================================================
--- trunk/jhbuild/buildbot/factory.py	(original)
+++ trunk/jhbuild/buildbot/factory.py	Thu Aug 14 10:12:08 2008
@@ -1,9 +1,25 @@
+# jhbuild - a build script for GNOME 1.x and 2.x
+# Copyright (C) 2008  apinheiro igalia com, John Carr, Frederic Peters
+#
+#   factory.py: procedures to update, build and check modules
+#
+# 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; either version 2 of the License, or
+# (at your option) any later version.
+#
+# 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 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
+#
 from buildbot.process import factory
 from steps import JHBuildSource, JHBuildCommand, JHBuildModulePathTestCommand, JHBuildModulePathCommand
 
-# This is the JHBuild factory. It creates a standard procedure to compile modules, run
-# checks and create reports.
-
 class JHBuildFactory(factory.BuildFactory):
     module = None
     moduleset = None

Modified: trunk/jhbuild/buildbot/scheduler.py
==============================================================================
--- trunk/jhbuild/buildbot/scheduler.py	(original)
+++ trunk/jhbuild/buildbot/scheduler.py	Thu Aug 14 10:12:08 2008
@@ -1,3 +1,22 @@
+# jhbuild - a build script for GNOME 1.x and 2.x
+# Copyright (C) 2008  apinheiro igalia com, John Carr, Frederic Peters
+#
+#   scheduler.py: jhbuild jobs scheduler 
+#
+# 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; either version 2 of the License, or
+# (at your option) any later version.
+#
+# 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 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
+#
 from twisted.application import service, internet
 
 from buildbot.scheduler import Periodic, BaseUpstreamScheduler

Modified: trunk/jhbuild/buildbot/status/web/__init__.py
==============================================================================
--- trunk/jhbuild/buildbot/status/web/__init__.py	(original)
+++ trunk/jhbuild/buildbot/status/web/__init__.py	Thu Aug 14 10:12:08 2008
@@ -1,3 +1,22 @@
+# jhbuild - a build script for GNOME 1.x and 2.x
+# Copyright (C) 2008  apinheiro igalia com, John Carr, Frederic Peters
+#
+#   __init__.py: custom buildbot web pages
+#
+# 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; either version 2 of the License, or
+# (at your option) any later version.
+#
+# 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 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
+
 import os
 from twisted.web import server, static, resource
 from buildbot.status.web.base import HtmlResource, ITopBox, build_get_class

Modified: trunk/jhbuild/buildbot/status/web/feeder.py
==============================================================================
--- trunk/jhbuild/buildbot/status/web/feeder.py	(original)
+++ trunk/jhbuild/buildbot/status/web/feeder.py	Thu Aug 14 10:12:08 2008
@@ -1,5 +1,24 @@
-# This file is part of the Buildbot configuration for the Subversion project.
-# The original file was created by Lieven Gobaerts
+# jhbuild - a build script for GNOME 1.x and 2.x
+# Copyright Lieven Gobaerts
+# Copyright (C) 2008  apinheiro igalia com, John Carr, Frederic Peters
+#
+#   feeder.py: buildbot module RSS/Atom feeds
+#
+# 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; either version 2 of the License, or
+# (at your option) any later version.
+#
+# 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 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
+
+
 # Minor changes made by API (apinheiro igalia com) in order to fit with our
 # configuration and last buildbot changes
 

Modified: trunk/jhbuild/buildbot/steps.py
==============================================================================
--- trunk/jhbuild/buildbot/steps.py	(original)
+++ trunk/jhbuild/buildbot/steps.py	Thu Aug 14 10:12:08 2008
@@ -1,3 +1,22 @@
+# jhbuild - a build script for GNOME 1.x and 2.x
+# Copyright (C) 2008  apinheiro igalia com, John Carr, Frederic Peters
+#
+#   steps.py: custom buildbot steps
+#
+# 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; either version 2 of the License, or
+# (at your option) any later version.
+#
+# 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 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
+
 import os, commands, re, StringIO
 
 from buildbot.process import factory



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]