unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#47751] [PATCH] gnu: Add seatd.
@ 2021-04-13 13:45 guixuser6392 via Guix-patches via
  2021-04-13 13:57 ` guixuser6392 via Guix-patches via
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: guixuser6392 via Guix-patches via @ 2021-04-13 13:45 UTC (permalink / raw)
  To: 47751

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

Hello, Guix!

This patch adds a single package definition for a minimal seat management daemon (seatd), and a universal seat management library (libseat), under the name of `seatd'.

Regards,
pineapples

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-seatd.patch --]
[-- Type: text/x-patch; name=0001-gnu-Add-seatd.patch, Size: 2283 bytes --]

From 6dce6e93197bd911e136e345a7d6acfe711ecef3 Mon Sep 17 00:00:00 2001
From: pineapples <guixuser6392@protonmail.com>
Date: Tue, 13 Apr 2021 15:12:53 +0200
Subject: [PATCH] gnu: Add seatd.

* gnu/packages/freedesktop.scm (seatd): New variable.
---
 gnu/packages/freedesktop.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 40d41350ac..36002fcf04 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -23,6 +23,7 @@
 ;;; Copyright © 2020 Anders Thuné <asse.97@gmail.com>
 ;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org>
 ;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot>
+;;; Copyright © 2021 pineapples <guixuser6392@protonmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -825,6 +826,36 @@ GNOME Shell.  The @command{localectl} command-line tool allows you to interact
 with localed.  This package is extracted from the broader systemd package.")
     (license license:lgpl2.1+)))
 
+(define-public seatd
+  (package
+    (name "seatd")
+    (version "0.5.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://git.sr.ht/~kennylevinsen/seatd")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1kglq8v4rnr3415mfaghyv2s2f8mxsy5s881gmm2908ig4n4j297"))))
+    (build-system meson-build-system)
+    (arguments
+     `(#:configure-flags '("-Dlogind=enabled")))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("scdoc" ,scdoc)))
+    (inputs
+     `(("elogind" ,elogind)))
+    (home-page "https://sr.ht/~kennylevinsen/seatd")
+    (synopsis "Seat management daemon and library")
+    (description
+     "This package provides a minimal seat management daemon whose task is to
+mediate access to shared devices, such as graphics and input, for applications
+that require it.  It also provides a universal seat management library that
+allows applications to use whatever seat management is available.")
+    (license license:expat)))
+
 (define-public packagekit
   (package
     (name "packagekit")
-- 
2.31.1


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

* [bug#47751] [PATCH] gnu: Add seatd.
  2021-04-13 13:45 [bug#47751] [PATCH] gnu: Add seatd guixuser6392 via Guix-patches via
@ 2021-04-13 13:57 ` guixuser6392 via Guix-patches via
  2021-04-13 17:57   ` bug#47751: " Maxime Devos
  2021-05-01 13:22 ` guixuser6392 via Guix-patches via
  2021-05-14 10:44 ` bug#47750: " Ludovic Courtès
  2 siblings, 1 reply; 8+ messages in thread
From: guixuser6392 via Guix-patches via @ 2021-04-13 13:57 UTC (permalink / raw)
  To: 47751@debbugs.gnu.org

Hello,

I have accidentally sent my patch twice. May someone please close this duplicate ticket?

I am sorry for this.

Regards,
pineapples




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

* bug#47751: [PATCH] gnu: Add seatd.
  2021-04-13 13:57 ` guixuser6392 via Guix-patches via
@ 2021-04-13 17:57   ` Maxime Devos
  2021-04-13 18:15     ` Tobias Geerinckx-Rice via Guix-patches via
  0 siblings, 1 reply; 8+ messages in thread
From: Maxime Devos @ 2021-04-13 17:57 UTC (permalink / raw)
  To: 47751-done@debbugs.gnu.org

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

On Tue, 2021-04-13 at 13:57 +0000, guixuser6392 via Guix-patches via wrote:
> Hello,
> 
> I have accidentally sent my patch twice. May someone please close this duplicate ticket?
Closed.  You can close issues yourself by writing
a mail to BUGNUMBER-done@debbugs.gnu.org

There's information on debbugs here: <https://debbugs.gnu.org/server-control.html>
and <https://debbugs.gnu.org/server-refcard.html>.

Greetings,
Maxime.


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

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

* bug#47751: [PATCH] gnu: Add seatd.
  2021-04-13 17:57   ` bug#47751: " Maxime Devos
@ 2021-04-13 18:15     ` Tobias Geerinckx-Rice via Guix-patches via
  2021-04-13 19:45       ` Maxime Devos
  0 siblings, 1 reply; 8+ messages in thread
From: Tobias Geerinckx-Rice via Guix-patches via @ 2021-04-13 18:15 UTC (permalink / raw)
  To: Maxime Devos; +Cc: 47751-done@debbugs.gnu.org, guix-patches

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

Hi,

It's better to merge identical bugs than to keep duplicates in 
potentially different states (‘is The Seatd Bug open or closed?’ 
‘both’).

I merged them by sending

  merge 47750 47751

to control@debbugs.gnu.org.

Both numbers effectively refer to the same bug after that, so 
closing 47751 did not have the effect you expected.  I've reopened 
it.

Kind regards,

T G-R

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

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

* bug#47751: [PATCH] gnu: Add seatd.
  2021-04-13 18:15     ` Tobias Geerinckx-Rice via Guix-patches via
@ 2021-04-13 19:45       ` Maxime Devos
  2021-04-13 19:54         ` [bug#47751] " Tobias Geerinckx-Rice via Guix-patches via
  0 siblings, 1 reply; 8+ messages in thread
From: Maxime Devos @ 2021-04-13 19:45 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice; +Cc: 47751@debbugs.gnu.org

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

On Tue, 2021-04-13 at 20:15 +0200, Tobias Geerinckx-Rice wrote:
> Hi,
> 
> It's better to merge identical bugs than to keep duplicates in 
> potentially different states (‘is The Seatd Bug open or closed?’ 
> ‘both’).
> 
> I merged them by sending
> 
>   merge 47750 47751
> 
> to control@debbugs.gnu.org.
> 
> Both numbers effectively refer to the same bug after that, so 
> closing 47751 did not have the effect you expected.

I noticed, and tried to reopen the bug, but I sent the mail to the
reopened the wrong bug (#47551) -- actually a no-op, since that bug
was already open.

Greetings,
Maxime.


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

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

* [bug#47751] [PATCH] gnu: Add seatd.
  2021-04-13 19:45       ` Maxime Devos
@ 2021-04-13 19:54         ` Tobias Geerinckx-Rice via Guix-patches via
  0 siblings, 0 replies; 8+ messages in thread
From: Tobias Geerinckx-Rice via Guix-patches via @ 2021-04-13 19:54 UTC (permalink / raw)
  To: Maxime Devos; +Cc: 47751@debbugs.gnu.org

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

Maxime,

Thanks for clearing that up!

Make sure to remove -done from the bug address when replying[0].

Kind regards,

T G-R

[0]: https://logs.guix.gnu.org/guix/2021-04-13.log#212711

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

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

* [bug#47751] [PATCH] gnu: Add seatd.
  2021-04-13 13:45 [bug#47751] [PATCH] gnu: Add seatd guixuser6392 via Guix-patches via
  2021-04-13 13:57 ` guixuser6392 via Guix-patches via
@ 2021-05-01 13:22 ` guixuser6392 via Guix-patches via
  2021-05-14 10:44 ` bug#47750: " Ludovic Courtès
  2 siblings, 0 replies; 8+ messages in thread
From: guixuser6392 via Guix-patches via @ 2021-05-01 13:22 UTC (permalink / raw)
  To: 47751@debbugs.gnu.org

I would like to ask patch reviewers and those with commit access to not accept this patch as-is, as I will be migrating to an email-driven git workflow friendly email provider in the upcoming days, and I want the new email address to be used instead.

I will update the patch as soon as the migration is complete.

Regards,
pineapples





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

* bug#47750: [PATCH] gnu: Add seatd.
  2021-04-13 13:45 [bug#47751] [PATCH] gnu: Add seatd guixuser6392 via Guix-patches via
  2021-04-13 13:57 ` guixuser6392 via Guix-patches via
  2021-05-01 13:22 ` guixuser6392 via Guix-patches via
@ 2021-05-14 10:44 ` Ludovic Courtès
  2 siblings, 0 replies; 8+ messages in thread
From: Ludovic Courtès @ 2021-05-14 10:44 UTC (permalink / raw)
  To: guixuser6392; +Cc: 47750-done

Hi,

guixuser6392 <guixuser6392@protonmail.com> skribis:

> From 6dce6e93197bd911e136e345a7d6acfe711ecef3 Mon Sep 17 00:00:00 2001
> From: pineapples <guixuser6392@protonmail.com>
> Date: Tue, 13 Apr 2021 15:12:53 +0200
> Subject: [PATCH] gnu: Add seatd.
>
> * gnu/packages/freedesktop.scm (seatd): New variable.

Finally applied, thanks!

Ludo’.




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

end of thread, other threads:[~2021-05-14 10:45 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-13 13:45 [bug#47751] [PATCH] gnu: Add seatd guixuser6392 via Guix-patches via
2021-04-13 13:57 ` guixuser6392 via Guix-patches via
2021-04-13 17:57   ` bug#47751: " Maxime Devos
2021-04-13 18:15     ` Tobias Geerinckx-Rice via Guix-patches via
2021-04-13 19:45       ` Maxime Devos
2021-04-13 19:54         ` [bug#47751] " Tobias Geerinckx-Rice via Guix-patches via
2021-05-01 13:22 ` guixuser6392 via Guix-patches via
2021-05-14 10:44 ` bug#47750: " Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).