Skip to content

Commit 0aff30f

Browse files
committed
Update to 1.71.0
Changelog: New Libraries Variant2: A never-valueless, strong guarantee implementation of std::variant, from Peter Dimov. Updated Libraries Align: Support for any integral type in the integral versions of align_up and align_down. Revised the implementation of aligned_allocator to no longer require a specialization for void. Define propagate_on_container_move_assignment and is_always_equal in aligned_allocator. Asio: Improved performance slightly by eliminating a redundant move construction when completed handlers are dispatched. Eliminated a compiler warning by annotating a case fall-through in the free function connect() implementation. Fixed the is_*_buffer_sequence detection traits for user-defined sequence types. Fixed some Windows-specific warnings about an incompatible pointer cast when obtaining the CancelIoEx entry point. Changed to automatically set the defaults when opening a serial port on Windows. Changed the serial port get_option() member function to be const. Fixed a name hiding issue with the WinRT stream-oriented socket backend's shutdown function. Applied a minor fix to the documentation for is_dynamic_buffer. Added some support for Haiku OS. Added wolfSSL compatability. Changed to require C++17 or later for coroutines TS support with clang. Fixed a doxygen generation problem in the tutorial. Ensured example programs are correctly incorporated into the documentation. Any: Static initialization of the default constructed boost::any is now possible. Fixed performance regression in assignment on a compilers without move-semantics. Maintenance work. Beast: This version consists mostly of bug fixes and performance improvements. Substantial work included for the split compilation mode, to reduce compile time when defining BOOST_BEAST_SEPARATE_COMPILATION. We'd love to know how you or your company use Beast, consider adding an item to the Companies and Individuals Using Beast list. See the full Release Notes for a complete list of changes. Circular Buffer: Correct doxygen generated reference to no longer show internal members. (Glen Fernandes) Eliminate ubsan warning on add and sub. (Glen Fernandes) Fix incorrect check in is_uninitialized. (Niklas Fejes) Container: Fixed bugs: GitHub #47: "added alignment specification for small_vector". GitHub #88: "Implement C++17 MoveAssignable requirements for self-move assignments". GitHub #107: "Alignment ignored in resource_adaptor". GitHub #109: "Get rid of integer overflow in copy_move_algo.hpp (-fsanitize=integer)". GitHub #110: "Avoid gcc 9 deprecated copy warnings in new_allocator.hpp". GitHub #112: "vector::resize() compilation error with msvc-10..12: data is not a member of boost::detail::aligned_storage". GitHub #114: "Fix small_vector noexcept specification". GitHub #116: "MSVC + boost 1.70 compilation error when windows.h is already included (detail/thread_mutex.hpp)". GitHub #117: "flat_map/map::insert_or_assign with hint has wrong return types". GitHub #118: "Non-unique inplace_set_difference used in in flat_tree_merge_unique and iterator invalidation in insert_unique". GitHub #122: "Fix has_trivial_destructor_after_move". GitHub #123: "With heterogeneous lookup, equal_range can result in a range with length greater than 1". deque can now have options, using deque_options. The block size/bytes can be be specified. static_vector can now have options, using static_vector_options. Alignment and throwing behaviour can be be specified. small_vector can now have options, using small_vector_options. Alignment and growth factor can be be specified. Context: Add support for RISC-V LP64D #72: Fix ABI violation on ppc64 ELFv2 #99: cleanup of stack if creating ucontext fails Conversion: Maintenance work. Core: Added functions alloc_construct, alloc_construct_n, alloc_destroy, and alloc_destroy_n in <boost/core/alloc_construct.hpp> for allocator aware and exception safe construction and destruction of objects and arrays. (Glen Fernandes) Added constexpr functions first_scalar in <boost/core/first_scalar.hpp> for obtaining a pointer to the first scalar element of an array. Given a pointer of type T* they return a pointer of type remove_all_extents_t<T>*. (Glen Fernandes) Added class template noinit_adaptor in <boost/core/noinit_adaptor.hpp> which is an allocator adaptor that converts any allocator into one whose construct(ptr) performs default initialization via placement new, and whose destroy(ptr) invokes the value_type destructor directly. (Glen Fernandes) Added class template default_allocator in <boost/core/default_allocator.hpp>, which can serve as a minimal default allocator that has interface similar to C++20 std::allocator, supports configurations with disabled exceptions and does not have std as an associated namespace. The allocator uses operator new and operator delete for allocation. (Glen Fernandes) In <boost/core/uncaught_exceptions.hpp> header, added workarounds for better compatibility with QNX SDP 7.0 when libc++/libc++abi libraries are used. (Andrey Semashev, #59) The <boost/detail/sp_typeinfo.hpp> header is now marked as deprecated and will be removed in a future release. <boost/core/typeinfo.hpp> should be used instead. (Peter Dimov) Dynamic Bitset: Enabled hardware-assisted popcount on MSVC (#38). Added support for boost::hash and std::hash (#45). Support copy-initialization with default constructor (#48). Endian: Clarified requirements on the value type template parameter Added support for float and double Added endian_load, endian_store Updated endian_reverse to correctly support all non-bool integral types Moved deprecated names to the deprecated header endian.hpp Fiber: documentation for shared_work updated Filesystem: Fixed incorrect error_code returned from directory iterator increment when readdir_r is used. For path, fixed rvalue-aware operator/ return type to return an rvalue instead of rvalue reference. This fixes leaving a dangling reference in the user's code if the result of operator/ is bound to a const reference. (#110) Fixes for better compatibility with Windows CE. (#24) Added minimal support for CMake. (#106) Flyweight: Maintenance work. Histogram: New features: Support for thread-safe storages and new thread-safe accumulators Support for compiling without exceptions/RTTI (increases performance by 10-20 %) (with Glen Fernandes) Performance improvements for 1D and 2D histograms boost::histogram::indexed now returns forward iterator range instead of input iterator range boost::histogram::indexed_range::accessor is now non-copyable and acts like reference to cell value, making more algorithms from the C++ stdlib work boost::histogram::algorithm::reduce with new slice option and option fusion boost::histogram::algorithm::project accepts runtime indices for static histograms Bug Fixes: boost::histogram::algorithm::reduce also works on histograms that have some axis types without reduction support boost::histogram::axis::traits::update now works correctly for boost::histogram::axis::variant Other: 100 % test coverage Reduced internal Boost dependencies Improved documentation and examples Guaranteed no-throw moves for all builtin axis types Compile cleanly at higher warning levels See changelog for more details. IoStreams: Fixed processing of multi-stream files (#87). Added support for multi-threaded LZMA (#95). Interprocess: GitHub #85 ("warning: Implicit conversion loses integer precision"). GitHub #86 ("warning: Possible misuse of comma operator"). Intrusive: GitHub #42: Documentation does not describe treap priority_of_value changes GitHub #43: Fix tests with BOOST_INTRUSIVE_VARIADIC_TEMPLATES enabled GitHub #45: Disable variadic templates for MSVC-12 to avoid ICEs LexicalCast: Added tests for boost::filesystem::path conversions #25. Maintenance work, including #28. Log: New features: Improved support for C++17 std::string_view in basic_formatting_ostream. The string view can now participate in character code conversion on output. Added auto_newline formatter and stream manipulator. It can be used to ensure that formatted output always ends with a newline while avoiding duplicate newlines. In the output stream, text file and text multi-file sink backends added support for configuring behavior with regard to appending a trailing newline to every formatted log record. Use auto_newline_mode named parameter of the backend constructor or call the set_auto_newline_mode method on the sink backend. Note: The default behavior with regard to trailing newlines added by sink backends has changed slightly compared to the previous Boost.Log releases. The backends will now only add a trailing newline if there isn't one in the formatted log message string already. In previous releases a newline was added unconditionally. Added support for passing arbitrary function objects in the filter and format named parameters to sink constructors and convenience functions for initializing sinks. For example, it is now possible to specify C++11 lambda functions directly in these parameters. (#63) In the default filter and formatter factories used in filter and formatter parsers, added support for severity level attribute values of type boost::log::trivial::severity_level. For filters, the support is limited to attributes with "Severity" name. Bug fixes: Fixed incorrect parsing of components of the rotated file names while scanning for files in the text file sink backend. If the file name pattern ended with a placeholder (for example, a file counter), the scan_for_files method would not find files matching that pattern in the target storage, leaving them unmanaged. In particular, such files would not be deleted to free target storage. (#78) Updated basic_formatting_ostream and basic_record_ostream to make it possible to overload stream output operators for pointers to user-defined types. User-defined operator<< overloads taking std::basic_ostream and a pointer argument should now be picked up by the compiler when the pointer is being written to one of Boost.Log streams. (#84) See changelog for more details. Math: New features: Catmull-Rom interpolator now works in C++11 Cardinal quadratic B-spline interpolation Domain of elliptic integrals extended sin_pi and cos_pi performance improvements Forward-mode automatic differentiation Vector valued barycentric rational interpolation Ooura's method for evaluation of Fourier integrals Bug fixes: Multiple compatibility issues with Multiprecision fixed Lambert-W fixed on a rare architecture Metaparse: New features: In C++11 variadic template support for the following: sequence, one_of_c, one_of, repeated_one_of, repeated_one_of1, one_char_except_c, one_char_except. Bug fixes: BOOST_METAPARSE_STRING does not use out of range character values as template arguments. any_of_c<> does not create empty array in C++14. Move: Git Issue #26: "Invalid iterator increment/decrement in the last iteration of adaptive_sort_combine_blocks". Multi Array: Simplify allocator support by using new alloc_construct_n and alloc_destroy_n facilities from Core. (Glen Fernandes) Multi-index Containers: Added variants of const_mem_fun and mem_fun for differently qualified member functions (issue #24). Terse key specification syntax now correctly handles noexcept-specified member functions (issue #24). Outcome: Enhancements: #184 As per request from Boost release managers, relocated version.hpp and revision.hpp into detail, and added the Boost licence boilerplate to the top of every source file which was missing one (I think). Also took the opportunity to run the licence restamping script over all Outcome, so copyright dates are now up to date. #185 Add FAQ item explaining issue #185, and why we will do nothing to fix it right now. #189 Refactored the OUTCOME_TRY implementation to use more clarified customisation points capable of accepting very foreign inputs. Removed the std::experimental::expected<T, E> specialisations, as those are no longer necessary. Fixed the documentation for the customisation points which previously claimed that they are ADL discovered, which they are not. Added a recipe describing how to add in support for foreign input types. #183 Added a separate motivation/plug_error_code specifically for Boost. Bug fixes: OUTCOME_VERSION_MINOR hadn't been updated to 1. #181 Fix issue #181 where Outcome didn't actually implement the strong swap guarantee, despite being documented as doing so. #190 Fix issue #190 in Boost edition where unit test suite was not runnable from the Boost release distro. #182 Fix issue #182 where trait::is_exception_ptr_available<T> was always true, thus causing much weirdness, like not printing diagnostics and trying to feed everything to make_exception_ptr(). #192 Fix issue #192 where the std::basic_outcome_failure_exception_from_error() was being defined twice for translation units which combine standalone and Boost Outcome's. Parameter: Upgraded keyword generation macro BOOST_PARAMETER_TEMPLATE_KEYWORD (#15). Moved keyword generation macro BOOST_PARAMETER_NESTED_KEYWORD from Accumulators to this library (#28). Added support for std::reference_wrapper and std::ref() (#16). Moved boost::parameter::required, boost::parameter::optional, and boost::parameter::deduced metafunction definitions to their own header files in directory boost/parameter (#18). Added support for Boost.Parameter-enabled function call operators (#20). Added support for parameter category qualifiers "forward", "consume", and "move_from" (current qualifiers are "in", "out", and "in_out") (#21) (#23) based on http://www.modernescpp.com/index.php/c-core-guidelines-how-to-pass-function-parameters. Added new usage syntax BOOST_PARAMETER_NAME((object-name), namespace-name) qualifier(tag-name)) and BOOST_PARAMETER_NAME(qualifier(name)). (Existing code that uses qualifiers directly and correctly with BOOST_PARAMETER_FUNCTION and other code generation macros should remain unaffected for now, so no breaking changes.) The reason for the change in usage is to enable applying of parameter category constraints to Boost.Parameter-enabled functions and constructors invoked through argument composition. (Otherwise, it is currently possible to use argument composition to bypass parameter category constraints applied in BOOST_PARAMETER_FUNCTION et. al.) Added support for perfect forwarding (#23) (#26), so that parameter::parameters::operator() can accept non-const rvalues. As a positive side effect, Boost.Parameter-enabled functions and constructors are no longer bound by BOOST_PARAMETER_MAX_ARITY on compilers that support perfect forwarding. User code can now check for this support by detecting the configuration macro BOOST_PARAMETER_HAS_PERFECT_FORWARDING, or manually turn off this support by defining the configuration macro BOOST_PARAMETER_DISABLE_PERFECT_FORWARDING. Added metafunctions boost::parameter::is_argument_pack (#27), boost::parameter::are_tagged_arguments (#52), and boost::parameter::result_of::compose (#75). Added variadic function template boost::parameter::compose() which takes in named arguments and returns them in an argument pack (#52). For compilers that do not support perfect forwarding, the configuration macro BOOST_PARAMETER_COMPOSE_MAX_ARITY determines the maximum number of arguments that boost::parameter::compose() can take in (#61). Added code generation macros BOOST_PARAMETER_BASIC_FUNCTION_CALL_OPERATOR, BOOST_PARAMETER_BASIC_CONST_FUNCTION_CALL_OPERATOR, BOOST_PARAMETER_NO_SPEC_FUNCTION, BOOST_PARAMETER_NO_SPEC_MEMBER_FUNCTION, BOOST_PARAMETER_NO_SPEC_CONST_MEMBER_FUNCTION, BOOST_PARAMETER_NO_SPEC_FUNCTION_CALL_OPERATOR, BOOST_PARAMETER_NO_SPEC_CONST_FUNCTION_CALL_OPERATOR, BOOST_PARAMETER_NO_SPEC_CONSTRUCTOR, and BOOST_PARAMETER_NO_SPEC_NO_BASE_CONSTRUCTOR (#52). Added support for Boost.MP11 (#47) (#66) (#70). User code can now check for this support by detecting the configuration macro BOOST_PARAMETER_CAN_USE_MP11, or manually turn off this support by defining the configuration macro BOOST_PARAMETER_DISABLE_MP11_USAGE. Improved support for parameter-dependent return types via SFINAE (#73). PtrContainer: Fix a ptr_vector regression introduced in 1.66.0 (#24). PolyCollection: Maintenance work. SmartPtr: Added aliasing constructors to weak_ptr Added weak_ptr<T>::empty() Added enable_shared_from, shared_from, and weak_from Stacktrace: Fixed output of name(), source_location() and source_line() for the default constructed frame with thread sanitizer builds in C++98 mode. Fixed output of long strings from name() and source_location() on MSVC #78. Maintenance work. Test: Boost.test v3.11 see the Changes log for more details. Breaking changes: Boost.Test shows deprecation warnings if some very old headers as deprecated. If you encounter such warnings, please follow the indications: those headers will be removed in a future release. New feature: Now BOOST_TEST can be used to compare abstract types Bug fixes and pull requests: GitHub Issues: #209, #218 GitHub Pull Requests: #219, #224 Utility: Implemented function template ostream_string in <boost/utility/ostream_string.hpp> to optimally write any kind of string content to an output stream. It satisfies the requirements of [ostream.formatted.reqmts]. (Glen Fernandes) Optimized the stream output operators of basic_string_view and basic_string_ref to write directly to the rdbuf stream buffer. (Glen Fernandes) Uuid: Breaking change: MD5 name-based uuid generation was corrected to be identical on all endian systems. Define BOOST_UUID_COMPAT_PRE_1_71_MD5 to keep the result in a format compatible with 1.66 through 1.70. This does not affect the default name-based uuid generation which is based on SHA1. (#109) Variant: Fixed compilation of boost::apply_visitor with variants passed by non const reference in #68. Many thanks to Ed Catmur for providing the fix. Added support for std::hash (#49). Macro BOOST_VARIANT_DO_NOT_SPECIALIZE_STD_HASH could be defined to avoid those specializations. Added micro optimizations for binary size and performance by Nikita Kniazev in #63 and #66. Maintenance work, including #64 by Nikita Kniazev and #67 by Hans Dembinski. YAP: Added an example showing how to make self-evaluating YAP expressions (that is, expressions that don't need an explicit call to evaluate() or transform()).
1 parent 7f38d70 commit 0aff30f

18 files changed

+265
-143
lines changed

devel/boost-build/PLIST

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@comment $NetBSD: PLIST,v 1.28 2019/07/01 04:00:09 ryoon Exp $
1+
@comment $NetBSD: PLIST,v 1.29 2019/08/22 12:17:52 ryoon Exp $
22
share/boost-build/__init__.py
33
share/boost-build/bootstrap.jam
44
share/boost-build/build-system.jam
@@ -130,6 +130,7 @@ share/boost-build/tools/features/os-feature.jam
130130
share/boost-build/tools/features/relevant-feature.jam
131131
share/boost-build/tools/features/rtti-feature.jam
132132
share/boost-build/tools/features/runtime-feature.jam
133+
share/boost-build/tools/features/sanitizers-feature.jam
133134
share/boost-build/tools/features/search-feature.jam
134135
share/boost-build/tools/features/source-feature.jam
135136
share/boost-build/tools/features/stdlib-feature.jam
@@ -188,12 +189,14 @@ share/boost-build/tools/msvc.jam
188189
share/boost-build/tools/msvc.py
189190
share/boost-build/tools/notfile.jam
190191
share/boost-build/tools/notfile.py
192+
share/boost-build/tools/openssl.jam
191193
share/boost-build/tools/package.jam
192194
share/boost-build/tools/package.py
193195
share/boost-build/tools/pathscale.jam
194196
share/boost-build/tools/pch.jam
195197
share/boost-build/tools/pch.py
196198
share/boost-build/tools/pgi.jam
199+
share/boost-build/tools/pkg-config.jam
197200
share/boost-build/tools/python-config.jam
198201
share/boost-build/tools/python.jam
199202
share/boost-build/tools/qcc.jam

devel/boost-build/buildlink3.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# $NetBSD: buildlink3.mk,v 1.41 2019/07/01 09:09:52 jperkin Exp $
1+
# $NetBSD: buildlink3.mk,v 1.42 2019/08/22 12:17:52 ryoon Exp $
22

33
BUILDLINK_TREE+= boost-build
44

55
.if !defined(BOOST_BUILD_BUILDLINK3_MK)
66
BOOST_BUILD_BUILDLINK3_MK:=
77

8-
BUILDLINK_API_DEPENDS.boost-build+= boost-build-1.70.*
8+
BUILDLINK_API_DEPENDS.boost-build+= boost-build-1.71.*
99
BUILDLINK_DEPMETHOD.boost-build?= build
1010
BUILDLINK_PKGSRCDIR.boost-build?= ../../devel/boost-build
1111
.endif # BOOST_BUILD_BUILDLINK3_MK

devel/boost-headers/PLIST

+188-21
Large diffs are not rendered by default.

devel/boost-headers/buildlink3.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# $NetBSD: buildlink3.mk,v 1.43 2019/07/01 04:00:09 ryoon Exp $
1+
# $NetBSD: buildlink3.mk,v 1.44 2019/08/22 12:17:52 ryoon Exp $
22

33
BUILDLINK_TREE+= boost-headers
44

55
.if !defined(BOOST_HEADERS_BUILDLINK3_MK)
66
BOOST_HEADERS_BUILDLINK3_MK:=
77

88
# Use a dependency pattern that guarantees the proper ABI.
9-
BUILDLINK_API_DEPENDS.boost-headers+= boost-headers-1.70.*
9+
BUILDLINK_API_DEPENDS.boost-headers+= boost-headers-1.71.*
1010
BUILDLINK_DEPMETHOD.boost-headers?= build
1111
BUILDLINK_PKGSRCDIR.boost-headers?= ../../devel/boost-headers
1212

devel/boost-jam/Makefile

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $NetBSD: Makefile,v 1.10 2014/08/13 10:56:35 adam Exp $
1+
# $NetBSD: Makefile,v 1.11 2019/08/22 12:17:52 ryoon Exp $
22

33
BOOST_PACKAGE= jam
44
BOOST_COMMENT= (Boost.Jam utility)
@@ -23,7 +23,9 @@ do-build:
2323
${SETENV} ${MAKE_ENV} ${SH} ./build.sh ${BOOST_TOOLSET}
2424

2525
do-install:
26-
${INSTALL_PROGRAM} ${WRKSRC}/tools/build/src/engine/bin.*/bjam \
26+
${INSTALL_PROGRAM} ${WRKSRC}/tools/build/src/engine/b2 \
27+
${DESTDIR}${PREFIX}/bin
28+
${INSTALL_PROGRAM} ${WRKSRC}/tools/build/src/engine/bjam \
2729
${DESTDIR}${PREFIX}/bin
2830

2931
.include "../../mk/bsd.pkg.mk"

devel/boost-jam/PLIST

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
@comment $NetBSD: PLIST,v 1.1.1.1 2007/06/02 17:48:51 jmmv Exp $
1+
@comment $NetBSD: PLIST,v 1.2 2019/08/22 12:17:52 ryoon Exp $
2+
bin/b2
23
bin/bjam

devel/boost-jam/buildlink3.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# $NetBSD: buildlink3.mk,v 1.37 2019/07/01 04:00:10 ryoon Exp $
1+
# $NetBSD: buildlink3.mk,v 1.38 2019/08/22 12:17:52 ryoon Exp $
22

33
BUILDLINK_TREE+= boost-jam
44

55
.if !defined(BOOST_JAM_BUILDLINK3_MK)
66
BOOST_JAM_BUILDLINK3_MK:=
77

8-
BUILDLINK_API_DEPENDS.boost-jam+= boost-jam-1.70.*
8+
BUILDLINK_API_DEPENDS.boost-jam+= boost-jam-1.71.*
99
BUILDLINK_DEPMETHOD.boost-jam?= build
1010
BUILDLINK_PKGSRCDIR.boost-jam?= ../../devel/boost-jam
1111
.endif # BOOST_JAM_BUILDLINK3_MK

devel/boost-libs/PLIST

+38-38
Original file line numberDiff line numberDiff line change
@@ -1,183 +1,183 @@
1-
@comment $NetBSD: PLIST,v 1.38 2019/07/01 04:00:10 ryoon Exp $
1+
@comment $NetBSD: PLIST,v 1.39 2019/08/22 12:17:52 ryoon Exp $
22
lib/libboost_atomic.a
33
lib/libboost_atomic.so
44
lib/libboost_atomic.so.1
5-
lib/libboost_atomic.so.1.70
5+
lib/libboost_atomic.so.1.71
66
lib/libboost_atomic.so.${PKGVERSION}
77
lib/libboost_chrono.a
88
lib/libboost_chrono.so
99
lib/libboost_chrono.so.1
10-
lib/libboost_chrono.so.1.70
10+
lib/libboost_chrono.so.1.71
1111
lib/libboost_chrono.so.${PKGVERSION}
1212
lib/libboost_container.a
1313
lib/libboost_container.so
1414
lib/libboost_container.so.1
15-
lib/libboost_container.so.1.70
15+
lib/libboost_container.so.1.71
1616
lib/libboost_container.so.${PKGVERSION}
1717
${PLIST.context}lib/libboost_context.a
1818
${PLIST.context}lib/libboost_context.so
1919
${PLIST.context}lib/libboost_context.so.1
20-
${PLIST.context}lib/libboost_context.so.1.70
21-
lib/libboost_context.so.${PKGVERSION}
20+
${PLIST.context}lib/libboost_context.so.1.71
21+
${PLIST.context}lib/libboost_context.so.${PKGVERSION}
2222
lib/libboost_contract.a
2323
lib/libboost_contract.so
2424
lib/libboost_contract.so.1
25-
lib/libboost_contract.so.1.70
25+
lib/libboost_contract.so.1.71
2626
lib/libboost_contract.so.${PKGVERSION}
2727
${PLIST.context}lib/libboost_coroutine.a
2828
${PLIST.context}lib/libboost_coroutine.so
2929
${PLIST.context}lib/libboost_coroutine.so.1
30-
${PLIST.context}lib/libboost_coroutine.so.1.70
30+
${PLIST.context}lib/libboost_coroutine.so.1.71
3131
${PLIST.context}lib/libboost_coroutine.so.${PKGVERSION}
3232
lib/libboost_date_time.a
3333
lib/libboost_date_time.so
3434
lib/libboost_date_time.so.1
35-
lib/libboost_date_time.so.1.70
35+
lib/libboost_date_time.so.1.71
3636
lib/libboost_date_time.so.${PKGVERSION}
3737
lib/libboost_exception.a
3838
${PLIST.fiber}lib/libboost_fiber.a
3939
${PLIST.fiber}lib/libboost_fiber.so
4040
${PLIST.fiber}lib/libboost_fiber.so.1
41-
${PLIST.fiber}lib/libboost_fiber.so.1.70
41+
${PLIST.fiber}lib/libboost_fiber.so.1.71
4242
${PLIST.fiber}lib/libboost_fiber.so.${BOOST_VERSION}
4343
lib/libboost_filesystem.a
4444
lib/libboost_filesystem.so
4545
lib/libboost_filesystem.so.1
46-
lib/libboost_filesystem.so.1.70
46+
lib/libboost_filesystem.so.1.71
4747
lib/libboost_filesystem.so.${PKGVERSION}
4848
lib/libboost_graph.a
4949
lib/libboost_graph.so
5050
lib/libboost_graph.so.1
51-
lib/libboost_graph.so.1.70
51+
lib/libboost_graph.so.1.71
5252
lib/libboost_graph.so.${PKGVERSION}
5353
lib/libboost_iostreams.a
5454
lib/libboost_iostreams.so
5555
lib/libboost_iostreams.so.1
56-
lib/libboost_iostreams.so.1.70
56+
lib/libboost_iostreams.so.1.71
5757
lib/libboost_iostreams.so.${PKGVERSION}
5858
lib/libboost_locale.a
5959
lib/libboost_locale.so
6060
lib/libboost_locale.so.1
61-
lib/libboost_locale.so.1.70
61+
lib/libboost_locale.so.1.71
6262
lib/libboost_locale.so.${PKGVERSION}
6363
${PLIST.log}lib/libboost_log.a
6464
${PLIST.log}lib/libboost_log.so
6565
${PLIST.log}lib/libboost_log.so.1
66-
${PLIST.log}lib/libboost_log.so.1.70
66+
${PLIST.log}lib/libboost_log.so.1.71
6767
${PLIST.log}lib/libboost_log.so.${PKGVERSION}
6868
${PLIST.log}lib/libboost_log_setup.a
6969
${PLIST.log}lib/libboost_log_setup.so
7070
${PLIST.log}lib/libboost_log_setup.so.1
71-
${PLIST.log}lib/libboost_log_setup.so.1.70
71+
${PLIST.log}lib/libboost_log_setup.so.1.71
7272
${PLIST.log}lib/libboost_log_setup.so.${PKGVERSION}
7373
lib/libboost_math_c99.a
7474
lib/libboost_math_c99.so
7575
lib/libboost_math_c99.so.1
76-
lib/libboost_math_c99.so.1.70
76+
lib/libboost_math_c99.so.1.71
7777
lib/libboost_math_c99.so.${PKGVERSION}
7878
lib/libboost_math_c99f.a
7979
lib/libboost_math_c99f.so
8080
lib/libboost_math_c99f.so.1
81-
lib/libboost_math_c99f.so.1.70
81+
lib/libboost_math_c99f.so.1.71
8282
lib/libboost_math_c99f.so.${PKGVERSION}
8383
${PLIST.longdbl}lib/libboost_math_c99l.a
8484
${PLIST.longdbl}lib/libboost_math_c99l.so
8585
${PLIST.longdbl}lib/libboost_math_c99l.so.1
86-
${PLIST.longdbl}lib/libboost_math_c99l.so.1.70
86+
${PLIST.longdbl}lib/libboost_math_c99l.so.1.71
8787
${PLIST.longdbl}lib/libboost_math_c99l.so.${PKGVERSION}
8888
lib/libboost_math_tr1.a
8989
lib/libboost_math_tr1.so
9090
lib/libboost_math_tr1.so.1
91-
lib/libboost_math_tr1.so.1.70
91+
lib/libboost_math_tr1.so.1.71
9292
lib/libboost_math_tr1.so.${PKGVERSION}
9393
lib/libboost_math_tr1f.a
9494
lib/libboost_math_tr1f.so
9595
lib/libboost_math_tr1f.so.1
96-
lib/libboost_math_tr1f.so.1.70
96+
lib/libboost_math_tr1f.so.1.71
9797
lib/libboost_math_tr1f.so.${PKGVERSION}
9898
${PLIST.longdbl}lib/libboost_math_tr1l.a
9999
${PLIST.longdbl}lib/libboost_math_tr1l.so
100100
${PLIST.longdbl}lib/libboost_math_tr1l.so.1
101-
${PLIST.longdbl}lib/libboost_math_tr1l.so.1.70
101+
${PLIST.longdbl}lib/libboost_math_tr1l.so.1.71
102102
${PLIST.longdbl}lib/libboost_math_tr1l.so.${PKGVERSION}
103103
lib/libboost_prg_exec_monitor.a
104104
lib/libboost_prg_exec_monitor.so
105105
lib/libboost_prg_exec_monitor.so.1
106-
lib/libboost_prg_exec_monitor.so.1.70
106+
lib/libboost_prg_exec_monitor.so.1.71
107107
lib/libboost_prg_exec_monitor.so.${PKGVERSION}
108108
lib/libboost_program_options.a
109109
lib/libboost_program_options.so
110110
lib/libboost_program_options.so.1
111-
lib/libboost_program_options.so.1.70
111+
lib/libboost_program_options.so.1.71
112112
lib/libboost_program_options.so.${PKGVERSION}
113113
lib/libboost_random.a
114114
lib/libboost_random.so
115115
lib/libboost_random.so.1
116-
lib/libboost_random.so.1.70
116+
lib/libboost_random.so.1.71
117117
lib/libboost_random.so.${PKGVERSION}
118118
lib/libboost_regex.a
119119
lib/libboost_regex.so
120120
lib/libboost_regex.so.1
121-
lib/libboost_regex.so.1.70
121+
lib/libboost_regex.so.1.71
122122
lib/libboost_regex.so.${PKGVERSION}
123123
lib/libboost_serialization.a
124124
lib/libboost_serialization.so
125125
lib/libboost_serialization.so.1
126-
lib/libboost_serialization.so.1.70
126+
lib/libboost_serialization.so.1.71
127127
lib/libboost_serialization.so.${PKGVERSION}
128128
lib/libboost_stacktrace_addr2line.a
129129
lib/libboost_stacktrace_addr2line.so
130130
lib/libboost_stacktrace_addr2line.so.1
131-
lib/libboost_stacktrace_addr2line.so.1.70
131+
lib/libboost_stacktrace_addr2line.so.1.71
132132
lib/libboost_stacktrace_addr2line.so.${PKGVERSION}
133133
${PLIST.backtrace}lib/libboost_stacktrace_backtrace.a
134134
${PLIST.backtrace}lib/libboost_stacktrace_backtrace.so
135135
${PLIST.backtrace}lib/libboost_stacktrace_backtrace.so.1
136-
${PLIST.backtrace}lib/libboost_stacktrace_backtrace.so.1.70
136+
${PLIST.backtrace}lib/libboost_stacktrace_backtrace.so.1.71
137137
${PLIST.backtrace}lib/libboost_stacktrace_backtrace.so.${BOOST_VERSION}
138138
lib/libboost_stacktrace_basic.a
139139
lib/libboost_stacktrace_basic.so
140140
lib/libboost_stacktrace_basic.so.1
141-
lib/libboost_stacktrace_basic.so.1.70
141+
lib/libboost_stacktrace_basic.so.1.71
142142
lib/libboost_stacktrace_basic.so.${PKGVERSION}
143143
lib/libboost_stacktrace_noop.a
144144
lib/libboost_stacktrace_noop.so
145145
lib/libboost_stacktrace_noop.so.1
146-
lib/libboost_stacktrace_noop.so.1.70
146+
lib/libboost_stacktrace_noop.so.1.71
147147
lib/libboost_stacktrace_noop.so.${PKGVERSION}
148148
lib/libboost_system.a
149149
lib/libboost_system.so
150150
lib/libboost_system.so.1
151-
lib/libboost_system.so.1.70
151+
lib/libboost_system.so.1.71
152152
lib/libboost_system.so.${PKGVERSION}
153153
lib/libboost_test_exec_monitor.a
154154
lib/libboost_thread.a
155155
lib/libboost_thread.so
156156
lib/libboost_thread.so.1
157-
lib/libboost_thread.so.1.70
157+
lib/libboost_thread.so.1.71
158158
lib/libboost_thread.so.${PKGVERSION}
159159
lib/libboost_timer.a
160160
lib/libboost_timer.so
161161
lib/libboost_timer.so.1
162-
lib/libboost_timer.so.1.70
162+
lib/libboost_timer.so.1.71
163163
lib/libboost_timer.so.${PKGVERSION}
164164
lib/libboost_type_erasure.a
165165
lib/libboost_type_erasure.so
166166
lib/libboost_type_erasure.so.1
167-
lib/libboost_type_erasure.so.1.70
167+
lib/libboost_type_erasure.so.1.71
168168
lib/libboost_type_erasure.so.${PKGVERSION}
169169
lib/libboost_unit_test_framework.a
170170
lib/libboost_unit_test_framework.so
171171
lib/libboost_unit_test_framework.so.1
172-
lib/libboost_unit_test_framework.so.1.70
172+
lib/libboost_unit_test_framework.so.1.71
173173
lib/libboost_unit_test_framework.so.${PKGVERSION}
174174
lib/libboost_wave.a
175175
lib/libboost_wave.so
176176
lib/libboost_wave.so.1
177-
lib/libboost_wave.so.1.70
177+
lib/libboost_wave.so.1.71
178178
lib/libboost_wave.so.${PKGVERSION}
179179
lib/libboost_wserialization.a
180180
lib/libboost_wserialization.so
181181
lib/libboost_wserialization.so.1
182-
lib/libboost_wserialization.so.1.70
182+
lib/libboost_wserialization.so.1.71
183183
lib/libboost_wserialization.so.${PKGVERSION}

devel/boost-libs/buildlink3.mk

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# $NetBSD: buildlink3.mk,v 1.49 2019/07/01 04:00:10 ryoon Exp $
1+
# $NetBSD: buildlink3.mk,v 1.50 2019/08/22 12:17:52 ryoon Exp $
22

33
BUILDLINK_TREE+= boost-libs
44

55
.if !defined(BOOST_LIBS_BUILDLINK3_MK)
66
BOOST_LIBS_BUILDLINK3_MK:=
77

88
# Use a dependency pattern that guarantees the proper ABI.
9-
BUILDLINK_API_DEPENDS.boost-libs+= boost-libs-1.70.*
10-
BUILDLINK_ABI_DEPENDS.boost-libs?= boost-libs>=1.70.0
9+
BUILDLINK_API_DEPENDS.boost-libs+= boost-libs-1.71.*
10+
BUILDLINK_ABI_DEPENDS.boost-libs?= boost-libs>=1.71.0
1111
BUILDLINK_PKGSRCDIR.boost-libs?= ../../devel/boost-libs
1212

1313
.include "../../mk/bsd.fast.prefs.mk"

devel/boost-mpi/PLIST

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
@comment $NetBSD: PLIST,v 1.2 2019/07/01 04:00:10 ryoon Exp $
1+
@comment $NetBSD: PLIST,v 1.3 2019/08/22 12:17:52 ryoon Exp $
22
lib/libboost_mpi.a
33
lib/libboost_mpi.so
44
lib/libboost_mpi.so.1
5-
lib/libboost_mpi.so.1.70
5+
lib/libboost_mpi.so.1.71
66
lib/libboost_mpi.so.${PKGVERSION}

devel/boost-mpi/buildlink3.mk

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# $NetBSD: buildlink3.mk,v 1.5 2019/07/01 09:09:52 jperkin Exp $
1+
# $NetBSD: buildlink3.mk,v 1.6 2019/08/22 12:17:52 ryoon Exp $
22

33
BUILDLINK_TREE+= boost-mpi
44

55
.if !defined(BOOST_MPI_BUILDLINK3_MK)
66
BOOST_MPI_BUILDLINK3_MK:=
77

88
# Use a dependency pattern that guarantees the proper ABI.
9-
BUILDLINK_API_DEPENDS.boost-mpi+= boost-mpi-1.70.*
10-
BUILDLINK_ABI_DEPENDS.boost-mpi+= boost-mpi-1.70.*
9+
BUILDLINK_API_DEPENDS.boost-mpi+= boost-mpi-1.71.*
10+
BUILDLINK_ABI_DEPENDS.boost-mpi+= boost-mpi-1.71.*
1111
BUILDLINK_PKGSRCDIR.boost-mpi?= ../../devel/boost-mpi
1212

1313
.include "../../devel/boost-libs/buildlink3.mk"

devel/py-boost/PLIST

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
@comment $NetBSD: PLIST,v 1.6 2019/07/01 04:00:10 ryoon Exp $
1+
@comment $NetBSD: PLIST,v 1.7 2019/08/22 12:17:53 ryoon Exp $
22
lib/libboost_numpy${PYVER}.a
33
lib/libboost_numpy${PYVER}.so
44
lib/libboost_numpy${PYVER}.so.1
5-
lib/libboost_numpy${PYVER}.so.1.70
5+
lib/libboost_numpy${PYVER}.so.1.71
66
lib/libboost_numpy${PYVER}.so.${PKGVERSION}
77
lib/libboost_python${PYVER}.a
88
lib/libboost_python${PYVER}.so
99
lib/libboost_python${PYVER}.so.1
10-
lib/libboost_python${PYVER}.so.1.70
10+
lib/libboost_python${PYVER}.so.1.71
1111
lib/libboost_python${PYVER}.so.${PKGVERSION}

devel/py-boost/buildlink3.mk

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $NetBSD: buildlink3.mk,v 1.14 2019/07/01 09:09:52 jperkin Exp $
1+
# $NetBSD: buildlink3.mk,v 1.15 2019/08/22 12:17:53 ryoon Exp $
22

33
BUILDLINK_TREE+= py-boost
44

@@ -8,8 +8,8 @@ PY_BOOST_BUILDLINK3_MK:=
88
.include "../../lang/python/pyversion.mk"
99

1010
# Use a dependency pattern that guarantees the proper ABI.
11-
BUILDLINK_API_DEPENDS.py-boost+= ${PYPKGPREFIX}-boost-1.70.*
12-
BUILDLINK_ABI_DEPENDS.py-boost+= ${PYPKGPREFIX}-boost-1.70.*
11+
BUILDLINK_API_DEPENDS.py-boost+= ${PYPKGPREFIX}-boost-1.71.*
12+
BUILDLINK_ABI_DEPENDS.py-boost+= ${PYPKGPREFIX}-boost-1.71.*
1313
BUILDLINK_PKGSRCDIR.py-boost?= ../../devel/py-boost
1414

1515
.include "../../devel/boost-headers/buildlink3.mk"

0 commit comments

Comments
 (0)