Fix breakage in changelog checks do to faulty vcs comparison (cvs and
authorZac Medico <zmedico@gentoo.org>
Tue, 15 Jun 2010 20:34:55 +0000 (13:34 -0700)
committerZac Medico <zmedico@gentoo.org>
Tue, 15 Jun 2010 20:34:55 +0000 (13:34 -0700)
svn need to be lowercase).

bin/repoman

index 6124f04089d2b2cb2582c35c2b961a601d45e8a1..b2a2e0bfc21225058845b76af9161bca76646b7f 100755 (executable)
@@ -492,7 +492,7 @@ elif os.path.isdir(os.path.join(portdir_overlay, ".hg")):
 # It will be generated on server side from scm log,
 # before package moves to the rsync server.
 # This is needed because we try to avoid merge collisions.
-check_changelog = vcs in ('CVS', 'SVN')
+check_changelog = vcs in ('cvs', 'svn')
 
 # Disable copyright/mtime check if vcs does not preserve mtime (bug #324075).
 check_copyright_mtime = vcs not in ('git',)