nghttp2: Update to 1.57.0

This commit is contained in:
Christoph Reiter 2023-10-11 08:02:33 +02:00
parent 6241bfde92
commit 9eb172fdb6

View File

@ -2,8 +2,8 @@
pkgbase=nghttp2 pkgbase=nghttp2
pkgname=("nghttp2" "libnghttp2" "libnghttp2-devel") pkgname=("nghttp2" "libnghttp2" "libnghttp2-devel")
pkgver=1.56.0 pkgver=1.57.0
pkgrel=2 pkgrel=1
pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library' pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
arch=(i686 x86_64) arch=(i686 x86_64)
url='https://nghttp2.org/' url='https://nghttp2.org/'
@ -15,12 +15,16 @@ depends=("jansson"
"gcc-libs") "gcc-libs")
makedepends=('jansson-devel' 'libevent-devel' 'openssl-devel' 'libcares-devel' 'zlib-devel' 'autotools' 'gcc' 'make') makedepends=('jansson-devel' 'libevent-devel' 'openssl-devel' 'libcares-devel' 'zlib-devel' 'autotools' 'gcc' 'make')
license=('spdx:MIT') license=('spdx:MIT')
source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-${pkgver}.tar.xz) source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-${pkgver}.tar.xz
sha256sums=('65eee8021e9d3620589a4a4e91ce9983d802b5229f78f3313770e13f4d2720e9') "https://github.com/nghttp2/nghttp2/commit/4262c901481213d82e2a5ab0d33ce4b082572d72.patch")
sha256sums=('9210b0113109f43be526ac5835d58a701411821a4d39e155c40d67c40f47a958'
'bfdfc189f47ea3b4c2ae1818b38ecc696641bb437ef333f9d06b7d7813d17acf')
prepare() { prepare() {
cd nghttp2-${pkgver} cd nghttp2-${pkgver}
patch -Np1 -i "${srcdir}/4262c901481213d82e2a5ab0d33ce4b082572d72.patch"
autoreconf -fiv autoreconf -fiv
} }