[jhbuild] Update header comment about JHBuild in source files (GNOME bug 671353)



commit eadd4a7fb84572e5678b37ac39387733bbe74d18
Author: Craig Keogh <cskeogh adam com au>
Date:   Sun Mar 18 17:47:08 2012 +1030

    Update header comment about JHBuild in source files (GNOME bug 671353)
    
    JHBuild isn't just for GNOME 1.x and 2.x, but 3.x too and other software

 jhbuild/__init__.py                      |    2 +-
 jhbuild/buildbot/changes.py              |    2 +-
 jhbuild/buildbot/factory.py              |    2 +-
 jhbuild/buildbot/scheduler.py            |    2 +-
 jhbuild/buildbot/status/web/__init__.py  |    2 +-
 jhbuild/buildbot/status/web/bot.py       |    2 +-
 jhbuild/buildbot/status/web/build.py     |    2 +-
 jhbuild/buildbot/status/web/builder.py   |    2 +-
 jhbuild/buildbot/status/web/changes.py   |    2 +-
 jhbuild/buildbot/status/web/feeds.py     |    2 +-
 jhbuild/buildbot/status/web/logs.py      |    2 +-
 jhbuild/buildbot/status/web/step.py      |    2 +-
 jhbuild/buildbot/status/web/waterfall.py |    2 +-
 jhbuild/buildbot/steps.py                |    2 +-
 jhbuild/commands/__init__.py             |    2 +-
 jhbuild/commands/autobuild.py            |    2 +-
 jhbuild/commands/base.py                 |    2 +-
 jhbuild/commands/bootstrap.py            |    2 +-
 jhbuild/commands/bot.py                  |    2 +-
 jhbuild/commands/checkbranches.py        |    2 +-
 jhbuild/commands/checkmodulesets.py      |    2 +-
 jhbuild/commands/clean.py                |    2 +-
 jhbuild/commands/gui.py                  |    2 +-
 jhbuild/commands/info.py                 |    2 +-
 jhbuild/commands/make.py                 |    2 +-
 jhbuild/commands/rdepends.py             |    2 +-
 jhbuild/commands/sanitycheck.py          |    2 +-
 jhbuild/commands/snapshot.py             |    2 +-
 jhbuild/commands/sysdeps.py              |    2 +-
 jhbuild/commands/tinderbox.py            |    2 +-
 jhbuild/commands/uninstall.py            |    2 +-
 jhbuild/config.py                        |    2 +-
 jhbuild/errors.py                        |    2 +-
 jhbuild/frontends/__init__.py            |    2 +-
 jhbuild/frontends/autobuild.py           |    2 +-
 jhbuild/frontends/buildscript.py         |    2 +-
 jhbuild/frontends/gtkui.py               |    2 +-
 jhbuild/frontends/terminal.py            |    2 +-
 jhbuild/frontends/tinderbox.py           |    2 +-
 jhbuild/main.py                          |    2 +-
 jhbuild/modtypes/__init__.py             |    2 +-
 jhbuild/modtypes/autotools.py            |    2 +-
 jhbuild/modtypes/cmake.py                |    2 +-
 jhbuild/modtypes/distutils.py            |    2 +-
 jhbuild/modtypes/perl.py                 |    2 +-
 jhbuild/modtypes/tarball.py              |    2 +-
 jhbuild/modtypes/testmodule.py           |    2 +-
 jhbuild/modtypes/waf.py                  |    2 +-
 jhbuild/moduleset.py                     |    2 +-
 jhbuild/monkeypatch.py                   |    2 +-
 jhbuild/utils/__init__.py                |    2 +-
 jhbuild/utils/cmds.py                    |    2 +-
 jhbuild/utils/fileutils.py               |    2 +-
 jhbuild/utils/httpcache.py               |    2 +-
 jhbuild/utils/lockfile.py                |    2 +-
 jhbuild/utils/notify.py                  |    2 +-
 jhbuild/utils/packagedb.py               |    2 +-
 jhbuild/utils/subprocess_win32.py        |    2 +-
 jhbuild/utils/sxml.py                    |    2 +-
 jhbuild/utils/systeminstall.py           |    2 +-
 jhbuild/utils/trayicon.py                |    2 +-
 jhbuild/utils/trigger.py                 |    2 +-
 jhbuild/utils/unpack.py                  |    2 +-
 jhbuild/versioncontrol/__init__.py       |    2 +-
 jhbuild/versioncontrol/bzr.py            |    2 +-
 jhbuild/versioncontrol/cvs.py            |    2 +-
 jhbuild/versioncontrol/darcs.py          |    2 +-
 jhbuild/versioncontrol/fossil.py         |    2 +-
 jhbuild/versioncontrol/git.py            |    2 +-
 jhbuild/versioncontrol/hg.py             |    2 +-
 jhbuild/versioncontrol/mtn.py            |    2 +-
 jhbuild/versioncontrol/svn.py            |    2 +-
 jhbuild/versioncontrol/tarball.py        |    2 +-
 scripts/changecvsroot.py                 |    2 +-
 tests/mock.py                            |    2 +-
 tests/tests.py                           |    2 +-
 76 files changed, 76 insertions(+), 76 deletions(-)
---
diff --git a/jhbuild/__init__.py b/jhbuild/__init__.py
index 7cdb30e..4d12fb5 100644
--- a/jhbuild/__init__.py
+++ b/jhbuild/__init__.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 # This program is free software; you can redistribute it and/or modify
diff --git a/jhbuild/buildbot/changes.py b/jhbuild/buildbot/changes.py
index cb6791e..076d759 100644
--- a/jhbuild/buildbot/changes.py
+++ b/jhbuild/buildbot/changes.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2008  Igalia S.L., John Carr, Frederic Peters
 #
 #   changes.py: parsing of svn-commits-list messages
diff --git a/jhbuild/buildbot/factory.py b/jhbuild/buildbot/factory.py
index 2e39e4d..cecd7b7 100644
--- a/jhbuild/buildbot/factory.py
+++ b/jhbuild/buildbot/factory.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2008  Igalia S.L., John Carr, Frederic Peters
 #
 #   factory.py: procedures to update, build and check modules
diff --git a/jhbuild/buildbot/scheduler.py b/jhbuild/buildbot/scheduler.py
index d7dc242..8778ea2 100644
--- a/jhbuild/buildbot/scheduler.py
+++ b/jhbuild/buildbot/scheduler.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2008  Igalia S.L., John Carr, Frederic Peters
 #
 #   scheduler.py: jhbuild jobs scheduler 
diff --git a/jhbuild/buildbot/status/web/__init__.py b/jhbuild/buildbot/status/web/__init__.py
index aa62ee7..5a6b5a1 100644
--- a/jhbuild/buildbot/status/web/__init__.py
+++ b/jhbuild/buildbot/status/web/__init__.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2008  apinheiro igalia com, John Carr, Frederic Peters
 #
 #   __init__.py: custom buildbot web pages
diff --git a/jhbuild/buildbot/status/web/bot.py b/jhbuild/buildbot/status/web/bot.py
index 02ca1aa..2090ab2 100644
--- a/jhbuild/buildbot/status/web/bot.py
+++ b/jhbuild/buildbot/status/web/bot.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2009 Frederic Peters
 #
 #   bot.py: pages with info on slaves
diff --git a/jhbuild/buildbot/status/web/build.py b/jhbuild/buildbot/status/web/build.py
index ce8d486..dd8dce2 100644
--- a/jhbuild/buildbot/status/web/build.py
+++ b/jhbuild/buildbot/status/web/build.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2008  Frederic Peters
 #
 #   build.py: custom build pages
diff --git a/jhbuild/buildbot/status/web/builder.py b/jhbuild/buildbot/status/web/builder.py
index 6435f7a..bce5b37 100644
--- a/jhbuild/buildbot/status/web/builder.py
+++ b/jhbuild/buildbot/status/web/builder.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2008  Frederic Peters
 #
 #   build.py: custom builder pages
diff --git a/jhbuild/buildbot/status/web/changes.py b/jhbuild/buildbot/status/web/changes.py
index 421655b..941379b 100644
--- a/jhbuild/buildbot/status/web/changes.py
+++ b/jhbuild/buildbot/status/web/changes.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2008  Frederic Peters
 #
 #   changes.py: custom changes pages
diff --git a/jhbuild/buildbot/status/web/feeds.py b/jhbuild/buildbot/status/web/feeds.py
index 4718ba0..4ae23db 100644
--- a/jhbuild/buildbot/status/web/feeds.py
+++ b/jhbuild/buildbot/status/web/feeds.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright Lieven Gobaerts
 # Copyright (C)  2008 Igalia S.L., John Carr, Frederic Peters
 #
diff --git a/jhbuild/buildbot/status/web/logs.py b/jhbuild/buildbot/status/web/logs.py
index 3bff7f6..d193119 100644
--- a/jhbuild/buildbot/status/web/logs.py
+++ b/jhbuild/buildbot/status/web/logs.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2008  Frederic Peters
 #
 #   build.py: custom logs pages
diff --git a/jhbuild/buildbot/status/web/step.py b/jhbuild/buildbot/status/web/step.py
index 68dc478..b333b4d 100644
--- a/jhbuild/buildbot/status/web/step.py
+++ b/jhbuild/buildbot/status/web/step.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2008  Frederic Peters
 #
 #   step.py: custom step pages
diff --git a/jhbuild/buildbot/status/web/waterfall.py b/jhbuild/buildbot/status/web/waterfall.py
index 0a0d224..c793011 100644
--- a/jhbuild/buildbot/status/web/waterfall.py
+++ b/jhbuild/buildbot/status/web/waterfall.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2008  Igalia S.L., John Carr, Frederic Peters
 #
 #   waterfall.py: custom waterfall display
diff --git a/jhbuild/buildbot/steps.py b/jhbuild/buildbot/steps.py
index d42c850..9ad5520 100644
--- a/jhbuild/buildbot/steps.py
+++ b/jhbuild/buildbot/steps.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2008 Igalia S.L., John Carr, Frederic Peters
 #
 #   steps.py: custom buildbot steps
diff --git a/jhbuild/commands/__init__.py b/jhbuild/commands/__init__.py
index 4f368f3..210580d 100644
--- a/jhbuild/commands/__init__.py
+++ b/jhbuild/commands/__init__.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   __init__.py: a package holding the various jhbuild subcommands
diff --git a/jhbuild/commands/autobuild.py b/jhbuild/commands/autobuild.py
index f6c0423..c37f91e 100644
--- a/jhbuild/commands/autobuild.py
+++ b/jhbuild/commands/autobuild.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2004  James Henstridge
 #
 #   autobuild.py: non-interactive build that generates a report
diff --git a/jhbuild/commands/base.py b/jhbuild/commands/base.py
index d2b4a71..bf8e4b7 100644
--- a/jhbuild/commands/base.py
+++ b/jhbuild/commands/base.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   base.py: the most common jhbuild commands
diff --git a/jhbuild/commands/bootstrap.py b/jhbuild/commands/bootstrap.py
index 00aee3e..667667a 100644
--- a/jhbuild/commands/bootstrap.py
+++ b/jhbuild/commands/bootstrap.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   bootstrap.py: code to check whether prerequisite modules are installed
diff --git a/jhbuild/commands/bot.py b/jhbuild/commands/bot.py
index 0d06ce5..7838794 100644
--- a/jhbuild/commands/bot.py
+++ b/jhbuild/commands/bot.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 # Copyright (C) 2008 Frederic Peters
 #
diff --git a/jhbuild/commands/checkbranches.py b/jhbuild/commands/checkbranches.py
index d1bf7b8..2a24479 100644
--- a/jhbuild/commands/checkbranches.py
+++ b/jhbuild/commands/checkbranches.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2004  James Henstridge
 #
 #   checkbranches.py: check GNOME module sets for missing branches definition
diff --git a/jhbuild/commands/checkmodulesets.py b/jhbuild/commands/checkmodulesets.py
index fae684b..884991c 100644
--- a/jhbuild/commands/checkmodulesets.py
+++ b/jhbuild/commands/checkmodulesets.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2004  James Henstridge
 #
 #   checkmodulesets.py: check GNOME module sets for missing branches definition
diff --git a/jhbuild/commands/clean.py b/jhbuild/commands/clean.py
index 26650fe..f597ad3 100644
--- a/jhbuild/commands/clean.py
+++ b/jhbuild/commands/clean.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   base.py: the most common jhbuild commands
diff --git a/jhbuild/commands/gui.py b/jhbuild/commands/gui.py
index 4529e49..8265476 100644
--- a/jhbuild/commands/gui.py
+++ b/jhbuild/commands/gui.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 # Copyright (C) 2003-2004  Seth Nickell
 #
diff --git a/jhbuild/commands/info.py b/jhbuild/commands/info.py
index 67c11d7..f11d2b0 100644
--- a/jhbuild/commands/info.py
+++ b/jhbuild/commands/info.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   info.py: show information about a module
diff --git a/jhbuild/commands/make.py b/jhbuild/commands/make.py
index f417ff2..09f0132 100644
--- a/jhbuild/commands/make.py
+++ b/jhbuild/commands/make.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2011 Colin Walters <walters verbum org>
 #
 #   make.py: Run build for cwd
diff --git a/jhbuild/commands/rdepends.py b/jhbuild/commands/rdepends.py
index 8f99ef3..1deaaf4 100644
--- a/jhbuild/commands/rdepends.py
+++ b/jhbuild/commands/rdepends.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2008  Frederic Peters
 #
 #   rdepends.py: show reverse-dependencies of a module
diff --git a/jhbuild/commands/sanitycheck.py b/jhbuild/commands/sanitycheck.py
index 3af80fa..a5ebacb 100644
--- a/jhbuild/commands/sanitycheck.py
+++ b/jhbuild/commands/sanitycheck.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   sanitycheck.py: check whether build environment is sane
diff --git a/jhbuild/commands/snapshot.py b/jhbuild/commands/snapshot.py
index 17a67cd..050977f 100644
--- a/jhbuild/commands/snapshot.py
+++ b/jhbuild/commands/snapshot.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2004  James Henstridge
 # Copyright (C) 2008  Andy Wingo
 #
diff --git a/jhbuild/commands/sysdeps.py b/jhbuild/commands/sysdeps.py
index e7a525c..bdc9530 100644
--- a/jhbuild/commands/sysdeps.py
+++ b/jhbuild/commands/sysdeps.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2011 Colin Walters <walters verbum org>
 #
 #   sysdeps.py: Install system dependencies
diff --git a/jhbuild/commands/tinderbox.py b/jhbuild/commands/tinderbox.py
index 5a43513..d102e3f 100644
--- a/jhbuild/commands/tinderbox.py
+++ b/jhbuild/commands/tinderbox.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   tinderbox.py: non-interactive build that generates a report
diff --git a/jhbuild/commands/uninstall.py b/jhbuild/commands/uninstall.py
index 9c21f3d..1e03979 100644
--- a/jhbuild/commands/uninstall.py
+++ b/jhbuild/commands/uninstall.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   base.py: the most common jhbuild commands
diff --git a/jhbuild/config.py b/jhbuild/config.py
index 0990d33..6cd91da 100644
--- a/jhbuild/config.py
+++ b/jhbuild/config.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 # Copyright (C) 2007-2008  Frederic Peters
 #
diff --git a/jhbuild/errors.py b/jhbuild/errors.py
index 841948c..9cc9437 100644
--- a/jhbuild/errors.py
+++ b/jhbuild/errors.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   errors.py: definitions of exceptions used by jhbuild modules
diff --git a/jhbuild/frontends/__init__.py b/jhbuild/frontends/__init__.py
index 72e87cc..f74e5b4 100644
--- a/jhbuild/frontends/__init__.py
+++ b/jhbuild/frontends/__init__.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   __init__.py: a package holding the various build frontends
diff --git a/jhbuild/frontends/autobuild.py b/jhbuild/frontends/autobuild.py
index 7e6b32e..6ba1397 100644
--- a/jhbuild/frontends/autobuild.py
+++ b/jhbuild/frontends/autobuild.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2004  James Henstridge
 #
 #   autobuild.py: build logic for a non-interactive reporting build
diff --git a/jhbuild/frontends/buildscript.py b/jhbuild/frontends/buildscript.py
index c94afd3..9c9f2a3 100644
--- a/jhbuild/frontends/buildscript.py
+++ b/jhbuild/frontends/buildscript.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 # Copyright (C) 2003-2004  Seth Nickell
 #
diff --git a/jhbuild/frontends/gtkui.py b/jhbuild/frontends/gtkui.py
index 5564812..6e8457f 100644
--- a/jhbuild/frontends/gtkui.py
+++ b/jhbuild/frontends/gtkui.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 # Copyright (C) 2003-2004  Seth Nickell
 #
diff --git a/jhbuild/frontends/terminal.py b/jhbuild/frontends/terminal.py
index 49a73c2..201cfba 100644
--- a/jhbuild/frontends/terminal.py
+++ b/jhbuild/frontends/terminal.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 # Copyright (C) 2003-2004  Seth Nickell
 #
diff --git a/jhbuild/frontends/tinderbox.py b/jhbuild/frontends/tinderbox.py
index dba957c..5ee5d52 100644
--- a/jhbuild/frontends/tinderbox.py
+++ b/jhbuild/frontends/tinderbox.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   tinderbox.py: build logic for a non-interactive reporting build
diff --git a/jhbuild/main.py b/jhbuild/main.py
index 1ecc9c1..d34c3f2 100644
--- a/jhbuild/main.py
+++ b/jhbuild/main.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   main.py: parses command line arguments and starts the build
diff --git a/jhbuild/modtypes/__init__.py b/jhbuild/modtypes/__init__.py
index c1426a5..5049d7b 100644
--- a/jhbuild/modtypes/__init__.py
+++ b/jhbuild/modtypes/__init__.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   __init__.py: package to hold module type defintions
diff --git a/jhbuild/modtypes/autotools.py b/jhbuild/modtypes/autotools.py
index 61e60e8..8a5a50b 100644
--- a/jhbuild/modtypes/autotools.py
+++ b/jhbuild/modtypes/autotools.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 # Copyright (C) 2007-2008  Frederic Peters
 #
diff --git a/jhbuild/modtypes/cmake.py b/jhbuild/modtypes/cmake.py
index a85ff26..76567c9 100644
--- a/jhbuild/modtypes/cmake.py
+++ b/jhbuild/modtypes/cmake.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   cmake.py: cmake module type definitions.
diff --git a/jhbuild/modtypes/distutils.py b/jhbuild/modtypes/distutils.py
index faddc0f..4c58210 100644
--- a/jhbuild/modtypes/distutils.py
+++ b/jhbuild/modtypes/distutils.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   distutils.py: Python distutils module type definitions.
diff --git a/jhbuild/modtypes/perl.py b/jhbuild/modtypes/perl.py
index d33643a..61c58aa 100644
--- a/jhbuild/modtypes/perl.py
+++ b/jhbuild/modtypes/perl.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   perl.py: perl module type definitions.
diff --git a/jhbuild/modtypes/tarball.py b/jhbuild/modtypes/tarball.py
index 3aee3a1..f817082 100644
--- a/jhbuild/modtypes/tarball.py
+++ b/jhbuild/modtypes/tarball.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   tarball.py: rules for building tarballs
diff --git a/jhbuild/modtypes/testmodule.py b/jhbuild/modtypes/testmodule.py
index 07b031e..1281766 100644
--- a/jhbuild/modtypes/testmodule.py
+++ b/jhbuild/modtypes/testmodule.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   testmodule.py: testmodule type definitions.
diff --git a/jhbuild/modtypes/waf.py b/jhbuild/modtypes/waf.py
index c05222c..6edb5ca 100644
--- a/jhbuild/modtypes/waf.py
+++ b/jhbuild/modtypes/waf.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 # Copyright (C) 2007  Gustavo Carneiro
 # Copyright (C) 2008  Frederic Peters
diff --git a/jhbuild/moduleset.py b/jhbuild/moduleset.py
index 0dd8d7d..9f99e84 100644
--- a/jhbuild/moduleset.py
+++ b/jhbuild/moduleset.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   moduleset.py: logic for running the build.
diff --git a/jhbuild/monkeypatch.py b/jhbuild/monkeypatch.py
index 12ad8ba..0d49905 100644
--- a/jhbuild/monkeypatch.py
+++ b/jhbuild/monkeypatch.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 # This program is free software; you can redistribute it and/or modify
diff --git a/jhbuild/utils/__init__.py b/jhbuild/utils/__init__.py
index 331710a..a4e89db 100644
--- a/jhbuild/utils/__init__.py
+++ b/jhbuild/utils/__init__.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2004  James Henstridge
 #
 #   __init__.py: module for miscelaneous utility functions
diff --git a/jhbuild/utils/cmds.py b/jhbuild/utils/cmds.py
index 585bb97..9075948 100644
--- a/jhbuild/utils/cmds.py
+++ b/jhbuild/utils/cmds.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   cmds.py: utilities for running commands and examining their output
diff --git a/jhbuild/utils/fileutils.py b/jhbuild/utils/fileutils.py
index f3acc5a..1ef4e26 100644
--- a/jhbuild/utils/fileutils.py
+++ b/jhbuild/utils/fileutils.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2011 Red Hat, Inc.
 #
 #   fileutils.py - Helper functions for filesystem operations
diff --git a/jhbuild/utils/httpcache.py b/jhbuild/utils/httpcache.py
index 51c2248..a349efc 100644
--- a/jhbuild/utils/httpcache.py
+++ b/jhbuild/utils/httpcache.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   httpcache.py: a simple HTTP cache
diff --git a/jhbuild/utils/lockfile.py b/jhbuild/utils/lockfile.py
index 07703e3..a0ebd4c 100644
--- a/jhbuild/utils/lockfile.py
+++ b/jhbuild/utils/lockfile.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2011  Colin Walters <walters verbum org>
 #
 #   symlinklock.py - A lock file
diff --git a/jhbuild/utils/notify.py b/jhbuild/utils/notify.py
index 955ec32..67c2958 100644
--- a/jhbuild/utils/notify.py
+++ b/jhbuild/utils/notify.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2007  Mariano Suarez-Alvarez
 #
 #   notify.py: using libnotify
diff --git a/jhbuild/utils/packagedb.py b/jhbuild/utils/packagedb.py
index ceb9342..a649592 100644
--- a/jhbuild/utils/packagedb.py
+++ b/jhbuild/utils/packagedb.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   packagedb.py - a registry of installed packages
diff --git a/jhbuild/utils/subprocess_win32.py b/jhbuild/utils/subprocess_win32.py
index bedc6da..4261d2d 100644
--- a/jhbuild/utils/subprocess_win32.py
+++ b/jhbuild/utils/subprocess_win32.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   subprocess_win32: monkeypatch to make jhbuild work on win32
diff --git a/jhbuild/utils/sxml.py b/jhbuild/utils/sxml.py
index a9f38a1..98df4cc 100644
--- a/jhbuild/utils/sxml.py
+++ b/jhbuild/utils/sxml.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2008  Andy Wingo <wingo pobox com>
 #
 #   sxml.py: xml as s-expressions
diff --git a/jhbuild/utils/systeminstall.py b/jhbuild/utils/systeminstall.py
index 5c8e3e3..bdebe55 100755
--- a/jhbuild/utils/systeminstall.py
+++ b/jhbuild/utils/systeminstall.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2011  Colin Walters <walters verbum org>
 #
 #   systeminstall.py - Use system-specific means to acquire dependencies
diff --git a/jhbuild/utils/trayicon.py b/jhbuild/utils/trayicon.py
index d33f097..6c74cab 100644
--- a/jhbuild/utils/trayicon.py
+++ b/jhbuild/utils/trayicon.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   trayicon.py: simple wrapper for zenity based tray icons
diff --git a/jhbuild/utils/trigger.py b/jhbuild/utils/trigger.py
index 6baa686..3aa91f1 100644
--- a/jhbuild/utils/trigger.py
+++ b/jhbuild/utils/trigger.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2011  Red Hat, Inc.
 #
 #   trigger.py - Run scripts after packages are installed
diff --git a/jhbuild/utils/unpack.py b/jhbuild/utils/unpack.py
index 388c199..1aeddce 100644
--- a/jhbuild/utils/unpack.py
+++ b/jhbuild/utils/unpack.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2007  Alberto Ruiz <aruiz gnome org>
 #
 #   unpack.py: helper functions for unpacking compressed packages
diff --git a/jhbuild/versioncontrol/__init__.py b/jhbuild/versioncontrol/__init__.py
index 0c10d1a..683f6a1 100644
--- a/jhbuild/versioncontrol/__init__.py
+++ b/jhbuild/versioncontrol/__init__.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   __init__.py: infrastructure for plugging in version control systems
diff --git a/jhbuild/versioncontrol/bzr.py b/jhbuild/versioncontrol/bzr.py
index db9b797..bb26d14 100644
--- a/jhbuild/versioncontrol/bzr.py
+++ b/jhbuild/versioncontrol/bzr.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   bzr.py: some code to handle various bazaar-ng operations
diff --git a/jhbuild/versioncontrol/cvs.py b/jhbuild/versioncontrol/cvs.py
index 06a03d3..8510c85 100644
--- a/jhbuild/versioncontrol/cvs.py
+++ b/jhbuild/versioncontrol/cvs.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   cvs.py: some code to handle various cvs operations
diff --git a/jhbuild/versioncontrol/darcs.py b/jhbuild/versioncontrol/darcs.py
index 525a7f8..ed61975 100644
--- a/jhbuild/versioncontrol/darcs.py
+++ b/jhbuild/versioncontrol/darcs.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   darcs.py: some code to handle various darcs operations
diff --git a/jhbuild/versioncontrol/fossil.py b/jhbuild/versioncontrol/fossil.py
index ffd2c08..20dcb09 100644
--- a/jhbuild/versioncontrol/fossil.py
+++ b/jhbuild/versioncontrol/fossil.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 # Copyright (C) 2010  Marc-Andre Lureau <marcandre lureau gmail com>
 #
diff --git a/jhbuild/versioncontrol/git.py b/jhbuild/versioncontrol/git.py
index eb03fff..4a93cd1 100644
--- a/jhbuild/versioncontrol/git.py
+++ b/jhbuild/versioncontrol/git.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 # Copyright (C) 2007-2008  Marc-Andre Lureau
 #
diff --git a/jhbuild/versioncontrol/hg.py b/jhbuild/versioncontrol/hg.py
index 72d5df8..cab5ecf 100644
--- a/jhbuild/versioncontrol/hg.py
+++ b/jhbuild/versioncontrol/hg.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 # Copyright (C) 2007  Marco Barisione <marco barisione org>
 #
diff --git a/jhbuild/versioncontrol/mtn.py b/jhbuild/versioncontrol/mtn.py
index c809b0d..8d5bf1b 100644
--- a/jhbuild/versioncontrol/mtn.py
+++ b/jhbuild/versioncontrol/mtn.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 # Copyright (C) 2007  Gary Kramlich <grim reaperworld com>
 #
diff --git a/jhbuild/versioncontrol/svn.py b/jhbuild/versioncontrol/svn.py
index 60411fc..5649417 100644
--- a/jhbuild/versioncontrol/svn.py
+++ b/jhbuild/versioncontrol/svn.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   svn.py: some code to handle various Subversion operations
diff --git a/jhbuild/versioncontrol/tarball.py b/jhbuild/versioncontrol/tarball.py
index 8ded913..8e1095d 100644
--- a/jhbuild/versioncontrol/tarball.py
+++ b/jhbuild/versioncontrol/tarball.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   tarball.py: some code to handle tarball repositories
diff --git a/scripts/changecvsroot.py b/scripts/changecvsroot.py
index 7284b8b..a11af46 100755
--- a/scripts/changecvsroot.py
+++ b/scripts/changecvsroot.py
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 #
 #   changecvsroot.py: script to alter the CVS root of a working copy
diff --git a/tests/mock.py b/tests/mock.py
index d1cbb08..278180b 100644
--- a/tests/mock.py
+++ b/tests/mock.py
@@ -1,4 +1,4 @@
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 # Copyright (C) 2007-2008  Frederic Peters
 #
diff --git a/tests/tests.py b/tests/tests.py
index c8e0067..82215eb 100644
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -1,5 +1,5 @@
 #! /usr/bin/env python
-# jhbuild - a build script for GNOME 1.x and 2.x
+# jhbuild - a tool to ease building collections of source packages
 # Copyright (C) 2001-2006  James Henstridge
 # Copyright (C) 2007-2008  Frederic Peters
 #



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