Re: [Patch] for new Package format

2000-09-06 Thread Steve McIntyre
On Wed, Sep 06, 2000 at 12:05:14AM +, Philip Charles wrote: Are all the patches to be found in cvs? That's the plan, I guess. We're probably due another release sometime soon too, and Raphael still appears to be busy. -- Steve McIntyre, Cambridge, UK. [EMAIL PROTECTED]

Re: 2 odd things, a fix for one

2000-09-06 Thread Steve McIntyre
On Tue, Sep 05, 2000 at 09:03:31PM -0700, Joey Hess wrote: Anyone triyng to build a cd off the current debian archive will see add_packages going insane. This is because what used to be Filename: in all Packages files is now FileName. No, I don't know why. To fix, add a 'i' flag to each of the 4

Re: [Patch] for new Package format

2000-09-06 Thread Wichert Akkerman
Previously Steve McIntyre wrote: On Tue, Sep 05, 2000 at 01:05:17PM -0400, Ben Collins wrote: On Tue, Sep 05, 2000 at 07:05:18PM +0200, Michael Schlueter wrote: Hi, as discribed in the BTS the Package format has changes a bit (Filename is now FileName). Here is the Patch to make

Re: [Patch] for new Package format

2000-09-06 Thread Steve McIntyre
On Wed, Sep 06, 2000 at 02:54:33PM +0200, Wichert Akkerman wrote: m/^Filename: (\S+)/m and $file = $1; + m/^FileName: (\S+)/m and $file = $1; Where did this change come from, and what Package file exactly are we talking about? Check with Jason - he's already said it was a mistake that

Re: 2 odd things, a fix for one

2000-09-06 Thread Joey Hess
Steve McIntyre wrote: Done in CVS. I haven't done all 4 of the m// statements in each place, just the Filename: one for now... Note that the packaging manual says all control file fields are case-insensative.. Hmmm. I'll investigate. Were you using build.sh or build_all.sh or similar? No,

Re: 2 odd things, a fix for one

2000-09-06 Thread Joey Hess
Oh yeah, tools/list2cds and tools/cds2src have related breakage. Complain about missing header fields, etc. I might send in a patch for all this if I can find the time. -- see shy jo -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL

Re: another way debian-cd is broken now

2000-09-06 Thread Joey Hess
Joey Hess wrote: I attach an add_packages file that seems to fix this. Here's a slightly better version. -- see shy jo #!/usr/bin/perl -w use strict; my $dir = shift; if (! -d $dir) { die "$dir is not a directory ..."; } my $mirror = $ENV{'MIRROR'} || die "Set the MIRROR var

Re: another way debian-cd is broken now

2000-09-06 Thread Jason Gunthorpe
On Wed, 6 Sep 2000, Joey Hess wrote: This has changed. The Filename field now dereferences the symlink, so it points to the actual file in binary-all. This change was primarily intended to help users understand cryptic download failure messages due to dangling links and in-progress mirrors.