Re: I made a script for auto. creating build-depends

2000-07-26 Thread Ben Collins
> I took your script and combined it with this wrapper. Unpack the tarball, > run "make" then "make install". This will give you a command called > `dpkg-genbuilddeps', which you call very similar to dpkg-buildpackage > (except that it always passes '-us -uc -nc -b'). So: Ok, here's a slightly bet

Re: gpg questions

2000-07-26 Thread Josip Rodin
On Wed, Jul 26, 2000 at 02:30:00PM -0800, Britton wrote: > I have generated my public/private key pair using > gpg --gen-key > and answered the questions with the defaults and with my name and what > will hopefully be my email at debian.org. I understand that my initial > message to new-maintai

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Ben Collins
On Thu, Jul 27, 2000 at 12:19:43AM +0200, Andreas Rottmann wrote: > Ben Collins <[EMAIL PROTECTED]> writes: > > > > Sorry to say but this script is fairly useless for most people. Strace > > > cannot follow vfork() (yes I know -F says it will, but according to the > > > maintainer, and my own test

gpg questions

2000-07-26 Thread Britton
I have generated my public/private key pair using gpg --gen-key and answered the questions with the defaults and with my name and what will hopefully be my email at debian.org. I understand that my initial message to new-maintainers needs to be signed with my chosen public key (as well as in

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Simon Richter
On 27 Jul 2000, Andreas Rottmann wrote: > > Would you like me to send you the source I have? > Yes, please. Is it as easy as > pid_t vfork() { return(fork()); } /* ;-) */ ...which would be the same as CFLAGS=-Dvfork=fork :-) Simon -- PGP public key available from http://phobos.fs.tum.de

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Andreas Rottmann
Ben Collins <[EMAIL PROTECTED]> writes: > > Sorry to say but this script is fairly useless for most people. Strace > > cannot follow vfork() (yes I know -F says it will, but according to the > > maintainer, and my own tests, it does not work at all). Once make -C > > executed, strace stopped showi

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Ben Collins
> I took your script and combined it with this wrapper. Unpack the tarball, > run "make" then "make install". This will give you a command called > `dpkg-genbuilddeps', which you call very similar to dpkg-buildpackage > (except that it always passes '-us -uc -nc -b'). So: Ok, here's a slightly be

Re: gpg questions

2000-07-26 Thread Josip Rodin
On Wed, Jul 26, 2000 at 02:30:00PM -0800, Britton wrote: > I have generated my public/private key pair using > gpg --gen-key > and answered the questions with the defaults and with my name and what > will hopefully be my email at debian.org. I understand that my initial > message to new-mainta

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Ben Collins
On Thu, Jul 27, 2000 at 12:19:43AM +0200, Andreas Rottmann wrote: > Ben Collins <[EMAIL PROTECTED]> writes: > > > > Sorry to say but this script is fairly useless for most people. Strace > > > cannot follow vfork() (yes I know -F says it will, but according to the > > > maintainer, and my own tes

gpg questions

2000-07-26 Thread Britton
I have generated my public/private key pair using gpg --gen-key and answered the questions with the defaults and with my name and what will hopefully be my email at debian.org. I understand that my initial message to new-maintainers needs to be signed with my chosen public key (as well as i

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Simon Richter
On 27 Jul 2000, Andreas Rottmann wrote: > > Would you like me to send you the source I have? > Yes, please. Is it as easy as > pid_t vfork() { return(fork()); } /* ;-) */ ...which would be the same as CFLAGS=-Dvfork=fork :-) Simon -- PGP public key available from http://phobos.fs.tum.d

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Andreas Rottmann
Ben Collins <[EMAIL PROTECTED]> writes: > > Sorry to say but this script is fairly useless for most people. Strace > > cannot follow vfork() (yes I know -F says it will, but according to the > > maintainer, and my own tests, it does not work at all). Once make -C > > executed, strace stopped show

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Ben Collins
> Sorry to say but this script is fairly useless for most people. Strace > cannot follow vfork() (yes I know -F says it will, but according to the > maintainer, and my own tests, it does not work at all). Once make -C > executed, strace stopped showing output. Ok, I wrote a really simple vfork() w

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Ben Collins
> Sorry to say but this script is fairly useless for most people. Strace > cannot follow vfork() (yes I know -F says it will, but according to the > maintainer, and my own tests, it does not work at all). Once make -C > executed, strace stopped showing output. Ok, I wrote a really simple vfork()

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Fumitoshi UKAI
Hi, At Wed, 26 Jul 2000 01:17:41 +0200, Christian Hammers <[EMAIL PROTECTED]> wrote: > After the recent questions how to automatically create a list > of packages that belong to the build dependencies line I've wrote > a perl script, that reads the file generated by > # strace -f -F -e tra

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Ben Collins
On Wed, Jul 26, 2000 at 01:58:47PM +0200, Adrian Bunk wrote: > On Wed, 26 Jul 2000, Christian Hammers wrote: > > > Hello > > Hi Christian, > > > After the recent questions how to automatically create a list > > of packages that belong to the build dependencies line I've wrote > > a perl script,

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Fumitoshi UKAI
Hi, At Wed, 26 Jul 2000 01:17:41 +0200, Christian Hammers <[EMAIL PROTECTED]> wrote: > After the recent questions how to automatically create a list > of packages that belong to the build dependencies line I've wrote > a perl script, that reads the file generated by > # strace -f -F -e tr

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Ben Collins
On Wed, Jul 26, 2000 at 01:58:47PM +0200, Adrian Bunk wrote: > On Wed, 26 Jul 2000, Christian Hammers wrote: > > > Hello > > Hi Christian, > > > After the recent questions how to automatically create a list > > of packages that belong to the build dependencies line I've wrote > > a perl script

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Adrian Bunk
On Wed, 26 Jul 2000, Christian Hammers wrote: > Hello Hi Christian, > After the recent questions how to automatically create a list > of packages that belong to the build dependencies line I've wrote > a perl script, that reads the file generated by > # strace -f -F -e trace=file -o /tmp/

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Adrian Bunk
On Wed, 26 Jul 2000, Christian Hammers wrote: > Hello Hi Christian, > After the recent questions how to automatically create a list > of packages that belong to the build dependencies line I've wrote > a perl script, that reads the file generated by > # strace -f -F -e trace=file -o /tmp

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Christian Hammers
> Sorry to say but this script is fairly useless for most people. Strace > cannot follow vfork() (yes I know -F says it will, but according to the > maintainer, and my own tests, it does not work at all). Once make -C > executed, strace stopped showing output. Thanks for pointing out but wouldn't a

Re: I made a script for auto. creating build-depends

2000-07-26 Thread Christian Hammers
> Sorry to say but this script is fairly useless for most people. Strace > cannot follow vfork() (yes I know -F says it will, but according to the > maintainer, and my own tests, it does not work at all). Once make -C > executed, strace stopped showing output. Thanks for pointing out but wouldn't