From unknown Thu Jun 19 14:11:55 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#46140 <46140@debbugs.gnu.org> To: bug#46140 <46140@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add libsmbios. Reply-To: bug#46140 <46140@debbugs.gnu.org> Date: Thu, 19 Jun 2025 21:11:55 +0000 retitle 46140 [PATCH] gnu: Add libsmbios. reassign 46140 guix-patches submitter 46140 L=C3=A9o Le Bouter severity 46140 normal tag 46140 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 27 13:52:34 2021 Received: (at submit) by debbugs.gnu.org; 27 Jan 2021 18:52:34 +0000 Received: from localhost ([127.0.0.1]:46123 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l4pve-0008Qp-DH for submit@debbugs.gnu.org; Wed, 27 Jan 2021 13:52:34 -0500 Received: from lists.gnu.org ([209.51.188.17]:44082) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l4pvc-0008Qg-0k for submit@debbugs.gnu.org; Wed, 27 Jan 2021 13:52:32 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:45448) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1l4pvb-00089d-P5 for guix-patches@gnu.org; Wed, 27 Jan 2021 13:52:31 -0500 Received: from mail.zaclys.net ([178.33.93.72]:46425) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1l4pvZ-0000cV-5d for guix-patches@gnu.org; Wed, 27 Jan 2021 13:52:31 -0500 Received: from localhost.localdomain (lam21-1_migr-78-196-200-185.fbx.proxad.net [78.196.200.185] (may be forged)) (authenticated bits=0) by mail.zaclys.net (8.14.7/8.14.7) with ESMTP id 10RIqFlD057053 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Wed, 27 Jan 2021 19:52:26 +0100 DMARC-Filter: OpenDMARC Filter v1.3.2 mail.zaclys.net 10RIqFlD057053 Authentication-Results: mail.zaclys.net; dmarc=fail (p=reject dis=none) header.from=zaclys.net Authentication-Results: mail.zaclys.net; spf=fail smtp.mailfrom=lle-bout@zaclys.net DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zaclys.net; s=default; t=1611773546; bh=kInRgcN4yDrU9ekG0m0GQGGUXs38bAP2GFPJWyOCn6k=; h=From:To:Cc:Subject:Date:From; b=o/Sz14nYN9O4nHLA8/5JFGqeSDLbuHPKYR7G029nfY5izH+4DYT/3KbHag1BmiyJM 5H4ePFhWJriuDydUGNoMNdUNG3EVIKJgmpOd5oHEC01T8cVxq1xm1L6ohCCGy3Fx26 IYKhu7WGwrHkJhTzC1Pw8nezmEf7mgXCoTjhskv0= From: =?UTF-8?q?L=C3=A9o=20Le=20Bouter?= To: guix-patches@gnu.org Subject: [PATCH] gnu: Add libsmbios. Date: Wed, 27 Jan 2021 19:52:14 +0100 Message-Id: <20210127185214.31034-1-lle-bout@zaclys.net> X-Mailer: git-send-email 2.30.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.33.93.72; envelope-from=lle-bout@zaclys.net; helo=mail.zaclys.net X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: =?UTF-8?q?L=C3=A9o=20Le=20Bouter?= X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/hardware.scm (libsmbios): New variable. --- gnu/packages/hardware.scm | 43 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm index 3da6759472..6a704f432d 100644 --- a/gnu/packages/hardware.scm +++ b/gnu/packages/hardware.scm @@ -29,15 +29,18 @@ #:use-module (gnu packages crypto) #:use-module (gnu packages documentation) #:use-module (gnu packages gcc) + #:use-module (gnu packages gettext) #:use-module (gnu packages glib) #:use-module (gnu packages gtk) #:use-module (gnu packages libusb) #:use-module (gnu packages linux) #:use-module (gnu packages ncurses) #:use-module (gnu packages openldap) + #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages polkit) #:use-module (gnu packages protobuf) + #:use-module (gnu packages python) #:use-module (gnu packages xdisorg) #:use-module (gnu packages xml) #:use-module (gnu packages xorg) @@ -130,6 +133,46 @@ calibrated, and restored when the calibration is applied.") human-readable format and checks if it conforms to the standards.") (license license:expat)))) +(define-public libsmbios + (package + (name "libsmbios") + (version "2.4.3") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url (string-append "https://github.com/dell/" name)) + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0krwwydyvb9224r884y1mlmzyxhlfrcqw73vi1j8787rl0gl5a2i")))) + (build-system gnu-build-system) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("gettext" ,gettext-minimal) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config) + ("perl" ,perl) + ("python" ,python))) + (inputs + `(("libxml2" ,libxml2))) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'bootstrap + (lambda _ (invoke "autoreconf" "-vfi")))))) + (synopsis "Library for interacting with Dell SMBIOS tables") + (description "libsmbios provides a library to interface with the SMBIOS +tables. It also provides extensions for proprietary methods of interfacing +with Dell specific SMBIOS tables.") + (home-page "https://github.com/dell/libsmbios") + (license (list + (license:non-copyleft "file://COPYING-OSL" + "Open Software License version 2.1") + license:gpl2+ license:bsd-3 license:boost1.0)))) + ;; Distinct from memtest86, which is obsolete. (define-public memtest86+ (package -- 2.30.0 From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 27 15:28:20 2021 Received: (at submit) by debbugs.gnu.org; 27 Jan 2021 20:28:20 +0000 Received: from localhost ([127.0.0.1]:46219 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l4rQJ-0002Lm-MV for submit@debbugs.gnu.org; Wed, 27 Jan 2021 15:28:20 -0500 Received: from lists.gnu.org ([209.51.188.17]:59508) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l4rQI-0002La-Tv for submit@debbugs.gnu.org; Wed, 27 Jan 2021 15:28:19 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:60962) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1l4rQI-0003Zw-NZ for guix-patches@gnu.org; Wed, 27 Jan 2021 15:28:18 -0500 Received: from relay12.mail.gandi.net ([217.70.178.232]:37661) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1l4rQG-0002dB-Qr for guix-patches@gnu.org; Wed, 27 Jan 2021 15:28:18 -0500 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay12.mail.gandi.net (Postfix) with ESMTPSA id 3F57620000A; Wed, 27 Jan 2021 20:28:11 +0000 (UTC) From: Nicolas Goaziou To: guix-patches--- via Subject: Re: [bug#46140] [PATCH] gnu: Add libsmbios. References: <20210127185214.31034-1-lle-bout@zaclys.net> Date: Wed, 27 Jan 2021 21:28:11 +0100 In-Reply-To: <20210127185214.31034-1-lle-bout@zaclys.net> (guix-patches@gnu.org's message of "Wed, 27 Jan 2021 19:52:14 +0100") Message-ID: <877dnyrup0.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=217.70.178.232; envelope-from=mail@nicolasgoaziou.fr; helo=relay12.mail.gandi.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit Cc: =?utf-8?Q?L=C3=A9o?= Le Bouter , 46140-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.6 (--) Hello, guix-patches--- via writes: > * gnu/packages/hardware.scm (libsmbios): New variable. I added a copyright line for you, fixed indentation in license field, and forgot to move home-page above synopsis. Bah. Patch applied! Thank you. Regards, -- Nicolas Goaziou From unknown Thu Jun 19 14:11:55 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 25 Feb 2021 12:24:09 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator