Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: bin/
Date: Sun, 01 Apr 2012 17:16:21
Message-Id: 1333300557.5aec6753e2a0cfd7992c41ceaadf2c42fce715ac.zmedico@gentoo
1 commit: 5aec6753e2a0cfd7992c41ceaadf2c42fce715ac
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 1 17:15:57 2012 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 1 17:15:57 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=5aec6753
7
8 repoman: only assume cvs preserves mtimes
9
10 ---
11 bin/repoman | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/bin/repoman b/bin/repoman
15 index 4197900..076d404 100755
16 --- a/bin/repoman
17 +++ b/bin/repoman
18 @@ -547,7 +547,7 @@ if options.if_modified == "y" and vcs is None:
19 options.if_modified = "n"
20
21 # Disable copyright/mtime check if vcs does not preserve mtime (bug #324075).
22 -vcs_preserves_mtime = vcs not in ('git', 'svn')
23 +vcs_preserves_mtime = vcs in ('cvs',)
24
25 vcs_local_opts = repoman_settings.get("REPOMAN_VCS_LOCAL_OPTS", "").split()
26 vcs_global_opts = repoman_settings.get("REPOMAN_VCS_GLOBAL_OPTS")