File: control

package info (click to toggle)
boost1.49 1.49.0-3.2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 427,096 kB
  • sloc: cpp: 1,806,930; xml: 101,307; ansic: 43,491; python: 28,668; sh: 11,922; cs: 2,118; perl: 714; makefile: 671; yacc: 456; asm: 353; php: 116; lisp: 60; sql: 13; csh: 6
file content (944 lines) | stat: -rw-r--r-- 40,445 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
Source: boost1.49
Homepage: http://www.boost.org/
Section: libs
Priority: optional
Maintainer: Debian Boost Team <pkg-boost-devel@lists.alioth.debian.org>
Uploaders: Steve M. Robbins <smr@debian.org>, Domenico Andreoli <cavok@debian.org>
Build-Depends: debhelper (>= 8), 
 zlib1g-dev, libbz2-dev, libicu-dev, mpi-default-dev,
 bison, flex, docbook-to-man, help2man, xsltproc, doxygen, 
 python, python-all-dev, 
 python3, python3-all-dev (>= 3.1)
Build-Conflicts: libopenmpi-dev (= 1.3.2-2)
Vcs-Browser: http://svn.debian.org/wsvn/pkg-boost/boost/trunk/
Vcs-Svn: svn://svn.debian.org/svn/pkg-boost/boost/trunk
Standards-Version: 3.9.2

Package: libboost1.49-dbg
Architecture: any
Section: debug
Priority: extra
Depends: ${misc:Depends}, ${shlibs:Depends}, libboost1.49-dev (= ${binary:Version})
Conflicts: libboost1.42-dbg, libboost1.46-dbg, libboost1.48-dbg
Description: Boost C++ Libraries with debug symbols
 This package forms part of the Boost C++ Libraries collection.
 .
 These libraries are built with debug symbols. They are useful to debug
 programs which use Boost. These must be used also at build/link time.

Package: libboost1.49-dev
Architecture: any
Section: libdevel
Depends: ${misc:Depends}, ${shlibs:Depends}, libstdc++6-4.4-dev | libstdc++-dev
Suggests: libboost1.49-doc,
 libboost-chrono1.49-dev,
 libboost-date-time1.49-dev,
 libboost-filesystem1.49-dev,
 libboost-graph-parallel1.49-dev,
 libboost-graph1.49-dev,
 libboost-iostreams1.49-dev,
 libboost-locale1.49-dev,
 libboost-math1.49-dev,
 libboost-mpi1.49-dev,
 libboost-program-options1.49-dev,
 libboost-python1.49-dev,
 libboost-random1.49-dev,
 libboost-regex1.49-dev,
 libboost-serialization1.49-dev,
 libboost-signals1.49-dev,
 libboost-system1.49-dev,
 libboost-test1.49-dev,
 libboost-thread1.49-dev,
 libboost-timer1.49-dev,
 libboost-wave1.49-dev,
 xsltproc,
 doxygen,
 docbook-xml (>= 4.2),
 docbook-xsl (>= 1.73.2),
 default-jdk (>= 1.4),
 fop (>= 0.94)
Conflicts: bjam, boost-build, libboost1.42-dev, libboost1.46-dev, libboost1.48-dev
Replaces: bjam, boost-build
Description: Boost C++ Libraries development files
 The Boost web site provides free, peer-reviewed, portable C++ source
 libraries. The emphasis is on libraries which work well with the C++
 Standard Library. One goal is to establish "existing practice" and
 provide reference implementations so that the Boost libraries are
 suitable for eventual standardization. Some of the libraries have
 already been proposed for inclusion in the C++ Standards Committee's
 upcoming C++ Standard Library Technical Report.
 .
 This package provides headers and the auxiliary tools bjam, Boost.Build,
 bcp, inspect, boostbook and quickbook.
 .
 For the following subprojects separate packages exist: chrono, date-time,
 filesystem, graph, iostreams, locale, math, mpi, program_options, python,
 regex, serialization, signals, system, test, thread, timer, and wave.

Package: libboost1.49-all-dev
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev,
 libboost-chrono1.49-dev, 
 libboost-date-time1.49-dev, 
 libboost-filesystem1.49-dev, 
 libboost-graph1.49-dev, 
 libboost-graph-parallel1.49-dev, 
 libboost-iostreams1.49-dev, 
 libboost-locale1.49-dev,
 libboost-math1.49-dev, 
 libboost-mpi1.49-dev, 
 libboost-mpi-python1.49-dev, 
 libboost-program-options1.49-dev, 
 libboost-python1.49-dev, 
 libboost-random1.49-dev, 
 libboost-regex1.49-dev, 
 libboost-serialization1.49-dev, 
 libboost-signals1.49-dev, 
 libboost-system1.49-dev, 
 libboost-test1.49-dev, 
 libboost-thread1.49-dev, 
 libboost-timer1.49-dev, 
 libboost-wave1.49-dev
Description: Boost C++ Libraries development files (ALL)
 The Boost web site provides free, peer-reviewed, portable C++ source
 libraries. The emphasis is on libraries which work well with the C++
 Standard Library. One goal is to establish "existing practice" and
 provide reference implementations so that the Boost libraries are
 suitable for eventual standardization. Some of the libraries have
 already been proposed for inclusion in the C++ Standards Committee's
 upcoming C++ Standard Library Technical Report.
 .
 This package provides the complete Boost development environment,
 including all separately-packaged libraries.

Package: libboost1.49-doc
Homepage: http://www.boost.org/libs/
Architecture: all
Section: doc
Depends: ${misc:Depends}
Suggests: libboost1.49-dev (>= ${source:Version})
Conflicts: libboost1.42-doc, libboost1.46-doc, libboost1.48-doc
Description: Boost.org libraries documentation
 The Boost web site provides free, peer-reviewed, portable C++ source
 libraries. The emphasis is on libraries which work well with the C++
 Standard Library. One goal is to establish "existing practice" and
 provide reference implementations so that the Boost libraries are
 suitable for eventual standardization. Some of the libraries have
 already been proposed for inclusion in the C++ Standards Committee's
 upcoming C++ Standard Library Technical Report.
 .
 This is documentation for the boost libraries in HTML format.
 Some pages point to header files provided in the corresponding -dev package,
 so it is suggested to install the latter as well.

Package: libboost-chrono1.49.0
Homepage: http://www.boost.org/libs/chrono/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: C++ representation of time duration, time point, and clocks
 This package forms part of the Boost C++ Libraries collection.
 .
 The Boost.Chrono library provides:
 .
  * A means to represent time durations: managed by the generic
 duration class . Examples of time durations include days, minutes,
 seconds and nanoseconds, which can be represented with a fixed number
 of clock ticks per unit. All of these units of time duration are
 united with a generic interface by the duration facility.
  * A type for representing points in time: time_point. A time_point
 represents an epoch plus or minus a duration. The library leaves
 epochs unspecified. A time_point is associated with a clock.
  * Several clocks, some of which may not be available on a
 particular platform: system_clock, steady_clock and
 high_resolution_clock. A clock is a pairing of a time_point and
 duration, and a function which returns a time_point representing now.
 .
 To make the timing facilities more generally useful, Boost.Chrono
 provides a number of clocks that are thin wrappers around the
 operating system's time APIs, thereby allowing the extraction of wall
 clock time, user CPU time, system CPU time spent by the process:
 .
  * process_real_cpu_clock, captures wall clock CPU time spent by the
 current process.  
  * process_user_cpu_clock, captures user-CPU time
 spent by the current process.  
  * process_system_cpu_clock, captures
 system-CPU time spent by the current process.  
  * A tuple-like class
 process_cpu_clock, that captures real, user-CPU, and system-CPU
 process times together.
  * A thread_clock thread steady clock giving
 the time spent by the current thread (when supported by a platform).
 .
 Lastly, Boost.Chrono includes typeof registration for duration and
 time_point to permit using emulated auto with C++03 compilers.

Package: libboost-chrono1.49-dev
Homepage: http://www.boost.org/libs/chrono/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-chrono1.49.0 (= ${binary:Version})
Conflicts: libboost-chrono1.48-dev
Description: C++ representation of time duration, time point, and clocks
 This package forms part of the Boost C++ Libraries collection.
 .
 The Boost.Chrono library provides:
 .
  * A means to represent time durations: managed by the generic
 duration class . Examples of time durations include days, minutes,
 seconds and nanoseconds, which can be represented with a fixed number
 of clock ticks per unit. All of these units of time duration are
 united with a generic interface by the duration facility.
  * A type for representing points in time: time_point. A time_point
 represents an epoch plus or minus a duration. The library leaves
 epochs unspecified. A time_point is associated with a clock.
  * Several clocks, some of which may not be available on a
 particular platform: system_clock, steady_clock and
 high_resolution_clock. A clock is a pairing of a time_point and
 duration, and a function which returns a time_point representing now.
 .
 To make the timing facilities more generally useful, Boost.Chrono
 provides a number of clocks that are thin wrappers around the
 operating system's time APIs, thereby allowing the extraction of wall
 clock time, user CPU time, system CPU time spent by the process:
 .
  * process_real_cpu_clock, captures wall clock CPU time spent by the
 current process.  
  * process_user_cpu_clock, captures user-CPU time
 spent by the current process.  
  * process_system_cpu_clock, captures
 system-CPU time spent by the current process.  
  * A tuple-like class
 process_cpu_clock, that captures real, user-CPU, and system-CPU
 process times together.
  * A thread_clock thread steady clock giving
 the time spent by the current thread (when supported by a platform).
 .
 Lastly, Boost.Chrono includes typeof registration for duration and
 time_point to permit using emulated auto with C++03 compilers.

Package: libboost-date-time1.49.0
Homepage: http://www.boost.org/libs/date_time/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: set of date-time libraries based on generic programming concepts
 This package forms part of the Boost C++ Libraries collection.
 .
 These libraries are intended to make programming with dates and times
 almost as simple and natural as programming with strings and integers.

Package: libboost-date-time1.49-dev
Homepage: http://www.boost.org/libs/date_time/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-date-time1.49.0 (= ${binary:Version}),
 libboost-serialization1.49-dev (= ${binary:Version})
Conflicts: libboost-date-time1.42-dev, libboost-date-time1.46-dev, libboost-date-time1.48-dev
Description: set of date-time libraries based on generic programming concepts
 This package forms part of the Boost C++ Libraries collection.
 .
 These libraries are intended to make programming with dates and times
 almost as simple and natural as programming with strings and integers.

Package: libboost-filesystem1.49.0
Homepage: http://boost.org/libs/filesystem/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: filesystem operations (portable paths, iteration over directories, etc) in C++
 This package forms part of the Boost C++ Libraries collection.
 .
 The Boost Filesystem Library provides portable facilities to query and 
 manipulate paths, files, and directories.  The goal is to
 facilitate portable script-like operations from within C++ programs.

Package: libboost-filesystem1.49-dev
Homepage: http://boost.org/libs/filesystem/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-filesystem1.49.0 (= ${binary:Version}),
 libboost-system1.49-dev (= ${binary:Version})
Conflicts: libboost-filesystem1.42-dev, libboost-filesystem1.46-dev, libboost-filesystem1.48-dev
Description: filesystem operations (portable paths, iteration over directories, etc) in C++
 This package forms part of the Boost C++ Libraries collection.
 .
 The Boost Filesystem Library provides portable facilities to query and 
 manipulate paths, files, and directories.  The goal is to
 facilitate portable script-like operations from within C++ programs.

Package: libboost-graph1.49.0
Homepage: http://www.boost.org/libs/graph/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Suggests: graphviz
Description: generic graph components and algorithms in C++
 This package forms part of the Boost C++ Libraries collection.
 .
 Graphs are mathematical abstractions that are useful for solving
 many types of problems in computer science. Consequently, these
 abstractions must also be represented in computer programs. A
 standardized generic interface for traversing graphs is of utmost
 importance to encourage reuse of graph algorithms and data structures.

Package: libboost-graph1.49-dev
Homepage: http://www.boost.org/libs/graph/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-serialization1.49-dev (= ${binary:Version}),
 libboost-test1.49-dev (= ${binary:Version})
Recommends: libboost-graph1.49.0 (= ${binary:Version})
Conflicts: libboost-graph1.42-dev, libboost-graph1.46-dev, libboost-graph1.48-dev
Description: generic graph components and algorithms in C++
 This package forms part of the Boost C++ Libraries collection.
 .
 Graphs are mathematical abstractions that are useful for solving
 many types of problems in computer science. Consequently, these
 abstractions must also be represented in computer programs. A
 standardized generic interface for traversing graphs is of utmost
 importance to encourage reuse of graph algorithms and data structures.

Package: libboost-graph-parallel1.49.0
Homepage: http://www.boost.org/libs/graph_parallel/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Suggests: graphviz
Description: generic graph components and algorithms in C++
 This package forms part of the Boost C++ Libraries collection.
 .
 The Parallel Boost Graph Library is an extension to the Boost Graph Library
 (BGL) for parallel and distributed computing. It offers distributed graphs 
 and graph algorithms to exploit coarse-grained parallelism along with 
 parallel algorithms that exploit fine-grained parallelism, while retaining 
 the same interfaces as the (sequential) BGL. Code written using the sequential
 BGL should be easy to parallelize with the parallel BGL.

Package: libboost-graph-parallel1.49-dev
Homepage: http://www.boost.org/libs/graph_parallel/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-serialization1.49-dev (= ${binary:Version}),
 libboost-test1.49-dev (= ${binary:Version})
Conflicts: libboost-graph-parallel1.42-dev, libboost-graph-parallel1.46-dev, libboost-graph-parallel1.48-dev
Recommends: libboost-graph-parallel1.49.0 (= ${binary:Version})
Description: generic graph components and algorithms in C++
 This package forms part of the Boost C++ Libraries collection.
 .
 The Parallel Boost Graph Library is an extension to the Boost Graph Library
 (BGL) for parallel and distributed computing. It offers distributed graphs 
 and graph algorithms to exploit coarse-grained parallelism along with 
 parallel algorithms that exploit fine-grained parallelism, while retaining 
 the same interfaces as the (sequential) BGL. Code written using the sequential
 BGL should be easy to parallelize with the parallel BGL.

Package: libboost-iostreams1.49.0
Homepage: http://www.boost.org/libs/iostreams/
Architecture: any
Section: libs
Priority: important
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Boost.Iostreams Library
 This package forms part of the Boost C++ Libraries collection.
 .
 Boost.Iostreams are a collection of concepts and a set of templates
 which turn models of these concepts into C++ standard library streams
 and stream buffers.

Package: libboost-iostreams1.49-dev
Homepage: http://www.boost.org/libs/iostreams/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-regex1.49-dev (= ${binary:Version}),
 libboost-iostreams1.49.0 (= ${binary:Version})
Conflicts: libboost-iostreams1.42-dev, libboost-iostreams1.46-dev, libboost-iostreams1.48-dev
Description: Boost.Iostreams Library development files
 This package forms part of the Boost C++ Libraries collection.
 .
 Boost.Iostreams are a collection of concepts and a set of templates
 which turn models of these concepts into C++ standard library streams
 and stream buffers.

Package: libboost-locale1.49.0
Homepage: http://www.boost.org/libs/locale/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: C++ facilities for localization
 This package forms part of the Boost C++ Libraries collection.
 .
 Boost.Locale gives powerful tools for development of cross platform
 localized software - the software that talks to user in its language.
 .
  * Correct case conversion, case folding and normalization.
  * Collation (sorting), including support for 4 Unicode collation
 levels.
  * Date, time, timezone and calendar manipulations, formatting
 and parsing, including transparent support for calendars other than
 Gregorian.
  * Boundary analysis for characters, words, sentences and
 line-breaks.
  * Number formatting, spelling and parsing.
  * Monetary formatting and parsing.
  * Powerful message formatting (string translation) including 
 support for plural forms, using GNU catalogs.
  * Character set conversion.
  * Transparent support for 8-bit character sets like Latin1
  * Support for char and wchar_t
  * Experimental support for C++0x char16_t and char32_t strings and streams.

Package: libboost-locale1.49-dev
Homepage: http://www.boost.org/libs/math/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-locale1.49.0 (= ${binary:Version})
Conflicts: libboost-locale1.48-dev
Description: C++ facilities for localization
 This package forms part of the Boost C++ Libraries collection.
 .
 Boost.Locale gives powerful tools for development of cross platform
 localized software - the software that talks to user in its language.
 .
  * Correct case conversion, case folding and normalization.
  * Collation (sorting), including support for 4 Unicode collation
 levels.
  * Date, time, timezone and calendar manipulations, formatting
 and parsing, including transparent support for calendars other than
 Gregorian.
  * Boundary analysis for characters, words, sentences and
 line-breaks.
  * Number formatting, spelling and parsing.
  * Monetary formatting and parsing.
  * Powerful message formatting (string translation) including 
 support for plural forms, using GNU catalogs.
  * Character set conversion.
  * Transparent support for 8-bit character sets like Latin1
  * Support for char and wchar_t
  * Experimental support for C++0x char16_t and char32_t strings and streams.

Package: libboost-math1.49.0
Homepage: http://www.boost.org/libs/math/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Boost.Math Library
 This package forms part of the Boost C++ Libraries collection.
 .
 This library is divided into three interconnected parts:
  * Statistical Distributions: Provides a reasonably comprehensive set of 
    statistical distributions, upon which higher level statistical tests 
    can be built.
  * Mathematical Special Functions: Provides a small number of high quality 
    special functions, initially these were concentrated on functions used in 
    statistical applications along with those in the Technical Report on 
    C++ Library Extensions.
  * Implementation Toolkit: Provides many of the tools required to implement 
    mathematical special functions.

Package: libboost-math1.49-dev
Homepage: http://www.boost.org/libs/math/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-math1.49.0 (= ${binary:Version})
Conflicts: libboost-math1.42-dev, libboost-math1.46-dev, libboost-math1.48-dev
Description: Boost.Math Library development files
 This package forms part of the Boost C++ Libraries collection.
 .
 This library is divided into three interconnected parts:
  * Statistical Distributions: Provides a reasonably comprehensive set of 
    statistical distributions, upon which higher level statistical tests 
    can be built.
  * Mathematical Special Functions: Provides a small number of high quality 
    special functions, initially these were concentrated on functions used in 
    statistical applications along with those in the Technical Report on 
    C++ Library Extensions.
  * Implementation Toolkit: Provides many of the tools required to implement 
    mathematical special functions.

Package: libboost-mpi1.49.0
Homepage: http://www.boost.org/doc/html/mpi.html
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: C++ interface to the Message Passing Interface (MPI)
 This package forms part of the Boost C++ Libraries collection.
 .
 The Boost.MPI library provides a C++ interface to MPI that
 supports modern C++ development styles, including complete support for
 user-defined data types and C++ Standard Library types, arbitrary function
 objects for collective algorithms, and the use of modern C++ library
 techniques to maintain maximal efficiency.

Package: libboost-mpi1.49-dev
Homepage: http://www.boost.org/doc/html/mpi.html
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-serialization1.49-dev (= ${binary:Version}),
 libboost-mpi1.49.0 (= ${binary:Version}),
 mpi-default-dev
Suggests: libboost-graph1.49-dev
Conflicts: libboost-mpi1.42-dev, libboost-mpi1.46-dev, libboost-mpi1.48-dev
Description: C++ interface to the Message Passing Interface (MPI)
 This package forms part of the Boost C++ Libraries collection.
 .
 The Boost.MPI library provides a C++ interface to MPI that
 supports modern C++ development styles, including complete support for
 user-defined data types and C++ Standard Library types, arbitrary function
 objects for collective algorithms, and the use of modern C++ library
 techniques to maintain maximal efficiency.

Package: libboost-mpi-python1.49.0
Homepage: http://www.boost.org/doc/html/mpi/python.html
Architecture: any
Section: python
Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}
Suggests: python, python3
Breaks: ${python:Breaks}
Conflicts: libboost-mpi-python1.40.0,
 libboost-mpi-python1.41.0,
 libboost-mpi-python1.42.0,
 libboost-mpi-python1.46.0, libboost-mpi-python1.46.1, libboost-mpi-python1.48.0
Description: C++ interface to the Message Passing Interface (MPI), Python Bindings
 This package forms part of the Boost C++ Libraries collection.
 .
 The Boost.MPI library provides a C++ interface to MPI that
 supports modern C++ development styles, including complete support for
 user-defined data types and C++ Standard Library types, arbitrary function
 objects for collective algorithms, and the use of modern C++ library
 techniques to maintain maximal efficiency.
 .
 This package provides Python Bindings to the C++ interface.
 .
 One of the python interpreter packages is required to use the bindings.

Package: libboost-mpi-python1.49-dev
Homepage: http://www.boost.org/doc/html/mpi/python.html
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost-mpi1.49-dev (= ${binary:Version}),
 libboost-mpi-python1.49.0 (= ${binary:Version})
Conflicts: libboost-mpi-python1.42-dev, libboost-mpi-python1.46-dev, libboost-mpi-python1.48-dev
Description: C++ interface to the Message Passing Interface (MPI), Python Bindings
 This package forms part of the Boost C++ Libraries collection.
 .
 The Boost.MPI library provides a C++ interface to MPI that
 supports modern C++ development styles, including complete support for
 user-defined data types and C++ Standard Library types, arbitrary function
 objects for collective algorithms, and the use of modern C++ library
 techniques to maintain maximal efficiency.
 .
 This package provides Python Bindings to the C++ interface.

Package: libboost-program-options1.49.0
Homepage: http://www.boost.org/libs/program_options/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: program options library for C++
 This package forms part of the Boost C++ Libraries collection.
 .
 Library to let program developers obtain program options, that is
 (name, value) pairs from the user, via conventional methods such as
 command line and config file.

Package: libboost-program-options1.49-dev
Homepage: http://www.boost.org/libs/program_options/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-program-options1.49.0 (= ${binary:Version})
Conflicts: libboost-program-options1.42-dev, libboost-program-options1.46-dev, libboost-program-options1.48-dev
Description: program options library for C++
 This package forms part of the Boost C++ Libraries collection.
 .
 Library to let program developers obtain program options, that is
 (name, value) pairs from the user, via conventional methods such as
 command line and config file.

Package: libboost-python1.49.0
Homepage: http://www.boost.org/libs/python/
Architecture: any
Section: python
Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}
Suggests: python, python3
Breaks: ${python:Breaks}
Description: Boost.Python Library 
 This package forms part of the Boost C++ Libraries collection.
 .
 The Boost Python Library is used to quickly and easily export a C++
 library to Python such that the Python interface is very similar to
 the C++ interface. It is designed to be minimally intrusive on your
 C++ design. In most cases, you should not have to alter your C++
 classes in any way in order to use them with Boost.Python.  The
 system should simply "reflect" your C++ classes and functions into
 Python. The major features of Boost.Python include support for:
 Subclassing extension types in Python, Overriding virtual functions
 in Python, Member function Overloading, Automatic wrapping of
 numeric operators among others.
 .
 One of the python interpreter packages is required to use the
 created extensions.

Package: libboost-python1.49-dev
Homepage: http://www.boost.org/libs/python/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-python1.49.0 (= ${binary:Version}),
 python-dev, ${python:Depends},
 python (>= 2.5) | python-celementtree | python-elementtree,
 gccxml
Suggests: libboost1.49-doc
Conflicts: libboost-python1.42-dev, libboost-python1.46-dev, libboost-python1.48-dev
Description: Boost.Python Library development files
 This package forms part of the Boost C++ Libraries collection.
 .
 The Boost Python Library is used to quickly and easily export a C++
 library to Python such that the Python interface is very similar to
 the C++ interface. It is designed to be minimally intrusive on your
 C++ design. In most cases, you should not have to alter your C++
 classes in any way in order to use them with Boost.Python.  The
 system should simply "reflect" your C++ classes and functions into
 Python. The major features of Boost.Python include support for:
 Subclassing extension types in Python, Overriding virtual functions
 in Python, Member function Overloading, Automatic wrapping of
 numeric operators among others.
 .
 This package also contains the pyste Boost.Python code generator that
 allows the user to specify classes and functions to be exported using
 a simple interface file, which following the Boost.Python's
 philosophy, is simple Python code.
 .
 This package allows development of a Python interface for all current
 versions of Python in Debian.  Code using this library will need also
 one of the Python development packages.

Package: libboost-random1.49.0
Homepage: http://www.boost.org/libs/random/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Boost Random Number Library
 This package forms part of the Boost C++ Libraries collection.
 .
 The Boost Random Number Library (Boost.Random for short) provides a
 variety of generators and distributions to produce random numbers
 having useful properties, such as uniform distribution.

Package: libboost-random1.49-dev
Homepage: http://www.boost.org/libs/random/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-random1.49.0 (= ${binary:Version})
Conflicts: libboost-random1.42-dev, libboost-random1.46-dev, libboost-random1.48-dev
Description: Boost Random Number Library
 This package forms part of the Boost C++ Libraries collection.
 .
 The Boost Random Number Library (Boost.Random for short) provides a
 variety of generators and distributions to produce random numbers
 having useful properties, such as uniform distribution.

Package: libboost-regex1.49.0
Homepage: http://www.boost.org/libs/regex/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: regular expression library for C++
 This package forms part of the Boost C++ Libraries collection.
 .
 Regular expressions are a form of pattern-matching that are often
 used in text processing; many users will be familiar with the Unix
 utilities grep, sed and awk, and the programming language perl, each
 of which make extensive use of regular expressions. Traditionally C++
 users have been limited to the POSIX C APIs for manipulating regular
 expressions, and while regex does provide these APIs, they do not
 represent the best way to use the library. For example regex can cope
 with wide character strings, or search and replace operations (in a
 manner analogous to either sed or perl), something that traditional C
 libraries can not do.

Package: libboost-regex1.49-dev
Homepage: http://www.boost.org/libs/regex/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-regex1.49.0 (= ${binary:Version}),
 libicu-dev
Conflicts: libboost-regex1.42-dev, libboost-regex1.46-dev, libboost-regex1.48-dev
Description: regular expression library for C++
 This package forms part of the Boost C++ Libraries collection.
 .
 Regular expressions are a form of pattern-matching that are often
 used in text processing; many users will be familiar with the Unix
 utilities grep, sed and awk, and the programming language perl, each
 of which make extensive use of regular expressions. Traditionally C++
 users have been limited to the POSIX C APIs for manipulating regular
 expressions, and while regex does provide these APIs, they do not
 represent the best way to use the library. For example regex can cope
 with wide character strings, or search and replace operations (in a
 manner analogous to either sed or perl), something that traditional C
 libraries can not do.

Package: libboost-serialization1.49.0
Homepage: http://www.boost.org/libs/serialization/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: serialization library for C++
 This package forms part of the Boost C++ Libraries collection,
 containing the following functionalities:
 .
  * proper restoration of pointers to shared data
  * serialization of STL containers and other commonly used templates
  * data portability - streams of bytes created on one platform should
    be readable on any other
  * archive interface must be rich enough to permit the creation of an
    archive that presents serialized data as XML in a useful manner
 .
 Here, "serialization" means the reversible deconstruction of an
 arbitrary set of C++ data structures to a sequence of bytes.
 archive: to refer to a specific rendering of this stream of bytes.

Package: libboost-serialization1.49-dev
Homepage: http://www.boost.org/libs/serialization/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-serialization1.49.0 (= ${binary:Version})
Conflicts: libboost-serialization1.42-dev, libboost-serialization1.46-dev, libboost-serialization1.48-dev
Description: serialization library for C++
 This package forms part of the Boost C++ Libraries collection,
 containing the following functionalities:
 .
  * proper restoration of pointers to shared data
  * serialization of STL containers and other commonly used templates
  * data portability - streams of bytes created on one platform should
    be readable on any other
  * archive interface must be rich enough to permit the creation of an
    archive that presents serialized data as XML in a useful manner
 .
 Here, "serialization" means the reversible deconstruction of an
 arbitrary set of C++ data structures to a sequence of bytes.
 archive: to refer to a specific rendering of this stream of bytes.

Package: libboost-signals1.49.0
Homepage: http://www.boost.org/libs/signals/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: managed signals and slots library for C++
 This package forms part of the Boost C++ Libraries collection.
 .
 Signals represent callbacks with multiple targets, and are also
 called publishers or events in similar systems. Signals are connected
 to some set of slots, which are callback receivers (also called event
 targets or subscribers), which are called when the signal is
 "emitted."

Package: libboost-signals1.49-dev
Homepage: http://www.boost.org/libs/signals/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-signals1.49.0 (= ${binary:Version})
Conflicts: libboost-signals1.42-dev, libboost-signals1.46-dev, libboost-signals1.48-dev
Description: managed signals and slots library for C++
 This package forms part of the Boost C++ Libraries collection.
 .
 Signals represent callbacks with multiple targets, and are also
 called publishers or events in similar systems. Signals are connected
 to some set of slots, which are callback receivers (also called event
 targets or subscribers), which are called when the signal is
 "emitted."

Package: libboost-system1.49.0
Homepage: http://www.boost.org/libs/system/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Operating system (e.g. diagnostics support) library
 This package forms part of the Boost C++ Libraries collection.
 .
 The Boost System library provides simple, light-weight error_code
 objects that encapsulate system-specific error code values, yet also
 provide access to more abstract and portable error conditions via
 error_condition objects. Because error_code objects can represent
 errors from sources other than the operating system, including
 user-defined sources, each error_code and error_condition has an
 associated error_category.

Package: libboost-system1.49-dev
Homepage: http://www.boost.org/libs/system/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-system1.49.0 (= ${binary:Version})
Conflicts: libboost-system1.42-dev, libboost-system1.46-dev, libboost-system1.48-dev
Description: Operating system (e.g. diagnostics support) library
 This package forms part of the Boost C++ Libraries collection.
 .
 The Boost System library provides simple, light-weight error_code
 objects that encapsulate system-specific error code values, yet also
 provide access to more abstract and portable error conditions via
 error_condition objects. Because error_code objects can represent
 errors from sources other than the operating system, including
 user-defined sources, each error_code and error_condition has an
 associated error_category.

Package: libboost-test1.49.0
Homepage: http://www.boost.org/libs/test/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: components for writing and executing test suites
 This package forms part of the Boost C++ Libraries collection.  The
 library contains several components.
 .
  * Basic execution, error detection, and reporting facility.
  * Facilities to monitor program execution and produce error reports.
  * Unit test framework to simplify writing test cases.

Package: libboost-test1.49-dev
Homepage: http://www.boost.org/libs/test/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-test1.49.0 (= ${binary:Version})
Conflicts: libboost-test1.42-dev, libboost-test1.46-dev, libboost-test1.48-dev
Description: components for writing and executing test suites
 This package forms part of the Boost C++ Libraries collection.  The
 library contains several components.
 .
  * Basic execution, error detection, and reporting facility.
  * Facilities to monitor program execution and produce error reports.
  * Unit test framework to simplify writing test cases.

Package: libboost-thread1.49.0
Homepage: http://www.boost.org/libs/thread/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: portable C++ multi-threading
 This package forms part of the Boost C++ Libraries collection.
 .
 Toolkit for writing C++ programs that execute as multiple,
 asynchronous, independent, threads-of-execution. Each thread has its
 own machine state including program instruction counter and
 registers.

Package: libboost-thread1.49-dev
Homepage: http://www.boost.org/libs/thread/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-date-time1.49-dev (= ${binary:Version}),
 libboost-thread1.49.0 (= ${binary:Version})
Conflicts: libboost-thread1.42-dev, libboost-thread1.46-dev, libboost-thread1.48-dev
Description: portable C++ multi-threading
 This package forms part of the Boost C++ Libraries collection.
 .
 Toolkit for writing C++ programs that execute as multiple,
 asynchronous, independent, threads-of-execution. Each thread has its
 own machine state including program instruction counter and
 registers.

Package: libboost-timer1.49.0
Homepage: http://www.boost.org/libs/timer/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: C++ wall clock and CPU process timers
 This package forms part of the Boost C++ Libraries collection.
 .
 Portable C++ timer classes that answer the question "How long does my
 C++ code take to run?" with as little as one #include and one
 additional line of code.
 .
 Class cpu_timer measures wall clock time, user CPU process time, and
 system CPU process time. Class auto_cpu_timer is a refinement of
 cpu_timer that automatically reports the elapsed times when an
 auto_cpu_timer object is destroyed.

Package: libboost-timer1.49-dev
Homepage: http://www.boost.org/libs/timer/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-timer1.49.0 (= ${binary:Version})
Conflicts: libboost-timer1.42-dev, libboost-timer1.46-dev, libboost-timer1.48-dev
Description: C++ wall clock and CPU process timers
 This package forms part of the Boost C++ Libraries collection.
 .
 Portable C++ timer classes that answer the question "How long does my
 C++ code take to run?" with as little as one #include and one
 additional line of code.
 .
 Class cpu_timer measures wall clock time, user CPU process time, and
 system CPU process time. Class auto_cpu_timer is a refinement of
 cpu_timer that automatically reports the elapsed times when an
 auto_cpu_timer object is destroyed.

Package: libboost-wave1.49.0
Homepage: http://www.boost.org/libs/wave/
Architecture: any
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: C99/C++ preprocessor library
 This package forms part of the Boost C++ Libraries collection.
 .
 The Wave C++ preprocessor library is a Standards conformant
 implementation of the mandated C99/C++ preprocessor functionality
 packed behind a simple to use interface, which integrates well with
 the well known idioms of the Standard Template Library (STL).

Package: libboost-wave1.49-dev
Homepage: http://www.boost.org/libs/wave/
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
 libboost1.49-dev (= ${binary:Version}),
 libboost-serialization1.49-dev (= ${binary:Version}),
 libboost-wave1.49.0 (= ${binary:Version}),
 libboost-filesystem1.49-dev (= ${binary:Version})
Conflicts: libboost-wave1.42-dev, libboost-wave1.46-dev, libboost-wave1.48-dev
Description: C99/C++ preprocessor library
 This package forms part of the Boost C++ Libraries collection.
 .
 The Wave C++ preprocessor library is a Standards conformant
 implementation of the mandated C99/C++ preprocessor functionality
 packed behind a simple to use interface, which integrates well with
 the well known idioms of the Standard Template Library (STL).