* update dqlite to 1.16.7-2

This commit is contained in:
Alexander Baldeck 2024-11-17 09:55:50 +01:00
parent 907139f8a9
commit 02df64c4b3
2 changed files with 6 additions and 8 deletions

View File

@ -1,19 +1,18 @@
pkgbase = dqlite pkgbase = dqlite
pkgdesc = Distributed SQLite pkgdesc = Distributed SQLite
pkgver = 1.16.7 pkgver = 1.16.7
pkgrel = 1 pkgrel = 2
url = https://github.com/CanonicalLtd/dqlite url = https://github.com/CanonicalLtd/dqlite
arch = x86_64 arch = x86_64
arch = powerpc64le arch = powerpc64le
arch = powerpc64 arch = powerpc64
arch = powerpc arch = powerpc
arch = riscv64 arch = riscv64
license = LGPL3 license = LGPL-3.0-only
makedepends = tcl makedepends = tcl
makedepends = readline makedepends = readline
makedepends = zlib makedepends = zlib
depends = libuv depends = libuv
depends = raft
depends = sqlite depends = sqlite
options = strip options = strip
source = dqlite-1.16.7.tar.gz::https://github.com/canonical/dqlite/archive/v1.16.7.tar.gz source = dqlite-1.16.7.tar.gz::https://github.com/canonical/dqlite/archive/v1.16.7.tar.gz

View File

@ -1,15 +1,14 @@
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: Morten Linderud <foxboron@archlinux.org> # Maintainer: Morten Linderud <foxboron@archlinux.org>
# Contributor: Thomas Hipp <thomashipp at gmail dot com> # Contributor: Thomas Hipp <thomashipp at gmail dot com>
pkgname=dqlite pkgname=dqlite
pkgver=1.16.7 pkgver=1.16.7
pkgrel=1 pkgrel=2
pkgdesc="Distributed SQLite" pkgdesc="Distributed SQLite"
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64) arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url="https://github.com/CanonicalLtd/dqlite" url="https://github.com/CanonicalLtd/dqlite"
license=('LGPL3') license=('LGPL-3.0-only')
depends=('libuv' 'raft' 'sqlite') depends=('libuv' 'sqlite')
makedepends=('tcl' 'readline' 'zlib') makedepends=('tcl' 'readline' 'zlib')
options=(strip) options=(strip)
source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz") source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz")
@ -19,7 +18,7 @@ build() {
cd "$pkgname-$pkgver" cd "$pkgname-$pkgver"
autoreconf -i autoreconf -i
#PKG_CONFIG_PATH="/usr/lib/sqlite-replication/pkgconfig" ./configure --prefix=/usr #PKG_CONFIG_PATH="/usr/lib/sqlite-replication/pkgconfig" ./configure --prefix=/usr
./configure --prefix=/usr ./configure --prefix=/usr --enable-build-raft
make make
} }