[Pkg-scicomp-devel] orsa/trunk

Frank S. Thomas frank at thomas-alfeld.de
Thu Aug 30 09:47:46 UTC 2007


SVN commit 1795 by fst-guest:

* Moved myself to Uploaders and set the Debian Scientific Computing Team
  <pkg-scicomp-devel at lists.alioth.debian.org> as Maintainer.
* src/libxorsa/xorsa_wrapper.cc: Moved the (v)snprintf() functions from
  namespace std to the global namespace to fix the build failures on arm,
  mips and mipsel.
                    


 M  +9 -3      orsa/trunk/debian/changelog  
 M  +2 -1      orsa/trunk/debian/control  
 M  +2 -1      orsa/trunk/debian/control.in  
 M  +2 -2      orsa/trunk/src/libxorsa/xorsa_wrapper.cc  


--- orsa/trunk/debian/changelog #1794:1795
@@ -1,11 +1,17 @@
-orsa (0.7.0-9) UNRELEASED; urgency=low
+orsa (0.7.0-9) unstable; urgency=low
 
   * NOT RELEASED YET
   * debian/xorsa.menu: Changed section for the new menu hierarchy from
     "Apps/Science" to "Applications/Science/Astronomy".
-  * debian/control.in: Added XS-Vcs-{Svn,Browser} fields to the source stanza.
+  * debian/control.in:
+    - Added XS-Vcs-{Svn,Browser} fields to the source stanza.
+    - Moved myself to Uploaders and set the Debian Scientific Computing Team
+      <pkg-scicomp-devel at lists.alioth.debian.org> as Maintainer.
+  * src/libxorsa/xorsa_wrapper.cc: Moved the (v)snprintf() functions from
+    namespace std to the global namespace to fix the build failures on arm,
+    mips and mipsel.
 
- -- Frank S. Thomas <frank at thomas-alfeld.de>  Wed, 29 Aug 2007 23:18:30 +0200
+ -- Frank S. Thomas <frank at thomas-alfeld.de>  Thu, 30 Aug 2007 11:42:44 +0200
 
 orsa (0.7.0-8) unstable; urgency=low
 
--- orsa/trunk/debian/control #1794:1795
@@ -1,7 +1,8 @@
 Source: orsa
 Section: science
 Priority: optional
-Maintainer: Frank S. Thomas <frank at thomas-alfeld.de>
+Maintainer: Debian Scientific Computing Team <pkg-scicomp-devel at lists.alioth.debian.org>
+Uploaders: Frank S. Thomas <frank at thomas-alfeld.de>
 Standards-Version: 3.7.2
 Build-Depends: cdbs (>= 0.4.23-1.1), debhelper (>= 5), libreadline5-dev | libreadline-dev, libqt3-mt-dev (>= 3:3.3), libgl1-mesa-dev | libgl-dev, libglu1-mesa-dev | libglu-dev, libgsl0-dev (>= 1.5), fftw-dev (>= 2.1), libcln-dev (>= 1.1.6), libginac-dev (>= 1.2.0), libgmp3-dev, sharutils, docbook2x, docbook-xml
 Build-Depends-Indep: doxygen, graphviz
--- orsa/trunk/debian/control.in #1794:1795
@@ -1,7 +1,8 @@
 Source: orsa
 Section: science
 Priority: optional
-Maintainer: Frank S. Thomas <frank at thomas-alfeld.de>
+Maintainer: Debian Scientific Computing Team <pkg-scicomp-devel at lists.alioth.debian.org>
+Uploaders: Frank S. Thomas <frank at thomas-alfeld.de>
 Standards-Version: 3.7.2
 Build-Depends: @cdbs@, libreadline5-dev | libreadline-dev, libqt3-mt-dev (>= 3:3.3), libgl1-mesa-dev | libgl-dev, libglu1-mesa-dev | libglu-dev, libgsl0-dev (>= 1.5), fftw-dev (>= 2.1), libcln-dev (>= 1.1.6), libginac-dev (>= 1.2.0), libgmp3-dev, sharutils, docbook2x, docbook-xml
 Build-Depends-Indep: doxygen, graphviz
--- orsa/trunk/src/libxorsa/xorsa_wrapper.cc #1794:1795
@@ -148,9 +148,9 @@
 {
   if (doDefaultOutput) inherited::vtrace(fmt, ap);
   char str[1024];
-  std::vsnprintf(str, sizeof(str) - 1, fmt, ap);
+  vsnprintf(str, sizeof(str) - 1, fmt, ap);
   char msg[1024];
-  std::snprintf(msg, sizeof(msg) - 1, "[%s][%s:%i] %s %s\n", 
+  snprintf(msg, sizeof(msg) - 1, "[%s][%s:%i] %s %s\n", 
     QTime::currentTime(Qt::LocalTime).toString("hh:mm:ss").latin1(),d->file,d->line, d->msg.c_str(), str);
   QString s = msg;
   XOrsaDebugEvent *de = new XOrsaDebugEvent(s);



More information about the Pkg-scicomp-devel mailing list