From 7ac022cfaecd632dccd0afcc7bc21f4cb08f5976 Mon Sep 17 00:00:00 2001 From: kth5 Date: Sat, 16 Nov 2024 11:34:01 +0100 Subject: [PATCH] * update raft to 0.22.1-1 --- raft/.SRCINFO | 15 ++++++++------- raft/.nvchecker.toml | 5 +++++ raft/PKGBUILD | 16 ++++++++-------- 3 files changed, 21 insertions(+), 15 deletions(-) create mode 100644 raft/.nvchecker.toml diff --git a/raft/.SRCINFO b/raft/.SRCINFO index fe43ce92dc..31f9ea56c6 100644 --- a/raft/.SRCINFO +++ b/raft/.SRCINFO @@ -1,17 +1,18 @@ pkgbase = raft - pkgdesc = C implementation of the Raft consensus protocol - pkgver = 0.18.1 - pkgrel = 1.1 - url = https://github.com/canonical/raft + pkgdesc = Asynchronous C implementation of the Raft consensus protocol + pkgver = 0.22.1 + pkgrel = 1 + url = https://raft.readthedocs.io/ arch = x86_64 arch = powerpc64le arch = powerpc64 arch = powerpc arch = riscv64 - license = LGPL3 + license = LGPL-3.0-only depends = libuv + depends = lz4 options = strip - source = raft-0.18.1.tar.gz::https://github.com/canonical/raft/archive/v0.18.1.tar.gz - sha256sums = 43e851352d99e6958c2a23805e25de8a726939e227e50ce596394e2306efc3b7 + source = raft-0.22.1.tar.gz::https://github.com/cowsql/raft/archive/v0.22.1.tar.gz + sha256sums = 385f91a0b542ebe8b81c8f8500310dcd575fd028ea0cd2ede8807fa920dcf604 pkgname = raft diff --git a/raft/.nvchecker.toml b/raft/.nvchecker.toml new file mode 100644 index 0000000000..7d3b890da1 --- /dev/null +++ b/raft/.nvchecker.toml @@ -0,0 +1,5 @@ +[raft] +source = "github" +github = "canonical/raft" +prefix = "v" +use_max_tag = true diff --git a/raft/PKGBUILD b/raft/PKGBUILD index af5018f8be..9d583d4d3f 100644 --- a/raft/PKGBUILD +++ b/raft/PKGBUILD @@ -3,16 +3,16 @@ # Contributor: Thomas Hipp pkgname=raft -pkgver=0.18.1 -pkgrel=1.1 -pkgdesc="C implementation of the Raft consensus protocol" +pkgver=0.22.1 +pkgrel=1 +pkgdesc="Asynchronous C implementation of the Raft consensus protocol" arch=(x86_64 powerpc64le powerpc64 powerpc riscv64) -url="https://github.com/canonical/raft" -license=('LGPL3') -depends=('libuv') +url="https://raft.readthedocs.io/" +license=('LGPL-3.0-only') +depends=('libuv' 'lz4') options=(strip) -source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz") -sha256sums=('43e851352d99e6958c2a23805e25de8a726939e227e50ce596394e2306efc3b7') +source=("$pkgname-$pkgver.tar.gz::https://github.com/cowsql/${pkgname}/archive/v${pkgver}.tar.gz") +sha256sums=('385f91a0b542ebe8b81c8f8500310dcd575fd028ea0cd2ede8807fa920dcf604') build() { cd "${pkgname}-${pkgver}"