all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#48982] [PATCH] gnu: brightnessctl: Add elogind support.
@ 2021-06-12 21:24 Brice Waegeneire
  2021-06-16 20:58 ` Ludovic Courtès
  2021-06-26 15:45 ` [bug#48982] " Dhruvin Gandhi via Guix-patches via
  0 siblings, 2 replies; 6+ messages in thread
From: Brice Waegeneire @ 2021-06-12 21:24 UTC (permalink / raw)
  To: 48982

* gnu/packages/patches/brightnessctl-elogind-support.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/linux.scm (brightnessctl)[source]: Apply it.
[make-flags]: Enable logind support.
[native-inputs]: Add pkg-config.
[inputs]: Add elogind.
---
 gnu/local.mk                                        |  1 +
 gnu/packages/linux.scm                              | 13 +++++++++----
 .../patches/brightnessctl-elogind-support.patch     | 13 +++++++++++++
 3 files changed, 23 insertions(+), 4 deletions(-)
 create mode 100644 gnu/packages/patches/brightnessctl-elogind-support.patch

diff --git a/gnu/local.mk b/gnu/local.mk
index 73556cc184..26b3e86e22 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -851,6 +851,7 @@ dist_patch_DATA =						\
   %D%/packages/patches/bazaar-CVE-2017-14176.patch		\
   %D%/packages/patches/bc-fix-cross-compilation.patch		\
   %D%/packages/patches/bear-disable-preinstall-tests.patch	\
+  %D%/packages/patches/brightnessctl-elogind-support.patch	\
   %D%/packages/patches/bsdiff-CVE-2014-9862.patch		\
   %D%/packages/patches/bsd-games-2.17-64bit.patch		\
   %D%/packages/patches/bsd-games-add-configure-config.patch	\
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 2b0c32666c..c8917f1830 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -36,14 +36,13 @@
 ;;; Copyright © 2019, 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2019 Stefan Stefanović <stefanx2ovic@gmail.com>
 ;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
-;;; Copyright © 2019, 2020 Brice Waegeneire <brice@waegenei.re>
+;;; Copyright © 2019, 2020, 2021 Brice Waegeneire <brice@waegenei.re>
 ;;; Copyright © 2019 Kei Kebreau <kkebreau@posteo.net>
 ;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
 ;;; Copyright © 2020 Pierre Neidhardt <mail@ambrevar.xyz>
 ;;; Copyright © 2020 Chris Marusich <cmmarusich@gmail.com>
 ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
 ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
-;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
 ;;; Copyright © 2020 Morgan Smith <Morgan.J.Smith@outlook.com>
 ;;; Copyright © 2020 John Soo <jsoo1@asu.edu>
 ;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
@@ -6413,13 +6412,15 @@ set the screen to be pitch black at a value of 0 (or higher).
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0immxc7almmpg80n3bdn834p3nrrz7bspl2syhb04s3lawa5y2lq"))))
+                "0immxc7almmpg80n3bdn834p3nrrz7bspl2syhb04s3lawa5y2lq"))
+              (patches (search-patches "brightnessctl-elogind-support.patch"))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f                      ; no tests
        #:make-flags (list (string-append "CC=" ,(cc-for-target))
                           (string-append "PREFIX=" %output)
-                          (string-append "UDEVDIR=" %output "/lib/udev/rules.d/"))
+                          (string-append "UDEVDIR=" %output "/lib/udev/rules.d/")
+                          "ENABLE_SYSTEMD=1")
        #:phases
        (modify-phases %standard-phases
          (delete 'configure)
@@ -6428,6 +6429,10 @@ set the screen to be pitch black at a value of 0 (or higher).
              (substitute* "90-brightnessctl.rules"
                (("/bin/") "/run/current-system/profile/bin/"))
              #t)))))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("elogind" ,elogind)))
     (synopsis "Backlight and LED brightness control")
     (description
      "This program allows you read and control device brightness.  Devices
diff --git a/gnu/packages/patches/brightnessctl-elogind-support.patch b/gnu/packages/patches/brightnessctl-elogind-support.patch
new file mode 100644
index 0000000000..8125f1c459
--- /dev/null
+++ b/gnu/packages/patches/brightnessctl-elogind-support.patch
@@ -0,0 +1,13 @@
+From https://github.com/Hummer12007/brightnessctl/issues/67
+
+--- a/Makefile
++++ b/Makefile
+@@ -18,6 +18,8 @@ MODE = ${MODE_${INSTALL_UDEV_RULES}}
+ ifdef ENABLE_SYSTEMD
+ 	CFLAGS += ${shell pkg-config --cflags libsystemd}
+ 	LDLIBS += ${shell pkg-config --libs libsystemd}
++	CFLAGS += ${shell pkg-config --cflags libelogind}
++	LDLIBS += ${shell pkg-config --libs libelogind}
+ 	CPPFLAGS += -DENABLE_SYSTEMD
+ 	INSTALL_UDEV_RULES=0
+ 	MODE = 0755
-- 
2.31.1





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

* [bug#48982] [PATCH] gnu: brightnessctl: Add elogind support.
  2021-06-12 21:24 [bug#48982] [PATCH] gnu: brightnessctl: Add elogind support Brice Waegeneire
@ 2021-06-16 20:58 ` Ludovic Courtès
  2021-06-17  6:22   ` bug#48982: " Brice Waegeneire
  2021-06-26 15:45 ` [bug#48982] " Dhruvin Gandhi via Guix-patches via
  1 sibling, 1 reply; 6+ messages in thread
From: Ludovic Courtès @ 2021-06-16 20:58 UTC (permalink / raw)
  To: Brice Waegeneire; +Cc: 48982

Brice Waegeneire <brice@waegenei.re> skribis:

> * gnu/packages/patches/brightnessctl-elogind-support.patch: New patch.
> * gnu/local.mk (dist_patch_DATA): Register it.
> * gnu/packages/linux.scm (brightnessctl)[source]: Apply it.
> [make-flags]: Enable logind support.
> [native-inputs]: Add pkg-config.
> [inputs]: Add elogind.

LGTM, thanks!

Ludo'.




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

* bug#48982: [PATCH] gnu: brightnessctl: Add elogind support.
  2021-06-16 20:58 ` Ludovic Courtès
@ 2021-06-17  6:22   ` Brice Waegeneire
  0 siblings, 0 replies; 6+ messages in thread
From: Brice Waegeneire @ 2021-06-17  6:22 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 48982-done

Pushed as 375d5d03c91e722c1fcf17d456c303c53b0b5a80.




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

* [bug#48982] [PATCH] gnu: brightnessctl: Add elogind support.
  2021-06-12 21:24 [bug#48982] [PATCH] gnu: brightnessctl: Add elogind support Brice Waegeneire
  2021-06-16 20:58 ` Ludovic Courtès
@ 2021-06-26 15:45 ` Dhruvin Gandhi via Guix-patches via
  2021-06-26 17:14   ` Brice Waegeneire
  1 sibling, 1 reply; 6+ messages in thread
From: Dhruvin Gandhi via Guix-patches via @ 2021-06-26 15:45 UTC (permalink / raw)
  To: 48982

This patch no longer installs the udev rules it used to install.
I think the description should be updated as well. Mentioning how to use
brightnessctl.




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

* [bug#48982] [PATCH] gnu: brightnessctl: Add elogind support.
  2021-06-26 15:45 ` [bug#48982] " Dhruvin Gandhi via Guix-patches via
@ 2021-06-26 17:14   ` Brice Waegeneire
  2021-06-27  7:22     ` Dhruvin Gandhi via Guix-patches via
  0 siblings, 1 reply; 6+ messages in thread
From: Brice Waegeneire @ 2021-06-26 17:14 UTC (permalink / raw)
  To: Dhruvin Gandhi; +Cc: 48982

Hello Dhruvin,

Dhruvin Gandhi <contact@dhruvin.dev> writes:

> This patch no longer installs the udev rules it used to install.
> I think the description should be updated as well. Mentioning how to use
> brightnessctl.

Thank you for the report, looks like I didn't took enought care when
submiting the patch.  It is fixed in
5a13e950b2bd0860ee91bcd61a2a3c1a1ec0f616 by readding udev rules to the
package.

Cheers,
- Brice.




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

* [bug#48982] [PATCH] gnu: brightnessctl: Add elogind support.
  2021-06-26 17:14   ` Brice Waegeneire
@ 2021-06-27  7:22     ` Dhruvin Gandhi via Guix-patches via
  0 siblings, 0 replies; 6+ messages in thread
From: Dhruvin Gandhi via Guix-patches via @ 2021-06-27  7:22 UTC (permalink / raw)
  To: Brice Waegeneire; +Cc: 48982

Hello Brice

Brice Waegeneire <brice@waegenei.re> writes:

> Hello Dhruvin,
>
> Dhruvin Gandhi <contact@dhruvin.dev> writes:
>
>> This patch no longer installs the udev rules it used to install.
>> I think the description should be updated as well. Mentioning how to use
>> brightnessctl.
>
> Thank you for the report, looks like I didn't took enought care when
> submiting the patch.  It is fixed in
> 5a13e950b2bd0860ee91bcd61a2a3c1a1ec0f616 by readding udev rules to the
> package.
>
> Cheers,
> - Brice.

I have reconfigured my system with latest commit and brightnessctl works
as expected. Thank you for your prompt response to this issue and for
the commit that fixed it.




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

end of thread, other threads:[~2021-06-27  7:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-12 21:24 [bug#48982] [PATCH] gnu: brightnessctl: Add elogind support Brice Waegeneire
2021-06-16 20:58 ` Ludovic Courtès
2021-06-17  6:22   ` bug#48982: " Brice Waegeneire
2021-06-26 15:45 ` [bug#48982] " Dhruvin Gandhi via Guix-patches via
2021-06-26 17:14   ` Brice Waegeneire
2021-06-27  7:22     ` Dhruvin Gandhi via Guix-patches via

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.