Bump version
This commit is contained in:
parent
a22cb894bb
commit
cc69657f46
10
.SRCINFO
10
.SRCINFO
@ -1,6 +1,6 @@
|
||||
pkgbase = rauc
|
||||
pkgdesc = RAUC controls the update process on embedded linux systems. It is both a target application that runs as an update client and a host/target tool that allows you to create, inspect and modify installation artifacts.
|
||||
pkgver = 0.3
|
||||
pkgver = 0.4
|
||||
pkgrel = 1
|
||||
url = https://github.com/rauc/rauc
|
||||
arch = i686
|
||||
@ -9,8 +9,12 @@ pkgbase = rauc
|
||||
makedepends = python
|
||||
depends = curl
|
||||
depends = json-glib
|
||||
source = https://github.com/rauc/rauc/releases/download/v0.3/rauc-0.3.tar.xz
|
||||
sha256sums = dc01bfb08b1830376782f9a51cfec290171519267ab97cc909435da9ac6d6d98
|
||||
source = https://github.com/rauc/rauc/releases/download/v0.4/rauc-0.4.tar.xz
|
||||
source = https://github.com/rauc/rauc/releases/download/v0.4/rauc-0.4.tar.xz.asc
|
||||
validpgpkeys = 977843FD5C3EBF76BAD4008EA58CC53DBF05E090
|
||||
validpgpkeys = 23F7401CD1CFE80940B611CA81C07DCEDA5CCBBB
|
||||
sha256sums = 89656b6330ac1f31293d450f5179896397c588ab52e77ec229382a6abd125d35
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = rauc
|
||||
|
||||
|
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
src
|
||||
pkg
|
||||
*.tar.xz
|
||||
*.tar.xz.asc
|
12
PKGBUILD
12
PKGBUILD
@ -1,7 +1,7 @@
|
||||
# Maintainer: Arti Zirk <arti.zirk@gmail.com>
|
||||
|
||||
pkgname=rauc
|
||||
pkgver=0.3
|
||||
pkgver=0.4
|
||||
pkgrel=1
|
||||
pkgdesc="RAUC controls the update process on embedded linux systems. It is both a target application that runs as an update client and a host/target tool that allows you to create, inspect and modify installation artifacts."
|
||||
arch=('i686' 'x86_64')
|
||||
@ -9,10 +9,12 @@ url="https://github.com/rauc/rauc"
|
||||
license=('GPL')
|
||||
depends=('curl' 'json-glib')
|
||||
makedepends=('python')
|
||||
source=(https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz)
|
||||
# https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz.asc)
|
||||
sha256sums=('dc01bfb08b1830376782f9a51cfec290171519267ab97cc909435da9ac6d6d98')
|
||||
# 'SKIP')
|
||||
source=(https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz
|
||||
https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz.asc)
|
||||
sha256sums=('89656b6330ac1f31293d450f5179896397c588ab52e77ec229382a6abd125d35'
|
||||
'SKIP')
|
||||
validpgpkeys=('977843FD5C3EBF76BAD4008EA58CC53DBF05E090'
|
||||
'23F7401CD1CFE80940B611CA81C07DCEDA5CCBBB')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$pkgname-$pkgver
|
||||
|
Loading…
Reference in New Issue
Block a user