[arch-commits] Commit in dbus/repos (testing-x86_64 testing-x86_64/PKGBUILD)
Jan Steffens
heftig at archlinux.org
Sat May 18 20:06:20 UTC 2019
Date: Saturday, May 18, 2019 @ 20:06:20
Author: heftig
Revision: 353610
archrelease: copy trunk to testing-x86_64
Added:
dbus/repos/testing-x86_64/
dbus/repos/testing-x86_64/PKGBUILD
(from rev 353609, dbus/trunk/PKGBUILD)
----------+
PKGBUILD | 93 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 93 insertions(+)
Copied: dbus/repos/testing-x86_64/PKGBUILD (from rev 353609, dbus/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-05-18 20:06:20 UTC (rev 353610)
@@ -0,0 +1,93 @@
+# 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.14
+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 graphviz)
+_commit=a330c6184fe9c7f67495f8d4563b11d51a6dccc7 # tags/dbus-1.12.14^0
+source=("git+https://gitlab.freedesktop.org/dbus/dbus.git#commit=$_commit")
+sha256sums=('SKIP')
+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
+
+ # 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:
More information about the arch-commits
mailing list