diff options
| author | Billy O'Neal <bion@microsoft.com> | 2020-12-16 11:45:49 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-16 11:45:49 -0800 |
| commit | d52fbe6a45c9ee0736edb42be4d688ae858bc215 (patch) | |
| tree | c925ba137c0ee54167f51e80b47617e76bff8b96 | |
| parent | 49972a664f0c7c145972ac46fd86158aed37dd7b (diff) | |
| download | vcpkg-d52fbe6a45c9ee0736edb42be4d688ae858bc215.tar.gz vcpkg-d52fbe6a45c9ee0736edb42be4d688ae858bc215.zip | |
[openexr] Remove python dependency of openexr. (#15147)
In https://github.com/microsoft/vcpkg/pull/14891 @Hoikas points out that the port depends on Python but the portfile.cmake explicitly disables it with `-DPYILMBASE_ENABLE=FALSE`.
| -rw-r--r-- | ports/openexr/CONTROL | 7 | ||||
| -rw-r--r-- | ports/openexr/vcpkg.json | 11 |
2 files changed, 11 insertions, 7 deletions
diff --git a/ports/openexr/CONTROL b/ports/openexr/CONTROL deleted file mode 100644 index 0a725a042..000000000 --- a/ports/openexr/CONTROL +++ /dev/null @@ -1,7 +0,0 @@ -Source: openexr -Version: 2.5.0 -Port-Version: 1 -Homepage: https://www.openexr.com/ -Description: OpenEXR is a high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications -Build-Depends: zlib, python3 -Supports: !uwp diff --git a/ports/openexr/vcpkg.json b/ports/openexr/vcpkg.json new file mode 100644 index 000000000..1d7f178bf --- /dev/null +++ b/ports/openexr/vcpkg.json @@ -0,0 +1,11 @@ +{ + "name": "openexr", + "version-string": "2.5.0", + "port-version": 2, + "description": "OpenEXR is a high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications", + "homepage": "https://www.openexr.com/", + "supports": "!uwp", + "dependencies": [ + "zlib" + ] +} |
