[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Pkg-octave-devel] Bug#355980: marked as done (FTBFS with G++ 4.1: misc errors)



Your message dated Mon, 13 Mar 2006 03:32:17 -0800
with message-id <E1FIlHd-0007SV-2n@spohr.debian.org>
and subject line Bug#355980: fixed in octave2.1 1:2.1.72-11
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)

--- Begin Message ---
Package: octave2.1
Version: 1:2.1.72-10
Severity: important
Tags: patch

Your package makes other packages fail to build with G++ 4.1.  I'm
filing this bug as important for now, but when 4.1 will be the default
compiler in unstable (probably in a few weeks) I'll upgrade this to
serious.

A patch is below.


> Automatic build of statdataml_1.0.9-2 on bigsur by sbuild/mips 1.78
...
> make[2]: Entering directory `/build/tbm/statdataml-1.0.9/StatDataML/MatOct/octave'
> cp -f ../readsdml.c_in readsdml.cc
> mkoctfile -I/usr/include/libxml2 -lxml2  readsdml.cc
> /usr/include/octave-2.1.72/octave/oct-obj.h:103: error: extra qualification 'octave_value_list::' on member 'resize'
> make[2]: *** [readsdml.oct] Error 1
> rm readsdml.cc
> make[2]: Leaving directory `/build/tbm/statdataml-1.0.9/StatDataML/MatOct/octave'
> make[1]: *** [Octave] Error 1


--- ./debian/patches/50_octave-value-list-resize-2.9.dpatch~	2006-03-09 05:25:56.000000000 +0000
+++ ./debian/patches/50_octave-value-list-resize-2.9.dpatch	2006-03-09 05:26:03.000000000 +0000
@@ -15,7 +15,7 @@
    void resize (octave_idx_type n) { data.resize (n); }
  
 -  void resize (octave_idx_type n, const octave_value& val);
-+  void octave_value_list::resize (octave_idx_type n, const octave_value& val)
++  void resize (octave_idx_type n, const octave_value& val)
 +  {
 +    octave_idx_type len = length ();
 +  

-- 
Martin Michlmayr
http://www.cyrius.com/


--- End Message ---
--- Begin Message ---
Source: octave2.1
Source-Version: 1:2.1.72-11

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

octave2.1-doc_2.1.72-11_all.deb
  to pool/main/o/octave2.1/octave2.1-doc_2.1.72-11_all.deb
octave2.1-emacsen_2.1.72-11_all.deb
  to pool/main/o/octave2.1/octave2.1-emacsen_2.1.72-11_all.deb
octave2.1-headers_2.1.72-11_i386.deb
  to pool/main/o/octave2.1/octave2.1-headers_2.1.72-11_i386.deb
octave2.1-htmldoc_2.1.72-11_all.deb
  to pool/main/o/octave2.1/octave2.1-htmldoc_2.1.72-11_all.deb
octave2.1-info_2.1.72-11_all.deb
  to pool/main/o/octave2.1/octave2.1-info_2.1.72-11_all.deb
octave2.1_2.1.72-11.diff.gz
  to pool/main/o/octave2.1/octave2.1_2.1.72-11.diff.gz
octave2.1_2.1.72-11.dsc
  to pool/main/o/octave2.1/octave2.1_2.1.72-11.dsc
octave2.1_2.1.72-11_i386.deb
  to pool/main/o/octave2.1/octave2.1_2.1.72-11_i386.deb
octave_2.1.72-11_all.deb
  to pool/main/o/octave2.1/octave_2.1.72-11_all.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 355980@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Rafael Laboissiere <rafael@debian.org> (supplier of updated octave2.1 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 ftpmaster@debian.org)


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

Format: 1.7
Date: Mon, 13 Mar 2006 10:04:42 +0100
Source: octave2.1
Binary: octave2.1-htmldoc octave octave2.1-info octave2.1-emacsen octave2.1 octave2.1-headers octave2.1-doc
Architecture: source all i386
Version: 1:2.1.72-11
Distribution: unstable
Urgency: low
Maintainer: Debian Octave Group <pkg-octave-devel@lists.alioth.debian.org>
Changed-By: Rafael Laboissiere <rafael@debian.org>
Description: 
 octave     - GNU Octave language for numerical computations (2.1 branch)
 octave2.1  - GNU Octave language for numerical computations (2.1 branch)
 octave2.1-doc - PDF documentation on the GNU Octave language (2.1 branch)
 octave2.1-emacsen - Emacs support for the GNU Octave language (2.1 branch)
 octave2.1-headers - header files for the GNU Octave language (2.1 branch)
 octave2.1-htmldoc - HTML documentation on the GNU Octave language (2.1 branch)
 octave2.1-info - GNU Info documentation on the GNU Octave language (2.1 branch)
Closes: 355980
Changes: 
 octave2.1 (1:2.1.72-11) unstable; urgency=low
 .
    [ Rafael Laboissiere ]
 .
   * debian/patches/50_g++4.1.dpatch: Added patch proposed by John W. Eaton
     to allow compilation with g++ 4.1.
   * debian/patches/50_octave-value-list-resize-2.1.dpatch: Adjusted patch
     for compilation with g++ 4.1 (thanks to Martin Michlmayr)
   * With the two changes above, closes: #355980
 .
   * N.B.: the present version of the package was compiled with g++ 4.0,
     because this is the version of the GCC suite in sid.  However, the
     changes were tested with g++ 4.1 available from experimental, and it
     worked.
Files: 
 cc68744170a523d8627f5968bbe09a88 1049 math optional octave2.1_2.1.72-11.dsc
 09926ef91a503b62a1055c803a3bb952 39009 math optional octave2.1_2.1.72-11.diff.gz
 0e2756c3980e1c6eb3179153d001d8e2 5341840 math optional octave2.1_2.1.72-11_i386.deb
 fc768a5d6c69719f6e8e6864b2b496bc 268462 math optional octave2.1-headers_2.1.72-11_i386.deb
 ec929da80e76a4ffe8c8751257865c2d 1776304 doc optional octave2.1-doc_2.1.72-11_all.deb
 469d1f7587941e6869be86367c7d200a 388018 math optional octave2.1-htmldoc_2.1.72-11_all.deb
 7d434fcccf4fa67b627e40f0a65ac3ad 72934 math optional octave2.1-emacsen_2.1.72-11_all.deb
 96b78746d3035fc2e35d156c6e5ecc58 306166 math optional octave2.1-info_2.1.72-11_all.deb
 d666c41476f94029524555c4e20d19f2 49702 math optional octave_2.1.72-11_all.deb

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

iD8DBQFEFVUqk3oga0pdcv4RAtgCAKCLJ3FeBP5y2rPryzmd0EhahdVf7QCfepo9
jlhMuYA7i5LpUAj3vTdhxI8=
=SFqy
-----END PGP SIGNATURE-----


--- End Message ---

Reply to: