From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:49648) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jT4Fr-0003Ky-8s for guix-patches@gnu.org; Mon, 27 Apr 2020 09:57:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jT4Fq-0002we-Rg for guix-patches@gnu.org; Mon, 27 Apr 2020 09:57:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54359) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jT4Fq-0002wW-Dy for guix-patches@gnu.org; Mon, 27 Apr 2020 09:57:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jT4Fq-00073i-D0 for guix-patches@gnu.org; Mon, 27 Apr 2020 09:57:02 -0400 Subject: [bug#40902] [PATCH] gnu: Add edid-decode. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:49576) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jT4F9-0003IN-Rs for guix-patches@gnu.org; Mon, 27 Apr 2020 09:56:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jT4F8-0002on-JB for guix-patches@gnu.org; Mon, 27 Apr 2020 09:56:19 -0400 Received: from relay8-d.mail.gandi.net ([217.70.183.201]:46617) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jT4F7-0002oG-SQ for guix-patches@gnu.org; Mon, 27 Apr 2020 09:56:18 -0400 Received: from localhost (luy13-1-78-237-113-178.fbx.proxad.net [78.237.113.178]) (Authenticated sender: brice@waegenei.re) by relay8-d.mail.gandi.net (Postfix) with ESMTPSA id 7B6151BF212 for ; Mon, 27 Apr 2020 13:56:01 +0000 (UTC) From: Brice Waegeneire Date: Mon, 27 Apr 2020 15:55:50 +0200 Message-Id: <20200427135550.20640-1-brice@waegenei.re> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40902@debbugs.gnu.org * gnu/packages/hardware.scm (edid-decode): New variable. --- gnu/packages/hardware.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm index 189c73ee3c..3284733095 100644 --- a/gnu/packages/hardware.scm +++ b/gnu/packages/hardware.scm @@ -89,6 +89,36 @@ calibrated, and restored when the calibration is applied.") (license (list license:bsd-3 ; FindDDCUtil.cmake license:gpl2+)))) ; everything else +(define-public edid-decode + (let ((commit "74b64180d67bb009d8d9ea1b6f18ad41aaa16396") ; 2020-04-22 + (revision "1")) + (package + (name "edid-decode") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (file-name (git-file-name name version)) + (uri (git-reference + (url "git://linuxtv.org/edid-decode.git") + (commit commit))) + (sha256 + (base32 "0nirp5bza08zj5d8bjgcm0p869hdg3qg3mwa7999pjdrzmn7s2ah")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; No test suite + #:make-flags + (list (string-append "DESTDIR=" (assoc-ref %outputs "out")) + "bindir=/bin" "mandir=/share/man") + #:phases + (modify-phases %standard-phases + (delete 'configure)))) + (home-page "https://git.linuxtv.org/edid-decode.git/") + (synopsis "Decode @dfn{EDID} data in human-readable format") + (description "edid-decode decodes @dfn{EDID} monitor description data in +human-readable format and check if it conforms to the standards.") + (license license:expat)))) + ;; Distinct from memtest86, which is obsolete. (define-public memtest86+ (package -- 2.26.0