Received: (at 73937) by debbugs.gnu.org; 23 Oct 2024 19:31:46 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Wed Oct 23 15:31:46 2024 Received: from localhost ([127.0.0.1]:60872 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1t3h58-00047s-C6 for submit <at> debbugs.gnu.org; Wed, 23 Oct 2024 15:31:46 -0400 Received: from mout01.posteo.de ([185.67.36.65]:48695) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <glv@HIDDEN>) id 1t3h54-00047X-E1 for 73937 <at> debbugs.gnu.org; Wed, 23 Oct 2024 15:31:45 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 0D0D2240027 for <73937 <at> debbugs.gnu.org>; Wed, 23 Oct 2024 21:31:04 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1729711865; bh=XUS+/vX5Bk8ufIYnZ2q6Q66Dr3BWketYkq79duMjXog=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version:Content-Type: From; b=rvIfyao62bWodvOPCJig5mqjakIrWICSVfVjYhrgQQzUYEwiTPbFDuH/7+pLFJUsU XSjGlo7pn8liOOWeRsUTquGaUpg2ObqM71/KT8wSEkdmN+XvNopdZh7mIqtUlbPsbD 6s/wIqDuXd2C3/W2gugYx7EwgPgMkiFlTs0LfZTgXtg5lJVmjtNmJsquDUZdv/E2aD szyAGIkE9BG0oIJJ7nxu6ZiQhmNcUeBF3Vnwfq7qriojgdSZBbqe94peNmFtmhgp9d gVV7Tt8uY3z9b9x9z/MzPbOa7EI9BRjDiOFxzDrK8XmvoWyma2+B9Jmt914FhH4OMk /r00yz5WEdQow== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4XYfKh24gtz6tyK; Wed, 23 Oct 2024 21:31:04 +0200 (CEST) From: Guillaume Le Vaillant <glv@HIDDEN> To: =?utf-8?Q?Andr=C3=A9?= A. Gomes <andremegafone@HIDDEN> Subject: Re: [bug#73937] [PATCH]: Update Nyxt to 3.12.0 In-Reply-To: <87msiv80e7.fsf@HIDDEN> (=?utf-8?Q?=22Andr=C3=A9?= A. Gomes"'s message of "Wed, 23 Oct 2024 15:33:04 +0300") References: <87a5ex2rnp.fsf@HIDDEN> <87ttd3t4b0.fsf@kitej> <87msiv80e7.fsf@HIDDEN> Date: Wed, 23 Oct 2024 19:31:03 +0000 Message-ID: <87plnqty4o.fsf@kitej> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 73937 Cc: 73937 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Andr=C3=A9 A. Gomes <andremegafone@HIDDEN> skribis: > Guillaume Le Vaillant <glv@HIDDEN> writes: > >> Hi. >> We usually try to avoid taking libraries from git submodules unless the >> software can't be made to compile with system libraries. >> Can't Nyxt 3.12.0 work with the libraries packaged in Guix? > > Nyxt pins Common Lisp libraries versions as to ensure everything works > as expected. Concretely, there's an issue related to sbcl-alexandria > since the commit Guix is using breaks Nyxt's functionality (see [1]). > > You may argue that a sbcl-alexandria variant could be defined (see [2]), > but it seems brittle from Nyxt's perspective and probably undesirable > from Guix's perspective. > > All package managers are using the git submodules to build Nyxt, > including Nix. From Nyxt's perspective, any build that won't use the > pinned CL libraries versions isn't Nyxt per se, but a custom build (or > perhaps a "variation" in Guix's parlance). > > Happy to know your thoughts. > > [1] https://github.com/atlas-engineer/nyxt/issues/3503 > [2] https://github.com/aadcg/aadcg-guix-channel/blob/284a62f30b91642b08a6= 6d02679611655d0bfb51/packages/aadcg-nyxt.scm#L20 If I understand correctly, the issue comes from the fact that the read-stream-content-into-string function from recent versions of alexandria doesn't accept an octet stream as argument instead of a character stream anymore. Wouldn't it be possible to replace (alexandria:read-stream-content-into-string connection) by something like (map 'string #'code-char (alexandria:read-stream-content-into-byte-vector connection)) in Nyxt? If it works it would allow us to continue using the system libraries (some of which might have patches to work well in Guix). --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCZxlO9w8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j/lNQD/UiAlBDWwOGE4Sv7XKSWDvV8PlLL+3icJ759y ezQG2IUA/RYiLTBQOxYcpUXyu2SS11AZZSbpQn7v9zEIk2RTszoy =CbNw -----END PGP SIGNATURE----- --=-=-=--
guix-patches@HIDDEN
:bug#73937
; Package guix-patches
.
Full text available.Received: (at 73937) by debbugs.gnu.org; 23 Oct 2024 12:34:46 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Wed Oct 23 08:34:46 2024 Received: from localhost ([127.0.0.1]:58927 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1t3aZa-0001QW-3P for submit <at> debbugs.gnu.org; Wed, 23 Oct 2024 08:34:46 -0400 Received: from mail-lj1-f181.google.com ([209.85.208.181]:47149) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <andremegafone@HIDDEN>) id 1t3aZX-0001Q9-9a for 73937 <at> debbugs.gnu.org; Wed, 23 Oct 2024 08:34:44 -0400 Received: by mail-lj1-f181.google.com with SMTP id 38308e7fff4ca-2fc968b3545so18521221fa.2 for <73937 <at> debbugs.gnu.org>; Wed, 23 Oct 2024 05:34:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1729686788; x=1730291588; darn=debbugs.gnu.org; h=content-transfer-encoding:mime-version:user-agent:message-id:date :references:in-reply-to:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=T9q5erAKhmuMHfDgKASaInCL3n0MRgyeOCQU4elSyN8=; b=mN6KftYdsrlMOtoR/va3DyIkCp/d9Pu+U31fIQa+hFaRjf0jfIcq9rafTmgt5HMAbJ j2SUkeytJNM44UPePeLpjk0125bo99+C8vyIv1mLQPtQp1JoIX0djVe2D8ye/D5emBVC YMvLYBdJeeLePIHgdjMElNJ4gGXF1hsIqmHrZl3PQSEeJXU9sWZQpDxVSqS0nJyfFyE1 aN1JvLSOKw92p5wGtzw2nsLdp2XHOyzAL1lkXry66hnXnzAOpC5pbCYmWVwksBBQDQJd pMaEl4edIwkomiq3N/6z7WoDgnPTV7F/TuUwIoWCznhqW9W/WgjKkKFSENIWowVAXu4j jJeQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1729686788; x=1730291588; h=content-transfer-encoding:mime-version:user-agent: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=T9q5erAKhmuMHfDgKASaInCL3n0MRgyeOCQU4elSyN8=; b=GHWtisiMb3hS08SKutdzHUqAuyItieWYLTmVigGaJf1mUxspCD+kDXxkbn7RkyJtZt F9lqfHc4stba+l4Cs62aQPl/TkvJsbANt8SrYU5gwXlAqZrNErvApk/VblKkZVAXJOeE yDM8EsxHxVz5eQzCX6hZjQ7Q2wo3hl1+HExetdLgA7uM76bnsDt1aBk2av3J+t9mAQyK pk4+J0zyOkbNDsiHn36TababUuVFj+dYokqeBjZ2zdT+kNtyQVLNnXSAIeiiqQUVzVvM zSB6AFoseT1tjFlT8m5xabgrqe3cl9mWgYFQkfBZF1hxKnAFTi91fsxuto9peeJTDf0A ZhIQ== X-Gm-Message-State: AOJu0Yz+YlOYUObbmr4cUOgSMh3VgGzyD1p+l5yDX/j8XVoXpkL+E71n X117Ka31toPn/F1R3qkYSgjTAUSi+zkDzLdoX6yhcmCgeGsT3GlJCuSDhrHx X-Google-Smtp-Source: AGHT+IFeO2yfitB8vjJdlZNZB4F7oZEiuMYRLRWm7SfiUfqiK+upZLXq5EY27Cz3LhM3vT07eMkQDw== X-Received: by 2002:a05:651c:1504:b0:2fb:60d8:7445 with SMTP id 38308e7fff4ca-2fc9d2de392mr12813581fa.6.1729686787593; Wed, 23 Oct 2024 05:33:07 -0700 (PDT) Received: from ubuntu-xps13 (94.246.238.92.cable.starman.ee. [94.246.238.92]) by smtp.gmail.com with ESMTPSA id 38308e7fff4ca-2fb9adf7bc2sm10836651fa.99.2024.10.23.05.33.04 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Oct 2024 05:33:06 -0700 (PDT) From: =?utf-8?Q?Andr=C3=A9_A=2E_Gomes?= <andremegafone@HIDDEN> To: Guillaume Le Vaillant <glv@HIDDEN> Subject: Re: [bug#73937] [PATCH]: Update Nyxt to 3.12.0 In-Reply-To: <87ttd3t4b0.fsf@kitej> (Guillaume Le Vaillant's message of "Wed, 23 Oct 2024 12:02:59 +0000") References: <87a5ex2rnp.fsf@HIDDEN> <87ttd3t4b0.fsf@kitej> Date: Wed, 23 Oct 2024 15:33:04 +0300 Message-ID: <87msiv80e7.fsf@HIDDEN> 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: 0.0 (/) X-Debbugs-Envelope-To: 73937 Cc: 73937 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) Guillaume Le Vaillant <glv@HIDDEN> writes: > Andr=C3=A9 A. Gomes <andremegafone@HIDDEN> skribis: > >> Hello Guix, >> >> Attached, thanks. >> >> Please note that I am one of the Nyxt developers. The changes reflect >> that fact that the Lisp dependencies are pinned as git submodules. The >> tests are temporarily disabled since they fail due to undocumented >> exported symbols (which is unreasonable). I only noticed it after the >> release, but I'll fix it for the next release. > > Hi. > We usually try to avoid taking libraries from git submodules unless the > software can't be made to compile with system libraries. > Can't Nyxt 3.12.0 work with the libraries packaged in Guix? Nyxt pins Common Lisp libraries versions as to ensure everything works as expected. Concretely, there's an issue related to sbcl-alexandria since the commit Guix is using breaks Nyxt's functionality (see [1]). You may argue that a sbcl-alexandria variant could be defined (see [2]), but it seems brittle from Nyxt's perspective and probably undesirable from Guix's perspective. All package managers are using the git submodules to build Nyxt, including Nix. From Nyxt's perspective, any build that won't use the pinned CL libraries versions isn't Nyxt per se, but a custom build (or perhaps a "variation" in Guix's parlance). Happy to know your thoughts. [1] https://github.com/atlas-engineer/nyxt/issues/3503 [2] https://github.com/aadcg/aadcg-guix-channel/blob/284a62f30b91642b08a66d= 02679611655d0bfb51/packages/aadcg-nyxt.scm#L20 --=20 Andr=C3=A9 A. Gomes "You cannot even find the ruins..."
guix-patches@HIDDEN
:bug#73937
; Package guix-patches
.
Full text available.Received: (at 73937) by debbugs.gnu.org; 23 Oct 2024 12:03:40 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Wed Oct 23 08:03:40 2024 Received: from localhost ([127.0.0.1]:58888 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1t3a5T-00006l-Sq for submit <at> debbugs.gnu.org; Wed, 23 Oct 2024 08:03:40 -0400 Received: from mout01.posteo.de ([185.67.36.65]:36179) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <glv@HIDDEN>) id 1t3a5S-00006W-HA for 73937 <at> debbugs.gnu.org; Wed, 23 Oct 2024 08:03:39 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 6FD53240027 for <73937 <at> debbugs.gnu.org>; Wed, 23 Oct 2024 14:03:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1729684981; bh=sirmHWc4ZlE+kBDRQoFAqgi1bigmYb0rmIx257wneBs=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version:Content-Type: From; b=flNwcHalnYV2SXlXgw5ZLvUtWhb6vdgXLvk29/Ss0KKAZHwe+jUX1EmKcMYb21Xdt RWBIa2EeAzq13FPM1yLCUjE81fbVL3l87eeinsO7PnpyiOGMU8Tx+mWyYdm0+noKTQ ZuxBPpN5sOcm8LfMCfRSs0vSY5S7a+Dq4kmG2YXsWxnTn0MhJu7+VlBZm9AR84i2yH E7BgAtLcFtYiXH0/x/iBpWtNrTsGl0y9jvgJt1DIdFrtLhVLAGs+fb+WpjsOImoALm bkY+COLD7o6iRq+2GXkvCIbzpjxcxE/XlU7jKLUbXNDfs92lLTRBde+Vb5Yi/4mMHo eMYbFuAvFhifw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4XYSNh46TNz6tym; Wed, 23 Oct 2024 14:03:00 +0200 (CEST) From: Guillaume Le Vaillant <glv@HIDDEN> To: =?utf-8?Q?Andr=C3=A9?= A. Gomes <andremegafone@HIDDEN> Subject: Re: [bug#73937] [PATCH]: Update Nyxt to 3.12.0 In-Reply-To: <87a5ex2rnp.fsf@HIDDEN> (=?utf-8?Q?=22Andr=C3=A9?= A. Gomes"'s message of "Mon, 21 Oct 2024 22:16:10 +0300") References: <87a5ex2rnp.fsf@HIDDEN> Date: Wed, 23 Oct 2024 12:02:59 +0000 Message-ID: <87ttd3t4b0.fsf@kitej> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 73937 Cc: 73937 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Andr=C3=A9 A. Gomes <andremegafone@HIDDEN> skribis: > Hello Guix, > > Attached, thanks. > > Please note that I am one of the Nyxt developers. The changes reflect > that fact that the Lisp dependencies are pinned as git submodules. The > tests are temporarily disabled since they fail due to undocumented > exported symbols (which is unreasonable). I only noticed it after the > release, but I'll fix it for the next release. Hi. We usually try to avoid taking libraries from git submodules unless the software can't be made to compile with system libraries. Can't Nyxt 3.12.0 work with the libraries packaged in Guix? --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCZxjl8w8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j/MlgD/fZ3xuyOZEQfk7daimdq+dmqdttKQBIYme8Wo YDTnJcMA/iEvJDomXqyVOYoZL93bBGff7gqNmtR5W573vN663b9O =M49t -----END PGP SIGNATURE----- --=-=-=--
guix-patches@HIDDEN
:bug#73937
; Package guix-patches
.
Full text available.André A. Gomes <andremegafone@HIDDEN>
to control <at> debbugs.gnu.org
.
Full text available.Received: (at submit) by debbugs.gnu.org; 21 Oct 2024 19:16:53 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Mon Oct 21 15:16:53 2024 Received: from localhost ([127.0.0.1]:53374 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1t2xtc-00019u-MY for submit <at> debbugs.gnu.org; Mon, 21 Oct 2024 15:16:53 -0400 Received: from lists.gnu.org ([209.51.188.17]:36164) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <andremegafone@HIDDEN>) id 1t2xtX-00019f-Ir for submit <at> debbugs.gnu.org; Mon, 21 Oct 2024 15:16:51 -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 <andremegafone@HIDDEN>) id 1t2xt6-0002FZ-Cy for guix-patches@HIDDEN; Mon, 21 Oct 2024 15:16:20 -0400 Received: from mail-lj1-x22d.google.com ([2a00:1450:4864:20::22d]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from <andremegafone@HIDDEN>) id 1t2xt4-00073I-5r for guix-patches@HIDDEN; Mon, 21 Oct 2024 15:16:20 -0400 Received: by mail-lj1-x22d.google.com with SMTP id 38308e7fff4ca-2fb50e84ec7so36425851fa.1 for <guix-patches@HIDDEN>; Mon, 21 Oct 2024 12:16:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1729538176; x=1730142976; darn=gnu.org; h=mime-version:message-id:date:subject:to:from:from:to:cc:subject :date:message-id:reply-to; bh=fGzXidZGVeYvtb7LEH2LQ6W9RSIoYG4OHLgQJ37WAHQ=; b=izZyB23K6cS2qDuRddzhO4OZb5C0VFNPB7FwkuFhHwMgHgGQSJmm5VjW18OZMDYEyd a3WoKIHgaHSIxeqHt+XgLWCDI0UT9NwaTol/IsKcN6UjFT2bZPT4ZT9s6Ir1tzPKIfz+ hXEnfsqQAH2P1AeTN8oG55iIOL/MiNwPYhmRKL1bQKNAeL7nEFH9r6Jj04TFd6qVwHeM FLaP9jDETDMfSpJds7+vTrDVB0e+v/rOou8owYKNIDZy93IhCGlPh0EMHEssDftCyxkP Qh+iy1hyU6GyWLs7Ap5Mtg82ef2HizHI6/IXKqNk/4sHp8s2jF2VCo+rPXC1CaJiUXVO MAUw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1729538176; x=1730142976; h=mime-version:message-id:date:subject:to:from:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=fGzXidZGVeYvtb7LEH2LQ6W9RSIoYG4OHLgQJ37WAHQ=; b=g0urot3aLRJo9x2xPCH9hY0yQHTP+RYe7KWssobZ2beWnbxbeF5qDFZb2UTnwMAMFA v5mQjt5v3YJnS/N1IDEZ0IlrK84n9W1LCoV/OVE3APHtLIg8kIiWFPZw5Z7cbH/DjrxQ vf428IDdhj0W2MQ2JnuE4lNwIL0JhluXiNZR72+B+NQt5vS3Ba3pyDL7avvhwQpNOGQI 3rhk9zqj2lGixcuHUwSxclk+sXvZftdSbAOWuUJJv1qA0Yl03R7OWFb9ntSXZbIw9mEc 1PRCysZHh2w3nVMxeqr4/hUKXWBFx8xz6Dp0jC8WkmAySycM0ywKMEfFNQOdAp2EiD6U /Efg== X-Gm-Message-State: AOJu0YxhGA2q3a/FKPSBQ7SmH1oPlLP/a0tAmIEebnaf86BdOESpiCLO cf+kd7tBCuVpAhMjyGcg9al1II2MYe0l4Om4xtdA7+SUuTU9iT1i6Rqn8w== X-Google-Smtp-Source: AGHT+IH8SPiLGqdLtmA/VGhWL93snGqPrFvQRNSYx08ADSbe3wrXYZH7cQcKJld79elNyk795pcI/g== X-Received: by 2002:a05:651c:1508:b0:2fb:5ea2:d5bd with SMTP id 38308e7fff4ca-2fb82ea28fcmr59408891fa.13.1729538175403; Mon, 21 Oct 2024 12:16:15 -0700 (PDT) Received: from ubuntu-xps13 (94.246.238.92.cable.starman.ee. [94.246.238.92]) by smtp.gmail.com with ESMTPSA id 38308e7fff4ca-2fb9ad76132sm5613121fa.51.2024.10.21.12.16.12 for <guix-patches@HIDDEN> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 21 Oct 2024 12:16:13 -0700 (PDT) From: =?utf-8?Q?Andr=C3=A9_A=2E_Gomes?= <andremegafone@HIDDEN> To: guix-patches@HIDDEN Subject: [PATCH]: Update Nyxt to 3.12.0 Date: Mon, 21 Oct 2024 22:16:10 +0300 Message-ID: <87a5ex2rnp.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Received-SPF: pass client-ip=2a00:1450:4864:20::22d; envelope-from=andremegafone@HIDDEN; helo=mail-lj1-x22d.google.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, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_NONE=-0.0001, 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 X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -2.3 (--) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello Guix, Attached, thanks. Please note that I am one of the Nyxt developers. The changes reflect that fact that the Lisp dependencies are pinned as git submodules. The tests are temporarily disabled since they fail due to undocumented exported symbols (which is unreasonable). I only noticed it after the release, but I'll fix it for the next release. --=20 Andr=C3=A9 A. Gomes "You cannot even find the ruins..." --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-gnu-nyxt-Update-to-3.12.0.patch From 3a6970e3f5661c3948cda7a9ab0d256d46f2c948 Mon Sep 17 00:00:00 2001 From: "Andre A. Gomes" <andremegafone@HIDDEN> Date: Mon, 21 Oct 2024 22:10:30 +0300 Subject: [PATCH] gnu: nyxt: Update to 3.12.0. * gnu/packages/web-browsers.scm (nyxt): Update to 3.12.0. --- gnu/packages/web-browsers.scm | 184 +++++++++++++++++----------------- 1 file changed, 92 insertions(+), 92 deletions(-) diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index 7f04af981a..492ac9e1e1 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm @@ -57,6 +57,7 @@ (define-module (gnu packages web-browsers) #:use-module (gnu packages base) #:use-module (gnu packages bash) #:use-module (gnu packages bison) + #:use-module (gnu packages c) #:use-module (gnu packages compression) #:use-module (gnu packages curl) #:use-module (gnu packages databases) @@ -104,8 +105,10 @@ (define-module (gnu packages web-browsers) #:use-module (gnu packages tcl) #:use-module (gnu packages text-editors) #:use-module (gnu packages tls) + #:use-module (gnu packages version-control) #:use-module (gnu packages web) #:use-module (gnu packages webkit) + #:use-module (gnu packages xdisorg) #:use-module (gnu packages xorg)) (define-public midori @@ -601,127 +604,124 @@ (define-public vimb (define-public nyxt (package (name "nyxt") - (version "3.11.7") + (version "3.12.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/atlas-engineer/nyxt") - (commit version))) + (commit version) + (recursive? #t))) (sha256 (base32 - "0qrlks2b4a02b1lf8ah5cv3y32kh8yxnxkvfgrnia92g72xpj4j2")) + "0nilfqcsily1y7x641cby5wsbh5va6jcfn8bx3fr90gjgccwvay0")) (file-name (git-file-name name version)))) (build-system gnu-build-system) (arguments - `(#:make-flags (list "nyxt" "NYXT_SUBMODULES=false" + `(#:make-flags (list "nyxt" (string-append "DESTDIR=" (assoc-ref %outputs "out")) "PREFIX=") #:strip-binaries? #f ; Stripping breaks SBCL binaries. + #:tests? #f #:phases (modify-phases %standard-phases (delete 'configure) + (add-before 'build 'fix-so-paths + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "_build/cl-plus-ssl/src/reload.lisp" + (("libssl.so" all) + (string-append (assoc-ref inputs "openssl") "/lib/" all)) + (("libcrypto.so" all) + (string-append (assoc-ref inputs "openssl") "/lib/" all))) + (substitute* "_build/iolib/src/syscalls/ffi-functions-unix.lisp" + (("\\(:default \"libfixposix\"\\)") + (string-append "(:default \"" + (assoc-ref inputs "libfixposix") + "/lib/libfixposix\")"))) + (substitute* "_build/cl-sqlite/sqlite-ffi.lisp" + (("libsqlite3" all) + (string-append (assoc-ref inputs "sqlite") "/lib/" all))) + (substitute* "_build/cl-gobject-introspection/src/init.lisp" + (("libgobject-2\\.0\\.so") + (search-input-file inputs "/lib/libgobject-2.0.so")) + (("libgirepository-1\\.0\\.so") + (search-input-file inputs "/lib/libgirepository-1.0.so"))) + (substitute* "_build/cl-webkit/webkit2/webkit2.init.lisp" + (("libwebkit2gtk" all) + (string-append (assoc-ref inputs "webkitgtk-for-gtk3") "/lib/" all))) + (substitute* "_build/cl-cffi-gtk/glib/glib.init.lisp" + (("libglib-[0-9.]*\\.so" all) + (search-input-file inputs (string-append "/lib/" all))) + (("libgthread-[0-9.]*\\.so" all) + (search-input-file inputs (string-append "/lib/" all)))) + (substitute* "_build/cl-cffi-gtk/gobject/gobject.init.lisp" + (("libgobject-[0-9.]*\\.so" all) + (search-input-file inputs (string-append "/lib/" all)))) + (substitute* "_build/cl-cffi-gtk/gio/gio.init.lisp" + (("libgio-[0-9.]*\\.so" all) + (search-input-file inputs (string-append "/lib/" all)))) + (substitute* "_build/cl-cffi-gtk/cairo/cairo.init.lisp" + (("libcairo\\.so" all) + (search-input-file inputs (string-append "/lib/" all)))) + (substitute* "_build/cl-cffi-gtk/pango/pango.init.lisp" + (("libpango-[0-9.]*\\.so" all) + (search-input-file inputs (string-append "/lib/" all))) + (("libpangocairo-[0-9.]*\\.so" all) + (search-input-file inputs (string-append "/lib/" all)))) + (substitute* "_build/cl-cffi-gtk/gdk-pixbuf/gdk-pixbuf.init.lisp" + (("libgdk_pixbuf-[0-9.]*\\.so" all) + (search-input-file inputs (string-append "/lib/" all)))) + (substitute* "_build/cl-cffi-gtk/gdk/gdk.init.lisp" + (("libgdk-[0-9]\\.so" all) + (search-input-file inputs (string-append "/lib/" all)))) + (substitute* "_build/cl-cffi-gtk/gdk/gdk.package.lisp" + (("libgtk-[0-9]\\.so" all) + (search-input-file inputs (string-append "/lib/" all)))))) + (add-after 'unpack 'fix-clipboard-paths + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "_build/trivial-clipboard/src/text.lisp" + (("\"xsel\"") + (string-append "\"" (assoc-ref inputs "xsel") "/bin/xsel\"")) + (("\"wl-copy\"") + (string-append "\"" (assoc-ref inputs "wl-clipboard") "/bin/wl-copy\"")) + (("\"wl-paste\"") + (string-append "\"" (assoc-ref inputs "wl-clipboard") "/bin/wl-paste\""))))) (add-before 'build 'fix-common-lisp-cache-folder (lambda _ (setenv "HOME" "/tmp"))) (add-before 'check 'configure-tests - (lambda _ (setenv "NYXT_TESTS_NO_NETWORK" "1"))) + (lambda _ (setenv "NASDF_TESTS_NO_NETWORK" "1"))) (add-after 'install 'wrap-program (lambda* (#:key inputs outputs #:allow-other-keys) - (let* ((bin (string-append (assoc-ref outputs "out") "/bin/nyxt")) - (glib-networking (assoc-ref inputs "glib-networking")) - (libs '("gsettings-desktop-schemas")) - (path (string-join - (map (lambda (lib) - (string-append (assoc-ref inputs lib) "/lib")) - libs) - ":")) - (gi-path (getenv "GI_TYPELIB_PATH")) - (xdg-path (string-join - (map (lambda (lib) - (string-append (assoc-ref inputs lib) "/share")) - libs) - ":"))) - (wrap-program bin + (let ((gsettings (assoc-ref inputs "gsettings-desktop-schemas"))) + (wrap-program (string-append (assoc-ref outputs "out") "/bin/nyxt") `("GIO_EXTRA_MODULES" prefix - (,(string-append glib-networking "/lib/gio/modules"))) - `("GI_TYPELIB_PATH" prefix (,gi-path)) - `("LD_LIBRARY_PATH" ":" prefix (,path)) - `("XDG_DATA_DIRS" ":" prefix (,xdg-path))))))))) + (,(string-append (assoc-ref inputs "glib-networking") + "/lib/gio/modules"))) + `("GI_TYPELIB_PATH" prefix (,(getenv "GI_TYPELIB_PATH"))) + `("LD_LIBRARY_PATH" ":" prefix (,(string-append gsettings "/lib"))) + `("XDG_DATA_DIRS" ":" prefix (,(string-append gsettings "/share")))))))))) (native-inputs (list cl-lisp-unit2 sbcl)) - (inputs (list bash-minimal - sbcl-alexandria - sbcl-bordeaux-threads - sbcl-calispel - sbcl-cl-base64 - sbcl-cl-colors2 - sbcl-cl-containers - sbcl-cl-gopher - sbcl-cl-html-diff - sbcl-cl-json - sbcl-cl-ppcre - sbcl-cl-prevalence - sbcl-cl-qrencode - sbcl-cl-sqlite - sbcl-cl-str - sbcl-cl-tld - sbcl-closer-mop - sbcl-clss - sbcl-cluffer - sbcl-custom-hash-table - sbcl-dexador - sbcl-dissect - sbcl-enchant - sbcl-flexi-streams - sbcl-history-tree - sbcl-iolib - sbcl-lass - sbcl-local-time - sbcl-log4cl - sbcl-lparallel - sbcl-montezuma - sbcl-moptilities - sbcl-named-readtables - sbcl-nclasses - sbcl-ndebug - sbcl-nfiles - sbcl-nhooks - sbcl-njson - sbcl-nkeymaps - sbcl-nsymbols - sbcl-parenscript - sbcl-phos - sbcl-plump - sbcl-prompter - sbcl-py-configparser - sbcl-quri - sbcl-serapeum - sbcl-slime-swank - sbcl-slynk - sbcl-spinneret - sbcl-trivia - sbcl-trivial-clipboard - sbcl-trivial-custom-debugger - sbcl-trivial-features - sbcl-trivial-garbage - sbcl-trivial-package-local-nicknames - sbcl-trivial-types - sbcl-unix-opts - ;; WebKitGTK deps - sbcl-cl-cffi-gtk - sbcl-cl-webkit + (inputs (list cairo + git + glib glib-networking - gsettings-desktop-schemas - cl-gobject-introspection - gtk+ ; For the main loop - webkitgtk-for-gtk3 ; Required when we use its typelib gobject-introspection - pkg-config - ;; Useful for video playback + gsettings-desktop-schemas gst-libav gst-plugins-bad gst-plugins-base gst-plugins-good - gst-plugins-ugly)) + gst-plugins-ugly + gtk+ + gdk-pixbuf + libfixposix + openssl + pango + pkg-config + sqlite + webkitgtk-for-gtk3 + wl-clipboard + xsel)) (synopsis "Extensible web-browser in Common Lisp") (home-page "https://nyxt-browser.com/") (description "Nyxt is a keyboard-oriented, extensible web-browser designed -- 2.46.0 --=-=-=--
André A. Gomes <andremegafone@HIDDEN>
:guix-patches@HIDDEN
.
Full text available.guix-patches@HIDDEN
:bug#73937
; Package guix-patches
.
Full text available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.