GNU bug report logs -
#74317
[PATCH] gnu: libseat, seatd: Update to 0.9.1.
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Wed, 20 Nov 2024 20:05:00 +0800
with message-id <87r0762jrn.fsf <at> iscas.ac.cn>
and subject line Re: [bug#74317] [PATCH] gnu: libseat, seatd: Update to 0.9.1.
has caused the debbugs.gnu.org bug report #74317,
regarding [PATCH] gnu: libseat, seatd: Update to 0.9.1.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
74317: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=74317
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
* gnu/packages/admin.scm (libseat): Update to 0.9.1.
[arguments]: Use G-expressions.
[native-inputs]: Remove label.
[propagated-inputs]: Remove label.
(seatd): [arguments]: Use G-expressions.
[native-inputs]: Remove label.
Change-Id: I53ebe502ad80bc892e995749aae3387c42a79bad
---
gnu/packages/admin.scm | 30 +++++++++++++++---------------
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 9c765b51a97..c0f12e308e4 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -5763,7 +5763,7 @@ (define-public wlgreet
(define-public libseat
(package
(name "libseat")
- (version "0.8.0")
+ (version "0.9.1")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -5772,15 +5772,15 @@ (define-public libseat
(file-name (git-file-name name version))
(sha256
(base32
- "02wzrgp8di6hqmicnm2fim6jnvbn62wy248ikvdvrhiywrb7i931"))))
+ "1q1ih1f9v5240nlas1gz44giwq4k88p3yikfq7w0a4sw58yr6pz8"))))
(build-system meson-build-system)
(arguments
- `(#:configure-flags '("-Dlibseat-logind=elogind"
- "-Dserver=disabled")))
+ (list #:configure-flags #~(list "-Dlibseat-logind=elogind"
+ "-Dserver=disabled")))
(native-inputs
- `(("pkg-config" ,pkg-config)))
+ (list pkg-config))
(propagated-inputs
- `(("elogind" ,elogind)))
+ (list elogind))
(home-page "https://sr.ht/~kennylevinsen/seatd")
(synopsis "Seat management library")
(description
@@ -5793,16 +5793,16 @@ (define-public seatd
(inherit libseat)
(name "seatd")
(arguments
- `(#:configure-flags '("-Dlibseat-logind=elogind")
- #:phases
- (modify-phases %standard-phases
- (add-after 'install 'remove-libs
- (lambda* (#:key outputs #:allow-other-keys)
- (with-directory-excursion (assoc-ref outputs "out")
- (for-each delete-file-recursively '("lib" "include"))))))))
+ (list #:configure-flags #~(list "-Dlibseat-logind=elogind")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'install 'remove-libs
+ (lambda* (#:key outputs #:allow-other-keys)
+ (with-directory-excursion (assoc-ref outputs "out")
+ (for-each delete-file-recursively '("lib" "include"))))))))
(native-inputs
- `(("pkg-config" ,pkg-config)
- ("scdoc" ,scdoc)))
+ (list pkg-config
+ scdoc))
(inputs '())
(synopsis "Seat management daemon")
(description
base-commit: 0cbd830ebb8ce802afe99c439ce7fdee448074be
--
2.46.0
[Message part 3 (message/rfc822, inline)]
[Message part 4 (text/plain, inline)]
Zheng Junjie <zhengjunjie <at> iscas.ac.cn> writes:
> * gnu/packages/admin.scm (libseat): Update to 0.9.1.
> [arguments]: Use G-expressions.
> [native-inputs]: Remove label.
> [propagated-inputs]: Remove label.
>
> (seatd): [arguments]: Use G-expressions.
> [native-inputs]: Remove label.
>
> Change-Id: I53ebe502ad80bc892e995749aae3387c42a79bad
> ---
> gnu/packages/admin.scm | 30 +++++++++++++++---------------
> 1 file changed, 15 insertions(+), 15 deletions(-)
>
> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
> index 9c765b51a97..c0f12e308e4 100644
> --- a/gnu/packages/admin.scm
> +++ b/gnu/packages/admin.scm
> @@ -5763,7 +5763,7 @@ (define-public wlgreet
> (define-public libseat
> (package
> (name "libseat")
> - (version "0.8.0")
> + (version "0.9.1")
> (source (origin
> (method git-fetch)
> (uri (git-reference
> @@ -5772,15 +5772,15 @@ (define-public libseat
> (file-name (git-file-name name version))
> (sha256
> (base32
> - "02wzrgp8di6hqmicnm2fim6jnvbn62wy248ikvdvrhiywrb7i931"))))
> + "1q1ih1f9v5240nlas1gz44giwq4k88p3yikfq7w0a4sw58yr6pz8"))))
> (build-system meson-build-system)
> (arguments
> - `(#:configure-flags '("-Dlibseat-logind=elogind"
> - "-Dserver=disabled")))
> + (list #:configure-flags #~(list "-Dlibseat-logind=elogind"
> + "-Dserver=disabled")))
> (native-inputs
> - `(("pkg-config" ,pkg-config)))
> + (list pkg-config))
> (propagated-inputs
> - `(("elogind" ,elogind)))
> + (list elogind))
> (home-page "https://sr.ht/~kennylevinsen/seatd")
> (synopsis "Seat management library")
> (description
> @@ -5793,16 +5793,16 @@ (define-public seatd
> (inherit libseat)
> (name "seatd")
> (arguments
> - `(#:configure-flags '("-Dlibseat-logind=elogind")
> - #:phases
> - (modify-phases %standard-phases
> - (add-after 'install 'remove-libs
> - (lambda* (#:key outputs #:allow-other-keys)
> - (with-directory-excursion (assoc-ref outputs "out")
> - (for-each delete-file-recursively '("lib" "include"))))))))
> + (list #:configure-flags #~(list "-Dlibseat-logind=elogind")
> + #:phases
> + #~(modify-phases %standard-phases
> + (add-after 'install 'remove-libs
> + (lambda* (#:key outputs #:allow-other-keys)
> + (with-directory-excursion (assoc-ref outputs "out")
> + (for-each delete-file-recursively '("lib" "include"))))))))
> (native-inputs
> - `(("pkg-config" ,pkg-config)
> - ("scdoc" ,scdoc)))
> + (list pkg-config
> + scdoc))
> (inputs '())
> (synopsis "Seat management daemon")
> (description
>
> base-commit: 0cbd830ebb8ce802afe99c439ce7fdee448074be
pushed, closing.
[signature.asc (application/pgp-signature, inline)]
This bug report was last modified 271 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.