Skip to content
Snippets Groups Projects
Commit 17759f74 authored by alice's avatar alice
Browse files

community/accountsservice: upgrade to 23.13.9

parent 2c85550b
No related branches found
No related tags found
No related merge requests found
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org> # Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org> # Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=accountsservice pkgname=accountsservice
pkgver=22.08.8 pkgver=23.13.9
pkgrel=0 pkgrel=0
pkgdesc="D-Bus interface for user account query and manipulation" pkgdesc="D-Bus interface for user account query and manipulation"
url="https://www.freedesktop.org/software/accountsservice/" url="https://www.freedesktop.org/software/accountsservice/"
...@@ -25,6 +25,7 @@ source="https://www.freedesktop.org/software/accountsservice/accountsservice-$pk ...@@ -25,6 +25,7 @@ source="https://www.freedesktop.org/software/accountsservice/accountsservice-$pk
build() { build() {
abuild-meson \ abuild-meson \
-Db_lto=true \
-Dsystemdsystemunitdir=no \ -Dsystemdsystemunitdir=no \
-Delogind=true \ -Delogind=true \
-Dintrospection=true \ -Dintrospection=true \
...@@ -44,7 +45,7 @@ package() { ...@@ -44,7 +45,7 @@ package() {
} }
sha512sums=" sha512sums="
2ca3ceb1b44338d9924b86788256d4eef7ec10e0c2197bfb8cc6c31ae224fab3051f03cb406a526f90057684965bef4ba0f2cc01b26198ec1fc6baec36ad3ff8 accountsservice-22.08.8.tar.xz c6eb543ce2e07b61bbdfa454e388949bc688517be0536b14f30c66383ed105b15d3fab8b6c62b1eaa08f67d9bdc29b928729d9f7c704f47de4decf0de8e12f89 accountsservice-23.13.9.tar.xz
469392beca8f5941eafaa193c4fcb0472770ee4183ce520416a1b5d6abafe0e201990eb74d06bfbd9e20af08e55aff5f0031f267083f6c6879f0fe4e5028103c musl-fgetspent_r.patch 469392beca8f5941eafaa193c4fcb0472770ee4183ce520416a1b5d6abafe0e201990eb74d06bfbd9e20af08e55aff5f0031f267083f6c6879f0fe4e5028103c musl-fgetspent_r.patch
054dc551808cfdb98a9876f1f24fee38c5aaf9686267cd7e871066caa8ec3029822e65549165a23222581319672c1ccb29213159c3b00804cf4119b89a7256ac musl-wtmp.patch 6d81caed730473d5c94d575c580a236b4267b374bf50588860922a7ecbeef0b2a1d50124fa3ae195c4f26abe8c3bd6df2aea6d27a0ce23e99acef9fff3eb9652 musl-wtmp.patch
" "
the assert expects a working /var/log/wtmp at build time the assert expects a working /var/log/wtmp at build time
diff --git a/meson.build b/meson.build
index 4a509e7..f995d28 100644
--- a/meson.build --- a/meson.build
+++ a/meson.build +++ b/meson.build
@@ -101,7 +101,6 @@ @@ -103,8 +103,7 @@ elif cc.has_header_symbol('paths.h', '_PATH_WTMPX')
config_h.set('PATH_WTMP', '_PATH_WTMPX') config_h.set('PATH_WTMP', '_PATH_WTMPX')
else else
- path_wtmp = '/var/log/utx.log' - path_wtmp = '/var/log/utx.log'
- assert(run_command('test', '-e', path_wtmp).returncode() == 0, 'Do not know which filename to watch for wtmp changes') - assert(run_command('test', '-e', path_wtmp, check: false).returncode() == 0, 'Do not know which filename to watch for wtmp changes')
+ path_wtmp = '/var/log/wtmp' + path_wtmp = '/var/log/wtmp'
config_h.set_quoted('PATH_WTMP', path_wtmp) config_h.set_quoted('PATH_WTMP', path_wtmp)
endif endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment