mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 01:51:39 +08:00
cf1759914d
1 Commits
Author | SHA1 | Message | Date | |
---|---|---|---|---|
Samuel Marks
|
daa7215f3d
|
[libcurl-simple-https] New port (#22917)
* [ports/libcurl-simple-https] Init * [versions/d-/dmon.json,versions/baseline.json] `./vcpkg x-add-version --all --overwrite-version` * [versions/l-/libcurl-simple-https.json] Add file forgotten from `git add` * [ports/libcurl-simple-https/portfile.cmake] Upgrade (uses latest FindCurl impl) * [versions/l-/libcurl-simple-https.json] `./vcpkg x-add-version --all --overwrite-version` * [ports/libcurl-simple-https/portfile.cmake] Upgrade to boilerplate conforming version * [versions/l-/libcurl-simple-https.json] `./vcpkg x-add-version --all --overwrite-version` * [ports/libcurl-simple-https/portfile.cmake] Upgrade to latest libcurl-simple-https * [versions/l-/libcurl-simple-https.json] `./vcpkg x-add-version --all --overwrite-version` * [ports/libcurl-simple-https] Upgrade to latest version (which actually exports targets… and renames to dashes not underscore) * [versions/baseline.json,versions/l-/libcurl-simple-https.json] `./vcpkg x-add-version --all --overwrite-version` + manually remove yesterdays * [ports/libcurl-simple-https] Upgrade to latest version (renames "_" to "-"; installs config file * [versions/baseline.json,versions/l-/libcurl-simple-https.json] `./vcpkg x-add-version --all --overwrite-version` + manually remove yesterdays * [ports/libcurl-simple-https/portfile.cmake] `configure_package_config_file` with `INSTALL_DESTINATION` from `"lib/cmake/${PROJECT_NAME}"` to `"share/${PROJECT_NAME}"` * [versions/l-/libcurl-simple-https.json] ./vcpkg x-add-version --all --overwrite-version * [ports/libcurl-simple-https/portfile.cmake] Manual `install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake" DESTINATION "share/${LIBRARY_NAME}")` because `configure_package_config_file` `INSTALL_DESTINATION` does not seem to actually `install`… * [versions/l-/libcurl-simple-https.json] ./vcpkg x-add-version --all --overwrite-version * [ports/libcurl-simple-https/portfile.cmake] `install` ""${PROJECT_NAME}Config.cmake" to "share/${PROJECT_NAME}/${LIBRARY_NAME}" * [versions/l-/libcurl-simple-https.json] ./vcpkg x-add-version --all --overwrite-version * [ports/libcurl-simple-https] Upgrade to latest version (which should support vcpkg install hierarchy) * [versions/baseline.json,versions/l-/libcurl-simple-https.json] `./vcpkg x-add-version --all --overwrite-version` + manually remove old * [ports/libcurl-simple-https/portfile.cmake] `file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")` * `./vcpkg x-add-version --all --overwrite-version` * [ports/libcurl-simple-https/portfile.cmake] Use `ARCHIVE` and `LIBRARY` DESTINATION * `./vcpkg x-add-version --all --overwrite-version` * [ports/libcurl-simple-https/portfile.cmake] Remove `file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")` * `./vcpkg x-add-version --all --overwrite-version` * [ports/libcurl-simple-https/portfile.cmake] file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" ${CURRENT_PACKAGES_DIR}/debug/share") * `./vcpkg x-add-version --all --overwrite-version` * [ports/libcurl-simple-https/portfile.cmake] file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" ${CURRENT_PACKAGES_DIR}/debug/share") * `./vcpkg x-add-version --all --overwrite-version` * [ports/libcurl-simple-https/portfile.cmake] `install` `"${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake` to `DESTINATION` `"${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME}"` not `TYPE "DATA"` * `./vcpkg x-add-version --all --overwrite-version` * [ports/libcurl-simple-https/portfile.cmake] [CMakeLists.txt] Bump `cmake_minimum_required` from `3.0` to `3.3`; [libcurl-simple-https/curl_simple_https.c] Use `calloc`; add debug statements * [ports/libcurl-simple-https/portfile.cmake] [libcurl-simple-https/curl_simple_https.c] No alt option set when body is NULL * `./vcpkg x-add-version --all --overwrite-version` * [ports/libcurl-simple-https/portfile.cmake] [libcurl-simple-https/curl_simple_https.c] More debug statements * `./vcpkg x-add-version --all --overwrite-version` * [ports/libcurl-simple-https/portfile.cmake] [libcurl-simple-https/curl_simple_https.c] More debug statements * `./vcpkg x-add-version --all --overwrite-version` * [ports/libcurl-simple-https/portfile.cmake] [libcurl-simple-https/curl_simple_https.c] More debug statements * [ports/libcurl-simple-https/portfile.cmake] [libcurl-simple-https/curl_simple_https.c] Replace `assert` with `if` for `curl_url_get` * `./vcpkg x-add-version --all --overwrite-version` * `./vcpkg x-add-version --all --overwrite-version` * [ports/libcurl-simple-https/portfile.cmake] [libcurl-simple-https/curl_simple_https.c] Set `CURLOPT_READDATA`, `CURLOPT_READFUNCTION`, `CURLOPT_POSTFIELDSIZE`: even with an empty HTTPS POST * `./vcpkg x-add-version --all --overwrite-version` |