Your message dated Mon, 04 Aug 2008 02:17:12 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#487343: fixed in boost1.35 1.35.0-6
has caused the Debian Bug report #487343,
regarding boost: FTBFS on hurd-i386 because of unconditionnal PATH_MAX usage
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.)


-- 
487343: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=487343
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: boost
Severity: important
Tags: patch

Hello,

boost currently FTBFS on hurd-i386 because it unconditionnally uses
PATH_MAX in pwd.c.  The attached patch fixes that by taking advantage of
glibc's get_current_dir_name().

Samuel

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'oldstable'), (500, 'unstable'), (500, 
'stable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.25
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

-- 
Samuel
<A> sauf que le firewall bloque tout sauf internet
 -+- ben ouais, il bloque ipx/spx ! -+-
--- tools/jam/src/pwd.c.orig    2008-06-20 22:26:28.000000000 -0400
+++ tools/jam/src/pwd.c 2008-06-20 22:26:07.000000000 -0400
@@ -24,7 +24,9 @@
 /* The current directory can't change in bjam, so optimize this to cache
 ** the result.
 */
+#ifndef __GLIBC__
 static char pwd_buffer[PATH_MAX];
+#endif
 static char * pwd_result = NULL;
 
 
@@ -33,11 +35,16 @@
 {
     if (!pwd_result)
     {
+#ifdef __GLIBC__
+        if ((pwd_result = get_current_dir_name()) == NULL)
+#else
         if (getcwd(pwd_buffer, sizeof(pwd_buffer)) == NULL)
+#endif
         {
             perror("can not get current directory");
             return L0;
         }
+#ifndef __GLIBC__
         else
         {
 #ifdef NT
@@ -46,6 +53,7 @@
             pwd_result = newstr(pwd_buffer);
 #endif
         }
+#endif
     }
     return list_new(L0, pwd_result);
 }

--- End Message ---
--- Begin Message ---
Source: boost1.35
Source-Version: 1.35.0-6

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

boost1.35_1.35.0-6.diff.gz
  to pool/main/b/boost1.35/boost1.35_1.35.0-6.diff.gz
boost1.35_1.35.0-6.dsc
  to pool/main/b/boost1.35/boost1.35_1.35.0-6.dsc
libboost-date-time1.35-dev_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-date-time1.35-dev_1.35.0-6_i386.deb
libboost-date-time1.35.0_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-date-time1.35.0_1.35.0-6_i386.deb
libboost-filesystem1.35-dev_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-filesystem1.35-dev_1.35.0-6_i386.deb
libboost-filesystem1.35.0_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-filesystem1.35.0_1.35.0-6_i386.deb
libboost-graph1.35-dev_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-graph1.35-dev_1.35.0-6_i386.deb
libboost-graph1.35.0_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-graph1.35.0_1.35.0-6_i386.deb
libboost-iostreams1.35-dev_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-iostreams1.35-dev_1.35.0-6_i386.deb
libboost-iostreams1.35.0_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-iostreams1.35.0_1.35.0-6_i386.deb
libboost-program-options1.35-dev_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-program-options1.35-dev_1.35.0-6_i386.deb
libboost-program-options1.35.0_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-program-options1.35.0_1.35.0-6_i386.deb
libboost-python1.35-dev_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-python1.35-dev_1.35.0-6_i386.deb
libboost-python1.35.0_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-python1.35.0_1.35.0-6_i386.deb
libboost-regex1.35-dev_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-regex1.35-dev_1.35.0-6_i386.deb
libboost-regex1.35.0_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-regex1.35.0_1.35.0-6_i386.deb
libboost-serialization1.35-dev_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-serialization1.35-dev_1.35.0-6_i386.deb
libboost-serialization1.35.0_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-serialization1.35.0_1.35.0-6_i386.deb
libboost-signals1.35-dev_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-signals1.35-dev_1.35.0-6_i386.deb
libboost-signals1.35.0_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-signals1.35.0_1.35.0-6_i386.deb
libboost-system1.35-dev_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-system1.35-dev_1.35.0-6_i386.deb
libboost-system1.35.0_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-system1.35.0_1.35.0-6_i386.deb
libboost-test1.35-dev_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-test1.35-dev_1.35.0-6_i386.deb
libboost-test1.35.0_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-test1.35.0_1.35.0-6_i386.deb
libboost-thread1.35-dev_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-thread1.35-dev_1.35.0-6_i386.deb
libboost-thread1.35.0_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-thread1.35.0_1.35.0-6_i386.deb
libboost-wave1.35-dev_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-wave1.35-dev_1.35.0-6_i386.deb
libboost-wave1.35.0_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost-wave1.35.0_1.35.0-6_i386.deb
libboost1.35-dbg_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost1.35-dbg_1.35.0-6_i386.deb
libboost1.35-dev_1.35.0-6_i386.deb
  to pool/main/b/boost1.35/libboost1.35-dev_1.35.0-6_i386.deb
libboost1.35-doc_1.35.0-6_all.deb
  to pool/main/b/boost1.35/libboost1.35-doc_1.35.0-6_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.35 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: Sun, 03 Aug 2008 10:33:40 -0500
Source: boost1.35
Binary: libboost1.35-dbg libboost1.35-dev libboost1.35-doc 
libboost-date-time1.35.0 libboost-date-time1.35-dev libboost-filesystem1.35.0 
libboost-filesystem1.35-dev libboost-graph1.35.0 libboost-graph1.35-dev 
libboost-iostreams1.35.0 libboost-iostreams1.35-dev 
libboost-program-options1.35.0 libboost-program-options1.35-dev 
libboost-python1.35.0 libboost-python1.35-dev libboost-regex1.35.0 
libboost-regex1.35-dev libboost-serialization1.35.0 
libboost-serialization1.35-dev libboost-signals1.35.0 libboost-signals1.35-dev 
libboost-system1.35.0 libboost-system1.35-dev libboost-test1.35.0 
libboost-test1.35-dev libboost-thread1.35.0 libboost-thread1.35-dev 
libboost-wave1.35.0 libboost-wave1.35-dev
Architecture: source all i386
Version: 1.35.0-6
Distribution: experimental
Urgency: low
Maintainer: Debian Boost Team <[EMAIL PROTECTED]>
Changed-By: Steve M. Robbins <[EMAIL PROTECTED]>
Description: 
 libboost-date-time1.35-dev - set of date-time libraries based on generic 
programming concepts
 libboost-date-time1.35.0 - set of date-time libraries based on generic 
programming concepts
 libboost-filesystem1.35-dev - filesystem operations (portable paths, iteration 
over directories
 libboost-filesystem1.35.0 - filesystem operations (portable paths, iteration 
over directories
 libboost-graph1.35-dev - generic graph components and algorithms in C++
 libboost-graph1.35.0 - generic graph components and algorithms in C++
 libboost-iostreams1.35-dev - Boost.Iostreams Library development files
 libboost-iostreams1.35.0 - Boost.Iostreams Library
 libboost-program-options1.35-dev - program options library for C++
 libboost-program-options1.35.0 - program options library for C++
 libboost-python1.35-dev - Boost.Python Library development files
 libboost-python1.35.0 - Boost.Python Library
 libboost-regex1.35-dev - regular expression library for C++
 libboost-regex1.35.0 - regular expression library for C++
 libboost-serialization1.35-dev - serialization library for C++
 libboost-serialization1.35.0 - serialization library for C++
 libboost-signals1.35-dev - managed signals and slots library for C++
 libboost-signals1.35.0 - managed signals and slots library for C++
 libboost-system1.35-dev - Operating system (e.g. diagnostics support) library
 libboost-system1.35.0 - Operating system (e.g. diagnostics support) library
 libboost-test1.35-dev - components for writing and executing test suites
 libboost-test1.35.0 - components for writing and executing test suites
 libboost-thread1.35-dev - portable C++ multi-threading
 libboost-thread1.35.0 - portable C++ multi-threading
 libboost-wave1.35-dev - C99/C++ preprocessor library
 libboost-wave1.35.0 - C99/C++ preprocessor library
 libboost1.35-dbg - Boost C++ Libraries with debug symbols
 libboost1.35-dev - Boost C++ Libraries development files
 libboost1.35-doc - Boost.org libraries documentation
Closes: 485434 485512 487343 489022 491225 492786
Changes: 
 boost1.35 (1.35.0-6) experimental; urgency=low
 .
   [ Steve M. Robbins ]
 .
   * Uploading to experimental to avoid messing with the Etch freeze.
 .
   * debian/control: Set Standards-Version to 3.8.0; no changes required.
 .
   * debian/rules: Set gcc_version to gcc43 for the upstream-compatible
     symlinks.
 .
   * debian/patches/gcc-4.3.patch: Qualify typedef in
     boost/gil/bit_aligned_pixel_reference.hpp.  Closes: #485512.
 .
   * debian/patches/serialisation-utility-include.patch: New.  Apply
     suggested patch, from upstream
     http://svn.boost.org/trac/boost/ticket/1822.  Closes: #491225.
 .
   * debian/patches/sp_counted_base.patch: New.  Avoid using
     sp_counted_base_sync.hpp on ARM and HPPA, as those architectures do
     not support atomic builtin __sync_fetch_and_add.  Closes: #485434.
 .
   * debian/patches/kfreebsd-poll-symbols.patch: New.  Work around kFreeBSD
     defining POLL_ERR and POLL_HUP as the same value.  Closes: #492786.
 .
   * debian/patches/avoid-PATH_MAX.patch: New.  Use get_current_dir_name()
     to avoid static string of size PATH_MAX as that symbol is unavailable
     in hurd-i386.  Closes: #487343.
 .
   * debian/patches/test-child-exit-t1723.patch: New.  Ignore child process
     if return status is zero (normal); fix for Boost ticket 1723.
 .
   * debian/patches/python2.5-elementtree.patch: New.  Use cElementTree
     from xml.etree, if available (python 2.5).  Closes: #489022.
 .
   [ Domenico Andreoli ]
 .
   * debian/rules: perform parallel builds as per $DEB_BUILD_OPTIONS
Checksums-Sha1: 
 b2c9aec304a32132b86b65db05e588566960bafe 2021 boost1.35_1.35.0-6.dsc
 bd6ef65e516c329abe42f8ca5d316f055934af5e 77588 boost1.35_1.35.0-6.diff.gz
 f1ae31e97a0327c37b714400a72842626d29fc5f 28434836 
libboost1.35-doc_1.35.0-6_all.deb
 82d89d3b66f7b5a908af26909c06e38c7af1c53a 15282082 
libboost1.35-dbg_1.35.0-6_i386.deb
 0751e6f0caf62257f99cacf055d0ef3adf69e3fe 3451434 
libboost1.35-dev_1.35.0-6_i386.deb
 458449eaf39a73765c1b8e6804fe0240bf1a320f 55120 
libboost-date-time1.35.0_1.35.0-6_i386.deb
 7fe54fd7bc44b033881ef1e14457d82ea55b1499 177992 
libboost-date-time1.35-dev_1.35.0-6_i386.deb
 08b227231d732a7305c0dccfc90330eaf095080c 65114 
libboost-filesystem1.35.0_1.35.0-6_i386.deb
 8a8518479e13e82083ab4396eeda67c8a61c8192 92494 
libboost-filesystem1.35-dev_1.35.0-6_i386.deb
 8069245e5dd82b2b8efd71556034fb5c3b88ff02 214470 
libboost-graph1.35.0_1.35.0-6_i386.deb
 7d720cbc63e2f9b52cd6b64426fe213a0e5e0f75 523086 
libboost-graph1.35-dev_1.35.0-6_i386.deb
 17ff82927eed7b04086d0452846addf2bc22408d 52082 
libboost-iostreams1.35.0_1.35.0-6_i386.deb
 313f2f06c22bd07d212067a1a8a1d147579f11c5 147614 
libboost-iostreams1.35-dev_1.35.0-6_i386.deb
 895275d0abc210c8b0b2a2116fe04eed59b97d3d 183682 
libboost-program-options1.35.0_1.35.0-6_i386.deb
 4c119a402d1078bed73eb1b5b71c8522618c7542 258552 
libboost-program-options1.35-dev_1.35.0-6_i386.deb
 f954e840b23d5e7ef0a64542d7ff898d4baf423f 447444 
libboost-python1.35.0_1.35.0-6_i386.deb
 fc9c609af5b924ff7ab205134de330e103ba32a6 719816 
libboost-python1.35-dev_1.35.0-6_i386.deb
 4ad61acc736ba1fa7187e0e70e636e02aebdd181 531386 
libboost-regex1.35.0_1.35.0-6_i386.deb
 fbe3e4bbd62655ef4db48f3641864a9731c0177e 1028414 
libboost-regex1.35-dev_1.35.0-6_i386.deb
 ae65482cd55a5d2f99f7162455e16739f5ab217b 474794 
libboost-serialization1.35.0_1.35.0-6_i386.deb
 cf9289e640d68badc2522a1f8c2e89bda00d048e 698254 
libboost-serialization1.35-dev_1.35.0-6_i386.deb
 b9ee2288d7644e08668ff99b85122ba7d875dcd1 72984 
libboost-signals1.35.0_1.35.0-6_i386.deb
 535147342522fa897927d26de26ee93ffaa02028 93086 
libboost-signals1.35-dev_1.35.0-6_i386.deb
 a1150707144fe6f59bd43b7ca89c35e923149acf 28584 
libboost-system1.35.0_1.35.0-6_i386.deb
 5162c89709b8993db99ecffd5164c0bc4adf0434 35142 
libboost-system1.35-dev_1.35.0-6_i386.deb
 334cf60b95a9426641b4e4863d503adedf717627 298858 
libboost-test1.35.0_1.35.0-6_i386.deb
 2d313e2474469e967ede3b387cc76686217a51d9 526824 
libboost-test1.35-dev_1.35.0-6_i386.deb
 d681cefa0147c0a70cb30f4f7cced953e3d3dea9 45838 
libboost-thread1.35.0_1.35.0-6_i386.deb
 82f0c0e9088a62087aca46b515b0f7a77084c7ad 71916 
libboost-thread1.35-dev_1.35.0-6_i386.deb
 22773500a1a640603752c0301d9aaa2e5f7d5677 457564 
libboost-wave1.35.0_1.35.0-6_i386.deb
 4bf42b03cbec7672fabb67c26de3cd1533e69aec 880144 
libboost-wave1.35-dev_1.35.0-6_i386.deb
Checksums-Sha256: 
 db7011211d465e87beb2c9d6b021bfb2a3451207602b03d2ac7772ef9d5e5834 2021 
boost1.35_1.35.0-6.dsc
 49f74f84f9846e49fc448f3fddd6ffdeee37c834efee6db494acb184afed05f9 77588 
boost1.35_1.35.0-6.diff.gz
 2b2ee66042cd89586b690922e48b6fe4a5db9c3dc742ea4fa5c0a7724dc37d35 28434836 
libboost1.35-doc_1.35.0-6_all.deb
 daffc6478e5969825eb6b8d9a613e95a390b71944b10d93c3694ce47d207152f 15282082 
libboost1.35-dbg_1.35.0-6_i386.deb
 6206d3a0085b917b19cf24ed14c9fffdca6a71e52cdb12dec85a3523e5a95973 3451434 
libboost1.35-dev_1.35.0-6_i386.deb
 0688d5b680b8193b1571c54524f9df7c85afa2864e94e10ae59073f2c7306af1 55120 
libboost-date-time1.35.0_1.35.0-6_i386.deb
 60766681c2665510f8e5e4e3e97e9cc02d497aabd0c00e2ca4196a5e64178958 177992 
libboost-date-time1.35-dev_1.35.0-6_i386.deb
 983476a6562496e5a0886f12cebc235b3adfc4e0ac13c0c87aa0eb49add76f7c 65114 
libboost-filesystem1.35.0_1.35.0-6_i386.deb
 a1f08d844b0e1925523d4f3d082210edcfd720f5a4aaa349f795f3e117918b9f 92494 
libboost-filesystem1.35-dev_1.35.0-6_i386.deb
 71997809ec231b019caabc63fd1d5a9c4d3689d06be7ed20f6c97100853efb67 214470 
libboost-graph1.35.0_1.35.0-6_i386.deb
 5c10bcac228e43b7e856b904c093ea5e3cac48f970ad68947823ddb1379a2005 523086 
libboost-graph1.35-dev_1.35.0-6_i386.deb
 772a846cb27efdc0f85c754ce1e4a8dd9f6da6c4000879fb70e0d1d67dd36c91 52082 
libboost-iostreams1.35.0_1.35.0-6_i386.deb
 4fadab4637f24b828b530be6cd7f59c62568163b261b48f389a1e6c1030bef65 147614 
libboost-iostreams1.35-dev_1.35.0-6_i386.deb
 1d4b075aa0fa7d99a0aa4258b54a1f30709b17cbb6a7299cbb8637b476c74718 183682 
libboost-program-options1.35.0_1.35.0-6_i386.deb
 1ec9464dcba273f9c7b11030293fa7c9c4ba21c77e326e021fa1361b257bc8f6 258552 
libboost-program-options1.35-dev_1.35.0-6_i386.deb
 a8b594bb3c7fe18d2835803a2537effbceaa9110e1950985a03e9dcfc33bfe71 447444 
libboost-python1.35.0_1.35.0-6_i386.deb
 3657f4878351c34a524f08ae801c342dc68d4e3238da474e5fd156164020540a 719816 
libboost-python1.35-dev_1.35.0-6_i386.deb
 1a3a7cd9a480ee0c8202e3297b7223bc83b018cfb702fbb6e9e50f25a24eff68 531386 
libboost-regex1.35.0_1.35.0-6_i386.deb
 d63983ca57ee21fb78205942f9ead4c5d804dd17b7b3542d5a9cc5c4a5915566 1028414 
libboost-regex1.35-dev_1.35.0-6_i386.deb
 540677ad50466daf43551f3c5308f554402d9a0026d11f3babce98a7a20d90d3 474794 
libboost-serialization1.35.0_1.35.0-6_i386.deb
 e05c998d6adf22ee59e4861d2b3223175cbe60afa17e1859ac0bd356995e8a74 698254 
libboost-serialization1.35-dev_1.35.0-6_i386.deb
 f367e0178a836537531bb3a947bfbfaa7d979f05ed64e1ad25e75e03c4bfe264 72984 
libboost-signals1.35.0_1.35.0-6_i386.deb
 b10f6bbb20ff14f2f15571cf41e76e956178073c7fc27c4f93b7254a388850e6 93086 
libboost-signals1.35-dev_1.35.0-6_i386.deb
 396ed84b2c3b340f5093c7cfc9f3fc87d361432d4aa72cfa88826ce6b3f640f1 28584 
libboost-system1.35.0_1.35.0-6_i386.deb
 9b62d00c8b0916afec33fb816b890c3b98381901fcb17072efaa31c0251fccc5 35142 
libboost-system1.35-dev_1.35.0-6_i386.deb
 3cd962a53dd18e15cb448e1182465f1601ff64b3601b674f6728d4896f49e3cc 298858 
libboost-test1.35.0_1.35.0-6_i386.deb
 77124661e927576ea3aab0eafa4e2124696500c3a36d99425c737f6030c6a9e1 526824 
libboost-test1.35-dev_1.35.0-6_i386.deb
 404009e5eb7a12a832565f39e014c67f0292ccae728c3c6d495273b7aef083d8 45838 
libboost-thread1.35.0_1.35.0-6_i386.deb
 fb870ab7d9db2259d84b23a6a1d4596b6c6ac787f5443af572fc7c0d090f33c7 71916 
libboost-thread1.35-dev_1.35.0-6_i386.deb
 ae1bbdf5531573da3ace8357b5822f88b5dd79c1e045b9188e415311468d1a46 457564 
libboost-wave1.35.0_1.35.0-6_i386.deb
 813103338ff6731a852fe0a4841c93da98d9acd60ef7ba67870525cc2e4195f4 880144 
libboost-wave1.35-dev_1.35.0-6_i386.deb
Files: 
 b1460dcc8bebbef7c68a0223e83ec616 2021 libs optional boost1.35_1.35.0-6.dsc
 fc14d9672f7003a5747bdd38b2b52171 77588 libs optional boost1.35_1.35.0-6.diff.gz
 ab65ec6529cc65fc2c7e8e48f0567390 28434836 doc optional 
libboost1.35-doc_1.35.0-6_all.deb
 18cbc47770796eb9459a9e683d656c8a 15282082 libdevel extra 
libboost1.35-dbg_1.35.0-6_i386.deb
 21c3141eb921c1569715f6d5e7ba8a88 3451434 libdevel optional 
libboost1.35-dev_1.35.0-6_i386.deb
 b0eeade9ae91a5fa3a4e791fefd687fb 55120 libs optional 
libboost-date-time1.35.0_1.35.0-6_i386.deb
 b6de81cd03fd972527e17995c3f61057 177992 libdevel optional 
libboost-date-time1.35-dev_1.35.0-6_i386.deb
 cc837a3f4631b53ae688e48a7fdd8255 65114 libs optional 
libboost-filesystem1.35.0_1.35.0-6_i386.deb
 ab29b30667d2b181195b3ba427eeeedf 92494 libdevel optional 
libboost-filesystem1.35-dev_1.35.0-6_i386.deb
 78ce004e72ae5f8e1449b928c18a8fb6 214470 libs optional 
libboost-graph1.35.0_1.35.0-6_i386.deb
 be37e64e892190aaac04b68c3b239c52 523086 libdevel optional 
libboost-graph1.35-dev_1.35.0-6_i386.deb
 1f7beca73a2dd97be9efc499ffa8475d 52082 libs optional 
libboost-iostreams1.35.0_1.35.0-6_i386.deb
 b1b6b5003ecd848c49dcf0be5d171cac 147614 libdevel optional 
libboost-iostreams1.35-dev_1.35.0-6_i386.deb
 c9f9aa12251c166064f4d7a0a79b00a5 183682 libs optional 
libboost-program-options1.35.0_1.35.0-6_i386.deb
 bf72bbb9aed34b2efa573ae80c7a72e8 258552 libdevel optional 
libboost-program-options1.35-dev_1.35.0-6_i386.deb
 8533d087fce21b5cf3e1720950cc396b 447444 python optional 
libboost-python1.35.0_1.35.0-6_i386.deb
 d937b84dfe85417ca1bf72b1b0f5c5a9 719816 libdevel optional 
libboost-python1.35-dev_1.35.0-6_i386.deb
 5375c4055d257569365092d76a4b2beb 531386 libs optional 
libboost-regex1.35.0_1.35.0-6_i386.deb
 c3702d476006105ed28003dc8d1d5991 1028414 libdevel optional 
libboost-regex1.35-dev_1.35.0-6_i386.deb
 fe4b300b769455fa46fd471ffcb0e164 474794 libs optional 
libboost-serialization1.35.0_1.35.0-6_i386.deb
 937b4104674898b5ed95061dd87c9292 698254 libdevel optional 
libboost-serialization1.35-dev_1.35.0-6_i386.deb
 7596de4e171094408225bd4c31494142 72984 libs optional 
libboost-signals1.35.0_1.35.0-6_i386.deb
 37575f33588ea316b01cc692f22b8044 93086 libdevel optional 
libboost-signals1.35-dev_1.35.0-6_i386.deb
 ee94f54dc8059bb64bfbd14b4e50d72f 28584 libs optional 
libboost-system1.35.0_1.35.0-6_i386.deb
 8a1dbc2c0f3d1de8db9a5eb4ca1db078 35142 libdevel optional 
libboost-system1.35-dev_1.35.0-6_i386.deb
 e901f8e474d62137a165d26156ce2cb5 298858 libs optional 
libboost-test1.35.0_1.35.0-6_i386.deb
 b60401de3b200f2c822ce884584007f3 526824 libdevel optional 
libboost-test1.35-dev_1.35.0-6_i386.deb
 62c78c40f3dcc6b07b0abdeae6d2f800 45838 libs optional 
libboost-thread1.35.0_1.35.0-6_i386.deb
 a555e7dc4a59d305a725942000cb9b5a 71916 libdevel optional 
libboost-thread1.35-dev_1.35.0-6_i386.deb
 c96360525ca019319cc63dc46bbbec1b 457564 libs optional 
libboost-wave1.35.0_1.35.0-6_i386.deb
 71a602c38fde17820ad8675764c54427 880144 libdevel optional 
libboost-wave1.35-dev_1.35.0-6_i386.deb

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

iD8DBQFIli+N0i2bPSHbMcURAslGAJ9+i2xOyJR+l5d8GJwTrhhNgQa8GwCgr+Rk
k067F4oAL5jWyV/wszOge2A=
=Iman
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to