summaryrefslogtreecommitdiffstats
path: root/bin/repoman
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-10-25 19:54:36 +0000
committerZac Medico <zmedico@gentoo.org>2007-10-25 19:54:36 +0000
commit8fc327338c2cfeda139a5ac1a1d2d5d3d296641c (patch)
tree0790a0c96a7cabccb2664e64649d40d86f110987 /bin/repoman
parenta9280f6611d265ebfd9bd0c58e3076f441e9165b (diff)
downloadportage-8fc327338c2cfeda139a5ac1a1d2d5d3d296641c.tar.gz
portage-8fc327338c2cfeda139a5ac1a1d2d5d3d296641c.tar.bz2
portage-8fc327338c2cfeda139a5ac1a1d2d5d3d296641c.zip
Fix: Make repoman actually USE -m commit message again (and -M
commit message file). (branches/prefix r8280) svn path=/main/trunk/; revision=8295
Diffstat (limited to 'bin/repoman')
-rwxr-xr-xbin/repoman8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/repoman b/bin/repoman
index 82025f6f8..c9e9138a2 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -330,7 +330,6 @@ qawarnings=[
missingvars=["KEYWORDS","LICENSE","DESCRIPTION","HOMEPAGE","SLOT"]
allvars=portage.auxdbkeys
commitmessage=None
-commitmessagefile=None
for x in missingvars:
x += ".missing"
if x not in qacats:
@@ -1694,15 +1693,16 @@ else:
logging.info("myupdates:", str(myupdates))
logging.info("myheaders:", str(myheaders))
- if commitmessagefile:
+ commitmessage = options.commitmsg
+ if options.commitmsgfile:
try:
- f = open(commitmessagefile)
+ f = open(options.commitmsgfile)
commitmessage = f.read()
f.close()
del f
except (IOError, OSError), e:
if e.errno == errno.ENOENT:
- portage.writemsg("!!! File Not Found: --commitmsgfile='%s'\n" % commitmessagefile)
+ portage.writemsg("!!! File Not Found: --commitmsgfile='%s'\n" % options.commitmsgfile)
else:
raise
# We've read the content so the file is no longer needed.