aboutsummaryrefslogtreecommitdiff
path: root/scripts/boost/generate-ports.ps1
diff options
context:
space:
mode:
authoryurybura <yurybura@gmail.com>2020-12-24 04:16:42 +0300
committerGitHub <noreply@github.com>2020-12-23 17:16:42 -0800
commitf2c91b2d897ebbc7f4531ed46e6a650a582a92ff (patch)
tree4f4a8e74c65a534e9927a3983ac30e0db5d56319 /scripts/boost/generate-ports.ps1
parent6654632423844b0ff5441a6a99b4ae0ae259928f (diff)
downloadvcpkg-f2c91b2d897ebbc7f4531ed46e6a650a582a92ff.tar.gz
vcpkg-f2c91b2d897ebbc7f4531ed46e6a650a582a92ff.zip
[boost] update to 1.75.0 (#15090)
Diffstat (limited to 'scripts/boost/generate-ports.ps1')
-rw-r--r--scripts/boost/generate-ports.ps19
1 files changed, 4 insertions, 5 deletions
diff --git a/scripts/boost/generate-ports.ps1 b/scripts/boost/generate-ports.ps1
index b6cbdc98d..afa7d64da 100644
--- a/scripts/boost/generate-ports.ps1
+++ b/scripts/boost/generate-ports.ps1
@@ -1,7 +1,7 @@
[CmdletBinding()]
param (
$libraries = @(),
- $version = "1.74.0",
+ $version = "1.75.0",
$portsDir = $null
)
@@ -25,7 +25,6 @@ else
# Optionally clear this array when moving to a new boost version
$port_versions = @{
#e.g. "asio" = 1;
- "locale" = 3;
}
$per_port_data = @{
@@ -312,7 +311,7 @@ foreach ($library in $libraries)
if ($_ -match "aligned_storage") { "type_traits" }
elseif ($_ -match "noncopyable|ref|swap|get_pointer|checked_delete|visit_each") { "core" }
elseif ($_ -eq "type") { "core" }
- elseif ($_ -eq "concept") { "concept_check" }
+ elseif ($_ -match "concept|concept_archetype") { "concept_check" }
elseif ($_ -match "unordered_") { "unordered" }
elseif ($_ -match "cstdint|integer_fwd|integer_traits") { "integer" }
elseif ($_ -match "call_traits|operators|current_function|cstdlib|next_prior|compressed_pair") { "utility" }
@@ -332,7 +331,7 @@ foreach ($library in $libraries)
elseif ($_ -match "polymorphic_cast|implicit_cast") { "conversion" }
elseif ($_ -eq "nondet_random") { "random" }
elseif ($_ -eq "memory_order") { "atomic" }
- elseif ($_ -match "blank|blank_fwd|numeric_traits") { "detail" }
+ elseif ($_ -match "blank|blank_fwd|numeric_traits|fenv") { "detail" }
elseif ($_ -match "is_placeholder|mem_fn") { "bind" }
elseif ($_ -eq "exception_ptr") { "exception" }
elseif ($_ -match "multi_index_container|multi_index_container_fwd") { "multi_index" }
@@ -373,7 +372,7 @@ foreach ($library in $libraries)
-and `
(($library -notmatch "throw_exception") -or ($_ -notmatch "^exception"))`
-and `
- (($library -notmatch "iostreams") -or ($_ -notmatch "random"))`
+ (($library -notmatch "iostreams|math") -or ($_ -notmatch "random"))`
-and `
(($library -notmatch "utility|concept_check") -or ($_ -notmatch "iterator"))
} | % { $_ -replace "_","-" } | % {