Skip to content

Commit

Permalink
[boost] fix boost-mpi dependency (#20681)
Browse files Browse the repository at this point in the history
* [boost] fix #20676

* update version
  • Loading branch information
yurybura authored Oct 13, 2021
1 parent fa55dc6 commit 1f5e8e4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
6 changes: 3 additions & 3 deletions ports/boost/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "boost",
"version": "1.77.0",
"port-version": 1,
"port-version": 2,
"description": "Peer-reviewed portable C++ source libraries",
"homepage": "https://boost.org",
"dependencies": [
Expand Down Expand Up @@ -137,7 +137,6 @@
},
"boost-program-options",
"boost-property-map",
"boost-property-map-parallel",
"boost-property-tree",
"boost-proto",
"boost-ptr-container",
Expand Down Expand Up @@ -202,7 +201,8 @@
"description": "Build with MPI support",
"dependencies": [
"boost-graph-parallel",
"boost-mpi"
"boost-mpi",
"boost-property-map-parallel"
]
}
}
Expand Down
4 changes: 2 additions & 2 deletions scripts/boost/generate-ports.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ else {
# Clear this array when moving to a new boost version
$portVersions = @{
#e.g. "boost-asio" = 1;
"boost" = 1;
"boost" = 2;
"boost-config" = 2;
"boost-gil" = 1;
"boost-iostreams" = 1;
Expand All @@ -39,7 +39,7 @@ $portData = @{
"features" = @{
"mpi" = @{
"description" = "Build with MPI support";
"dependencies" = @("boost-mpi", "boost-graph-parallel");
"dependencies" = @("boost-mpi", "boost-graph-parallel", "boost-property-map-parallel");
}
}
};
Expand Down
5 changes: 5 additions & 0 deletions versions/b-/boost.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "19bdc0542dd287e39768144ba2719723a7818750",
"version": "1.77.0",
"port-version": 2
},
{
"git-tree": "5fe225d8d76e70968014f7ddab050d7e520709e6",
"version": "1.77.0",
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@
},
"boost": {
"baseline": "1.77.0",
"port-version": 1
"port-version": 2
},
"boost-accumulators": {
"baseline": "1.77.0",
Expand Down

0 comments on commit 1f5e8e4

Please sign in to comment.