Date: Thursday, March 2, 2023 @ 02:02:53
  Author: heftig
Revision: 469868

archrelease: copy trunk to testing-x86_64

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

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

Copied: dbus/repos/testing-x86_64/PKGBUILD (from rev 469867, 
dbus/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD                             (rev 0)
+++ testing-x86_64/PKGBUILD     2023-03-02 02:02:53 UTC (rev 469868)
@@ -0,0 +1,119 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: Jan de Groot <[email protected]>
+# Contributor: Tom Gundersen <[email protected]>
+# Contributor: Link Dupont <[email protected]>
+
+pkgbase=dbus
+pkgname=(
+  dbus
+  dbus-docs
+)
+pkgver=1.14.6
+pkgrel=2
+pkgdesc="Freedesktop.org message bus system"
+url="https://wiki.freedesktop.org/www/Software/dbus/";
+arch=(x86_64)
+license=(
+  GPL
+  custom
+)
+depends=(
+  audit
+  expat
+  systemd-libs
+)
+makedepends=(
+  autoconf-archive
+  docbook-xsl
+  doxygen
+  git
+  python
+  systemd
+  xmlto
+  yelp-tools
+)
+source=(
+  "git+https://gitlab.freedesktop.org/dbus/dbus.git?signed#tag=dbus-$pkgver";
+  dbus-reload.hook
+)
+b2sums=('SKIP'
+        
'05ab81bf72e7cf45ad943f5b84eaecef4f06bed94979c579a3e23134cbabd7ea6f65fa9ac252f8b43ceb4a3295e0d2325f06560a044fe7ddf125fc30dfc2b7e2')
+validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90') # Simon McVittie 
<[email protected]>
+
+prepare() {
+  cd dbus
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  local configure_options=(
+    --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-libaudit
+    --enable-systemd
+    --enable-user-session
+    --enable-xml-docs
+    --enable-doxygen-docs
+    --enable-ducktype-docs
+    --disable-static
+    --without-x
+  )
+
+  cd dbus
+  ./configure "${configure_options[@]}"
+  make
+}
+
+check() {
+  make -C dbus -j1 check
+}
+
+package_dbus() {
+  depends+=(
+    libaudit.so
+    libsystemd.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
+
+  # Split docs
+  mkdir -p doc/usr/share
+  mv {"$pkgdir",doc}/usr/share/doc
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 dbus/COPYING
+}
+
+package_dbus-docs() {
+  pkgdesc+=" - Documentation"
+  depends=()
+
+  mv doc/* "$pkgdir"
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 dbus/COPYING
+}
+
+# vim:set sw=2 sts=-1 et:

Copied: dbus/repos/testing-x86_64/dbus-reload.hook (from rev 469867, 
dbus/trunk/dbus-reload.hook)
===================================================================
--- testing-x86_64/dbus-reload.hook                             (rev 0)
+++ testing-x86_64/dbus-reload.hook     2023-03-02 02:02:53 UTC (rev 469868)
@@ -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

Reply via email to