[arch-commits] Commit in dbus/repos (3 files)
Jan Steffens
heftig at archlinux.org
Sun Jun 7 00:56:52 UTC 2020
Date: Sunday, June 7, 2020 @ 00:56:49
Author: heftig
Revision: 388393
archrelease: copy trunk to testing-x86_64
Added:
dbus/repos/testing-x86_64/
dbus/repos/testing-x86_64/PKGBUILD
(from rev 388392, dbus/trunk/PKGBUILD)
dbus/repos/testing-x86_64/dbus-reload.hook
(from rev 388392, dbus/trunk/dbus-reload.hook)
------------------+
PKGBUILD | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++++
dbus-reload.hook | 13 +++++++
2 files changed, 104 insertions(+)
Copied: dbus/repos/testing-x86_64/PKGBUILD (from rev 388392, dbus/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-06-07 00:56:49 UTC (rev 388393)
@@ -0,0 +1,91 @@
+# 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.18
+pkgrel=1
+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)
+_commit=a0926ef86f413f18202ffa19cb1433b6ba00ac36 # tags/dbus-1.12.18^0
+source=("git+https://gitlab.freedesktop.org/dbus/dbus.git#commit=$_commit"
+ dbus-reload.hook)
+sha256sums=('SKIP'
+ 'd636205622d0ee3b0734360225739ef0c7ad2468a09489e6ef773d88252960f3')
+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
+ 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() {
+ depends+=(libsystemd.so libaudit.so)
+ provides=(libdbus libdbus-1.so)
+ conflicts=(libdbus)
+ replaces=(libdbus)
+
+ DESTDIR="$pkgdir" make -C dbus install
+
+ rm -r "$pkgdir"/{etc,var}
+
+ # 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"
+
+ install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+ install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 dbus/COPYING
+
+ # 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 388392, dbus/trunk/dbus-reload.hook)
===================================================================
--- testing-x86_64/dbus-reload.hook (rev 0)
+++ testing-x86_64/dbus-reload.hook 2020-06-07 00:56:49 UTC (rev 388393)
@@ -0,0 +1,13 @@
+[Trigger]
+Type = Path
+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