On Sun, Jan 15, 2006 at 08:17:11PM -0800, Anibal Monsalve Salazar wrote:
>tag 285918 + fixed
>tag 288966 + fixed
>tag 326367 + fixed
>tag 346671 + fixed
>
>quit
>
>This message was generated automatically in response to a
>non-maintainer upload.  The .changes file follows.
>
>Format: 1.7
>Date: Mon, 16 Jan 2006 12:28:42 +1100
>Source: felt
>Binary: felt-doc felt
>Architecture: source i386 alpha sparc all
>Version: 3.06-9.1
>Distribution: unstable
>Urgency: low
>Maintainer: Alen Zekulic <[EMAIL PROTECTED]>
>Changed-By: Anibal Monsalve Salazar <[EMAIL PROTECTED]>
>Description: 
> felt       - Package for introductory level finite element analysis
> felt-doc   - FElt User's Guide and Reference Manual
>Closes: 285918 288966 326367 346671
>Changes: 
> felt (3.06-9.1) unstable; urgency=low
> .
>   * NMU.
>   * Fixed "FTBFS (amd64/gcc-4.0): invalid lvalue in assignment",
>     closes: #288966, #285918. Patch by Andreas Jochens <[EMAIL PROTECTED]>.
>   * Fixed "please rebuild with libreadline5-dev as build dependency",
>     closes: #326367. Patch by Matthias Klose <[EMAIL PROTECTED]>.
>   * Fixed "FTBFS: build-depends on removed xlibs-dev", closes:
>     #346671.
>Files: 
> d644958b6afbccd7eb431b2fc2a92981 705 science optional felt_3.06-9.1.dsc
> 656e3056a9a25aa070bcd4fab448f226 653124 science optional felt_3.06-9.1.diff.gz
> 59e402d0d3722887315fc9b841c9e7bd 608864 doc optional felt-doc_3.06-9.1_all.deb
> 2cb7725218a33d9e66737a52e5f2a68a 1219928 science optional 
> felt_3.06-9.1_i386.deb
> 65983df2514a94f69e0f71f891fedc16 1201556 science optional 
> felt_3.06-9.1_sparc.deb
> 82d84a4dfe73ef74a5e777469bf61345 1438422 science optional 
> felt_3.06-9.1_alpha.deb

Alen,

Please find NMU patch as an attachment.

AnĂ­bal Monsalve Salazar
--
 .''`. Debian GNU/Linux
: :' : Free Operating System
`. `'  http://debian.org/
  `-   http://v7w.com/anibal
debdiff cache/felt/felt_3.06-9.dsc cache/felt/felt_3.06-9.1.dsc
diff -u felt-3.06/debian/changelog felt-3.06/debian/changelog
--- felt-3.06/debian/changelog
+++ felt-3.06/debian/changelog
@@ -1,3 +1,15 @@
+felt (3.06-9.1) unstable; urgency=low
+
+  * NMU.
+  * Fixed "FTBFS (amd64/gcc-4.0): invalid lvalue in assignment",
+    closes: #288966, #285918. Patch by Andreas Jochens <[EMAIL PROTECTED]>.
+  * Fixed "please rebuild with libreadline5-dev as build dependency",
+    closes: #326367. Patch by Matthias Klose <[EMAIL PROTECTED]>.
+  * Fixed "FTBFS: build-depends on removed xlibs-dev", closes:
+    #346671.
+
+ -- Anibal Monsalve Salazar <[EMAIL PROTECTED]>  Mon, 16 Jan 2006 12:28:42 
+1100
+
 felt (3.06-9) unstable; urgency=low
 
   * Applied patch from Daniel Sullivan <[EMAIL PROTECTED]> to display
diff -u felt-3.06/debian/control felt-3.06/debian/control
--- felt-3.06/debian/control
+++ felt-3.06/debian/control
@@ -2,7 +2,7 @@
 Section: science
 Priority: optional
 Maintainer: Alen Zekulic <[EMAIL PROTECTED]>
-Build-Depends: xlibs-dev, libxaw7-dev, xlibmesa-gl-dev, xlibmesa-glu-dev, 
libreadline4-dev, libncurses5-dev, flex, bison, binutils
+Build-Depends: libx11-dev, libxmu-dev, libxt-dev, x-dev, libxaw7-dev, 
xlibmesa-gl-dev, xlibmesa-glu-dev, libreadline5-dev | libreadline-dev, 
libncurses5-dev, flex, bison, binutils
 Standards-Version: 3.6.0
 
 Package: felt
only in patch2:
unchanged:
--- felt-3.06.orig/src/Burlap/descriptor.c
+++ felt-3.06/src/Burlap/descriptor.c
@@ -307,7 +307,7 @@
            D_Type     (dest) = T_External;
            D_Temp     (dest) = F_False;
            D_Trapped  (dest) = F_False;
-           D_External (dest) = D_External (src);
+           dest->u.ptr = D_External (src);
            break;
 
 
only in patch2:
unchanged:
--- felt-3.06.orig/src/Burlap/felt.c
+++ felt-3.06/src/Burlap/felt.c
@@ -1780,7 +1780,7 @@
     D_Type    (d) = T_Problem;
     D_Temp    (d) = F_False;
     D_Trapped (d) = F_False;
-    D_Problem (d) = &problem;
+    d->u.ptr = &problem;
 
 
     s = add_literal (&var_st, "analysis", GlblOp);
@@ -1789,7 +1789,7 @@
     D_Type     (d) = T_Analysis;
     D_Temp     (d) = F_False;
     D_Trapped  (d) = F_False;
-    D_Analysis (d) = &analysis;
+    d->u.ptr = &analysis;
 
     return 0;
 }
only in patch2:
unchanged:
--- felt-3.06.orig/src/Burlap/fefunc.c
+++ felt-3.06/src/Burlap/fefunc.c
@@ -190,7 +190,7 @@
            D_Type    (arg1) = T_Element;
            D_Temp    (arg1) = F_False;
            D_Trapped (arg1) = F_False;
-           D_Element (arg1) = &element;
+           arg1->u.ptr = &element;
 
            D_Type    (arg2) = T_Int;
            D_Temp    (arg2) = F_False;
@@ -247,7 +247,7 @@
            D_Type    (arg1) = T_Element;
            D_Temp    (arg1) = F_False;
            D_Trapped (arg1) = F_False;
-           D_Element (arg1) = &element;
+           arg1->u.ptr = &element;
 
            if (!function_call (function, 1)) {
                result = top ( );

Attachment: signature.asc
Description: Digital signature

Reply via email to