Date: Friday, February 3, 2023 @ 09:15:50
Author: heftig
Revision: 468144
archrelease: copy trunk to extra-x86_64
Added:
dbus-broker/repos/extra-x86_64/PKGBUILD
(from rev 468143, dbus-broker/trunk/PKGBUILD)
dbus-broker/repos/extra-x86_64/keys/
Deleted:
dbus-broker/repos/extra-x86_64/PKGBUILD
----------+
PKGBUILD | 90 +++++++++++++++++++++++++++++++++++--------------------------
1 file changed, 52 insertions(+), 38 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-02-03 09:15:32 UTC (rev 468143)
+++ PKGBUILD 2023-02-03 09:15:50 UTC (rev 468144)
@@ -1,38 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
-# Contributor: David Herrmann <[email protected]>
-
-pkgname=dbus-broker
-pkgver=32
-pkgrel=1
-pkgdesc="Linux D-Bus Message Broker"
-url="https://github.com/bus1/dbus-broker/wiki"
-arch=(x86_64)
-license=(Apache)
-depends=(systemd-libs expat audit)
-makedepends=(meson systemd python-docutils)
-options=(debug)
-source=(https://github.com/bus1/dbus-broker/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz)
-sha256sums=('bea7f653e7251063c5f427e9e3f93562d38a0d8667ae6d49fb56f113605985de')
-
-prepare() {
- cd $pkgname-$pkgver
-}
-
-build() {
- arch-meson $pkgname-$pkgver build \
- -D audit=true \
- -D docs=true \
- -D linux-4-17=true \
- -D system-console-users=gdm,sddm,lightdm,lxdm
- meson compile -C build
-}
-
-check() {
- meson test -C build --print-errorlogs
-}
-
-package() {
- meson install -C build --destdir "$pkgdir"
-}
-
-# vim:set sw=2 et:
Copied: dbus-broker/repos/extra-x86_64/PKGBUILD (from rev 468143,
dbus-broker/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-02-03 09:15:50 UTC (rev 468144)
@@ -0,0 +1,52 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: David Herrmann <[email protected]>
+
+pkgname=dbus-broker
+pkgver=33
+pkgrel=1
+pkgdesc="Linux D-Bus Message Broker"
+url="https://github.com/bus1/dbus-broker/wiki"
+arch=(x86_64)
+license=(Apache)
+depends=(
+ audit
+ expat
+ systemd-libs
+)
+makedepends=(
+ meson
+ python-docutils
+ systemd
+)
+source=(
+
https://github.com/bus1/dbus-broker/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz{,.asc}
+)
+sha256sums=('23713f25624749fdb274907e429080fa2d8f4dbe76acd87bb6d21a3c818c7841'
+ 'SKIP')
+validpgpkeys=(BE5FBC8C9C1C9F60A4F0AEAE7A4F3A09EBDEFF26) # David Herrmann
<[email protected]>
+
+prepare() {
+ cd $pkgname-$pkgver
+}
+
+build() {
+ local meson_options=(
+ -D audit=true
+ -D docs=true
+ -D linux-4-17=true
+ -D system-console-users=gdm,sddm,lightdm,lxdm
+ )
+
+ arch-meson $pkgname-$pkgver build "${meson_options[@]}"
+ meson compile -C build
+}
+
+check() {
+ meson test -C build --print-errorlogs
+}
+
+package() {
+ meson install -C build --destdir "$pkgdir"
+}
+
+# vim:set sw=2 sts=-1 et: