vcpkg/ports/libpq/vcpkg.json

196 lines
4.0 KiB
JSON
Raw Normal View History

{
"name": "libpq",
"version": "15.3",
[python3] Update to 3.11.4 (#31727) * [python3] Update to 3.11.3 * Force set PythonForBuild on windows * Set LD_LIBRARY_PATH on unix * Always use vcpkg_find_acquire_program(PYTHON3) on windows * Remove LD_LIBRARY_PATH shenanigans * [vtk] Parse python version from include folder * Fix static builds on windows * Pass --with-build-python on unix * [omniorb] Fix python version in patch * Resurrect rpath patch * [python3] fix usage * [gobject-introspection] don't hardcode python version * Update vcpkg_find_aquire_program(PYTHON3) This is also required for gobject-introspection * [paraview] don't hardcode python version * [vtk-dicom] don't hardcode python version * Update python in vcpkgTools.xml * Fix host arch detection in vcpkg_find_acquire_program(PYTHON3) * [libpq] Don't hardcode python version * [shiva] Don't pass python variables * [vcpkg-get-python-packages] Delete unused file, update hardcoded python version * [python3] update to 3.11.4 * [omniorb] Use PREPEND in vcpkg_add_to_path So that python from vcpkg is picked before system python * libpq quickfix * re-fix libpq * fix vcpkg-get-python-packages * Make windows 7 patch compatible with unix builds * Copy pyd files to bin Also fixes copying files that do not belong to current build tree * Fix static builds * Speculatively fix osx regression * Fix omniorb on unix * [gobject-introspection] fix windows builds * [vtk] Update vendored copy of mpi4py for python 3.11 support * [mdl-sdk] Fix python * [gobject-introspection] fix the fix of a fix... * Update versions * Undo changes in gobject-introspection and vcpkg_find_aquire_program(PYTHON3) --------- Co-authored-by: root <root@DESKTOP-UIPL9V8>
2023-08-08 04:19:53 +08:00
"port-version": 1,
"description": "The official database access API of postgresql",
"homepage": "https://www.postgresql.org/",
"license": "PostgreSQL",
"supports": "!uwp",
"dependencies": [
{
"name": "libpq",
"default-features": false,
"features": [
"bonjour"
],
"platform": "osx"
},
{
"name": "vcpkg-cmake-get-vars",
"host": true
},
{
"name": "vcpkg-pkgconfig-get-modules",
"host": true,
"platform": "windows & !mingw"
}
],
"default-features": [
"lz4",
"openssl",
"zlib"
],
"features": {
"all": {
"description": "Build all supported features",
"dependencies": [
{
"name": "libpq",
"features": [
"client",
"icu",
"xml",
"xslt",
"zstd"
]
},
{
"name": "libpq",
"features": [
"bonjour"
],
"platform": "osx"
},
{
"name": "libpq",
"features": [
"nls"
],
"platform": "!osx"
},
{
"name": "libpq",
"features": [
"readline"
],
"platform": "!windows"
},
{
"name": "libpq",
"features": [
"python"
],
"platform": "!android & !mingw"
},
{
"name": "libpq",
"features": [
"tcl"
],
"platform": "windows & !mingw & !arm"
}
]
},
"bonjour": {
"description": "Build with Bonjour support",
"supports": "osx"
},
"client": {
"description": "Build all client tools and libraries"
},
"icu": {
"description": "Build with support for the ICU library",
"dependencies": [
"icu"
]
},
"lz4": {
"description": "Use lz4",
"dependencies": [
"lz4"
]
},
"nls": {
"description": "Native Language Support",
"supports": "!osx",
"dependencies": [
"gettext",
{
"name": "gettext",
"host": true,
"features": [
"tools"
],
"platform": "!windows, mingw"
}
]
},
"openssl": {
"description": "support for encrypted client connections and random number generation on platforms that do not have \"/dev/urandom\" (except windows)",
"dependencies": [
"openssl"
]
},
"python": {
"$supports": "!(windows & (static | mingw))",
"description": "build the PL/Python server programming language",
"dependencies": [
{
"name": "libpq",
"default-features": false,
"features": [
"client"
]
},
"python3"
]
},
"readline": {
"description": "Use readline",
"supports": "!windows, mingw",
"dependencies": [
"readline"
]
},
"tcl": {
"$supports": "!(windows & (static | mingw))",
"description": "build the PL/Tcl procedural language",
"supports": "windows & !mingw",
"dependencies": [
{
"name": "libpq",
"default-features": false,
"features": [
"client"
]
},
"tcl"
]
},
"xml": {
"description": "Build with libxml",
"dependencies": [
{
"name": "libxml2",
"default-features": false
}
]
},
"xslt": {
"description": "Build with libxslt",
"dependencies": [
{
"name": "libpq",
"default-features": false,
"features": [
"xml"
]
},
"libxslt"
]
},
"zlib": {
"description": "Use zlib",
"dependencies": [
"zlib"
]
},
"zstd": {
"description": "Use zstd",
"dependencies": [
"zstd"
]
}
}
}