boost-defaults 1.65.1.0ubuntu1 source package in Ubuntu
Changelog
boost-defaults (1.65.1.0ubuntu1) bionic; urgency=medium * Set default boost to 1.65. -- Dimitri John Ledkov <email address hidden> Thu, 26 Oct 2017 11:01:08 +0100
Upload details
- Uploaded by:
- Dimitri John Ledkov
- Uploaded to:
- Bionic
- Original maintainer:
- Ubuntu Developers
- Architectures:
- any all
- Section:
- libs
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Bionic | release | main | libs |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
boost-defaults_1.65.1.0ubuntu1.tar.gz | 11.9 KiB | 2554c6a67a4b6939d2090d37445cc0fc366c1448c4080f62ebe2ca189d691a7a |
boost-defaults_1.65.1.0ubuntu1.dsc | 3.9 KiB | 0e1e6bde4468c802a8cb0795e15a3deb56ef29288f051f539a18a0b1b24edd6c |
Available diffs
Binary packages built by this source
- libboost-all-dev: Boost C++ Libraries development files (ALL) (default version)
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 metapackage provides the complete Boost development environment,
including all separately-packaged libraries.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- 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.65).
- libboost-chrono-dev: No summary available for libboost-chrono-dev in ubuntu cosmic.
No description available for libboost-chrono-dev in ubuntu cosmic.
- libboost-container-dev: No summary available for libboost-container-dev in ubuntu cosmic.
No description available for libboost-
container- dev in ubuntu cosmic.
- libboost-context-dev: No summary available for libboost-context-dev in ubuntu cosmic.
No description available for libboost-
context- dev in ubuntu cosmic.
- libboost-coroutine-dev: No summary available for libboost-coroutine-dev in ubuntu cosmic.
No description available for libboost-
coroutine- dev in ubuntu cosmic.
- libboost-date-time-dev: set of date-time libraries based on generic programming concepts (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- libboost-dev: No summary available for libboost-dev in ubuntu cosmic.
No description available for libboost-dev in ubuntu cosmic.
- libboost-doc: Boost.org libraries documentation placeholder (default version)
This package originally provided documentation, but has since fallen
into disrepair and presently provides no documentation. Please
use documentation at www.boost.org.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- libboost-exception-dev: No summary available for libboost-exception-dev in ubuntu cosmic.
No description available for libboost-
exception- dev in ubuntu cosmic.
- libboost-fiber-dev: cooperatively-scheduled micro-/userland-threads (default version)
This package forms part of the Boost C++ Libraries collection.
.
Boost.Fiber provides a framework for micro-/userland- threads (fibers)
scheduled cooperatively. The API contains classes and functions to
manage and synchronize fibers similarly to standard thread support
library.
.
Each fiber has its own stack.
.
A fiber can save the current execution state, including all registers
and CPU flags, the instruction pointer, and the stack pointer and
later restore this state. The idea is to have multiple execution
paths running on a single thread using cooperative scheduling (versus
threads, which are preemptively scheduled). The running fiber decides
explicitly when it should yield to allow another fiber to run
(context switching). Boost.Fiber internally uses execution_context
from Boost.Context; the classes in this library manage, schedule and,
when needed, synchronize those execution contexts. A context switch
between threads usually costs thousands of CPU cycles on x86,
compared to a fiber switch with less than a hundred cycles. A fiber
runs on a single thread at any point in time.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- libboost-filesystem-dev: filesystem operations (portable paths, iteration over directories, etc) in C++ (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- libboost-graph-dev: generic graph components and algorithms in C++ (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- 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.65).
- libboost-iostreams-dev: Boost.Iostreams Library development files (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- 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.65).
- libboost-log-dev: No summary available for libboost-log-dev in ubuntu cosmic.
No description available for libboost-log-dev in ubuntu cosmic.
- libboost-math-dev: No summary available for libboost-math-dev in ubuntu cosmic.
No description available for libboost-math-dev in ubuntu cosmic.
- libboost-mpi-dev: No summary available for libboost-mpi-dev in ubuntu cosmic.
No description available for libboost-mpi-dev in ubuntu cosmic.
- libboost-mpi-python-dev: C++ interface to the Message Passing Interface (MPI), Python Bindings (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- libboost-numpy-dev: Boost.Python NumPy extensions development files (default version)
This package forms part of the Boost C++ Libraries collection.
.
The Boost Python library enables exporting a C++ library to Python.
The NumPy extensions lets the C++ code interact with NumPy types.
.
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.65).
- libboost-program-options-dev: program options library for C++ (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- libboost-python-dev: No summary available for libboost-python-dev in ubuntu cosmic.
No description available for libboost-python-dev in ubuntu cosmic.
- 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.65).
- libboost-regex-dev: regular expression library for C++ (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- libboost-serialization-dev: serialization library for C++ (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- 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.65).
- libboost-stacktrace-dev: No summary available for libboost-stacktrace-dev in ubuntu cosmic.
No description available for libboost-
stacktrace- dev in ubuntu cosmic.
- libboost-system-dev: Operating system (e.g. diagnostics support) library (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- libboost-test-dev: components for writing and executing test suites (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- libboost-thread-dev: portable C++ multi-threading (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- libboost-timer-dev: C++ wall clock and CPU process timers (default version)
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.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- libboost-tools-dev: No summary available for libboost-tools-dev in ubuntu cosmic.
No description available for libboost-tools-dev in ubuntu cosmic.
- libboost-type-erasure-dev: C++ runtime polymorphism based on concepts (default version)
This package forms part of the Boost C++ Libraries collection.
.
C++ has two distinct kinds of polymorphism, virtual functions and templates,
each of which has its own advantages and disadvantages. The Boost.TypeErasure
library combines the superior abstraction capabilities of templates, with the
runtime flexibility of virtual functions.
.
This package is a dependency package, which depends on Debian's default
Boost version (currently 1.65).
- 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.65).