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

Collapse All | Expand All

(-)revdep-rebuild.old (-5 / +13 lines)
Lines 42-47 Link Here
42
	echo "      --library=NAME   NAME can be a full path to the library or a basic"
42
	echo "      --library=NAME   NAME can be a full path to the library or a basic"
43
	echo "                       regular expression (man grep)"
43
	echo "                       regular expression (man grep)"
44
	echo " -nc, --no-color       Turn off colored output"
44
	echo " -nc, --no-color       Turn off colored output"
45
	echo " -nw, --no-wait        Turn off safety delays"
45
	echo "  -i, --ignore         Ignore temporary files from previous runs"
46
	echo "  -i, --ignore         Ignore temporary files from previous runs"
46
	echo "  -q, --quiet          Be less verbose (also passed to emerge command)"
47
	echo "  -q, --quiet          Be less verbose (also passed to emerge command)"
47
	echo " -vv, --extra-verbose  Be extra verbose"
48
	echo " -vv, --extra-verbose  Be extra verbose"
Lines 137-142 Link Here
137
SEARCH_BROKEN=true
138
SEARCH_BROKEN=true
138
EXTRA_VERBOSE=false
139
EXTRA_VERBOSE=false
139
KEEP_TEMP=false
140
KEEP_TEMP=false
141
WAIT=true
140
142
141
EMERGE_OPTIONS=""
143
EMERGE_OPTIONS=""
142
PRELIMINARY_CALLED_OPTIONS=""
144
PRELIMINARY_CALLED_OPTIONS=""
Lines 168-173 Link Here
168
		NOCOLOR=true
170
		NOCOLOR=true
169
		shift
171
		shift
170
		;;
172
		;;
173
	-nw | --no-wait )
174
		WAIT=false
175
		shift
176
		;;
171
	-i | --ignore )
177
	-i | --ignore )
172
		rm -f ${LIST}*
178
		rm -f ${LIST}*
173
		shift
179
		shift
Lines 522-531 Link Here
522
			echo "- An ebuild is no longer in the portage tree."
528
			echo "- An ebuild is no longer in the portage tree."
523
			echo "- An ebuild is masked, use /etc/portage/packages.keyword"
529
			echo "- An ebuild is masked, use /etc/portage/packages.keyword"
524
			echo "  and/or /etc/portage/package.unmask to unmask it"
530
			echo "  and/or /etc/portage/package.unmask to unmask it"
525
			for i in . . . . . ; do
531
			if $WAIT ; then
526
				echo -n -e '\a.'
532
				for i in . . . . . ; do
527
				sleep 1
533
					echo -n -e '\a.'
528
			done
534
					sleep 1
535
				done
536
			fi
529
			ln -f $LLIST.4_ebuilds $LLIST.5_order
537
			ln -f $LLIST.4_ebuilds $LLIST.5_order
530
		else
538
		else
531
			emerge --nospinner --pretend --oneshot --emptytree $RAW_REBUILD_LIST | sed -n 's/ //g;s/^.*\]//p' | grep "$REBUILD_GREP" >$LLIST.5_order
539
			emerge --nospinner --pretend --oneshot --emptytree $RAW_REBUILD_LIST | sed -n 's/ //g;s/^.*\]//p' | grep "$REBUILD_GREP" >$LLIST.5_order
Lines 558-564 Link Here
558
566
559
echo "emerge --oneshot $EMERGE_OPTIONS $REBUILD_LIST"
567
echo "emerge --oneshot $EMERGE_OPTIONS $REBUILD_LIST"
560
568
561
if $IS_REAL_MERGE ; then
569
if $IS_REAL_MERGE && $WAIT ; then
562
	for i in . . . . . . . . . . ; do
570
	for i in . . . . . . . . . . ; do
563
		echo -n -e '\a.'
571
		echo -n -e '\a.'
564
		sleep 1
572
		sleep 1

Return to bug 97073