From 3e3b7469e642674daaa3b9ee71d06b846cc39b18 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 23 Apr 2019 16:06:42 +0200 Subject: [PATCH] accountsservice: Update version from 0.6.49 to 0.6.55 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [Several bugs were fixed.][1] Meson is used as build system now, and does not create static versions of the libraries. Additionally, the systemd service unit is shipped by accountsservice, so we do not need to create our own. It uses the default log target, and disables GVFS. Also, it’s installed in `/lib/systemd/system`. As the service is currently not enable in MarIuX – the service gets activated over D-Bus, it is not that important anyway. [1]: https://gitlab.freedesktop.org/accountsservice/accountsservice/blob/0.6.55/NEWS --- accountsservice.be0 | 30 ++++-------------------------- 1 file changed, 4 insertions(+), 26 deletions(-) diff --git a/accountsservice.be0 b/accountsservice.be0 index f8bc3ca72..f485d758f 100755 --- a/accountsservice.be0 +++ b/accountsservice.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION accountsservice-0.6.49-0 +# BEE_VERSION accountsservice-0.6.55-0 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) @@ -53,10 +53,9 @@ SRCURL[0]="https://www.freedesktop.org/software/accountsservice/accountsservice- # bee_patch "${@}" #} -mee_configure() { - bee_configure \ - --disable-static -} +#mee_configure() { +# bee_configure +#} #mee_build() { # bee_build @@ -67,27 +66,6 @@ mee_configure() { #} ## by default this may be 'make install DESTDIR="${D}"' -mee_install_post() { - mkdir -p ${D}/lib/systemd/system/ - cat > ${D}/lib/systemd/system/accounts-daemon.service <<-EOF - [Unit] - Description=Accounts Service - - [Service] - Type=dbus - BusName=org.freedesktop.Accounts - ExecStart=${LIBEXECDIR}/accounts-daemon - StandardOutput=syslog - - [Install] - # We pull this in by graphical.target instead of waiting for the bus - # activation, to speed things up a little: gdm uses this anyway so it is nice - # if it is already around when gdm wants to use it and doesn't have to wait for - # it. - WantedBy=graphical.target -EOF -} - ############################################################################### ## ## Additional hints: