Processing of cpl-plugin-xsh_2.3.0+dfsg-2_amd64.changes

2014-01-09 Thread Debian FTP Masters
cpl-plugin-xsh_2.3.0+dfsg-2.dsc doesn't exist
Due to the errors above, the .changes file couldn't be processed.
Please fix the problems for the upload to happen.

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#734724: bossa-cli: Add Arduino patches

2014-01-09 Thread Karl Lenz
Package: bossa-cli
Version: 1.3~20120408-1
Severity: wishlist
Tags: patch

I wrote a makefile a little more than six months ago for compiling Arduino
projects on command line. I used it for a few of my own simple projects on both
my Arduino Uno R2 and Arduino Due R3. However, since the Arduino Due requires
the Arduino IDE 1.5.x, which was not in Debian at the time, I coded my makefile
to use the version from the binary Linux package provided on the Arduino
website. Since that package includes a pre-build toolchain, I used the version
of gcc and bossac that it provided as well. Now that Arduino IDE 1.5.4 is in
Experimental and gcc-arm-none-eabi ships a C++ compiler, I have been working on
modifying my makefile to use only the tools available in the Debian archive. As
of now I can successfully compile my projects using this new makefile, but I
can't upload any of them to the Arduino Due because the version of bossac in
Debian is missing some of the features and bugfixes found in the Arduino
version.

With that in mind, I took a look at both the upstream bossa git repository and
the git repository for the Arduino bossa fork. While the Arduino fork of bossa
on github appears to be based on a pretty old version of bossa, the diff
between the Arduino fork and the latest version of bossa in its git repository
is actually surprisingly manageable. Based on the complete diff I generated,
the commit history of both bossa versions, and a few hours spent familiarizing
myself with the bossa source code, I separated what I believe are the most
important parts of the Arduino bossa fork into a series of 5 diffs which apply
cleanly to both the Debian bossa source and the latest upstream code. Using
this patched version of bossac I can successfully upload my projects to the
Arduino Due. Would it be acceptable to either apply these patches to the Debian
bossa package or rebase the package on the Arduino bossa fork? A diff of the
changes I made to the current bossa package is attached. I appreciate your
consideration.



-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (800, 'testing'), (400, 'unstable'), (200, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.12-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages bossa-cli depends on:
ii  libc6 2.17-97
ii  libgcc1   1:4.8.2-10
ii  libreadline6  6.2+dfsg-0.1
ii  libstdc++64.8.2-10

bossa-cli recommends no packages.

bossa-cli suggests no packages.

-- no debconf information
--- a/debian/patches/add-reset-command.patch1969-12-31 19:00:00.0 -0500
+++ b/debian/patches/add-reset-command.patch2014-01-09 06:06:11.901684390 -0500
@@ -0,0 +1,129 @@
+Description: Add a 'reset' command to be applied after a successful upload
+Author: Cristian Maglie c.mag...@bug.st
+--- a/src/Command.cpp
 b/src/Command.cpp
+@@ -1211,3 +1211,16 @@
+ 
+ _flasher.write(argv[1]);
+ }
++
++CommandReset::CommandReset() :
++Command(reset,
++Reset the CPU. (only for supported CPU),
++reset\n)
++{}
++
++void
++CommandReset::invoke(char* argv[], int argc)
++{
++_samba.reset();
++}
++
+--- a/src/Command.h
 b/src/Command.h
+@@ -260,4 +260,11 @@
+ virtual void invoke(char* argv[], int argc);
+ };
+ 
++class CommandReset : public Command
++{
++public:
++CommandReset();
++virtual void invoke(char* argv[], int argc);
++};
++
+ #endif // _COMMAND_H
+--- a/src/Samba.cpp
 b/src/Samba.cpp
+@@ -22,6 +22,7 @@
+ #include stdio.h
+ #include stdint.h
+ #include ctype.h
++#include unistd.h
+ 
+ using namespace std;
+ 
+@@ -545,3 +546,21 @@
+ }
+ return cid;
+ }
++
++void
++Samba::reset(void)
++{
++if (chipId() != 0x285e0a60) {
++printf(Reset not supported for this CPU);
++return;
++}
++
++printf(CPU reset.\n);
++writeWord(0x400E1A00, 0xA50D);
++
++// Some linux users experienced a lock up if the serial
++// port is closed while the port itself is being destroyed.
++// This delay is here to give the time to kernel driver to
++// sort out things before closing the port.
++usleep(10);
++}
+--- a/src/Samba.h
 b/src/Samba.h
+@@ -60,6 +60,8 @@
+ void setDebug(bool debug) { _debug = debug; }
+ 
+ const SerialPort getSerialPort() { return *_port; }
++
++void reset(void);
+ 
+ private:
+ bool _debug;
+--- a/src/Shell.cpp
 b/src/Shell.cpp
+@@ -55,6 +55,7 @@
+ add(new CommandSecurity);
+ add(new CommandVerify);
+ add(new CommandWrite);
++add(new CommandReset);
+ 
+ _commandList.sort();
+ }
+--- a/src/bossac.cpp
 b/src/bossac.cpp
+@@ -40,6 +40,7 @@
+ bool write;
+ bool read;
+ bool verify;
++bool reset;
+ bool port;
+ bool boot;
+ bool bor;
+@@ -79,6 +80,8 @@
+ bootArg = 1;
+ bodArg = 1;
+ borArg = 1;
++
++reset = 

Processing of cpl-plugin-fors_4.11.12+dfsg-2_amd64.changes

2014-01-09 Thread Debian FTP Masters
cpl-plugin-fors_4.11.12+dfsg-2_amd64.changes uploaded successfully to localhost
along with the files:
  cpl-plugin-fors_4.11.12+dfsg-2.dsc
  cpl-plugin-fors_4.11.12+dfsg-2.debian.tar.gz
  cpl-plugin-fors-doc_4.11.12+dfsg-2_all.deb
  cpl-plugin-fors-calib_4.11.12+dfsg-2_all.deb
  cpl-plugin-fors_4.11.12+dfsg-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


Bug#733342: marked as done (cpl-plugin-giraf: arch-dependent files in Multi-Arch: same package)

2014-01-09 Thread Debian Bug Tracking System
Your message dated Thu, 09 Jan 2014 16:00:08 +
with message-id e1w1i1g-0004ew...@franck.debian.org
and subject line Bug#733342: fixed in cpl-plugin-giraf 2.11.1+dfsg-2
has caused the Debian Bug report #733342,
regarding cpl-plugin-giraf: arch-dependent files in Multi-Arch: same package
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 ow...@bugs.debian.org
immediately.)


-- 
733342: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=733342
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---

Package: cpl-plugin-giraf
Version: 2.11.1+dfsg-1
Severity: important
User: multiarch-de...@lists.alioth.debian.org
Usertags: multiarch

cpl-plugin-giraf is marked as Multi-Arch: same, but the following 
files are architecture-dependent:


/usr/share/doc/cpl-plugin-giraf/html/_static/basic.css
/usr/share/doc/cpl-plugin-giraf/html/_static/sphinxdoc.css
/usr/share/doc/cpl-plugin-giraf/html/genindex.html
/usr/share/doc/cpl-plugin-giraf/html/giframestack.html
/usr/share/doc/cpl-plugin-giraf/html/gimasterbias.html
/usr/share/doc/cpl-plugin-giraf/html/gimasterdark.html
/usr/share/doc/cpl-plugin-giraf/html/gimasterflat.html
/usr/share/doc/cpl-plugin-giraf/html/giscience.html
/usr/share/doc/cpl-plugin-giraf/html/gistandard.html
/usr/share/doc/cpl-plugin-giraf/html/giwavecalibration.html
/usr/share/doc/cpl-plugin-giraf/html/index.html
/usr/share/doc/cpl-plugin-giraf/html/search.html
/usr/share/doc/cpl-plugin-giraf/html/searchindex.js

An example diff between i386 and amd64 is attached.

--
Jakub Wilk


cpl-plugin-giraf_2.11.1+dfsg-1.archdiff.xz
Description: Binary data
---End Message---
---BeginMessage---
Source: cpl-plugin-giraf
Source-Version: 2.11.1+dfsg-2

We believe that the bug you reported is fixed in the latest version of
cpl-plugin-giraf, which is due to be installed in the Debian FTP archive.

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 733...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ole Streicher deb...@liska.ath.cx (supplier of updated cpl-plugin-giraf 
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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 31 Dec 2013 14:12:15 +0100
Source: cpl-plugin-giraf
Binary: cpl-plugin-giraf cpl-plugin-giraf-doc cpl-plugin-giraf-calib
Architecture: source all amd64
Version: 2.11.1+dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintainers@lists.alioth.debian.org
Changed-By: Ole Streicher deb...@liska.ath.cx
Description: 
 cpl-plugin-giraf - ESO data reduction pipeline for GIRAFFE
 cpl-plugin-giraf-calib - ESO data reduction pipeline calibration data 
downloader for GIRAF
 cpl-plugin-giraf-doc - ESO data reduction pipeline documentation for GIRAFFE
Closes: 733342
Changes: 
 cpl-plugin-giraf (2.11.1+dfsg-2) unstable; urgency=low
 .
   * Enable verbose test output
   * Upgrade to Standards-Version 3.9.5 (no changes needed)
   * Move documentation into separate package. (Closes: #733342)
   * Fix documentation title.
Checksums-Sha1: 
 0672203e09b4b5cc00b2fdde87b86523ca021b6f 2356 
cpl-plugin-giraf_2.11.1+dfsg-2.dsc
 cbdf9a433191b13e75c721ea2bc43215abd05641 9319 
cpl-plugin-giraf_2.11.1+dfsg-2.debian.tar.gz
 eae5f6357196c42840d961d33a8c465521c78bdd 59838 
cpl-plugin-giraf-doc_2.11.1+dfsg-2_all.deb
 6f18e52a718400fbcf7e5fd9c211e5162882509a 2632 
cpl-plugin-giraf-calib_2.11.1+dfsg-2_all.deb
 56f67c68a2eda0031a5a437c3bbfc00f5735f0d2 245426 
cpl-plugin-giraf_2.11.1+dfsg-2_amd64.deb
Checksums-Sha256: 
 7b6538731d1b9ed4c43dc3db4eafdf90908d7db8c07a6cf868a6fb0a913c6ffb 2356 
cpl-plugin-giraf_2.11.1+dfsg-2.dsc
 9b2092d5230e70efb385cd07be50b77eac1ee07da157c606adadf127927d9bb4 9319 
cpl-plugin-giraf_2.11.1+dfsg-2.debian.tar.gz
 3e43b6b1fc87d6f624303be72ae449ec10388d4aa28fa058caa103c108e7543d 59838 
cpl-plugin-giraf-doc_2.11.1+dfsg-2_all.deb
 6139167cdc2e7966b683f937d4c34d779f78a66c855811c46e248ccbb7615534 2632 
cpl-plugin-giraf-calib_2.11.1+dfsg-2_all.deb
 a805213f1513cab26f86210095bd60864ed13f7bb8ec69cce6697b56d8371eba 245426 
cpl-plugin-giraf_2.11.1+dfsg-2_amd64.deb
Files: 
 72d6335dcaef5166b1ba915c48e80991 2356 science optional 
cpl-plugin-giraf_2.11.1+dfsg-2.dsc
 0a1a62eb6f8762573504b7ea17fd2d37 9319 science optional 
cpl-plugin-giraf_2.11.1+dfsg-2.debian.tar.gz
 

Bug#733591: marked as done (cpl-plugin-sinfo and sinfo: error when trying to install together)

2014-01-09 Thread Debian Bug Tracking System
Your message dated Thu, 09 Jan 2014 16:00:09 +
with message-id e1w1i1h-0004f8...@franck.debian.org
and subject line Bug#733591: fixed in cpl-plugin-sinfo 2.4.0+dfsg-2
has caused the Debian Bug report #733591,
regarding cpl-plugin-sinfo and sinfo: error when trying to install together
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 ow...@bugs.debian.org
immediately.)


-- 
733591: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=733591
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: sinfo,cpl-plugin-sinfo
Version: sinfo/0.0.47-1
Version: cpl-plugin-sinfo/2.4.0+dfsg-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2013-12-30
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


Preconfiguring packages ...
Selecting previously unselected package libboost-signals1.54.0:amd64.
(Reading database ... 10868 files and directories currently installed.)
Preparing to unpack .../libboost-signals1.54.0_1.54.0-4+b1_amd64.deb ...
Unpacking libboost-signals1.54.0:amd64 (1.54.0-4+b1) ...
Selecting previously unselected package libboost-system1.54.0:amd64.
Preparing to unpack .../libboost-system1.54.0_1.54.0-4+b1_amd64.deb ...
Unpacking libboost-system1.54.0:amd64 (1.54.0-4+b1) ...
Selecting previously unselected package libcext0:amd64.
Preparing to unpack .../libcext0_6.3.1-1_amd64.deb ...
Unpacking libcext0:amd64 (6.3.1-1) ...
Selecting previously unselected package libcfitsio3:amd64.
Preparing to unpack .../libcfitsio3_3.340-2_amd64.deb ...
Unpacking libcfitsio3:amd64 (3.340-2) ...
Selecting previously unselected package libgomp1:amd64.
Preparing to unpack .../libgomp1_4.8.2-10_amd64.deb ...
Unpacking libgomp1:amd64 (4.8.2-10) ...
Selecting previously unselected package libfftw3-double3:amd64.
Preparing to unpack .../libfftw3-double3_3.3.3-7_amd64.deb ...
Unpacking libfftw3-double3:amd64 (3.3.3-7) ...
Selecting previously unselected package libfftw3-single3:amd64.
Preparing to unpack .../libfftw3-single3_3.3.3-7_amd64.deb ...
Unpacking libfftw3-single3:amd64 (3.3.3-7) ...
Selecting previously unselected package libcplcore20:amd64.
Preparing to unpack .../libcplcore20_6.3.1-1_amd64.deb ...
Unpacking libcplcore20:amd64 (6.3.1-1) ...
Selecting previously unselected package libcplui20:amd64.
Preparing to unpack .../libcplui20_6.3.1-1_amd64.deb ...
Unpacking libcplui20:amd64 (6.3.1-1) ...
Selecting previously unselected package libcpldfs20:amd64.
Preparing to unpack .../libcpldfs20_6.3.1-1_amd64.deb ...
Unpacking libcpldfs20:amd64 (6.3.1-1) ...
Selecting previously unselected package libwcs4:amd64.
Preparing to unpack .../libwcs4_4.20-1_amd64.deb ...
Unpacking libwcs4:amd64 (4.20-1) ...
Selecting previously unselected package libcpldrs20:amd64.
Preparing to unpack .../libcpldrs20_6.3.1-1_amd64.deb ...
Unpacking libcpldrs20:amd64 (6.3.1-1) ...
Selecting previously unselected package cpl-plugin-sinfo:amd64.
Preparing to unpack .../cpl-plugin-sinfo_2.4.0+dfsg-1_amd64.deb ...
Unpacking cpl-plugin-sinfo:amd64 (2.4.0+dfsg-1) ...
Selecting previously unselected package sinfo.
Preparing to unpack .../sinfo_0.0.47-1_amd64.deb ...
Unpacking sinfo (0.0.47-1) ...
dpkg: error processing archive /var/cache/apt/archives/sinfo_0.0.47-1_amd64.deb 
(--unpack):
 trying to overwrite '/usr/share/doc-base/sinfo', which is also in package 
cpl-plugin-sinfo:amd64 2.4.0+dfsg-1
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Processing triggers for man-db (2.6.5-2) ...
Errors were encountered while processing:
 /var/cache/apt/archives/sinfo_0.0.47-1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


This is a serious bug as it makes installation fail, and violates
sections 7.6.1 and 10.1 of the policy. An optimal solution would
consist in only one of the packages installing that file, and renaming
or removing the file in the other package. Depending on the
circumstances you might also consider Replace relations or file
diversions. If the conflicting situation cannot be resolved then, as a
last resort, the two packages have to declare a mutual
Conflict. Please take into account that Replaces, Conflicts and
diversions should only be used when packages provide different
implementations for the same functionality.

Here is a list of files that are known to be shared by both packages
(according to the Contents file for sid/amd64, which may be
slightly out of sync):

  /usr/share/doc-base/sinfo

This bug has been filed against both 

Processing of minieigen_0.4~dfsg~bzr50-1_amd64.changes

2014-01-09 Thread Debian FTP Masters
minieigen_0.4~dfsg~bzr50-1_amd64.changes uploaded successfully to localhost
along with the files:
  minieigen_0.4~dfsg~bzr50-1.dsc
  minieigen_0.4~dfsg~bzr50.orig.tar.xz
  minieigen_0.4~dfsg~bzr50-1.debian.tar.gz
  python-minieigen_0.4~dfsg~bzr50-1_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


openturns_1.3~rc1-1_amd64.changes is NEW

2014-01-09 Thread Debian FTP Masters
binary:libopenturns0.4 is NEW.

Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers