mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-27 02:11:58 +08:00
[boost-python] Allow feature python2 on Unix (#18465)
* [boost-python] Allow feature python2 on Unix * Update version record
This commit is contained in:
parent
bef043cfe1
commit
8d5a4268a2
@ -1,6 +1,7 @@
|
||||
{
|
||||
"name": "boost-python",
|
||||
"version": "1.76.0",
|
||||
"port-version": 1,
|
||||
"description": "Boost python module",
|
||||
"homepage": "https://github.com/boostorg/python",
|
||||
"supports": "!uwp & !(arm & windows) & !emscripten",
|
||||
@ -41,10 +42,7 @@
|
||||
"python2": {
|
||||
"description": "Build with Python2 support",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "python2",
|
||||
"platform": "windows"
|
||||
}
|
||||
"python2"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -27,6 +27,7 @@ else
|
||||
# Clear this array when moving to a new boost version
|
||||
$port_versions = @{
|
||||
#e.g. "asio" = 1;
|
||||
"python" = 1;
|
||||
}
|
||||
|
||||
$per_port_data = @{
|
||||
@ -57,7 +58,7 @@ $per_port_data = @{
|
||||
"supports" = "!uwp&!(arm&windows)&!emscripten";
|
||||
"features" = @{
|
||||
python2=@{
|
||||
dependencies=@(@{name="python2"; platform="windows"})
|
||||
dependencies=@("python2")
|
||||
description="Build with Python2 support"
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "789047e74a9db18c96ada8dc7addda4fc867360e",
|
||||
"version": "1.76.0",
|
||||
"port-version": 1
|
||||
},
|
||||
{
|
||||
"git-tree": "22a76d7b62c1e7eab693c827b1ca942acdb46a1b",
|
||||
"version": "1.76.0",
|
||||
|
@ -854,7 +854,7 @@
|
||||
},
|
||||
"boost-python": {
|
||||
"baseline": "1.76.0",
|
||||
"port-version": 0
|
||||
"port-version": 1
|
||||
},
|
||||
"boost-qvm": {
|
||||
"baseline": "1.76.0",
|
||||
|
Loading…
x
Reference in New Issue
Block a user