pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc
Module Name: pkgsrc
Committed By: adam
Date: Sun Jan 12 10:10:04 UTC 2020
Modified Files:
pkgsrc/devel/boost-build: buildlink3.mk
pkgsrc/devel/boost-headers: Makefile PLIST buildlink3.mk
pkgsrc/devel/boost-jam: Makefile buildlink3.mk
pkgsrc/devel/boost-libs: PLIST buildlink3.mk
pkgsrc/devel/boost-mpi: PLIST buildlink3.mk
pkgsrc/devel/py-boost: Makefile PLIST buildlink3.mk
pkgsrc/meta-pkgs/boost: Makefile.common distinfo
pkgsrc/meta-pkgs/boost/patches:
patch-boost_test_impl_execution__monitor.ipp
Log Message:
boost: updated to 1.72.0
Version 1.72.0
Asio:
Changed the async_initiate helper function to automatically deduce its return type, for C++11 or later.
Changed all asynchronous operations to use automatically deduced return types, for C++14 or later.
Introduced concepts to support async_initiate.
Added the nested template type rebind_executor to all I/O object types.
Changed the initiation function objects to report their associated I/O executor via the nested type executor_type and member function get_executor().
Added the default_completion_token trait, giving I/O executor types an associated default completion token type for use with asynchronous operations. This trait is specialised for the use_awaitable
completion token, for example, to allow asynchronous operations to be used as follows: co_await socket.async_connect(my_endpoint).
Added missing async_initiate to the Windows-specific I/O objects' asynchronous operations.
Ensured that the executor type is propagated to newly accepted sockets.
Changed to require that Protocol copy and move operations never throw.
Changed to require that Endpoint default constructor and move operations never throw.
Added the noexcept qualifier to protocol accessors.
Added the noexcept qualifier to socket move constructors.
Fixed issues associated with opening serial ports on Windows:
Use the correct constant to initialise the RTS control flag.
Specify a default baud rate (9600).
Fixed a lost "outstanding work count" that can occur when an asynchronous accept operation is automatically restarted.
Consult the Revision History for further details.
Atomic:
Added a workaround for __float128 not being considered as a floating point type by some versions of libstdc++.
Improved compatibility with clang-win compiler.
Beast:
This is a maintenance update containing bug fixes, and updates to use the new features delivered in Boost.Asio.
We'd love to know how you or your company use Beast, consider adding an entry to the Companies and Individuals Using Beast list.
See the full Release Notes for a complete list of changes.
Circular Buffer:
Fix: max_size() now takes the allocator's max_size() into account. (Glen Fernandes)
Context:
architecture s390x supported
execution_context removed
Endian:
Made endian_reverse, conditional_reverse and *_to_* constexpr on GCC and Clang
Added convenience load and store functions
Added floating point convenience typedefs
Added a non-const overload of data(); changed its return type to unsigned char*
Added __int128 support to endian_reverse when available
Added a convenience header boost/endian.hpp
Filesystem:
Extracted filesystem_error to exception.hpp; file_status and associated enums and functions to file_status.hpp; directory_entry, directory_iterator and recursive_directory_iterator to directory.hpp.
Deprecated: For backward compatibility operations.hpp still includes the new headers exception.hpp, file_status.hpp and directory.hpp, unless BOOST_FILESYSTEM_NO_DEPRECATED macro is defined. These
implicit includes are considered deprecated and will be removed in a future release. Users are encouraged to include the new headers directly or include filesystem.hpp.
The filesystem_error exception is now implemented in the compiled library of Boost.Filesystem. Users may need to add linking with Boost.Filesystem library in their projects.
On POSIX.1-2008 platforms, use utimensat instead of utime. utime is declared obsolete in POSIX.1-2008 and can be disabled e.g. in uClibc-ng.
directory_iterator is now left in the end state on memory allocation errors.
In directory_iterator on POSIX systems, support for readdir/readdir_r has been reworked to avoid memory allocations for dirent structures when readdir is used. This reduces memory consumption and
eliminates the possibility of buffer overruns in case if readdir produces a very long directory name.
On Windows, use Boost.WinAPI to select the target Windows version.
New: Added directory_options enum, which reflects the same named enum from C++20. The enum is supported in directory_iterator and recursive_directory_iterator to customize iteration behavior. In
particular, the iterators now support skipping directories that can't be opened due to insufficient permissions. The symlink_option enum is now deprecated and should be replaced with
directory_options.
By default, recursive_directory_iterator is now reset to the end state in case of errors, as required by C++20.
New: Added directory_options::pop_on_error option, which configures recursive_directory_iterator so that it attempts to recover from iteration errors by repeatedly invoking pop() until it succeeds or
the end state is reached.
New: Added directory_options::skip_dangling_symlinks option, which configures recursive_directory_iterator so that it doesn't follow dangling directory symlinks and continues iteration instead of
reporting an error.
Deprecated: The following members of recursive_directory_iterator are now marked as deprecated: level(), no_push_pending(), no_push_request(), no_push(). Users are advised to replace their use with
the standard counterparts: depth(), recursion_pending(), disable_recursion_pending(). Note that recursion_pending() has the opposite meaning compared to no_push_pending() and no_push_request().
Deprecated methods will be removed in a future release.
Fixed path::lexically_relative (and any dependent algorithms) to correctly handle empty, dot and dot-dot path elements in its argument. The behavior is made closer to C++17
std::path::lexically_relative in that empty and dot path elements are ignored and dot-dot path elements are accounted by decreasing the number of dot-dot path elements to generate in the resulting
relative path.
Functional/Factory:
Glen Fernandes rewrote the implementations of factory and value_factory to provide the following features:
Support r-value arguments when possible
Support arbitrary number of arguments via variadic templates when possible
Support allocators that are final
Support allocators that use fancy pointers
Support for disabled exceptions (BOOST_NO_EXCEPTIONS)
Improved compilation times
The following features have been removed:
Increasing limits for C++03 compilers through BOOST_FUNCTIONAL_VALUE_FACTORY_MAX_ARITY
Using boost::none_t in place of void through BOOST_FUNCTIONAL_FACTORY_SUPPORT_NONE_T
GIL:
Added
GSoC 2019: Lanczos resampling for image down scaling.
GSoC 2019: Methods for binary thresholding, inverted binary thresholding and truncation thresholding.
GSoC 2019: Otsu thresholding method.
GSoC 2019: Adaptive thresholding using mean or gaussian-weighted sum of the neighbourhood area.
GSoC 2019: Harris response calculation (corner detector without non-maximum filtering).
GSoC 2019: Hessian corner detector.
GSoC 2019: Types for defining 2D kernel, kernel_2d and kernel_2d_fixed, in Numeric extension.
GSoC 2019: Implementation of 2D convolution as new function convolve_2d.
GSoC 2019: Box filtering using the average filter.
GSoC 2019: Blur function based on normalized mean filter.
GSoC 2019: Sobel and Scharr operators.
GSoC 2019: Median filter to remove noise from image.
Continued adding new test cases and significantly improved overall test coverage.
Documented purpose of cached_location_t.
Function convolve_1d in Numeric extension for convenient use of convolve_rows and convolve_cols.
Function extend_boundary in Numeric extension to perform image boundary extension.
Project release notes maintained in Markdown file RELEASES.md.
Changed
Move all tests, core features and extensions, inside test/ directory.
Removed
Replace Boost.MPL with Boost.MP11.
Removed use of Boost.TypeTraits.
Dropped support for GCC <= 4.8.
Remove include/boost/gil/version.hpp file as unused.
Fixed
Undetermined value of default-initialized channel and pixel objects.
Undefined behaviour due to std::is_trivially_default_constructible specializations.
Crash when reading PNG files with an invalid header.
Applied the Rule of Three for numerous types.
Removed uses of deprecated implicit definition of defaulted copy assignment operator or copy constructor.
Histogram:
Several new features and performance improvements, some bug-fixes
See the full Release Notes for a complete list of changes
Log:
Improved compatibility with clang-win compiler.
MPI:
Documentation clarifications.
Fixed scatterv bug when using explicit input buffer offsets.
Enable usage of MPI_Probe and friend with Intel MPI >= 2019.4
Symbol visibility on Windows
Math:
Added Hypergeometric functions 1F0, 0F1, 2F0, 1F1 and pFq.
Added Jacobi polynomial (and derivatives) evaluation.
Added Gegenbauer polynomial (and derivatives) evaluation.
Added Cardinal B-Splines (and derivatives) as polynomial functions in their own right.
Added Cardinal Trigonometric Interpolation.
Added new statistics sub-section.
Added One Sample Student's T Test.
Added Anderson Darling test for normality.
Added Ljung Box test for auto-correlation.
Added Runs test for random sequences.
The headers boost/math/tools/univariate_statistics.hpp and boost/math/tools/bivariate_statistics.hpp, have been deprecated in favor of boost/math/statistics/univariate_statistics.hpp and
boost/math/statistics/bivariate_statistics.hpp.
Added The Empirical CDF distribution.
Reworked the Sterling approximation used by multiprecision gamma functions to be applicable to all the function that use the Lanczos approximation at regular precision. Also extended Lanczos
approximations up to 100 decimal digit precision.
Multiprecision:
Big constexpr update allows cpp_int and float128 arithmetic to be fully constexpr with gcc and clang 9 or later, or any compiler supporting std::is_constant_evaluated().
Fix bug in variable precision mpf_float which causes it to go into a tailspin trying to select the correct precision - see https://github.com/boostorg/multiprecision/issues/164.
Outcome:
Enhancements:
Standalone outcome is now make install-able, and cmake find_package() can find it. Note that you must separately install and find_package() Outcome's dependency, quickcpplib, else find_package() of
Outcome will fail.
The git submodule mechanism used by standalone Outcome of specifying dependent libraries has been replaced with a cmake superbuild of dependencies mechanism instead. Upon cmake configure, an internal
copy of quickcpplib will be git cloned, built and installed into the build directory from where an internal find_package() uses it. This breaks the use of the unconfigured Outcome repo as an
implementation of Outcome, one must now do one of: 1. Add Outcome as subdirectory to cmake build. 2. Use cmake superbuild (i.e. ExternalProject_Add()) to build and install Outcome into a local
installation. 3. Use one of the single header editions.
For standalone Outcome, the current compiler is now checked for whether it will compile code containing C++ Concepts, and if it does, all cmake consumers of Outcome will enable C++ Concepts. Set the
cmake variable CXX_CONCEPTS_FLAGS to an empty string to prevent auto detection and enabling of C++ Concepts support occurring.
OUTCOME_TRY operation now hints to the compiler that operation will be successful. [P1886 Error speed benchmarking](https://wg21.link/P1886) showed that there is considerable gain in very small
functions by hinting to the compiler whether the expression is expected to be successful or not. OUTCOME_TRY previously did not hint to the compiler at all, but now it does. A new suite of macros
OUTCOME_TRY_FAILURE_LIKELY hint to the compiler that failure is expected. If you wish to return to the previously unhinted behaviour, define OUTCOME_TRY_LIKELY(expr) to (!!expr).
Support for C++ Coroutines has been added. This comes in two parts, firstly there is now an OUTCOME_CO_TRY() operation suitable for performing the TRY operation from within a C++ Coroutine. Secondly,
in the header outcome/coroutine_support.hpp there are implementations of eager<OutcomeType> and lazy<OutcomeType> which let you more naturally and efficiently use basic_result or basic_outcome from
within C++ Coroutines -- specifically, if the result or outcome will construct from an exception pointer, exceptions thrown in the coroutine return an errored or excepted result with the thrown
exception instead of throwing the exception through the coroutine machinery (which in current compilers, has a high likelihood of blowing up the program). Both eager<T> and lazy<T> can accept any T
as well. Both have been tested and found working on VS2019 and clang 9.
make_error_code() and make_exception_ptr() are now additionally considered for compatible copy and move conversions for basic_result<>. This lets you construct a basic_result<T, E> into a
basic_result<T, error_code>, where E is a custom type which has implemented the ADL discovered free function error_code make_error_code(E), but is otherwise unrelated to error_code. The same
availability applies for exception_ptr with make_exception_ptr() being the ADL discovered free function. basic_outcome<> has less support for this than basic_result<> in order to keep constructor
count down, but it will accept via this mechanism conversions from basic_result<> and failure_type<>.
Bug fixes:
The detection of [[nodiscard]] support in the compiler was very mildly broken.
PolyCollection:
Maintenance work.
Preprocessor:
Topic added which discusses emptiness
Support for the C++20 __VA_OPT__ construct
BOOST_PP_VARIADIC_HAS_OPT whether __VA_OPT__ is supported at the C++20 level
BOOST_PP_CHECK_EMPTY test for emptiness using __VA_OPT__ at the C++20 level
BOOST_PP_VA_OPT more flexible alternative to __VA_OPT__ at the C++20 level
Smart Pointers:
Implemented allocate_unique for scalars and arrays. (Glen Fernandes)
Test:
Boost.test v3.12 see the Changes log for more details.
New feature:
Support for C++17 std::string_view has been added.
Better diagnostic on boost::exception and no rtti mode (thanks to Mikhail Pilin / [pull_request 234])
VMD:
BOOST_VMD_IS_EMPTY updated to use __VA_OPT__ at the C++20 level has 100% reliability
To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 pkgsrc/devel/boost-build/buildlink3.mk
cvs rdiff -u -r1.57 -r1.58 pkgsrc/devel/boost-headers/Makefile
cvs rdiff -u -r1.45 -r1.46 pkgsrc/devel/boost-headers/PLIST
cvs rdiff -u -r1.44 -r1.45 pkgsrc/devel/boost-headers/buildlink3.mk
cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/boost-jam/Makefile
cvs rdiff -u -r1.38 -r1.39 pkgsrc/devel/boost-jam/buildlink3.mk
cvs rdiff -u -r1.39 -r1.40 pkgsrc/devel/boost-libs/PLIST
cvs rdiff -u -r1.50 -r1.51 pkgsrc/devel/boost-libs/buildlink3.mk
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/boost-mpi/PLIST
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/boost-mpi/buildlink3.mk
cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/py-boost/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/py-boost/PLIST
cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/py-boost/buildlink3.mk
cvs rdiff -u -r1.83 -r1.84 pkgsrc/meta-pkgs/boost/Makefile.common
cvs rdiff -u -r1.128 -r1.129 pkgsrc/meta-pkgs/boost/distinfo
cvs rdiff -u -r1.3 -r1.4 \
pkgsrc/meta-pkgs/boost/patches/patch-boost_test_impl_execution__monitor.ipp
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/boost-build/buildlink3.mk
diff -u pkgsrc/devel/boost-build/buildlink3.mk:1.42 pkgsrc/devel/boost-build/buildlink3.mk:1.43
--- pkgsrc/devel/boost-build/buildlink3.mk:1.42 Thu Aug 22 12:17:52 2019
+++ pkgsrc/devel/boost-build/buildlink3.mk Sun Jan 12 10:10:03 2020
@@ -1,11 +1,11 @@
-# $NetBSD: buildlink3.mk,v 1.42 2019/08/22 12:17:52 ryoon Exp $
+# $NetBSD: buildlink3.mk,v 1.43 2020/01/12 10:10:03 adam Exp $
BUILDLINK_TREE+= boost-build
.if !defined(BOOST_BUILD_BUILDLINK3_MK)
BOOST_BUILD_BUILDLINK3_MK:=
-BUILDLINK_API_DEPENDS.boost-build+= boost-build-1.71.*
+BUILDLINK_API_DEPENDS.boost-build+= boost-build-1.72.*
BUILDLINK_DEPMETHOD.boost-build?= build
BUILDLINK_PKGSRCDIR.boost-build?= ../../devel/boost-build
.endif # BOOST_BUILD_BUILDLINK3_MK
Index: pkgsrc/devel/boost-headers/Makefile
diff -u pkgsrc/devel/boost-headers/Makefile:1.57 pkgsrc/devel/boost-headers/Makefile:1.58
--- pkgsrc/devel/boost-headers/Makefile:1.57 Wed Oct 9 19:17:45 2019
+++ pkgsrc/devel/boost-headers/Makefile Sun Jan 12 10:10:03 2020
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile,v 1.57 2019/10/09 19:17:45 ryoon Exp $
+# $NetBSD: Makefile,v 1.58 2020/01/12 10:10:03 adam Exp $
-PKGREVISION= 2
BOOST_PACKAGE= headers
BOOST_COMMENT= (build-time headers)
BOOST_CONFIG= generate
Index: pkgsrc/devel/boost-headers/PLIST
diff -u pkgsrc/devel/boost-headers/PLIST:1.45 pkgsrc/devel/boost-headers/PLIST:1.46
--- pkgsrc/devel/boost-headers/PLIST:1.45 Fri Aug 23 01:08:50 2019
+++ pkgsrc/devel/boost-headers/PLIST Sun Jan 12 10:10:03 2020
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.45 2019/08/23 01:08:50 schmonz Exp $
+@comment $NetBSD: PLIST,v 1.46 2020/01/12 10:10:03 adam Exp $
include/boost/accumulators/accumulators.hpp
include/boost/accumulators/accumulators_fwd.hpp
include/boost/accumulators/framework/accumulator_base.hpp
@@ -1941,10 +1941,6 @@ include/boost/context/detail/index_seque
include/boost/context/detail/invoke.hpp
include/boost/context/detail/prefetch.hpp
include/boost/context/detail/tuple.hpp
-include/boost/context/execution_context.hpp
-include/boost/context/execution_context_v1.hpp
-include/boost/context/execution_context_v2.hpp
-include/boost/context/execution_context_v2_void.ipp
include/boost/context/fiber.hpp
include/boost/context/fiber_fcontext.hpp
include/boost/context/fiber_ucontext.hpp
@@ -1986,6 +1982,7 @@ include/boost/contract/detail/config.hpp
include/boost/contract/detail/debug.hpp
include/boost/contract/detail/decl.hpp
include/boost/contract/detail/declspec.hpp
+include/boost/contract/detail/exception.hpp
include/boost/contract/detail/inlined.hpp
include/boost/contract/detail/inlined/core/exception.hpp
include/boost/contract/detail/inlined/detail/checking.hpp
@@ -2048,6 +2045,7 @@ include/boost/core/no_exceptions_support
include/boost/core/noinit_adaptor.hpp
include/boost/core/noncopyable.hpp
include/boost/core/null_deleter.hpp
+include/boost/core/nvp.hpp
include/boost/core/pointer_traits.hpp
include/boost/core/quick_exit.hpp
include/boost/core/ref.hpp
@@ -2360,6 +2358,7 @@ include/boost/dynamic_bitset/dynamic_bit
include/boost/dynamic_bitset/serialization.hpp
include/boost/dynamic_bitset_fwd.hpp
include/boost/enable_shared_from_this.hpp
+include/boost/endian.hpp
include/boost/endian/arithmetic.hpp
include/boost/endian/buffers.hpp
include/boost/endian/conversion.hpp
@@ -2470,7 +2469,9 @@ include/boost/filesystem/config.hpp
include/boost/filesystem/convenience.hpp
include/boost/filesystem/detail/macro_value.hpp
include/boost/filesystem/detail/utf8_codecvt_facet.hpp
+include/boost/filesystem/directory.hpp
include/boost/filesystem/exception.hpp
+include/boost/filesystem/file_status.hpp
include/boost/filesystem/fstream.hpp
include/boost/filesystem/operations.hpp
include/boost/filesystem/path.hpp
@@ -3694,10 +3695,10 @@ include/boost/geometry/algorithms/detail
include/boost/geometry/algorithms/detail/buffer/buffered_ring.hpp
include/boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp
include/boost/geometry/algorithms/detail/buffer/line_line_intersection.hpp
-include/boost/geometry/algorithms/detail/buffer/parallel_continue.hpp
include/boost/geometry/algorithms/detail/buffer/turn_in_original_visitor.hpp
include/boost/geometry/algorithms/detail/buffer/turn_in_piece_visitor.hpp
include/boost/geometry/algorithms/detail/calculate_null.hpp
+include/boost/geometry/algorithms/detail/calculate_point_order.hpp
include/boost/geometry/algorithms/detail/calculate_sum.hpp
include/boost/geometry/algorithms/detail/centroid/translating_transformer.hpp
include/boost/geometry/algorithms/detail/check_iterator_range.hpp
@@ -3804,6 +3805,7 @@ include/boost/geometry/algorithms/detail
include/boost/geometry/algorithms/detail/is_valid/polygon.hpp
include/boost/geometry/algorithms/detail/is_valid/ring.hpp
include/boost/geometry/algorithms/detail/is_valid/segment.hpp
+include/boost/geometry/algorithms/detail/make/make.hpp
include/boost/geometry/algorithms/detail/max_interval_gap.hpp
include/boost/geometry/algorithms/detail/multi_modify.hpp
include/boost/geometry/algorithms/detail/multi_modify_with_predicate.hpp
@@ -3856,6 +3858,7 @@ include/boost/geometry/algorithms/detail
include/boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp
include/boost/geometry/algorithms/detail/overlay/range_in_geometry.hpp
include/boost/geometry/algorithms/detail/overlay/ring_properties.hpp
+include/boost/geometry/algorithms/detail/overlay/segment_as_subrange.hpp
include/boost/geometry/algorithms/detail/overlay/segment_identifier.hpp
include/boost/geometry/algorithms/detail/overlay/select_rings.hpp
include/boost/geometry/algorithms/detail/overlay/self_turn_points.hpp
@@ -3959,6 +3962,7 @@ include/boost/geometry/arithmetic/arithm
include/boost/geometry/arithmetic/cross_product.hpp
include/boost/geometry/arithmetic/determinant.hpp
include/boost/geometry/arithmetic/dot_product.hpp
+include/boost/geometry/arithmetic/infinite_line_functions.hpp
include/boost/geometry/arithmetic/normalize.hpp
include/boost/geometry/core/access.hpp
include/boost/geometry/core/assert.hpp
@@ -3996,6 +4000,7 @@ include/boost/geometry/formulas/gnomonic
include/boost/geometry/formulas/gnomonic_spheroid.hpp
include/boost/geometry/formulas/interpolate_point_spherical.hpp
include/boost/geometry/formulas/karney_direct.hpp
+include/boost/geometry/formulas/karney_inverse.hpp
include/boost/geometry/formulas/mean_radius.hpp
include/boost/geometry/formulas/meridian_direct.hpp
include/boost/geometry/formulas/meridian_inverse.hpp
@@ -4045,6 +4050,7 @@ include/boost/geometry/geometries/concep
include/boost/geometry/geometries/concepts/segment_concept.hpp
include/boost/geometry/geometries/geometries.hpp
include/boost/geometry/geometries/helper_geometry.hpp
+include/boost/geometry/geometries/infinite_line.hpp
include/boost/geometry/geometries/linestring.hpp
include/boost/geometry/geometries/multi_linestring.hpp
include/boost/geometry/geometries/multi_point.hpp
@@ -4257,6 +4263,7 @@ include/boost/geometry/policies/relate/t
include/boost/geometry/policies/robustness/get_rescale_policy.hpp
include/boost/geometry/policies/robustness/no_rescale_policy.hpp
include/boost/geometry/policies/robustness/rescale_policy.hpp
+include/boost/geometry/policies/robustness/rescale_policy_tags.hpp
include/boost/geometry/policies/robustness/robust_point_type.hpp
include/boost/geometry/policies/robustness/robust_type.hpp
include/boost/geometry/policies/robustness/segment_ratio.hpp
@@ -4276,7 +4283,6 @@ include/boost/geometry/srs/projections/e
include/boost/geometry/srs/projections/esri_traits.hpp
include/boost/geometry/srs/projections/exception.hpp
include/boost/geometry/srs/projections/factory.hpp
-include/boost/geometry/srs/projections/factory_key.hpp
include/boost/geometry/srs/projections/grids.hpp
include/boost/geometry/srs/projections/iau2000.hpp
include/boost/geometry/srs/projections/iau2000_params.hpp
@@ -4290,7 +4296,6 @@ include/boost/geometry/srs/projections/i
include/boost/geometry/srs/projections/impl/function_overloads.hpp
include/boost/geometry/srs/projections/impl/geocent.hpp
include/boost/geometry/srs/projections/impl/pj_apply_gridshift.hpp
-include/boost/geometry/srs/projections/impl/pj_apply_gridshift_shared.hpp
include/boost/geometry/srs/projections/impl/pj_auth.hpp
include/boost/geometry/srs/projections/impl/pj_datum_set.hpp
include/boost/geometry/srs/projections/impl/pj_datums.hpp
@@ -4300,7 +4305,6 @@ include/boost/geometry/srs/projections/i
include/boost/geometry/srs/projections/impl/pj_gauss.hpp
include/boost/geometry/srs/projections/impl/pj_gridinfo.hpp
include/boost/geometry/srs/projections/impl/pj_gridlist.hpp
-include/boost/geometry/srs/projections/impl/pj_gridlist_shared.hpp
include/boost/geometry/srs/projections/impl/pj_init.hpp
include/boost/geometry/srs/projections/impl/pj_inv.hpp
include/boost/geometry/srs/projections/impl/pj_mlfn.hpp
@@ -4416,11 +4420,12 @@ include/boost/geometry/srs/projections/p
include/boost/geometry/srs/projections/proj/wink1.hpp
include/boost/geometry/srs/projections/proj/wink2.hpp
include/boost/geometry/srs/projections/proj4.hpp
-include/boost/geometry/srs/projections/shared_grids.hpp
include/boost/geometry/srs/projections/spar.hpp
include/boost/geometry/srs/projections/srid_traits.hpp
include/boost/geometry/srs/projections/str_cast.hpp
include/boost/geometry/srs/shared_grids.hpp
+include/boost/geometry/srs/shared_grids_boost.hpp
+include/boost/geometry/srs/shared_grids_std.hpp
include/boost/geometry/srs/sphere.hpp
include/boost/geometry/srs/spheroid.hpp
include/boost/geometry/srs/srs.hpp
@@ -4471,12 +4476,14 @@ include/boost/geometry/strategies/cartes
include/boost/geometry/strategies/cartesian/expand_segment.hpp
include/boost/geometry/strategies/cartesian/index.hpp
include/boost/geometry/strategies/cartesian/intersection.hpp
+include/boost/geometry/strategies/cartesian/io.hpp
include/boost/geometry/strategies/cartesian/line_interpolate.hpp
include/boost/geometry/strategies/cartesian/point_in_box.hpp
include/boost/geometry/strategies/cartesian/point_in_point.hpp
include/boost/geometry/strategies/cartesian/point_in_poly_crossings_multiply.hpp
include/boost/geometry/strategies/cartesian/point_in_poly_franklin.hpp
include/boost/geometry/strategies/cartesian/point_in_poly_winding.hpp
+include/boost/geometry/strategies/cartesian/point_order.hpp
include/boost/geometry/strategies/cartesian/side_by_triangle.hpp
include/boost/geometry/strategies/cartesian/side_of_intersection.hpp
include/boost/geometry/strategies/centroid.hpp
@@ -4512,6 +4519,7 @@ include/boost/geometry/strategies/geogra
include/boost/geometry/strategies/geographic/distance_cross_track.hpp
include/boost/geometry/strategies/geographic/distance_cross_track_box_box.hpp
include/boost/geometry/strategies/geographic/distance_cross_track_point_box.hpp
+include/boost/geometry/strategies/geographic/distance_karney.hpp
include/boost/geometry/strategies/geographic/distance_segment_box.hpp
include/boost/geometry/strategies/geographic/distance_thomas.hpp
include/boost/geometry/strategies/geographic/distance_vincenty.hpp
@@ -4521,10 +4529,12 @@ include/boost/geometry/strategies/geogra
include/boost/geometry/strategies/geographic/index.hpp
include/boost/geometry/strategies/geographic/intersection.hpp
include/boost/geometry/strategies/geographic/intersection_elliptic.hpp
+include/boost/geometry/strategies/geographic/io.hpp
include/boost/geometry/strategies/geographic/line_interpolate.hpp
include/boost/geometry/strategies/geographic/mapping_ssf.hpp
include/boost/geometry/strategies/geographic/parameters.hpp
include/boost/geometry/strategies/geographic/point_in_poly_winding.hpp
+include/boost/geometry/strategies/geographic/point_order.hpp
include/boost/geometry/strategies/geographic/side.hpp
include/boost/geometry/strategies/geographic/side_andoyer.hpp
include/boost/geometry/strategies/geographic/side_thomas.hpp
@@ -4533,8 +4543,10 @@ include/boost/geometry/strategies/index.
include/boost/geometry/strategies/intersection.hpp
include/boost/geometry/strategies/intersection_result.hpp
include/boost/geometry/strategies/intersection_strategies.hpp
+include/boost/geometry/strategies/io.hpp
include/boost/geometry/strategies/line_interpolate.hpp
include/boost/geometry/strategies/normalize.hpp
+include/boost/geometry/strategies/point_order.hpp
include/boost/geometry/strategies/relate.hpp
include/boost/geometry/strategies/side.hpp
include/boost/geometry/strategies/side_info.hpp
@@ -4560,9 +4572,11 @@ include/boost/geometry/strategies/spheri
include/boost/geometry/strategies/spherical/get_radius.hpp
include/boost/geometry/strategies/spherical/index.hpp
include/boost/geometry/strategies/spherical/intersection.hpp
+include/boost/geometry/strategies/spherical/io.hpp
include/boost/geometry/strategies/spherical/line_interpolate.hpp
include/boost/geometry/strategies/spherical/point_in_point.hpp
include/boost/geometry/strategies/spherical/point_in_poly_winding.hpp
+include/boost/geometry/strategies/spherical/point_order.hpp
include/boost/geometry/strategies/spherical/side_by_cross_track.hpp
include/boost/geometry/strategies/spherical/ssf.hpp
include/boost/geometry/strategies/strategies.hpp
@@ -4646,6 +4660,11 @@ include/boost/gil/concepts/pixel_iterato
include/boost/gil/concepts/pixel_locator.hpp
include/boost/gil/concepts/point.hpp
include/boost/gil/deprecated.hpp
+include/boost/gil/detail/is_channel_integral.hpp
+include/boost/gil/detail/math.hpp
+include/boost/gil/detail/mp11.hpp
+include/boost/gil/detail/std_common_type.hpp
+include/boost/gil/detail/type_traits.hpp
include/boost/gil/device_n.hpp
include/boost/gil/dynamic_step.hpp
include/boost/gil/extension/dynamic_image/algorithm.hpp
@@ -4775,6 +4794,12 @@ include/boost/gil/extension/toolbox/meta
include/boost/gil/extension/toolbox/toolbox.hpp
include/boost/gil/gray.hpp
include/boost/gil/image.hpp
+include/boost/gil/image_processing/filter.hpp
+include/boost/gil/image_processing/harris.hpp
+include/boost/gil/image_processing/hessian.hpp
+include/boost/gil/image_processing/numeric.hpp
+include/boost/gil/image_processing/scaling.hpp
+include/boost/gil/image_processing/threshold.hpp
include/boost/gil/image_view.hpp
include/boost/gil/image_view_factory.hpp
include/boost/gil/io/base.hpp
@@ -4823,7 +4848,6 @@ include/boost/gil/rgba.hpp
include/boost/gil/step_iterator.hpp
include/boost/gil/typedefs.hpp
include/boost/gil/utilities.hpp
-include/boost/gil/version.hpp
include/boost/gil/virtual_locator.hpp
include/boost/graph/accounting.hpp
include/boost/graph/adj_list_serialize.hpp
@@ -5535,6 +5559,8 @@ include/boost/histogram/accumulators/sum
include/boost/histogram/accumulators/thread_safe.hpp
include/boost/histogram/accumulators/weighted_mean.hpp
include/boost/histogram/accumulators/weighted_sum.hpp
+include/boost/histogram/algorithm.hpp
+include/boost/histogram/algorithm/empty.hpp
include/boost/histogram/algorithm/project.hpp
include/boost/histogram/algorithm/reduce.hpp
include/boost/histogram/algorithm/sum.hpp
@@ -5543,6 +5569,7 @@ include/boost/histogram/axis/category.hp
include/boost/histogram/axis/integer.hpp
include/boost/histogram/axis/interval_view.hpp
include/boost/histogram/axis/iterator.hpp
+include/boost/histogram/axis/metadata_base.hpp
include/boost/histogram/axis/option.hpp
include/boost/histogram/axis/ostream.hpp
include/boost/histogram/axis/polymorphic_bin.hpp
@@ -5550,28 +5577,36 @@ include/boost/histogram/axis/regular.hpp
include/boost/histogram/axis/traits.hpp
include/boost/histogram/axis/variable.hpp
include/boost/histogram/axis/variant.hpp
+include/boost/histogram/detail/accumulator_traits.hpp
include/boost/histogram/detail/args_type.hpp
-include/boost/histogram/detail/attribute.hpp
+include/boost/histogram/detail/argument_traits.hpp
+include/boost/histogram/detail/array_wrapper.hpp
+include/boost/histogram/detail/at.hpp
include/boost/histogram/detail/axes.hpp
-include/boost/histogram/detail/cat.hpp
include/boost/histogram/detail/common_type.hpp
-include/boost/histogram/detail/compressed_pair.hpp
include/boost/histogram/detail/convert_integer.hpp
+include/boost/histogram/detail/counting_streambuf.hpp
include/boost/histogram/detail/detect.hpp
+include/boost/histogram/detail/fill.hpp
+include/boost/histogram/detail/fill_n.hpp
include/boost/histogram/detail/iterator_adaptor.hpp
include/boost/histogram/detail/large_int.hpp
include/boost/histogram/detail/limits.hpp
include/boost/histogram/detail/linearize.hpp
include/boost/histogram/detail/make_default.hpp
-include/boost/histogram/detail/noop_mutex.hpp
+include/boost/histogram/detail/mutex_base.hpp
+include/boost/histogram/detail/non_member_container_access.hpp
include/boost/histogram/detail/operators.hpp
+include/boost/histogram/detail/optional_index.hpp
include/boost/histogram/detail/relaxed_equal.hpp
-include/boost/histogram/detail/replace_default.hpp
+include/boost/histogram/detail/replace_type.hpp
include/boost/histogram/detail/safe_comparison.hpp
+include/boost/histogram/detail/span.hpp
include/boost/histogram/detail/static_if.hpp
include/boost/histogram/detail/try_cast.hpp
include/boost/histogram/detail/tuple_slice.hpp
include/boost/histogram/detail/type_name.hpp
+include/boost/histogram/detail/variant_proxy.hpp
include/boost/histogram/fwd.hpp
include/boost/histogram/histogram.hpp
include/boost/histogram/indexed.hpp
@@ -5579,10 +5614,12 @@ include/boost/histogram/literals.hpp
include/boost/histogram/make_histogram.hpp
include/boost/histogram/make_profile.hpp
include/boost/histogram/ostream.hpp
+include/boost/histogram/sample.hpp
include/boost/histogram/serialization.hpp
include/boost/histogram/storage_adaptor.hpp
include/boost/histogram/unlimited_storage.hpp
include/boost/histogram/unsafe_access.hpp
+include/boost/histogram/weight.hpp
include/boost/hof.hpp
include/boost/hof/alias.hpp
include/boost/hof/always.hpp
@@ -6661,6 +6698,7 @@ include/boost/math/distributions/detail/
include/boost/math/distributions/detail/hypergeometric_pdf.hpp
include/boost/math/distributions/detail/hypergeometric_quantile.hpp
include/boost/math/distributions/detail/inv_discrete_quantile.hpp
+include/boost/math/distributions/empirical_cumulative_distribution_function.hpp
include/boost/math/distributions/exponential.hpp
include/boost/math/distributions/extreme_value.hpp
include/boost/math/distributions/find_location.hpp
@@ -6692,11 +6730,17 @@ include/boost/math/distributions/triangu
include/boost/math/distributions/uniform.hpp
include/boost/math/distributions/weibull.hpp
include/boost/math/interpolators/barycentric_rational.hpp
+include/boost/math/interpolators/cardinal_cubic_b_spline.hpp
include/boost/math/interpolators/cardinal_quadratic_b_spline.hpp
+include/boost/math/interpolators/cardinal_quintic_b_spline.hpp
+include/boost/math/interpolators/cardinal_trigonometric.hpp
include/boost/math/interpolators/catmull_rom.hpp
include/boost/math/interpolators/cubic_b_spline.hpp
include/boost/math/interpolators/detail/barycentric_rational_detail.hpp
+include/boost/math/interpolators/detail/cardinal_cubic_b_spline_detail.hpp
include/boost/math/interpolators/detail/cardinal_quadratic_b_spline_detail.hpp
+include/boost/math/interpolators/detail/cardinal_quintic_b_spline_detail.hpp
+include/boost/math/interpolators/detail/cardinal_trigonometric_detail.hpp
include/boost/math/interpolators/detail/cubic_b_spline_detail.hpp
include/boost/math/interpolators/detail/vector_barycentric_rational_detail.hpp
include/boost/math/interpolators/detail/whittaker_shannon_detail.hpp
@@ -6726,9 +6770,11 @@ include/boost/math/special_functions/asi
include/boost/math/special_functions/atanh.hpp
include/boost/math/special_functions/bernoulli.hpp
include/boost/math/special_functions/bessel.hpp
+include/boost/math/special_functions/bessel_iterators.hpp
include/boost/math/special_functions/bessel_prime.hpp
include/boost/math/special_functions/beta.hpp
include/boost/math/special_functions/binomial.hpp
+include/boost/math/special_functions/cardinal_b_spline.hpp
include/boost/math/special_functions/cbrt.hpp
include/boost/math/special_functions/chebyshev.hpp
include/boost/math/special_functions/chebyshev_transform.hpp
@@ -6757,6 +6803,24 @@ include/boost/math/special_functions/det
include/boost/math/special_functions/detail/erf_inv.hpp
include/boost/math/special_functions/detail/fp_traits.hpp
include/boost/math/special_functions/detail/gamma_inva.hpp
+include/boost/math/special_functions/detail/hypergeometric_0F1_bessel.hpp
+include/boost/math/special_functions/detail/hypergeometric_1F1_addition_theorems_on_z.hpp
+include/boost/math/special_functions/detail/hypergeometric_1F1_bessel.hpp
+include/boost/math/special_functions/detail/hypergeometric_1F1_by_ratios.hpp
+include/boost/math/special_functions/detail/hypergeometric_1F1_cf.hpp
+include/boost/math/special_functions/detail/hypergeometric_1F1_large_a.hpp
+include/boost/math/special_functions/detail/hypergeometric_1F1_large_abz.hpp
+include/boost/math/special_functions/detail/hypergeometric_1F1_negative_b_regions.hpp
+include/boost/math/special_functions/detail/hypergeometric_1F1_recurrence.hpp
+include/boost/math/special_functions/detail/hypergeometric_1F1_scaled_series.hpp
+include/boost/math/special_functions/detail/hypergeometric_1F1_small_a_negative_b_by_ratio.hpp
+include/boost/math/special_functions/detail/hypergeometric_asym.hpp
+include/boost/math/special_functions/detail/hypergeometric_cf.hpp
+include/boost/math/special_functions/detail/hypergeometric_pFq_checked_series.hpp
+include/boost/math/special_functions/detail/hypergeometric_pade.hpp
+include/boost/math/special_functions/detail/hypergeometric_rational.hpp
+include/boost/math/special_functions/detail/hypergeometric_separated_series.hpp
+include/boost/math/special_functions/detail/hypergeometric_series.hpp
include/boost/math/special_functions/detail/ibeta_inv_ab.hpp
include/boost/math/special_functions/detail/ibeta_inverse.hpp
include/boost/math/special_functions/detail/iconv.hpp
@@ -6786,10 +6850,17 @@ include/boost/math/special_functions/exp
include/boost/math/special_functions/factorials.hpp
include/boost/math/special_functions/fpclassify.hpp
include/boost/math/special_functions/gamma.hpp
+include/boost/math/special_functions/gegenbauer.hpp
include/boost/math/special_functions/hankel.hpp
include/boost/math/special_functions/hermite.hpp
include/boost/math/special_functions/heuman_lambda.hpp
+include/boost/math/special_functions/hypergeometric_0F1.hpp
+include/boost/math/special_functions/hypergeometric_1F0.hpp
+include/boost/math/special_functions/hypergeometric_1F1.hpp
+include/boost/math/special_functions/hypergeometric_2F0.hpp
+include/boost/math/special_functions/hypergeometric_pFq.hpp
include/boost/math/special_functions/hypot.hpp
+include/boost/math/special_functions/jacobi.hpp
include/boost/math/special_functions/jacobi_elliptic.hpp
include/boost/math/special_functions/jacobi_zeta.hpp
include/boost/math/special_functions/laguerre.hpp
@@ -6819,6 +6890,13 @@ include/boost/math/special_functions/tri
include/boost/math/special_functions/trunc.hpp
include/boost/math/special_functions/ulp.hpp
include/boost/math/special_functions/zeta.hpp
+include/boost/math/statistics/anderson_darling.hpp
+include/boost/math/statistics/bivariate_statistics.hpp
+include/boost/math/statistics/ljung_box.hpp
+include/boost/math/statistics/runs_test.hpp
+include/boost/math/statistics/signal_statistics.hpp
+include/boost/math/statistics/t_test.hpp
+include/boost/math/statistics/univariate_statistics.hpp
include/boost/math/tools/atomic.hpp
include/boost/math/tools/big_constant.hpp
include/boost/math/tools/bivariate_statistics.hpp
@@ -6951,6 +7029,7 @@ include/boost/math/tools/precision.hpp
include/boost/math/tools/promotion.hpp
include/boost/math/tools/rational.hpp
include/boost/math/tools/real_cast.hpp
+include/boost/math/tools/recurrence.hpp
include/boost/math/tools/roots.hpp
include/boost/math/tools/series.hpp
include/boost/math/tools/signal_statistics.hpp
@@ -7341,12 +7420,15 @@ include/boost/mp11/detail/mp_plus.hpp
include/boost/mp11/detail/mp_remove_if.hpp
include/boost/mp11/detail/mp_void.hpp
include/boost/mp11/detail/mp_with_index.hpp
+include/boost/mp11/detail/mpl_common.hpp
include/boost/mp11/function.hpp
include/boost/mp11/integer_sequence.hpp
include/boost/mp11/integral.hpp
include/boost/mp11/list.hpp
include/boost/mp11/map.hpp
include/boost/mp11/mpl.hpp
+include/boost/mp11/mpl_list.hpp
+include/boost/mp11/mpl_tuple.hpp
include/boost/mp11/set.hpp
include/boost/mp11/tuple.hpp
include/boost/mp11/utility.hpp
@@ -8635,6 +8717,7 @@ include/boost/multiprecision/cpp_int/val
include/boost/multiprecision/debug_adaptor.hpp
include/boost/multiprecision/detail/big_lanczos.hpp
include/boost/multiprecision/detail/bitscan.hpp
+include/boost/multiprecision/detail/constexpr.hpp
include/boost/multiprecision/detail/default_ops.hpp
include/boost/multiprecision/detail/digits.hpp
include/boost/multiprecision/detail/dynamic_array.hpp
@@ -9023,6 +9106,7 @@ include/boost/outcome/boost_outcome.hpp
include/boost/outcome/boost_result.hpp
include/boost/outcome/config.hpp
include/boost/outcome/convert.hpp
+include/boost/outcome/coroutine_support.hpp
include/boost/outcome/detail/basic_outcome_exception_observers.hpp
include/boost/outcome/detail/basic_outcome_exception_observers_impl.hpp
include/boost/outcome/detail/basic_outcome_failure_observers.hpp
@@ -9030,11 +9114,13 @@ include/boost/outcome/detail/basic_resul
include/boost/outcome/detail/basic_result_final.hpp
include/boost/outcome/detail/basic_result_storage.hpp
include/boost/outcome/detail/basic_result_value_observers.hpp
+include/boost/outcome/detail/coroutine_support.ipp
include/boost/outcome/detail/revision.hpp
include/boost/outcome/detail/trait_std_error_code.hpp
include/boost/outcome/detail/trait_std_exception.hpp
include/boost/outcome/detail/value_storage.hpp
include/boost/outcome/detail/version.hpp
+include/boost/outcome/experimental/coroutine_support.hpp
include/boost/outcome/experimental/result.h
include/boost/outcome/experimental/status-code/com_code.hpp
include/boost/outcome/experimental/status-code/config.hpp
@@ -9883,6 +9969,7 @@ include/boost/preprocessor/expand.hpp
include/boost/preprocessor/expr_if.hpp
include/boost/preprocessor/facilities.hpp
include/boost/preprocessor/facilities/apply.hpp
+include/boost/preprocessor/facilities/check_empty.hpp
include/boost/preprocessor/facilities/detail/is_empty.hpp
include/boost/preprocessor/facilities/empty.hpp
include/boost/preprocessor/facilities/expand.hpp
@@ -9893,6 +9980,7 @@ include/boost/preprocessor/facilities/is
include/boost/preprocessor/facilities/is_empty_or_1.hpp
include/boost/preprocessor/facilities/is_empty_variadic.hpp
include/boost/preprocessor/facilities/overload.hpp
+include/boost/preprocessor/facilities/va_opt.hpp
include/boost/preprocessor/for.hpp
include/boost/preprocessor/identity.hpp
include/boost/preprocessor/if.hpp
@@ -10069,8 +10157,10 @@ include/boost/preprocessor/tuple/to_arra
include/boost/preprocessor/tuple/to_list.hpp
include/boost/preprocessor/tuple/to_seq.hpp
include/boost/preprocessor/variadic.hpp
+include/boost/preprocessor/variadic/detail/has_opt.hpp
include/boost/preprocessor/variadic/detail/is_single_return.hpp
include/boost/preprocessor/variadic/elem.hpp
+include/boost/preprocessor/variadic/has_opt.hpp
include/boost/preprocessor/variadic/size.hpp
include/boost/preprocessor/variadic/to_array.hpp
include/boost/preprocessor/variadic/to_list.hpp
@@ -11158,7 +11248,6 @@ include/boost/serialization/detail/share
include/boost/serialization/detail/shared_ptr_132.hpp
include/boost/serialization/detail/shared_ptr_nmt_132.hpp
include/boost/serialization/detail/stack_constructor.hpp
-include/boost/serialization/ephemeral.hpp
include/boost/serialization/export.hpp
include/boost/serialization/extended_type_info.hpp
include/boost/serialization/extended_type_info_no_rtti.hpp
@@ -11265,6 +11354,7 @@ include/boost/signals2/variadic_slot.hpp
include/boost/smart_ptr.hpp
include/boost/smart_ptr/allocate_local_shared_array.hpp
include/boost/smart_ptr/allocate_shared_array.hpp
+include/boost/smart_ptr/allocate_unique.hpp
include/boost/smart_ptr/atomic_shared_ptr.hpp
include/boost/smart_ptr/bad_weak_ptr.hpp
include/boost/smart_ptr/detail/atomic_count.hpp
@@ -12842,6 +12932,7 @@ include/boost/thread/xtime.hpp
include/boost/throw_exception.hpp
include/boost/timer.hpp
include/boost/timer/config.hpp
+include/boost/timer/progress_display.hpp
include/boost/timer/timer.hpp
include/boost/token_functions.hpp
include/boost/token_iterator.hpp
Index: pkgsrc/devel/boost-headers/buildlink3.mk
diff -u pkgsrc/devel/boost-headers/buildlink3.mk:1.44 pkgsrc/devel/boost-headers/buildlink3.mk:1.45
--- pkgsrc/devel/boost-headers/buildlink3.mk:1.44 Thu Aug 22 12:17:52 2019
+++ pkgsrc/devel/boost-headers/buildlink3.mk Sun Jan 12 10:10:03 2020
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.44 2019/08/22 12:17:52 ryoon Exp $
+# $NetBSD: buildlink3.mk,v 1.45 2020/01/12 10:10:03 adam Exp $
BUILDLINK_TREE+= boost-headers
@@ -6,7 +6,7 @@ BUILDLINK_TREE+= boost-headers
BOOST_HEADERS_BUILDLINK3_MK:=
# Use a dependency pattern that guarantees the proper ABI.
-BUILDLINK_API_DEPENDS.boost-headers+= boost-headers-1.71.*
+BUILDLINK_API_DEPENDS.boost-headers+= boost-headers-1.72.*
BUILDLINK_DEPMETHOD.boost-headers?= build
BUILDLINK_PKGSRCDIR.boost-headers?= ../../devel/boost-headers
Index: pkgsrc/devel/boost-jam/Makefile
diff -u pkgsrc/devel/boost-jam/Makefile:1.12 pkgsrc/devel/boost-jam/Makefile:1.13
--- pkgsrc/devel/boost-jam/Makefile:1.12 Fri Aug 30 15:30:44 2019
+++ pkgsrc/devel/boost-jam/Makefile Sun Jan 12 10:10:04 2020
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile,v 1.12 2019/08/30 15:30:44 ryoon Exp $
+# $NetBSD: Makefile,v 1.13 2020/01/12 10:10:04 adam Exp $
-PKGREVISION= 1
BOOST_PACKAGE= jam
BOOST_COMMENT= (Boost.Jam utility)
BOOST_CONFIG= no
@@ -15,6 +14,12 @@ SUBST_STAGE.bb= pre-build
SUBST_FILES.bb= tools/build/src/engine/Jambase
SUBST_SED.bb= -e 's,/usr/share/boost-build,${PREFIX}/share/boost-build,g'
+SUBST_CLASSES+= opt
+SUBST_MESSAGE.opt= Removing -O3 flag.
+SUBST_STAGE.opt= pre-build
+SUBST_FILES.opt= tools/build/src/engine/build.sh
+SUBST_SED.opt= -e 's,-O3,,g'
+
.include "../../devel/boost-build/toolset.mk"
INSTALLATION_DIRS= bin
Index: pkgsrc/devel/boost-jam/buildlink3.mk
diff -u pkgsrc/devel/boost-jam/buildlink3.mk:1.38 pkgsrc/devel/boost-jam/buildlink3.mk:1.39
--- pkgsrc/devel/boost-jam/buildlink3.mk:1.38 Thu Aug 22 12:17:52 2019
+++ pkgsrc/devel/boost-jam/buildlink3.mk Sun Jan 12 10:10:04 2020
@@ -1,11 +1,11 @@
-# $NetBSD: buildlink3.mk,v 1.38 2019/08/22 12:17:52 ryoon Exp $
+# $NetBSD: buildlink3.mk,v 1.39 2020/01/12 10:10:04 adam Exp $
BUILDLINK_TREE+= boost-jam
.if !defined(BOOST_JAM_BUILDLINK3_MK)
BOOST_JAM_BUILDLINK3_MK:=
-BUILDLINK_API_DEPENDS.boost-jam+= boost-jam-1.71.*
+BUILDLINK_API_DEPENDS.boost-jam+= boost-jam-1.72.*
BUILDLINK_DEPMETHOD.boost-jam?= build
BUILDLINK_PKGSRCDIR.boost-jam?= ../../devel/boost-jam
.endif # BOOST_JAM_BUILDLINK3_MK
Index: pkgsrc/devel/boost-libs/PLIST
diff -u pkgsrc/devel/boost-libs/PLIST:1.39 pkgsrc/devel/boost-libs/PLIST:1.40
--- pkgsrc/devel/boost-libs/PLIST:1.39 Thu Aug 22 12:17:52 2019
+++ pkgsrc/devel/boost-libs/PLIST Sun Jan 12 10:10:04 2020
@@ -1,183 +1,183 @@
-@comment $NetBSD: PLIST,v 1.39 2019/08/22 12:17:52 ryoon Exp $
+@comment $NetBSD: PLIST,v 1.40 2020/01/12 10:10:04 adam Exp $
lib/libboost_atomic.a
lib/libboost_atomic.so
-lib/libboost_atomic.so.1
-lib/libboost_atomic.so.1.71
lib/libboost_atomic.so.${PKGVERSION}
+lib/libboost_atomic.so.1
+lib/libboost_atomic.so.1.72
lib/libboost_chrono.a
lib/libboost_chrono.so
-lib/libboost_chrono.so.1
-lib/libboost_chrono.so.1.71
lib/libboost_chrono.so.${PKGVERSION}
+lib/libboost_chrono.so.1
+lib/libboost_chrono.so.1.72
lib/libboost_container.a
lib/libboost_container.so
-lib/libboost_container.so.1
-lib/libboost_container.so.1.71
lib/libboost_container.so.${PKGVERSION}
+lib/libboost_container.so.1
+lib/libboost_container.so.1.72
${PLIST.context}lib/libboost_context.a
${PLIST.context}lib/libboost_context.so
-${PLIST.context}lib/libboost_context.so.1
-${PLIST.context}lib/libboost_context.so.1.71
${PLIST.context}lib/libboost_context.so.${PKGVERSION}
+${PLIST.context}lib/libboost_context.so.1
+${PLIST.context}lib/libboost_context.so.1.72
lib/libboost_contract.a
lib/libboost_contract.so
-lib/libboost_contract.so.1
-lib/libboost_contract.so.1.71
lib/libboost_contract.so.${PKGVERSION}
+lib/libboost_contract.so.1
+lib/libboost_contract.so.1.72
${PLIST.context}lib/libboost_coroutine.a
${PLIST.context}lib/libboost_coroutine.so
-${PLIST.context}lib/libboost_coroutine.so.1
-${PLIST.context}lib/libboost_coroutine.so.1.71
${PLIST.context}lib/libboost_coroutine.so.${PKGVERSION}
+${PLIST.context}lib/libboost_coroutine.so.1
+${PLIST.context}lib/libboost_coroutine.so.1.72
lib/libboost_date_time.a
lib/libboost_date_time.so
-lib/libboost_date_time.so.1
-lib/libboost_date_time.so.1.71
lib/libboost_date_time.so.${PKGVERSION}
+lib/libboost_date_time.so.1
+lib/libboost_date_time.so.1.72
lib/libboost_exception.a
${PLIST.fiber}lib/libboost_fiber.a
${PLIST.fiber}lib/libboost_fiber.so
-${PLIST.fiber}lib/libboost_fiber.so.1
-${PLIST.fiber}lib/libboost_fiber.so.1.71
${PLIST.fiber}lib/libboost_fiber.so.${BOOST_VERSION}
+${PLIST.fiber}lib/libboost_fiber.so.1
+${PLIST.fiber}lib/libboost_fiber.so.1.72
lib/libboost_filesystem.a
lib/libboost_filesystem.so
-lib/libboost_filesystem.so.1
-lib/libboost_filesystem.so.1.71
lib/libboost_filesystem.so.${PKGVERSION}
+lib/libboost_filesystem.so.1
+lib/libboost_filesystem.so.1.72
lib/libboost_graph.a
lib/libboost_graph.so
-lib/libboost_graph.so.1
-lib/libboost_graph.so.1.71
lib/libboost_graph.so.${PKGVERSION}
+lib/libboost_graph.so.1
+lib/libboost_graph.so.1.72
lib/libboost_iostreams.a
lib/libboost_iostreams.so
-lib/libboost_iostreams.so.1
-lib/libboost_iostreams.so.1.71
lib/libboost_iostreams.so.${PKGVERSION}
+lib/libboost_iostreams.so.1
+lib/libboost_iostreams.so.1.72
lib/libboost_locale.a
lib/libboost_locale.so
-lib/libboost_locale.so.1
-lib/libboost_locale.so.1.71
lib/libboost_locale.so.${PKGVERSION}
+lib/libboost_locale.so.1
+lib/libboost_locale.so.1.72
${PLIST.log}lib/libboost_log.a
${PLIST.log}lib/libboost_log.so
-${PLIST.log}lib/libboost_log.so.1
-${PLIST.log}lib/libboost_log.so.1.71
${PLIST.log}lib/libboost_log.so.${PKGVERSION}
+${PLIST.log}lib/libboost_log.so.1
+${PLIST.log}lib/libboost_log.so.1.72
${PLIST.log}lib/libboost_log_setup.a
${PLIST.log}lib/libboost_log_setup.so
-${PLIST.log}lib/libboost_log_setup.so.1
-${PLIST.log}lib/libboost_log_setup.so.1.71
${PLIST.log}lib/libboost_log_setup.so.${PKGVERSION}
+${PLIST.log}lib/libboost_log_setup.so.1
+${PLIST.log}lib/libboost_log_setup.so.1.72
lib/libboost_math_c99.a
lib/libboost_math_c99.so
-lib/libboost_math_c99.so.1
-lib/libboost_math_c99.so.1.71
lib/libboost_math_c99.so.${PKGVERSION}
+lib/libboost_math_c99.so.1
+lib/libboost_math_c99.so.1.72
lib/libboost_math_c99f.a
lib/libboost_math_c99f.so
-lib/libboost_math_c99f.so.1
-lib/libboost_math_c99f.so.1.71
lib/libboost_math_c99f.so.${PKGVERSION}
+lib/libboost_math_c99f.so.1
+lib/libboost_math_c99f.so.1.72
${PLIST.longdbl}lib/libboost_math_c99l.a
${PLIST.longdbl}lib/libboost_math_c99l.so
-${PLIST.longdbl}lib/libboost_math_c99l.so.1
-${PLIST.longdbl}lib/libboost_math_c99l.so.1.71
${PLIST.longdbl}lib/libboost_math_c99l.so.${PKGVERSION}
+${PLIST.longdbl}lib/libboost_math_c99l.so.1
+${PLIST.longdbl}lib/libboost_math_c99l.so.1.72
lib/libboost_math_tr1.a
lib/libboost_math_tr1.so
-lib/libboost_math_tr1.so.1
-lib/libboost_math_tr1.so.1.71
lib/libboost_math_tr1.so.${PKGVERSION}
+lib/libboost_math_tr1.so.1
+lib/libboost_math_tr1.so.1.72
lib/libboost_math_tr1f.a
lib/libboost_math_tr1f.so
-lib/libboost_math_tr1f.so.1
-lib/libboost_math_tr1f.so.1.71
lib/libboost_math_tr1f.so.${PKGVERSION}
+lib/libboost_math_tr1f.so.1
+lib/libboost_math_tr1f.so.1.72
${PLIST.longdbl}lib/libboost_math_tr1l.a
${PLIST.longdbl}lib/libboost_math_tr1l.so
-${PLIST.longdbl}lib/libboost_math_tr1l.so.1
-${PLIST.longdbl}lib/libboost_math_tr1l.so.1.71
${PLIST.longdbl}lib/libboost_math_tr1l.so.${PKGVERSION}
+${PLIST.longdbl}lib/libboost_math_tr1l.so.1
+${PLIST.longdbl}lib/libboost_math_tr1l.so.1.72
lib/libboost_prg_exec_monitor.a
lib/libboost_prg_exec_monitor.so
-lib/libboost_prg_exec_monitor.so.1
-lib/libboost_prg_exec_monitor.so.1.71
lib/libboost_prg_exec_monitor.so.${PKGVERSION}
+lib/libboost_prg_exec_monitor.so.1
+lib/libboost_prg_exec_monitor.so.1.72
lib/libboost_program_options.a
lib/libboost_program_options.so
-lib/libboost_program_options.so.1
-lib/libboost_program_options.so.1.71
lib/libboost_program_options.so.${PKGVERSION}
+lib/libboost_program_options.so.1
+lib/libboost_program_options.so.1.72
lib/libboost_random.a
lib/libboost_random.so
-lib/libboost_random.so.1
-lib/libboost_random.so.1.71
lib/libboost_random.so.${PKGVERSION}
+lib/libboost_random.so.1
+lib/libboost_random.so.1.72
lib/libboost_regex.a
lib/libboost_regex.so
-lib/libboost_regex.so.1
-lib/libboost_regex.so.1.71
lib/libboost_regex.so.${PKGVERSION}
+lib/libboost_regex.so.1
+lib/libboost_regex.so.1.72
lib/libboost_serialization.a
lib/libboost_serialization.so
-lib/libboost_serialization.so.1
-lib/libboost_serialization.so.1.71
lib/libboost_serialization.so.${PKGVERSION}
+lib/libboost_serialization.so.1
+lib/libboost_serialization.so.1.72
lib/libboost_stacktrace_addr2line.a
lib/libboost_stacktrace_addr2line.so
-lib/libboost_stacktrace_addr2line.so.1
-lib/libboost_stacktrace_addr2line.so.1.71
lib/libboost_stacktrace_addr2line.so.${PKGVERSION}
+lib/libboost_stacktrace_addr2line.so.1
+lib/libboost_stacktrace_addr2line.so.1.72
${PLIST.backtrace}lib/libboost_stacktrace_backtrace.a
${PLIST.backtrace}lib/libboost_stacktrace_backtrace.so
-${PLIST.backtrace}lib/libboost_stacktrace_backtrace.so.1
-${PLIST.backtrace}lib/libboost_stacktrace_backtrace.so.1.71
${PLIST.backtrace}lib/libboost_stacktrace_backtrace.so.${BOOST_VERSION}
+${PLIST.backtrace}lib/libboost_stacktrace_backtrace.so.1
+${PLIST.backtrace}lib/libboost_stacktrace_backtrace.so.1.72
lib/libboost_stacktrace_basic.a
lib/libboost_stacktrace_basic.so
-lib/libboost_stacktrace_basic.so.1
-lib/libboost_stacktrace_basic.so.1.71
lib/libboost_stacktrace_basic.so.${PKGVERSION}
+lib/libboost_stacktrace_basic.so.1
+lib/libboost_stacktrace_basic.so.1.72
lib/libboost_stacktrace_noop.a
lib/libboost_stacktrace_noop.so
-lib/libboost_stacktrace_noop.so.1
-lib/libboost_stacktrace_noop.so.1.71
lib/libboost_stacktrace_noop.so.${PKGVERSION}
+lib/libboost_stacktrace_noop.so.1
+lib/libboost_stacktrace_noop.so.1.72
lib/libboost_system.a
lib/libboost_system.so
-lib/libboost_system.so.1
-lib/libboost_system.so.1.71
lib/libboost_system.so.${PKGVERSION}
+lib/libboost_system.so.1
+lib/libboost_system.so.1.72
lib/libboost_test_exec_monitor.a
lib/libboost_thread.a
lib/libboost_thread.so
-lib/libboost_thread.so.1
-lib/libboost_thread.so.1.71
lib/libboost_thread.so.${PKGVERSION}
+lib/libboost_thread.so.1
+lib/libboost_thread.so.1.72
lib/libboost_timer.a
lib/libboost_timer.so
-lib/libboost_timer.so.1
-lib/libboost_timer.so.1.71
lib/libboost_timer.so.${PKGVERSION}
+lib/libboost_timer.so.1
+lib/libboost_timer.so.1.72
lib/libboost_type_erasure.a
lib/libboost_type_erasure.so
-lib/libboost_type_erasure.so.1
-lib/libboost_type_erasure.so.1.71
lib/libboost_type_erasure.so.${PKGVERSION}
+lib/libboost_type_erasure.so.1
+lib/libboost_type_erasure.so.1.72
lib/libboost_unit_test_framework.a
lib/libboost_unit_test_framework.so
-lib/libboost_unit_test_framework.so.1
-lib/libboost_unit_test_framework.so.1.71
lib/libboost_unit_test_framework.so.${PKGVERSION}
+lib/libboost_unit_test_framework.so.1
+lib/libboost_unit_test_framework.so.1.72
lib/libboost_wave.a
lib/libboost_wave.so
-lib/libboost_wave.so.1
-lib/libboost_wave.so.1.71
lib/libboost_wave.so.${PKGVERSION}
+lib/libboost_wave.so.1
+lib/libboost_wave.so.1.72
lib/libboost_wserialization.a
lib/libboost_wserialization.so
-lib/libboost_wserialization.so.1
-lib/libboost_wserialization.so.1.71
lib/libboost_wserialization.so.${PKGVERSION}
+lib/libboost_wserialization.so.1
+lib/libboost_wserialization.so.1.72
Index: pkgsrc/devel/boost-libs/buildlink3.mk
diff -u pkgsrc/devel/boost-libs/buildlink3.mk:1.50 pkgsrc/devel/boost-libs/buildlink3.mk:1.51
--- pkgsrc/devel/boost-libs/buildlink3.mk:1.50 Thu Aug 22 12:17:52 2019
+++ pkgsrc/devel/boost-libs/buildlink3.mk Sun Jan 12 10:10:04 2020
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.50 2019/08/22 12:17:52 ryoon Exp $
+# $NetBSD: buildlink3.mk,v 1.51 2020/01/12 10:10:04 adam Exp $
BUILDLINK_TREE+= boost-libs
@@ -6,8 +6,8 @@ BUILDLINK_TREE+= boost-libs
BOOST_LIBS_BUILDLINK3_MK:=
# Use a dependency pattern that guarantees the proper ABI.
-BUILDLINK_API_DEPENDS.boost-libs+= boost-libs-1.71.*
-BUILDLINK_ABI_DEPENDS.boost-libs?= boost-libs>=1.71.0
+BUILDLINK_API_DEPENDS.boost-libs+= boost-libs-1.72.*
+BUILDLINK_ABI_DEPENDS.boost-libs?= boost-libs>=1.72.0
BUILDLINK_PKGSRCDIR.boost-libs?= ../../devel/boost-libs
.include "../../mk/bsd.fast.prefs.mk"
Index: pkgsrc/devel/boost-mpi/PLIST
diff -u pkgsrc/devel/boost-mpi/PLIST:1.3 pkgsrc/devel/boost-mpi/PLIST:1.4
--- pkgsrc/devel/boost-mpi/PLIST:1.3 Thu Aug 22 12:17:52 2019
+++ pkgsrc/devel/boost-mpi/PLIST Sun Jan 12 10:10:04 2020
@@ -1,6 +1,6 @@
-@comment $NetBSD: PLIST,v 1.3 2019/08/22 12:17:52 ryoon Exp $
+@comment $NetBSD: PLIST,v 1.4 2020/01/12 10:10:04 adam Exp $
lib/libboost_mpi.a
lib/libboost_mpi.so
lib/libboost_mpi.so.1
-lib/libboost_mpi.so.1.71
+lib/libboost_mpi.so.1.72
lib/libboost_mpi.so.${PKGVERSION}
Index: pkgsrc/devel/boost-mpi/buildlink3.mk
diff -u pkgsrc/devel/boost-mpi/buildlink3.mk:1.6 pkgsrc/devel/boost-mpi/buildlink3.mk:1.7
--- pkgsrc/devel/boost-mpi/buildlink3.mk:1.6 Thu Aug 22 12:17:52 2019
+++ pkgsrc/devel/boost-mpi/buildlink3.mk Sun Jan 12 10:10:04 2020
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.6 2019/08/22 12:17:52 ryoon Exp $
+# $NetBSD: buildlink3.mk,v 1.7 2020/01/12 10:10:04 adam Exp $
BUILDLINK_TREE+= boost-mpi
@@ -6,8 +6,8 @@ BUILDLINK_TREE+= boost-mpi
BOOST_MPI_BUILDLINK3_MK:=
# Use a dependency pattern that guarantees the proper ABI.
-BUILDLINK_API_DEPENDS.boost-mpi+= boost-mpi-1.71.*
-BUILDLINK_ABI_DEPENDS.boost-mpi+= boost-mpi-1.71.*
+BUILDLINK_API_DEPENDS.boost-mpi+= boost-mpi-1.72.*
+BUILDLINK_ABI_DEPENDS.boost-mpi+= boost-mpi-1.72.*
BUILDLINK_PKGSRCDIR.boost-mpi?= ../../devel/boost-mpi
.include "../../devel/boost-libs/buildlink3.mk"
Index: pkgsrc/devel/py-boost/Makefile
diff -u pkgsrc/devel/py-boost/Makefile:1.10 pkgsrc/devel/py-boost/Makefile:1.11
--- pkgsrc/devel/py-boost/Makefile:1.10 Tue Nov 13 12:00:33 2018
+++ pkgsrc/devel/py-boost/Makefile Sun Jan 12 10:10:04 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2018/11/13 12:00:33 markd Exp $
+# $NetBSD: Makefile,v 1.11 2020/01/12 10:10:04 adam Exp $
BOOST_PACKAGE= python
BOOST_COMMENT= (Boost.Python binary library)
@@ -17,15 +17,9 @@ MAKE_ENV+= BOOST_BUILD_PATH=${WRKSRC}
.include "../../devel/boost-jam/bjam.mk"
.include "../../lang/python/pyversion.mk"
-.if exists(${PYTHONBIN}m)
-M= m
-.else
-M=
-.endif
-
post-configure:
${ECHO} 'using python : ${PYVERSSUFFIX} :' \
- '${PREFIX}/bin/python${PYVERSSUFFIX} : ${PREFIX}/include/python${PYVERSSUFFIX}${M} ;' \
+ '${PREFIX}/bin/python${PYVERSSUFFIX} : ${PREFIX}/include/python${PYVERSSUFFIX} ;' \
>${WRKSRC}/user-config.jam
do-build: bjam-build
@@ -34,12 +28,5 @@ do-install: boost-install-libs
PLIST_SUBST+= PYVER=${_PYTHON_VERSION}
-#.if ${PYPKGPREFIX} != py27
-# The python3 variant also includes redundant copies of the libs
-# that conflict with the python2 variant.
-#post-install:
-# ${RM} -f ${DESTDIR}${PREFIX}/lib/libboost_python.*
-#.endif
-
.include "../../math/py-numpy/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/devel/py-boost/PLIST
diff -u pkgsrc/devel/py-boost/PLIST:1.7 pkgsrc/devel/py-boost/PLIST:1.8
--- pkgsrc/devel/py-boost/PLIST:1.7 Thu Aug 22 12:17:53 2019
+++ pkgsrc/devel/py-boost/PLIST Sun Jan 12 10:10:04 2020
@@ -1,11 +1,11 @@
-@comment $NetBSD: PLIST,v 1.7 2019/08/22 12:17:53 ryoon Exp $
+@comment $NetBSD: PLIST,v 1.8 2020/01/12 10:10:04 adam Exp $
lib/libboost_numpy${PYVER}.a
lib/libboost_numpy${PYVER}.so
lib/libboost_numpy${PYVER}.so.1
-lib/libboost_numpy${PYVER}.so.1.71
+lib/libboost_numpy${PYVER}.so.1.72
lib/libboost_numpy${PYVER}.so.${PKGVERSION}
lib/libboost_python${PYVER}.a
lib/libboost_python${PYVER}.so
lib/libboost_python${PYVER}.so.1
-lib/libboost_python${PYVER}.so.1.71
+lib/libboost_python${PYVER}.so.1.72
lib/libboost_python${PYVER}.so.${PKGVERSION}
Index: pkgsrc/devel/py-boost/buildlink3.mk
diff -u pkgsrc/devel/py-boost/buildlink3.mk:1.15 pkgsrc/devel/py-boost/buildlink3.mk:1.16
--- pkgsrc/devel/py-boost/buildlink3.mk:1.15 Thu Aug 22 12:17:53 2019
+++ pkgsrc/devel/py-boost/buildlink3.mk Sun Jan 12 10:10:04 2020
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.15 2019/08/22 12:17:53 ryoon Exp $
+# $NetBSD: buildlink3.mk,v 1.16 2020/01/12 10:10:04 adam Exp $
BUILDLINK_TREE+= py-boost
@@ -8,8 +8,8 @@ PY_BOOST_BUILDLINK3_MK:=
.include "../../lang/python/pyversion.mk"
# Use a dependency pattern that guarantees the proper ABI.
-BUILDLINK_API_DEPENDS.py-boost+= ${PYPKGPREFIX}-boost-1.71.*
-BUILDLINK_ABI_DEPENDS.py-boost+= ${PYPKGPREFIX}-boost-1.71.*
+BUILDLINK_API_DEPENDS.py-boost+= ${PYPKGPREFIX}-boost-1.72.*
+BUILDLINK_ABI_DEPENDS.py-boost+= ${PYPKGPREFIX}-boost-1.72.*
BUILDLINK_PKGSRCDIR.py-boost?= ../../devel/py-boost
.include "../../devel/boost-headers/buildlink3.mk"
Index: pkgsrc/meta-pkgs/boost/Makefile.common
diff -u pkgsrc/meta-pkgs/boost/Makefile.common:1.83 pkgsrc/meta-pkgs/boost/Makefile.common:1.84
--- pkgsrc/meta-pkgs/boost/Makefile.common:1.83 Thu Aug 22 12:17:52 2019
+++ pkgsrc/meta-pkgs/boost/Makefile.common Sun Jan 12 10:10:04 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.83 2019/08/22 12:17:52 ryoon Exp $
+# $NetBSD: Makefile.common,v 1.84 2020/01/12 10:10:04 adam Exp $
#
# used by devel/boost-build/Makefile
# used by devel/boost-docs/Makefile
@@ -10,7 +10,7 @@
BOOST_PACKAGE?= undefined
BOOST_COMMENT?= undefined
-BOOST_VERSION= 1.71.0
+BOOST_VERSION= 1.72.0
BOOST_SHORT_VERSION= ${BOOST_VERSION:S/./_/:C/\..*$//}
# Update mysql57-client/patches/patch-cmake_boost.cmake when updating version
Index: pkgsrc/meta-pkgs/boost/distinfo
diff -u pkgsrc/meta-pkgs/boost/distinfo:1.128 pkgsrc/meta-pkgs/boost/distinfo:1.129
--- pkgsrc/meta-pkgs/boost/distinfo:1.128 Wed Oct 9 19:17:45 2019
+++ pkgsrc/meta-pkgs/boost/distinfo Sun Jan 12 10:10:04 2020
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.128 2019/10/09 19:17:45 ryoon Exp $
+$NetBSD: distinfo,v 1.129 2020/01/12 10:10:04 adam Exp $
-SHA1 (boost_1_71_0.tar.bz2) = 5b0a3cef23f0c124dde5bbb64324f615ac843ace
-RMD160 (boost_1_71_0.tar.bz2) = a46b886ca26993610c84615fca4340ad3f955f81
-SHA512 (boost_1_71_0.tar.bz2) = b7937d50c4512cf13cadd0ca829de36cf2cbc6fb788f45b1d4565ad0753e2b206c545125a5862016c2f16016f2e4a6b687928963b466fff17c3e0a4437142c20
-Size (boost_1_71_0.tar.bz2) = 100124647 bytes
+SHA1 (boost_1_72_0.tar.bz2) = 88866e4075e12255e7a7189d0b8a686e0b1ee9c1
+RMD160 (boost_1_72_0.tar.bz2) = a2d89b52665a145d19e181a5d52682ca51526765
+SHA512 (boost_1_72_0.tar.bz2) = 63bbd1743e7c904b2e69fdc2eafd1c2a8a30fd70d960dcd366059d0100f000cb605d56cbd9397bb18421631f1c9552a772c434d0f0caddbe56302273f51fd1f6
+Size (boost_1_72_0.tar.bz2) = 106907358 bytes
SHA1 (patch-boost_archive_basic__archive.hpp) = 7e7c88cfc00fbf524c70dedd8b9c3c889f8b684f
SHA1 (patch-boost_asio_detail_config.hpp) = f3ae1fd0a026c21a89d196c74e02c4d3c8ea0808
SHA1 (patch-boost_asio_detail_impl_kqueue__reactor.ipp) = ce16c7c875e6361f952513e700a14761312650fa
@@ -23,7 +23,7 @@ SHA1 (patch-boost_numeric_ublas_storage.
SHA1 (patch-boost_property__tree_detail_xml__parser__read__rapidxml.hpp) = 3499fcc37e72396d23a9fce0f1c97891adf12a9f
SHA1 (patch-boost_regex_config.hpp) = 6b752c7c23168c591cd391739c7a4539bef44c12
SHA1 (patch-boost_stacktrace_detail_collect__unwind.ipp) = a5922dffd929f596b6e7d71b11f32d17e0bbd806
-SHA1 (patch-boost_test_impl_execution__monitor.ipp) = 6569cde4cda55a7607d9cbe7853a245ae75eef0d
+SHA1 (patch-boost_test_impl_execution__monitor.ipp) = ffd449576d00b7e6ea3081421e3e70decf5d7de8
SHA1 (patch-boost_thread_pthread_thread__data.hpp) = 64d2edbaaa297408b8d0b8853611b1d3b0ceea7f
SHA1 (patch-boostcpp.jam) = c545980fc72ce5a9fd2463899280927b495771b9
SHA1 (patch-libs_config_configure) = e2f204d4fa4f1bd9b4131d28f9be0a1ac22bf711
Index: pkgsrc/meta-pkgs/boost/patches/patch-boost_test_impl_execution__monitor.ipp
diff -u pkgsrc/meta-pkgs/boost/patches/patch-boost_test_impl_execution__monitor.ipp:1.3 pkgsrc/meta-pkgs/boost/patches/patch-boost_test_impl_execution__monitor.ipp:1.4
--- pkgsrc/meta-pkgs/boost/patches/patch-boost_test_impl_execution__monitor.ipp:1.3 Mon Jul 1 04:00:10 2019
+++ pkgsrc/meta-pkgs/boost/patches/patch-boost_test_impl_execution__monitor.ipp Sun Jan 12 10:10:04 2020
@@ -1,6 +1,6 @@
-$NetBSD: patch-boost_test_impl_execution__monitor.ipp,v 1.3 2019/07/01 04:00:10 ryoon Exp $
+$NetBSD: patch-boost_test_impl_execution__monitor.ipp,v 1.4 2020/01/12 10:10:04 adam Exp $
---- boost/test/impl/execution_monitor.ipp.orig 2019-04-09 19:36:35.000000000 +0000
+--- boost/test/impl/execution_monitor.ipp.orig 2019-12-10 00:20:00.000000000 +0000
+++ boost/test/impl/execution_monitor.ipp
@@ -171,7 +171,8 @@ namespace { void _set_se_translator( voi
# if defined(SIGPOLL) && !defined(__CYGWIN__) && \
@@ -12,22 +12,3 @@ $NetBSD: patch-boost_test_impl_execution
# define BOOST_TEST_CATCH_SIGPOLL
# endif
-@@ -391,14 +392,18 @@ system_signal_exception::report() const
- report_error( execution_exception::system_error,
- "signal: the expiration of a timer set by timer_settimer()" );
- break;
-+#if defined(SI_ASYNCIO)
- case SI_ASYNCIO:
- report_error( execution_exception::system_error,
- "signal: generated by the completion of an asynchronous I/O request" );
- break;
-+#endif
-+#if defined(SI_MESGQ)
- case SI_MESGQ:
- report_error( execution_exception::system_error,
- "signal: generated by the the arrival of a message on an empty message queue" );
- break;
-+#endif
- default:
- break;
- }
Home |
Main Index |
Thread Index |
Old Index