boost-defaults 1.67.0.2 source package in Ubuntu

Changelog

boost-defaults (1.67.0.2) unstable; urgency=medium

  [ Dimitri John Ledkov ]
  * Remove myself from uploaders.

  [ Giovanni Mascellani ]
  * Convert debian/copyright to the machine-readable format and make it clear
    that it is not about the actual Boost license (closes: #934013).
  * Explicitly list Intel-based architectures in dependencies, in order to
    avoid depending on x32 when it is not supported (closes: #933276).

 -- Giovanni Mascellani <email address hidden>  Tue, 06 Aug 2019 16:38:06 +0200

Upload details

Uploaded by:
Debian Boost Team
Uploaded to:
Sid
Original maintainer:
Debian Boost Team
Architectures:
any all
Section:
libs
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
boost-defaults_1.67.0.2.dsc 3.9 KiB 62d1d5a005eab2338efca7d9a796cf91b4f7ea073e52ae169a8f89964d9024ba
boost-defaults_1.67.0.2.tar.gz 12.5 KiB da6254edfb1d456a70ebad6744bf655967b1b0b2271c0580e5a6b65d10d85a7e

Available diffs

No changes file available.

Binary packages built by this source

libboost-all-dev: No summary available for libboost-all-dev in ubuntu eoan.

No description available for libboost-all-dev in ubuntu eoan.

libboost-atomic-dev: No summary available for libboost-atomic-dev in ubuntu eoan.

No description available for libboost-atomic-dev in ubuntu eoan.

libboost-chrono-dev: No summary available for libboost-chrono-dev in ubuntu eoan.

No description available for libboost-chrono-dev in ubuntu eoan.

libboost-container-dev: No summary available for libboost-container-dev in ubuntu eoan.

No description available for libboost-container-dev in ubuntu eoan.

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.71).

libboost-contract-dev: Contract library for C++ - dev files (default version)

 This package forms part of the Boost C++ Libraries collection.
 .
 All contract programming features are supported: Subcontracting,
 class invariants, postconditions (with old and return values),
 preconditions, customizable actions on assertion failure (e.g.,
 terminate or throw), optional compilation and checking of assertions,
 etc.
 .
 This package is a dependency package, which depends on Debian's default
 Boost version (currently 1.71).

libboost-coroutine-dev: No summary available for libboost-coroutine-dev in ubuntu eoan.

No description available for libboost-coroutine-dev in ubuntu eoan.

libboost-date-time-dev: No summary available for libboost-date-time-dev in ubuntu eoan.

No description available for libboost-date-time-dev in ubuntu eoan.

libboost-dev: No summary available for libboost-dev in ubuntu eoan.

No description available for libboost-dev in ubuntu eoan.

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.71).

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.71).

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.71).

libboost-filesystem-dev: No summary available for libboost-filesystem-dev in ubuntu eoan.

No description available for libboost-filesystem-dev in ubuntu eoan.

libboost-graph-dev: No summary available for libboost-graph-dev in ubuntu eoan.

No description available for libboost-graph-dev in ubuntu eoan.

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.71).

libboost-iostreams-dev: No summary available for libboost-iostreams-dev in ubuntu eoan.

No description available for libboost-iostreams-dev in ubuntu eoan.

libboost-locale-dev: No summary available for libboost-locale-dev in ubuntu eoan.

No description available for libboost-locale-dev in ubuntu eoan.

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.71).

libboost-math-dev: Boost.Math Library development files (default version)

 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.
 .
 This package is a dependency package, which depends on Debian's default
 Boost version (currently 1.71).

libboost-mpi-dev: No summary available for libboost-mpi-dev in ubuntu eoan.

No description available for libboost-mpi-dev in ubuntu eoan.

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.71).

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.71).

libboost-program-options-dev: No summary available for libboost-program-options-dev in ubuntu eoan.

No description available for libboost-program-options-dev in ubuntu eoan.

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 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.71).

libboost-random-dev: No summary available for libboost-random-dev in ubuntu eoan.

No description available for libboost-random-dev in ubuntu eoan.

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.71).

libboost-serialization-dev: No summary available for libboost-serialization-dev in ubuntu eoan.

No description available for libboost-serialization-dev in ubuntu eoan.

libboost-signals-dev: No summary available for libboost-signals-dev in ubuntu focal.

No description available for libboost-signals-dev in ubuntu focal.

libboost-stacktrace-dev: library to capture and print stack traces - development files (default version)

 This package forms part of the Boost C++ Libraries collection.
 .
 Boost.Stacktrace library is a simple C++03 library that provides
 information about call sequence in a human-readable form.
 .
 This package is a dependency package, which depends on Debian's default
 Boost version (currently 1.71).

libboost-system-dev: No summary available for libboost-system-dev in ubuntu eoan.

No description available for libboost-system-dev in ubuntu eoan.

libboost-test-dev: No summary available for libboost-test-dev in ubuntu eoan.

No description available for libboost-test-dev in ubuntu eoan.

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.71).

libboost-timer-dev: No summary available for libboost-timer-dev in ubuntu eoan.

No description available for libboost-timer-dev in ubuntu eoan.

libboost-tools-dev: No summary available for libboost-tools-dev in ubuntu eoan.

No description available for libboost-tools-dev in ubuntu eoan.

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.71).

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.71).