From e7bb642fdbcfa9bb1d7265781f56d89e398f90b9 Mon Sep 17 00:00:00 2001 From: Andreas Gruenbacher Date: Fri, 9 Jul 2004 07:26:21 +0000 Subject: - Switch from echo to printf for all translations: This is more stable than having expansions in messages that might change independent of the message. - Add print_patch function and always use it when printing patch names. Remove -n options from various scripts and use a global switch QUILT_PATCHES_PREFIX in .quiltrc to decide between patch names with and without directory prefix. Depending on user experience this switch may eventually go away. - Add --diffstat option to refresh command: If given, this option inserts diffstat statistics at the end of the patch header, or refreshes the existing diffstat output. No special tags in the path file (%diffstat or the like) are needed. - Minor fix inserting changelog into RPM specfile. --- test/new.test | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test/new.test') diff --git a/test/new.test b/test/new.test index e46bba1..1ca7cad 100644 --- a/test/new.test +++ b/test/new.test @@ -16,24 +16,24 @@ $ quilt push - > Applying p.diff + > Applying patch %{P}p.diff > patching file f > Hunk #1 FAILED at 1. > 1 out of 1 hunk FAILED -- rejects in file f > patching file g - > Patch p.diff does not apply (enforce with -f) + > Patch %{P}p.diff does not apply (enforce with -f) $ quilt push -f - > Applying p.diff + > Applying patch %{P}p.diff > patching file f > Hunk #1 FAILED at 1. > 1 out of 1 hunk FAILED -- saving rejects to file f.rej > patching file g - > Applied p.diff (forced; needs refresh) + > Applied patch %{P}p.diff (forced; needs refresh) $ echo new > f $ quilt refresh - > Refreshed patch p.diff + > Refreshed patch %{P}p.diff $ cat patches/p.diff | sed -e "s/\\t.*//" > Index: d/f > =================================================================== -- cgit