unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#72302] [PATCH] gnu: Add drm-info.
@ 2024-07-25 23:06 Wilko Meyer
  2024-07-30  6:45 ` bug#72302: " Zheng Junjie
  0 siblings, 1 reply; 2+ messages in thread
From: Wilko Meyer @ 2024-07-25 23:06 UTC (permalink / raw)
  To: 72302; +Cc: Wilko Meyer

* gnu/packages/freedesktop.scm (drm-info): New variable.

Change-Id: I02a0bdcbb49644de9884038cd36bf6d8482f84ae
---
Hi Guix,

Needed drm_info today while debugging a /dev/dri/card* related
issue. As the tool isn't yet available in guix, here's a patch adding
it.

FTR: There's a comment in gnu/packages/hardware.scm on l261 referring
to it with a comment saying:

;; Not packaged in Guix (TODO).

which could be removed after applying this patch. I would've done it
myself and included the removal in this patch, but wasn't too sure on
how to handle the commit messages right for such a case.

Cheers!

 gnu/packages/freedesktop.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 222ea0fb0b..05b016f802 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -38,6 +38,7 @@
 ;;; Copyright © 2022 Samuel Culpepper <sculpepper@newstore.com>
 ;;; Copyright © 2024 aurtzy <aurtzy@gmail.com>
 ;;; Copyright © 2024 Dariqq <dariqq@posteo.net>
+;;; Copyright © 2024 Wilko Meyer <w@wmeyer.eu>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2475,6 +2476,31 @@ (define-public desktop-file-utils
 @end table")
     (license license:gpl2+)))
 
+(define-public drm-info
+  (package
+    (name "drm-info")
+    (version "2.6.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://gitlab.freedesktop.org/emersion/drm_info.git")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "0fc1rd3c16ddzbdpcj473ykszipzblj98lk376slk63v7mqvc1qm"))))
+    (build-system meson-build-system)
+    (native-inputs
+     (list pkg-config))
+    (inputs
+     (list libdrm json-c))
+    (home-page "https://gitlab.freedesktop.org/emersion/drm_info")
+    (synopsis "Dump DRM device info")
+    (description "Displaying and dumping information on Direct
+Rendering Manager devices.")
+    (license license:expat)))
+
 (define-public xdg-user-dirs
   (package
     (name "xdg-user-dirs")

base-commit: 07293655b77619b61bd25abe692d0218c3d8142b
-- 
2.41.0





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

* bug#72302: [PATCH] gnu: Add drm-info.
  2024-07-25 23:06 [bug#72302] [PATCH] gnu: Add drm-info Wilko Meyer
@ 2024-07-30  6:45 ` Zheng Junjie
  0 siblings, 0 replies; 2+ messages in thread
From: Zheng Junjie @ 2024-07-30  6:45 UTC (permalink / raw)
  To: Wilko Meyer; +Cc: 72302-done

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

Wilko Meyer <w@wmeyer.eu> writes:

> * gnu/packages/freedesktop.scm (drm-info): New variable.
>
> Change-Id: I02a0bdcbb49644de9884038cd36bf6d8482f84ae
> ---
> Hi Guix,
>
> Needed drm_info today while debugging a /dev/dri/card* related
> issue. As the tool isn't yet available in guix, here's a patch adding
> it.
>
> FTR: There's a comment in gnu/packages/hardware.scm on l261 referring
> to it with a comment saying:
>
> ;; Not packaged in Guix (TODO).
>
> which could be removed after applying this patch. I would've done it
> myself and included the removal in this patch, but wasn't too sure on
> how to handle the commit messages right for such a case.
>
> Cheers!
>
>  gnu/packages/freedesktop.scm | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
>
> diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
> index 222ea0fb0b..05b016f802 100644
> --- a/gnu/packages/freedesktop.scm
> +++ b/gnu/packages/freedesktop.scm
> @@ -38,6 +38,7 @@
>  ;;; Copyright © 2022 Samuel Culpepper <sculpepper@newstore.com>
>  ;;; Copyright © 2024 aurtzy <aurtzy@gmail.com>
>  ;;; Copyright © 2024 Dariqq <dariqq@posteo.net>
> +;;; Copyright © 2024 Wilko Meyer <w@wmeyer.eu>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -2475,6 +2476,31 @@ (define-public desktop-file-utils
>  @end table")
>      (license license:gpl2+)))
>  
> +(define-public drm-info
> +  (package
> +    (name "drm-info")
> +    (version "2.6.0")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://gitlab.freedesktop.org/emersion/drm_info.git")
> +             (commit (string-append "v" version))))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32
> +         "0fc1rd3c16ddzbdpcj473ykszipzblj98lk376slk63v7mqvc1qm"))))
> +    (build-system meson-build-system)
> +    (native-inputs
> +     (list pkg-config))
> +    (inputs
> +     (list libdrm json-c))
> +    (home-page "https://gitlab.freedesktop.org/emersion/drm_info")
> +    (synopsis "Dump DRM device info")
> +    (description "Displaying and dumping information on Direct
> +Rendering Manager devices.")
> +    (license license:expat)))
> +
>  (define-public xdg-user-dirs
>    (package
>      (name "xdg-user-dirs")
>
> base-commit: 07293655b77619b61bd25abe692d0218c3d8142b

Enable libpci and man-pages option, and pushed.

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

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

end of thread, other threads:[~2024-07-30  6:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-25 23:06 [bug#72302] [PATCH] gnu: Add drm-info Wilko Meyer
2024-07-30  6:45 ` bug#72302: " Zheng Junjie

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).