From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 19 05:16:44 2023 Received: (at submit) by debbugs.gnu.org; 19 Feb 2023 10:16:44 +0000 Received: from localhost ([127.0.0.1]:45746 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pTgkL-00075w-PC for submit@debbugs.gnu.org; Sun, 19 Feb 2023 05:16:44 -0500 Received: from lists.gnu.org ([209.51.188.17]:46588) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pTgkI-00075k-2n for submit@debbugs.gnu.org; Sun, 19 Feb 2023 05:16:40 -0500 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 1pTgkG-0006La-Uc for guix-patches@gnu.org; Sun, 19 Feb 2023 05:16:37 -0500 Received: from relay8-d.mail.gandi.net ([2001:4b98:dc4:8::228]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pTgkF-0001AT-1F for guix-patches@gnu.org; Sun, 19 Feb 2023 05:16:36 -0500 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id 9DA271BF203 for ; Sun, 19 Feb 2023 10:16:29 +0000 (UTC) From: Nicolas Goaziou To: guix-patches@gnu.org Subject: [PATCH] gnu: tlpui: Update to 1.5.0-6. Date: Sun, 19 Feb 2023 11:16:22 +0100 Message-Id: <20230219101622.138785-1-mail@nicolasgoaziou.fr> X-Mailer: git-send-email 2.39.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2001:4b98:dc4:8::228; envelope-from=mail@nicolasgoaziou.fr; helo=relay8-d.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 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 (--) * gnu/packages/linux.scm (tlpui): Update to 1.5.0-6. [arguments]<#:phases>: Rename USE-TLP-INPUT into SET-ABSOLUTE-LOCATIONS to be more accurate. Also add a new phase to skip failing tests. [inputs]: Add LSBUTILS and PCIUTILS. --- gnu/packages/linux.scm | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 33faf8920d..e6980388d7 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -11,7 +11,7 @@ ;;; Copyright © 2016, 2017 Alex Kost ;;; Copyright © 2016 Raymond Nicholson ;;; Copyright © 2016 Mathieu Lirzin -;;; Copyright © 2016, 2018-2022 Nicolas Goaziou +;;; Copyright © 2016, 2018-2023 Nicolas Goaziou ;;; Copyright © 2016, 2018, 2019, 2020, 2021, 2022 Ricardo Wurmus ;;; Copyright © 2016 David Craven ;;; Copyright © 2016 John Darrington @@ -7517,7 +7517,7 @@ (define (sbin-directory input-name) (define-public tlpui (package (name "tlpui") - (version "1.5.0-1") + (version "1.5.0-6") (source (origin (method git-fetch) @@ -7526,7 +7526,7 @@ (define-public tlpui (commit (string-append "tlpui-" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "16a6x733szsggn23ns7bj3gpvb80675plh96v4llrz0s8p3h47pg")))) + (base32 "0zxiciafq1xmb047jlyhipkkj4vaiw4jzbx71f6xgx559dy96paq")))) (build-system python-build-system) (arguments (list @@ -7537,16 +7537,21 @@ (define-public tlpui (lambda _ (substitute* "setup.py" (("/usr/") "")))) - (add-after 'unpack 'use-tlp-input - ;; Hard-code tlp-stat filename to avoid propagating "tlp". + (add-after 'unpack 'set-absolute-locations (lambda* (#:key inputs #:allow-other-keys) (let ((tlp-stat (search-input-file inputs "/bin/tlp-stat"))) (with-directory-excursion "tlpui" (substitute* '("file.py" "settingshelper.py" "statui.py") - (("which\\(\"tlp-stat\"\\)") - (string-append "'" tlp-stat "'")) (("\"tlp-stat\"") - (string-append "'" tlp-stat "'"))))))) + (string-append "'" tlp-stat "'")) + (("/usr/share/tlp/defaults.conf") + (search-input-file inputs "/share/tlp/defaults.conf"))) + ;; Settings check if various tlp executables, lspci and + ;; usbutils are available. Skip this phase since we know + ;; for sure they are (and it avoids patching each location). + (substitute* "settingshelper.py" + (("(command_exists = ).*" _ lead) + (string-append lead "True\n"))))))) (add-before 'check 'fix-home-directory (lambda _ ;; Tests fail with "Permission denied: @@ -7557,6 +7562,13 @@ (define-public tlpui ;; Connection refused" and "Error: cannot read user ;; configuration from /etc/tlp.conf or /etc/default/tlp". (delete 'sanity-check) + ;; Skip two failing tests (out of 10) about configuration file + ;; issues. + (add-before 'check 'skip-failing-tests + (lambda _ + (substitute* "test/test_tlp_settings.py" + ((".*?windowxsize = 900.*") "") + ((".*?windowysize = 600.*") "")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? @@ -7569,7 +7581,7 @@ (define-public tlpui (native-inputs (list `(,glib "bin") gobject-introspection python-discover)) (inputs - (list gtk+ python-pygobject tlp)) + (list gtk+ pciutils python-pygobject tlp usbutils)) (home-page "https://github.com/d4nj1/TLPUI") (synopsis "User interface for TLP written in Python") (description base-commit: 2fb42567ebd37cb63c431100021e1a895a2ff4b6 -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Fri Feb 24 07:16:53 2023 Received: (at 61620) by debbugs.gnu.org; 24 Feb 2023 12:16:53 +0000 Received: from localhost ([127.0.0.1]:36207 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVX0M-0001a5-TT for submit@debbugs.gnu.org; Fri, 24 Feb 2023 07:16:53 -0500 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:57159) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVX0J-0001Zp-Ds for 61620@debbugs.gnu.org; Fri, 24 Feb 2023 07:16:49 -0500 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id 6AD24E0005 for <61620@debbugs.gnu.org>; Fri, 24 Feb 2023 12:16:40 +0000 (UTC) From: Nicolas Goaziou To: 61620@debbugs.gnu.org Subject: [PATCH v2] gnu: tlpui: Update to 1.5.0-6. Date: Fri, 24 Feb 2023 13:16:33 +0100 Message-Id: <20230224121633.310678-1-mail@nicolasgoaziou.fr> X-Mailer: git-send-email 2.39.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 61620 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.7 (-) * gnu/packages/linux.scm (tlpui): Update to 1.5.0-6. [arguments]<#:phases>: Rename USE-TLP-INPUT into SET-ABSOLUTE-LOCATIONS to be more accurate. Also add a new phase to skip failing tests. [inputs]: Add LSBUTILS and PCIUTILS. --- gnu/packages/linux.scm | 42 ++++++++++++++++++++++++++++++++---------- 1 file changed, 32 insertions(+), 10 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 691e0d2edc..65c5171463 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -11,7 +11,7 @@ ;;; Copyright © 2016, 2017 Alex Kost ;;; Copyright © 2016 Raymond Nicholson ;;; Copyright © 2016 Mathieu Lirzin -;;; Copyright © 2016, 2018-2022 Nicolas Goaziou +;;; Copyright © 2016, 2018-2023 Nicolas Goaziou ;;; Copyright © 2016, 2018, 2019, 2020, 2021, 2022 Ricardo Wurmus ;;; Copyright © 2016 David Craven ;;; Copyright © 2016 John Darrington @@ -7517,7 +7517,7 @@ (define (sbin-directory input-name) (define-public tlpui (package (name "tlpui") - (version "1.5.0-1") + (version "1.5.0-6") (source (origin (method git-fetch) @@ -7526,7 +7526,7 @@ (define-public tlpui (commit (string-append "tlpui-" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "16a6x733szsggn23ns7bj3gpvb80675plh96v4llrz0s8p3h47pg")))) + (base32 "0zxiciafq1xmb047jlyhipkkj4vaiw4jzbx71f6xgx559dy96paq")))) (build-system python-build-system) (arguments (list @@ -7537,16 +7537,31 @@ (define-public tlpui (lambda _ (substitute* "setup.py" (("/usr/") "")))) - (add-after 'unpack 'use-tlp-input - ;; Hard-code tlp-stat filename to avoid propagating "tlp". + (add-after 'unpack 'set-absolute-locations (lambda* (#:key inputs #:allow-other-keys) - (let ((tlp-stat (search-input-file inputs "/bin/tlp-stat"))) + (let ((defaults.conf + (search-input-file inputs "/share/tlp/defaults.conf")) + (lspci (search-input-file inputs "/sbin/lspci")) + (lsusb (search-input-file inputs "/bin/lsusb")) + (tlp-stat (search-input-file inputs "/bin/tlp-stat"))) (with-directory-excursion "tlpui" (substitute* '("file.py" "settingshelper.py" "statui.py") - (("which\\(\"tlp-stat\"\\)") - (string-append "'" tlp-stat "'")) (("\"tlp-stat\"") - (string-append "'" tlp-stat "'"))))))) + (string-append "'" tlp-stat "'")) + (("/usr/share/tlp/defaults.conf") + (string-append "'" defaults.conf "'"))) + (substitute* "ui_config_objects/gtkusblist.py" + (("\"lsusb\"") + (string-append "'" lsusb "'"))) + (substitute* "ui_config_objects/gtkpcilist.py" + (("\"lspci\"") + (string-append "'" lspci "'"))) + ;; Settings check if various tlp executables, lspci and + ;; usbutils are available. Skip this phase since we know + ;; for sure they are (and it avoids patching each location). + (substitute* "settingshelper.py" + (("(command_exists = ).*" _ lead) + (string-append lead "True\n"))))))) (add-before 'check 'fix-home-directory (lambda _ ;; Tests fail with "Permission denied: @@ -7557,6 +7572,13 @@ (define-public tlpui ;; Connection refused" and "Error: cannot read user ;; configuration from /etc/tlp.conf or /etc/default/tlp". (delete 'sanity-check) + ;; Skip two failing tests (out of 10) about configuration file + ;; issues. + (add-before 'check 'skip-failing-tests + (lambda _ + (substitute* "test/test_tlp_settings.py" + ((".*?windowxsize = 900.*") "") + ((".*?windowysize = 600.*") "")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? @@ -7569,7 +7591,7 @@ (define-public tlpui (native-inputs (list `(,glib "bin") gobject-introspection python-discover)) (inputs - (list gtk+ python-pygobject tlp)) + (list gtk+ pciutils python-pygobject tlp usbutils)) (home-page "https://github.com/d4nj1/TLPUI") (synopsis "User interface for TLP written in Python") (description base-commit: e36ac715518387686bd8165e1724ce54984ee0ee -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Sat Mar 04 12:42:21 2023 Received: (at 61620) by debbugs.gnu.org; 4 Mar 2023 17:42:21 +0000 Received: from localhost ([127.0.0.1]:37675 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYVtl-0007F6-JC for submit@debbugs.gnu.org; Sat, 04 Mar 2023 12:42:21 -0500 Received: from eggs.gnu.org ([209.51.188.92]:43024) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYVtj-0007Er-Tb for 61620@debbugs.gnu.org; Sat, 04 Mar 2023 12:42:20 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pYVte-0005M1-36; Sat, 04 Mar 2023 12:42:14 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=iD5CgxugjHmlQNdGuVTayXt9jOVGpkKkz75uqmUD31Y=; b=gD/p0H7T8bOtMNudyOHg 4Njk9CCW+w86m/MX3U1a7PzZOpNgdzenB1fMj3/DMTZj6zlNPZaWfDYwDv3ql1F01SAX6DumkiOfW SxYNNCbcaAMjgCEWC34Hk5x1aiNVbJYzEm+wBLi/hH1E3YKHqt4X5h4vRjLJaH+5i/LjdLqm1zDjU Qa4uqw6UWw3kNDcCe9L41Jxx5HTEnHby/bTLvfGMErYHWz/rZWZ8LaYaGl+7gIQiv5iNnft+/qhbn MciK1aP1mjvAJkrl9RWVIY89ZMl6vHv/25IXEI1c0rWBGPPYl6o2ptn8GHRMpRxvNcuKq+XIDRy+L 4dZAu+OjDNf6qQ==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201] helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pYVtd-00018N-Fi; Sat, 04 Mar 2023 12:42:13 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Nicolas Goaziou Subject: Re: bug#61620: [PATCH] gnu: tlpui: Update to 1.5.0-6. References: <20230219101622.138785-1-mail@nicolasgoaziou.fr> <20230224121633.310678-1-mail@nicolasgoaziou.fr> Date: Sat, 04 Mar 2023 18:42:12 +0100 In-Reply-To: <20230224121633.310678-1-mail@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Fri, 24 Feb 2023 13:16:33 +0100") Message-ID: <87ttz0pg5n.fsf_-_@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 61620 Cc: 61620@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: -3.3 (---) Hi, Nicolas Goaziou skribis: > * gnu/packages/linux.scm (tlpui): Update to 1.5.0-6. > [arguments]<#:phases>: Rename USE-TLP-INPUT into SET-ABSOLUTE-LOCATIONS to > be more accurate. Also add a new phase to skip failing tests. > [inputs]: Add LSBUTILS and PCIUTILS. This triggers 3 build failures according to . Could you take a look? Thanks, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Sat Mar 04 13:33:56 2023 Received: (at 61620) by debbugs.gnu.org; 4 Mar 2023 18:33:56 +0000 Received: from localhost ([127.0.0.1]:37720 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYWhf-0000F0-V6 for submit@debbugs.gnu.org; Sat, 04 Mar 2023 13:33:56 -0500 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:42497) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYWhd-0000Ei-0d for 61620@debbugs.gnu.org; Sat, 04 Mar 2023 13:33:53 -0500 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id CB22B20002; Sat, 4 Mar 2023 18:33:45 +0000 (UTC) From: Nicolas Goaziou To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#61620] [PATCH] gnu: tlpui: Update to 1.5.0-6. References: <20230219101622.138785-1-mail@nicolasgoaziou.fr> <20230224121633.310678-1-mail@nicolasgoaziou.fr> <87ttz0pg5n.fsf_-_@gnu.org> Date: Sat, 04 Mar 2023 19:33:37 +0100 In-Reply-To: <87ttz0pg5n.fsf_-_@gnu.org> ("Ludovic =?utf-8?Q?Court=C3=A8s?= =?utf-8?Q?=22's?= message of "Sat, 04 Mar 2023 18:42:12 +0100") Message-ID: <87a60s2wou.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 61620 Cc: 61620@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.7 (-) Hello, Ludovic Court=C3=A8s writes: > This triggers 3 build failures according to > . Could you take a look? I don't understand where those failures are coming from. The tlpui package has no dependents packages. Besides, following the "3" link leads to a page that I cannot parse either. Could someone explain where to look at? Regards, --=20 Nicolas Goaziou From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 08 05:17:29 2023 Received: (at 61620) by debbugs.gnu.org; 8 Mar 2023 10:17:29 +0000 Received: from localhost ([127.0.0.1]:47832 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pZqrR-0004YI-8z for submit@debbugs.gnu.org; Wed, 08 Mar 2023 05:17:29 -0500 Received: from mail-wm1-f54.google.com ([209.85.128.54]:33759) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pZqrL-0004Xb-UD for 61620@debbugs.gnu.org; Wed, 08 Mar 2023 05:17:24 -0500 Received: by mail-wm1-f54.google.com with SMTP id p23-20020a05600c1d9700b003ead4835046so1987557wms.0 for <61620@debbugs.gnu.org>; Wed, 08 Mar 2023 02:17:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1678270638; h=content-transfer-encoding:mime-version:message-id:date:references :in-reply-to:subject:cc:to:from:from:to:cc:subject:date:message-id :reply-to; bh=m5oMSUiPQWPzaGg70UCxv9Jfgm9A3AW6liZvoa61Y8E=; b=VS4rLQvJa7UAguHjdjT5VL3nTU7BeROh3EfxokVe9uI9bAshH/CXLfu8wNdTbvp7Nl kxNxyjXPtCDFGKQwqrkm3meCX6lgjJraQQX/bm0RLeV6129XHpLqbXJWlLRdhUetCBXS uOGo0Vi6MBYGAbC2jak9NSc9Zmib7Z2cBNqcDzwCbymQABkaOMLRZT6hG9HbJUwhCL4H jNBvHpWIXKUs3gCWshgfvo23WOnDF+PNiK0K2nPoq4JL68xzHHC63ZffGD/kaKs2oKuX cUDnbSvDEBULQtu2y+bKvuOL4lxWm2gBqTC9w3Q6lziRu2fQpD9CM13irSL8aVG/qZmS 1Jcw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1678270638; h=content-transfer-encoding:mime-version:message-id:date:references :in-reply-to:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=m5oMSUiPQWPzaGg70UCxv9Jfgm9A3AW6liZvoa61Y8E=; b=tMlNhPFZ9O4bz2YLb5rpqagg9XNm6exhJ3ZS1odCQqo7uDCDZ7bQRRGoPbd6Hm3tGm O0+u0CmATRT8DF0QY1duKTKBiUfy48CG7yymtKTmAT9W2vNhJZs1qJRtJVzKWGTFVdPn wOvZfbV+Ipdijg0cWwfx9krgCtVuKDpTzryl2X6JJSuJxwpmhdvA7Wko2N0NHdbyCFzh Bo31a09bcvIG9MR6DhCO6mp5FtZAh7x/KnY8TI1qghku+Nac2Kvh5nw1WLaO1HdwGa3Z pOQEmRp4WVQD2580l47zr1oWXCjgsASPb+RVGL+oGUAfaa2+LgXQ+eSp4uXvJWy8Hwij TrGw== X-Gm-Message-State: AO0yUKUGLg6/dF8UH2PXsIMEWUfTuH0baPUH7WsD3CDxwJf6sRt76QrV uk8uVBVYXo+8G80RBFkaZIHnycf4lgU= X-Google-Smtp-Source: AK7set9Nd4KAqMQ+bWiJqz715KApC7oOyPJ+OuHyZw4CF/aMb/eSU9cNMhCFNQqsTbD/IPeW3tM0Ew== X-Received: by 2002:a05:600c:3ca3:b0:3dc:5b88:e706 with SMTP id bg35-20020a05600c3ca300b003dc5b88e706mr14366696wmb.1.1678270638275; Wed, 08 Mar 2023 02:17:18 -0800 (PST) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id p21-20020a05600c431500b003daf672a616sm15063222wme.22.2023.03.08.02.17.17 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 08 Mar 2023 02:17:18 -0800 (PST) From: Simon Tournier To: Nicolas Goaziou , Ludovic =?utf-8?Q?Court?= =?utf-8?Q?=C3=A8s?= , Christopher Baines Subject: Re: [bug#61620] [PATCH] gnu: tlpui: Update to 1.5.0-6. In-Reply-To: <87a60s2wou.fsf@nicolasgoaziou.fr> References: <20230219101622.138785-1-mail@nicolasgoaziou.fr> <20230224121633.310678-1-mail@nicolasgoaziou.fr> <87ttz0pg5n.fsf_-_@gnu.org> <87a60s2wou.fsf@nicolasgoaziou.fr> Date: Wed, 08 Mar 2023 11:07:41 +0100 Message-ID: <86bkl38sk2.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61620 Cc: 61620@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 (-) Hi Chris, On Sat, 04 Mar 2023 at 19:33, Nicolas Goaziou wrot= e: > Ludovic Court=C3=A8s writes: > >> This triggers 3 build failures according to >> . Could you take a look? > > I don't understand where those failures are coming from. The tlpui > package has no dependents packages. Besides, following the "3" link > leads to a page that I cannot parse either. > > Could someone explain where to look at? Clicking on the =E2=80=9C3=E2=80=9D from leads to which displays nothing: Showing 0 new derivations across 0 packages Moreover, clicking on lists many that does not seem related to =E2=80=99tlpui=E2=80=99. This story looks like #61616. Since in both cases it seems an issue with Open MPI and it had been fixed by 9ae4846c502b75867b83180bb65d422ff838e4e6, are these 3 failures relevant? Cheers, simon From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 08 10:13:18 2023 Received: (at 61620) by debbugs.gnu.org; 8 Mar 2023 15:13:18 +0000 Received: from localhost ([127.0.0.1]:49905 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pZvTh-00076f-Vy for submit@debbugs.gnu.org; Wed, 08 Mar 2023 10:13:18 -0500 Received: from mira.cbaines.net ([212.71.252.8]:42352) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pZvTf-00076W-Ef for 61620@debbugs.gnu.org; Wed, 08 Mar 2023 10:13:16 -0500 Received: from localhost (unknown [IPv6:2a02:8010:68c1:0:54d1:d5d4:280e:f699]) by mira.cbaines.net (Postfix) with ESMTPSA id 965F616DBD; Wed, 8 Mar 2023 15:13:14 +0000 (GMT) Received: from felis (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id d7b6dc07; Wed, 8 Mar 2023 15:13:13 +0000 (UTC) References: <20230219101622.138785-1-mail@nicolasgoaziou.fr> <20230224121633.310678-1-mail@nicolasgoaziou.fr> <87ttz0pg5n.fsf_-_@gnu.org> <87a60s2wou.fsf@nicolasgoaziou.fr> <86bkl38sk2.fsf@gmail.com> User-agent: mu4e 1.8.13; emacs 28.2 From: Christopher Baines To: Simon Tournier Subject: Re: [bug#61620] [PATCH] gnu: tlpui: Update to 1.5.0-6. Date: Wed, 08 Mar 2023 15:06:44 +0000 In-reply-to: <86bkl38sk2.fsf@gmail.com> Message-ID: <877cvrqnso.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 61620 Cc: Ludovic =?utf-8?Q?Court=C3=A8s?= , 61620@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 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Simon Tournier writes: > Clicking on the =E2=80=9C3=E2=80=9D from leads to > > which displays nothing: > > Showing 0 new derivations across 0 packages > > Moreover, clicking on > > lists many that does not seem related to =E2=80=99tlpui=E2=80=99. > > This story looks like #61616. > > > > Since in both cases it seems an issue with Open MPI and it had been > fixed by 9ae4846c502b75867b83180bb65d422ff838e4e6, are these 3 failures > relevant? They are indeed not relevant to the changes here. They are detected as changing because the derivations do change, but that's because they change every time you try and compute them, rather than changing as a result from the patches here. I think a way to avoid this would be to have the error happen earlier, so rather than waiting until you try and build the derivation, try to detect that the builder script can't be read when it's being created. I can't see an easy way to do that, but I've filed an issue about it: https://issues.guix.gnu.org/62051 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmQIpgdfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9XeBIQ//bLmofWS2Lw8m67WvfaPtVYxjPGdY3+a+ n+B/hFBmcFP8H++SWX62nC+ptXuoFgPXDXwywwV5tl3n7JNCWSwc9JoxLwpecV3S ZgcD8tNPY1ZaXOyS7oIrjnwBeRTU5GzHavIvcr/WT4d4ipXgvETs0Xm2q6YpLFXS WItgiCK+JdYrkhzcP8tp01pEsDSL6WA9q8M9gONkLgaxtJQu+rOwLufwC53RGdxa NaEOvRCzr127D+ypZBVvWGVVyXMWy2FwpFcB8rmq15lND7ymh40E+wT1Dd/xQxhy 2fSNHQWswMiln67Gt4IGUDB+4vIoAUnDiFSAhmpPIAzjofoWqieeDRmWDD39uCJ0 gGosHA2M4awvDG0AZouESf/HGeYWsGvVDVdoN6WZvBP1YmA4bLQhPmKVMf2Psqaq NueWkTg1qhTBrhN0R9pFkjuCfi4zl9wbhHb3EQ9bI4uYNaLq312ySrxR7jOObXFz 2aPwLvZJxZLh437xiW7dWo5wFyRgxPvSJ1xMdx8F5KV/1535fT54CxvcHW3YWmpl cqzHTic93qYsZmCOkbZ8Qt9Gjn29GoAmkoghFptChx5Z0eLfexVY2Gxl5Lj7UT6v es/8cnKGY2cohNQ5kMztbOwH4IcgrZkEXK8NrdSHr00Rgsq3q1KTxFqddUL2HoZV Uiqvn3tioXs= =tYK8 -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 08 13:12:20 2023 Received: (at 61620-done) by debbugs.gnu.org; 8 Mar 2023 18:12:20 +0000 Received: from localhost ([127.0.0.1]:50187 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pZyGx-0003gY-U1 for submit@debbugs.gnu.org; Wed, 08 Mar 2023 13:12:20 -0500 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:50021) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pZyGv-0003gH-Aq for 61620-done@debbugs.gnu.org; Wed, 08 Mar 2023 13:12:18 -0500 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id 5132260008; Wed, 8 Mar 2023 18:12:09 +0000 (UTC) From: Nicolas Goaziou To: Christopher Baines Subject: Re: [bug#61620] [PATCH] gnu: tlpui: Update to 1.5.0-6. References: <20230219101622.138785-1-mail@nicolasgoaziou.fr> <20230224121633.310678-1-mail@nicolasgoaziou.fr> <87ttz0pg5n.fsf_-_@gnu.org> <87a60s2wou.fsf@nicolasgoaziou.fr> <86bkl38sk2.fsf@gmail.com> <877cvrqnso.fsf@cbaines.net> Date: Wed, 08 Mar 2023 19:12:02 +0100 In-Reply-To: <877cvrqnso.fsf@cbaines.net> (Christopher Baines's message of "Wed, 08 Mar 2023 15:06:44 +0000") Message-ID: <87sfef6rkd.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 61620-done Cc: 61620-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.7 (-) Hello, Christopher Baines writes: > They are indeed not relevant to the changes here. They are detected as > changing because the derivations do change, but that's because they > change every time you try and compute them, rather than changing as a > result from the patches here. > > I think a way to avoid this would be to have the error happen earlier, > so rather than waiting until you try and build the derivation, try to > detect that the builder script can't be read when it's being created. I > can't see an easy way to do that, but I've filed an issue about it: > https://issues.guix.gnu.org/62051 Meanwhile, this looks like a green flag for the current package, so I applied the patch. Thanks for the feedback. Regards, -- Nicolas Goaziou From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 10 07:09:30 2023 Received: (at 61620) by debbugs.gnu.org; 10 Mar 2023 12:09:30 +0000 Received: from localhost ([127.0.0.1]:53937 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pabYv-0005Ww-Uu for submit@debbugs.gnu.org; Fri, 10 Mar 2023 07:09:30 -0500 Received: from mail-wm1-f52.google.com ([209.85.128.52]:34548) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pabYo-0005Vt-Nw for 61620@debbugs.gnu.org; Fri, 10 Mar 2023 07:09:23 -0500 Received: by mail-wm1-f52.google.com with SMTP id o38-20020a05600c512600b003e8320d1c11so4692052wms.1 for <61620@debbugs.gnu.org>; Fri, 10 Mar 2023 04:09:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1678450157; h=mime-version:message-id:date:references:in-reply-to:subject:cc:to :from:from:to:cc:subject:date:message-id:reply-to; bh=SbN9bWKzwzWgWvyX3M74Y+Cr4797BRk/QDTGLeOX3n4=; b=Q3kyf9Q6V9UJczZpU8cQE22yMUBOFKkQzPpYW/H5o1rhs6ujKe9LGAzVoOwlxlXoQm CLh8ypPiAWYzXpFI5CuGU0Qi4YIvL8Z4n1ric46sFOZmdXTI+ih3rWixklRI/zhq4rGg C9zrYoFX0FoWuay/IraRvGQcOff3n/k0WIyZpElJIBFgi8hhrp1gzLo5QeSL4sIVxRRi YZPP4sdBeLGiTuAFWBzwkXzOu95AC9ouFbfUovZ7WEUBLX4G4o+lsYOYFbEJhk+v4wtI IEZGkyU6QOmI+ygOfLuv3S+wToQM/Sr11fAryTzKU6DTTOpEaGGlkZ3e/0WIrzrDgJDv ERDA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1678450157; h=mime-version:message-id:date:references:in-reply-to:subject:cc:to :from:x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=SbN9bWKzwzWgWvyX3M74Y+Cr4797BRk/QDTGLeOX3n4=; b=bigXA/1Uu4ZvCxYo1+mDRuQKrO+DyyAb5HWAYqjjMUsHDEi6qic2WecnzkONDSaP9f vPKUZnVC2pybX7Xl87HHgpXcOqJr9dLxefGmuVVrVYg3zQNSyjNGMWqdEihMnrJGwBgL ns1GFHu7WHNFuIQLZicWqFemiGYtywH2HkAf3Bi+qzH3GW0ojw4un+U/cYbK9GrPWqch hqf3Pvw5jpN4fpnd8eIR58OW2qPkmQ75rNXP7+09nSO+dPr+4l+GZIuVJgv8hRuekOso Lnoxw26c5NN+5QIvVhGag9W/VpxZi57bItcEC82gXSNusCOcBHmJ6KvVDEKHFgQDsFVv WtNQ== X-Gm-Message-State: AO0yUKVt8J8BnjWB8BxRuxjrxAttGoJ6Yuh6FezmG4M8Ja2YwQiZU7e0 cTpY/p7N8RZ7Ag9wNrq0YQZfTxr9MWs= X-Google-Smtp-Source: AK7set9Y9C6d8RhTtYKhrLzinysC5EgndCe+AwBynA2okj+njWj4aIrYb1TjnF1+hlnye68TqEOtkQ== X-Received: by 2002:a05:600c:1d13:b0:3e9:b564:fae4 with SMTP id l19-20020a05600c1d1300b003e9b564fae4mr4734524wms.0.1678450157322; Fri, 10 Mar 2023 04:09:17 -0800 (PST) Received: from pfiuh07 ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id c18-20020a7bc012000000b003e21ba8684dsm1925408wmb.26.2023.03.10.04.09.16 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 10 Mar 2023 04:09:17 -0800 (PST) From: Simon Tournier To: Christopher Baines Subject: Re: [bug#61620] [PATCH] gnu: tlpui: Update to 1.5.0-6. In-Reply-To: <877cvrqnso.fsf@cbaines.net> References: <20230219101622.138785-1-mail@nicolasgoaziou.fr> <20230224121633.310678-1-mail@nicolasgoaziou.fr> <87ttz0pg5n.fsf_-_@gnu.org> <87a60s2wou.fsf@nicolasgoaziou.fr> <86bkl38sk2.fsf@gmail.com> <877cvrqnso.fsf@cbaines.net> Date: Fri, 10 Mar 2023 12:51:41 +0100 Message-ID: <87zg8kn7si.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61620 Cc: Ludovic =?utf-8?Q?Court=C3=A8s?= , 61620@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 (-) Hi Chris,, On mer., 08 mars 2023 at 15:06, Christopher Baines wrote: > I think a way to avoid this would be to have the error happen earlier, > so rather than waiting until you try and build the derivation, try to > detect that the builder script can't be read when it's being created. I > can't see an easy way to do that, but I've filed an issue about it: > https://issues.guix.gnu.org/62051 Thanks for explaining. Hum, indeed #62051 does not seem easy. :-) Cheers, simon From unknown Mon Aug 18 04:42:39 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 08 Apr 2023 11:24:06 +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