[arch-commits] Commit in dbus/repos (3 files)

Jan Steffens heftig at archlinux.org
Tue Aug 13 14:18:12 UTC 2019


    Date: Tuesday, August 13, 2019 @ 14:18:10
  Author: heftig
Revision: 359790

archrelease: copy trunk to testing-x86_64

Added:
  dbus/repos/testing-x86_64/
  dbus/repos/testing-x86_64/PKGBUILD
    (from rev 359789, dbus/trunk/PKGBUILD)
  dbus/repos/testing-x86_64/dbus-reload.hook
    (from rev 359789, dbus/trunk/dbus-reload.hook)

------------------+
 PKGBUILD         |   97 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 dbus-reload.hook |   13 +++++++
 2 files changed, 110 insertions(+)

Copied: dbus/repos/testing-x86_64/PKGBUILD (from rev 359789, dbus/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2019-08-13 14:18:10 UTC (rev 359790)
@@ -0,0 +1,97 @@
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+# Contributor: Tom Gundersen <teg at jklm.no>
+# Contributor: Link Dupont <link at subpop.net>
+
+pkgbase=dbus
+pkgname=(dbus dbus-docs)
+pkgver=1.12.16
+pkgrel=2
+pkgdesc="Freedesktop.org message bus system"
+url="https://wiki.freedesktop.org/www/Software/dbus/"
+arch=(x86_64)
+license=(GPL custom)
+depends=(systemd-libs expat audit)
+makedepends=(systemd xmlto docbook-xsl python yelp-tools doxygen git autoconf-archive graphviz)
+_commit=23cc709db8fab94f11fa48772bff396b20aea8b0  # tags/dbus-1.12.16^0
+source=("git+https://gitlab.freedesktop.org/dbus/dbus.git#commit=$_commit"
+        dbus-reload.hook)
+sha256sums=('SKIP'
+            '56d0b5131e030649c6666707aefd67d5c44b6498091f7fdc92dc570b6d6b94fe')
+validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90'  # Simon McVittie <simon.mcvittie at collabora.co.uk>
+              '3C8672A0F49637FE064AC30F52A43A1E4B77B059') # Simon McVittie <simon.mcvittie at collabora.co.uk>
+
+pkgver() {
+  cd dbus
+  git describe --tags | sed 's/^dbus-//;s/-/+/g'
+}
+
+prepare() {
+  cd dbus
+
+  # Reduce docs size
+  printf '%s\n' >>Doxyfile.in \
+    HAVE_DOT=yes DOT_IMAGE_FORMAT=svg INTERACTIVE_SVG=yes
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd dbus
+  ./configure \
+    --prefix=/usr \
+    --sysconfdir=/etc \
+    --localstatedir=/var \
+    --libexecdir=/usr/lib/dbus-1.0 \
+    runstatedir=/run \
+    --with-console-auth-dir=/run/console/ \
+    --with-dbus-user=dbus \
+    --with-system-pid-file=/run/dbus/pid \
+    --with-system-socket=/run/dbus/system_bus_socket \
+    --with-systemdsystemunitdir=/usr/lib/systemd/system \
+    --enable-inotify \
+    --enable-systemd \
+    --enable-user-session \
+    --disable-static \
+    --disable-verbose-mode \
+    --disable-asserts \
+    --disable-checks \
+    --without-x
+  make
+}
+
+check() {
+  make -C dbus check
+}
+
+package_dbus() {
+  provides=(libdbus)
+  conflicts=(libdbus)
+  replaces=(libdbus)
+
+  DESTDIR="$pkgdir" make -C dbus install
+
+  rm -r "$pkgdir/var/run"
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 dbus/COPYING
+
+  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+
+  # We have a pre-assigned uid (81)
+  echo 'u dbus 81 "System Message Bus"' |
+    install -Dm644 /dev/stdin "$pkgdir/usr/lib/sysusers.d/dbus.conf"
+
+  # Split docs
+  mv "$pkgdir/usr/share/doc" "$srcdir"
+}
+
+package_dbus-docs() {
+  pkgdesc+=" (documentation)"
+  depends=()
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 dbus/COPYING
+
+  mv doc "$pkgdir/usr/share"
+}
+
+# vim:set sw=2 et:

Copied: dbus/repos/testing-x86_64/dbus-reload.hook (from rev 359789, dbus/trunk/dbus-reload.hook)
===================================================================
--- testing-x86_64/dbus-reload.hook	                        (rev 0)
+++ testing-x86_64/dbus-reload.hook	2019-08-13 14:18:10 UTC (rev 359790)
@@ -0,0 +1,13 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = etc/dbus-1/system.d/*.conf
+Target = usr/share/dbus-1/system.d/*.conf
+Target = usr/share/dbus-1/system-services/*.service
+
+[Action]
+Description = Reloading system bus configuration...
+When = PostTransaction
+Exec = /usr/share/libalpm/scripts/systemd-hook reload dbus



More information about the arch-commits mailing list