Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] accountsservice: update to 23.13.9.
@ 2023-09-24 16:15 mobinmob
  2023-12-24  1:47 ` github-actions
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: mobinmob @ 2023-09-24 16:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1511 bytes --]

There is a new pull request by mobinmob against master on the void-packages repository

https://github.com/mobinmob/void-packages accountsservice
https://github.com/void-linux/void-packages/pull/46225

accountsservice: update to 23.13.9.
Also:
- removed elogind option as (no longer optional)
- adjusted musl-wmpt patch
- removed -Duser_heuristics (removed upstream)
- added vala in hostmakedepends (vapigen is needed during build)
- removed meson patch (not needed).

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

@Gottox 

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/46225.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-accountsservice-46225.patch --]
[-- Type: text/x-diff, Size: 4653 bytes --]

From 43c8d17bd04ae9a503230917176060d000373b39 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sun, 24 Sep 2023 19:07:59 +0300
Subject: [PATCH] accountsservice: update to 23.13.9.

Also:
- removed elogind option as (no longer optional)
- adjusted musl-wmpt patch
- removed -Duser_heuristics (removed upstream)
- added vala in hostmakedepends (vapigen is needed during build)
- removed meson patch (not needed).
---
 .../accountsservice/patches/meson-0.61.patch  | 29 -------------------
 .../accountsservice/patches/musl-wtmp.patch   | 15 +++++-----
 srcpkgs/accountsservice/template              | 18 ++++++------
 3 files changed, 17 insertions(+), 45 deletions(-)
 delete mode 100644 srcpkgs/accountsservice/patches/meson-0.61.patch

diff --git a/srcpkgs/accountsservice/patches/meson-0.61.patch b/srcpkgs/accountsservice/patches/meson-0.61.patch
deleted file mode 100644
index 9245afdd47d26..0000000000000
--- a/srcpkgs/accountsservice/patches/meson-0.61.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From ac9b14f1c1bbca413987d0bbfeaad05804107e9a Mon Sep 17 00:00:00 2001
-From: Luca Boccassi <bluca@debian.org>
-Date: Sun, 31 Oct 2021 12:29:14 +0000
-Subject: Fix build with meson 0.60
-
-Positional parameters to merge_file() were never allowed and always
-ignored, so just drop it.
-See: https://github.com/mesonbuild/meson/issues/9441
-
-Fixes #97
----
- data/meson.build | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/data/meson.build b/data/meson.build
-index 70edf89..9e80299 100644
---- a/data/meson.build
-+++ b/data/meson.build
-@@ -33,7 +33,6 @@ configure_file(
- policy = act_namespace.to_lower() + '.policy'
- 
- i18n.merge_file(
--  policy,
-   input: policy + '.in',
-   output: policy,
-   po_dir: po_dir,
--- 
-cgit v1.2.1
-
diff --git a/srcpkgs/accountsservice/patches/musl-wtmp.patch b/srcpkgs/accountsservice/patches/musl-wtmp.patch
index 1d01e31733119..27ebc561e448c 100644
--- a/srcpkgs/accountsservice/patches/musl-wtmp.patch
+++ b/srcpkgs/accountsservice/patches/musl-wtmp.patch
@@ -1,15 +1,16 @@
-Reason: fix build on musl
-Tidy up and send upstream soon...
+diff --git a/meson.build b/meson.build
+index 4a509e7..8fe5c3b 100644
 --- a/meson.build
 +++ b/meson.build
-@@ -82,8 +82,7 @@ if cc.has_header_symbol('utmpx.h', 'WTMPX_FILENAME', prefix: '#define _GNU_SOURC
- elif cc.has_header_symbol('paths.h', '_PATH_WTMPX')
+@@ -103,9 +103,8 @@ elif cc.has_header_symbol('paths.h', '_PATH_WTMPX')
+ 
    config_h.set('PATH_WTMP', '_PATH_WTMPX')
  else
--  assert(run_command('test', '-e', '/var/log/utx.log').returncode() == 0, 'Do not know which filename to watch for wtmp changes')
--  config_h.set_quoted('PATH_WTMP', '/var/log/utx.log')
+-  path_wtmp = '/var/log/utx.log'
+-  assert(run_command('test', '-e', path_wtmp, check: false).returncode() == 0, 'Do not know which filename to watch for wtmp changes')
+-  config_h.set_quoted('PATH_WTMP', path_wtmp)
++  path_wtmp = 'var/log/wtmp'
 +  config_h.set_quoted('PATH_WTMP', '/var/log/wtmp')
  endif
  
  # compiler flags
-
diff --git a/srcpkgs/accountsservice/template b/srcpkgs/accountsservice/template
index f298248158312..2042542e9ad8a 100644
--- a/srcpkgs/accountsservice/template
+++ b/srcpkgs/accountsservice/template
@@ -1,26 +1,26 @@
 # Template file for 'accountsservice'
 pkgname=accountsservice
-version=0.6.55
-revision=2
+version=23.13.9
+revision=1
 build_style=meson
 build_helper="gir"
-configure_args="-Dsystemdsystemunitdir=no -Duser_heuristics=false
- $(vopt_bool gir introspection) $(vopt_bool elogind elogind)"
-hostmakedepends="glib-devel pkg-config polkit gettext"
-makedepends="polkit-devel $(vopt_if elogind elogind-devel)"
+configure_args="-Dsystemdsystemunitdir=no
+ $(vopt_bool gir introspection) -Delogind=true"
+hostmakedepends="glib-devel pkg-config polkit gettext $(vopt_if gir vala)"
+makedepends="polkit-devel elogind-devel"
 short_desc="D-Bus interfaces for querying and manipulating user account information"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-3.0-or-later"
 homepage="https://www.freedesktop.org/wiki/Software/AccountsService/"
 distfiles="${FREEDESKTOP_SITE}/${pkgname}/${pkgname}-${version}.tar.xz"
-checksum=ff2b2419a7e06bd9cb335ffe391c7409b49a0f0130b890bd54692a3986699c9b
+checksum=adda4cdeae24fa0992e7df3ffff9effa7090be3ac233a3edfdf69d5a9c9b924f
 make_dirs="
  /var/lib/AccountsService/users 755 root root
  /var/lib/AccountsService/icons 755 root root"
 
 # Package build options
-build_options="elogind gir"
-build_options_default="elogind gir"
+build_options="gir"
+build_options_default="gir"
 
 accountsservice-devel_package() {
 	depends="${sourcepkg}>=${version}_${revision}"

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: accountsservice: update to 23.13.9.
  2023-09-24 16:15 [PR PATCH] accountsservice: update to 23.13.9 mobinmob
@ 2023-12-24  1:47 ` github-actions
  2023-12-26 16:23 ` mobinmob
  2024-03-16 10:59 ` [PR PATCH] [Closed]: " mobinmob
  2 siblings, 0 replies; 4+ messages in thread
From: github-actions @ 2023-12-24  1:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 305 bytes --]

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/46225#issuecomment-1868410272

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: accountsservice: update to 23.13.9.
  2023-09-24 16:15 [PR PATCH] accountsservice: update to 23.13.9 mobinmob
  2023-12-24  1:47 ` github-actions
@ 2023-12-26 16:23 ` mobinmob
  2024-03-16 10:59 ` [PR PATCH] [Closed]: " mobinmob
  2 siblings, 0 replies; 4+ messages in thread
From: mobinmob @ 2023-12-26 16:23 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 148 bytes --]

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/46225#issuecomment-1869646321

Comment:
Bump.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Closed]: accountsservice: update to 23.13.9.
  2023-09-24 16:15 [PR PATCH] accountsservice: update to 23.13.9 mobinmob
  2023-12-24  1:47 ` github-actions
  2023-12-26 16:23 ` mobinmob
@ 2024-03-16 10:59 ` mobinmob
  2 siblings, 0 replies; 4+ messages in thread
From: mobinmob @ 2024-03-16 10:59 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1350 bytes --]

There's a closed pull request on the void-packages repository

accountsservice: update to 23.13.9.
https://github.com/void-linux/void-packages/pull/46225

Description:
Also:
- removed elogind option as (no longer optional)
- adjusted musl-wmpt patch
- removed -Duser_heuristics (removed upstream)
- added vala in hostmakedepends (vapigen is needed during build)
- removed meson patch (not needed).

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

@Gottox 

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-03-16 10:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-24 16:15 [PR PATCH] accountsservice: update to 23.13.9 mobinmob
2023-12-24  1:47 ` github-actions
2023-12-26 16:23 ` mobinmob
2024-03-16 10:59 ` [PR PATCH] [Closed]: " mobinmob

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).