vcpkg/scripts/boost/generate-ports.ps1
autoantwort 761c81d433
[boost] update to 1.76.0 (#17335)
* [boost] update generator script for boost 1.76

* [boost] update ports to 1.76.0 (run generator)

* [boost] fix windows build?

* [quantlib] update and fix mac build

* [symengine] update and fix build

* [avro-cpp] update to latest master and fix windows build

* [folly] update to 2021.05.31.00

* [fbthrift, fizz, wangle] update to v2021.05.31.00 and fix build

* [proxygen] update to version 2021.05.31.00

* [fizz, proxygen, fbthrift] fix sodium target

* [proxygen] also works on macOS

* [quantlib] use fix from upstream to fix mac build

* [symengine] minimize patch file and fix deprecation warning

* [folly,proxygen,wangle,fizz,fbthrift] update to 2021.06.14.00

* [fbthrift] remove unnecessary dependency rsocket

I couldn't find any information that this dependency exists. The term is used in the code, but not in the context of a dependency

* [fizz,fbthrift] fix zlib dependency

* [fbthrift] pass required flex executable to cmake configure

* add version files

* [boost] generate-ports.ps1: Apply code review

* [boost] changes from new version of generate-ports script

* update version files

* [boost] generate-ports.ps1: Apply code review
2021-07-07 12:31:06 -07:00

478 lines
16 KiB
PowerShell

[CmdletBinding()]
param (
$libraries = @(),
$version = "1.76.0",
$portsDir = $null
)
$ErrorActionPreference = 'Stop'
$scriptsDir = split-path -parent $MyInvocation.MyCommand.Definition
if ($null -eq $portsDir)
{
$portsDir = "$scriptsDir/../../ports"
}
if ($IsWindows)
{
$vcpkg = "$scriptsDir/../../vcpkg.exe"
$curl = "curl.exe"
}
else
{
$vcpkg = "$scriptsDir/../../vcpkg"
$curl = "curl"
}
# Clear this array when moving to a new boost version
$port_versions = @{
#e.g. "asio" = 1;
}
$per_port_data = @{
"asio" = @{ "supports" = "!emscripten" };
"beast" = @{ "supports" = "!emscripten" };
"fiber" = @{ "supports" = "!osx&!uwp&!arm&!emscripten" };
"filesystem" = @{ "supports" = "!uwp" };
"iostreams" = @{ "supports" = "!uwp" };
"context" = @{ "supports" = "!uwp&!emscripten" };
"stacktrace" = @{ "supports" = "!uwp" };
"coroutine" = @{ "supports" = "!arm&!uwp&!emscripten" };
"coroutine2" = @{ "supports" = "!emscripten" };
"test" = @{ "supports" = "!uwp" };
"wave" = @{ "supports" = "!uwp" };
"log" = @{ "supports" = "!uwp&!emscripten" };
"locale" = @{
"supports" = "!uwp";
"features" = @{
icu=@{
dependencies=@("icu")
description="ICU backend for Boost.Locale"
}
}
};
"parameter-python" = @{ "supports" = "!emscripten" };
"process" = @{ "supports" = "!emscripten" };
"python" = @{
"supports" = "!uwp&!(arm&windows)&!emscripten";
"features" = @{
python2=@{
dependencies=@(@{name="python2"; platform="windows"})
description="Build with Python2 support"
}
}
};
"regex" = @{
"features" = @{
icu=@{
dependencies=@("icu")
description="ICU backend for Boost.Regex"
}
}
}
}
function TransformReference()
{
param (
[string]$library
)
if ($per_port_data.Contains($library) -and $per_port_data[$library].Contains('supports'))
{
@{name="boost-$library"; platform=$per_port_data[$library]['supports']}
}
else
{
"boost-$library"
}
}
function Generate()
{
param (
[string]$Name,
[string]$PortName,
[string]$Hash,
[bool]$NeedsBuild,
$Depends = @()
)
New-Item -ItemType "Directory" "$portsDir/boost-$PortName" -erroraction SilentlyContinue | out-null
$controlLines = @{
name="boost-$PortName"; `
"version"=$version; `
dependencies=$Depends; `
homepage="https://github.com/boostorg/$Name"; `
description="Boost $Name module" `
}
if ($port_versions.Contains($PortName))
{
$controlLines["port-version"] = $port_versions[$PortName]
}
if ($per_port_data.Contains($PortName))
{
$controlLines += $per_port_data[$PortName]
}
$controlLines | ConvertTo-Json -Depth 10 -Compress | out-file -enc ascii "$portsDir/boost-$PortName/vcpkg.json"
& $vcpkg format-manifest "$portsDir/boost-$PortName/vcpkg.json"
$portfileLines = @(
"# Automatically generated by scripts/boost/generate-ports.ps1"
""
)
if ($PortName -eq "system")
{
$portfileLines += @(
"vcpkg_buildpath_length_warning(37)"
""
)
}
$portfileLines += @(
"vcpkg_from_github("
" OUT_SOURCE_PATH SOURCE_PATH"
" REPO boostorg/$Name"
" REF boost-$version"
" SHA512 $Hash"
" HEAD_REF master"
)
[Array]$patches = Get-Item -Path "$portsDir/boost-$PortName/*.patch"
if ($null -eq $patches -or $patches.Count -eq 0)
{
}
elseif ($patches.Count -eq 1)
{
$portfileLines += @(" PATCHES $($patches.name)")
}
else
{
$portfileLines += @(" PATCHES")
foreach ($patch in $patches)
{
$portfileLines += @(" $($patch.name)")
}
}
$portfileLines += @(
")"
""
)
if (Test-Path "$scriptsDir/post-source-stubs/$PortName.cmake")
{
$portfileLines += @(get-content "$scriptsDir/post-source-stubs/$PortName.cmake")
}
if ($NeedsBuild)
{
$portfileLines += @(
"if(NOT DEFINED CURRENT_HOST_INSTALLED_DIR)"
" message(FATAL_ERROR `"boost-$PortName requires a newer version of vcpkg in order to build.`")"
"endif()"
"include(`${CURRENT_HOST_INSTALLED_DIR}/share/boost-build/boost-modular-build.cmake)"
)
# b2-options.cmake contains port-specific build options
if (Test-Path "$portsDir/boost-$PortName/b2-options.cmake")
{
$portfileLines += @(
"boost_modular_build("
" SOURCE_PATH `${SOURCE_PATH}"
" BOOST_CMAKE_FRAGMENT `"`${CMAKE_CURRENT_LIST_DIR}/b2-options.cmake`""
")"
)
}
elseif (Test-Path "$portsDir/boost-$PortName/b2-options.cmake.in")
{
$portfileLines += @(
'configure_file('
' "${CMAKE_CURRENT_LIST_DIR}/b2-options.cmake.in"'
' "${CURRENT_BUILDTREES_DIR}/vcpkg-b2-options.cmake"'
' @ONLY'
')'
'boost_modular_build('
' SOURCE_PATH ${SOURCE_PATH}'
' BOOST_CMAKE_FRAGMENT "${CURRENT_BUILDTREES_DIR}/vcpkg-b2-options.cmake"'
')'
)
}
else
{
$portfileLines += @(
"boost_modular_build(SOURCE_PATH `${SOURCE_PATH})"
)
}
}
$portfileLines += @(
"include(`${CURRENT_INSTALLED_DIR}/share/boost-vcpkg-helpers/boost-modular-headers.cmake)"
"boost_modular_headers(SOURCE_PATH `${SOURCE_PATH})"
)
if (Test-Path "$scriptsDir/post-build-stubs/$PortName.cmake")
{
$portfileLines += @(get-content "$scriptsDir/post-build-stubs/$PortName.cmake")
}
$portfileLines += @("")
Set-Content -LiteralPath "$portsDir/boost-$PortName/portfile.cmake" `
-Value "$($portfileLines -join "`r`n")" `
-Encoding UTF8 `
-NoNewline
}
if (!(Test-Path "$scriptsDir/boost"))
{
"Cloning boost..."
pushd $scriptsDir
try
{
git clone https://github.com/boostorg/boost --branch boost-$version
}
finally
{
popd
}
}
else
{
pushd $scriptsDir/boost
try
{
git fetch
git checkout -f boost-$version
}
finally
{
popd
}
}
$libraries_found = Get-ChildItem $scriptsDir/boost/libs -directory | % name | % {
if ($_ -match "numeric")
{
"numeric_conversion"
"interval"
"odeint"
"ublas"
"safe_numerics"
}
elseif ($_ -eq "headers")
{
}
else
{
$_
}
}
New-Item -ItemType "Directory" $scriptsDir/downloads -erroraction SilentlyContinue | out-null
if ($libraries.Length -eq 0)
{
$libraries = $libraries_found
}
$libraries_in_boost_port = @()
foreach ($library in $libraries)
{
"Handling boost/$library..."
$archive = "$scriptsDir/downloads/$library-boost-$version.tar.gz"
if (!(Test-Path $archive))
{
"Downloading boost/$library..."
& $curl -L "https://github.com/boostorg/$library/archive/boost-$version.tar.gz" --output "$scriptsDir/downloads/$library-boost-$version.tar.gz"
}
$hash = & $vcpkg --x-wait-for-lock hash $archive
# remove prefix "Waiting to take filesystem lock on <path>/.vcpkg-root... "
if($hash -is [Object[]])
{
$hash = $hash[1]
}
$unpacked = "$scriptsDir/libs/$library-boost-$version"
if (!(Test-Path $unpacked))
{
"Unpacking boost/$library..."
New-Item -ItemType "Directory" $scriptsDir/libs -erroraction SilentlyContinue | out-null
pushd $scriptsDir/libs
try
{
cmake -E tar xf $archive
}
finally
{
popd
}
}
pushd $unpacked
try
{
$groups = Get-ChildItem -Recurse -Path include,src -File `
| ? { $_ -is [System.IO.FileInfo] } `
| % { Get-Content -LiteralPath $_ } `
| ? { $_ -match 'include [<"]boost/' }
$groups = $groups | % {
$_ `
-replace "boost/numeric/conversion/","boost/numeric_conversion/" `
-replace "boost/functional/hash.hpp","boost/container_hash/hash.hpp" `
-replace "boost/detail/([^/]+)/","boost/`$1/" `
-replace " *# *include *[<`"]boost/([a-zA-Z0-9\._]*)[/>`"].*", "`$1" `
-replace "/|\.hp?p?| ",""
} | group | % name | % {
# mappings
Write-Verbose "${library}: $_"
if ($_ -match "aligned_storage") { "type_traits" }
elseif ($_ -match "noncopyable|ref|swap|get_pointer|checked_delete|visit_each") { "core" }
elseif ($_ -eq "type") { "core" }
elseif ($_ -match "concept|concept_archetype") { "concept_check" }
elseif ($_ -match "unordered_") { "unordered" }
elseif ($_ -match "integer_fwd|integer_traits") { "integer" }
elseif ($_ -match "call_traits|operators|current_function|cstdlib|next_prior|compressed_pair") { "utility" }
elseif ($_ -match "^version|^workaround|^config|cstdint|cxx11_char_types|limits") { "config" }
elseif ($_ -match "enable_shared_from_this|shared_ptr|make_shared|make_unique|intrusive_ptr|scoped_ptr|pointer_cast|pointer_to_other|weak_ptr|shared_array|scoped_array") { "smart_ptr" }
elseif ($_ -match "iterator_adaptors|generator_iterator|pointee") { "iterator" }
elseif ($_ -eq "regex_fwd") { "regex" }
elseif ($_ -eq "make_default") { "convert" }
elseif ($_ -eq "foreach_fwd") { "foreach" }
elseif ($_ -eq "cerrno") { "system" }
elseif ($_ -eq "circular_buffer_fwd") { "circular_buffer" }
elseif ($_ -eq "archive") { "serialization" }
elseif ($_ -match "none|none_t") { "optional" }
elseif ($_ -match "cstdfloat|math_fwd") { "math" }
elseif ($_ -eq "cast") { "conversion"; "numeric_conversion" } # DEPRECATED header file, includes <boost/polymorphic_cast.hpp> and <boost/numeric/conversion/cast.hpp>
elseif ($_ -match "polymorphic_cast|implicit_cast") { "conversion" }
elseif ($_ -eq "nondet_random") { "random" }
elseif ($_ -eq "memory_order") { "atomic" }
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" }
elseif ($_ -eq "lexical_cast") { "lexical_cast"; "math" }
elseif ($_ -match "token_iterator|token_functions") { "tokenizer" }
elseif ($_ -eq "numeric" -and $library -notmatch "numeric_conversion|interval|odeint|ublas") { "numeric_conversion"; "interval"; "odeint"; "ublas" }
elseif ($_ -eq "io_fwd") { "io" }
else { $_ }
} | group | % name | ? {
$_ -ne $library
}
#"`nFor ${library}:"
" [known] " + $($groups | ? { $libraries_found -contains $_ })
" [unknown] " + $($groups | ? { $libraries_found -notcontains $_ })
$deps = @($groups | ? { $libraries_found -contains $_ })
$deps = @($deps | ? {
# Boost contains cycles, so remove a few dependencies to break the loop.
(($library -notmatch "core|assert|mpl|detail|throw_exception|type_traits|^exception") -or ($_ -notmatch "utility")) `
-and `
(($library -notmatch "assert") -or ($_ -notmatch "integer"))`
-and `
(($library -notmatch "range") -or ($_ -notmatch "algorithm"))`
-and `
(($library -ne "config") -or ($_ -notmatch "integer"))`
-and `
(($library -notmatch "multiprecision") -or ($_ -notmatch "random|math"))`
-and `
(($library -notmatch "lexical_cast") -or ($_ -notmatch "math"))`
-and `
(($library -notmatch "functional") -or ($_ -notmatch "function"))`
-and `
(($library -notmatch "detail") -or ($_ -notmatch "static_assert|integer|mpl|type_traits"))`
-and `
($_ -notmatch "mpi")`
-and `
(($library -notmatch "spirit") -or ($_ -notmatch "serialization"))`
-and `
(($library -notmatch "throw_exception") -or ($_ -notmatch "^exception"))`
-and `
(($library -notmatch "iostreams|math") -or ($_ -notmatch "random"))`
-and `
(($library -notmatch "utility|concept_check") -or ($_ -notmatch "iterator"))
} | % { $_ -replace "_","-" } | % { TransformReference $_ })
$deps += @("boost-vcpkg-helpers")
$needsBuild = $false
if (((Test-Path $unpacked/build/Jamfile.v2) -or (Test-Path $unpacked/build/Jamfile)) -and $library -notmatch "(metaparse|graph_parallel|function_types)")
{
$deps += @(
@{ name="boost-build"; host=$True },
@{ name="boost-modular-build-helper"; host=$True }
)
$needsBuild = $true
}
if ($library -eq "python")
{
$deps += @("python3")
$needsBuild = $true
}
elseif ($library -eq "iostreams")
{
$deps += @("zlib", "bzip2", "liblzma", "zstd")
}
elseif ($library -eq "locale")
{
$deps += @(@{ name="libiconv"; platform="!uwp&!windows&!mingw" }, "boost-system")
}
elseif ($library -eq "asio")
{
$deps += @("openssl")
}
elseif ($library -eq "mpi")
{
$deps += @("mpi")
}
$portName = $library -replace "_","-"
Generate `
-Name $library `
-PortName $portName `
-Hash $hash `
-Depends $deps `
-NeedsBuild $needsBuild
$libraries_in_boost_port += @(TransformReference $portName)
}
finally
{
popd
}
}
if ($libraries_in_boost_port.length -gt 1) {
# Generate master boost control file which depends on each individual library
# mpi is excluded due to it having a dependency on msmpi/openmpi
$boostDependsList = $libraries_in_boost_port | ? { $_ -notmatch "boost-mpi" }
@{
name = "boost";
"version" = $version;
"port-version" = $port_versions.Contains('boost') ? $port_versions['boost'] : 0;
homepage = "https://boost.org";
description = "Peer-reviewed portable C++ source libraries";
dependencies = $boostDependsList;
features = @(
@{
name = "mpi";
description = "Build with MPI support";
dependencies = @("boost-mpi");
}
);
} `
| ConvertTo-Json -Depth 10 -Compress `
| Out-File -Encoding UTF8 -FilePath "$portsDir/boost/vcpkg.json"
& $vcpkg format-manifest "$portsDir/boost/vcpkg.json"
Set-Content -LiteralPath "$portsDir/boost/portfile.cmake" `
-Value "set(VCPKG_POLICY_EMPTY_PACKAGE enabled)`n" `
-Encoding UTF8 `
-NoNewline
}