boost1.54 1.54.0-4ubuntu2 source package in Ubuntu
Changelog
boost1.54 (1.54.0-4ubuntu2) trusty; urgency=medium * Build for ubuntu main without mpi, for real. boost1.54 (1.54.0-4ubuntu1) trusty; urgency=low * Merge from debian, remaining changes: - build for ubuntu main without mpi - debian/patches/eglibc-long-long.patch: Fix build with eglibc 2.18. - debian/rules: Treat ppc64el like ppc64. * Split pyste into a separate package. boost1.54 (1.54.0-4) unstable; urgency=low [ Dmitrijs Ledkovs ] * Multi-arch most -dev packages (excluding python, mpi). Initial patches based on the work by Helmut Grohne. (Closes: #710413, #693247) * Split boost auxiliary tools into a separate Multi-Arch:foreign package. * Build-depend on dh-python to gain arch-qualified python extension names. * Create permament libboost_python.[a|so] symlinks (LP: #1217237) as python2.7 is the last python2 series release. * Correct the dependency on libstdc++, it's actually libstdc++-4.8-dev, not libstdc++6-4.8-dev. * Demote gccxml from Depends to Recommends in the libboost-python-dev package. (Closes: #726172) * Apply patch from Boost upstream to resolve BOOST_LCAST_HAS_INT128 issue (#8790) (Closes: #727750) [ Steve M. Robbins ] * rules: Disable context for mips64 and mips64el. Closes: #728616. * patches/hppa-long-double-config.patch: New. Fixes definition of BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS for hppa (thanks, Dave Anglin). Closes: #729479. * control.in(libboost1.54-dev): Add "Suggests" relationship to packages libmpfrc++-dev & libntl-dev because Boost.Multiprecision provides wrappers for them. Closes: #731048. [ Matthias Klose ] * Add support for powerpc ELFv2. -- Dimitri John Ledkov <email address hidden> Wed, 18 Dec 2013 15:14:53 +0000
Upload details
- Uploaded by:
- Dimitri John Ledkov
- Uploaded to:
- Trusty
- Original maintainer:
- Ubuntu Developers
- Architectures:
- any all
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section |
---|
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
boost1.54_1.54.0.orig.tar.bz2 | 55.2 MiB | 047e927de336af106a24bceba30069980c191529fd76b8dff8eb9a328b48ae1d |
boost1.54_1.54.0-4ubuntu2.debian.tar.gz | 128.2 KiB | 6b938fb28c6638e92f0637bd38a2ec92a02812961943db84e165cc0908920f17 |
boost1.54_1.54.0-4ubuntu2.dsc | 5.5 KiB | d7b98cf1cbaf35d3aeb04faf30c8755e663f21eb37a9978d110336b2498394d2 |
Available diffs
- diff from 1.54.0-4~ubuntu6 to 1.54.0-4ubuntu2 (3.8 KiB)
- diff from 1.54.0-4ubuntu1 to 1.54.0-4ubuntu2 (637 bytes)
Binary packages built by this source
- libboost-atomic1.54-dev: atomic data types, operations, and memory ordering constraints
This package forms part of the Boost C++ Libraries collection.
.
Boost.Atomic is a library that provides atomic data types and
operations on these data types, as well as memory ordering
constraints required for coordinating multiple threads through atomic
variables. It implements the interface as defined by the C++11
standard, but makes this feature available for platforms lacking
system/compiler support for this particular C++11 feature.
.
Users of this library should already be familiar with concurrency in
general, as well as elementary concepts such as "mutual exclusion".
.
The implementation makes use of processor-specific instructions where
possible (via inline assembler, platform libraries or compiler
intrinsics), and falls back to "emulating" atomic operations through
locking.
- libboost-atomic1.54.0: atomic data types, operations, and memory ordering constraints
This package forms part of the Boost C++ Libraries collection.
.
Boost.Atomic is a library that provides atomic data types and
operations on these data types, as well as memory ordering
constraints required for coordinating multiple threads through atomic
variables. It implements the interface as defined by the C++11
standard, but makes this feature available for platforms lacking
system/compiler support for this particular C++11 feature.
.
Users of this library should already be familiar with concurrency in
general, as well as elementary concepts such as "mutual exclusion".
.
The implementation makes use of processor-specific instructions where
possible (via inline assembler, platform libraries or compiler
intrinsics), and falls back to "emulating" atomic operations through
locking.
- libboost-chrono1.54-dev: 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.
- libboost-chrono1.54.0: 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.
- libboost-context1.54-dev: provides a sort of cooperative multitasking on a single thread
This package forms part of the Boost C++ Libraries collection.
.
Boost.Context is a foundational library that provides a sort of
cooperative multitasking on a single thread. By providing an
abstraction of the current execution state in the current thread,
including the stack (with local variables) and stack pointer, all
registers and CPU flags, and the instruction pointer, a fcontext_t
instance represents a specific point in the application's execution
path. This is useful for building higher-level abstractions, like
coroutines, cooperative threads (userland threads) or an equivalent
to C# keyword yield in C++.
- libboost-context1.54.0: provides a sort of cooperative multitasking on a single thread
This package forms part of the Boost C++ Libraries collection.
.
Boost.Context is a foundational library that provides a sort of
cooperative multitasking on a single thread. By providing an
abstraction of the current execution state in the current thread,
including the stack (with local variables) and stack pointer, all
registers and CPU flags, and the instruction pointer, a fcontext_t
instance represents a specific point in the application's execution
path. This is useful for building higher-level abstractions, like
coroutines, cooperative threads (userland threads) or an equivalent
to C# keyword yield in C++.
- libboost-coroutine1.54-dev: provides a sort of cooperative multitasking on a single thread
This package forms part of the Boost C++ Libraries collection.
.
Boost.Coroutine provides templates for generalized subroutines which
allow multiple entry points for suspending and resuming execution at
certain locations. It preserves the local state of execution and
allows re-entering subroutines more than once (useful if state must
be kept across function calls).
.
Coroutines can be viewed as a language-level construct providing a
special kind of control flow.
.
In contrast to threads, which are pre-emptive, coroutine switches are
cooperative (programmer controls when a switch will happen). The
kernel is not involved in the coroutine switches.
.
The implementation uses Boost.Context for context switching.
- libboost-date-time1.54-dev: 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.
- libboost-date-time1.54.0: 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.
- libboost-exception1.54-dev: library to help write exceptions and handlers
This package forms part of the Boost C++ Libraries collection.
.
The purpose of Boost Exception is to ease the design of exception
class hierarchies and to help write exception handling and error
reporting code.
- libboost-filesystem1.54-dev: 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.
- libboost-filesystem1.54.0: 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.
- libboost-graph1.54-dev: 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.
- libboost-graph1.54.0: 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.
- libboost-iostreams1.54-dev: 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.
- libboost-iostreams1.54.0: 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.
- libboost-locale1.54-dev: 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.
- libboost-locale1.54.0: 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.
- libboost-log1.54-dev: C++ logging library
This package forms part of the Boost C++ Libraries collection.
.
This library aims to make logging significantly easier for the
application developer. It provides a wide range of out-of-the-box
tools along with public interfaces for extending the library. The
main goals of the library are:
.
* Simplicity. A small example code snippet should be enough to get
the feel of the library and be ready to use its basic features.
* Extensibility. A user should be able to extend functionality of the
library for collecting and storing information into logs.
* Performance. The library should have as little performance impact on
the user's application as possible.
- libboost-log1.54.0: C++ logging library
This package forms part of the Boost C++ Libraries collection.
.
This library aims to make logging significantly easier for the
application developer. It provides a wide range of out-of-the-box
tools along with public interfaces for extending the library. The
main goals of the library are:
.
* Simplicity. A small example code snippet should be enough to get
the feel of the library and be ready to use its basic features.
* Extensibility. A user should be able to extend functionality of the
library for collecting and storing information into logs.
* Performance. The library should have as little performance impact on
the user's application as possible.
- libboost-math1.54-dev: 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.
- libboost-math1.54.0: 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.
- libboost-program-options1.54-dev: 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.
- libboost-program-options1.54.0: 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.
- libboost-python1.54-dev: 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.
- libboost-python1.54.0: 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.
- libboost-random1.54-dev: 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.
- libboost-random1.54.0: 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.
- libboost-regex1.54-dev: 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.
- libboost-regex1.54.0: 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.
- libboost-serialization1.54-dev: 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.
- libboost-serialization1.54.0: 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.
- libboost-signals1.54-dev: 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."
- libboost-signals1.54.0: 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."
- libboost-system1.54-dev: 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.
- libboost-system1.54.0: 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.
- libboost-test1.54-dev: 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.
- libboost-test1.54.0: 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.
- libboost-thread1.54-dev: 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.
- libboost-thread1.54.0: 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.
- libboost-timer1.54-dev: 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.
- libboost-timer1.54.0: 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.
- libboost-wave1.54-dev: 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).
- libboost-wave1.54.0: 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).
- libboost1.54-dbg: 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.
- libboost1.54-dev: 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 for all Boost libraries.
.
Extended precision arithmetic package libmpfrc++-dev or libntl-dev is
required to use the Boost.Multiprecision wrapping of the respective
library.
.
For the following subprojects separate packages exist: chrono,
date-time, exception filesystem, graph, iostreams, locale, math, mpi,
program_options, python, regex, serialization, signals, system, test,
thread, timer, and wave.
- libboost1.54-doc: 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.
- libboost1.54-tools-dev: Boost C++ Libraries development tools
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 auxiliary tools bjam, Boost.Build, bcp,
inspect, boostbook and quickbook.
- python-pyste: pyste Boost.Python code generator
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 only 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.