Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 128451 | Differences between
and this patch

Collapse All | Expand All

(-)bin/repoman (-2 / +4 lines)
Lines 1507-1512 Link Here
1507
	if isCvs:
1507
	if isCvs:
1508
		mycvstree=cvstree.getentries("./",recursive=1)
1508
		mycvstree=cvstree.getentries("./",recursive=1)
1509
		mychanged=cvstree.findchanged(mycvstree,recursive=1,basedir="./")
1509
		mychanged=cvstree.findchanged(mycvstree,recursive=1,basedir="./")
1510
		for x in [file for file in mychanged if 'Manifest' in file]:
1511
			mychanged.remove(x)
1510
		mynew=cvstree.findnew(mycvstree,recursive=1,basedir="./")
1512
		mynew=cvstree.findnew(mycvstree,recursive=1,basedir="./")
1511
		myremoved=cvstree.findremoved(mycvstree,recursive=1,basedir="./")
1513
		myremoved=cvstree.findremoved(mycvstree,recursive=1,basedir="./")
1512
		if not (mychanged or mynew or myremoved):
1514
		if not (mychanged or mynew or myremoved):
Lines 1562-1571 Link Here
1562
		print
1564
		print
1563
1565
1564
		if "--pretend" in myoptions:
1566
		if "--pretend" in myoptions:
1565
			print "(/usr/bin/cvs -q commit -F "+commitmessagefile+")"
1567
			print "(/usr/bin/cvs -q commit "+string.join(myupdates," ")+" -F "+commitmessagefile+")"
1566
			retval=0
1568
			retval=0
1567
		else:
1569
		else:
1568
			retval=os.system("/usr/bin/cvs -q commit -F "+commitmessagefile)
1570
			retval=os.system("/usr/bin/cvs -q commit "+string.join(myupdates, " ")+" -F "+commitmessagefile)
1569
		if retval:
1571
		if retval:
1570
			print "!!! Exiting on cvs (shell) error code:",retval
1572
			print "!!! Exiting on cvs (shell) error code:",retval
1571
			sys.exit(retval)
1573
			sys.exit(retval)

Return to bug 128451