Date: Saturday, January 28, 2023 @ 14:42:54 Author: heftig Revision: 467528
2.7.0-1 Modified: geoclue/trunk/PKGBUILD ----------+ PKGBUILD | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2023-01-28 12:52:47 UTC (rev 467527) +++ PKGBUILD 2023-01-28 14:42:54 UTC (rev 467528) @@ -2,13 +2,13 @@ # Contributor: György Balló <[email protected]> pkgname=geoclue -pkgver=2.6.0 -pkgrel=3 +pkgver=2.7.0 +pkgrel=1 pkgdesc="Modular geoinformation service built on the D-Bus messaging system" arch=(x86_64) url="https://www.freedesktop.org/wiki/Software/GeoClue/" license=(LGPL) -depends=(libsoup json-glib libmm-glib avahi) +depends=(libsoup3 json-glib libmm-glib avahi) makedepends=(systemd gobject-introspection git vala meson gtk-doc libnotify) optdepends=('libnotify: Demo Agent') provides=("geoclue2=$pkgver-$pkgrel") @@ -15,7 +15,7 @@ conflicts=(geoclue2) replaces=(geoclue2) backup=(etc/geoclue/geoclue.conf) -_commit=10998ca3215fb6d21b5a32fdf78bb5feffaf4c0f # tags/2.6.0^0 +_commit=bbfb6289dedb88cb8155d9f6868787d5432e1f90 # tags/2.7.0^0 source=("git+https://gitlab.freedesktop.org/geoclue/geoclue.git#commit=$_commit") sha256sums=('SKIP') @@ -35,10 +35,13 @@ } build() { - arch-meson geoclue build \ - -D dbus-srv-user=geoclue \ - -D dbus-sys-dir=/usr/share/dbus-1/system.d \ + local meson_options=( + -D dbus-srv-user=geoclue + -D dbus-sys-dir=/usr/share/dbus-1/system.d -D mozilla-api-key="$_mozilla_api_key" + ) + + arch-meson geoclue build "${meson_options[@]}" meson compile -C build } @@ -59,4 +62,4 @@ install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d" } -# vim:set sw=2 et: +# vim:set sw=2 sts=-1 et:
