From debbugs-submit-bounces@debbugs.gnu.org Thu Feb 29 19:16:52 2024 Received: (at submit) by debbugs.gnu.org; 1 Mar 2024 00:16:52 +0000 Received: from localhost ([127.0.0.1]:35685 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rfqa3-0002D4-4u for submit@debbugs.gnu.org; Thu, 29 Feb 2024 19:16:52 -0500 Received: from lists.gnu.org ([209.51.188.17]:53910) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rfpDA-0008NR-VU for submit@debbugs.gnu.org; Thu, 29 Feb 2024 17:49:12 -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 1rfpCj-00018k-4T for guix-patches@gnu.org; Thu, 29 Feb 2024 17:48:41 -0500 Received: from layka.disroot.org ([178.21.23.139]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1rfpCf-0003bi-PW for guix-patches@gnu.org; Thu, 29 Feb 2024 17:48:39 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id DF9A84118E; Thu, 29 Feb 2024 23:48:32 +0100 (CET) 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 kgM8MIuq-wKn; Thu, 29 Feb 2024 23:48:32 +0100 (CET) From: stuebinm DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1709246911; bh=l0RyrkWzDEKBTvqe1ntllDG5+cyb4IBFdNgbGR8/Q1c=; h=From:To:Cc:Subject:Date; b=C7zBJMCAQRHtJ+jKesCVW2DJ36wLx0+8tQRN5faDuz6qVqX3ndeKEmLrkyhr+S8TU FvI0No1To/NuL9XTezVOjbzxj5j2cZrNWtYSY4rUO35gnMkTWt7uRupxVj7yx2RLSQ x9tY32JnaCO0+8UDXJRsbSsu9J4krUGAduqcdu7ILjry/eP3wIT3De9fxg7QQjbjxS zJs4/sNW6vq9PQJrHECTJmUllC3evBnLENhjeBWE5googIIkNKEXNU1I2oGAHU1+IE p3YaF8n+9LMveAbOJ9ZMkauq6xyjWiltzcm6aFMLg+pBv7rwMpDUGL98bOviPFu03Z lKgCRpVEal1/w== To: guix-patches@gnu.org Subject: [PATCH] gnu: hikari: fix build. Date: Thu, 29 Feb 2024 23:40:34 +0100 Message-ID: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=stuebinm@disroot.org; helo=layka.disroot.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_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Thu, 29 Feb 2024 19:16:50 -0500 Cc: stuebinm 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 (--) It fails to build with versions of wlroots newer than 0.15, which seems unlikey to be fixed https://hub.darcs.net/raichoo/hikari/issue/45 * gnu/packages/wm.scm (wlroots-0.15): New variable. * gnu/packages/wm.scm (hikari)[inputs]: Replace wlroots with wlroots-0.15. Change-Id: Id90e1e1ff399afe54fff68167f497f0484d2c218 --- Hi everyone! I'm new to Guix, so I hope I'm doing this right. Unfortunately, hikari seems to be unmaintained for now (see the linked issue, now almost two years old; asking on their Matrix chat also led to no result). With this change, hikari builds again, though I could also understand if it's preferred to remove it entirely over keeping old versions of wlroots around. gnu/packages/wm.scm | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 768fbc5bc7..afa60bf3ad 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -1757,6 +1757,21 @@ (define-public wlroots-0.16 (propagated-inputs (modify-inputs (package-propagated-inputs wlroots) (delete libdisplay-info))))) +(define-public wlroots-0.15 + (package + (inherit wlroots) + (name "wlroots-0.15") + (version "0.15.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.freedesktop.org/wlroots/wlroots") + (commit version))) + (file-name (git-file-name "wlroots" version)) + (sha256 + (base32 "00s73nhi3sc48l426jdlqwpclg41kx1hv0yk4yxhbzw19gqpfm1h")))))) + (define-public sway (package (name "sway") @@ -3221,7 +3236,7 @@ (define-public hikari linux-pam pango wayland - wlroots-0.16)) + wlroots-0.15)) (arguments `(#:tests? #f ; no tests #:make-flags base-commit: b988248e1c88bde3001b7f2b1830dececa7e8b23 -- 2.42.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 19 12:15:34 2024 Received: (at 69482-done) by debbugs.gnu.org; 19 Mar 2024 16:15:34 +0000 Received: from localhost ([127.0.0.1]:51225 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rmc7i-0005HL-0C for submit@debbugs.gnu.org; Tue, 19 Mar 2024 12:15:34 -0400 Received: from eggs.gnu.org ([209.51.188.92]:37414) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rmc7e-0005GV-Pz for 69482-done@debbugs.gnu.org; Tue, 19 Mar 2024 12:15:32 -0400 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 1rmc6v-00035v-SR; Tue, 19 Mar 2024 12:14:45 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=G2ZXaf5tDwLEtxero7hiERks6nD5eEbjb2bT6zUbWe8=; b=mFO+TRiSh0dqB7hqn/2l MPGdA2SWOr5+EmaNnNMt/Cs9UmZ8zsrt16KhpljiSKoDzLE33pNND/LXLVeImRtIt8NuiLo/ixH+f uvhtoglxuYMfyYibfV6yYwsnVCqT6iyRqIwiX9IMxMnXvTZltcALP+Ffju8Qd7eTvfIe+zEpsfPu3 xYdti/6myRGRa52vKOVdMuG9JaAAZiK+HB0ARv0ckO7mXtXiSlMD0JDISplUFooEkmMMuXxgXfVNq qTkllUyXMk7XZHeK/FJI/XTyIqQZJIkgZVtwZqSGqEJ7n8Gljf2LdGUMEI6eSeu2qXdOQnDdGPRBm ZkfBkxfPql52Cw==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: stuebinm Subject: Re: [bug#69482] [PATCH] gnu: hikari: fix build. In-Reply-To: (stuebinm@disroot.org's message of "Thu, 29 Feb 2024 23:40:34 +0100") References: Date: Tue, 19 Mar 2024 17:14:43 +0100 Message-ID: <87o7ba2o7g.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) 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: 69482-done Cc: 69482-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: -3.3 (---) Hi, stuebinm skribis: > It fails to build with versions of wlroots newer than 0.15, which > seems unlikey to be fixed https://hub.darcs.net/raichoo/hikari/issue/45 > > * gnu/packages/wm.scm (wlroots-0.15): New variable. > * gnu/packages/wm.scm (hikari)[inputs]: Replace wlroots with wlroots-0.15. > > Change-Id: Id90e1e1ff399afe54fff68167f497f0484d2c218 I tweaked the commit log and applied it. > Hi everyone! I'm new to Guix, so I hope I'm doing this right. Unfortunate= ly, > hikari seems to be unmaintained for now (see the linked issue, now almost > two years old; asking on their Matrix chat also led to no result). > > With this change, hikari builds again, though I could also understand if > it's preferred to remove it entirely over keeping old versions of wlroots > around. Maybe something to consider going forward. We=E2=80=99ll see. Thank you! Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 21 10:41:33 2024 Received: (at 69482-done) by debbugs.gnu.org; 21 Mar 2024 14:41:33 +0000 Received: from localhost ([127.0.0.1]:37030 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rnJbm-0000ui-MA for submit@debbugs.gnu.org; Thu, 21 Mar 2024 10:41:32 -0400 Received: from layka.disroot.org ([178.21.23.139]:40646) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rnFg3-0003wR-Fg for 69482-done@debbugs.gnu.org; Thu, 21 Mar 2024 06:29:40 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 82CBF41652; Thu, 21 Mar 2024 11:28:57 +0100 (CET) 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 Xg5L5mZN4cMz; Thu, 21 Mar 2024 11:28:56 +0100 (CET) References: <87o7ba2o7g.fsf@gnu.org> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1711016936; bh=zSxAwYjPHZpVHfmZX+BczkDwtLjViHaR3KYN1bv+AaU=; h=References:From:To:Cc:Subject:Date:In-reply-to; b=AcbuTgJEKDlTp5CkKr7maOkp364e5R3uLs1oPwHGuUXlISLFtyD1eIfs/BUAprGfI CJJO30jceWy/cHkz5Wykis/AGTSXgybqs26/Odz2y6NnZGrFHlIyFRGxsxJI/Rjgls 8kU/Bafphn0tMyF+tXr2viETZ/sWIHHD1uXU+WXLDzcHWxql9/AjMf80MY0Va7GGzu VeoszlX5gS7l+gKHGqchnPNrM5wG8skCK9yYiNT5ioHUHiu07Y4KVkTWrirCXr0PW0 aCkIb2OTRHLvylSM3GwDTNm0KgFxmdkcuIQXME7dL5+FNdYsA0BB4UKHIt+wM04k4b 7EOgwwT1cvNOQ== From: terru To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#69482] [PATCH] gnu: hikari: fix build. Date: Thu, 21 Mar 2024 11:26:56 +0100 In-reply-to: <87o7ba2o7g.fsf@gnu.org> Message-ID: <87sf0jri8x.fsf@disroot.org> 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: 69482-done X-Mailman-Approved-At: Thu, 21 Mar 2024 10:41:29 -0400 Cc: 69482-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 (-) Ludovic Court=C3=A8s writes: > I tweaked the commit log and applied it. Thanks! btw, I noticed too late that there was already an older issue about this from a year ago, which should perhaps also be marked as closed now: https://issues.guix.gnu.org/63426 ~terru From unknown Mon Aug 18 15:38:58 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 19 Apr 2024 11:24:23 +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