Your message dated Tue, 13 Jan 2009 23:08:42 +0000
with message-id <[email protected]>
and subject line Bug#490242: fixed in boost1.37 1.37.0-4
has caused the Debian Bug report #490242,
regarding boost1.35: please build boost-mpi libraries
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.)


-- 
490242: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=490242
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: boost1.35
Version: 1.35.0-5
Severity: wishlist

Hi,

it would be great if you could add support for the boost-mpi libraries
which are part of boost since version 1.35. I'd suggest linking against
OpenMPI, which is very actively maintained, both upstream and in Debian.

I have made a not very successful attempt to hack the debian package to
enable boost-mpi packages; my try is attached as a patch. The problem I
had is that boost-mpi consists of a libboost_mpi library, as well as a
libboost_mpi_python library, which in conjunction with a boost.mpi
python module provides a python interface to boost-mpi. Now, the two
different libboost_python versions with different suffixes complicate
things... I don't know if it wouldn't be easier in the long run to just
support the current python version in boost.

Unfortunately (well, not really ;) I am on vacation the next three
weeks, so I can't continue my trials, nor test anything you might come
up with before August.

Cheers, Til
=== debian/Notes
==================================================================
--- debian/Notes        (revision 7)
+++ debian/Notes        (local)
@@ -76,6 +76,7 @@
 filesystem     depends on system
 graph          depends on serialization test
 iostreams      depends on regex
+mpi            depends on serialization
 regex          depends on thread
 thread                 depends on date_time
 wave           depends on filesystem serialization
=== debian/control
==================================================================
--- debian/control      (revision 7)
+++ debian/control      (local)
@@ -4,7 +4,7 @@
 Priority: optional
 Maintainer: Debian Boost Team <[email protected]>
 Uploaders: Steve M. Robbins <[email protected]>, Domenico Andreoli 
<[email protected]>, Christophe Prud'homme <[email protected]>
-Build-Depends: debhelper (>= 6.0.7), quilt, bison, flex, docbook-to-man, 
xsltproc, doxygen, zlib1g-dev, libbz2-dev, libicu-dev, python-all-dev, 
python-support (>= 0.6)
+Build-Depends: debhelper (>= 6.0.7), quilt, bison, flex, docbook-to-man, 
xsltproc, doxygen, zlib1g-dev, libbz2-dev, libicu-dev, python-all-dev, 
python-support (>= 0.6), libopenmpi-dev
 XS-Python-Version: 2.4, 2.5
 Standards-Version: 3.7.3
 
@@ -164,6 +164,33 @@
  which turn models of these concepts into C++ standard library streams
  and stream buffers.
 
+Package: libboost-mpi1.35.0
+Homepage: http://www.boost.org/doc/libs/1_35_0/doc/html/mpi.html
+Architecture: any
+Section: libs
+Depends: ${shlibs:Depends}
+Description: MPI library for C++
+ Part of the Boost C++ Libraries collection.
+ .
+ Library for message passing in high-performance parallel applications.
+ A Boost.MPI program is one or more processes that can communicate either
+ via sending and receiving individual messages (point-to-point communication)
+ or by coordinating as a group (collective communication).
+
+Package: libboost-mpi1.35-dev
+Homepage: http://www.boost.org/doc/libs/1_35_0/doc/html/mpi.html
+Architecture: any
+Section: libdevel
+Depends: libboost1.35-dev (= ${binary:Version}), libboost-mpi1.35.0 (= 
${binary:Version}), libboost-serialization1.35.0 (= ${binary:Version})
+Recommends: libboost-python1.35.0 (= ${binary:Version})
+Description: MPI library for C++
+ Part of the Boost C++ Libraries collection.
+ .
+ Library for message passing in high-performance parallel applications.
+ A Boost.MPI program is one or more processes that can communicate either
+ via sending and receiving individual messages (point-to-point communication)
+ or by coordinating as a group (collective communication).
+
 Package: libboost-program-options1.35.0
 Homepage: http://www.boost.org/libs/program_options/
 Architecture: any
=== debian/rules
==================================================================
--- debian/rules        (revision 7)
+++ debian/rules        (local)
@@ -1,14 +1,14 @@
 #! /usr/bin/make -f
 
 # Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
+export DH_VERBOSE=1
 
 export DH_OPTIONS
 
 include /usr/share/quilt/quilt.make
 
 # set the number of build jobs
-#JOBS = -j2
+JOBS = -j4
 
 DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
 
@@ -21,13 +21,15 @@
 gcc_version = gcc42
 
 # Boost libraries for which we want separate packages
-boost_libs := date-time filesystem graph iostreams program-options python 
regex serialization signals system test thread wave
+boost_libs := date-time filesystem graph iostreams mpi program-options python 
regex serialization signals system test thread wave
 
 # these are special cases, where shared library has not the same name of the 
Boost library
+boost_lib_mpi := mpi mpi_python
 boost_lib_serialization := serialization wserialization
 boost_lib_test := prg_exec_monitor unit_test_framework
 
 # these are special cases for variants. normal cases have <empty>, -d, -mt, 
-mt-d variants
+boost_variants_mpi := -mt -mt-d
 boost_variants_thread := -mt -mt-d
 
 # These are special cases for suffixes.  Generally come from --buildid, so 
begin with a dash.
@@ -138,6 +140,7 @@
 endif
 PYTHON_CONFIG1 = "using python : 2.4 : /usr ;"
 PYTHON_CONFIG2 = "using python : 2.5 : /usr ;"
+MPI_CONFIG = "using mpi ;"
 
 exampledir = 
debian/libboost$(PKGVERSION)-doc/usr/share/doc/libboost$(PKGVERSION)-doc/examples
 htmldir = 
debian/libboost$(PKGVERSION)-doc/usr/share/doc/libboost$(PKGVERSION)-doc/HTML
@@ -157,8 +160,9 @@
        echo $(TOOLSET_CONFIG) > user-config.jam
        echo $(PYTHON_CONFIG1) >> user-config.jam
        echo $(PYTHON_CONFIG2) >> user-config.jam
+       echo $(MPI_CONFIG) >> user-config.jam
 
-       $(JAM) --without-python                        $(jam_variants)
+       $(JAM) --with-python --with-mpi                $(jam_variants)
        $(JAM) --with-python --buildid=py24 python=2.4 $(jam_variants)
        $(JAM) --with-python --buildid=py25 python=2.5 $(jam_variants)
 
@@ -216,7 +220,7 @@
        install --mode=755 -D debian/rtupdate 
debian/tmp/usr/share/python/runtime.d/libboost$(PKGVERSION)-dbg.rtupdate
 
        # Remove undecorated Boost.Python libraries and install decorated ones
-       rm debian/tmp/usr/lib/lib*python*
+       rm debian/tmp/usr/lib/libboost_python*
        find bin.v2/libs/python -name libboost_python*-py2* | xargs install -t 
debian/tmp/usr/lib
 
        find debian/tmp/usr/include -type f | xargs chmod 644
@@ -231,6 +235,10 @@
        dh_install -plibboost$(PKGVERSION)-dbg --autodest \
           
debian/tmp/usr/share/python/runtime.d/libboost$(PKGVERSION)-dbg.rtupdate
        dh_link -plibboost$(PKGVERSION)-dbg \
+          usr/lib/libboost_mpi-mt-d.a usr/lib/libboost_mpi-d.a \
+          usr/lib/libboost_mpi-mt-d.so usr/lib/libboost_mpi-d.so \
+          usr/lib/libboost_mpi_python-mt-d.a usr/lib/libboost_mpi_python-d.a \
+          usr/lib/libboost_mpi_python-mt-d.so usr/lib/libboost_mpi_python-d.so 
\
           usr/lib/libboost_thread-mt-d.a usr/lib/libboost_thread-d.a \
           usr/lib/libboost_thread-mt-d.so usr/lib/libboost_thread-d.so
 
@@ -292,6 +300,19 @@
        dh_install -plibboost-iostreams$(PKGVERSION)-dev
        dh_link -plibboost-iostreams$(PKGVERSION)-dev
 
+       # package libboost-mpi$(SOVERSION)
+       dh_install -plibboost-mpi$(SOVERSION)
+       dh_install -plibboost-mpi$(SOVERSION) \
+          libs/mpi/build/__init__.py debian/tmp/usr/lib/mpi.so 
usr/lib/python2.4/site-packages/mpi
+       dh_install -plibboost-mpi$(SOVERSION) \
+          libs/mpi/build/__init__.py debian/tmp/usr/lib/mpi.so 
usr/lib/python2.5/site-packages/mpi
+       # package libboost-mpi$(PKGVERSION)-dev
+       dh_installdirs -plibboost-mpi$(PKGVERSION)-dev usr/include/boost
+       mv debian/libboost$(PKGVERSION)-dev/usr/include/boost/mpi* \
+          debian/libboost-mpi$(PKGVERSION)-dev/usr/include/boost
+       dh_install -plibboost-mpi$(PKGVERSION)-dev
+       dh_link -plibboost-mpi$(PKGVERSION)-dev
+
        # package libboost-program-options$(SOVERSION)
        dh_install -plibboost-program-options$(SOVERSION)
        # package libboost-program-options$(PKGVERSION)-dev

--- End Message ---
--- Begin Message ---
Source: boost1.37
Source-Version: 1.37.0-4

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

boost1.37_1.37.0-4.diff.gz
  to pool/main/b/boost1.37/boost1.37_1.37.0-4.diff.gz
boost1.37_1.37.0-4.dsc
  to pool/main/b/boost1.37/boost1.37_1.37.0-4.dsc
libboost-date-time1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-date-time1.37-dev_1.37.0-4_amd64.deb
libboost-date-time1.37.0_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-date-time1.37.0_1.37.0-4_amd64.deb
libboost-filesystem1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-filesystem1.37-dev_1.37.0-4_amd64.deb
libboost-filesystem1.37.0_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-filesystem1.37.0_1.37.0-4_amd64.deb
libboost-graph1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-graph1.37-dev_1.37.0-4_amd64.deb
libboost-graph1.37.0_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-graph1.37.0_1.37.0-4_amd64.deb
libboost-iostreams1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-iostreams1.37-dev_1.37.0-4_amd64.deb
libboost-iostreams1.37.0_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-iostreams1.37.0_1.37.0-4_amd64.deb
libboost-math1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-math1.37-dev_1.37.0-4_amd64.deb
libboost-math1.37.0_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-math1.37.0_1.37.0-4_amd64.deb
libboost-mpi1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-mpi1.37-dev_1.37.0-4_amd64.deb
libboost-mpi1.37.0_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-mpi1.37.0_1.37.0-4_amd64.deb
libboost-program-options1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-program-options1.37-dev_1.37.0-4_amd64.deb
libboost-program-options1.37.0_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-program-options1.37.0_1.37.0-4_amd64.deb
libboost-python1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-python1.37-dev_1.37.0-4_amd64.deb
libboost-python1.37.0_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-python1.37.0_1.37.0-4_amd64.deb
libboost-regex1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-regex1.37-dev_1.37.0-4_amd64.deb
libboost-regex1.37.0_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-regex1.37.0_1.37.0-4_amd64.deb
libboost-serialization1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-serialization1.37-dev_1.37.0-4_amd64.deb
libboost-serialization1.37.0_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-serialization1.37.0_1.37.0-4_amd64.deb
libboost-signals1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-signals1.37-dev_1.37.0-4_amd64.deb
libboost-signals1.37.0_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-signals1.37.0_1.37.0-4_amd64.deb
libboost-system1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-system1.37-dev_1.37.0-4_amd64.deb
libboost-system1.37.0_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-system1.37.0_1.37.0-4_amd64.deb
libboost-test1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-test1.37-dev_1.37.0-4_amd64.deb
libboost-test1.37.0_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-test1.37.0_1.37.0-4_amd64.deb
libboost-thread1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-thread1.37-dev_1.37.0-4_amd64.deb
libboost-thread1.37.0_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-thread1.37.0_1.37.0-4_amd64.deb
libboost-wave1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-wave1.37-dev_1.37.0-4_amd64.deb
libboost-wave1.37.0_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost-wave1.37.0_1.37.0-4_amd64.deb
libboost1.37-dbg_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost1.37-dbg_1.37.0-4_amd64.deb
libboost1.37-dev_1.37.0-4_amd64.deb
  to pool/main/b/boost1.37/libboost1.37-dev_1.37.0-4_amd64.deb
libboost1.37-doc_1.37.0-4_all.deb
  to pool/main/b/boost1.37/libboost1.37-doc_1.37.0-4_all.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.
Steve M. Robbins <[email protected]> (supplier of updated boost1.37 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: Sat, 10 Jan 2009 16:53:03 -0600
Source: boost1.37
Binary: libboost1.37-dbg libboost1.37-dev libboost1.37-doc 
libboost-date-time1.37.0 libboost-date-time1.37-dev libboost-filesystem1.37.0 
libboost-filesystem1.37-dev libboost-graph1.37.0 libboost-graph1.37-dev 
libboost-iostreams1.37.0 libboost-iostreams1.37-dev libboost-math1.37.0 
libboost-math1.37-dev libboost-mpi1.37.0 libboost-mpi1.37-dev 
libboost-program-options1.37.0 libboost-program-options1.37-dev 
libboost-python1.37.0 libboost-python1.37-dev libboost-regex1.37.0 
libboost-regex1.37-dev libboost-serialization1.37.0 
libboost-serialization1.37-dev libboost-signals1.37.0 libboost-signals1.37-dev 
libboost-system1.37.0 libboost-system1.37-dev libboost-test1.37.0 
libboost-test1.37-dev libboost-thread1.37.0 libboost-thread1.37-dev 
libboost-wave1.37.0 libboost-wave1.37-dev
Architecture: source all amd64
Version: 1.37.0-4
Distribution: unstable
Urgency: low
Maintainer: Debian Boost Team <[email protected]>
Changed-By: Steve M. Robbins <[email protected]>
Description: 
 libboost-date-time1.37-dev - set of date-time libraries based on generic 
programming concepts
 libboost-date-time1.37.0 - set of date-time libraries based on generic 
programming concepts
 libboost-filesystem1.37-dev - filesystem operations (portable paths, iteration 
over directories
 libboost-filesystem1.37.0 - filesystem operations (portable paths, iteration 
over directories
 libboost-graph1.37-dev - generic graph components and algorithms in C++
 libboost-graph1.37.0 - generic graph components and algorithms in C++
 libboost-iostreams1.37-dev - Boost.Iostreams Library development files
 libboost-iostreams1.37.0 - Boost.Iostreams Library
 libboost-math1.37-dev - Boost.Math Library development files
 libboost-math1.37.0 - Boost.Math Library
 libboost-mpi1.37-dev - C++ interface to the Message Passing Interface (MPI) - 
OpenMPI ve
 libboost-mpi1.37.0 - C++ interface to the Message Passing Interface (MPI) - 
OpenMPI ve
 libboost-program-options1.37-dev - program options library for C++
 libboost-program-options1.37.0 - program options library for C++
 libboost-python1.37-dev - Boost.Python Library development files
 libboost-python1.37.0 - Boost.Python Library
 libboost-regex1.37-dev - regular expression library for C++
 libboost-regex1.37.0 - regular expression library for C++
 libboost-serialization1.37-dev - serialization library for C++
 libboost-serialization1.37.0 - serialization library for C++
 libboost-signals1.37-dev - managed signals and slots library for C++
 libboost-signals1.37.0 - managed signals and slots library for C++
 libboost-system1.37-dev - Operating system (e.g. diagnostics support) library
 libboost-system1.37.0 - Operating system (e.g. diagnostics support) library
 libboost-test1.37-dev - components for writing and executing test suites
 libboost-test1.37.0 - components for writing and executing test suites
 libboost-thread1.37-dev - portable C++ multi-threading
 libboost-thread1.37.0 - portable C++ multi-threading
 libboost-wave1.37-dev - C99/C++ preprocessor library
 libboost-wave1.37.0 - C99/C++ preprocessor library
 libboost1.37-dbg - Boost C++ Libraries with debug symbols
 libboost1.37-dev - Boost C++ Libraries development files
 libboost1.37-doc - Boost.org libraries documentation
Closes: 490242 494832 511073
Changes: 
 boost1.37 (1.37.0-4) unstable; urgency=low
 .
   * patches/function-template.patch: New.  Fix misplaced #ifdef (thanks to
     Caolan McNamara for the patch at
     https://bugzilla.redhat.com/show_bug.cgi?id=477131).  Closes: #511073.
 .
   * control:
   * rules: New packages libboost-mpi1.37.0 and libboost-mpi1.37-dev.
     Closes: #494832, #490242.  Thanks to Tilman Koschnick and Rutger ter
     Borg for their patches.  New -dev package conflicts and replaces
     libboost1.37-dev, since the headers were moved from the latter to the
     former.
   * patches/mpi-python.patch: The python bindings for Boost.MPI don't
     build; disable until I understand what's going on.
 .
   * rules: Usage of "dh_clean -k" is deprecated in debhelper 7; replace
     with "dh_prep".
Checksums-Sha1: 
 b30ac46d128ec1d815caedf9d5589e4553192340 2242 boost1.37_1.37.0-4.dsc
 fed7eaf500c2e2dba190df431a412c7a28b068fc 192381 boost1.37_1.37.0-4.diff.gz
 5481a11752ebc81319997dfce7905a1dafa8f1d8 36669888 
libboost1.37-doc_1.37.0-4_all.deb
 db04da92ef738b8f3594cac6638cdbc21b8de60c 48307750 
libboost1.37-dbg_1.37.0-4_amd64.deb
 98670fe1bc8873e6645b658735865852e1fc9453 3911876 
libboost1.37-dev_1.37.0-4_amd64.deb
 929b75bbabeed051bec2bb8a159117ebe7770555 139258 
libboost-date-time1.37.0_1.37.0-4_amd64.deb
 77e82f024c8bc2b88df059042e63a94ba18dfb81 262546 
libboost-date-time1.37-dev_1.37.0-4_amd64.deb
 85208efb43e32034f102fc713d6ce29588880a91 146238 
libboost-filesystem1.37.0_1.37.0-4_amd64.deb
 d7d13acbf023aff4b5e56109878a8dbb1c650763 177152 
libboost-filesystem1.37-dev_1.37.0-4_amd64.deb
 dab6c72a014d3b37ecd90e0243b94a33f87b3d0b 221986 
libboost-graph1.37.0_1.37.0-4_amd64.deb
 5a9fc7a240085f98e320962347deccbeb86d98e2 504938 
libboost-graph1.37-dev_1.37.0-4_amd64.deb
 10c91312f5fbed8c3ca72be9ad6a22f8d3fcc19e 135448 
libboost-iostreams1.37.0_1.37.0-4_amd64.deb
 4f1cb1281f3a3ec07317d4293e409f33b8f2afa5 233574 
libboost-iostreams1.37-dev_1.37.0-4_amd64.deb
 006fb2a0f42c4bbddb7f9575fb0377f9f2af89fc 527338 
libboost-math1.37.0_1.37.0-4_amd64.deb
 0b966ba1ea3a93176b1a51ea766a7e02bc1c5c5a 2197782 
libboost-math1.37-dev_1.37.0-4_amd64.deb
 695dd927633d999c5530a0dce0fbe9972fe5f939 206168 
libboost-mpi1.37.0_1.37.0-4_amd64.deb
 1de61c87bd9baf4ac096d9eaf7d383878ef0b92a 733582 
libboost-mpi1.37-dev_1.37.0-4_amd64.deb
 600ea8e5e9094e50ab9865a97597930b0249e0f6 217744 
libboost-program-options1.37.0_1.37.0-4_amd64.deb
 cdc0890033fbc15c861e887684897ca3625815bf 293870 
libboost-program-options1.37-dev_1.37.0-4_amd64.deb
 38d677c8ea17a7c1ab1ff55dc1047fe4e3c8c6e3 342960 
libboost-python1.37.0_1.37.0-4_amd64.deb
 eabeb6983976f5badc211ce96d48a57adf80ba1d 596052 
libboost-python1.37-dev_1.37.0-4_amd64.deb
 3cf9232c01d9bd8d3f30a1e4b1fa90d602f14b95 437812 
libboost-regex1.37.0_1.37.0-4_amd64.deb
 3bd5a781304210bb0919cbde59b01ee4bdfd3cf8 720390 
libboost-regex1.37-dev_1.37.0-4_amd64.deb
 b1d5c7e6738cf2af3ff3b10ea068e194b46035f8 335658 
libboost-serialization1.37.0_1.37.0-4_amd64.deb
 dc86e8e798857d11e4d218213f0bcc80cb146dd2 485838 
libboost-serialization1.37-dev_1.37.0-4_amd64.deb
 6b4ecf8aebb0a6edda7088ba628cd9a2df86da66 147042 
libboost-signals1.37.0_1.37.0-4_amd64.deb
 84166d47b30f135cf76a2a6c6eac65da26725ad9 168840 
libboost-signals1.37-dev_1.37.0-4_amd64.deb
 b26cbbcce0a47920a368b2a15284c38289a63d60 124342 
libboost-system1.37.0_1.37.0-4_amd64.deb
 9e9782e697117bdf6c4b3cd799b276d802d73d1d 133508 
libboost-system1.37-dev_1.37.0-4_amd64.deb
 13a41256a3e4aa4a6eda0f02c872c3592ebc2a0d 281454 
libboost-test1.37.0_1.37.0-4_amd64.deb
 836fcbf37d52def6632595a75039c21c8a482960 483292 
libboost-test1.37-dev_1.37.0-4_amd64.deb
 3cdc6bcf05cc9993768d2e410bfd9ec54988d533 140126 
libboost-thread1.37.0_1.37.0-4_amd64.deb
 95066bef554665498832e9f44c75f62aa776009d 172304 
libboost-thread1.37-dev_1.37.0-4_amd64.deb
 4e1944e2f6d4de6e3fda30b97bd1b7e6cbd0ad5a 347724 
libboost-wave1.37.0_1.37.0-4_amd64.deb
 fbd5b5e0661cc450a00d733e3747703430f2a22d 651226 
libboost-wave1.37-dev_1.37.0-4_amd64.deb
Checksums-Sha256: 
 4f4aac051aaeea46abe14d5b500fa4db0c17e56cd7febbb6a268c2c6369c9c34 2242 
boost1.37_1.37.0-4.dsc
 353b1d27ba3bf5b34c75a3d1c954745716558bc18782bed5928dc2e16ebdb7b4 192381 
boost1.37_1.37.0-4.diff.gz
 0d166bd60cb88bfd7ea798db2d6b334d1787fbf74aef2cc4240fcec4662a7564 36669888 
libboost1.37-doc_1.37.0-4_all.deb
 5eea7126239edd218def2bbf9aa20e8b301ba5aafcb297d9c68a7197a7c5c3d4 48307750 
libboost1.37-dbg_1.37.0-4_amd64.deb
 c8e07ec565e984d9766207a3fb78a24d2b6e6db67c4e0e54795f1841c5876be2 3911876 
libboost1.37-dev_1.37.0-4_amd64.deb
 b194c58b541b10e93c273f4cedccf934c3839c9c791ee6bd4a28df0709a95667 139258 
libboost-date-time1.37.0_1.37.0-4_amd64.deb
 9b3da8dbb5cedead10335db8ed48cb54e8335abd42e1b8c4ec23a1ba562e84ed 262546 
libboost-date-time1.37-dev_1.37.0-4_amd64.deb
 1859dbfd10a7cd1ee97a972d5359b6960a748dd082b8798cc48d14cd08a0cd8f 146238 
libboost-filesystem1.37.0_1.37.0-4_amd64.deb
 19bd48b443dcd21b1b4c7552b498e79cc52c2dbcff5dfb2d5f8a0ba085385f1e 177152 
libboost-filesystem1.37-dev_1.37.0-4_amd64.deb
 0e7a96a18d99481a3acc265506ee227bf539325b6f72d48c299f251fb839eff3 221986 
libboost-graph1.37.0_1.37.0-4_amd64.deb
 02e29a677caadcb3c8a5780ab0e03ada07f3c9917cb67a498f1f66e245b51521 504938 
libboost-graph1.37-dev_1.37.0-4_amd64.deb
 a159c23bf54cabe7f28dba7f0ce80c8a71bf04e63ace6d0fd6161c16767d1065 135448 
libboost-iostreams1.37.0_1.37.0-4_amd64.deb
 eeb8598f4e220292c8aa53c0fc786de529548f8c03bd80cb47b7348d8df5dddd 233574 
libboost-iostreams1.37-dev_1.37.0-4_amd64.deb
 e38c0026b7020ae90a73c3ac8f57df86b2872978ae8b3ca0549821e2e0a8073f 527338 
libboost-math1.37.0_1.37.0-4_amd64.deb
 987555d85f34959a2f886439321a9b1239c1626057b8b39812797a74d2f4da4e 2197782 
libboost-math1.37-dev_1.37.0-4_amd64.deb
 e5bd7c9bb2c766c757ee32307ee741e1a12e5b1cb7b17773f55d0999782b3295 206168 
libboost-mpi1.37.0_1.37.0-4_amd64.deb
 de2320c9cdb92a2b75848248497a499899771c5073a3387d43725145292ebb8a 733582 
libboost-mpi1.37-dev_1.37.0-4_amd64.deb
 2ab26e59aad816de54cce26935b44ba2629f5b329469290e3c666d2b2c69a1cd 217744 
libboost-program-options1.37.0_1.37.0-4_amd64.deb
 e5e77557a06028e37821c526b7a07c82eacd9e669701c82752739c513c3d52ca 293870 
libboost-program-options1.37-dev_1.37.0-4_amd64.deb
 f059c1a04c19a9e9b4e4ba4957778cf01bfc026acd984ec175cfc0036106f3d4 342960 
libboost-python1.37.0_1.37.0-4_amd64.deb
 31279a0a6e934cd3c31e45022f390a41bc0a377f99751104053cb170f89d4ba6 596052 
libboost-python1.37-dev_1.37.0-4_amd64.deb
 c0916f0800259cb838b6ccc6c7dfef7b668f3d8611f9a1f1b7307736fac8c954 437812 
libboost-regex1.37.0_1.37.0-4_amd64.deb
 86cfda5f406ba8e3933f5f1d3de39f8dbb9f791d7ecaa18f54e97142935ae9bd 720390 
libboost-regex1.37-dev_1.37.0-4_amd64.deb
 79d8c01d5399ae4aaccf3827b11a88d347938d3730797f7f795198de22a9a50e 335658 
libboost-serialization1.37.0_1.37.0-4_amd64.deb
 c3511050aff4e432d189d361d6d4d152ea7dd61972c49e57b219b2648247469d 485838 
libboost-serialization1.37-dev_1.37.0-4_amd64.deb
 cade4fe31770d2eefc7ce936419e8388fcb423d71b9525f5daeda5bad13b49ea 147042 
libboost-signals1.37.0_1.37.0-4_amd64.deb
 a42b24a19960319389c5fcc0cc43844eb2d5abb88d756b0b393ab2f032c059bb 168840 
libboost-signals1.37-dev_1.37.0-4_amd64.deb
 d476cb30bd0cda16079ae27f99c39ef40edd98378ed5bd5c85907ad105903381 124342 
libboost-system1.37.0_1.37.0-4_amd64.deb
 b302fb538c580f1e4050c40a5f64e6e257589037b359bbd0ae18476de05a03fc 133508 
libboost-system1.37-dev_1.37.0-4_amd64.deb
 b7601fccd66f18af0f9bfba2d1c93388c5555e7cda17bc6cbf9543b74053466f 281454 
libboost-test1.37.0_1.37.0-4_amd64.deb
 8a1d3339c323791ed51a6142a1f7ed1a0e8b7a4bde7e04a83acf4f52154a6e14 483292 
libboost-test1.37-dev_1.37.0-4_amd64.deb
 ae9174c7489b333b7266c075ce0d1ba7485ecb0b57677d37d4eb5116961987bf 140126 
libboost-thread1.37.0_1.37.0-4_amd64.deb
 b110fd44b6b3d3e9fd325db0ec0abd94ec4fbe962415b2c529fb644937aa4e96 172304 
libboost-thread1.37-dev_1.37.0-4_amd64.deb
 50f118be7da6a57bf7ba4e2d717899ce185ae07af8cb77f7abea720d15779c80 347724 
libboost-wave1.37.0_1.37.0-4_amd64.deb
 0b47da79b81da8716ed9049b83b4e05254aa02ae827664b835e22988615c792f 651226 
libboost-wave1.37-dev_1.37.0-4_amd64.deb
Files: 
 91dc1dc53f0267fa4580a5b1fbf9f486 2242 libs optional boost1.37_1.37.0-4.dsc
 0bd9304c14d2ca10384cd307cbd320f0 192381 libs optional 
boost1.37_1.37.0-4.diff.gz
 b70a07c780365be39a43936e9a5e927b 36669888 doc optional 
libboost1.37-doc_1.37.0-4_all.deb
 35b3a5e4ef31cbf624ba5aaf3895010c 48307750 libdevel extra 
libboost1.37-dbg_1.37.0-4_amd64.deb
 b87dce8a4a5455e0a261ba55656335e9 3911876 libdevel optional 
libboost1.37-dev_1.37.0-4_amd64.deb
 e9299b4ae7db74bb65e77303256f4686 139258 libs optional 
libboost-date-time1.37.0_1.37.0-4_amd64.deb
 6279f49b8e9aa9d4c1266716225c4834 262546 libdevel optional 
libboost-date-time1.37-dev_1.37.0-4_amd64.deb
 bd56ea3a467f9fcd7a7e760c0e15c38c 146238 libs optional 
libboost-filesystem1.37.0_1.37.0-4_amd64.deb
 6e00fe3ae873fd72f48838a4ba792065 177152 libdevel optional 
libboost-filesystem1.37-dev_1.37.0-4_amd64.deb
 8e6af49bb9c4e11d4ee98e4dbdf39d07 221986 libs optional 
libboost-graph1.37.0_1.37.0-4_amd64.deb
 9acb6180a6d886eea3f112a41c167564 504938 libdevel optional 
libboost-graph1.37-dev_1.37.0-4_amd64.deb
 e014fdbb5e5d569efdc7ebb7089f94ad 135448 libs optional 
libboost-iostreams1.37.0_1.37.0-4_amd64.deb
 b8075f43bab7b870fd84b1738f97a7fc 233574 libdevel optional 
libboost-iostreams1.37-dev_1.37.0-4_amd64.deb
 baff3424d6aec43ace9787dba53f361d 527338 libs optional 
libboost-math1.37.0_1.37.0-4_amd64.deb
 c7ac2628ca6de12441cf3b08eb597968 2197782 libdevel optional 
libboost-math1.37-dev_1.37.0-4_amd64.deb
 00ae89af48fde06cdda995a0f09e4f81 206168 libs optional 
libboost-mpi1.37.0_1.37.0-4_amd64.deb
 f437b5ac74619177099b34f95ef34723 733582 libdevel optional 
libboost-mpi1.37-dev_1.37.0-4_amd64.deb
 db1f07f7c407661cf3b415f29d0b632e 217744 libs optional 
libboost-program-options1.37.0_1.37.0-4_amd64.deb
 0d7a0f6db79fcfa03f1c30e5a31b1240 293870 libdevel optional 
libboost-program-options1.37-dev_1.37.0-4_amd64.deb
 32aa7b0086571a322a87c69e511b6cb8 342960 python optional 
libboost-python1.37.0_1.37.0-4_amd64.deb
 9116ed9c113da55a2a1fc1075a10a836 596052 libdevel optional 
libboost-python1.37-dev_1.37.0-4_amd64.deb
 0825244003b35e5685c2d74228e36d96 437812 libs optional 
libboost-regex1.37.0_1.37.0-4_amd64.deb
 15272e052853509c50dbbdf2fb539cf4 720390 libdevel optional 
libboost-regex1.37-dev_1.37.0-4_amd64.deb
 5bd660747b759ad0172125962432ae00 335658 libs optional 
libboost-serialization1.37.0_1.37.0-4_amd64.deb
 0d907161c33e76f63e4428abcd2bc6fa 485838 libdevel optional 
libboost-serialization1.37-dev_1.37.0-4_amd64.deb
 4677ca92ace40429492b313a98cd0105 147042 libs optional 
libboost-signals1.37.0_1.37.0-4_amd64.deb
 48b72e0a9f3ea2ec2ab481cb89f5613b 168840 libdevel optional 
libboost-signals1.37-dev_1.37.0-4_amd64.deb
 bb220f8a45868637b2610346dbc06cbf 124342 libs optional 
libboost-system1.37.0_1.37.0-4_amd64.deb
 b931354ed5f1fd0a609393393b36d52d 133508 libdevel optional 
libboost-system1.37-dev_1.37.0-4_amd64.deb
 53e3b3bd3a0c2a486f173cfa39b6cd24 281454 libs optional 
libboost-test1.37.0_1.37.0-4_amd64.deb
 2822a3aa8ac4892c1c3c91ed92b3a494 483292 libdevel optional 
libboost-test1.37-dev_1.37.0-4_amd64.deb
 932b361443dc8e391d0f142d8198d6a8 140126 libs optional 
libboost-thread1.37.0_1.37.0-4_amd64.deb
 bece8553a2a3117871720d57fbeb7f16 172304 libdevel optional 
libboost-thread1.37-dev_1.37.0-4_amd64.deb
 0f9d73693f4f9b91de38452f68ff980a 347724 libs optional 
libboost-wave1.37.0_1.37.0-4_amd64.deb
 6a0cd924ed45cd565f6020ff0b65e787 651226 libdevel optional 
libboost-wave1.37-dev_1.37.0-4_amd64.deb

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

iD8DBQFJaaFg0i2bPSHbMcURAhGCAKCygFhweuIYI+ykYlFMdr0PMHbIMACgg9Xc
FRSq0ws//5S/1X/kiFsYNMQ=
=m1rb
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to