Re: FTBFS if built twice in a row

2007-07-19 Thread Goswin von Brederlow
Russ Allbery [EMAIL PROTECTED] writes: Goswin von Brederlow [EMAIL PROTECTED] writes: Russ Allbery [EMAIL PROTECTED] writes: Not if you use pdebuild or similarly build in a chroot, which IMO everyone should be doing. I use xen instances and that changes nothing at all. 1. My ~/src is

Re: FTBFS if built twice in a row

2007-07-18 Thread Lucas Nussbaum
| http://p12n.org/ debuild; debuild -S; debdiff should give zero changes. Often enough that isn't true though. Being pedantic doesn't help if nobody fixes the bugs. Only about half of the ~400 FTBFS if built twice in a row bugs have been fixed so far[0]. So if you want to move forward

Re: FTBFS if built twice in a row

2007-07-17 Thread Goswin von Brederlow
Russ Allbery [EMAIL PROTECTED] writes: Goswin von Brederlow [EMAIL PROTECTED] writes: Russ Allbery [EMAIL PROTECTED] writes: This check would fail many packages that can still be built twice in a row (any package that runs autotools during the build process without doing a complicated dance

Re: FTBFS if built twice in a row

2007-07-17 Thread Goswin von Brederlow
Peter Samuelson [EMAIL PROTECTED] writes: [Lucas Nussbaum] The problem is that it isn't required to have exactly the same source tree after ./configure ; make ; make clean. It's just required that ./configure ; make ; make clean ; ./configure ; make works. It is possible that the first build

Re: FTBFS if built twice in a row

2007-07-17 Thread Russ Allbery
Goswin von Brederlow [EMAIL PROTECTED] writes: Russ Allbery [EMAIL PROTECTED] writes: Not if you use pdebuild or similarly build in a chroot, which IMO everyone should be doing. I use xen instances and that changes nothing at all. 1. My ~/src is mounted inside the build environment so I

Re: FTBFS if built twice in a row

2007-07-07 Thread Peter Samuelson
[Lucas Nussbaum] The problem is that it isn't required to have exactly the same source tree after ./configure ; make ; make clean. It's just required that ./configure ; make ; make clean ; ./configure ; make works. It is possible that the first build modifies some files, but that the package

Re: FTBFS if built twice in a row

2007-07-03 Thread Mark Brown
On Mon, Jul 02, 2007 at 09:50:52AM -0700, Russ Allbery wrote: Goswin von Brederlow [EMAIL PROTECTED] writes: This check would fail many packages that can still be built twice in a row (any package that runs autotools during the build process without doing a complicated dance to preserve

Re: FTBFS if built twice in a row

2007-07-02 Thread Goswin von Brederlow
Russ Allbery [EMAIL PROTECTED] writes: Gerard Lledó [EMAIL PROTECTED] writes: My understanding of debian is far from being complete, but in order to be built for a second time a clean is performed before (at least, using debuild). So directory should look like a fresh $ apt-get source

Re: FTBFS if built twice in a row

2007-07-02 Thread Russ Allbery
Goswin von Brederlow [EMAIL PROTECTED] writes: Russ Allbery [EMAIL PROTECTED] writes: This check would fail many packages that can still be built twice in a row (any package that runs autotools during the build process without doing a complicated dance to preserve the upstream-shipped files,

FTBFS if built twice in a row

2007-06-29 Thread Gerard Lledó
Hi, I've been looking for FTBFS bugs in the BTS and I've noticed that there are lots of FTBFS if built twice. My understanding of debian is far from being complete, but in order to be built for a second time a clean is performed before (at least, using debuild). So directory should look like a

Re: FTBFS if built twice in a row

2007-06-29 Thread Santiago Vila
On Fri, 29 Jun 2007, Gerard Lledó wrote: Hi, I've been looking for FTBFS bugs in the BTS and I've noticed that there are lots of FTBFS if built twice. My understanding of debian is far from being complete, but in order to be built for a second time a clean is performed before (at least,

Re: FTBFS if built twice in a row

2007-06-29 Thread Junichi Uekawa
Hi, I've been looking for FTBFS bugs in the BTS and I've noticed that there are lots of FTBFS if built twice. My understanding of debian is far from being complete, but in order to be built for a second time a clean is performed before (at least, using debuild). So directory should look

Re: FTBFS if built twice in a row

2007-06-29 Thread Russ Allbery
Gerard Lledó [EMAIL PROTECTED] writes: My understanding of debian is far from being complete, but in order to be built for a second time a clean is performed before (at least, using debuild). So directory should look like a fresh $ apt-get source packagename. And the contents of the files

Re: FTBFS if built twice in a row

2007-06-29 Thread Adeodato Simó
* Santiago Vila [Fri, 29 Jun 2007 16:58:13 +0200]: Consider the case where the .diff.gz for a package updates a .po file but not the corresponding .mo file (which are usually included in the original tarball as well). You need to run ./configure at least to be able to run the clean target,

Re: FTBFS if built twice in a row

2007-06-29 Thread Santiago Vila
On Fri, 29 Jun 2007, Adeodato Simó wrote: * Santiago Vila [Fri, 29 Jun 2007 16:58:13 +0200]: I don't know how much typical this example is, but the two can't build twice in a row bugs I got were like that. The you should/could remove the .mo files in your debian/rules clean target.

Re: FTBFS if built twice in a row

2007-06-29 Thread Gerard Lledó
On 6/29/07, Santiago Vila [EMAIL PROTECTED] wrote: On Fri, 29 Jun 2007, Adeodato Simó wrote: * Santiago Vila [Fri, 29 Jun 2007 16:58:13 +0200]: I don't know how much typical this example is, but the two can't build twice in a row bugs I got were like that. The you should/could remove the