summaryrefslogtreecommitdiff
path: root/pcr/dbus-elogind
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2018-04-20 23:33:56 -0300
committerDavid P <megver83@parabola.nu>2018-04-20 23:34:52 -0300
commitc14e2140148348af86770fb056ec294318ed08da (patch)
tree2a3c8d5ab2440b8a39a7209eb3b5eb59d699bf5f /pcr/dbus-elogind
parent8f618d9dac0306f5c5251eb302f57c2d3a729907 (diff)
upgpkg: pcr/dbus-elogind 1.12.6-1
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'pcr/dbus-elogind')
-rw-r--r--pcr/dbus-elogind/PKGBUILD57
-rw-r--r--pcr/dbus-elogind/dbus.sysusers2
2 files changed, 30 insertions, 29 deletions
diff --git a/pcr/dbus-elogind/PKGBUILD b/pcr/dbus-elogind/PKGBUILD
index c4661df14..c4802f534 100644
--- a/pcr/dbus-elogind/PKGBUILD
+++ b/pcr/dbus-elogind/PKGBUILD
@@ -4,10 +4,11 @@
# Contributor (Arch): Tom Gundersen <teg@jklm.no>
# Contributor (Arch): Link Dupont <link@subpop.net>
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
+# Maintainer: David P. <megver83@parabola.nu>
-_pkgname=dbus
pkgname=dbus-elogind
-pkgver=1.12.2
+_pkgname=${pkgname/-elogind}
+pkgver=1.12.6
pkgrel=1
pkgdesc="Freedesktop.org message bus system"
url="https://wiki.freedesktop.org/www/Software/dbus/"
@@ -16,54 +17,54 @@ license=(GPL custom)
provides=('libdbus' "dbus=$pkgver" "dbus-x11=$pkgver")
conflicts=('libdbus' 'dbus' 'dbus-x11')
depends=('libx11' 'expat' 'libelogind')
-makedepends=('eudev' 'elogind' 'xmlto' 'docbook-xsl' 'python' 'yelp-tools' 'doxygen' 'git' 'autoconf-archive' 'graphviz')
+makedepends=(elogind xmlto docbook-xsl python yelp-tools doxygen git autoconf-archive graphviz)
optdepends=('dbus-openrc: dbus initscript')
-_commit=0f0968336b9711349023e1d41f075b2bccf7c20b # tags/dbus-1.12.2^0
+_commit=a723baa2bc7e91fc9b1926cda1ce53e9301de4d8 # tags/dbus-1.12.6^0
source=("git+https://anongit.freedesktop.org/git/dbus/dbus#commit=$_commit"
'dbus.sysusers'
'dbus-enable-elogind.patch')
sha256sums=('SKIP'
- '1ce179ba3a92ad34941d8ac7f53d01d42cbc91d43ada1136492b78c10b5d693d'
- 'faffcaa5b295f49fcedeed2c9ece5298949096be3062fd99a4bf1a6ac3ad1ea0')
+ '9bc34a20595df8869d43a8d9af74cbded999c9a004ec12ff8ce07d58d81018d8'
+ 'faffcaa5b295f49fcedeed2c9ece5298949096be3062fd99a4bf1a6ac3ad1ea0')
validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90' # Simon McVittie <simon.mcvittie@collabora.co.uk>
'3C8672A0F49637FE064AC30F52A43A1E4B77B059') # Simon McVittie <simon.mcvittie@collabora.co.uk>
+pkgver() {
+ cd $_pkgname
+ git describe --tags | sed 's/^dbus-//;s/-/+/g'
+}
+
prepare() {
cd $_pkgname
- patch -Np 1 -i ${srcdir}/dbus-enable-elogind.patch
+
# Reduce docs size
printf '%s\n' >>Doxyfile.in \
HAVE_DOT=yes DOT_IMAGE_FORMAT=svg INTERACTIVE_SVG=yes
+
+ patch -Np1 -i ${srcdir}/dbus-enable-elogind.patch
+
NOCONFIGURE=1 ./autogen.sh
}
build() {
cd $_pkgname
- ./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --libexecdir=/usr/lib/dbus-1.0 \
- --with-dbus-user=dbus \
- --with-system-pid-file=/run/dbus/pid \
- --with-system-socket=/run/dbus/system_bus_socket \
- --with-console-auth-dir=/run/console/ \
- --enable-inotify \
- --enable-elogind \
- --disable-static \
- --disable-verbose-mode \
- --disable-asserts \
- --enable-x11-autolaunch \
- --enable-elogind \
- --without-systemdsystemunitdir \
- --disable-systemd \
- --disable-user-session
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --libexecdir=/usr/lib/dbus-1.0 --with-dbus-user=dbus \
+ --with-system-pid-file=/run/dbus/pid \
+ --with-system-socket=/run/dbus/system_bus_socket \
+ --with-console-auth-dir=/run/console/ \
+ --enable-inotify --disable-static \
+ --disable-verbose-mode --disable-asserts \
+ --without-systemdsystemunitdir \
+ --disable-systemd --disable-user-session \
+ --enable-elogind --enable-x11-autolaunch
make
+
}
check() {
cd $_pkgname
- make check
+ make check # will fail with libremakepkg if building without -N
}
package() {
@@ -75,7 +76,7 @@ package() {
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$_pkgname/COPYING"
- # sysusers
+ # We have a pre-assigned uid (81)
install -Dm644 "$srcdir/dbus.sysusers" "$pkgdir/usr/lib/sysusers.d/dbus.conf"
# Remove docs
diff --git a/pcr/dbus-elogind/dbus.sysusers b/pcr/dbus-elogind/dbus.sysusers
index 6e8dcec11..f509703d0 100644
--- a/pcr/dbus-elogind/dbus.sysusers
+++ b/pcr/dbus-elogind/dbus.sysusers
@@ -1 +1 @@
-u dbus 81
+u dbus 81 "System Message Bus"