Report forwarded to debian-bugs-dist@lists.debian.org, Samuel Tardieu <sam@debian.org>:
Bug#58329; Package gnat.
debian-bugs-dist@lists.debian.orgSamuel Tardieu
Subject: Bug#58329: gnat library compiled with bad path to sources
Reply-To: Jake Hamby , 58329@bugs.debian.org
Resent-From: Jake Hamby
Orignal-Sender: Jake Hamby
Resent-To: debian-bugs-dist@lists.debian.org
Resent-CC: Samuel Tardieu
Resent-Date: Thu, 17 Feb 2000 19:03:07 GMT
Resent-Message-ID:
Resent-Sender: owner@bugs.debian.org
X-Debian-PR-Message: report 58329
X-Debian-PR-Package: gnat
X-Debian-PR-Keywords:
X-Loop: owner@bugs.debian.org
Received: via spool by bugs@bugs.debian.org id=B.95081183521512
(code B ref -1); Thu, 17 Feb 2000 19:03:07 GMT
Date: Thu, 17 Feb 2000 10:23:47 -0800 (PST)
From: Jake Hamby
X-Sender: jehamby@buk.buk.org
To: submit@bugs.debian.org
Message-ID:
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Sender: Jake Hamby
Package: gnat
Version: 3.12p-4
When I try to debug a program compiled with gnat, either by calling gdb
directly, or with the gnatmem leak checker, I get errors that the debugger
can't find the location of any Ada library source files. For example, for
this simple "hello, world" program:
with Text_IO;
use Text_IO;
procedure Hello is
begin
Put_Line("Hello, world!");
end Hello;
$ gnatmake -g hello
.. compiling ..
$ gdb hello
GNU gdb 19990928
Copyright 1998 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "i686-pc-linux-gnu"...
(gdb) break hello.adb:6
Breakpoint 1 at 0x8048f93: file hello.adb, line 6.
(gdb) run
Starting program: /home/jehamby/Code/hello
Breakpoint 1, _ada_hello () at hello.adb:6
6 Put_Line("Hello, world!");
(gdb) step
ada__text_io__put_line__2 (item={P_ARRAY = 0x8049eac, P_BOUNDS = 0x8049ebc})
at a-textio.adb:1089
1089 a-textio.adb: No such file or directory.
(gdb)
A similar error occurs with gnatmem, but that appears to be a different
problem which I'll file in a separate bug report:
$ gnatmem hello
443 a-except.adb: No such file or directory.
### incorrect user program termination detected.
following data may not be meaningful
Global information
------------------
Total number of allocations : 0
Total number of deallocations : 0
Final Water Mark (non freed mem) : 0 Bytes
High Water Mark : 0 Bytes
By running strace, I was able to determine that GDB is looking for the
files in /home/sam/Debian/gnat/gnat-3.12p/ada/rts/ instead of
/usr/lib/gcc-lib/i486-linux/2.8.1/adainclude/
As an ugly workaround, I can create a symlink from
/usr/lib/gcc-lib/i486-linux/2.8.1/adainclude/ into
/home/sam/Debian/gnat/gnat-3.12p/ada/rts/ so GDB can find the files, but
clearly, the correct solution is to build GNAT in such a way that
libgnat.so contains the correct locations for its source files.
I'm using Debian 2.3 (woody), kernel version 2.2.14, libc6 version
2.1.3-2, and gdb version 4.18.19990928-1.
-Jake
Acknowledgement sent to Jake Hamby <jehamby@anobject.com>:
New Bug report received and forwarded. Copy sent to Samuel Tardieu <sam@debian.org>.
-t
From: owner@bugs.debian.org (Debian Bug Tracking System)
To: Jake Hamby
Subject: Bug#58329: Acknowledgement (gnat library compiled with bad path to sources)
Message-ID:
In-Reply-To:
References:
X-Debian-PR-Message: ack 58329
Thank you for the problem report you have sent regarding Debian.
This is an automatically generated reply, to let you know your message has
been received. It is being forwarded to the developers mailing list for
their attention; they will reply in due course.
Your message has been sent to the package maintainer(s):
Samuel Tardieu
If you wish to submit further information on your problem, please send
it to 58329@bugs.debian.org (and *not* to
bugs@bugs.debian.org).
Please do not reply to the address at the top of this message,
unless you wish to report a problem with the Bug-tracking system.
Darren Benham
(administrator, Debian Bugs database)
Received: (at submit) by bugs.debian.org; 17 Feb 2000 18:23:55 +0000
Received: (qmail 21509 invoked from network); 17 Feb 2000 18:23:54 -0000
Received: from cbl-jehamby.hs.earthlink.net (HELO buk.buk.org) (mail@207.217.174.211)
by master.debian.org with SMTP; 17 Feb 2000 18:23:54 -0000
Received: from jehamby (helo=localhost)
by buk.buk.org with local-smtp (Exim 3.12 #1 (Debian))
id 12LVad-0005hL-00
for ; Thu, 17 Feb 2000 10:23:47 -0800
Date: Thu, 17 Feb 2000 10:23:47 -0800 (PST)
From: Jake Hamby
X-Sender: jehamby@buk.buk.org
To: submit@bugs.debian.org
Subject: gnat library compiled with bad path to sources
Message-ID:
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Sender: Jake Hamby
Package: gnat
Version: 3.12p-4
When I try to debug a program compiled with gnat, either by calling gdb
directly, or with the gnatmem leak checker, I get errors that the debugger
can't find the location of any Ada library source files. For example, for
this simple "hello, world" program:
with Text_IO;
use Text_IO;
procedure Hello is
begin
Put_Line("Hello, world!");
end Hello;
$ gnatmake -g hello
.. compiling ..
$ gdb hello
GNU gdb 19990928
Copyright 1998 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "i686-pc-linux-gnu"...
(gdb) break hello.adb:6
Breakpoint 1 at 0x8048f93: file hello.adb, line 6.
(gdb) run
Starting program: /home/jehamby/Code/hello
Breakpoint 1, _ada_hello () at hello.adb:6
6 Put_Line("Hello, world!");
(gdb) step
ada__text_io__put_line__2 (item={P_ARRAY = 0x8049eac, P_BOUNDS = 0x8049ebc})
at a-textio.adb:1089
1089 a-textio.adb: No such file or directory.
(gdb)
A similar error occurs with gnatmem, but that appears to be a different
problem which I'll file in a separate bug report:
$ gnatmem hello
443 a-except.adb: No such file or directory.
### incorrect user program termination detected.
following data may not be meaningful
Global information
------------------
Total number of allocations : 0
Total number of deallocations : 0
Final Water Mark (non freed mem) : 0 Bytes
High Water Mark : 0 Bytes
By running strace, I was able to determine that GDB is looking for the
files in /home/sam/Debian/gnat/gnat-3.12p/ada/rts/ instead of
/usr/lib/gcc-lib/i486-linux/2.8.1/adainclude/
As an ugly workaround, I can create a symlink from
/usr/lib/gcc-lib/i486-linux/2.8.1/adainclude/ into
/home/sam/Debian/gnat/gnat-3.12p/ada/rts/ so GDB can find the files, but
clearly, the correct solution is to build GNAT in such a way that
libgnat.so contains the correct locations for its source files.
I'm using Debian 2.3 (woody), kernel version 2.2.14, libc6 version
2.1.3-2, and gdb version 4.18.19990928-1.
-Jake
Information forwarded to debian-bugs-dist@lists.debian.org:
Bug#58329; Package gnat.
debian-bugs-dist@lists.debian.org
Subject: Bug#58329: gnat library compiled with bad path to sources
Reply-To: Samuel Tardieu , 58329@bugs.debian.org
Resent-From: Samuel Tardieu
Orignal-Sender: sam@antinea.enst.fr
Resent-To: debian-bugs-dist@lists.debian.org
Resent-Date: Fri, 18 Feb 2000 11:03:17 GMT
Resent-Message-ID:
Resent-Sender: owner@bugs.debian.org
X-Debian-PR-Message: report 58329
X-Debian-PR-Package: gnat
X-Debian-PR-Keywords:
X-Loop: owner@bugs.debian.org
Received: via spool by 58329-bugs@bugs.debian.org id=B58329.95086863717228
(code B ref 58329); Fri, 18 Feb 2000 11:03:17 GMT
Sender: sam@antinea.enst.fr
To: Jake Hamby
Cc: 58329@bugs.debian.org
References:
Date: 18 Feb 2000 11:10:04 +0100
In-Reply-To: Jake Hamby's message of "Thu, 17 Feb 2000 10:23:47 -0800 (PST)"
Lines: 25
User-Agent: Gnus/5.0803 (Gnus v5.8.3) XEmacs/21.1 (Bryce Canyon)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
From: Samuel Tardieu
Organization: Debian GNU/Linux (see http://www.debian.org/)
Content-Transfer-Encoding: 8bit
Precedence: special-delivery
X-WWW: http://www.inf.enst.fr/~tardieu/
X-Mail-Processing: Sam's procmail tools
X-ICQ: 21547599
Message-Id: <2000-02-18-11-10-04+trackit+sam@debian.org>
Jake> When I try to debug a program compiled with gnat, either by
Jake> calling gdb directly, or with the gnatmem leak checker, I get
Jake> errors that the debugger can't find the location of any Ada
Jake> library source files. For example, for this simple "hello,
Jake> world" program:
Jake> with Text_IO; use Text_IO;
Jake> procedure Hello is begin
Jake> Put_Line("Hello, world!");
Jake> end Hello;
Could you please try to type
dir /usr/lib/gcc-lib/i486-linux/2.8.1/adainclude/
in GDB first and see if it fixes things?
The trouble here is that I cannot have things compiled "in place",
especially for non-i386 platforms where autobuilders build this
package. I will look for other solutions.
Sam
--
Samuel Tardieu -- sam@debian.org
Acknowledgement sent to Samuel Tardieu <sam@debian.org>:
Extra info received and forwarded to list.
-t
From: owner@bugs.debian.org (Debian Bug Tracking System)
To: Samuel Tardieu
Subject: Bug#58329: Info received (was Bug#58329: gnat library compiled with bad path to sources)
Message-ID:
In-Reply-To: <2000-02-18-11-10-04+trackit+sam@debian.org>
References: <2000-02-18-11-10-04+trackit+sam@debian.org>
X-Debian-PR-Message: ack-info-maintonly 58329
Thank you for the additional information you have supplied regarding
this problem report. It has been forwarded to the developer(s) and
to the developers mailing list to accompany the original report.
If you wish to continue to submit further information on your problem,
please send it to 58329@bugs.debian.org, as before.
Please do not reply to the address at the top of this message,
unless you wish to report a problem with the Bug-tracking system.
Darren Benham
(administrator, Debian Bugs database)
Received: (at 58329) by bugs.debian.org; 18 Feb 2000 10:10:37 +0000
Received: (qmail 17225 invoked from network); 18 Feb 2000 10:10:35 -0000
Received: from marvin.enst.fr (HELO ada.eu.org) (postfix@137.194.161.2)
by master.debian.org with SMTP; 18 Feb 2000 10:10:35 -0000
Received: from antinea.enst.fr (antinea.enst.fr [137.194.160.145])
by ada.eu.org (Postfix) with ESMTP
id 4599119056; Fri, 18 Feb 2000 11:10:22 +0100 (CET)
Received: by antinea.enst.fr (Postfix, from userid 1000)
id E3739110F9; Fri, 18 Feb 2000 11:10:04 +0100 (CET)
Sender: sam@antinea.enst.fr
To: Jake Hamby
Cc: 58329@bugs.debian.org
Subject: Re: Bug#58329: gnat library compiled with bad path to sources
References:
Date: 18 Feb 2000 11:10:04 +0100
In-Reply-To: Jake Hamby's message of "Thu, 17 Feb 2000 10:23:47 -0800 (PST)"
Lines: 25
User-Agent: Gnus/5.0803 (Gnus v5.8.3) XEmacs/21.1 (Bryce Canyon)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
From: Samuel Tardieu
Reply-To: Samuel Tardieu
Organization: Debian GNU/Linux (see http://www.debian.org/)
Content-Transfer-Encoding: 8bit
Precedence: special-delivery
X-WWW: http://www.inf.enst.fr/~tardieu/
X-Mail-Processing: Sam's procmail tools
X-ICQ: 21547599
Message-Id: <2000-02-18-11-10-04+trackit+sam@debian.org>
Jake> When I try to debug a program compiled with gnat, either by
Jake> calling gdb directly, or with the gnatmem leak checker, I get
Jake> errors that the debugger can't find the location of any Ada
Jake> library source files. For example, for this simple "hello,
Jake> world" program:
Jake> with Text_IO; use Text_IO;
Jake> procedure Hello is begin
Jake> Put_Line("Hello, world!");
Jake> end Hello;
Could you please try to type
dir /usr/lib/gcc-lib/i486-linux/2.8.1/adainclude/
in GDB first and see if it fixes things?
The trouble here is that I cannot have things compiled "in place",
especially for non-i386 platforms where autobuilders build this
package. I will look for other solutions.
Sam
--
Samuel Tardieu -- sam@debian.org
Information forwarded to debian-bugs-dist@lists.debian.org, Samuel Tardieu <sam@debian.org>:
Bug#58329; Package gnat.
debian-bugs-dist@lists.debian.orgSamuel Tardieu
Subject: Bug#58329: gnat library compiled with bad path to sources
Reply-To: Jake Hamby , 58329@bugs.debian.org
Resent-From: Jake Hamby
Orignal-Sender: Jake Hamby
Resent-To: debian-bugs-dist@lists.debian.org
Resent-CC: Samuel Tardieu
Resent-Date: Sat, 19 Feb 2000 01:33:01 GMT
Resent-Message-ID:
Resent-Sender: owner@bugs.debian.org
X-Debian-PR-Message: report 58329
X-Debian-PR-Package: gnat
X-Debian-PR-Keywords:
X-Loop: owner@bugs.debian.org
Received: via spool by 58329-bugs@bugs.debian.org id=B58329.95092328414974
(code B ref 58329); Sat, 19 Feb 2000 01:33:01 GMT
Date: Fri, 18 Feb 2000 17:19:47 -0800 (PST)
From: Jake Hamby
X-Sender: jehamby@buk.buk.org
To: Samuel Tardieu
cc: 58329@bugs.debian.org
In-Reply-To: <2000-02-18-11-10-04+trackit+sam@debian.org>
Message-ID:
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Sender: Jake Hamby
On 18 Feb 2000, Samuel Tardieu wrote:
> Could you please try to type
>
> dir /usr/lib/gcc-lib/i486-linux/2.8.1/adainclude/
>
> in GDB first and see if it fixes things?
Thanks for the tip. For now the symlink approach seems to work, though of
course I'd like to see a more elegant solution since I like to see Debian
packages work as elegantly as possible. Perhaps there's some sort of GCC
flag to tell it to substitute a different directory in the debugging info
than where the source files are originally located, but I couldn't find
any such flags in my cursory inspection of the GCC info page.
-Jake
Acknowledgement sent to Jake Hamby <jehamby@anobject.com>:
Extra info received and forwarded to list. Copy sent to Samuel Tardieu <sam@debian.org>.
-t
From: owner@bugs.debian.org (Debian Bug Tracking System)
To: Jake Hamby
Subject: Bug#58329: Info received (was Bug#58329: gnat library compiled with bad path to sources)
Message-ID:
In-Reply-To:
References:
X-Debian-PR-Message: ack-info-maintonly 58329
Thank you for the additional information you have supplied regarding
this problem report. It has been forwarded to the developer(s) and
to the developers mailing list to accompany the original report.
Your message has been sent to the package maintainer(s):
Samuel Tardieu
If you wish to continue to submit further information on your problem,
please send it to 58329@bugs.debian.org, as before.
Please do not reply to the address at the top of this message,
unless you wish to report a problem with the Bug-tracking system.
Darren Benham
(administrator, Debian Bugs database)
Received: (at 58329) by bugs.debian.org; 19 Feb 2000 01:21:24 +0000
Received: (qmail 14968 invoked from network); 19 Feb 2000 01:21:24 -0000
Received: from cbl-jehamby.hs.earthlink.net (HELO buk.buk.org) (mail@207.217.174.211)
by master.debian.org with SMTP; 19 Feb 2000 01:21:24 -0000
Received: from jehamby (helo=localhost)
by buk.buk.org with local-smtp (Exim 3.12 #1 (Debian))
id 12LyYl-00076O-00; Fri, 18 Feb 2000 17:19:47 -0800
Date: Fri, 18 Feb 2000 17:19:47 -0800 (PST)
From: Jake Hamby
X-Sender: jehamby@buk.buk.org
To: Samuel Tardieu
cc: 58329@bugs.debian.org
Subject: Re: Bug#58329: gnat library compiled with bad path to sources
In-Reply-To: <2000-02-18-11-10-04+trackit+sam@debian.org>
Message-ID:
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Sender: Jake Hamby
On 18 Feb 2000, Samuel Tardieu wrote:
> Could you please try to type
>
> dir /usr/lib/gcc-lib/i486-linux/2.8.1/adainclude/
>
> in GDB first and see if it fixes things?
Thanks for the tip. For now the symlink approach seems to work, though of
course I'd like to see a more elegant solution since I like to see Debian
packages work as elegantly as possible. Perhaps there's some sort of GCC
flag to tell it to substitute a different directory in the debugging info
than where the source files are originally located, but I couldn't find
any such flags in my cursory inspection of the GCC info page.
-Jake
Information forwarded to debian-bugs-dist@lists.debian.org:
Bug#58329; Package gnat.
debian-bugs-dist@lists.debian.org
Subject: Bug#58329: gnat library compiled with bad path to sources
Reply-To: Samuel Tardieu , 58329@bugs.debian.org
Resent-From: Samuel Tardieu
Orignal-Sender: sam@antinea.enst.fr
Resent-To: debian-bugs-dist@lists.debian.org
Resent-Date: Mon, 21 Feb 2000 11:33:01 GMT
Resent-Message-ID:
Resent-Sender: owner@bugs.debian.org
X-Debian-PR-Message: report 58329
X-Debian-PR-Package: gnat
X-Debian-PR-Keywords:
X-Loop: owner@bugs.debian.org
Received: via spool by 58329-bugs@bugs.debian.org id=B58329.95113194012373
(code B ref 58329); Mon, 21 Feb 2000 11:33:01 GMT
Sender: sam@antinea.enst.fr
To: Jake Hamby
Cc: 58329@bugs.debian.org
References:
Date: 21 Feb 2000 12:18:24 +0100
In-Reply-To: Jake Hamby's message of "Fri, 18 Feb 2000 17:19:47 -0800 (PST)"
Lines: 16
User-Agent: Gnus/5.0803 (Gnus v5.8.3) XEmacs/21.1 (Bryce Canyon)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
From: Samuel Tardieu
Organization: Debian GNU/Linux (see http://www.debian.org/)
Content-Transfer-Encoding: 8bit
Precedence: special-delivery
X-WWW: http://www.inf.enst.fr/~tardieu/
X-Mail-Processing: Sam's procmail tools
X-ICQ: 21547599
Message-Id: <2000-02-21-12-18-25+trackit+sam@debian.org>
>>>>> "Jake" == Jake Hamby writes:
Jake> Thanks for the tip. For now the symlink approach seems to work,
Jake> though of course I'd like to see a more elegant solution since I
Jake> like to see Debian packages work as elegantly as possible.
Jake> Perhaps there's some sort of GCC flag to tell it to substitute a
Jake> different directory in the debugging info than where the source
Jake> files are originally located, but I couldn't find any such flags
Jake> in my cursory inspection of the GCC info page.
Such a substitution map does not exist, unfortunately. If you have
time to build one :)
Sam
--
Samuel Tardieu -- sam@debian.org
Acknowledgement sent to Samuel Tardieu <sam@debian.org>:
Extra info received and forwarded to list.
-t
From: owner@bugs.debian.org (Debian Bug Tracking System)
To: Samuel Tardieu
Subject: Bug#58329: Info received (was Bug#58329: gnat library compiled with bad path to sources)
Message-ID:
In-Reply-To: <2000-02-21-12-18-25+trackit+sam@debian.org>
References: <2000-02-21-12-18-25+trackit+sam@debian.org>
X-Debian-PR-Message: ack-info-maintonly 58329
Thank you for the additional information you have supplied regarding
this problem report. It has been forwarded to the developer(s) and
to the developers mailing list to accompany the original report.
If you wish to continue to submit further information on your problem,
please send it to 58329@bugs.debian.org, as before.
Please do not reply to the address at the top of this message,
unless you wish to report a problem with the Bug-tracking system.
Darren Benham
(administrator, Debian Bugs database)
Received: (at 58329) by bugs.debian.org; 21 Feb 2000 11:19:00 +0000
Received: (qmail 12371 invoked from network); 21 Feb 2000 11:18:59 -0000
Received: from marvin.enst.fr (HELO ada.eu.org) (postfix@137.194.161.2)
by master.debian.org with SMTP; 21 Feb 2000 11:18:59 -0000
Received: from antinea.enst.fr (antinea.enst.fr [137.194.160.145])
by ada.eu.org (Postfix) with ESMTP
id BF9001906C; Mon, 21 Feb 2000 12:18:45 +0100 (CET)
Received: by antinea.enst.fr (Postfix, from userid 1000)
id 50B75110F9; Mon, 21 Feb 2000 12:18:25 +0100 (CET)
Sender: sam@antinea.enst.fr
To: Jake Hamby
Cc: 58329@bugs.debian.org
Subject: Re: Bug#58329: gnat library compiled with bad path to sources
References:
Date: 21 Feb 2000 12:18:24 +0100
In-Reply-To: Jake Hamby's message of "Fri, 18 Feb 2000 17:19:47 -0800 (PST)"
Lines: 16
User-Agent: Gnus/5.0803 (Gnus v5.8.3) XEmacs/21.1 (Bryce Canyon)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
From: Samuel Tardieu
Reply-To: Samuel Tardieu
Organization: Debian GNU/Linux (see http://www.debian.org/)
Content-Transfer-Encoding: 8bit
Precedence: special-delivery
X-WWW: http://www.inf.enst.fr/~tardieu/
X-Mail-Processing: Sam's procmail tools
X-ICQ: 21547599
Message-Id: <2000-02-21-12-18-25+trackit+sam@debian.org>
>>>>> "Jake" == Jake Hamby writes:
Jake> Thanks for the tip. For now the symlink approach seems to work,
Jake> though of course I'd like to see a more elegant solution since I
Jake> like to see Debian packages work as elegantly as possible.
Jake> Perhaps there's some sort of GCC flag to tell it to substitute a
Jake> different directory in the debugging info than where the source
Jake> files are originally located, but I couldn't find any such flags
Jake> in my cursory inspection of the GCC info page.
Such a substitution map does not exist, unfortunately. If you have
time to build one :)
Sam
--
Samuel Tardieu -- sam@debian.org
Severity set to `wishlist'.
Request was from Samuel Tardieu <sam@debian.org>
to control@bugs.debian.org.
Received: (at control) by bugs.debian.org; 28 Mar 2000 13:03:49 +0000
Received: (qmail 4851 invoked from network); 28 Mar 2000 13:03:49 -0000
Received: from marvin.enst.fr (HELO ada.eu.org) (postfix@137.194.161.2)
by master.debian.org with SMTP; 28 Mar 2000 13:03:48 -0000
Received: from antinea.enst.fr (antinea.enst.fr [137.194.160.145])
by ada.eu.org (Postfix) with ESMTP
id 6E472190AF; Tue, 28 Mar 2000 15:03:46 +0200 (CEST)
Received: by antinea.enst.fr (Postfix, from userid 1000)
id 2A19A4CD; Tue, 28 Mar 2000 15:03:46 +0200 (CEST)
Date: Tue, 28 Mar 2000 15:03:45 +0200
To: control@bugs.debian.org
Subject: Various
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0.1i
From: Samuel Tardieu
Reply-To: Samuel Tardieu
Organization: Debian GNU/Linux (see http://www.debian.org/)
Content-Transfer-Encoding: 8bit
Precedence: special-delivery
X-WWW: http://www.inf.enst.fr/~tardieu/
X-Mail-Processing: Sam's procmail tools
X-ICQ: 21547599
Message-Id: <2000-03-28-15-03-46+trackit+sam@debian.org>
severity 58329 wishlist
severity 58330 wishlist
Severity set to `wishlist'.
Request was from Samuel Tardieu <sam@debian.org>
to control@bugs.debian.org.
Received: (at control) by bugs.debian.org; 28 Mar 2000 13:03:49 +0000
Received: (qmail 4851 invoked from network); 28 Mar 2000 13:03:49 -0000
Received: from marvin.enst.fr (HELO ada.eu.org) (postfix@137.194.161.2)
by master.debian.org with SMTP; 28 Mar 2000 13:03:48 -0000
Received: from antinea.enst.fr (antinea.enst.fr [137.194.160.145])
by ada.eu.org (Postfix) with ESMTP
id 6E472190AF; Tue, 28 Mar 2000 15:03:46 +0200 (CEST)
Received: by antinea.enst.fr (Postfix, from userid 1000)
id 2A19A4CD; Tue, 28 Mar 2000 15:03:46 +0200 (CEST)
Date: Tue, 28 Mar 2000 15:03:45 +0200
To: control@bugs.debian.org
Subject: Various
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0.1i
From: Samuel Tardieu
Reply-To: Samuel Tardieu
Organization: Debian GNU/Linux (see http://www.debian.org/)
Content-Transfer-Encoding: 8bit
Precedence: special-delivery
X-WWW: http://www.inf.enst.fr/~tardieu/
X-Mail-Processing: Sam's procmail tools
X-ICQ: 21547599
Message-Id: <2000-03-28-15-03-46+trackit+sam@debian.org>
severity 58329 wishlist
severity 58330 wishlist
Severity set to `wishlist'.
Request was from Samuel Tardieu <sam@debian.org>
to control@bugs.debian.org.
Received: (at control) by bugs.debian.org; 28 Mar 2000 13:03:49 +0000
Received: (qmail 4851 invoked from network); 28 Mar 2000 13:03:49 -0000
Received: from marvin.enst.fr (HELO ada.eu.org) (postfix@137.194.161.2)
by master.debian.org with SMTP; 28 Mar 2000 13:03:48 -0000
Received: from antinea.enst.fr (antinea.enst.fr [137.194.160.145])
by ada.eu.org (Postfix) with ESMTP
id 6E472190AF; Tue, 28 Mar 2000 15:03:46 +0200 (CEST)
Received: by antinea.enst.fr (Postfix, from userid 1000)
id 2A19A4CD; Tue, 28 Mar 2000 15:03:46 +0200 (CEST)
Date: Tue, 28 Mar 2000 15:03:45 +0200
To: control@bugs.debian.org
Subject: Various
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0.1i
From: Samuel Tardieu
Reply-To: Samuel Tardieu
Organization: Debian GNU/Linux (see http://www.debian.org/)
Content-Transfer-Encoding: 8bit
Precedence: special-delivery
X-WWW: http://www.inf.enst.fr/~tardieu/
X-Mail-Processing: Sam's procmail tools
X-ICQ: 21547599
Message-Id: <2000-03-28-15-03-46+trackit+sam@debian.org>
severity 58329 wishlist
severity 58330 wishlist
Tags added: wontfix
Request was from Samuel Tardieu <sam@debian.org>
to control@bugs.debian.org.
Received: (at control) by bugs.debian.org; 30 Oct 2001 21:08:01 +0000
From sam@debian.org Tue Oct 30 15:08:01 2001
Return-path:
Received: from marvin.enst.fr (ada.eu.org) [137.194.161.2] (postfix)
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 15yg77-00077c-00; Tue, 30 Oct 2001 15:08:01 -0600
Received: by ada.eu.org (Postfix, from userid 10)
id BF9CFA8023; Tue, 30 Oct 2001 22:08:00 +0100 (CET)
Received: by trillian.rfc1149.net (Postfix, from userid 1000)
id 154B31930CB; Tue, 30 Oct 2001 22:07:36 +0100 (CET)
To: control@bugs.debian.org
Subject: Changes
Date: 30 Oct 2001 22:07:35 +0100
Lines: 2
User-Agent: Gnus/5.090004 (Oort Gnus v0.04) XEmacs/21.1 (Cuyahoga Valley)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
From: Samuel Tardieu
Reply-To: Samuel Tardieu
Organization: Debian GNU/Linux (see http://www.debian.org/)
Content-Transfer-Encoding: 8bit
Precedence: special-delivery
X-WWW: http://www.rfc1149.net/sam
X-Mail-Processing: Sam's procmail tools
X-ICQ: 21547599
X-Sam-Laptop: yes
Message-Id: <2001-10-30-22-07-36+trackit+sam@debian.org>
Delivered-To: control@bugs.debian.org
tags 58329 wontfix
tags 106965 wontfix
Bug reassigned from package `gnat' to `gnat-4.1'.
Request was from Ludovic Brenta <ludovic@ludovic-brenta.org>
to control@bugs.debian.org.
Received: (at control) by bugs.debian.org; 23 Aug 2006 13:04:20 +0000
From ludovic@ada-france.org Wed Aug 23 06:04:20 2006
Return-path:
Received: from green.ada-france.org ([88.191.17.134])
by spohr.debian.org with esmtp (Exim 4.50)
id 1GFsP6-0001Zb-BH
for control@bugs.debian.org; Wed, 23 Aug 2006 06:04:20 -0700
Received: from localhost (localhost [127.0.0.1])
by green.ada-france.org (Postfix) with ESMTP id 7FDECF000F
for ; Wed, 23 Aug 2006 15:04:17 +0200 (CEST)
Received: from green.ada-france.org ([127.0.0.1])
by localhost (green.ada-france.org [127.0.0.1]) (amavisd-new, port 10024)
with ESMTP id 12225-05 for ;
Wed, 23 Aug 2006 15:04:11 +0200 (CEST)
Received: by green.ada-france.org (Postfix, from userid 1002)
id 9D61BF0023; Wed, 23 Aug 2006 15:04:11 +0200 (CEST)
Date: Wed, 23 Aug 2006 15:04:11 +0200
From: Ludovic Brenta
To: control@bugs.debian.org
Subject: Reassign gnat bugs to gnat-4.1
Message-ID: <20060823130411.GY6831@green.ada-france.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.11
X-Virus-Scanned: amavisd-new at ada-france.org
Delivered-To: control@bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-5.0 required=4.0 tests=BAYES_00,VALID_BTS_CONTROL
autolearn=no version=2.60-bugs.debian.org_2005_01_02
reassign 58329 gnat-4.1
reassign 170352 gnat-4.1
reassign 182359 gnat-4.1
reassign 182360 libgnat-4.1
reassign 230809 libgnat-4.1
reassign 244935 gnat-4.1
reassign 244936 gnat-4.1
reassign 244943 gnat-4.1
reassign 244970 gnat-4.1
reassign 246183 gnat-4.1
reassign 246184 gnat-4.1
reassign 246185 gnat-4.1
reassign 246186 gnat-4.1
reassign 246187 gnat-4.1
reassign 246384 gnat-4.1
reassign 246385 gnat-4.1
reassign 246386 gnat-4.1
reassign 246387 gnat-4.1
reassign 246390 gnat-4.1
reassign 246392 gnat-4.1
reassign 247013 gnat-4.1
reassign 247017 gnat-4.1
reassign 247018 gnat-4.1
reassign 247019 gnat-4.1
reassign 247020 gnat-4.1
reassign 247023 gnat-4.1
reassign 247560 gnat-4.1
reassign 247561 gnat-4.1
reassign 247564 gnat-4.1
reassign 247569 gnat-4.1
reassign 247570 gnat-4.1
reassign 247571 gnat-4.1
reassign 248166 gnat-4.1
reassign 248167 gnat-4.1
reassign 248168 gnat-4.1
reassign 248170 gnat-4.1
reassign 248172 gnat-4.1
reassign 248173 gnat-4.1
reassign 248678 gnat-4.1
reassign 248680 gnat-4.1
reassign 248681 gnat-4.1
reassign 248682 gnat-4.1
reassign 248683 gnat-4.1
reassign 248684 gnat-4.1
reassign 248685 gnat-4.1
reassign 248687 gnat-4.1
reassign 251265 gnat-4.1
reassign 253737 gnat-4.1
reassign 269948 gnat-4.1
reassign 269951 gnat-4.1
reassign 274077 gnat-4.1
reassign 276224 gnat-4.1
reassign 276227 gnat-4.1
reassign 278685 gnat-4.1
reassign 278686 gnat-4.1
reassign 278687 gnat-4.1
reassign 278831 gnat-4.1
reassign 279893 gnat-4.1
reassign 280939 gnat-4.1
reassign 280940 gnat-4.1
reassign 283833 gnat-4.1
reassign 283835 gnat-4.1
reassign 284332 gnat-4.1
reassign 284333 gnat-4.1
reassign 284651 gnat-4.1
reassign 299033 gnat-4.1
reassign 306832 gnat-4.1
reassign 306834 gnat-4.1
reassign 306835 gnat-4.1
reassign 315414 gnat-4.1
reassign 315416 gnat-4.1
reassign 329691 gnat-4.1
reassign 329693 gnat-4.1
reassign 339356 gnat-4.1
thanks
Bug reassigned from package `gnat-4.1' to `gnat-4.3'.
Request was from Ludovic Brenta <ludovic@ludovic-brenta.org>
to controlbugs.debian.org.
Received: (at control) by bugs.debian.org; 10 Aug 2008 14:08:01 +0000
From ludovic@ludovic-brenta.org Sun Aug 10 14:08:01 2008
X-Spam-Checker-Version: SpamAssassin 3.1.4-bugs.debian.org_2005_01_02
(2006-07-26) on rietz.debian.org
X-Spam-Level:
X-Spam-Status: No, score=-6.0 required=4.0 tests=BAYES_00,VALID_BTS_CONTROL
autolearn=no version=3.1.4-bugs.debian.org_2005_01_02
Return-path:
Received: from postbus01.versateladsl.be ([212.53.5.81])
by rietz.debian.org with esmtp (Exim 4.63)
(envelope-from )
id 1KSBZR-0002g1-7f
for control@bugs.debian.org; Sun, 10 Aug 2008 14:06:59 +0000
Received: (qmail 4102 invoked by uid 33); 10 Aug 2008 14:06:56 -0000
Received: from oul69-4-88-170-86-208.fbx.proxad.net (oul69-4-88-170-86-208.fbx.proxad.net [88.170.86.208])
by www.versateladsl.be (IMP) with HTTP
for ; Sun, 10 Aug 2008 16:06:55 +0200
Message-ID: <1218377215.489ef60001523@www.versateladsl.be>
Date: Sun, 10 Aug 2008 16:06:56 +0200
From: Ludovic Brenta
To: control@bugs.debian.org
Subject: Reassign all gnat-4.1 bugs to gnat-4.3
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
User-Agent: Internet Messaging Program (IMP) 3.2.2
X-Originating-IP: 88.170.86.208
Delivered-To: control@bugs.debian.org
reassign 58329 gnat-4.3
reassign 182359 gnat-4.3
reassign 182360 gnat-4.3
reassign 244936 gnat-4.3
reassign 244943 gnat-4.3
reassign 244970 gnat-4.3
reassign 246183 gnat-4.3
reassign 246185 gnat-4.3
reassign 246186 gnat-4.3
reassign 246187 gnat-4.3
reassign 246390 gnat-4.3
reassign 246392 gnat-4.3
reassign 247013 gnat-4.3
reassign 247017 gnat-4.3
reassign 247018 gnat-4.3
reassign 247019 gnat-4.3
reassign 247020 gnat-4.3
reassign 247564 gnat-4.3
reassign 247569 gnat-4.3
reassign 247570 gnat-4.3
reassign 247571 gnat-4.3
reassign 248166 gnat-4.3
reassign 248167 gnat-4.3
reassign 248168 gnat-4.3
reassign 248170 gnat-4.3
reassign 248678 gnat-4.3
reassign 248680 gnat-4.3
reassign 248681 gnat-4.3
reassign 248682 gnat-4.3
reassign 251265 gnat-4.3
reassign 253737 gnat-4.3
reassign 269948 gnat-4.3
reassign 269951 gnat-4.3
reassign 274077 gnat-4.3
reassign 276224 gnat-4.3
reassign 276227 gnat-4.3
reassign 278687 gnat-4.3
reassign 278831 gnat-4.3
reassign 279893 gnat-4.3
reassign 280939 gnat-4.3
reassign 283833 gnat-4.3
reassign 283835 gnat-4.3
reassign 299033 gnat-4.3
reassign 306834 gnat-4.3
reassign 306835 gnat-4.3
reassign 315414 gnat-4.3
reassign 330813 gnat-4.3
reassign 339356 gnat-4.3
reassign 380260 gnat-4.3
reassign 416975 gnat-4.3
reassign 416979 gnat-4.3
reassign 427107 gnat-4.3
reassign 427108 gnat-4.3
thanks
--
Ludovic Brenta.