bump to v0.3.0

This commit is contained in:
testuser 2024-12-02 15:38:33 +09:00
parent 72e67fe195
commit 65765b4d2e
2 changed files with 5 additions and 4 deletions

View file

@ -1,6 +1,6 @@
pkgbase = xdbm
pkgdesc = Cross device backup manager, which manages backups on several storages mounted on multiple devices.
pkgver = 0.2.1
pkgver = 0.3.0
pkgrel = 1
url = https://github.com/qwjyh/xdbm
arch = i686
@ -10,7 +10,8 @@ pkgbase = xdbm
license = MIT OR Apache-1.0
makedepends = cargo
depends = libgit2
source = xdbm-0.2.1.tar.gz::https://static.crates.io/crates/xdbm/xdbm-0.2.1.crate
options = !lto
source = xdbm-0.3.0.tar.gz::https://static.crates.io/crates/xdbm/xdbm-0.3.0.crate
sha512sums = SKIP
pkgname = xdbm

View file

@ -1,7 +1,7 @@
# Maintainer: qwjyh <urataw421@gmail.com>
pkgname=xdbm
pkgver=0.2.1
pkgver=0.3.0
pkgrel=1
depends=('libgit2')
makedepends=('cargo')
@ -9,6 +9,7 @@ arch=('i686' 'x86_64' 'armv6h' 'armv7h')
pkgdesc="Cross device backup manager, which manages backups on several storages mounted on multiple devices."
url="https://github.com/qwjyh/xdbm"
source=("$pkgname-$pkgver.tar.gz::https://static.crates.io/crates/$pkgname/$pkgname-$pkgver.crate")
options=(!lto)
license=('MIT OR Apache-1.0')
sha512sums=('SKIP')
@ -21,7 +22,6 @@ prepare() {
build() {
cd "$pkgname-$pkgver" || exit
export CFLAGS+=' -ffat-lto-objects'
cargo build --frozen --release --all-features
}