From f2c03e782f259ea2517b232049fc57de2b7f884b Mon Sep 17 00:00:00 2001 From: Duncan Bellamy Date: Sun, 24 Mar 2024 13:41:07 +0000 Subject: [PATCH] community/pebble: upgrade to 2.5.1 * https://github.com/letsencrypt/pebble/releases/tag/v2.5.1 --- community/pebble/APKBUILD | 8 +++----- community/pebble/uint.patch | 31 ------------------------------- 2 files changed, 3 insertions(+), 36 deletions(-) delete mode 100644 community/pebble/uint.patch diff --git a/community/pebble/APKBUILD b/community/pebble/APKBUILD index e535200ca01..4c372858fdb 100644 --- a/community/pebble/APKBUILD +++ b/community/pebble/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Duncan Bellamy # Maintainer: Duncan Bellamy pkgname=pebble -pkgver=2.4.0 -pkgrel=16 +pkgver=2.5.1 +pkgrel=0 pkgdesc="small RFC 8555 ACME test server not for a production certificate authority" url="https://github.com/letsencrypt/pebble" # riscv64 blocked by syscall dependency @@ -11,7 +11,6 @@ license="MPL-2.0" options="!check net" # no testsuite, needs to download dependencies makedepends="go" source="$pkgname-$pkgver.tar.gz::https://github.com/letsencrypt/pebble/archive/refs/tags/v$pkgver.tar.gz - uint.patch " export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}" @@ -37,6 +36,5 @@ package() { } sha512sums=" -bfd1c5756a124525b988499ecfd1f6cf3c11d2bbe6523cee3ba1c6dafd58b72fc99995768bb40cfe1e840886ef0f2b70550da4a87e8891da2d0f870b92fa7a78 pebble-2.4.0.tar.gz -33d4cc39608c05d22a45e6ec9d027646025cd99ee34ad6d32e9447203bdfae17ed020242fa5a8796d64a3ba9956a1f1dfc3dbab8e5abe4c95c9812e3b2281db0 uint.patch +626dccd22be56c0424f5040798bac09586095ce5b2d31c7f5b90a4f6e4dd5e8454046fcbf87303029e4f9f440cb5a0079bc3b36b0f0aa7dfcd15a9103e603a84 pebble-2.5.1.tar.gz " diff --git a/community/pebble/uint.patch b/community/pebble/uint.patch deleted file mode 100644 index fe97b8eeb4c..00000000000 --- a/community/pebble/uint.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- a/ca/ca.go -+++ b/ca/ca.go -@@ -35,7 +35,7 @@ - - chains []*chain - -- certValidityPeriod uint -+ certValidityPeriod uint64 - } - - type chain struct { -@@ -347,7 +347,7 @@ - return newCert, nil - } - --func New(log *log.Logger, db *db.MemoryStore, ocspResponderURL string, alternateRoots int, chainLength int, certificateValidityPeriod uint) *CAImpl { -+func New(log *log.Logger, db *db.MemoryStore, ocspResponderURL string, alternateRoots int, chainLength int, certificateValidityPeriod uint64) *CAImpl { - ca := &CAImpl{ - log: log, - db: db, ---- a/cmd/pebble/main.go -+++ b/cmd/pebble/main.go -@@ -29,7 +29,7 @@ - // Configure policies to deny certain domains - DomainBlocklist []string - -- CertificateValidityPeriod uint -+ CertificateValidityPeriod uint64 - } - } -