Your message dated Tue, 01 Nov 2016 12:07:52 +0000
with message-id <[email protected]>
and subject line Bug#841975: fixed in scilab 5.5.2-3
has caused the Debian Bug report #841975,
regarding src:scilab: Please support building with HDF5 1.10
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.)


-- 
841975: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=841975
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:scilab
Version: 5.5.2-2
Severity: important
Tags: patch

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Hi,

Please find attached a patch to support building against HDF5-1.10 currently in 
experimental. This patch partly comes from upstream ticket #14539 [1].

[1] https://bugzilla.scilab.org/show_bug.cgi?id=14539

I intend to request a transition slot this week, and will upload if need be, as 
member of the Debian Science team.

Thanks,

_g.

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

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

-----BEGIN PGP SIGNATURE-----

iQEcBAEBCAAGBQJYDnitAAoJEO/obGx//s+DO0wIALLEK4eTLTT0hK1wVPA9p/Hx
bBWmn79jYXyyic83vN7C3ZlQ7WHBmXU+bLNFQGw+DwIn5dKmd/a5/55jqcp5BFoG
7zhOsU4tb0ro21zvbNcMjgJbt/Ilvf3xPq6fN6QNpQqDmtuIuGX8vVVbbMFp3y7i
PBIX+bE7xfwWRzhhjXMGRRdoZ6wKHyxIEmp92OLBKkr8EvOft4Dmj2Z2BvmOyi0/
Uc6xVOEC+TlAguVtSevewX+gBACbEiBQyf05snIRQV1DA5ntRKMhiZy5iGZLE4gP
zzdMiRZInBYUCo7oNa1xVl+czE+qyL0F+/HpWQPD9qik4l45297NVGmsdgnohrY=
=T6xH
-----END PGP SIGNATURE-----
diff -Nru scilab-5.5.2/debian/changelog scilab-5.5.2/debian/changelog
--- scilab-5.5.2/debian/changelog	2015-10-30 10:22:41.000000000 +0100
+++ scilab-5.5.2/debian/changelog	2016-10-22 15:54:38.000000000 +0200
@@ -1,3 +1,9 @@
+scilab (5.5.2-3) unstable; urgency=medium
+
+  * New patch to support HDF5-1.10
+
+ -- Gilles Filippini <[email protected]>  Sat, 22 Oct 2016 15:54:20 +0200
+
 scilab (5.5.2-2) unstable; urgency=medium
 
   * Team upload.
diff -Nru scilab-5.5.2/debian/patches/hdf5-1.10-api.patch scilab-5.5.2/debian/patches/hdf5-1.10-api.patch
--- scilab-5.5.2/debian/patches/hdf5-1.10-api.patch	1970-01-01 01:00:00.000000000 +0100
+++ scilab-5.5.2/debian/patches/hdf5-1.10-api.patch	2016-10-24 21:14:57.000000000 +0200
@@ -0,0 +1,331 @@
+Index: scilab-5.5.2/m4/hdf5.m4
+===================================================================
+--- scilab-5.5.2.orig/m4/hdf5.m4
++++ scilab-5.5.2/m4/hdf5.m4
+@@ -65,6 +65,11 @@ if test "x$with_hdf5_library" != "xyes";
+             [AC_MSG_ERROR([libhdf5 or libhdf5_hl: library missing. (Cannot find symbol H5Fopen) in $with_hdf5_library. Check if libhdf5 is installed and if the version is correct])],
+             [-lz]
+             )
++    AC_CHECK_LIB([hdf5], [H5Rdereference2],
++            [FORCE_HDF_1_10_API="-DH5Rdereference_vers=2"],
++            [],
++            [-lz]
++            )
+ else
+     if $WITH_DEVTOOLS; then # Scilab thirparties
+         HDF5_LIBS="-L$DEVTOOLS_LIBDIR -lhdf5 -lhdf5_hl"
+@@ -93,6 +98,7 @@ LIBS="$save_LIBS"
+ 
+ AC_SUBST(HDF5_LIBS)
+ AC_SUBST(HDF5_CFLAGS)
++AC_SUBST(FORCE_HDF_1_10_API)
+ 
+ AC_DEFINE([WITH_HDF5], [], [With the HDF5 library])
+ 
+Index: scilab-5.5.2/modules/hdf5/Makefile.am
+===================================================================
+--- scilab-5.5.2.orig/modules/hdf5/Makefile.am
++++ scilab-5.5.2/modules/hdf5/Makefile.am
+@@ -86,6 +86,8 @@ FORCE_HDF_1.8_API =  -DH5Dopen_vers=2 -D
+  -DH5Gcreate_vers=2 -DH5Gopen_vers=2 -DH5Tget_array_dims_vers=2 \
+  -DH5Acreate_vers=2 -DNO_DEPRECATED_SYMBOLS
+ 
++FORCE_HDF_1.10_API = @FORCE_HDF_1_10_API@
++
+ libscihdf5_la_CPPFLAGS = -I$(srcdir)/includes/ \
+ 				-I$(srcdir)/src/c/ \
+ 				-I$(srcdir)/src/cpp/ \
+@@ -98,7 +100,8 @@ libscihdf5_la_CPPFLAGS = -I$(srcdir)/inc
+ 				$(JAVA_JNI_INCLUDE) \
+ 				$(HDF5_CFLAGS) \
+ 				$(AM_CPPFLAGS) \
+-				$(FORCE_HDF_1.8_API)
++				$(FORCE_HDF_1.8_API) \
++				$(FORCE_HDF_1.10_API)
+ 
+ 
+ 
+Index: scilab-5.5.2/modules/hdf5/src/c/h5_readDataFromFile.c
+===================================================================
+--- scilab-5.5.2.orig/modules/hdf5/src/c/h5_readDataFromFile.c
++++ scilab-5.5.2/modules/hdf5/src/c/h5_readDataFromFile.c
+@@ -716,7 +716,11 @@ int readCommonPolyMatrix(int _iDatasetId
+         /*
+          * Open the referenced object, get its name and type.
+          */
+-        obj = H5Rdereference(_iDatasetId, H5R_OBJECT, &pData[i]);
++        obj = H5Rdereference(_iDatasetId,
++    #if H5_VERSION_GE(1,10,0)
++                             H5P_DATASET_ACCESS_DEFAULT,
++    #endif
++                             H5R_OBJECT, &pData[i]);
+         if (_iComplex)
+         {
+             status = readComplexPoly(obj, &_piNbCoef[i], &_pdblReal[i], &_pdblImg[i]);
+@@ -950,7 +954,11 @@ int readCommonSparseComplexMatrix(int _i
+     }
+ 
+     //read Row data
+-    obj = H5Rdereference(_iDatasetId, H5R_OBJECT, &pRef[0]);
++    obj = H5Rdereference(_iDatasetId,
++#if H5_VERSION_GE(1,10,0)
++                         H5P_DATASET_ACCESS_DEFAULT,
++#endif
++                         H5R_OBJECT, &pRef[0]);
+     status = readInteger32Matrix(obj, _piNbItemRow);
+     if (status < 0)
+     {
+@@ -958,7 +966,11 @@ int readCommonSparseComplexMatrix(int _i
+     }
+ 
+     //read cols data
+-    obj = H5Rdereference(_iDatasetId, H5R_OBJECT, &pRef[1]);
++    obj = H5Rdereference(_iDatasetId,
++#if H5_VERSION_GE(1,10,0)
++                         H5P_DATASET_ACCESS_DEFAULT,
++#endif
++                         H5R_OBJECT, &pRef[1]);
+     status = readInteger32Matrix(obj, _piColPos);
+     if (status < 0)
+     {
+@@ -966,7 +978,11 @@ int readCommonSparseComplexMatrix(int _i
+     }
+ 
+     //read sparse data
+-    obj = H5Rdereference(_iDatasetId, H5R_OBJECT, &pRef[2]);
++    obj = H5Rdereference(_iDatasetId,
++#if H5_VERSION_GE(1,10,0)
++                         H5P_DATASET_ACCESS_DEFAULT,
++#endif
++                         H5R_OBJECT, &pRef[2]);
+ 
+     if (_iComplex)
+     {
+@@ -1017,7 +1033,11 @@ int readBooleanSparseMatrix(int _iDatase
+     }
+ 
+     //read Row data
+-    obj = H5Rdereference(_iDatasetId, H5R_OBJECT, &pRef[0]);
++    obj = H5Rdereference(_iDatasetId,
++#if H5_VERSION_GE(1,10,0)
++                         H5P_DATASET_ACCESS_DEFAULT,
++#endif
++                         H5R_OBJECT, &pRef[0]);
+     status = readInteger32Matrix(obj, _piNbItemRow);
+     if (status < 0)
+     {
+@@ -1027,7 +1047,11 @@ int readBooleanSparseMatrix(int _iDatase
+     if (_iNbItem != 0)
+     {
+         //read cols data
+-        obj = H5Rdereference(_iDatasetId, H5R_OBJECT, &pRef[1]);
++        obj = H5Rdereference(_iDatasetId,
++    #if H5_VERSION_GE(1,10,0)
++                             H5P_DATASET_ACCESS_DEFAULT,
++    #endif
++                             H5R_OBJECT, &pRef[1]);
+         status = readInteger32Matrix(obj, _piColPos);
+         if (status < 0)
+         {
+@@ -1132,7 +1156,11 @@ int getListItemDataset(int _iDatasetId,
+ {
+     hobj_ref_t poRef = ((hobj_ref_t *) _piItemRef)[_iItemPos];
+ 
+-    *_piItemDataset = H5Rdereference(_iDatasetId, H5R_OBJECT, &poRef);
++    *_piItemDataset = H5Rdereference(_iDatasetId,
++#if H5_VERSION_GE(1,10,0)
++                                     H5P_DATASET_ACCESS_DEFAULT,
++#endif
++                                     H5R_OBJECT, &poRef);
+ 
+     if (*_piItemDataset == 0)
+     {
+Index: scilab-5.5.2/modules/hdf5/src/c/h5_readDataFromFile_v1.c
+===================================================================
+--- scilab-5.5.2.orig/modules/hdf5/src/c/h5_readDataFromFile_v1.c
++++ scilab-5.5.2/modules/hdf5/src/c/h5_readDataFromFile_v1.c
+@@ -471,7 +471,11 @@ int readDoubleMatrix_v1(int _iDatasetId,
+         }
+ 
+         //Open the referenced object, get its name and type.
+-        obj = H5Rdereference(_iDatasetId, H5R_OBJECT, &Ref);
++        obj = H5Rdereference(_iDatasetId,
++    #if H5_VERSION_GE(1,10,0)
++                             H5P_DATASET_ACCESS_DEFAULT,
++    #endif
++                             H5R_OBJECT, &Ref);
+         readDouble_v1(obj, _iRows, _iCols, _pdblData);
+     }
+ 
+@@ -498,14 +502,22 @@ int readDoubleComplexMatrix_v1(int _iDat
+     }
+ 
+     //Open the referenced object, get its name and type.
+-    obj = H5Rdereference(_iDatasetId, H5R_OBJECT, &pRef[0]);
++    obj = H5Rdereference(_iDatasetId,
++#if H5_VERSION_GE(1,10,0)
++                         H5P_DATASET_ACCESS_DEFAULT,
++#endif
++                         H5R_OBJECT, &pRef[0]);
+     status = readDouble_v1(obj, _iRows, _iCols, _pdblReal);
+     if (status < 0)
+     {
+         return -1;
+     }
+ 
+-    obj = H5Rdereference(_iDatasetId, H5R_OBJECT, &pRef[1]);
++    obj = H5Rdereference(_iDatasetId,
++#if H5_VERSION_GE(1,10,0)
++                         H5P_DATASET_ACCESS_DEFAULT,
++#endif
++                         H5R_OBJECT, &pRef[1]);
+     status = readDouble_v1(obj, _iRows, _iCols, _pdblImg);
+     if (status < 0)
+     {
+@@ -831,7 +843,11 @@ int readCommonPolyMatrix_v1(int _iDatase
+         /*
+         * Open the referenced object, get its name and type.
+         */
+-        obj = H5Rdereference(_iDatasetId, H5R_OBJECT, &pData[i]);
++        obj = H5Rdereference(_iDatasetId,
++    #if H5_VERSION_GE(1,10,0)
++                             H5P_DATASET_ACCESS_DEFAULT,
++    #endif
++                             H5R_OBJECT, &pData[i]);
+         if (_iComplex)
+         {
+             status = readComplexPoly_v1(obj, &_piNbCoef[i], &_pdblReal[i], &_pdblImg[i]);
+@@ -1066,7 +1082,11 @@ int readCommonSparseComplexMatrix_v1(int
+     }
+ 
+     //read Row data
+-    obj = H5Rdereference(_iDatasetId, H5R_OBJECT, &pRef[0]);
++    obj = H5Rdereference(_iDatasetId,
++#if H5_VERSION_GE(1,10,0)
++                         H5P_DATASET_ACCESS_DEFAULT,
++#endif
++                         H5R_OBJECT, &pRef[0]);
+     status = readInteger32Matrix_v1(obj, 1, _iRows, _piNbItemRow);
+     if (status < 0)
+     {
+@@ -1074,7 +1094,11 @@ int readCommonSparseComplexMatrix_v1(int
+     }
+ 
+     //read cols data
+-    obj = H5Rdereference(_iDatasetId, H5R_OBJECT, &pRef[1]);
++    obj = H5Rdereference(_iDatasetId,
++#if H5_VERSION_GE(1,10,0)
++                         H5P_DATASET_ACCESS_DEFAULT,
++#endif
++                         H5R_OBJECT, &pRef[1]);
+     status = readInteger32Matrix_v1(obj, 1, _iNbItem, _piColPos);
+     if (status < 0)
+     {
+@@ -1082,7 +1106,11 @@ int readCommonSparseComplexMatrix_v1(int
+     }
+ 
+     //read sparse data
+-    obj = H5Rdereference(_iDatasetId, H5R_OBJECT, &pRef[2]);
++    obj = H5Rdereference(_iDatasetId,
++#if H5_VERSION_GE(1,10,0)
++                         H5P_DATASET_ACCESS_DEFAULT,
++#endif
++                         H5R_OBJECT, &pRef[2]);
+ 
+     if (_iComplex)
+     {
+@@ -1128,7 +1156,11 @@ int readBooleanSparseMatrix_v1(int _iDat
+     }
+ 
+     //read Row data
+-    obj = H5Rdereference(_iDatasetId, H5R_OBJECT, &pRef[0]);
++    obj = H5Rdereference(_iDatasetId,
++#if H5_VERSION_GE(1,10,0)
++                         H5P_DATASET_ACCESS_DEFAULT,
++#endif
++                         H5R_OBJECT, &pRef[0]);
+     status = readInteger32Matrix_v1(obj, 1, _iRows, _piNbItemRow);
+     if (status < 0)
+     {
+@@ -1136,7 +1168,11 @@ int readBooleanSparseMatrix_v1(int _iDat
+     }
+ 
+     //read cols data
+-    obj = H5Rdereference(_iDatasetId, H5R_OBJECT, &pRef[1]);
++    obj = H5Rdereference(_iDatasetId,
++#if H5_VERSION_GE(1,10,0)
++                         H5P_DATASET_ACCESS_DEFAULT,
++#endif
++                         H5R_OBJECT, &pRef[1]);
+     status = readInteger32Matrix_v1(obj, 1, _iNbItem, _piColPos);
+     if (status < 0)
+     {
+@@ -1235,7 +1271,11 @@ int getListItemDataset_v1(int _iDatasetI
+ {
+     hobj_ref_t poRef = ((hobj_ref_t *) _piItemRef)[_iItemPos];
+ 
+-    *_piItemDataset = H5Rdereference(_iDatasetId, H5R_OBJECT, &poRef);
++    *_piItemDataset = H5Rdereference(_iDatasetId,
++#if H5_VERSION_GE(1,10,0)
++                                     H5P_DATASET_ACCESS_DEFAULT,
++#endif
++                                     H5R_OBJECT, &poRef);
+ 
+     if (*_piItemDataset == 0)
+     {
+Index: scilab-5.5.2/modules/hdf5/src/cpp/H5ReferenceData.cpp
+===================================================================
+--- scilab-5.5.2.orig/modules/hdf5/src/cpp/H5ReferenceData.cpp
++++ scilab-5.5.2/modules/hdf5/src/cpp/H5ReferenceData.cpp
+@@ -39,7 +39,11 @@ const char ** H5ReferenceData::getRefere
+     for (int i = 0; i < totalSize; i++)
+     {
+         void * ref = &(((void **)cdata)[i]);
+-        hid_t obj = H5Rdereference(file, datasetReference ? H5R_DATASET_REGION : H5R_OBJECT, ref);
++        hid_t obj = H5Rdereference(file,
++    #if H5_VERSION_GE(1,10,0)
++                                   H5P_DATASET_ACCESS_DEFAULT,
++    #endif
++                                   datasetReference ? H5R_DATASET_REGION : H5R_OBJECT, ref);
+         H5O_info_t info;
+         H5Oget_info(obj, &info);
+         H5Oclose(obj);
+@@ -81,7 +85,11 @@ H5Object & H5ReferenceData::getData(cons
+ 
+     file = getFile().getH5Id();
+     ref = &(((void **)cdata)[0]);
+-    obj = H5Rdereference(file, datasetReference ? H5R_DATASET_REGION : H5R_OBJECT, ref);
++    obj = H5Rdereference(file,
++#if H5_VERSION_GE(1,10,0)
++                         H5P_DATASET_ACCESS_DEFAULT,
++#endif
++                         datasetReference ? H5R_DATASET_REGION : H5R_OBJECT, ref);
+     if (obj < 0)
+     {
+         throw H5Exception(__LINE__, __FILE__, _("Cannot open object at the given position."));
+@@ -123,7 +131,11 @@ H5Object ** H5ReferenceData::getReferenc
+     for (int i = 0; i < totalSize; i++)
+     {
+         void * ref = &(((void **)cdata)[i]);
+-        hid_t obj = H5Rdereference(file, datasetReference ? H5R_DATASET_REGION : H5R_OBJECT, ref);
++        hid_t obj = H5Rdereference(file,
++    #if H5_VERSION_GE(1,10,0)
++                                   H5P_DATASET_ACCESS_DEFAULT,
++    #endif
++                                   datasetReference ? H5R_DATASET_REGION : H5R_OBJECT, ref);
+         objs[i] = &H5Object::getObject(getParent(), obj);
+     }
+ 
+@@ -178,7 +190,11 @@ void H5ReferenceData::printData(std::ost
+     char * cdata = static_cast<char *>(data) + offset + pos * (stride ? stride : dataSize);
+     void ** ref = &(((void **)cdata)[0]);
+     hid_t file = getFile().getH5Id();
+-    hid_t obj = H5Rdereference(file, datasetReference ? H5R_DATASET_REGION : H5R_OBJECT, ref);
++    hid_t obj = H5Rdereference(file,
++#if H5_VERSION_GE(1,10,0)
++                               H5P_DATASET_ACCESS_DEFAULT,
++#endif
++                               datasetReference ? H5R_DATASET_REGION : H5R_OBJECT, ref);
+     if (obj < 0)
+     {
+         os << "NULL";
diff -Nru scilab-5.5.2/debian/patches/series scilab-5.5.2/debian/patches/series
--- scilab-5.5.2/debian/patches/series	2015-10-18 22:53:53.000000000 +0200
+++ scilab-5.5.2/debian/patches/series	2016-10-24 21:08:16.000000000 +0200
@@ -11,3 +11,4 @@
 jvm-archdir-ppc64le.diff
 aarch64-detection.patch
 libjogl2-java-2.3.2.diff
+hdf5-1.10-api.patch

--- End Message ---
--- Begin Message ---
Source: scilab
Source-Version: 5.5.2-3

We believe that the bug you reported is fixed in the latest version of
scilab, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Gilles Filippini <[email protected]> (supplier of updated scilab 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: SHA256

Format: 1.8
Date: Sun, 30 Oct 2016 18:22:43 +0100
Source: scilab
Binary: scilab-cli scilab scilab-data scilab-include scilab-minimal-bin 
scilab-full-bin scilab-minimal-bin-dbg scilab-full-bin-dbg scilab-doc 
scilab-doc-fr scilab-doc-pt-br scilab-doc-ja scilab-test
Architecture: source all amd64
Version: 5.5.2-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Team 
<[email protected]>
Changed-By: Gilles Filippini <[email protected]>
Description:
 scilab     - Scientific software package for numerical computations
 scilab-cli - Scientific software package - Command Line Interpreter
 scilab-data - Scientific software package for numerical computations (data file
 scilab-doc - Scientific software package (english documentations)
 scilab-doc-fr - Scientific software package (french documentation)
 scilab-doc-ja - Scientific software package (Japanese documentation)
 scilab-doc-pt-br - Scientific software package (Brazilian Portuguese 
documentation)
 scilab-full-bin - Scientific software package for numerical computations (all 
binar
 scilab-full-bin-dbg - Scientific software package (scilab debugging symbols)
 scilab-include - Scientific software package for numerical computations 
(include f
 scilab-minimal-bin - Scientific software package for numerical computations 
(minimal b
 scilab-minimal-bin-dbg - Scientific software package (scilab-cli debugging 
symbols)
 scilab-test - Scientific software package for numerical computations (test file
Closes: 841975
Changes:
 scilab (5.5.2-3) unstable; urgency=medium
 .
   * Team upload
   * New patch to support HDF5-1.10 (closes: #841975)
Checksums-Sha1:
 4e6035f2205dfcd618df8e13b1aaddfbf193bb3c 3619 scilab_5.5.2-3.dsc
 6ec2437adf634e9e59b4da8228d6cab2cae81b6f 44172 scilab_5.5.2-3.debian.tar.xz
 f0842c0fd3fc30910bf22a52240d93421e1c3d06 510638 scilab-cli_5.5.2-3_all.deb
 b9dee5770e7ce3c872cb03ac1d18eb28be57a2c6 34904212 scilab-data_5.5.2-3_all.deb
 3a85bab33124714d208829cce2d4bd89d1c5f1a6 7239950 scilab-doc-fr_5.5.2-3_all.deb
 a86fc7a2981e8bff80e45927692bc13ec5ccaa9c 7480494 scilab-doc-ja_5.5.2-3_all.deb
 e9f57c4505a2c0d0c06b04fe2f55c52fe8dd28e6 7056214 
scilab-doc-pt-br_5.5.2-3_all.deb
 621039c970dfd847920c4c7c0548eb301f90c673 7909714 scilab-doc_5.5.2-3_all.deb
 267c9d0e786830011372b4c2a4107a0a4eece7bc 3799374 
scilab-full-bin-dbg_5.5.2-3_amd64.deb
 22b4788de1b1e9138942ae5ce719576e5e5e9276 1643452 
scilab-full-bin_5.5.2-3_amd64.deb
 2ddc0efcc39baab2bc7236192440359ea451516c 130370 
scilab-include_5.5.2-3_amd64.deb
 538c4c9ce641c5645a678cea1e8e62f2d59e2280 6269220 
scilab-minimal-bin-dbg_5.5.2-3_amd64.deb
 375b4c9b66d93ac5c1e6c7ae3580ec128cb0825b 2548828 
scilab-minimal-bin_5.5.2-3_amd64.deb
 a4525ccd2bd2cdb8715e6e7233cf3af95842794f 11847802 scilab-test_5.5.2-3_all.deb
 d3facaed387d2dd305b54401e87212e687378a7f 82908 scilab_5.5.2-3_all.deb
Checksums-Sha256:
 2ddf36c98ef3a6b5465e128cc2ef434ecfe7a33711b50934e0f171a27acf7ecc 3619 
scilab_5.5.2-3.dsc
 77df1da46dc891a3588840c1c54f9289fcbb442379ad2c6dcf80dfc737ad9b05 44172 
scilab_5.5.2-3.debian.tar.xz
 813d7a8e7899d5d99ea3b6d56c52d4927217005170091115fd247100b64412da 510638 
scilab-cli_5.5.2-3_all.deb
 74061250d1bc956e3f7a65fd7004d33191a6167c9e7af5299706f20a6ac7b091 34904212 
scilab-data_5.5.2-3_all.deb
 4e791ab15c19817067794e1743a4ec168a25597b0f7f139e5128d13a4e519ad0 7239950 
scilab-doc-fr_5.5.2-3_all.deb
 4e43b7b311347852f8d8dec0a6206d1907a7b45ee5b320cb1ab325f7d2ad472b 7480494 
scilab-doc-ja_5.5.2-3_all.deb
 088ec9a4b0d1c28ff8f77d451e12b15145e43c19dbbd2d6a6b57b10c6a9b7211 7056214 
scilab-doc-pt-br_5.5.2-3_all.deb
 da4812f1b58b2056592ec414b0ad6696e6a5c3e68b13887a8a616a866a333406 7909714 
scilab-doc_5.5.2-3_all.deb
 0ac52553fbfdf011b1f90733eca6f25f7fcaa6fd9eb6f0c6dda6e3c35b71bdf5 3799374 
scilab-full-bin-dbg_5.5.2-3_amd64.deb
 9e2fc61d1533ceee6004f66f4d2cacde710cd69e136cfff2976884f28689175c 1643452 
scilab-full-bin_5.5.2-3_amd64.deb
 c5f477481c4e93297541157f18445c79dce73387939e6fdac66fa36a09d5537f 130370 
scilab-include_5.5.2-3_amd64.deb
 37c3794294f617fdb7ba54bca0d8e936f0ccd5f54f55fa8b1394699cd706d9b7 6269220 
scilab-minimal-bin-dbg_5.5.2-3_amd64.deb
 0057e4e9c22826eba07ee9b3f248d8c9e83b166f211af61d8ccc6a63b2e67534 2548828 
scilab-minimal-bin_5.5.2-3_amd64.deb
 713c4098962bf7ff147521e239e0f8cdc0aed27fa3918fb4e001aa3ea32d6366 11847802 
scilab-test_5.5.2-3_all.deb
 41a29907b9353e246724d0c7ca2243be3c0169ef11b987a073e345ecc2255faa 82908 
scilab_5.5.2-3_all.deb
Files:
 a7f4fb4eeba5a157d11d9b1d27230dc4 3619 math optional scilab_5.5.2-3.dsc
 003475a6d4455d114704573c166c5005 44172 math optional 
scilab_5.5.2-3.debian.tar.xz
 fe35fd442a4f9201eef6f9d7af5b999f 510638 math optional 
scilab-cli_5.5.2-3_all.deb
 187ffff13c4a85c3210c0f80442846d5 34904212 math optional 
scilab-data_5.5.2-3_all.deb
 0de1b304b65a7f926b2ce89e95115c06 7239950 doc optional 
scilab-doc-fr_5.5.2-3_all.deb
 90fbfa708b0a77da05d554d90bf5f916 7480494 doc optional 
scilab-doc-ja_5.5.2-3_all.deb
 067086d0aaea53281f640bd4020a3317 7056214 doc optional 
scilab-doc-pt-br_5.5.2-3_all.deb
 8453d8fc73c934df53e6deaa50fdad44 7909714 doc optional 
scilab-doc_5.5.2-3_all.deb
 ad4e007a9f4c11843447fd5d0bb72462 3799374 debug extra 
scilab-full-bin-dbg_5.5.2-3_amd64.deb
 7691497babcbf32a509b177692fca1b4 1643452 math optional 
scilab-full-bin_5.5.2-3_amd64.deb
 25c65fbb076bac7bddaad6b0befe90ee 130370 math optional 
scilab-include_5.5.2-3_amd64.deb
 3e82238115b0d5f59018682743b62189 6269220 debug extra 
scilab-minimal-bin-dbg_5.5.2-3_amd64.deb
 cf87d231afdd3efe40077ee14f1c12ec 2548828 math optional 
scilab-minimal-bin_5.5.2-3_amd64.deb
 267eb078b764f304e79aa589b315d5e0 11847802 math optional 
scilab-test_5.5.2-3_all.deb
 194728d853d221d663b8844d19600451 82908 math optional scilab_5.5.2-3_all.deb

-----BEGIN PGP SIGNATURE-----

iQEtBAEBCAAXBQJYGH5vEBxwaW5pQGRlYmlhbi5vcmcACgkQ7+hsbH/+z4Mvdwf9
EkLe1MigMdnYat2A2GPVPtoQ6KzEqtZtIA+1RKxaSQyofO01RKCXZei3xjgFZ+FL
CrMw60O65ykA9wG4Hm4Vxb7b127vW3PPyv4LO9CZgVLq7+kWel+8+3ekmbnfTa2O
kcngYRQQ0IPH9/Zmfp2iligkn00ShIF9CS0wZcDkikVG90YAYmYvkFckD/qsaZrv
ESBfrSbhalk3Ci0FMfzCknz90Gfft0W/b/1uESreM/ev2UYI7/XWXukrtMvpvqX1
wn8Yc7AJbEUMW0FZvLFSXwc3KYaoWQxzA0Ac0We0pJMmCYBVWNbCfZPbtAbpkFU6
uewnaXADFkg1SEeiKWDJjA==
=lhYB
-----END PGP SIGNATURE-----

--- End Message ---
-- 
debian-science-maintainers mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers

Reply via email to