[Quilt-dev] expanded $EDITOR in quilt.1

2005-09-05 Thread Jean Delvare
Hi all, Today I noticed that the quilt manual page includes expanded $EDITOR values in the edit and header subsections. The value is the value of $EDITOR when the manual page was generated as part of the quilt build process. It seems to be totally irrelevant here as each user may customize

[Quilt-dev] gawk 3.0.6 doesn't support asort

2005-09-05 Thread Jean Delvare
Hi John, I have been taking a look at your compat-gawk-3.0.6 patch today, after I hit the problem of asort not being supported on an old Linux system (Red Hat 8.) http://zeroj.hda0.net/quilt-patches/compat-gawk-3.0.6.diff I do not like the replacement code you proposed. Not only do I think that

[Quilt-dev] quilt edit is a bit noisy

2005-09-05 Thread Jean Delvare
Hi all, I find that quilt edit is a bit noisy. The fact that it complains each time you edit a file that was already added certainly doesn't encourage people to use it, while I believe that we need to encourage people to use it, and possibly add more safety checks to it. So I would propose that

Re: [Quilt-dev] gawk 3.0.6 doesn't support asort

2005-09-05 Thread Andreas Gruenbacher
On Monday 05 September 2005 23:00, Jean Delvare wrote: I have written a different replacement which continues to use awk instead. I plan to commit it if nobody objects. It is appended to this post, comments and testers welcome. Basically the idea is to sort the list beforehand (using the sort

[Quilt-dev] Re: gawk 3.0.6 doesn't support asort

2005-09-05 Thread John Vandenberg
On 9/6/05, Jean Delvare [EMAIL PROTECTED] wrote: Hi John, I have been taking a look at your compat-gawk-3.0.6 patch today, after I hit the problem of asort not being supported on an old Linux system (Red Hat 8.) http://zeroj.hda0.net/quilt-patches/compat-gawk-3.0.6.diff I do not like

Re: [Quilt-dev] quilt edit is a bit noisy

2005-09-05 Thread Andreas Gruenbacher
On Monday 05 September 2005 23:28, Jean Delvare wrote: Hi all, [...] I would like to add a -q flag to quilt add, which would do exactly that, and then change edit to use that flag when calling quilt add. Why not add a flag for fine if a file is already in the patch? 2* We could change

Re: [Quilt-dev] quilt edit is a bit noisy

2005-09-05 Thread John Vandenberg
On 9/6/05, Jean Delvare [EMAIL PROTECTED] wrote: Hi all, I find that quilt edit is a bit noisy. The fact that it complains each time you edit a file that was already added certainly doesn't encourage people to use it, while I believe that we need to encourage people to use it, and possibly

Re: [Quilt-dev] how to merge patches?

2005-09-05 Thread Yasushi SHOJI
At Sat, 3 Sep 2005 11:30:00 +0200, jerome lacoste wrote: On 9/3/05, Jean Delvare [EMAIL PROTECTED] wrote: Hi Ashok, [Ashok Raj] Seems like quilt fold will work, just I need to remove the entry from series file? Yup, quilt fold is what you need if you want to merge several

Re: [Quilt-dev] gawk 3.0.6 doesn't support asort

2005-09-05 Thread Jean Delvare
Hi Andreas, [Jean Delvare] END { - i = 1 - for (file in files) { - if (!(file in printed)) { - new_files[i]=file - i++ - } - } - n = asort(new_files)