Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Justin Pryzby
Thanks, I'm using a more up to date version right now. I seem to have averted the problem of varargs; there's only 1 instance thats not in tcl/. Now the next problem is that the window initialization doesn't called called, and so xres=yres=0, which is a floating point exception.. Thanks, -- Just

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Matt Zimmerman
On Sat, Jul 31, 2004 at 08:39:52PM -0400, Justin Pryzby wrote: > The code uses which gcc-3.3 doesn't support. is > the new standard. I've done my best to convert the code, but I can't > solve a crash in the of the functions I had to change. This is the right approach, and your efforts are bet

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Matt Zimmerman
On Sat, Jul 31, 2004 at 06:02:56PM -0700, Steve Langasek wrote: > On Sat, Jul 31, 2004 at 05:58:53PM -0700, Steve Langasek wrote: > > On Sat, Jul 31, 2004 at 08:39:52PM -0400, Justin Pryzby wrote: > > > I have a package (x11iraf) which conflicts with gcc-3.3. For the whole > > > story see below..

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Justin Pryzby
Thanks, I'm using a more up to date version right now. I seem to have averted the problem of varargs; there's only 1 instance thats not in tcl/. Now the next problem is that the window initialization doesn't called called, and so xres=yres=0, which is a floating point exception.. Thanks, -- Just

Re: for a Perl script to find a module

2004-07-31 Thread Jepri
Nick Lewycky wrote: use Cwd qw/cwd chdir abs_path/; use File::Basename qw/dirname/; use lib abs_path(dirname($0)); use MyModule; Adapted from http://www.wetware.com/drieux/CS/lang/Perl/PM/useLibHack.html Nick Lewycky That's cool, I hadn't seen that before. But this might be easier: cat

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Matt Zimmerman
On Sat, Jul 31, 2004 at 08:39:52PM -0400, Justin Pryzby wrote: > The code uses which gcc-3.3 doesn't support. is > the new standard. I've done my best to convert the code, but I can't > solve a crash in the of the functions I had to change. This is the right approach, and your efforts are bet

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Matt Zimmerman
On Sat, Jul 31, 2004 at 06:02:56PM -0700, Steve Langasek wrote: > On Sat, Jul 31, 2004 at 05:58:53PM -0700, Steve Langasek wrote: > > On Sat, Jul 31, 2004 at 08:39:52PM -0400, Justin Pryzby wrote: > > > I have a package (x11iraf) which conflicts with gcc-3.3. For the whole > > > story see below..

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Russ Allbery
Justin Pryzby <[EMAIL PROTECTED]> writes: > The code uses which gcc-3.3 doesn't support. is > the new standard. I've done my best to convert the code, but I can't > solve a crash in the of the functions I had to change. > See va_arg(3) for a reference. Here's what I did: > - C

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Justin Pryzby
On Sun, Aug 01, 2004 at 03:10:52AM +0200, Frank Lichtenheld wrote: > On Sat, Jul 31, 2004 at 08:39:52PM -0400, Justin Pryzby wrote: > > Hi all, > > > > I have a package (x11iraf) which conflicts with gcc-3.3. For the whole > > story see below.. > > Hmm, what is upstream saying about the mess? Th

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Frank Lichtenheld
On Sat, Jul 31, 2004 at 08:39:52PM -0400, Justin Pryzby wrote: > Hi all, > > I have a package (x11iraf) which conflicts with gcc-3.3. For the whole > story see below.. Hmm, what is upstream saying about the mess? That's the point I missed in the story. Gruesse, -- Frank Lichtenheld <[EMAIL PRO

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Justin Pryzby
On Sat, Jul 31, 2004 at 05:58:53PM -0700, Steve Langasek wrote: > On Sat, Jul 31, 2004 at 08:39:52PM -0400, Justin Pryzby wrote: > > I have a package (x11iraf) which conflicts with gcc-3.3. For the whole > > story see below.. > > > gcc includes /usr/bin/gcc which is pretty much a necessity, I thi

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Steve Langasek
On Sat, Jul 31, 2004 at 05:58:53PM -0700, Steve Langasek wrote: > On Sat, Jul 31, 2004 at 08:39:52PM -0400, Justin Pryzby wrote: > > I have a package (x11iraf) which conflicts with gcc-3.3. For the whole > > story see below.. > > gcc includes /usr/bin/gcc which is pretty much a necessity, I thin

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Matt Brubeck
Justin Pryzby wrote: > I have a package (x11iraf) which conflicts with gcc-3.3. For the whole > story see below.. > > gcc includes /usr/bin/gcc which is pretty much a necessity, I think. > I need xmkmf to work too. For now I have Build-Depends: gcc-3.2, but > what can I do to force it to actuall

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Steve Langasek
On Sat, Jul 31, 2004 at 08:39:52PM -0400, Justin Pryzby wrote: > I have a package (x11iraf) which conflicts with gcc-3.3. For the whole > story see below.. > gcc includes /usr/bin/gcc which is pretty much a necessity, I think. I > need xmkmf to work too. For now I have Build-Depends: gcc-3.2, b

Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Justin Pryzby
Hi all, I have a package (x11iraf) which conflicts with gcc-3.3. For the whole story see below.. gcc includes /usr/bin/gcc which is pretty much a necessity, I think. I need xmkmf to work too. For now I have Build-Depends: gcc-3.2, but what can I do to force it to actually compile with that, in

Re: for a Perl script to find a module

2004-07-31 Thread Nick Lewycky
use Cwd qw/cwd chdir abs_path/; use File::Basename qw/dirname/; use lib abs_path(dirname($0)); use MyModule; Adapted from http://www.wetware.com/drieux/CS/lang/Perl/PM/useLibHack.html Nick Lewycky

Re: for a Perl script to find a module

2004-07-31 Thread Jepri
Nick Lewycky wrote: use Cwd qw/cwd chdir abs_path/; use File::Basename qw/dirname/; use lib abs_path(dirname($0)); use MyModule; Adapted from http://www.wetware.com/drieux/CS/lang/Perl/PM/useLibHack.html Nick Lewycky That's cool, I hadn't seen that before. But this might be easier: cat Module.pm

for a Perl script to find a module

2004-07-31 Thread Thaddeus H. Black
This is an OO Perl question. If you know more about Perl's [EMAIL PROTECTED]' than I do, please reply. Problem: in the `debram' source, I have a perl helper script which I can only successfully run if my $PWD happens to be the same directory the script resides in. In other words, I cannot $ h

feel great

2004-07-31 Thread errol heard
detrimen-cudeppolypencosserppo'

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Russ Allbery
Justin Pryzby <[EMAIL PROTECTED]> writes: > The code uses which gcc-3.3 doesn't support. is > the new standard. I've done my best to convert the code, but I can't > solve a crash in the of the functions I had to change. > See va_arg(3) for a reference. Here's what I did: > - C

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Justin Pryzby
On Sun, Aug 01, 2004 at 03:10:52AM +0200, Frank Lichtenheld wrote: > On Sat, Jul 31, 2004 at 08:39:52PM -0400, Justin Pryzby wrote: > > Hi all, > > > > I have a package (x11iraf) which conflicts with gcc-3.3. For the whole > > story see below.. > > Hmm, what is upstream saying about the mess? Th

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Justin Pryzby
On Sat, Jul 31, 2004 at 05:58:53PM -0700, Steve Langasek wrote: > On Sat, Jul 31, 2004 at 08:39:52PM -0400, Justin Pryzby wrote: > > I have a package (x11iraf) which conflicts with gcc-3.3. For the whole > > story see below.. > > > gcc includes /usr/bin/gcc which is pretty much a necessity, I thi

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Frank Lichtenheld
On Sat, Jul 31, 2004 at 08:39:52PM -0400, Justin Pryzby wrote: > Hi all, > > I have a package (x11iraf) which conflicts with gcc-3.3. For the whole > story see below.. Hmm, what is upstream saying about the mess? That's the point I missed in the story. Gruesse, -- Frank Lichtenheld <[EMAIL PRO

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Steve Langasek
On Sat, Jul 31, 2004 at 05:58:53PM -0700, Steve Langasek wrote: > On Sat, Jul 31, 2004 at 08:39:52PM -0400, Justin Pryzby wrote: > > I have a package (x11iraf) which conflicts with gcc-3.3. For the whole > > story see below.. > > gcc includes /usr/bin/gcc which is pretty much a necessity, I thin

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Steve Langasek
On Sat, Jul 31, 2004 at 08:39:52PM -0400, Justin Pryzby wrote: > I have a package (x11iraf) which conflicts with gcc-3.3. For the whole > story see below.. > gcc includes /usr/bin/gcc which is pretty much a necessity, I think. I > need xmkmf to work too. For now I have Build-Depends: gcc-3.2, b

Re: Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Matt Brubeck
Justin Pryzby wrote: > I have a package (x11iraf) which conflicts with gcc-3.3. For the whole > story see below.. > > gcc includes /usr/bin/gcc which is pretty much a necessity, I think. > I need xmkmf to work too. For now I have Build-Depends: gcc-3.2, but > what can I do to force it to actuall

Build-Conficts: gcc-3.3, and varargs

2004-07-31 Thread Justin Pryzby
Hi all, I have a package (x11iraf) which conflicts with gcc-3.3. For the whole story see below.. gcc includes /usr/bin/gcc which is pretty much a necessity, I think. I need xmkmf to work too. For now I have Build-Depends: gcc-3.2, but what can I do to force it to actually compile with that, in

Re: for a Perl script to find a module

2004-07-31 Thread Nick Lewycky
use Cwd qw/cwd chdir abs_path/; use File::Basename qw/dirname/; use lib abs_path(dirname($0)); use MyModule; Adapted from http://www.wetware.com/drieux/CS/lang/Perl/PM/useLibHack.html Nick Lewycky -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL

for a Perl script to find a module

2004-07-31 Thread Thaddeus H. Black
This is an OO Perl question. If you know more about Perl's [EMAIL PROTECTED]' than I do, please reply. Problem: in the `debram' source, I have a perl helper script which I can only successfully run if my $PWD happens to be the same directory the script resides in. In other words, I cannot $ h

feel great

2004-07-31 Thread errol heard
detrimen-cudeppolypencosserppo' -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: RFS: imgvtopgm (was orphaned, now updated, man pages translated)

2004-07-31 Thread David Moreno Garza
On Sat, 2004-07-31 at 08:23, Nico Golde wrote: > you have to edit the copyright file: > "his package was debianized by John Goerzen [EMAIL PROTECTED] on" > i think this is the old maintainer. Huh? Quote from Debian Policy: In addition, the copyright file must say where the upstream sources (if an

Re: RFS: imgvtopgm (was orphaned, now updated, man pages translated)

2004-07-31 Thread Erik Schanze
Hi Nico! Thank you for your quick reply. Nico Golde <[EMAIL PROTECTED]>: > * Erik Schanze <[EMAIL PROTECTED]> [2004-07-31 15:13]: > > I have updated packaging stuff and translated all man pages into German. > > It is lintian clean and builds fine with pbuilder. > > > > The package imgvtopgm_2.0

RFS: tpp - text presentation program

2004-07-31 Thread Nico Golde
Hi is search a sponsor for my tpp package. Tpp is like magic point for text terminals. Source: tpp Section: graphics Priority: optional Maintainer: Nico Golde <[EMAIL PROTECTED]> Uploaders: Robert Lemmen <[EMAIL PROTECTED]> Build-Depends: debhelper (>> 4.1.0) Standards-Version: 3.6.1 Package: tpp

Re: RFS: imgvtopgm (was orphaned, now updated, man pages translated)

2004-07-31 Thread David Moreno Garza
On Sat, 2004-07-31 at 08:23, Nico Golde wrote: > you have to edit the copyright file: > "his package was debianized by John Goerzen [EMAIL PROTECTED] on" > i think this is the old maintainer. Huh? Quote from Debian Policy: In addition, the copyright file must say where the upstream sources (if an

Re: RFS: imgvtopgm (was orphaned, now updated, man pages translated)

2004-07-31 Thread Erik Schanze
Hi Nico! Thank you for your quick reply. Nico Golde <[EMAIL PROTECTED]>: > * Erik Schanze <[EMAIL PROTECTED]> [2004-07-31 15:13]: > > I have updated packaging stuff and translated all man pages into German. > > It is lintian clean and builds fine with pbuilder. > > > > The package imgvtopgm_2.0

RFS: tpp - text presentation program

2004-07-31 Thread Nico Golde
Hi is search a sponsor for my tpp package. Tpp is like magic point for text terminals. Source: tpp Section: graphics Priority: optional Maintainer: Nico Golde <[EMAIL PROTECTED]> Uploaders: Robert Lemmen <[EMAIL PROTECTED]> Build-Depends: debhelper (>> 4.1.0) Standards-Version: 3.6.1 Package: tpp

Re: RFS: imgvtopgm (was orphaned, now updated, man pages translated)

2004-07-31 Thread Nico Golde
Hallo Erik, * Erik Schanze <[EMAIL PROTECTED]> [2004-07-31 15:13]: > I have updated packaging stuff and translated all man pages into German. > It is lintian clean and builds fine with pbuilder. > > The package imgvtopgm_2.0-5 is located on: > http://www.erikschanze.de/debian/ > or via APT: > de

RFS: imgvtopgm (was orphaned, now updated, man pages translated)

2004-07-31 Thread Erik Schanze
Hi! I have adopted imgvtopgm (Bug #261584). Since previous maintainer isn't able to do an upload for me, so I'd like to ask here for a sponsor, because I'm not a DD yet. Perhaps it could also be an one-time-sponsorship, because I still have a sponsor for my another Palm related package, but he i

Re: RFS: imgvtopgm (was orphaned, now updated, man pages translated)

2004-07-31 Thread Nico Golde
Hallo Erik, * Erik Schanze <[EMAIL PROTECTED]> [2004-07-31 15:13]: > I have updated packaging stuff and translated all man pages into German. > It is lintian clean and builds fine with pbuilder. > > The package imgvtopgm_2.0-5 is located on: > http://www.erikschanze.de/debian/ > or via APT: > de

RFS: imgvtopgm (was orphaned, now updated, man pages translated)

2004-07-31 Thread Erik Schanze
Hi! I have adopted imgvtopgm (Bug #261584). Since previous maintainer isn't able to do an upload for me, so I'd like to ask here for a sponsor, because I'm not a DD yet. Perhaps it could also be an one-time-sponsorship, because I still have a sponsor for my another Palm related package, but he is