summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Herrmann2018-02-21 17:21:27 +0100
committerDavid Herrmann2018-02-21 17:21:27 +0100
commitc01009328b29ea69ced43658bc2bbfcf941adc2c (patch)
tree0a5c96a4c7ce9fa31a4f611c6cdd0fd551474f34
parentce0f2d01034ba2050d7ecedc1ce82476cd96ee6e (diff)
downloadaur-c01009328b29ea69ced43658bc2bbfcf941adc2c.tar.gz
dbus-broker-git: add c-utf8 dependency
Newer -git versions require the c-utf8 dependency. Add it, and update all the instructions for it. Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
-rw-r--r--.SRCINFO10
-rw-r--r--PKGBUILD13
2 files changed, 14 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 33707514aac6..6eb0e2dcb089 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Sat Jan 27 13:54:58 UTC 2018
+# Wed Feb 21 16:21:08 UTC 2018
pkgbase = dbus-broker-git
pkgdesc = Linux D-Bus Message Broker
- pkgver = r1056.d4a8ac3
+ pkgver = r1119.a4cdeeb
pkgrel = 1
url = https://github.com/bus1/dbus-broker
arch = i686
@@ -18,10 +18,12 @@ pkgbase = dbus-broker-git
provides = dbus-broker
conflicts = dbus-broker
source = dbus-broker-git::git+https://github.com/bus1/dbus-broker
+ source = git+https://github.com/c-util/c-dvar
+ source = git+https://github.com/c-util/c-list
source = git+https://github.com/c-util/c-rbtree
source = git+https://github.com/c-util/c-sundry
- source = git+https://github.com/c-util/c-list
- source = git+https://github.com/c-util/c-dvar
+ source = git+https://github.com/c-util/c-utf8
+ sha256sums = SKIP
sha256sums = SKIP
sha256sums = SKIP
sha256sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 6e7efb8c5c93..7ef33912d3d9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
_pkgorg=bus1
_pkgname=dbus-broker
pkgdesc='Linux D-Bus Message Broker'
-pkgver=r1056.d4a8ac3
+pkgver=r1119.a4cdeeb
pkgrel=1
pkgname=$_pkgname-git
@@ -16,14 +16,16 @@ provides=("$_pkgname")
conflicts=("$_pkgname")
source=("$pkgname::git+https://github.com/$_pkgorg/$_pkgname"
+ "git+https://github.com/c-util/c-dvar"
+ "git+https://github.com/c-util/c-list"
"git+https://github.com/c-util/c-rbtree"
"git+https://github.com/c-util/c-sundry"
- "git+https://github.com/c-util/c-list"
- "git+https://github.com/c-util/c-dvar")
+ "git+https://github.com/c-util/c-utf8")
sha256sums=('SKIP'
'SKIP'
'SKIP'
'SKIP'
+ 'SKIP'
'SKIP')
pkgver() {
@@ -37,10 +39,11 @@ prepare() {
cd $pkgname
git submodule init
+ git config --local submodule.subprojects/c-dvar.url "$srcdir/c-dvar"
+ git config --local submodule.subprojects/c-list.url "$srcdir/c-list"
git config --local submodule.subprojects/c-rbtree.url "$srcdir/c-rbtree"
git config --local submodule.subprojects/c-sundry.url "$srcdir/c-sundry"
- git config --local submodule.subprojects/c-list.url "$srcdir/c-list"
- git config --local submodule.subprojects/c-dvar.url "$srcdir/c-dvar"
+ git config --local submodule.subprojects/c-utf8.url "$srcdir/c-utf8"
git submodule update
}