mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-19 04:53:02 +08:00
[many ports] Add GnuTLS and its dependencies (#14242)
* [libgnutls] add new port * [libtasn1] add new port * [libtasn1] fix building * [libtasn1] enable autoconfig * libtasn1: fix building, again * libgnutls: make it build on Linux * libgnutls: Linux only, for now * libgnutls: remove unnecessary dependency * update version record * Clean up baseline and add supports * update version record * libtasn1: clear macOS build * libgnutls: libidn2 is actually needed * libgnutls: clear macOS build * Update ports/libgnutls/CONTROL * Update ports/libtasn1/CONTROL * Update versions/l-/libgnutls.json * Update versions/l-/libtasn1.json * [libtasn1] convert CONTROL to manifest * [libgnutls] convert CONTROL to manifest * [libgnutls] update versions * [libtasn1] update versions Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com> Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
This commit is contained in:
parent
eb41906384
commit
3c7a12bdf3
35
ports/libgnutls/portfile.cmake
Normal file
35
ports/libgnutls/portfile.cmake
Normal file
@ -0,0 +1,35 @@
|
||||
set(GNUTLS_BRANCH 3.6)
|
||||
set(GNUTLS_VERSION ${GNUTLS_BRANCH}.15)
|
||||
set(GNUTLS_HASH f757d1532198f44bcad7b73856ce6a05bab43f6fb77fcc81c59607f146202f73023d0796d3e1e7471709cf792c8ee7d436e19407e0601bc0bda2f21512b3b01c)
|
||||
|
||||
vcpkg_download_distfile(ARCHIVE
|
||||
URLS "https://www.gnupg.org/ftp/gcrypt/gnutls/v${GNUTLS_BRANCH}/gnutls-${GNUTLS_VERSION}.tar.xz"
|
||||
FILENAME "gnutls-${GNUTLS_VERSION}.tar.xz"
|
||||
SHA512 ${GNUTLS_HASH}
|
||||
)
|
||||
|
||||
vcpkg_extract_source_archive_ex(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
ARCHIVE ${ARCHIVE}
|
||||
REF ${GNUTLS_VERSION}
|
||||
)
|
||||
|
||||
vcpkg_configure_make(
|
||||
AUTOCONFIG
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
OPTIONS
|
||||
--disable-doc
|
||||
--disable-silent-rules
|
||||
--disable-tests
|
||||
--disable-maintainer-mode
|
||||
--disable-rpath
|
||||
--with-included-unistring
|
||||
--without-p11-kit
|
||||
)
|
||||
|
||||
vcpkg_install_make()
|
||||
vcpkg_fixup_pkgconfig()
|
||||
vcpkg_copy_pdbs()
|
||||
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
|
||||
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
13
ports/libgnutls/vcpkg.json
Normal file
13
ports/libgnutls/vcpkg.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "libgnutls",
|
||||
"version": "3.6.15",
|
||||
"description": "A secure communications library implementing the SSL, TLS and DTLS protocols",
|
||||
"homepage": "https://www.gnutls.org/",
|
||||
"supports": "!windows",
|
||||
"dependencies": [
|
||||
"gmp",
|
||||
"libidn2",
|
||||
"libtasn1",
|
||||
"nettle"
|
||||
]
|
||||
}
|
31
ports/libtasn1/portfile.cmake
Normal file
31
ports/libtasn1/portfile.cmake
Normal file
@ -0,0 +1,31 @@
|
||||
set(VERSION 4.16.0)
|
||||
|
||||
vcpkg_download_distfile(ARCHIVE
|
||||
URLS "https://ftp.gnu.org/gnu/libtasn1/libtasn1-${VERSION}.tar.gz"
|
||||
FILENAME "libtasn1-${VERSION}.tar.gz"
|
||||
SHA512 b356249535d5d592f9b59de39d21e26dd0f3f00ea47c9cef292cdd878042ea41ecbb7c8d2f02ac5839f5210092fe92a25acd343260ddf644887b031b167c2e71
|
||||
)
|
||||
|
||||
vcpkg_extract_source_archive_ex(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
ARCHIVE ${ARCHIVE}
|
||||
REF ${VERSION}
|
||||
)
|
||||
|
||||
# restore the default ac_cv_prog_cc_g flags, otherwise it fails to compile
|
||||
set(VCPKG_C_FLAGS "-g -O2")
|
||||
set(VCPKG_CXX_FLAGS "-g -O2")
|
||||
|
||||
vcpkg_configure_make(
|
||||
AUTOCONFIG
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
OPTIONS
|
||||
--disable-doc
|
||||
)
|
||||
|
||||
vcpkg_install_make()
|
||||
vcpkg_fixup_pkgconfig()
|
||||
vcpkg_copy_pdbs()
|
||||
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
|
||||
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
7
ports/libtasn1/vcpkg.json
Normal file
7
ports/libtasn1/vcpkg.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"name": "libtasn1",
|
||||
"version": "4.16.0",
|
||||
"description": "A secure communications library implementing the SSL, TLS and DTLS protocols",
|
||||
"homepage": "https://www.gnutls.org/",
|
||||
"supports": "!windows"
|
||||
}
|
@ -3036,6 +3036,10 @@
|
||||
"baseline": "1.1.0",
|
||||
"port-version": 0
|
||||
},
|
||||
"libgnutls": {
|
||||
"baseline": "3.6.15",
|
||||
"port-version": 0
|
||||
},
|
||||
"libgo": {
|
||||
"baseline": "3.1-1",
|
||||
"port-version": 0
|
||||
@ -3448,6 +3452,10 @@
|
||||
"baseline": "323",
|
||||
"port-version": 2
|
||||
},
|
||||
"libtasn1": {
|
||||
"baseline": "4.16.0",
|
||||
"port-version": 0
|
||||
},
|
||||
"libtheora": {
|
||||
"baseline": "1.2.0alpha1-20170719",
|
||||
"port-version": 2
|
||||
|
9
versions/l-/libgnutls.json
Normal file
9
versions/l-/libgnutls.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "089f1c103a3f2c52e6ae54e8956a98345502e286",
|
||||
"version": "3.6.15",
|
||||
"port-version": 0
|
||||
}
|
||||
]
|
||||
}
|
9
versions/l-/libtasn1.json
Normal file
9
versions/l-/libtasn1.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "bf9ef7a92f92205f0c883a302b7dae4eea9effee",
|
||||
"version": "4.16.0",
|
||||
"port-version": 0
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user