Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix py-lxml #66

Merged
merged 3 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ports/py-lxml/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ vcpkg_from_pythonhosted(
SHA512 7f8a3717645893bc6f790cc9adfb8fdab91c352dc4dc23c0ccb4af9a0d138acf9ef5054e9786af497955f10079e9242dbd63ea9ac39c33bfd71ca2fe4ef4a7c0
)

if(VCPKG_TARGET_IS_WINDOWS)
set(ENV{INCLUDE} "${CURRENT_INSTALLED_DIR}/include;$ENV{INCLUDE}")
endif()

vcpkg_python_build_and_install_wheel(SOURCE_PATH "${SOURCE_PATH}")

vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE.txt")
Expand Down
1 change: 1 addition & 0 deletions ports/py-lxml/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "py-lxml",
"version": "5.3.0",
"port-version": 1,
"description": "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.",
"homepage": "https://lxml.de/",
"dependencies": [
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
},
"py-lxml": {
"baseline": "5.3.0",
"port-version": 0
"port-version": 1
},
"py-markupsafe": {
"baseline": "3.0.2",
Expand Down
5 changes: 5 additions & 0 deletions versions/p-/py-lxml.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "a4fdde6a73b528aa740f6856bb432dfa915ca6e0",
"version": "5.3.0",
"port-version": 1
},
{
"git-tree": "4484db34ac967ae57178fecde9d5b3cd94a551cf",
"version": "5.3.0",
Expand Down
Loading