Your message dated Fri, 29 Jul 2005 15:02:21 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#298400: fixed in ginac 1.3.2-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 7 Mar 2005 10:19:35 +0000
>From [EMAIL PROTECTED] Mon Mar 07 02:19:34 2005
Return-path: <[EMAIL PROTECTED]>
Received: from c223012.adsl.hansenet.de (localhost.localdomain) [213.39.223.12] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1D8FKo-0004Id-00; Mon, 07 Mar 2005 02:19:34 -0800
Received: from aj by localhost.localdomain with local (Exim 4.44)
        id 1D8GH8-0003qP-2F; Mon, 07 Mar 2005 12:19:50 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: ginac: FTBFS (amd64/gcc-4.0): explicit specialization of 'bool 
GiNaC::container<std::vector>::info(unsigned int) const' must be introduced by 
'template <>'
Message-Id: <[EMAIL PROTECTED]>
Date: Mon, 07 Mar 2005 12:19:50 +0100
Delivered-To: [EMAIL PROTECTED]
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-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

Package: ginac
Severity: normal
Tags: patch

When building 'ginac' on amd64 with gcc-4.0,
I get the following error:

if /bin/sh ../libtool --mode=compile x86_64-linux-g++ -DHAVE_CONFIG_H -I. -I. 
-I..     -O2 -finline-limit=1200 -MT exprseq.lo -MD -MP -MF ".deps/exprseq.Tpo" 
-c -o exprseq.lo exprseq.cpp; \
then mv -f ".deps/exprseq.Tpo" ".deps/exprseq.Plo"; else rm -f 
".deps/exprseq.Tpo"; exit 1; fi
 x86_64-linux-g++ -DHAVE_CONFIG_H -I. -I. -I.. -O2 -finline-limit=1200 -MT 
exprseq.lo -MD -MP -MF .deps/exprseq.Tpo -c exprseq.cpp  -fPIC -DPIC -o 
.libs/exprseq.o
exprseq.cpp:32: error: explicit specialization of 'bool 
GiNaC::container<std::vector>::info(unsigned int) const' must be introduced by 
'template <>'
exprseq.cpp:32: error: template-id 'info<>' for 'bool 
GiNaC::container<std::vector>::info(unsigned int) const' does not match any 
template declaration
exprseq.cpp:32: error: invalid function declaration
make[3]: *** [exprseq.lo] Error 1
make[3]: Leaving directory `/ginac-1.3.0/ginac'

With the attached patch 'ginac' can be compiled
on amd64 using gcc-4.0.

Regards
Andreas Jochens

diff -urN ../tmp-orig/ginac-1.3.0/ginac/exprseq.cpp ./ginac/exprseq.cpp
--- ../tmp-orig/ginac-1.3.0/ginac/exprseq.cpp   2004-01-08 15:56:39.000000000 
+0100
+++ ./ginac/exprseq.cpp 2005-03-07 11:59:15.836936319 +0100
@@ -29,7 +29,7 @@
   print_func<print_tree>(&exprseq::do_print_tree))
 
 /** Specialization of container::info() for exprseq. */
-bool exprseq::info(unsigned inf) const
+template <> bool exprseq::info(unsigned inf) const
 {
        if (inf == info_flags::exprseq)
                return true;
diff -urN ../tmp-orig/ginac-1.3.0/ginac/inifcns.h ./ginac/inifcns.h
--- ../tmp-orig/ginac-1.3.0/ginac/inifcns.h     2004-10-19 14:05:53.000000000 
+0200
+++ ./ginac/inifcns.h   2005-03-07 12:00:42.751160271 +0100
@@ -108,7 +108,7 @@
        return function(zeta2_SERIAL::serial, ex(p1), ex(p2));
 }
 class zeta_SERIAL;
-template<> inline bool is_the_function<class zeta_SERIAL>(const ex& x)
+template<> inline bool is_the_function<zeta_SERIAL>(const ex& x)
 {
        return is_the_function<zeta1_SERIAL>(x) || 
is_the_function<zeta2_SERIAL>(x);
 }
@@ -127,7 +127,7 @@
        return function(G3_SERIAL::serial, ex(x), ex(s), ex(y));
 }
 class G_SERIAL;
-template<> inline bool is_the_function<class G_SERIAL>(const ex& x)
+template<> inline bool is_the_function<G_SERIAL>(const ex& x)
 {
        return is_the_function<G2_SERIAL>(x) || is_the_function<G3_SERIAL>(x);
 }
@@ -162,7 +162,7 @@
        return function(psi2_SERIAL::serial, ex(p1), ex(p2));
 }
 class psi_SERIAL;
-template<> inline bool is_the_function<class psi_SERIAL>(const ex & x)
+template<> inline bool is_the_function<psi_SERIAL>(const ex & x)
 {
        return is_the_function<psi1_SERIAL>(x) || 
is_the_function<psi2_SERIAL>(x);
 }
diff -urN ../tmp-orig/ginac-1.3.0/ginac/lst.cpp ./ginac/lst.cpp
--- ../tmp-orig/ginac-1.3.0/ginac/lst.cpp       2004-01-08 15:56:32.000000000 
+0100
+++ ./ginac/lst.cpp     2005-03-07 12:03:03.961903992 +0100
@@ -29,7 +29,7 @@
   print_func<print_tree>(&lst::do_print_tree))
 
 /** Specialization of container::info() for lst. */
-bool lst::info(unsigned inf) const
+template <> bool lst::info(unsigned inf) const
 {
        if (inf == info_flags::list)
                return true;
diff -urN ../tmp-orig/ginac-1.3.0/ginac/structure.h ./ginac/structure.h
--- ../tmp-orig/ginac-1.3.0/ginac/structure.h   2004-03-15 17:29:17.000000000 
+0100
+++ ./ginac/structure.h 2005-03-07 12:07:21.948107894 +0100
@@ -188,9 +188,9 @@
        ex to_polynomial(exmap & repl) const { return 
inherited::to_polynomial(repl); }
 
        // polynomial algorithms
-       numeric integer_content() const { return 1; }
+       long integer_content() const { return 1; }
        ex smod(const numeric & xi) const { return *this; }
-       numeric max_coefficient() const { return 1; }
+       long max_coefficient() const { return 1; }
 
        // indexed objects
        exvector get_free_indices() const { return exvector(); }

---------------------------------------
Received: (at 298400-close) by bugs.debian.org; 29 Jul 2005 22:09:18 +0000
>From [EMAIL PROTECTED] Fri Jul 29 15:09:18 2005
Return-path: <[EMAIL PROTECTED]>
Received: from joerg by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1Dycvt-0004a3-00; Fri, 29 Jul 2005 15:02:21 -0700
From: Richard Kreckel <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: lisa $Revision: 1.30 $
Subject: Bug#298400: fixed in ginac 1.3.2-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Joerg Jaspert <[EMAIL PROTECTED]>
Date: Fri, 29 Jul 2005 15:02:21 -0700
Delivered-To: [EMAIL PROTECTED]
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=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: ginac
Source-Version: 1.3.2-1

We believe that the bug you reported is fixed in the latest version of
ginac, which is due to be installed in the Debian FTP archive:

ginac-tools_1.3.2-1_i386.deb
  to pool/main/g/ginac/ginac-tools_1.3.2-1_i386.deb
ginac_1.3.2-1.diff.gz
  to pool/main/g/ginac/ginac_1.3.2-1.diff.gz
ginac_1.3.2-1.dsc
  to pool/main/g/ginac/ginac_1.3.2-1.dsc
ginac_1.3.2.orig.tar.gz
  to pool/main/g/ginac/ginac_1.3.2.orig.tar.gz
libginac-dev_1.3.2-1_i386.deb
  to pool/main/g/ginac/libginac-dev_1.3.2-1_i386.deb
libginac1.3c2-dbg_1.3.2-1_i386.deb
  to pool/main/g/ginac/libginac1.3c2-dbg_1.3.2-1_i386.deb
libginac1.3c2_1.3.2-1_i386.deb
  to pool/main/g/ginac/libginac1.3c2_1.3.2-1_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Richard Kreckel <[EMAIL PROTECTED]> (supplier of updated ginac package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Mon, 25 July 2005 23:24:26 +0200
Source: ginac
Binary: libginac1.3c2 libginac1.3c2-dbg ginac-tools libginac-dev
Architecture: source i386
Version: 1.3.2-1
Distribution: unstable
Urgency: low
Maintainer: Richard Kreckel <[EMAIL PROTECTED]>
Changed-By: Richard Kreckel <[EMAIL PROTECTED]>
Description: 
 ginac-tools - Some tools for the GiNaC framework
 libginac-dev - The GiNaC framework (development files)
 libginac1.3c2 - The GiNaC framework (runtime library)
 libginac1.3c2-dbg - The GiNaC framework (debugging symbols)
Closes: 298400
Changes: 
 ginac (1.3.2-1) unstable; urgency=low
 .
   * New upstream (bugfix only) release; closes: #298400.
   * debian/*: Use upstream's simpler structure using CDBS.
   * debian/control: add c2 to library package name.
   * Build against new libcln using gcc-4 ABI.
Files: 
 d392c17c9427fd782235f005a5d9bb52 683 math optional ginac_1.3.2-1.dsc
 d9787ff28cb3238b7b3142e0431259ff 1012530 math optional ginac_1.3.2.orig.tar.gz
 cce3fe9a6c7e9d3409d1da35af75a4dd 4325 math optional ginac_1.3.2-1.diff.gz
 06703557076ceeba312b895533a5a1a5 840230 libs optional 
libginac1.3c2_1.3.2-1_i386.deb
 5b96f35912e25d470ed2702178ad0a31 1626274 libdevel optional 
libginac-dev_1.3.2-1_i386.deb
 36bf7823f7a9fe0bd4bc96c6c1109537 95212 math optional 
ginac-tools_1.3.2-1_i386.deb
 158aeca5950f268d9f141edf7fb442dc 3157442 libdevel optional 
libginac1.3c2-dbg_1.3.2-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFC5V8nXY7lDPAZkWIRAo2yAJ9W2yCBKKtNRT7pGnGGgg34Phh++wCfb7S4
oWzYgnnwEusP0unLRH9EbCU=
=Ua8z
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to