bump to v0.3.0
This commit is contained in:
parent
72e67fe195
commit
65765b4d2e
2 changed files with 5 additions and 4 deletions
5
.SRCINFO
5
.SRCINFO
|
@ -1,6 +1,6 @@
|
||||||
pkgbase = xdbm
|
pkgbase = xdbm
|
||||||
pkgdesc = Cross device backup manager, which manages backups on several storages mounted on multiple devices.
|
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
|
pkgrel = 1
|
||||||
url = https://github.com/qwjyh/xdbm
|
url = https://github.com/qwjyh/xdbm
|
||||||
arch = i686
|
arch = i686
|
||||||
|
@ -10,7 +10,8 @@ pkgbase = xdbm
|
||||||
license = MIT OR Apache-1.0
|
license = MIT OR Apache-1.0
|
||||||
makedepends = cargo
|
makedepends = cargo
|
||||||
depends = libgit2
|
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
|
sha512sums = SKIP
|
||||||
|
|
||||||
pkgname = xdbm
|
pkgname = xdbm
|
||||||
|
|
4
PKGBUILD
4
PKGBUILD
|
@ -1,7 +1,7 @@
|
||||||
# Maintainer: qwjyh <urataw421@gmail.com>
|
# Maintainer: qwjyh <urataw421@gmail.com>
|
||||||
|
|
||||||
pkgname=xdbm
|
pkgname=xdbm
|
||||||
pkgver=0.2.1
|
pkgver=0.3.0
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
depends=('libgit2')
|
depends=('libgit2')
|
||||||
makedepends=('cargo')
|
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."
|
pkgdesc="Cross device backup manager, which manages backups on several storages mounted on multiple devices."
|
||||||
url="https://github.com/qwjyh/xdbm"
|
url="https://github.com/qwjyh/xdbm"
|
||||||
source=("$pkgname-$pkgver.tar.gz::https://static.crates.io/crates/$pkgname/$pkgname-$pkgver.crate")
|
source=("$pkgname-$pkgver.tar.gz::https://static.crates.io/crates/$pkgname/$pkgname-$pkgver.crate")
|
||||||
|
options=(!lto)
|
||||||
license=('MIT OR Apache-1.0')
|
license=('MIT OR Apache-1.0')
|
||||||
sha512sums=('SKIP')
|
sha512sums=('SKIP')
|
||||||
|
|
||||||
|
@ -21,7 +22,6 @@ prepare() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "$pkgname-$pkgver" || exit
|
cd "$pkgname-$pkgver" || exit
|
||||||
export CFLAGS+=' -ffat-lto-objects'
|
|
||||||
cargo build --frozen --release --all-features
|
cargo build --frozen --release --all-features
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue