From: Zac Medico Date: Tue, 15 Jun 2010 20:34:55 +0000 (-0700) Subject: Fix breakage in changelog checks do to faulty vcs comparison (cvs and X-Git-Tag: v2.2_rc68~549 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e0ef2f94364020be21b0ca0ba39e53809d865d5d;p=portage.git Fix breakage in changelog checks do to faulty vcs comparison (cvs and svn need to be lowercase). --- diff --git a/bin/repoman b/bin/repoman index 6124f0408..b2a2e0bfc 100755 --- a/bin/repoman +++ b/bin/repoman @@ -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',)