aboutsummaryrefslogtreecommitdiff
path: root/ports/boost-process
diff options
context:
space:
mode:
authoryurybura <yurybura@gmail.com>2020-05-13 20:26:05 +0300
committerGitHub <noreply@github.com>2020-05-13 10:26:05 -0700
commit24e8be5fcfddd0da98b58a63cd918849787fb06f (patch)
tree328e0bd25684f1392419547c1b3360e06ba5845b /ports/boost-process
parent597038559647776ee39d02dcf159da05d9342f1d (diff)
downloadvcpkg-24e8be5fcfddd0da98b58a63cd918849787fb06f.tar.gz
vcpkg-24e8be5fcfddd0da98b58a63cd918849787fb06f.zip
[boost] update to 1.73.0 (#11221)
* [boost] update to 1.73 * [ompl] remove dependency to boost-disjoint-sets * [libtorrent] include fixes from RC_1_2 branch * [liblas] fix boost headers * [freeopcua] fix std headers * [pcl] fix build with Boost 1.73.0 * [hpx] fix build with Boost 1.73.0 * [libmysql] fix conflict with C++20 header <version> * [boost-modular-build-helper] move port-specific b2 options to the file `<port_dir>/b2-options.cmake` [boost-python] support Python2 (fixes #3495) * [boost-python] remove Python executable from user-config * [libtorrent] update version after merge * [libtorrent] add boost-variant dependency
Diffstat (limited to 'ports/boost-process')
-rw-r--r--ports/boost-process/CONTROL2
-rw-r--r--ports/boost-process/async_pipe_header.patch37
-rw-r--r--ports/boost-process/portfile.cmake7
3 files changed, 3 insertions, 43 deletions
diff --git a/ports/boost-process/CONTROL b/ports/boost-process/CONTROL
index fd36ac087..e67c76f93 100644
--- a/ports/boost-process/CONTROL
+++ b/ports/boost-process/CONTROL
@@ -1,6 +1,6 @@
# Automatically generated by boost-vcpkg-helpers/generate-ports.ps1
Source: boost-process
-Version: 1.72.0-1
+Version: 1.73.0
Build-Depends: boost-algorithm, boost-asio, boost-config, boost-core, boost-filesystem (!uwp), boost-fusion, boost-iterator, boost-move, boost-optional, boost-system, boost-tokenizer, boost-type-index, boost-vcpkg-helpers, boost-winapi
Homepage: https://github.com/boostorg/process
Description: Boost process module
diff --git a/ports/boost-process/async_pipe_header.patch b/ports/boost-process/async_pipe_header.patch
deleted file mode 100644
index 7308f4b9d..000000000
--- a/ports/boost-process/async_pipe_header.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-diff --git a/include/boost/process/async_pipe.hpp b/include/boost/process/async_pipe.hpp
-index 101fe1d59..a562432c0 100644
---- a/include/boost/process/async_pipe.hpp
-+++ b/include/boost/process/async_pipe.hpp
-@@ -47,6 +47,8 @@ class async_pipe
- */
- typedef platform_specific handle_type;
-
-+ typedef typename handle_type::executor_type executor_type;
-+
- /** Construct a new async_pipe, does automatically open the pipe.
- * Initializes source and sink with the same io_context.
- * @note Windows creates a named pipe here, where the name is automatically generated.
-diff --git a/include/boost/process/detail/posix/async_pipe.hpp b/include/boost/process/detail/posix/async_pipe.hpp
-index 725a07890..a82c057b9 100644
---- a/include/boost/process/detail/posix/async_pipe.hpp
-+++ b/include/boost/process/detail/posix/async_pipe.hpp
-@@ -23,6 +23,7 @@ class async_pipe
- public:
- typedef int native_handle_type;
- typedef ::boost::asio::posix::stream_descriptor handle_type;
-+ typedef typename handle_type::executor_type executor_type;
-
- inline async_pipe(boost::asio::io_context & ios) : async_pipe(ios, ios) {}
-
-diff --git a/include/boost/process/detail/windows/async_pipe.hpp b/include/boost/process/detail/windows/async_pipe.hpp
-index 06d5f2d85..0b447f9b8 100644
---- a/include/boost/process/detail/windows/async_pipe.hpp
-+++ b/include/boost/process/detail/windows/async_pipe.hpp
-@@ -48,6 +48,7 @@ class async_pipe
- public:
- typedef ::boost::winapi::HANDLE_ native_handle_type;
- typedef ::boost::asio::windows::stream_handle handle_type;
-+ typedef typename handle_type::executor_type executor_type;
-
- async_pipe(boost::asio::io_context & ios) : async_pipe(ios, ios, make_pipe_name(), true) {}
- async_pipe(boost::asio::io_context & ios_source, boost::asio::io_context & ios_sink)
diff --git a/ports/boost-process/portfile.cmake b/ports/boost-process/portfile.cmake
index e07c778e8..ae80396e7 100644
--- a/ports/boost-process/portfile.cmake
+++ b/ports/boost-process/portfile.cmake
@@ -1,14 +1,11 @@
# Automatically generated by boost-vcpkg-helpers/generate-ports.ps1
-include(vcpkg_common_functions)
-
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/process
- REF boost-1.72.0
- SHA512 bc881bcfa817e848151d90a0837683b9833395a7f7b76de76c40c96615bb1da7d10c0dae84f6b70b47fdf762a62869cb1700730a74fe123901803128f9194a52
+ REF boost-1.73.0
+ SHA512 6f03f492ebe7b4ceb6ee15f50767c43200f0d0a9237df53d9f893964eed9d28d5784b591b348425d4972d47742fcc78049753ac28a79afd0ca13e2824b2f4690
HEAD_REF master
- PATCHES async_pipe_header.patch
)
include(${CURRENT_INSTALLED_DIR}/share/boost-vcpkg-helpers/boost-modular-headers.cmake)