diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-01-15 17:04:24 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-01-19 12:21:23 +0000 |
| commit | 8a90940ada0006cede2249f0686cb43194163658 (patch) | |
| tree | 261bb3042735bc3444be91fafff82cdd175f1598 /meta/recipes-support/nghttp2/nghttp2_1.58.0.bb | |
| parent | 712448ca8e61cee67f71c9019c07f8e10434d369 (diff) | |
| download | poky-8a90940ada0006cede2249f0686cb43194163658.tar.gz | |
nghttp2: upgrade 1.57.0 -> 1.58.0
Changelog:
============
-Fix build error when both clock_gettime and GetTickCount64 are available
-nghttpx: Shutdown h3 stream write if reset by a remote endpoint
-Bump golang.org/x/net from 0.15.0 to 0.17.0
-cmake: speed up warning option detection
-Update doc
-ngtcp2 has merged BBR and BBRv2 under BBR (fixes issue #1955)
-Bump ngtcp2
-Integration servertester h3
-Refactor character comparison
-nghttpx: Stricter transfer-encoding checks
-Configure cygwin
-windows: Fix warnings
-Prefer clock_gettime if CYGWIN defined
-Bump neverbleed
-Bump ngtcp2
-Bump neverbleed
(From OE-Core rev: 9b40ffc9766673111214c6a0551c3291032cfd8e)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/nghttp2/nghttp2_1.58.0.bb')
| -rw-r--r-- | meta/recipes-support/nghttp2/nghttp2_1.58.0.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-support/nghttp2/nghttp2_1.58.0.bb b/meta/recipes-support/nghttp2/nghttp2_1.58.0.bb new file mode 100644 index 0000000000..7b2ff4b778 --- /dev/null +++ b/meta/recipes-support/nghttp2/nghttp2_1.58.0.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | SUMMARY = "HTTP/2 C Library and tools" | ||
| 2 | HOMEPAGE = "https://nghttp2.org/" | ||
| 3 | SECTION = "libs" | ||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=764abdf30b2eadd37ce47dcbce0ea1ec" | ||
| 6 | |||
| 7 | SRC_URI = "\ | ||
| 8 | ${GITHUB_BASE_URI}/download/v${PV}/nghttp2-${PV}.tar.xz \ | ||
| 9 | file://0001-fetch-ocsp-response-use-python3.patch \ | ||
| 10 | " | ||
| 11 | SRC_URI[sha256sum] = "4a68a3040da92fd9872c056d0f6b0cd60de8410de10b578f8ade9ecc14d297e0" | ||
| 12 | |||
| 13 | inherit cmake manpages python3native github-releases | ||
| 14 | PACKAGECONFIG[manpages] = "" | ||
| 15 | |||
| 16 | # examples are never installed, and don't need to be built in the | ||
| 17 | # first place | ||
| 18 | EXTRA_OECMAKE = "-DENABLE_EXAMPLES=OFF -DENABLE_APP=OFF -DENABLE_HPACK_TOOLS=OFF -DENABLE_PYTHON_BINDINGS=OFF" | ||
| 19 | |||
| 20 | PACKAGES =+ "lib${BPN} ${PN}-proxy " | ||
| 21 | |||
| 22 | RDEPENDS:${PN} = "${PN}-proxy (>= ${PV})" | ||
| 23 | RDEPENDS:${PN}:class-native = "" | ||
| 24 | RDEPENDS:${PN}-proxy = "openssl python3-core python3-io python3-shell" | ||
| 25 | |||
| 26 | ALLOW_EMPTY:${PN} = "1" | ||
| 27 | FILES:${PN} = "" | ||
| 28 | FILES:lib${BPN} = "${libdir}/*${SOLIBS}" | ||
| 29 | FILES:${PN}-proxy = "${bindir}/nghttpx ${datadir}/${BPN}/fetch-ocsp-response" | ||
| 30 | |||
| 31 | BBCLASSEXTEND = "native nativesdk" | ||
