CVS update by stephent xemacs-builds/stephen ...
xemacs-cvs at xemacs.org
xemacs-cvs at xemacs.org
Mon May 21 11:36:27 EDT 2007
User: stephent
Date: 07/05/21 17:36:27
Modified: xemacs-builds/stephen xre.py
Log:
"cvs tag" does not take a module argument, and fails if one is given.
Revision Changes Path
1.11 +6 -3 XEmacs/xemacs-builds/stephen/xre.py
Index: xre.py
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs-builds/stephen/xre.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -p -r1.10 -r1.11
--- xre.py 2006/05/26 17:39:19 1.10
+++ xre.py 2007/05/21 15:36:26 1.11
@@ -129,8 +129,9 @@ in the source code."""
# 92. Do diffs and tarballs as early as possible to avoid creating garbage.
# 99. Should build directory be sibling instead of subdirectory?
# 103. Provide for comments in CHANGES-beta.
-# 105.
+# 106.
### DONE
+# 105. "cvs tag" does not take a module argument, and fails if one is given.
# 104. Provide trace output for locating news file. Ensure we look in the
# right directory. Add trace output for locating CHANGES file.
# 102. Fix bug in finalize, expect wrong value from validateVersionDictionary.
@@ -1511,6 +1512,8 @@ End:
rtag = copy(tag)
rtag.fragment = releaseTag
# cvs rtag is currently broken; doesn't chase symlinks to Root
+ # if/when this changes back to rtag, need to add module=p.cvsModule
+ # as an argument to the rtag.cvs() calls below
rtag.query = "tag -F"
movingTag = "r%d-%d-latest-beta" % self.version[:2]
@@ -1532,7 +1535,7 @@ Run the beta version of this function wi
""" \
% (commit.cvs(target="file"),
tag.cvs(target=releaseTag),
- rtag.cvs(target=movingTag,module=p.cvsModule)))
+ rtag.cvs(target=movingTag)))
os.chdir(e.stage + "/" + self.stem)
@@ -1545,7 +1548,7 @@ Run the beta version of this function wi
commitCarefully(commit.cvs(target=file), dryRun, verbose)
execAndTrace(tag.cvs(target=releaseTag), dryRun, verbose)
if self.isBeta:
- execAndTrace(rtag.cvs(target=movingTag,module=p.cvsModule),
+ execAndTrace(rtag.cvs(target=movingTag),
dryRun, verbose)
if dryRun and verbose:
print self.warnings[-1]
More information about the XEmacs-CVS
mailing list