* update raft to 0.22.1-1

This commit is contained in:
Alexander Baldeck 2024-11-16 11:34:01 +01:00
parent ebfedf00ed
commit 7ac022cfae
3 changed files with 21 additions and 15 deletions

View File

@ -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

5
raft/.nvchecker.toml Normal file
View File

@ -0,0 +1,5 @@
[raft]
source = "github"
github = "canonical/raft"
prefix = "v"
use_max_tag = true

View File

@ -3,16 +3,16 @@
# Contributor: Thomas Hipp <thomashipp at gmail dot com>
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}"