2020-07-14 03:30:10 +08:00
|
|
|
{
|
|
|
|
"name": "blend2d",
|
2023-07-06 02:26:03 +08:00
|
|
|
"version-date": "2023-06-16",
|
2023-09-07 04:03:41 +08:00
|
|
|
"port-version": 1,
|
2020-07-14 03:30:10 +08:00
|
|
|
"description": "Beta 2D Vector Graphics Powered by a JIT Compiler",
|
|
|
|
"homepage": "https://github.com/blend2d/blend2d",
|
|
|
|
"documentation": "https://blend2d.com/doc/index.html",
|
2022-04-06 02:19:17 +08:00
|
|
|
"license": "Zlib",
|
2023-05-31 03:02:36 +08:00
|
|
|
"supports": "!uwp & !wasm32",
|
2022-04-06 02:19:17 +08:00
|
|
|
"dependencies": [
|
|
|
|
{
|
|
|
|
"name": "vcpkg-cmake",
|
|
|
|
"host": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "vcpkg-cmake-config",
|
|
|
|
"host": true
|
|
|
|
}
|
|
|
|
],
|
[vcpkg format-manifest] Add convert-control flag (#12471)
* [vcpkg format-manifest] initial convert-control attempt
TODO: manifest comments! we should keep $directives
* Finalize x-format-manifest
First, fix Json::parse -- "\c", for any c, was incorrectly parsed.
It would emit the escaped character, and then parse the character, so
that `\b` would give you { '\b', 'b' }.
Second, canonicalize source paragraphs as we're parsing them. This found
an error in qt5 -- The `declarative` feature was listed twice, and we
now catch it, so I removed the second paragraph.
Add PlatformExpression::complexity to allow ordering platform
expressions in a somewhat reasonable way.
Notes:
- We allow `all_modules` as a feature name for back-compat with
paraview
- In order to actually convert CONTROL to vcpkg.json, we'd need to
rename the qt5 `default` feature.
- We need to add support for $directives in x-format-manifest
* fix qt5 port
* format
* fix compile
* fix tests for canonicalization
* Clean up code
* add error message for nothing to format
* add extra_info field
* add `const X&` overloads for `Object::insert[_or_replace]`
* fix compile
* simple CRs
* add tests
* format
* Fix mosquitto port file
also unmerge a line
* fail the tests on malformed manifest
* fix format_all
* fix coroutine port-version
* format manifests
2020-08-03 01:08:07 +08:00
|
|
|
"default-features": [
|
|
|
|
"jit",
|
|
|
|
"logging",
|
|
|
|
"tls"
|
|
|
|
],
|
2020-09-15 06:07:02 +08:00
|
|
|
"features": {
|
|
|
|
"jit": {
|
2023-04-18 06:44:48 +08:00
|
|
|
"description": "Default feature. Enables jit pipeline compilation.",
|
|
|
|
"dependencies": [
|
|
|
|
{
|
|
|
|
"name": "blend2d",
|
|
|
|
"default-features": false,
|
|
|
|
"platform": "windows"
|
|
|
|
}
|
|
|
|
]
|
2020-07-14 03:30:10 +08:00
|
|
|
},
|
2020-09-15 06:07:02 +08:00
|
|
|
"logging": {
|
2023-04-18 06:44:48 +08:00
|
|
|
"description": "Default feature. Enables logging.",
|
|
|
|
"dependencies": [
|
|
|
|
{
|
|
|
|
"name": "blend2d",
|
|
|
|
"default-features": false,
|
|
|
|
"features": [
|
|
|
|
"jit"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2020-07-14 03:30:10 +08:00
|
|
|
},
|
2020-09-15 06:07:02 +08:00
|
|
|
"tls": {
|
2023-04-18 06:44:48 +08:00
|
|
|
"description": "Default feature. Enables use of thread_local feature. Disable for platforms where thread local storage is expensive or not supported.",
|
|
|
|
"dependencies": [
|
|
|
|
{
|
|
|
|
"name": "blend2d",
|
|
|
|
"default-features": false,
|
|
|
|
"platform": "windows"
|
|
|
|
}
|
|
|
|
]
|
2020-07-14 03:30:10 +08:00
|
|
|
}
|
2020-09-15 06:07:02 +08:00
|
|
|
}
|
2020-07-14 03:30:10 +08:00
|
|
|
}
|