Index: trunk/packages/invirt-dev/invirtibuilder
===================================================================
--- trunk/packages/invirt-dev/invirtibuilder	(revision 2799)
+++ trunk/packages/invirt-dev/invirtibuilder	(revision 2801)
@@ -8,5 +8,5 @@
 If the build succeeds, the new version of the package is uploaded to
 the apt repository, tagged in its git repository, and the Invirt
-superrepo is updated to point at the new version.
+superproject is updated to point at the new version.
 
 If the build fails, the Invirtibuilder sends mail with the build log.
@@ -174,6 +174,6 @@
 
 
-def updateSuperrepo(pocket, package, commit, principal):
-    """Update the superrepo.
+def updateSuperproject(pocket, package, commit, principal):
+    """Update the superproject.
 
     This will create a new commit on the branch for the given pocket
@@ -181,10 +181,10 @@
 
     Note that there's no locking issue here, because we disallow all
-    pushes to the superrepo.
-    """
-    superrepo = os.path.join(b._REPO_DIR, 'invirt/packages.git')
+    pushes to the superproject.
+    """
+    superproject = os.path.join(b._REPO_DIR, 'invirt/packages.git')
     branch = b.pocketToGit(pocket)
     tree = c.captureOutput(['git', 'ls-tree', branch],
-                         cwd=superrepo)
+                         cwd=superproject)
 
     new_tree = re.compile(
@@ -194,5 +194,5 @@
 
     new_tree_id = c.captureOutput(['git', 'mktree'],
-                                cwd=superrepo,
+                                cwd=superproject,
                                 stdin_str=new_tree)
 
@@ -203,5 +203,5 @@
     new_commit = c.captureOutput(
         ['git', 'commit-tree', new_tree_hash, '-p', branch],
-        cwd=superrepo,
+        cwd=superproject,
         env=env,
         stdin_str=commit_msg)
@@ -209,5 +209,5 @@
     c.captureOutput(
         ['git', 'update-ref', 'refs/heads/%s' % branch, new_commit],
-        cwd=superrepo)
+        cwd=superproject)
 
 
@@ -330,6 +330,6 @@
                     db.failed_stage = 'updating submodule branches'
                     updateSubmoduleBranch(pocket, package, commit)
-                    db.failed_stage = 'updating superrepo'
-                    updateSuperrepo(pocket, package, commit, principal)
+                    db.failed_stage = 'updating superproject'
+                    updateSuperproject(pocket, package, commit, principal)
                     db.failed_stage = 'uploading packages to apt repo'
                     uploadBuild(pocket, workdir)
Index: trunk/scripts/git-hooks/notes
===================================================================
--- trunk/scripts/git-hooks/notes	(revision 2799)
+++ trunk/scripts/git-hooks/notes	(revision 2801)
@@ -6,7 +6,7 @@
   zephyr
 
-superrepo heads are dev and prod
-on push to superrepo:
-  error - no pushes to superrepo
+superproject heads are dev and prod
+on push to superproject:
+  error - no pushes to superproject
 
 on remctl xvm repo (dev|prod) package SHA-1:
@@ -25,5 +25,5 @@
   upload to apt repo
   tag submodule with version
-  commit superrepo with updated submodule
+  commit superproject with updated submodule
   clean up build files
   zephyr
Index: trunk/scripts/git-migration/git-migrate-fast.sh
===================================================================
--- trunk/scripts/git-migration/git-migrate-fast.sh	(revision 2799)
+++ trunk/scripts/git-migration/git-migrate-fast.sh	(revision 2801)
@@ -92,5 +92,5 @@
     echo 'committer Invirt Git Import <invirt@mit.edu> now'
     echo 'data <<EOF'
-    echo 'Initial superrepo creation.'
+    echo 'Initial superproject creation.'
     echo 'EOF'
     for r in $(ls ../packages); do
