From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 08 08:43:28 2025 Received: (at submit) by debbugs.gnu.org; 8 Apr 2025 12:43:28 +0000 Received: from localhost ([127.0.0.1]:59790 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1u28IZ-00038o-LX for submit@debbugs.gnu.org; Tue, 08 Apr 2025 08:43:28 -0400 Received: from lists.gnu.org ([2001:470:142::17]:54384) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1u28IW-00037x-Jc for submit@debbugs.gnu.org; Tue, 08 Apr 2025 08:43:25 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1u28I6-0005xw-Mb for guix-patches@gnu.org; Tue, 08 Apr 2025 08:43:09 -0400 Received: from confino.investici.org ([2a11:7980:1::2:0]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1u28I2-0003RD-7K for guix-patches@gnu.org; Tue, 08 Apr 2025 08:42:56 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1744116169; bh=MqFFtWR5Zy/Z38HG7O9RsXahaSLOSWZcGoZanXN5nuA=; h=From:To:Cc:Subject:Date:From; b=LXtW2TbgfsCCifLtN5s+NxKeOLj5LVh1pDbQQ4uCPOAtT/mvkB1P8x4LDzLQODa// ThciZajlgPQlr7ZzZt7b/4glGdv6vvON0gR6hfmsHLsw41Rl4qTZi+VTv2VjPCTDIg 5qOIp8r6qX63XN24VWXpl098nwLvGq0/DW5APUjE= Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4ZX5MY5JCjz11kq; Tue, 8 Apr 2025 12:42:49 +0000 (UTC) Received: from [93.190.126.19] (mx1.investici.org [93.190.126.19]) (Authenticated sender: cayetano.santos@inventati.org) by localhost (Postfix) with ESMTPSA id 4ZX5MY4Cpbz11kf; Tue, 8 Apr 2025 12:42:49 +0000 (UTC) From: Cayetano Santos To: guix-patches@gnu.org Subject: [PATCH] gnu: libsigrokdecode: Update to 0.5.3-1.71f4514. Date: Tue, 8 Apr 2025 14:42:32 +0200 Message-ID: X-Mailer: git-send-email 2.49.0 MIME-Version: 1.0 X-Debbugs-Cc: Cayetano Santos , Ekaitz Zarraga , Maxim Cournoyer Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2a11:7980:1::2:0; envelope-from=csantosb@inventati.org; helo=confino.investici.org 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_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: Cayetano Santos 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: -0.1 (/) * gnu/packages/electronics.scm (libsigrokdecode): Update to 0.5.3-1.71f4514. [source]: Switch git repository. Change-Id: Iba584cc89798984c23867c8dd3e5a687c7410ff2 --- gnu/packages/electronics.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm index 09875e4d63..53604130d6 100644 --- a/gnu/packages/electronics.scm +++ b/gnu/packages/electronics.scm @@ -88,20 +88,20 @@ (define-public libserialport (license license:lgpl3+))) (define-public libsigrokdecode - (let ((commit "e6962b3fe8260382bb9932a1cfdd7ee7090ce267") - (revision "0")) + (let ((commit "71f451443029322d57376214c330b518efd84f88") + (revision "1")) (package (name "libsigrokdecode") (version (git-version "0.5.3" revision commit)) (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sigrokproject/libsigrokdecode") + (url "git://sigrok.org/libsigrokdecode") (commit commit))) (file-name (git-file-name name version)) (sha256 (base32 - "0ik93p6k8hpv8ahchjnmir8paz2w718y1j8pnmrmagjx8vvqd9y6")))) + "11l8vnf2khqbaqas7cfnq3f8q5w7am6nbkkd5mqj5kpb3ya2avb9")))) (outputs '("out" "doc")) (arguments `(#:phases base-commit: 1dab24555a494beb3db5a335c675f07043e77f1c -- 2.49.0 From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 09 04:14:24 2025 Received: (at 77639-done) by debbugs.gnu.org; 9 Apr 2025 08:14:24 +0000 Received: from localhost ([127.0.0.1]:37250 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1u2QZk-00051Z-AV for submit@debbugs.gnu.org; Wed, 09 Apr 2025 04:14:24 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:46540) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1u2QZh-00050m-6S for 77639-done@debbugs.gnu.org; Wed, 09 Apr 2025 04:14:21 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id AC6E2801; Wed, 9 Apr 2025 10:14:13 +0200 (CEST) Authentication-Results: hera.aquilenet.fr; none X-Virus-Scanned: Debian amavis at hera.aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavis, port 10024) with ESMTP id J_caVYQgE97F; Wed, 9 Apr 2025 10:14:12 +0200 (CEST) Received: from jurong (176-179-191-150.abo.bbox.fr [176.179.191.150]) by hera.aquilenet.fr (Postfix) with ESMTPSA id CAE21238; Wed, 9 Apr 2025 10:14:05 +0200 (CEST) Date: Wed, 9 Apr 2025 10:14:03 +0200 From: Andreas Enge To: Cayetano Santos Subject: Re: [PATCH] gnu: libsigrokdecode: Update to 0.5.3-1.71f4514. Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Rspamd-Server: hera X-Spamd-Bar: +++++++ X-Rspamd-Queue-Id: AC6E2801 X-Spamd-Result: default: False [7.64 / 15.00]; SPAM_FLAG(5.00)[]; NEURAL_SPAM(3.00)[1.000]; BAYES_HAM(-0.76)[84.24%]; MID_RHS_NOT_FQDN(0.50)[]; MIME_GOOD(-0.10)[text/plain]; MIME_TRACE(0.00)[0:+]; FROM_HAS_DN(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; FROM_EQ_ENVFROM(0.00)[]; RCPT_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; TO_DN_SOME(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; ARC_NA(0.00)[] X-Spam-Level: ******* X-Rspamd-Action: add header X-Spam: Yes X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 77639-done Cc: 77639-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: -1.0 (-) Pushed, thanks! Andreas From unknown Tue Jun 17 20:17:22 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 07 May 2025 11:24:17 +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