boost-defaults 1.61.0.2 source package in Ubuntu
Changelog
boost-defaults (1.61.0.2) unstable; urgency=high * Import NMU into svn, thanks doko. * Drop adding g++-5 dependencies to meta-packages, no longer needed for the safer c++11 abi migration. Closes: #814810, #814808. * Regenerate control using updated python script. -- Dimitri John Ledkov <email address hidden> Thu, 04 Aug 2016 14:16:52 +0100
Upload details
- Uploaded by:
- Debian Boost Team on 2016-08-05
- Uploaded to:
- Sid
- Original maintainer:
- Debian Boost Team
- Architectures:
- any all
- Section:
- libs
- Urgency:
- Very Urgent
See full publishing history Publishing
Series | Published | Component | Section |
---|
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
boost-defaults_1.61.0.2.dsc | 3.5 KiB | f7be2f068fca2c169803a4472749da716a313d532fd29a5fbdb9a8945af99f06 |
boost-defaults_1.61.0.2.tar.gz | 11.0 KiB | 963ae618f5953ae278dce25b9f5fdde57485488c94fb1415aa5ab515efb29932 |
Available diffs
No changes file available.
Binary packages built by this source
- libboost-all-dev: No summary available for libboost-all-dev in ubuntu yakkety.
No description available for libboost-all-dev in ubuntu yakkety.
- libboost-all-dev-dbgsym: No summary available for libboost-all-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
all-dev- dbgsym in ubuntu yakkety.
- libboost-atomic-dev: atomic data types, operations, and memory ordering constraints (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.62).
- libboost-atomic-dev-dbgsym: No summary available for libboost-atomic-dev-dbgsym in ubuntu zesty.
No description available for libboost-
atomic- dev-dbgsym in ubuntu zesty.
- libboost-chrono-dev: C++ representation of time duration, time point, and clocks (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.62).
- libboost-chrono-dev-dbgsym: No summary available for libboost-chrono-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
chrono- dev-dbgsym in ubuntu yakkety.
- libboost-context-dev: provides a sort of cooperative multitasking on a single thread (default version)
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++.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.62).
- libboost-context-dev-dbgsym: No summary available for libboost-context-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
context- dev-dbgsym in ubuntu yakkety.
- libboost-coroutine-dev: No summary available for libboost-coroutine-dev in ubuntu yakkety.
No description available for libboost-
coroutine- dev in ubuntu yakkety.
- libboost-coroutine-dev-dbgsym: No summary available for libboost-coroutine-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
coroutine- dev-dbgsym in ubuntu yakkety.
- libboost-date-time-dev: No summary available for libboost-date-time-dev in ubuntu yakkety.
No description available for libboost-
date-time- dev in ubuntu yakkety.
- libboost-date-time-dev-dbgsym: No summary available for libboost-date-time-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
date-time- dev-dbgsym in ubuntu yakkety.
- libboost-dbg: No summary available for libboost-dbg in ubuntu zesty.
No description available for libboost-dbg in ubuntu zesty.
- libboost-dev: No summary available for libboost-dev in ubuntu yakkety.
No description available for libboost-dev in ubuntu yakkety.
- libboost-dev-dbgsym: No summary available for libboost-dev-dbgsym in ubuntu yakkety.
No description available for libboost-dev-dbgsym in ubuntu yakkety.
- libboost-doc: No summary available for libboost-doc in ubuntu yakkety.
No description available for libboost-doc in ubuntu yakkety.
- libboost-exception-dev: library to help write exceptions and handlers (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.62).
- libboost-exception-dev-dbgsym: No summary available for libboost-exception-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
exception- dev-dbgsym in ubuntu yakkety.
- libboost-filesystem-dev: No summary available for libboost-filesystem-dev in ubuntu yakkety.
No description available for libboost-
filesystem- dev in ubuntu yakkety.
- libboost-filesystem-dev-dbgsym: No summary available for libboost-filesystem-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
filesystem- dev-dbgsym in ubuntu yakkety.
- libboost-graph-dev: No summary available for libboost-graph-dev in ubuntu yakkety.
No description available for libboost-graph-dev in ubuntu yakkety.
- libboost-graph-dev-dbgsym: No summary available for libboost-graph-dev-dbgsym in ubuntu zesty.
No description available for libboost-
graph-dev- dbgsym in ubuntu zesty.
- libboost-graph-parallel-dev: generic graph components and algorithms in C++ (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.62).
- libboost-graph-parallel-dev-dbgsym: No summary available for libboost-graph-parallel-dev-dbgsym in ubuntu zesty.
No description available for libboost-
graph-parallel- dev-dbgsym in ubuntu zesty.
- libboost-iostreams-dev: No summary available for libboost-iostreams-dev in ubuntu yakkety.
No description available for libboost-
iostreams- dev in ubuntu yakkety.
- libboost-iostreams-dev-dbgsym: No summary available for libboost-iostreams-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
iostreams- dev-dbgsym in ubuntu yakkety.
- libboost-locale-dev: C++ facilities for localization (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.62).
- libboost-locale-dev-dbgsym: No summary available for libboost-locale-dev-dbgsym in ubuntu zesty.
No description available for libboost-
locale- dev-dbgsym in ubuntu zesty.
- libboost-log-dev: C++ logging library (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.62).
- libboost-log-dev-dbgsym: No summary available for libboost-log-dev-dbgsym in ubuntu zesty.
No description available for libboost-
log-dev- dbgsym in ubuntu zesty.
- libboost-math-dev: No summary available for libboost-math-dev in ubuntu yakkety.
No description available for libboost-math-dev in ubuntu yakkety.
- libboost-math-dev-dbgsym: No summary available for libboost-math-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
math-dev- dbgsym in ubuntu yakkety.
- libboost-mpi-dev: No summary available for libboost-mpi-dev in ubuntu yakkety.
No description available for libboost-mpi-dev in ubuntu yakkety.
- libboost-mpi-dev-dbgsym: No summary available for libboost-mpi-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
mpi-dev- dbgsym in ubuntu yakkety.
- libboost-mpi-python-dev: No summary available for libboost-mpi-python-dev in ubuntu yakkety.
No description available for libboost-
mpi-python- dev in ubuntu yakkety.
- libboost-mpi-python-dev-dbgsym: No summary available for libboost-mpi-python-dev-dbgsym in ubuntu zesty.
No description available for libboost-
mpi-python- dev-dbgsym in ubuntu zesty.
- libboost-program-options-dev: No summary available for libboost-program-options-dev in ubuntu yakkety.
No description available for libboost-
program- options- dev in ubuntu yakkety.
- libboost-program-options-dev-dbgsym: No summary available for libboost-program-options-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
program- options- dev-dbgsym in ubuntu yakkety.
- libboost-python-dev: Boost.Python Library development files (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.62).
- libboost-python-dev-dbgsym: No summary available for libboost-python-dev-dbgsym in ubuntu zesty.
No description available for libboost-
python- dev-dbgsym in ubuntu zesty.
- libboost-random-dev: Boost Random Number Library (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.62).
- libboost-random-dev-dbgsym: No summary available for libboost-random-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
random- dev-dbgsym in ubuntu yakkety.
- libboost-regex-dev: No summary available for libboost-regex-dev in ubuntu yakkety.
No description available for libboost-regex-dev in ubuntu yakkety.
- libboost-regex-dev-dbgsym: No summary available for libboost-regex-dev-dbgsym in ubuntu zesty.
No description available for libboost-
regex-dev- dbgsym in ubuntu zesty.
- libboost-serialization-dev: No summary available for libboost-serialization-dev in ubuntu yakkety.
No description available for libboost-
serialization- dev in ubuntu yakkety.
- libboost-serialization-dev-dbgsym: No summary available for libboost-serialization-dev-dbgsym in ubuntu zesty.
No description available for libboost-
serialization- dev-dbgsym in ubuntu zesty.
- libboost-signals-dev: managed signals and slots library for C++ (default version)
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."
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.62).
- libboost-signals-dev-dbgsym: No summary available for libboost-signals-dev-dbgsym in ubuntu zesty.
No description available for libboost-
signals- dev-dbgsym in ubuntu zesty.
- libboost-system-dev: No summary available for libboost-system-dev in ubuntu yakkety.
No description available for libboost-system-dev in ubuntu yakkety.
- libboost-system-dev-dbgsym: No summary available for libboost-system-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
system- dev-dbgsym in ubuntu yakkety.
- libboost-test-dev: No summary available for libboost-test-dev in ubuntu yakkety.
No description available for libboost-test-dev in ubuntu yakkety.
- libboost-test-dev-dbgsym: No summary available for libboost-test-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
test-dev- dbgsym in ubuntu yakkety.
- libboost-thread-dev: No summary available for libboost-thread-dev in ubuntu yakkety.
No description available for libboost-thread-dev in ubuntu yakkety.
- libboost-thread-dev-dbgsym: No summary available for libboost-thread-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
thread- dev-dbgsym in ubuntu yakkety.
- libboost-timer-dev: No summary available for libboost-timer-dev in ubuntu yakkety.
No description available for libboost-timer-dev in ubuntu yakkety.
- libboost-timer-dev-dbgsym: No summary available for libboost-timer-dev-dbgsym in ubuntu zesty.
No description available for libboost-
timer-dev- dbgsym in ubuntu zesty.
- libboost-tools-dev: No summary available for libboost-tools-dev in ubuntu yakkety.
No description available for libboost-tools-dev in ubuntu yakkety.
- libboost-tools-dev-dbgsym: No summary available for libboost-tools-dev-dbgsym in ubuntu yakkety.
No description available for libboost-
tools-dev- dbgsym in ubuntu yakkety.
- libboost-type-erasure-dev: No summary available for libboost-type-erasure-dev in ubuntu yakkety.
No description available for libboost-
type-erasure- dev in ubuntu yakkety.
- libboost-type-erasure-dev-dbgsym: No summary available for libboost-type-erasure-dev-dbgsym in ubuntu zesty.
No description available for libboost-
type-erasure- dev-dbgsym in ubuntu zesty.
- libboost-wave-dev: C99/C++ preprocessor library (default version)
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).
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.62).
- libboost-wave-dev-dbgsym: No summary available for libboost-wave-dev-dbgsym in ubuntu zesty.
No description available for libboost-
wave-dev- dbgsym in ubuntu zesty.