Processing of lua-torch-torch7_0~20170106-gf624ae9-2_source.changes

2017-01-09 Thread Debian FTP Masters
lua-torch-torch7_0~20170106-gf624ae9-2_source.changes uploaded successfully to 
localhost
along with the files:
  lua-torch-torch7_0~20170106-gf624ae9-2.dsc
  lua-torch-torch7_0~20170106-gf624ae9-2.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.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


Processed: Re: freemat ftbfs with LLVM 3.9

2017-01-09 Thread Debian Bug Tracking System
Processing control commands:

> clone -1 -2
Bug #850150 [src:freemat] freemat ftbfs with LLVM 3.9
Bug 850150 cloned as bug 850785
> block -1 by -2
Bug #850150 [src:freemat] freemat ftbfs with LLVM 3.9
850150 was not blocked by any bugs.
850150 was not blocking any bugs.
Added blocking bug(s) of 850150: 850785
> retitle -2 llvm-toolchain-3.9 make some reverse-dependencies FTBFS on i386
Bug #850785 [src:freemat] freemat ftbfs with LLVM 3.9
Changed Bug title to 'llvm-toolchain-3.9 make some reverse-dependencies FTBFS 
on i386' from 'freemat ftbfs with LLVM 3.9'.
> reassign -2 src:llvm-toolchain-3.9
Bug #850785 [src:freemat] llvm-toolchain-3.9 make some reverse-dependencies 
FTBFS on i386
Bug reassigned from package 'src:freemat' to 'src:llvm-toolchain-3.9'.
Ignoring request to alter found versions of bug #850785 to the same values 
previously set
Ignoring request to alter fixed versions of bug #850785 to the same values 
previously set
> found -2 1:3.9.1-1
Bug #850785 [src:llvm-toolchain-3.9] llvm-toolchain-3.9 make some 
reverse-dependencies FTBFS on i386
Marked as found in versions llvm-toolchain-3.9/1:3.9.1-1.
> tags -2 patch
Bug #850785 [src:llvm-toolchain-3.9] llvm-toolchain-3.9 make some 
reverse-dependencies FTBFS on i386
Added tag(s) patch.

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

-- 
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#850150: freemat ftbfs with LLVM 3.9

2017-01-09 Thread Gianfranco Costamagna
control: clone -1 -2
control: block -1 by -2
control: retitle -2 llvm-toolchain-3.9 make some reverse-dependencies FTBFS on 
i386
control: reassign -2 src:llvm-toolchain-3.9
control: found -2 1:3.9.1-1
control: tags -2 patch

On Wed, 4 Jan 2017 16:14:03 +0200 Graham Inggs  wrote:
> Hi
> 
> The attached updated fix-llvm-build.patch fixes the build almost 
> everywhere by adding LLVMCoverage to OPTIONAL_LIBS.
> 
> The build now fails on i386 with the following:
> 
> In file included from 
> /usr/lib/llvm-3.9/include/llvm/Target/TargetOptions.h:20:0,
>   from 
> /usr/lib/llvm-3.9/include/llvm/Target/TargetMachine.h:22,
>   from 
> /usr/lib/llvm-3.9/include/llvm/ExecutionEngine/ExecutionEngine.h:28,
>   from 
> /<>/freemat-4.2+dfsg1/libs/libMatC/CJitFuncClang.hpp:8,
>   from 
> /<>/freemat-4.2+dfsg1/libs/libMatC/JITFactory.cpp:2:
> /usr/lib/llvm-3.9/include/llvm/MC/MCAsmInfo.h:39:6: error: expected 
> identifier before ‘,’ token
> X86, /// Windows x86, uses no CFI, just EH tables
>^
> /usr/lib/llvm-3.9/include/llvm/MC/MCAsmInfo.h: In member function ‘bool 
> llvm::MCAsmInfo::usesWindowsCFI() const’:
> /usr/lib/llvm-3.9/include/llvm/MC/MCAsmInfo.h:555:58: error: expected 
> unqualified-id before ‘)’ token
>   WinEHEncodingType != WinEH::EncodingType::X86);
>^
> 
> Regards
> Graham
> 

as already said, this seems to be a regression in llvm-toolchain-3.9, somewhere 
that X86 is already defined
and clashing with the definition.
s/X86/x86 works, even if I don't know exactly the implications of that code 
(seems to be some windows-only define
FWICS)

the patch is here:
-- llvm-toolchain-3.9-3.9.1.orig/include/llvm/MC/MCAsmInfo.h
+++ llvm-toolchain-3.9-3.9.1/include/llvm/MC/MCAsmInfo.h
@@ -36,7 +36,7 @@ enum class EncodingType {
   ARM, /// Windows NT (Windows on ARM)
   CE,  /// Windows CE ARM, PowerPC, SH3, SH4
   Itanium, /// Windows x64, Windows Itanium (IA-64)
-  X86, /// Windows x86, uses no CFI, just EH tables
+  x86, /// Windows x86, uses no CFI, just EH tables
   MIPS = Alpha,
 };
 }
@@ -552,7 +552,7 @@ public:
   bool usesWindowsCFI() const {
 return ExceptionsType == ExceptionHandling::WinEH &&
(WinEHEncodingType != WinEH::EncodingType::Invalid &&
-WinEHEncodingType != WinEH::EncodingType::X86);
+WinEHEncodingType != WinEH::EncodingType::x86);
   }
 
   bool doesDwarfUseRelocationsAcrossSections() const {
--- llvm-toolchain-3.9-3.9.1.orig/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ llvm-toolchain-3.9-3.9.1/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -278,7 +278,7 @@ bool AsmPrinter::doInitialization(Module
 default: llvm_unreachable("unsupported unwinding information encoding");
 case WinEH::EncodingType::Invalid:
   break;
-case WinEH::EncodingType::X86:
+case WinEH::EncodingType::x86:
 case WinEH::EncodingType::Itanium:
   ES = new WinException(this);
   break;
--- llvm-toolchain-3.9-3.9.1.orig/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
+++ llvm-toolchain-3.9-3.9.1/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
@@ -136,7 +136,7 @@ X86MCAsmInfoMicrosoft::X86MCAsmInfoMicro
 // 32-bit X86 doesn't use CFI, so this isn't a real encoding type. It's 
just
 // a place holder that the Windows EHStreamer looks for to suppress CFI
 // output. In particular, usesWindowsCFI() returns false.
-WinEHEncodingType = WinEH::EncodingType::X86;
+WinEHEncodingType = WinEH::EncodingType::x86;
   }
 
   ExceptionsType = ExceptionHandling::WinEH;

G.



signature.asc
Description: OpenPGP digital signature
-- 
debian-science-maintainers mailing list
debian-science-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers

Re: New upstream version of RandomFields 3.1.36 fails to build from source

2017-01-09 Thread Andreas Tille
On Mon, Jan 09, 2017 at 09:10:38PM -0600, Dirk Eddelbuettel wrote:
> | I have no idea why the package version of RandomFieldsUtils was not
> | verified in the Build process but after I added a versioned
> | Build-Depends in the debian/control file RandomFields builds fine.
> 
> That is ... puzzling. It should have taken the same 'most recent' version
> either way.

The 'most recent' version was uploaded a couple of minutes ago and not
available to the build process.
 
Kind regards

  Andreas. 

-- 
http://fam-tille.de

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


Re: New upstream version of RandomFields 3.1.36 fails to build from source

2017-01-09 Thread Dirk Eddelbuettel

On 8 January 2017 at 17:09, Andreas Tille wrote:
| Hi Martin,
| 
| I have no idea why the package version of RandomFieldsUtils was not
| verified in the Build process but after I added a versioned
| Build-Depends in the debian/control file RandomFields builds fine.

That is ... puzzling. It should have taken the same 'most recent' version
either way.

Dirk
 
| Kind regards
| 
|   Andreas.
| 
| On Sun, Jan 08, 2017 at 01:12:02PM +0100, Martin Schlather wrote:
| > Dear Andreas,
| > 
| > although I have changed RU_sqrtPosDef to RU_sqrtPosDefFree
| > in direct.cc between the recent and the former version of 
| > RandomFields, I am puzzled as both functions are defined 
| > in exactly the same way in RandomFieldsUtils (in both the 
| > current 0.3.15 and the former version 0.3.8; see functions 
| > sqrtPosDef and sqrtPosDefFree in solve.cc and 
| > init_RandomFieldsUtils.* )
| > 
| > The file direct.cc is the alphabetically first one that 
| > uses an RU_* function, i.e. a function exported from
| > RandomFieldsUtils. Is there a miscommunication between
| > RandomFields and RandomFieldsUtils? 
| > 
| > Best,
| > Martin
| > 
| > 
| > 
| > 
| > On 08.01.2017 09:00, Andreas Tille wrote:
| > > Hi Martin,
| > >
| > > I intended to update the Debian package of randomfields but I've got the
| > > following error:
| > >
| > > ...
| > > g++ -I/usr/share/R/include -DNDEBUG   
-I"/usr/lib/R/site-library/RandomFieldsUtils/include"   -fpic  -g -O2 
-fdebug-prefix-map=/build/r-base-3.3.2=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c cubicsolver.cc 
-o cubicsolver.o
| > > g++ -I/usr/share/R/include -DNDEBUG   
-I"/usr/lib/R/site-library/RandomFieldsUtils/include"   -fpic  -g -O2 
-fdebug-prefix-map=/build/r-base-3.3.2=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g  -c direct.cc -o 
direct.o
| > > direct.cc: In function 'int init_directGauss(cov_model*, gen_storage*)':
| > > direct.cc:196:52: error: 'RU_sqrtPosDefFree' was not declared in this 
scope
| > >err = RU_sqrtPosDefFree(Cov, vdimtot, cov->Ssolve);
| > > ^
| > > /usr/lib/R/etc/Makeconf:139: recipe for target 'direct.o' failed
| > > make[1]: *** [direct.o] Error 1
| > > make[1]: Leaving directory '/build/r-cran-randomfields-3.1.36/src'
| > > make[1]: Entering directory '/build/r-cran-randomfields-3.1.36/src'
| > > make[1]: Leaving directory '/build/r-cran-randomfields-3.1.36/src'
| > > ERROR: compilation failed for package 'RandomFields'
| > >
| > >
| > > Do you have any idea what might be wrong here?
| > >
| > > Kind regards
| > >
| > >   Andreas.
| > >
| > 
| > 
| > -- 
| > Prof. Dr. Martin Schlather
| > Institut für Mathematik
| > Universität Mannheim
| > A5, 6, B 118
| > D-68131 Mannheim 
| > 
| > schlat...@math.uni-mannheim.de  
| > https://ms.math.uni-mannheim.de
| > phone: +49 (0)621 181 2552
| > 
| > 
| 
| -- 
| http://fam-tille.de

-- 
http://dirk.eddelbuettel.com | @eddelbuettel | e...@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


sagemath_7.4-6_source.changes ACCEPTED into unstable

2017-01-09 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 09 Jan 2017 12:53:34 +0100
Source: sagemath
Binary: sagemath sagemath-common sagemath-jupyter sagemath-doc-hu 
sagemath-doc-it sagemath-doc-fr sagemath-doc-ca sagemath-doc-en sagemath-doc-tr 
sagemath-doc-pt sagemath-doc-es sagemath-doc-de sagemath-doc-ja sagemath-doc-ru
Architecture: source
Version: 7.4-6
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Team 

Changed-By: Ximin Luo 
Description:
 sagemath   - Open Source Mathematical Software
 sagemath-common - Open Source Mathematical Software - architecture-independent 
file
 sagemath-doc-ca - Open Source Mathematical Software - documentation (Catalan; 
Valen
 sagemath-doc-de - Open Source Mathematical Software - documentation (German)
 sagemath-doc-en - Open Source Mathematical Software - documentation (English)
 sagemath-doc-es - Open Source Mathematical Software - documentation (Spanish; 
Casti
 sagemath-doc-fr - Open Source Mathematical Software - documentation (French)
 sagemath-doc-hu - Open Source Mathematical Software - documentation (Hungarian)
 sagemath-doc-it - Open Source Mathematical Software - documentation (Italian)
 sagemath-doc-ja - Open Source Mathematical Software - documentation (Japanese)
 sagemath-doc-pt - Open Source Mathematical Software - documentation 
(Portuguese)
 sagemath-doc-ru - Open Source Mathematical Software - documentation (Russian)
 sagemath-doc-tr - Open Source Mathematical Software - documentation (Turkish)
 sagemath-jupyter - Open Source Mathematical Software - Jupyter kernel
Changes:
 sagemath (7.4-6) unstable; urgency=medium
 .
   * Only check dochtml.log for errors if we will actually build the doc
 packages. This helps to avoid FTBFS on low-memory arch-any buildds.
Checksums-Sha1:
 0b5e30763491e9b4b819de7832724546a598ad6e 6369 sagemath_7.4-6.dsc
 3937d661d8c41de4a2956766e9cba90e00851234 111624 sagemath_7.4-6.debian.tar.xz
Checksums-Sha256:
 cf7276afc10c33719144fd26f31e271dc81f60258c98ea8a505b3f00eb2f9b2e 6369 
sagemath_7.4-6.dsc
 c71e651d3e8bdd53fae6320e6dedb218b3237770b7e9e7e677888071231aef4a 111624 
sagemath_7.4-6.debian.tar.xz
Files:
 5a4e7a9dabe63a5bd79e51e15c62200c 6369 math optional sagemath_7.4-6.dsc
 2fbf33e921452c419d8a5f0851a93b5c 111624 math optional 
sagemath_7.4-6.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEoH46ol3M2u2mYo0kjIIWnY7OzSoFAlhzzBMACgkQjIIWnY7O
zSofOQ/8DWFipzCSMaLVKmgn13LEMdr2ebP6meEkMvVyH0ZLjazPA6NAIB4EMmDl
UhXG8UI+lE848rQ2WI6PlOMF1OHahujcO6pvCDXO8zw+Dv+/QAweHD1N3zrWtfX5
F6o7qj1xSFHEmQGVJf13cvZw5pfM/+nU2wu7mEaEqhHA14gEj0pLKZ8WMQt5fNIb
P/IW5Gg3cUXdiit2YmjON6RUY5SrkJHmUrI8ICCWjfGqveebnx0vBbf3js1B7Z6G
l60Irk8vS4hD5ZclPf5OClww/0lSQPkvnN6QbKAtS28YYW0ruoYuPev0wHGhAsoZ
3os0su/0VNRe2YuBQYsbWf86Hzq0BKtaUWKi+qX66uw3S78NDzWL/IeA6zSSsclj
b0UbLQmjBZVLHJhRaXuYKtgV575DyeoO+CiJs9B3cAdCEO3rSwz3l3vsCEoGntiT
8qcWytRe3RXxxjSgsjJKA3H9EFv3hOUsCYD/X6rH6wFWaC1i6dBThDTwGR/PPd7u
Q3JUD+Q7/s5VzDKSerRQDcrYeFfNlIkm8wl7GeGR9u5y49FHDGMo5U30nC2tPkNu
mYfhsTqaniAMWyO3lR5XEg9+1ZrHOk0GQPzPP+buh1h5irTxOxO4wiTooAbjG9TE
prtgguQn/OnV+eIR5IjmL1inLPLc9kBQjkoEA3CsWtrO67ASVh0=
=DRfu
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


Processing of sagemath_7.4-6_source.changes

2017-01-09 Thread Debian FTP Masters
sagemath_7.4-6_source.changes uploaded successfully to localhost
along with the files:
  sagemath_7.4-6.dsc
  sagemath_7.4-6.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.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


lua-torch-torch7_0~20170106-gf624ae9-1_source.changes ACCEPTED into experimental

2017-01-09 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 09 Jan 2017 15:22:10 +
Source: lua-torch-torch7
Binary: lua-torch-torch7 lua-torch-torch7-dev libtorch-th libtorch-th-dev 
libtorch-luat libtorch-luat-dev
Architecture: source
Version: 0~20170106-gf624ae9-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Science Maintainers 

Changed-By: Zhou Mo 
Description:
 libtorch-luat - libluaT.so of Torch Package for Torch Framework
 libtorch-luat-dev - libluaT.so of Torch Package for Torch Framework (dev)
 libtorch-th - libTH.so of Torch Package for Torch Framework
 libtorch-th-dev - libTH.so of Torch Package for Torch Framework (dev)
 lua-torch-torch7 - Torch Package for Torch Framework
 lua-torch-torch7-dev - Torch Package for Torch Framework (dev)
Changes:
 lua-torch-torch7 (0~20170106-gf624ae9-1) experimental; urgency=medium
 .
   * Import upstream snapshot.
   * Disable the OMAP3, OMAP4 and NEON instruction sets for compatibility.
   * Remove symbols.amd64 and symbols.i386, they are same with the master
 symbols control file after the removal of SIMD instructions.
   * Refresh symbols control file.
   * Bump debhelper compat to 10.
Checksums-Sha1:
 feb7af0fd39a78c81f28e067dc71e082fce1a5a4 2628 
lua-torch-torch7_0~20170106-gf624ae9-1.dsc
 3a0294866d5ba57f069027fac6fa73773f1241f5 305068 
lua-torch-torch7_0~20170106-gf624ae9.orig.tar.gz
 7a05ebf2e7b1ec47d0f9c025b1c0f1d172cf8fb6 14612 
lua-torch-torch7_0~20170106-gf624ae9-1.debian.tar.xz
Checksums-Sha256:
 e5757c4b6c564110452355967223bdeca218e1a6b811d93e56ece6b2b3f233bf 2628 
lua-torch-torch7_0~20170106-gf624ae9-1.dsc
 9cff9bc4b7a8e9ef5641a5dd162d309484fb0d6c764e91a17cbfdae9ee3808a2 305068 
lua-torch-torch7_0~20170106-gf624ae9.orig.tar.gz
 0578434b4099c749f840326818ee7776c6a52b22a9f051f04145c406498f7558 14612 
lua-torch-torch7_0~20170106-gf624ae9-1.debian.tar.xz
Files:
 7e6d2c224bc0e4fb71ec247116523fdf 2628 interpreters optional 
lua-torch-torch7_0~20170106-gf624ae9-1.dsc
 8bab986ef19ffc327483c6754efafc14 305068 interpreters optional 
lua-torch-torch7_0~20170106-gf624ae9.orig.tar.gz
 2fd610fd8dd064fd245aee93edb3b01e 14612 interpreters optional 
lua-torch-torch7_0~20170106-gf624ae9-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEY4vHXsHlxYkGfjXeYmRes19oaooFAlhzqvEACgkQYmRes19o
aorzJw//Zf3qc7CbZhqxSU1/8qkEWOZogEziRoFrXt1Kfko/33Cgl4R8h33p+V+j
GJTHZFRo3qPWTxjTaVI0jXOpB01mgJfnSQ++1bQrrA8NUwlAUOeAxNos2Ei29AEc
TNbc48JealGtzxUNkOeyCWAgLNLwXKtYvBEzMGoauosN8pZRoKsJa310SksfzqoQ
EMqGBMUp31eNL+JwEb7lt5sP4dDvVXASbobq2Q0LesAW6i5bik+dtNLV+HfHaXWS
rfFUWLwUZsb1tEVtCSOCvSZpxqEbGlWA4WLglxKBErBDyuPasIeX4n2NXZqh2MGd
S77odvqTxKOcmgvfM5CpSo7h9U6Iy0TcYpHwhEVu++8cupmWutqqZUzCHoAFZn/N
5YZ6+fqrPTX8T84fD5JJYIl46aUs9aqrhxqvvU4XIpzJ+CCFlydE5eRJZuzRkva8
kuQK76pguvBz4svHoWW2X3bsMFpd+rjfGaZ4om0lZDFcXDkBYPEgfJloOdM70Wbr
DC/5cjiw0k0gUQH5oYJoMTFDgoXX6C85ryfjiItPD4BR8vS/TuboA0e+io3Zk/N8
tgXRnR29eJcQg2ZUm+x0fa4knsWKH1Y9o01/hwOG4WC0SQGjVHpW11zFCalP88Gb
2XXkQAduvki2nFLmjt5Nnnat69IhLWUrb+STJAV+EP7GN/9TGMQ=
=XWS2
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


Processing of lua-torch-torch7_0~20170106-gf624ae9-1_source.changes

2017-01-09 Thread Debian FTP Masters
lua-torch-torch7_0~20170106-gf624ae9-1_source.changes uploaded successfully to 
localhost
along with the files:
  lua-torch-torch7_0~20170106-gf624ae9-1.dsc
  lua-torch-torch7_0~20170106-gf624ae9.orig.tar.gz
  lua-torch-torch7_0~20170106-gf624ae9-1.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.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#850699: h5py: FTBFS [mips, ppc64el, s390x]: test failures

2017-01-09 Thread Ghislain Antony Vaillant
Source: h5py
Version: 2.7.0~rc2-1
Severity: serious
Justification: fails to build from source (but built successfully in the past)
Usertags: mips-port ppc64el

The new release of h5py fails to build on several architectures
including some major ones (mips, ppc64el and s390x). For each
architecture, the build fails at the testing stage [1-3].

[1] 
https://buildd.debian.org/status/fetch.php?pkg=h5py&arch=mips&ver=2.7.0~rc2-1&stamp=1483741720
[2] 
https://buildd.debian.org/status/fetch.php?pkg=h5py&arch=ppc64el&ver=2.7.0~rc2-1&stamp=1483739258
[3] 
https://buildd.debian.org/status/fetch.php?pkg=h5py&arch=s390x&ver=2.7.0~rc2-1&stamp=1483739226

Ghis


-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 4.8.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

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


lua-torch-cwrap_0~20160222-gdbd0a62-3_source.changes ACCEPTED into experimental

2017-01-09 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 09 Jan 2017 12:58:05 +
Source: lua-torch-cwrap
Binary: lua-torch-cwrap
Architecture: source
Version: 0~20160222-gdbd0a62-3
Distribution: experimental
Urgency: medium
Maintainer: Debian Science Maintainers 

Changed-By: Zhou Mo 
Description:
 lua-torch-cwrap - CWrap package for Torch Framework
Changes:
 lua-torch-cwrap (0~20160222-gdbd0a62-3) experimental; urgency=medium
 .
   * Luajit is prior to lua5.1 in Depends field.
   * Bump debhelper compat to 10.
Checksums-Sha1:
 660409e320df236c7a97adadb4546538df3b87d3 2161 
lua-torch-cwrap_0~20160222-gdbd0a62-3.dsc
 569a7b0057d5eee30b07b0dad4e3c7a750606ffe 2744 
lua-torch-cwrap_0~20160222-gdbd0a62-3.debian.tar.xz
Checksums-Sha256:
 64f14ae04213ecb008010e32132c0dd7949f16bd37545121d8b5ba5e625225b4 2161 
lua-torch-cwrap_0~20160222-gdbd0a62-3.dsc
 2b452ce783e2543f4765fad86e7b6e3f329593ab7fd33dc52d0928e3c0180a42 2744 
lua-torch-cwrap_0~20160222-gdbd0a62-3.debian.tar.xz
Files:
 e956e05c0c48ad4b38cff73a83a5fa97 2161 interpreters optional 
lua-torch-cwrap_0~20160222-gdbd0a62-3.dsc
 a61275235ca44a30d37c4e19446ac3af 2744 interpreters optional 
lua-torch-cwrap_0~20160222-gdbd0a62-3.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEY4vHXsHlxYkGfjXeYmRes19oaooFAlhziTMACgkQYmRes19o
aorN/w//YHXSA7twJfzK7o0/IEF9W/wMBCRMxABgolEQ3D5C2X0dnVbamP6NJwei
Rana0+nJm5XtuuR2pbSfnbr/ZzJNF2hoJUK0+k12fYAXq/XZ49Q4H7RR8ghSpWy8
zNigT65xEdMetS5aIrKBDa+t/XENuVz4jAsIYPUWGnDkcZGVzbt46rJMddyylbcw
UtAZ1gNl5WJfXXCH6xWLriqURfsmfCH7cASXUzMo9vbeg2zr0iHE29nqviVPVX3n
GgszjVu6gfMIPB5fmnpOrcFTejnHqleHg1iBlI5Q3YTKF/qbRuZhqDLHmA9ls31k
bbQSB9V+5oQ8e3u2Vf8ze6/fa3muea9HZOFWVFoOrR3jbrzkKErnuRqhdUwepU8a
UmGlImK3zbQ9jpZzecRUjLewhcEGJOGY69y1Mu+y6tnxy+aayfdOvZBs9rzKap/b
M/QnEHaI6DdnQa78FmgKXcghHRCXY9pZ9DIqJg3037/+Yn93X7DEIbrwVWq7IifF
RnRznpKecllrw8oiu60+ZLe6HNT11PCJGR/6lIoF46KZOr4hVk1xGxNRDOK5J8lv
Ajs5RIfM99rL+i6LP2wsJrYHvQYkiYRgZg67UsHC1Rj/c3139azugRyC0yKbXgIf
+sgz86MZPRm9PpHiZbuweZFKryB8WPzWL3sL2UuGm3EieQy3fm0=
=f2kZ
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


Processing of lua-torch-cwrap_0~20160222-gdbd0a62-3_source.changes

2017-01-09 Thread Debian FTP Masters
lua-torch-cwrap_0~20160222-gdbd0a62-3_source.changes uploaded successfully to 
localhost
along with the files:
  lua-torch-cwrap_0~20160222-gdbd0a62-3.dsc
  lua-torch-cwrap_0~20160222-gdbd0a62-3.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.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


Re: r-cran-zelig_5.0-13-1_amd64.changes is NEW

2017-01-09 Thread Andreas Tille
Hi ftpmasters,

just a note for this package:  Despite this package is not new and you
might consider fastprocessing please note that it needs two
(Build-)Depends that are currently in the new queue (r-cran-survey and
r-cran-aer).

The package somehow escaped my general overhaul of all R packages -
possibly since it was not (yet) team maintained and the source package
name did not followed the r-cran-* naming scheme.  Both is fixed now.

I confirm that I understand that its to late for the next stable release
I just want to make sure that the dependencies will be accepted before
this package.

Happy new year to all ftpmasters and thanks for your work

  Andreas.

On Mon, Jan 09, 2017 at 09:34:04AM +, Debian FTP Masters wrote:
> source:r-cran-zelig is NEW.
> 
> Your package has been put into the NEW queue, which requires manual action
> from the ftpteam to process. The upload was otherwise valid (it had a good
> OpenPGP signature and file hashes are valid), so please be patient.
> 
> Packages are routinely processed through to the archive, and do feel
> free to browse the NEW queue[1].
> 
> If there is an issue with the upload, you will receive an email from a
> member of the ftpteam.
> 
> If you have any questions, you may reply to this email.
> 
> [1]: https://ftp-master.debian.org/new.html
>  or https://ftp-master.debian.org/backports-new.html for *-backports
> 
> -- 
> debian-science-maintainers mailing list
> debian-science-maintainers@lists.alioth.debian.org
> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers
> 

-- 
http://fam-tille.de

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


r-cran-zelig_5.0-13-1_amd64.changes is NEW

2017-01-09 Thread Debian FTP Masters
source:r-cran-zelig is NEW.

Your package has been put into the NEW queue, which requires manual action
from the ftpteam to process. The upload was otherwise valid (it had a good
OpenPGP signature and file hashes are valid), so please be patient.

Packages are routinely processed through to the archive, and do feel
free to browse the NEW queue[1].

If there is an issue with the upload, you will receive an email from a
member of the ftpteam.

If you have any questions, you may reply to this email.

[1]: https://ftp-master.debian.org/new.html
 or https://ftp-master.debian.org/backports-new.html for *-backports

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


Processing of r-cran-zelig_5.0-13-1_amd64.changes

2017-01-09 Thread Debian FTP Masters
r-cran-zelig_5.0-13-1_amd64.changes uploaded successfully to localhost
along with the files:
  r-cran-zelig_5.0-13-1.dsc
  r-cran-zelig_5.0-13.orig.tar.gz
  r-cran-zelig_5.0-13-1.debian.tar.xz
  r-cran-zelig_5.0-13-1_all.deb
  r-cran-zelig_5.0-13-1_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.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


r-cran-gsl_1.9-10.3-1_amd64.changes ACCEPTED into unstable

2017-01-09 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 09 Jan 2017 09:14:25 +0100
Source: r-cran-gsl
Binary: r-cran-gsl
Architecture: source amd64
Version: 1.9-10.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Team 

Changed-By: Andreas Tille 
Description:
 r-cran-gsl - GNU R wrapper for the GNU Scientific Library
Changes:
 r-cran-gsl (1.9-10.3-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 58435b643b1e27644f8a225a55a7b6fa313f3b31 2072 r-cran-gsl_1.9-10.3-1.dsc
 83dd4aef596abbf9b376d84c31afb4c05e7ef211 172529 r-cran-gsl_1.9-10.3.orig.tar.gz
 a8106095058881c576c2876ee4a8149d2c00cbfe 2072 
r-cran-gsl_1.9-10.3-1.debian.tar.xz
 50905826abb2e1dc6cbc501917389f01a9bc1ac9 65170 
r-cran-gsl-dbgsym_1.9-10.3-1_amd64.deb
 62daee2015a19b85b4216083537b5ca20aa9a3e8 7626 
r-cran-gsl_1.9-10.3-1_amd64.buildinfo
 268f0281b7d5f10e47360c5e2a2c9ea4b703de64 308116 r-cran-gsl_1.9-10.3-1_amd64.deb
Checksums-Sha256:
 8fe58668a1ce538a064448636bd475d9596a942e211715ddbf39a8eea0d19ae2 2072 
r-cran-gsl_1.9-10.3-1.dsc
 4f9fc4dc8170ba93c9b45940448da089ce9ad4c45ba39c8f264e1505a3e03a02 172529 
r-cran-gsl_1.9-10.3.orig.tar.gz
 caffc0d2639e7070e5ac400da16ec3ddbd06d12499ec871618e8fac08aa6a498 2072 
r-cran-gsl_1.9-10.3-1.debian.tar.xz
 c8407ec08baef1a1b45dc50ee042c114b18a5d55c3834c83343034497dfc3b47 65170 
r-cran-gsl-dbgsym_1.9-10.3-1_amd64.deb
 db264faa8eacfad99815d7517206355f34872c5c5e92277dff7af1ff1bd2d086 7626 
r-cran-gsl_1.9-10.3-1_amd64.buildinfo
 5c38cda707fb72529936d93d7f1e12c267b9557fec1cd68ed37a6c8d8228de89 308116 
r-cran-gsl_1.9-10.3-1_amd64.deb
Files:
 61da2224ad52cea79f9bcc4ff3d7bfdf 2072 gnu-r optional r-cran-gsl_1.9-10.3-1.dsc
 e796a7fee81f8808b249c7efe410721f 172529 gnu-r optional 
r-cran-gsl_1.9-10.3.orig.tar.gz
 834be39f9d116533b55792a7893a8903 2072 gnu-r optional 
r-cran-gsl_1.9-10.3-1.debian.tar.xz
 40cd572c14b6b460d0bdb838aef85de0 65170 debug extra 
r-cran-gsl-dbgsym_1.9-10.3-1_amd64.deb
 092152b17c89544b287b7985c9aba1f2 7626 gnu-r optional 
r-cran-gsl_1.9-10.3-1_amd64.buildinfo
 60f0ac406463c7ed59f38d6f82700d7a 308116 gnu-r optional 
r-cran-gsl_1.9-10.3-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJYc0m/AAoJEFeKBJTRxkbR5akP/RIkXALngViFrOI0I2hZkABf
xIdTEWuiD90Z/lr5A5SbCDfeA6qH9vbRKtjCRE+yQ5PJtDKBTnOsXxS8rBazhiim
65QP1Y3yuxl3XROno/lFGG9qsmLSEANHAO9tu6gkanUnGtWvZU4TXaRD3VyxUjHv
Bfd33eFDpupCcEWNzSIj4cDPCEG+JCC39mX9NtUQbDe+wP0DuHpPnF8Pq8zAIWTt
tXuSqniV7LQXWT913ys93HbXAZacRLoiZFXHpIbsZTa9ZRTSCQ4FEdOKJ9KcQCYB
/p0VbSUnyGnu2EDcTF+ZFsuQ2GEPWGpRASp7w0Izd7W8Z+Tc7ITAHyZCP8JxSiyz
0wn0SGqZ5CRPEyqevPgXTpr2+aEgy5wBgLa/D0/1ybF/VlNmU3mpuZpyl5gUwfi+
slSrvE6e3slH850XNiSzbLgvyfr4/xJwEaU5ASIdM7X1LuYs2qSAULBVY3n3WK0V
jmH/1q6FzvYpnwpQrBvtH7Of5aiQLYerjNi/LItNCCass75HsGR71AWuFIwsIqpU
5k6bI4TdmjdhfxuuJgVxugkp2M72rhdhpk7Wu1/73Xgzzsi9nJ/BFTFFkyK1ZPFr
u30Od4+YJ4RDgdP+GuBziSISRTCNSuHuBC+1D4lJVuQ2HcAc+gc4MSaCl8kVjyas
ecFAbuT2mS2ROfqNi8k3
=xqoW
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


pybind11_2.0.1-1_amd64.changes REJECTED

2017-01-09 Thread Debian FTP Masters


Version check failed:
Your upload included the source package pybind11, version 2.0.1-1,
however unstable already has version 2.0.1-1.
Uploads to unstable must have a higher version than present in unstable.



===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.


-- 
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#848137: Fwd: Re: Bug#848137: problem with the upgrade of tango-db

2017-01-09 Thread Andreas Beckmann



 Forwarded Message 
Subject: Re: Bug#848137: problem with the upgrade of tango-db
Date: Mon, 9 Jan 2017 10:00:59 +0100
From: Andreas Beckmann 
To: Paul Gevers 

On 2017-01-08 22:29, Paul Gevers wrote:
> It would still be nice to confirm that this issue exists (in
> experimental) since 30 Mar 2015 (or dbconfig-common release 1.8.50).

Hi Paul,

here are my piuparts test results for tango-db in experimental and sid
I haven't looked at the old logs (and I would have only the most recent
log for any given version anyway, unless they got pruned as well).

Note that failures for database-needing packages may be false positives:
* in case another database-needing test is running in parallel, but in
that case the tests get retried quickly
* piuparts may need some manual tuning and hinting w.r.t. database
related tests for new db versions etc.

What's most interesting for you is probably a pass->fail transition
without a tango-db version change.

#unix-timestamp result package version
1365584782 fail tango-db 8.0.5+dfsg-1
1365972246 fail tango-db 8.0.5+dfsg-1
1366404361 fail tango-db 8.0.5+dfsg-1
1366837036 fail tango-db 8.0.5+dfsg-1
1367268394 fail tango-db 8.0.5+dfsg-1
1367700038 fail tango-db 8.0.5+dfsg-1
1458192160 pass tango-db 9.2.1+dfsg-1~exp1
1458326959 fail tango-db 9.2.2+dfsg-1~exp1
1458335108 fail tango-db 9.2.2+dfsg-1~exp1
1458343434 pass tango-db 9.2.2+dfsg-1~exp1
1461966656 fail tango-db 9.2.2+dfsg-1~exp1
1461971652 pass tango-db 9.2.2+dfsg-1~exp1
1462467635 pass tango-db 9.2.2+dfsg-1~exp3
1464182034 pass tango-db 9.2.2+dfsg-1~exp4
1466511633 pass tango-db 9.2.2+dfsg-1~exp4
1469243630 pass tango-db 9.2.2+dfsg-1~exp4
1471711054 fail tango-db 9.2.2+dfsg-1~exp4
1471712607 fail tango-db 9.2.2+dfsg-1~exp4
1471722930 fail tango-db 9.2.2+dfsg-1~exp4
1471731762 fail tango-db 9.2.2+dfsg-1~exp4
1471734746 fail tango-db 9.2.2+dfsg-1~exp4
1471744830 fail tango-db 9.2.2+dfsg-1~exp4
1471752732 fail tango-db 9.2.2+dfsg-1~exp4
1471756011 fail tango-db 9.2.2+dfsg-1~exp4
1471766128 fail tango-db 9.2.2+dfsg-1~exp4
1471778445 fail tango-db 9.2.2+dfsg-1~exp4
1471787659 fail tango-db 9.2.2+dfsg-1~exp4
1471796270 fail tango-db 9.2.2+dfsg-1~exp4
1471798510 fail tango-db 9.2.2+dfsg-1~exp4
1471809200 fail tango-db 9.2.2+dfsg-1~exp4
1471818401 fail tango-db 9.2.2+dfsg-1~exp4
1471820132 fail tango-db 9.2.2+dfsg-1~exp4
1471830853 fail tango-db 9.2.2+dfsg-1~exp4
1471848371 fail tango-db 9.2.2+dfsg-1~exp4
1471852816 fail tango-db 9.2.2+dfsg-1~exp4
1471860490 fail tango-db 9.2.2+dfsg-1~exp4
1471864122 fail tango-db 9.2.2+dfsg-1~exp4
1471875376 fail tango-db 9.2.2+dfsg-1~exp4
1471885775 fail tango-db 9.2.2+dfsg-1~exp4
1471895838 fail tango-db 9.2.2+dfsg-1~exp4
1471904684 fail tango-db 9.2.2+dfsg-1~exp4
1471906715 fail tango-db 9.2.2+dfsg-1~exp4
1471917794 fail tango-db 9.2.2+dfsg-1~exp4
1471933628 fail tango-db 9.2.2+dfsg-1~exp4
1471938701 fail tango-db 9.2.2+dfsg-1~exp4
1471946968 fail tango-db 9.2.2+dfsg-1~exp4
1471950442 fail tango-db 9.2.2+dfsg-1~exp4
1471960451 fail tango-db 9.2.2+dfsg-1~exp4
1471973073 fail tango-db 9.2.2+dfsg-1~exp4
1471985087 fail tango-db 9.2.2+dfsg-1~exp4
1471991323 fail tango-db 9.2.2+dfsg-1~exp4
1471994452 fail tango-db 9.2.2+dfsg-1~exp4
1472003277 fail tango-db 9.2.2+dfsg-1~exp4
1472021245 fail tango-db 9.2.2+dfsg-1~exp4
1472025925 fail tango-db 9.2.2+dfsg-1~exp4
1472033680 fail tango-db 9.2.2+dfsg-1~exp4
1472036410 fail tango-db 9.2.2+dfsg-1~exp4
1472047321 fail tango-db 9.2.2+dfsg-1~exp4
1472057904 fail tango-db 9.2.2+dfsg-1~exp4
1472068624 fail tango-db 9.2.2+dfsg-1~exp4
1472077391 fail tango-db 9.2.2+dfsg-1~exp4
1472079604 fail tango-db 9.2.2+dfsg-1~exp4
1472090371 fail tango-db 9.2.2+dfsg-1~exp4
1472105325 fail tango-db 9.2.2+dfsg-1~exp4
1472112064 fail tango-db 9.2.2+dfsg-1~exp4
1472120114 fail tango-db 9.2.2+dfsg-1~exp4
1472123114 fail tango-db 9.2.2+dfsg-1~exp4
1472133445 fail tango-db 9.2.2+dfsg-1~exp4
1472145070 fail tango-db 9.2.2+dfsg-1~exp4
1472155177 fail tango-db 9.2.2+dfsg-1~exp4
1472163647 fail tango-db 9.2.2+dfsg-1~exp4
1472166891 fail tango-db 9.2.2+dfsg-1~exp4
1472177617 fail tango-db 9.2.2+dfsg-1~exp4
1472187922 fail tango-db 9.2.2+dfsg-1~exp4
1472198226 fail tango-db 9.2.2+dfsg-1~exp4
1472207582 fail tango-db 9.2.2+dfsg-1~exp4
1472209921 fail tango-db 9.2.2+dfsg-1~exp4
1472221050 fail tango-db 9.2.2+dfsg-1~exp4
1472230232 fail tango-db 9.2.2+dfsg-1~exp4
1472241988 fail tango-db 9.2.2+dfsg-1~exp4
1472252592 fail tango-db 9.2.2+dfsg-1~exp4
1472263460 fail tango-db 9.2.2+dfsg-1~exp4
1472278410 fail tango-db 9.2.2+dfsg-1~exp4
1472284927 fail tango-db 9.2.2+dfsg-1~exp4
1472292821 fail tango-db 9.2.2+dfsg-1~exp4
1472295713 fail tango-db 9.2.2+dfsg-1~exp4
1472306964 fail tango-db 9.2.2+dfsg-1~exp4
1472317336 fail tango-db 9.2.2+dfsg-1~exp4
1472328077 fail tango-db 9.2.2+dfsg-1~exp4
1472335687 fail tango-db 9.2.2+dfsg-1~exp4
1472339378 fail tango-db 9.2.2+dfsg-1~exp4
1472350020 fail tango-db 9.2.2+dfsg-1~exp4
1472362508 fail tango-db 9.2.2+dfsg-1~exp4
1472371841 fail tang

Processing of pybind11_2.0.1-1_amd64.changes

2017-01-09 Thread Debian FTP Masters
pybind11_2.0.1-1_amd64.changes uploaded successfully to localhost
along with the files:
  pybind11_2.0.1-1.dsc
  pybind11_2.0.1.orig.tar.gz
  pybind11_2.0.1-1.debian.tar.xz
  pybind11-dev_2.0.1-1_all.deb
  pybind11-doc_2.0.1-1_all.deb
  pybind11_2.0.1-1_amd64.buildinfo
  python-pybind11_2.0.1-1_all.deb
  python3-pybind11_2.0.1-1_all.deb

Greetings,

Your Debian queue daemon (running on host usper.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


Processing of r-cran-gsl_1.9-10.3-1_amd64.changes

2017-01-09 Thread Debian FTP Masters
r-cran-gsl_1.9-10.3-1_amd64.changes uploaded successfully to localhost
along with the files:
  r-cran-gsl_1.9-10.3-1.dsc
  r-cran-gsl_1.9-10.3.orig.tar.gz
  r-cran-gsl_1.9-10.3-1.debian.tar.xz
  r-cran-gsl-dbgsym_1.9-10.3-1_amd64.deb
  r-cran-gsl_1.9-10.3-1_amd64.buildinfo
  r-cran-gsl_1.9-10.3-1_amd64.deb

Greetings,

Your Debian queue daemon (running on host usper.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