summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabien Dubosson2017-09-20 11:21:48 +0200
committerFabien Dubosson2017-09-20 11:21:48 +0200
commit95d674220b811ae03f700d27ebe0309f0f69106c (patch)
tree41c487c363ce72c2984a5f6060f6f4674fa453f7
parent23f21ca59282b111e87be5a28b866ecbef84ceab (diff)
downloadaur-95d674220b811ae03f700d27ebe0309f0f69106c.tar.gz
New upstream release 0.4.2
-rw-r--r--.SRCINFO8
-rw-r--r--.gitignore2
-rw-r--r--ChangeLog5
-rw-r--r--PKGBUILD15
4 files changed, 21 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ee2d4177310f..af8dbfb590ac 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,8 @@
+# Generated by mksrcinfo v8
+# Wed Sep 20 09:21:08 UTC 2017
pkgbase = budgetwarrior
pkgdesc = Simple command line utility to helps keeping track of your expenses and the state of your budget.
- pkgver = 0.4.1.2
+ pkgver = 0.4.2
pkgrel = 1
url = https://github.com/wichtounet/budgetwarrior
changelog = ChangeLog
@@ -10,8 +12,8 @@ pkgbase = budgetwarrior
makedepends = clang
depends = boost
depends = util-linux
- source = https://github.com/wichtounet/budgetwarrior/archive/0.4.1.2.tar.gz
- md5sums = b0120b7265b71a34035f1cb622feeff8
+ source = git://github.com/wichtounet/budgetwarrior.git#tag=
+ md5sums = SKIP
pkgname = budgetwarrior
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..b15031d9258e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+*.tar
+budgetwarrior/ \ No newline at end of file
diff --git a/ChangeLog b/ChangeLog
index 600f132f2fdc..3b1808a57135 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-09-20 Fabien Dubosson <fabien.dubosson@gmail.com>
+
+ * 0.4.2-1:
+ New upstream release
+
2014-09-24 Fabien Dubosson <fabien.dubosson@gmail.com>
* 0.4.1.2-1:
diff --git a/PKGBUILD b/PKGBUILD
index c609b3f24c33..47f185859ea3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Fabien Dubosson <fabien.dubosson@gmail.com>
pkgname="budgetwarrior"
-pkgver="0.4.1.2"
+pkgver="0.4.2"
pkgrel="1"
pkgdesc="Simple command line utility to helps keeping track of your expenses and the state of your budget."
url="https://github.com/wichtounet/budgetwarrior"
@@ -10,21 +10,24 @@ arch=('i686' 'x86_64')
makedepends=('clang')
depends=('boost' 'util-linux')
changelog="ChangeLog"
-source=("https://github.com/wichtounet/${pkgname}/archive/${pkgver}.tar.gz")
-md5sums=('b0120b7265b71a34035f1cb622feeff8')
+source=("git://github.com/wichtounet/budgetwarrior.git#tag=${pgkver}")
+md5sums=('SKIP')
prepare() {
- cd "${srcdir}/${pkgname}-${pkgver}/"
+ cd "${srcdir}/${pkgname}/"
+
+ git submodule init
+ git submodule update
}
build() {
- cd "${srcdir}/${pkgname}-${pkgver}/"
+ cd "${srcdir}/${pkgname}/"
make
}
package() {
- cd "${srcdir}/${pkgname}-${pkgver}/"
+ cd "${srcdir}/${pkgname}/"
install -d "${pkgdir}/usr/bin"
install -d "${pkgdir}/usr/share/man/man3"