Your message dated Fri, 17 Feb 2012 19:18:58 +0000
with message-id <[email protected]>
and subject line Bug#658644: fixed in scidavis 0.2.4-3.1
has caused the Debian Bug report #658644,
regarding scidavis: diff for NMU version 0.2.4-3.1
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
658644: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=658644
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: scidavis
Version: 0.2.4-3
Severity: normal
Tags: patch pending

Dear maintainer,

I've prepared an NMU for scidavis (versioned as 0.2.4-3.1) and
uploaded it to DELAYED/2. Please feel free to tell me if I
should delay it longer.

Regards.
diff -Nru scidavis-0.2.4/debian/changelog scidavis-0.2.4/debian/changelog
--- scidavis-0.2.4/debian/changelog     2011-03-16 20:40:52.000000000 -0400
+++ scidavis-0.2.4/debian/changelog     2012-02-04 15:28:54.000000000 -0500
@@ -1,3 +1,17 @@
+scidavis (0.2.4-3.1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * Added --parallel flag to dh in debian/rules
+  * Move plugins to /usr/lib (Closes: #646190)
+    debian/patches/lib64.diff
+  * Fixed declaring Graph as const when it is not (Closes: #655776)
+    debian/patches/graph_const.diff
+  * Recommends on qt-assistant-compat (Closes: #624752)
+  * use dh_python2 since python-support is deprecated (cleaning up
+    lintian error)
+
+ -- Scott Howard <[email protected]>  Sat, 04 Feb 2012 15:28:22 -0500
+
 scidavis (0.2.4-3) unstable; urgency=low
 
   * Add Build-Depends on libqtassistantclient-dev (Closes: #618199)
diff -Nru scidavis-0.2.4/debian/control scidavis-0.2.4/debian/control
--- scidavis-0.2.4/debian/control       2011-03-16 18:33:56.000000000 -0400
+++ scidavis-0.2.4/debian/control       2012-02-04 15:25:30.000000000 -0500
@@ -5,14 +5,15 @@
 Build-Depends: debhelper (>= 7.0.50~), docbook-to-man, python, 
  pyqt4-dev-tools, libqt4-dev, libqt4-opengl-dev, libqwt5-qt4-dev, 
  libqwtplot3d-qt4-dev, libmuparser-dev, libgsl0-dev, zlib1g-dev, 
- libglu1-mesa-dev, python-dev, python-qt4-dev, python-sip-dev,
- python-support, libqtassistantclient-dev
+ libglu1-mesa-dev, python-dev (>> 2.6.6-3~), python-qt4-dev, python-sip-dev,
+ libqtassistantclient-dev
 Standards-Version: 3.9.1
 Homepage: http://scidavis.sourceforge.net/
 
 Package: scidavis
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
+Recommends: qt-assistant-compat
 Description: application for scientific data analysis and visualization
  SciDAVis is a free interactive application aimed at data analysis and 
  publication-quality plotting. It combines a shallow learning curve and 
diff -Nru scidavis-0.2.4/debian/patches/graph_const.diff 
scidavis-0.2.4/debian/patches/graph_const.diff
--- scidavis-0.2.4/debian/patches/graph_const.diff      1969-12-31 
19:00:00.000000000 -0500
+++ scidavis-0.2.4/debian/patches/graph_const.diff      2012-02-04 
15:30:47.000000000 -0500
@@ -0,0 +1,25 @@
+Description: remove const qualifier from variables that are not
+Author: Scott Howard <[email protected]>
+Bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=655776
+Index: scidavis-0.2.4/scidavis/src/scidavis.sip
+===================================================================
+--- scidavis-0.2.4.orig/scidavis/src/scidavis.sip      2012-02-04 
15:14:55.700694486 -0500
++++ scidavis-0.2.4/scidavis/src/scidavis.sip   2012-02-04 15:15:41.352695571 
-0500
+@@ -926,7 +926,7 @@
+   void removeCurve(const QString&);
+   void deleteFitCurves();
+   int curves() /PyName=numCurves/;
+-  QList<QwtPlotCurve*> curves() const /NoDerived/;
++  QList<QwtPlotCurve*> curves() /NoDerived/;
+ %MethodCode
+       sipRes = new QList<QwtPlotCurve*>();
+       for (int i = 0; i<sipCpp->curves(); i++)
+@@ -995,7 +995,7 @@
+       sipRes = sipCpp->d_plot->canvas();
+ %End
+ 
+-      QPointF pickPoint() const /NoDerived/;
++      QPointF pickPoint() /NoDerived/;
+ %MethodCode
+       ApplicationWindow *app = sipscidavis_app();
+       sipRes = new QPointF();
diff -Nru scidavis-0.2.4/debian/patches/lib65.diff 
scidavis-0.2.4/debian/patches/lib65.diff
--- scidavis-0.2.4/debian/patches/lib65.diff    1969-12-31 19:00:00.000000000 
-0500
+++ scidavis-0.2.4/debian/patches/lib65.diff    2012-02-04 15:31:39.000000000 
-0500
@@ -0,0 +1,16 @@
+Description: Don't install modules to /usr/lib
+Author: Scott Howard <[email protected]>
+Bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=646190
+Index: scidavis-0.2.4/scidavis/scidavis.pro
+===================================================================
+--- scidavis-0.2.4.orig/scidavis/scidavis.pro  2012-02-04 14:43:54.884650261 
-0500
++++ scidavis-0.2.4/scidavis/scidavis.pro       2012-02-04 14:44:11.640650659 
-0500
+@@ -30,7 +30,7 @@
+ }
+ 
+ ### 64 Linux only suffix
+-linux-g++-64: libsuff = 64 
++#linux-g++-64: libsuff = 64 
+ 
+ ### where to install
+ unix: INSTALLBASE = /usr           # this is what is called "prefix" when 
using GNU autotools
diff -Nru scidavis-0.2.4/debian/patches/series 
scidavis-0.2.4/debian/patches/series
--- scidavis-0.2.4/debian/patches/series        2011-03-16 19:02:30.000000000 
-0400
+++ scidavis-0.2.4/debian/patches/series        2012-02-04 15:09:08.000000000 
-0500
@@ -1,2 +1,4 @@
 sourcefiles_pri.diff
 scidavis_pro.diff
+lib65.diff
+graph_const.diff
diff -Nru scidavis-0.2.4/debian/pycompat scidavis-0.2.4/debian/pycompat
--- scidavis-0.2.4/debian/pycompat      2010-03-26 13:27:38.000000000 -0400
+++ scidavis-0.2.4/debian/pycompat      1969-12-31 19:00:00.000000000 -0500
@@ -1 +0,0 @@
-2
diff -Nru scidavis-0.2.4/debian/rules scidavis-0.2.4/debian/rules
--- scidavis-0.2.4/debian/rules 2011-03-16 20:40:42.000000000 -0400
+++ scidavis-0.2.4/debian/rules 2012-02-04 15:26:26.000000000 -0500
@@ -1,7 +1,7 @@
 #!/usr/bin/make -f
 
 %:
-       dh $@ --buildsystem=qmake
+       dh $@ --buildsystem=qmake --parallel --with python2
 
 override_dh_auto_build:
        docbook-to-man man/manpage.sgml > debian/scidavis.1



--- End Message ---
--- Begin Message ---
Source: scidavis
Source-Version: 0.2.4-3.1

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

scidavis_0.2.4-3.1.debian.tar.bz2
  to main/s/scidavis/scidavis_0.2.4-3.1.debian.tar.bz2
scidavis_0.2.4-3.1.dsc
  to main/s/scidavis/scidavis_0.2.4-3.1.dsc
scidavis_0.2.4-3.1_i386.deb
  to main/s/scidavis/scidavis_0.2.4-3.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.
Scott Howard <[email protected]> (supplier of updated scidavis 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.8
Date: Tue, 07 Feb 2012 12:14:34 -0500
Source: scidavis
Binary: scidavis
Architecture: source i386
Version: 0.2.4-3.1
Distribution: unstable
Urgency: low
Maintainer: Ruben Molina <[email protected]>
Changed-By: Scott Howard <[email protected]>
Description: 
 scidavis   - application for scientific data analysis and visualization
Closes: 624752 646190 655776 658644
Changes: 
 scidavis (0.2.4-3.1) unstable; urgency=low
 .
   * Non-maintainer upload. (Closes: #658644)
   * Move plugins to /usr/lib (Closes: #646190)
     debian/patches/lib64.diff
   * Fixed declaring Graph as const when it is not (Closes: #655776)
     debian/patches/graph_const.diff
   * Recommends on qt-assistant-compat (Closes: #624752)
Checksums-Sha1: 
 95153613fe53f0b37442cb3e885081758dec7857 1344 scidavis_0.2.4-3.1.dsc
 47c82fed1000cd1615c64ab16def6efd5b6e2272 5431 scidavis_0.2.4-3.1.debian.tar.bz2
 dc0c7563564d299c5b2908d73aa6a468ae577ace 2394320 scidavis_0.2.4-3.1_i386.deb
Checksums-Sha256: 
 cb664bb28d98e5d395452fc7720965b62e31577575a64e380decd29a6507bb1c 1344 
scidavis_0.2.4-3.1.dsc
 826652369ffdfcd7f5d12570c9fa285a7b74ed6240fa8b936b127341d98cae53 5431 
scidavis_0.2.4-3.1.debian.tar.bz2
 7aae8b8971c3b1b74a3abab8123f17140178037cb68d288e0e3bbede1ce44779 2394320 
scidavis_0.2.4-3.1_i386.deb
Files: 
 3648ab0ef9faddb2bdcda66b562de3ed 1344 graphics extra scidavis_0.2.4-3.1.dsc
 aeb669b3db1f4ab2434b940b618dd875 5431 graphics extra 
scidavis_0.2.4-3.1.debian.tar.bz2
 cf33acef57501e9ac4163ede4d613450 2394320 graphics extra 
scidavis_0.2.4-3.1_i386.deb

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

iEYEARECAAYFAk8xbRcACgkQuqVp0MvxKmoKrACg0kWX3+/A9C6oKs/BWFEQqFu/
5B4AoJspThu3yCPfkU8lDUOARn1z8ZM1
=jqjO
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to