From unknown Tue Jun 17 22:24:36 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#50035] [PATCH 1/3] gnu: go-github-com-godbus-dbus: Update to 5.0.4. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 13 Aug 2021 03:08:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 50035 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 50035@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16288240396272 (code B ref -1); Fri, 13 Aug 2021 03:08:02 +0000 Received: (at submit) by debbugs.gnu.org; 13 Aug 2021 03:07:19 +0000 Received: from localhost ([127.0.0.1]:40170 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mENXS-0001d6-Ms for submit@debbugs.gnu.org; Thu, 12 Aug 2021 23:07:18 -0400 Received: from lists.gnu.org ([209.51.188.17]:56906) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mENXO-0001cu-2b for submit@debbugs.gnu.org; Thu, 12 Aug 2021 23:07:17 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:52344) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mENXL-00060k-5I for guix-patches@gnu.org; Thu, 12 Aug 2021 23:07:12 -0400 Received: from out2.migadu.com ([188.165.223.204]:48319) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mENXF-0007Ek-Fb for guix-patches@gnu.org; Thu, 12 Aug 2021 23:07:10 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mgsn.dev; s=key1; t=1628824021; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=CaK1yVE4tEEKbvDZ0U5lRwO50914FRg27YEdPBptqR4=; b=PCodGaNaBRM3v+eN12e2h+RujiNeAE2ToOmTLu4+/8pURFasgq4RGxqRv6QJOi+2YI2rKM UZb/gb2uLFcEHAdS/IhbWp43Lda+w+F40PRM0fgXMLZLR+jK44KTcWLJvHoYq4/KNpyqe4 DOa3fjUjFLq74OfRQAyzCOP4H01ZCxs= From: Sarah Morgensen Date: Thu, 12 Aug 2021 20:06:57 -0700 Message-Id: <5d1fcc896c0f6f63e1664f0eadabf73f0965110b.1628823527.git.iskarian@mgsn.dev> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev Received-SPF: pass client-ip=188.165.223.204; envelope-from=iskarian@mgsn.dev; helo=out2.migadu.com 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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.4 (--) * gnu/packages/golang.scm (go-github-com-godbus-dbus): Update to 5.0.4. --- While I was updating this, I renamed it to match the proper import path (so the Go importer sees this package), and fixed those pesky D-Bus tests. -- Sarah gnu/packages/golang.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index f4cd30c662..15826514bc 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -7424,7 +7424,7 @@ and @code{ioutil} packages that is easy to test.") (define-public go-github-com-godbus-dbus (package (name "go-github-com-godbus-dbus") - (version "5.0.3") + (version "5.0.4") (source (origin (method git-fetch) (uri (git-reference @@ -7433,7 +7433,7 @@ and @code{ioutil} packages that is easy to test.") (file-name (git-file-name name version)) (sha256 (base32 - "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) + "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) (build-system go-build-system) (arguments `(#:tests? #f ;no /var/run/dbus/system_bus_socket base-commit: d87d6d68128c53a95fe09c3a4381575646c0f368 -- 2.31.1 From unknown Tue Jun 17 22:24:36 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#50035] [PATCH 2/3] gnu: Rename go-github-com-godbus-dbus to go-github-com-godbus-dbus-v5. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 13 Aug 2021 03:14:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 50035 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 50035@debbugs.gnu.org Received: via spool by 50035-submit@debbugs.gnu.org id=B50035.16288243926834 (code B ref 50035); Fri, 13 Aug 2021 03:14:01 +0000 Received: (at 50035) by debbugs.gnu.org; 13 Aug 2021 03:13:12 +0000 Received: from localhost ([127.0.0.1]:40176 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mENd6-0001m5-CB for submit@debbugs.gnu.org; Thu, 12 Aug 2021 23:13:12 -0400 Received: from out1.migadu.com ([91.121.223.63]:15504) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mENd1-0001li-30 for 50035@debbugs.gnu.org; Thu, 12 Aug 2021 23:13:07 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mgsn.dev; s=key1; t=1628824381; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=4WLY6MJJS2P74wSigofzNF7KzNkA6kEsXJsA1dLfi68=; b=BH+m+ytUYDXEHWRq4Fc5p759go3/s+kw6mOQRITahQxHwB7S5vQQjOHz2xvu7VwFVdpDRh WVGD2ppgken4hVbe8seHVU1mfx4kdx8pxEyMgiZJCCLbpmo/WGBtxIn90oBOwDCBYfMZmE mtUFhZjh1aCbYDMlGlhRNh7Ev73IOWM= From: Sarah Morgensen Date: Thu, 12 Aug 2021 20:12:58 -0700 Message-Id: <1b0b614cc139e92b3a7f85de4bd9ade96f1678f6.1628823527.git.iskarian@mgsn.dev> In-Reply-To: <5d1fcc896c0f6f63e1664f0eadabf73f0965110b.1628823527.git.iskarian@mgsn.dev> References: <5d1fcc896c0f6f63e1664f0eadabf73f0965110b.1628823527.git.iskarian@mgsn.dev> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev X-Spam-Score: -0.7 (/) 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 (-) The proper module name now includes "-v5" (see project's go.mod). Change the variable/package name to help the Go importer find it. * gnu/packages/golang.scm (go-github-com-godbus-dbus): Rename to... (go-github-com-godbus-dbus-v5): ...this. (go-github-com-zalando-go-keyring)[native-inputs]: Adjust accordingly. * gnu/packages/configuration-management.scm (chezmoi): Likewise. --- gnu/packages/configuration-management.scm | 2 +- gnu/packages/golang.scm | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/configuration-management.scm b/gnu/packages/configuration-management.scm index 9aee13a172..8b4ba2b71e 100644 --- a/gnu/packages/configuration-management.scm +++ b/gnu/packages/configuration-management.scm @@ -91,7 +91,7 @@ ("go-github-com-twpayne-go-xdg" ,go-github-com-twpayne-go-xdg) ("go-github-com-yuin-goldmark" ,go-github-com-yuin-goldmark) ("go-github-com-zalando-go-keyring" ,go-github-com-zalando-go-keyring) - ("go-github-com-godbus-dbus" ,go-github-com-godbus-dbus) + ("go-github-com-godbus-dbus-v5" ,go-github-com-godbus-dbus-v5) ("go-etcd-io-bbolt" ,go-etcd-io-bbolt) ("go-golang-org-x-crypto" ,go-golang-org-x-crypto) ("go-golang-org-x-net" ,go-golang-org-x-net) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 15826514bc..359c5a987d 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -7421,9 +7421,9 @@ and @code{ioutil} packages that is easy to test.") @uref{freedesktop.org}.") (license license:expat))) -(define-public go-github-com-godbus-dbus +(define-public go-github-com-godbus-dbus-v5 (package - (name "go-github-com-godbus-dbus") + (name "go-github-com-godbus-dbus-v5") (version "5.0.4") (source (origin (method git-fetch) @@ -7464,7 +7464,7 @@ bindings for the D-Bus message bus system.") `(#:tests? #f ;XXX: Fix dbus tests #:import-path "github.com/zalando/go-keyring")) (native-inputs - `(("go-github-com-godbus-dbus" ,go-github-com-godbus-dbus) + `(("go-github-com-godbus-dbus-v5" ,go-github-com-godbus-dbus-v5) ("dbus" ,dbus))) (home-page "https://github.com/zalando/go-keyring/") (synopsis "Library for working with system keyring") -- 2.31.1 From unknown Tue Jun 17 22:24:36 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#50035] [PATCH 3/3] gnu: go-github-com-godbus-dbus-v5: Fix and enable tests. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 13 Aug 2021 03:14:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 50035 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 50035@debbugs.gnu.org Received: via spool by 50035-submit@debbugs.gnu.org id=B50035.16288243966846 (code B ref 50035); Fri, 13 Aug 2021 03:14:02 +0000 Received: (at 50035) by debbugs.gnu.org; 13 Aug 2021 03:13:16 +0000 Received: from localhost ([127.0.0.1]:40178 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mENdA-0001mB-Nj for submit@debbugs.gnu.org; Thu, 12 Aug 2021 23:13:16 -0400 Received: from out1.migadu.com ([91.121.223.63]:15517) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mENd1-0001lp-Rv for 50035@debbugs.gnu.org; Thu, 12 Aug 2021 23:13:07 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mgsn.dev; s=key1; t=1628824383; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=cCtFxbZgYHMwPEBib9YeWnfgoQ+LAdhvDLLlCaBRN0o=; b=Ze+34eBgYhh3IacKxKT3ZroAwv8qekX1pUYT5n8uNrSVM4FCj8c9p1qxCuYVxwh/Q5n/QY JO04o1mi8k3gHlRT4emMCe850FcZZh8bTS9u7RyE/EQb9dhXXHrQR5GFsDFY+WHFuLrzRy 1H1B3Nyi1dQayFb7RNqxaoho4pXZ2QU= From: Sarah Morgensen Date: Thu, 12 Aug 2021 20:12:59 -0700 Message-Id: In-Reply-To: <5d1fcc896c0f6f63e1664f0eadabf73f0965110b.1628823527.git.iskarian@mgsn.dev> References: <5d1fcc896c0f6f63e1664f0eadabf73f0965110b.1628823527.git.iskarian@mgsn.dev> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev X-Spam-Score: -0.7 (/) 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 (-) Disable system D-Bus tests. Fix session D-Bus tests by running them within our own session. * gnu/packages/golang.scm (go-github-com-godbus-dbus-v5)[source]: Add snippet to disable system D-Bus tests. [arguments]: Enable tests, override 'check phase to run tests within a dbus session. --- gnu/packages/golang.scm | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 359c5a987d..28ead635f2 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -7431,13 +7431,27 @@ and @code{ioutil} packages that is easy to test.") (url "https://github.com/godbus/dbus") (commit (string-append "v" version)))) (file-name (git-file-name name version)) + (modules '((guix build utils))) + (snippet + '(begin + ;; Disable tests which require a system D-Bus instance. + (substitute* "conn_test.go" + (("func TestSystemBus") + "func DisabledTestSystemBus") + (("func TestConnectSystemBus") + "func DisabledTestConnectSystemBus")))) (sha256 (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) (build-system go-build-system) (arguments - `(#:tests? #f ;no /var/run/dbus/system_bus_socket - #:import-path "github.com/godbus/dbus")) + `(#:import-path "github.com/godbus/dbus" + #:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? import-path #:allow-other-keys) + (when tests? + (invoke "dbus-run-session" "--" "go" "test" import-path))))))) (native-inputs `(("dbus" ,dbus))) ;dbus-launch (home-page "https://github.com/godbus/dbus/") -- 2.31.1 From unknown Tue Jun 17 22:24:36 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#50035] [PATCH 1/3] gnu: go-github-com-godbus-dbus: Update to 5.0.4. References: <5d1fcc896c0f6f63e1664f0eadabf73f0965110b.1628823527.git.iskarian@mgsn.dev> In-Reply-To: <5d1fcc896c0f6f63e1664f0eadabf73f0965110b.1628823527.git.iskarian@mgsn.dev> Resent-From: John Kehayias Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 13 Aug 2021 19:13:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 50035 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: "50035@debbugs.gnu.org" <50035@debbugs.gnu.org> Reply-To: John Kehayias Received: via spool by 50035-submit@debbugs.gnu.org id=B50035.162888197210986 (code B ref 50035); Fri, 13 Aug 2021 19:13:01 +0000 Received: (at 50035) by debbugs.gnu.org; 13 Aug 2021 19:12:52 +0000 Received: from localhost ([127.0.0.1]:43075 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mEcbo-0002r2-SO for submit@debbugs.gnu.org; Fri, 13 Aug 2021 15:12:52 -0400 Received: from mail-4316.protonmail.ch ([185.70.43.16]:54309) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mEcbj-0002qf-QX for 50035@debbugs.gnu.org; Fri, 13 Aug 2021 15:12:48 -0400 Date: Fri, 13 Aug 2021 19:12:34 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1628881956; bh=SMoYfrB5tPeL9cLz1XH2D5xfhTRAm94UiPgOCgpSZyY=; h=Date:To:From:Reply-To:Subject:From; b=U4fhYaSROkhMmVQ5QJhGAQeQ2UijOTeTD9LmNTUX3FZVbDDDoeg4IiYFzUlAXinVb F9Zy8JbwwxYpF8fEej+8jti7MYWWywkbsCiKpMkEOyW8qf199pt1elyC4pehSK02aj z6xiozlxEaluFXY7MCaLVYXe4bIWf35i/NLT0lSI= From: John Kehayias Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch X-Spam-Score: 0.0 (/) 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 (-) I was just working on another package that needs the current version of god= bus-dbus, so thanks for this patch. I haven't yet built your version, but p= reviously I had to disable tests that it looks like you fixed, great! From unknown Tue Jun 17 22:24:36 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#50035] [PATCH 1/3] gnu: go-github-com-godbus-dbus: Update to 5.0.4. Resent-From: John Kehayias Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 04 Feb 2022 20:07:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 50035 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: "50035@debbugs.gnu.org" <50035@debbugs.gnu.org> Reply-To: John Kehayias Received: via spool by 50035-submit@debbugs.gnu.org id=B50035.16440052165224 (code B ref 50035); Fri, 04 Feb 2022 20:07:02 +0000 Received: (at 50035) by debbugs.gnu.org; 4 Feb 2022 20:06:56 +0000 Received: from localhost ([127.0.0.1]:32908 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nG4rA-0001MC-Kh for submit@debbugs.gnu.org; Fri, 04 Feb 2022 15:06:56 -0500 Received: from mail-4316.protonmail.ch ([185.70.43.16]:53483) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nG4r8-0001Lz-FY for 50035@debbugs.gnu.org; Fri, 04 Feb 2022 15:06:55 -0500 Date: Fri, 04 Feb 2022 20:06:46 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail2; t=1644005207; bh=hkNlnN227WCv46NsimqgHinP6x4FQjyv0HoLZ23PlNY=; h=Date:To:From:Reply-To:Subject:Message-ID:In-Reply-To:References: From:To:Cc; b=CONGTqSSCp/GBqsThYzgLsu3/Yzx/8ec4vcsYDPNDWNguSHhlDnjZ0u6fhU7vy+XV Tx5k7wEv8vdf5SLFDG/M0HicD7cLSgJSLVkCRLLhsiwTcMpyPXPQoMvW2mRWJsN5TX BRPskRUflh0+JMjZtqpubxdGxF1C0S+qNh6Oh8Z1CYd/CMU2Xzv67TD9zU81HWv0QQ CtKIVZqJU+HTDrqWehn53FXQGKiAgj7tptIET0eWmiy8XNenh2JY9ac9dF6hg5L3rn okUciRaZJ3XQiO7zbDRR2ckg/QMKZiu8UXw2TRk9DRiqIKQUdiRL3kFrh58oN10uU7 1iQtI5VFoMY3Q== From: John Kehayias Message-ID: In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch X-Spam-Score: -0.0 (/) 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 (-) Hello, I recently built this with these changes and updating to version 5.0.6 with= hash 0d7740bjprd6mhs1wmhd53fb3kf61dz0hp1a0dda3dc28w2z84pp Builds successfu= lly and works for a package I'm working on. I'm not sure how much of a "review" this counts for exactly, but would be g= reat to have this revived and pushed. Thanks! John From unknown Tue Jun 17 22:24:36 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#50035] bug#64222: [PATCH 0/4] Add senpai IRC client References: <5d1fcc896c0f6f63e1664f0eadabf73f0965110b.1628823527.git.iskarian@mgsn.dev> In-Reply-To: <5d1fcc896c0f6f63e1664f0eadabf73f0965110b.1628823527.git.iskarian@mgsn.dev> Resent-From: John Kehayias Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 12 Oct 2023 17:55:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 50035 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: =?UTF-8?Q?Nguy=E1=BB=85n?= Gia Phong Cc: Ludovic =?UTF-8?Q?Court=C3=A8s?= , 64222@debbugs.gnu.org, 50035@debbugs.gnu.org, Sarah Morgensen Received: via spool by 50035-submit@debbugs.gnu.org id=B50035.169713326822866 (code B ref 50035); Thu, 12 Oct 2023 17:55:01 +0000 Received: (at 50035) by debbugs.gnu.org; 12 Oct 2023 17:54:28 +0000 Received: from localhost ([127.0.0.1]:44246 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qqztD-0005wf-Ao for submit@debbugs.gnu.org; Thu, 12 Oct 2023 13:54:27 -0400 Received: from mail-40133.protonmail.ch ([185.70.40.133]:57407) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qqztA-0005wM-H5 for 50035@debbugs.gnu.org; Thu, 12 Oct 2023 13:54:26 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1697133235; x=1697392435; bh=d7hrdzDp+Tg2xMtFMx7rrnr6RwVxtr5+MMbtB96Czz0=; h=Date:To:From:Cc:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=GX2AEgWweQmOc6Y6PwyisiuJMzJUWcb8vLiAgoeBh+5qUPrPeAP7VlwVRWVapIaXd 88x22FtwwYnm2FlXM5n/W2X/64+T4ikvCOo7qxxDTk8h2hqptS3T0i35LJP2+4AkMq BgXU034bnFcfGMoX7gtK4/cCfX/eD82InSFRSAxTSCF2KBYrKTCCGqRBDZgOP37/uN can7Urwp3ZuqkcsCxiFUaiezc94/83cd+0ozrcWChRhc4fnIClPEEiwKidxTXxKW6J zEdlSslyh3hqZlOgGQIy66zJUATvS/H4TTpA8gN1Eb9AdJjzODt+urlacW0oLDdYGv 6kkc7oiyqU7nw== Date: Thu, 12 Oct 2023 17:53:34 +0000 From: John Kehayias Message-ID: <87ttqv7mnb.fsf_-_@protonmail.com> Feedback-ID: 7805494:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) 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 Ludo=E2=80=99 and Nguy=E1=BB=85n (and cc'ing Sarah from earlier patches)= , On Fri, Oct 13, 2023 at 01:16 AM, Nguy=E1=BB=85n Gia Phong wrote: > On 2023-10-12 at 17:12+02:00, Ludovic Court=C3=A8s wrote: >> was inconclusive >> (for some reason it had not built all the dependents) > > qa.guix.gnu.org was briefly broken at the time IIRC, > happened to other adjacent patchsets. > > On 2023-10-12 at 17:12+02:00, Ludovic Court=C3=A8s wrote: >> so I checked locally and the go-github-com-godbus-dbus upgrade >> does not introduce new breakage. >> I haven't checked but this might need some fixing as based on an earlier patch for updating godbus (I can't help but read this as "god bus") the import name has changed. Though as an example chezmoi seems to have been broken for some time anyway. Maybe the import-name doesn't need the v5? See and . The earlier patch also has fixes for the tests which would be good to include now. My apologies to Sarah as my original replies way back when only went to the bug number (we should document this, easy beginner mistake!) and once I became a committer this was on my list to update and push but I didn't get around to it. Nguy=E1=BB=85n and/or Sarah would you like to submit a patch to change the import path if needed, enable tests, and make any other changes? I could also take a look if no one gets to it quickly. >> I wrapped the long =E2=80=98description=E2=80=99 lines, removed = =E2=80=98Signed-off-by=E2=80=99 tags >> from the logs (they=E2=80=99re for committers), and committed. > > Thanks a lot! Thanks to all on this updates! John PS: Looks like one extra signed-off-by tag made it through on a commit. Oh well, glad I'm not the only one who's not perfect at these things! From unknown Tue Jun 17 22:24:36 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#50035] gnu: go-github-com-godbus-dbus-v5 Resent-From: =?UTF-8?Q?Nguy=E1=BB=85n?= Gia Phong Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 13 Oct 2023 04:54:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 50035 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: "John Kehayias" Cc: Ludovic =?UTF-8?Q?Court=C3=A8s?= , 64222@debbugs.gnu.org, 50035@debbugs.gnu.org, Sarah Morgensen Received: via spool by 50035-submit@debbugs.gnu.org id=B50035.16971727827145 (code B ref 50035); Fri, 13 Oct 2023 04:54:01 +0000 Received: (at 50035) by debbugs.gnu.org; 13 Oct 2023 04:53:02 +0000 Received: from localhost ([127.0.0.1]:44588 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qrAAY-0001qz-C6 for submit@debbugs.gnu.org; Fri, 13 Oct 2023 00:53:02 -0400 Received: from layka.disroot.org ([178.21.23.139]:44240) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qrAAW-0001qg-7z; Fri, 13 Oct 2023 00:53:01 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id E95D741ACE; Fri, 13 Oct 2023 06:52:35 +0200 (CEST) X-Virus-Scanned: SPAM Filter at disroot.org Received: from layka.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fGKe6v2R4r9c; Fri, 13 Oct 2023 06:52:35 +0200 (CEST) Mime-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1697172755; bh=a8KFt6XyYshSX7gV1b1bSibweLRYPRLYq6KNiFGptZM=; h=Date:Cc:Subject:To:From:References:In-Reply-To; b=BrH1SrEHnRsX+BVK7WGi5f8VUgWgplfcDJX8wWTywES323s3a2kRdbBOlHng8rtNS vbD1H3bF+PToeE/Ypyf14YY63w3EDHPzjhMnJUYSY/4HcKt48CYaWhDb5aD6nMY4sH z+euutftt4PJ6z/f+b42sAr43tn28JM1DbsthKLDgRLT7sXrKr+0xgB8+yDt4bEkTf 9z05GW8kNZDe6qw/8nv0t+kuy9nR+ZGLipialM/L61z/cZHe1YACfAa1rArJPzFol8 tUrphG6IZnCmtC2xg3iqcC14P8HAm+7WgpnhQqyph4equI34HZdv/XnEaHJIwgopjV /6Rm1s3LArDlw== Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Fri, 13 Oct 2023 13:52:29 +0900 From: =?UTF-8?Q?Nguy=E1=BB=85n?= Gia Phong Message-Id: References: <87ttqv7mnb.fsf_-_@protonmail.com> In-Reply-To: <87ttqv7mnb.fsf_-_@protonmail.com> X-Spam-Score: 0.0 (/) 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 (-) On 2023-10-12 at 17:53+00:00, John Kehayias wrote: > [godbus's] import name has changed. Though as an example > chezmoi seems to have been broken for some time anyway. > Maybe the import-name doesn't need the v5? IIUC go-github-com-godbus-dbus is just a name for human consumption, on the other hand I don't understand how it works without the import-path matching the one in the go.mod file: On 2021-08-13 at 20:49-07:00, Sarah Morgensen wrote in patchset 50037: > - `(#:import-path "github.com/godbus/dbus" > + `(#:import-path "github.com/godbus/dbus/v5" On 2023-10-12 at 17:53+00:00, John Kehayias wrote: > Nguy=E1=BB=85n and/or Sarah would you like to submit a patch to change th= e > import path if needed, enable tests, and make any other changes? I could > also take a look if no one gets to it quickly. As stated above, I don't quite understand how go packages work (when they don't seem to be supposed to), so you two please go ahead. (BTW you can call me by my given name Phong.) On 2023-10-12 at 17:53+00:00, John Kehayias wrote: > I can't help but read this as "god bus" Yea DBus is short for Dieu Bus anyway. From unknown Tue Jun 17 22:24:36 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Sarah Morgensen Subject: bug#50035: closed ([PATCH 1/3] gnu: go-github-com-godbus-dbus: Update to 5.0.4.) Message-ID: References: <87zfopxd27.fsf@gmail.com> <5d1fcc896c0f6f63e1664f0eadabf73f0965110b.1628823527.git.iskarian@mgsn.dev> X-Gnu-PR-Message: they-closed 50035 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 50035@debbugs.gnu.org Date: Tue, 03 Sep 2024 10:14:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1725358442-26581-1" This is a multi-part message in MIME format... ------------=_1725358442-26581-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #50035: [PATCH 1/3] gnu: go-github-com-godbus-dbus: Update to 5.0.4. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 50035@debbugs.gnu.org. --=20 50035: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D50035 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1725358442-26581-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 50035-done) by debbugs.gnu.org; 3 Sep 2024 10:13:35 +0000 Received: from localhost ([127.0.0.1]:59079 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1slQXP-0006tk-4X for submit@debbugs.gnu.org; Tue, 03 Sep 2024 06:13:35 -0400 Received: from [209.85.218.43] (port=57827 helo=mail-ej1-f43.google.com) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1slQXA-0006sb-VH for 50035-done@debbugs.gnu.org; Tue, 03 Sep 2024 06:13:23 -0400 Received: by mail-ej1-f43.google.com with SMTP id a640c23a62f3a-a8692bbec79so573599366b.3 for <50035-done@debbugs.gnu.org>; Tue, 03 Sep 2024 03:12:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1725358246; x=1725963046; darn=debbugs.gnu.org; h=mime-version:message-id:date:subject:to:from:from:to:cc:subject :date:message-id:reply-to; bh=aOozgAngKy9ZdAU+SpnEyMkrd2s6JuJspKtMEyBG8ak=; b=Icz8H8LeyjAi1Vc37Srlm/8Qzquf+snmtCsKwpjLmG1ReM3+sEB8tpnXpARoABSWF7 exOjAckP9XNoITsaNLCaokbJMXSg6HdcRD7aPY2xSPGQVyAYlpulIcX5pXNpySJ1u7DA zOUsAzNi3q9yO/c1U3A/WapliQZ0ojRZbilldaELHizZ43SIAMlaAUUIZ5893pBIs0LW VFlYUQ1sC0d2uApHIoVfd0gIYir7v8LMrFTBHGh2cAwJQ5E8M+rA1ZQqoB7rw/XVRqeQ gXIa0NE/ZCkq28nKw2u5RysCwxLilwVJ8qYkWnMurMR6ctQc5Bw8uayDHpj105OvfYTw 6Ahg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1725358246; x=1725963046; h=mime-version:message-id:date:subject:to:from:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=aOozgAngKy9ZdAU+SpnEyMkrd2s6JuJspKtMEyBG8ak=; b=EZQ26mCJiQxR2C50q9DZFOSCAdCOgJs7olgv22miPuI5fRaHafb768CU5ZIIQYdotC Cxa7zZM9CyRBnT4G0IGb4gM2mKQ6tEGkv8FCGNbLS9zyMUiJLhTs9d8sJo7qWSxi4Ij+ hrZrBOT7t3tckmaVV2qrnTFl5gUg1YvX6FZ6NZutfcPN7IP4Iqi39Kgl+/JUfWZm/XOo myPW0YFYPUZrAkzE4shRLnmrN8TiAPwd2YgCWNOx2aZKK30x1txpdJluQVnI55FNPwQ6 GqrG2Znx6rTX8+Cgl6HbLGIJp1HXdcOtKjIDFYsKxZPv9bt8W2/FgLeOZx7UWSFIlAir UD8A== X-Gm-Message-State: AOJu0YwRpOoDv81D4Wrv2m+4DqEJqBIKZ8wTLbbTF+0bW+JEV4uyByi4 8yDmaW7LtfFZThqxi29OL6XO/ix0VZyltXm+dMDnVoJiIohUbjn3FjNk2XQd X-Google-Smtp-Source: AGHT+IF2iTDhKI9YMHHPm6FSeO5cHdeXHhbPI59oReGGk/uEgQu/B3Jk3pU1aakARUWzyjXqkEw0FA== X-Received: by 2002:a17:906:c151:b0:a7d:3de1:4ab2 with SMTP id a640c23a62f3a-a89a3624399mr190852266b.27.1725358245676; Tue, 03 Sep 2024 03:10:45 -0700 (PDT) Received: from guxtil (cpc100684-bagu15-2-0-cust967.1-3.cable.virginm.net. [86.8.111.200]) by smtp.gmail.com with ESMTPSA id a640c23a62f3a-a8988feb240sm674096866b.14.2024.09.03.03.10.44 for <50035-done@debbugs.gnu.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 03 Sep 2024 03:10:45 -0700 (PDT) From: Sharlatan Hellseher To: 50035-done@debbugs.gnu.org Subject: [PATCH 1/3] gnu: go-github-com-godbus-dbus: Update to 5.0.4. Date: Tue, 03 Sep 2024 11:10:40 +0100 Message-ID: <87zfopxd27.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 2.8 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Hi, This patch series was used as base for: - fa7de86cfc * gnu: go-github-com-zalando-go-keyring: Enable tests. - 669dc9d906 * gnu: go-github-com-zalando-go-keyring: Update to 0.2.5. - 7573464ede * gnu: go-github-com-gsterjov-go-libsecret: Impr [...] Content analysis details: (2.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (sharlatanus[at]gmail.com) 0.0 T_SPF_TEMPERROR SPF: test of record failed (temperror) 1.3 RDNS_NONE Delivered to internal network by a host with no rDNS 0.0 SPOOFED_FREEMAIL_NO_RDNS From SPOOFED_FREEMAIL and no rDNS 0.0 SPOOFED_FREEMAIL No description available. 1.5 SPOOF_GMAIL_MID From Gmail but it doesn't seem to be... X-Debbugs-Envelope-To: 50035-done 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.3 (/) --=-=-= Content-Type: text/plain Hi, This patch series was used as base for: - fa7de86cfc * gnu: go-github-com-zalando-go-keyring: Enable tests. - 669dc9d906 * gnu: go-github-com-zalando-go-keyring: Update to 0.2.5. - 7573464ede * gnu: go-github-com-gsterjov-go-libsecret: Improve package style. - c32ae37272 * gnu: go-github-com-gsterjov-go-libsecret: Update to 0.0.0-20161001094733-a6f4afe4910c. - d567987426 * gnu: go-github-com-godbus-dbus: Enable tests. - 5bb0d4b0d6 * gnu: Add go-github-com-godbus-dbus-v5. -- Oleg --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEmEeB3micIcJkGAhndtcnv/Ys0rUFAmbW4KAACgkQdtcnv/Ys 0rWdeQ/+OCIlX2r2skUajA5JqoJ2m1KnFMiJQYfSfd//mPyyUl1zkVWlqgxlGGbm /mln86Lf9eDXF9YGGhyxpfXImMnAZYJp/mw5MiKrF0k3VMveRhAYM8YwCbeQ696U zVat+Xn69efGjuUxhwB7vi0sKwwCf+4n/YMZ61oiPTlyt+7UoOvrwFe+ReJtMrRA VLQXbEKiZW2fPU0s+D0Lfsuf9xg0VXsVwaNLBbgYhY3hRi4/v/yIJmhj/EVUsCVF RzdUKXtrzt7gwV0t/XFWgFENjSxg7uhDQHKgDDwYtVM2UNAiDZpOC0EQcyY2aepk xbCQ3qy5E+oW3nCXQAMsgcvk+KqyGV25geMe7QZmkMibnSu4yHl4xICaYtdQayUg V18ynJEfElst/j7loWtlwLoS/U04BY/c5n209/nsNCkxBGGOmMJxfuK+hNgDzk+r DF3yCLGl6o28mmUOtLFiW2EPNQc734fnQVoQxVcEy2nZPcBMttnejWew4BG2kFyc GpaEd7Op9m0OQk6VFWEy8HKQBvLHvpz1DqyvDyXVQyXM6YEoZdp02OUFYT+V0cPB TWT3lUW2BWC99PiT6kia+5uzkug5W9/zVsUOON+VdxPmukNfFYr4SnhY4Uj6SsEy 9ycitg1+EH6iyVwGsqw6pl5avhZf5/uUAWduASA20uQg+is27dc= =xniK -----END PGP SIGNATURE----- --=-=-=-- ------------=_1725358442-26581-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 13 Aug 2021 03:07:19 +0000 Received: from localhost ([127.0.0.1]:40170 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mENXS-0001d6-Ms for submit@debbugs.gnu.org; Thu, 12 Aug 2021 23:07:18 -0400 Received: from lists.gnu.org ([209.51.188.17]:56906) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mENXO-0001cu-2b for submit@debbugs.gnu.org; Thu, 12 Aug 2021 23:07:17 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:52344) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mENXL-00060k-5I for guix-patches@gnu.org; Thu, 12 Aug 2021 23:07:12 -0400 Received: from out2.migadu.com ([188.165.223.204]:48319) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mENXF-0007Ek-Fb for guix-patches@gnu.org; Thu, 12 Aug 2021 23:07:10 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mgsn.dev; s=key1; t=1628824021; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=CaK1yVE4tEEKbvDZ0U5lRwO50914FRg27YEdPBptqR4=; b=PCodGaNaBRM3v+eN12e2h+RujiNeAE2ToOmTLu4+/8pURFasgq4RGxqRv6QJOi+2YI2rKM UZb/gb2uLFcEHAdS/IhbWp43Lda+w+F40PRM0fgXMLZLR+jK44KTcWLJvHoYq4/KNpyqe4 DOa3fjUjFLq74OfRQAyzCOP4H01ZCxs= From: Sarah Morgensen To: guix-patches@gnu.org Subject: [PATCH 1/3] gnu: go-github-com-godbus-dbus: Update to 5.0.4. Date: Thu, 12 Aug 2021 20:06:57 -0700 Message-Id: <5d1fcc896c0f6f63e1664f0eadabf73f0965110b.1628823527.git.iskarian@mgsn.dev> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev Received-SPF: pass client-ip=188.165.223.204; envelope-from=iskarian@mgsn.dev; helo=out2.migadu.com 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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.4 (--) * gnu/packages/golang.scm (go-github-com-godbus-dbus): Update to 5.0.4. --- While I was updating this, I renamed it to match the proper import path (so the Go importer sees this package), and fixed those pesky D-Bus tests. -- Sarah gnu/packages/golang.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index f4cd30c662..15826514bc 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -7424,7 +7424,7 @@ and @code{ioutil} packages that is easy to test.") (define-public go-github-com-godbus-dbus (package (name "go-github-com-godbus-dbus") - (version "5.0.3") + (version "5.0.4") (source (origin (method git-fetch) (uri (git-reference @@ -7433,7 +7433,7 @@ and @code{ioutil} packages that is easy to test.") (file-name (git-file-name name version)) (sha256 (base32 - "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) + "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) (build-system go-build-system) (arguments `(#:tests? #f ;no /var/run/dbus/system_bus_socket base-commit: d87d6d68128c53a95fe09c3a4381575646c0f368 -- 2.31.1 ------------=_1725358442-26581-1--