Zac found this bug in the list and parked it as having a patch.
Andrew Hamilton 2013-10-21 03:42:18 UTC
Repoman will not check the validity of the Copyright header if the tree being
checked is not in a CVS repository. This is related to the solution for Bug
324075.
--- bin/repoman.orig 2013-10-20 23:43:08.342000000 -0400
+++ bin/repoman 2013-10-20 23:43:24.341000000 -0400
@@ -544,7 +544,7 @@
options.if_modified = "n"
# Disable copyright/mtime check if vcs does not preserve mtime (bug #324075).
-vcs_preserves_mtime = vcs in ('cvs',)
+vcs_preserves_mtime = vcs in ('cvs', None)
vcs_local_opts = repoman_settings.get("REPOMAN_VCS_LOCAL_OPTS", "").split()
vcs_global_opts = repoman_settings.get("REPOMAN_VCS_GLOBAL_OPTS")
--
Brian Dolbec <dolsen>