From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates] build-system/gnu: Make gzip files writable before resetting timestamps. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 25 Jul 2021 06:13:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.162719353928948 (code B ref -1); Sun, 25 Jul 2021 06:13:02 +0000 Received: (at submit) by debbugs.gnu.org; 25 Jul 2021 06:12:19 +0000 Received: from localhost ([127.0.0.1]:47364 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m7XN4-0007Wq-Qg for submit@debbugs.gnu.org; Sun, 25 Jul 2021 02:12:19 -0400 Received: from lists.gnu.org ([209.51.188.17]:54410) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m7XN1-0007Wf-Em for submit@debbugs.gnu.org; Sun, 25 Jul 2021 02:12:17 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:41702) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m7XN0-0005Ws-UP for guix-patches@gnu.org; Sun, 25 Jul 2021 02:12:14 -0400 Received: from out1.migadu.com ([2001:41d0:2:863f::]:22534) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m7XMw-0003bp-Im for guix-patches@gnu.org; Sun, 25 Jul 2021 02:12:14 -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=1627193526; 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=BUxwaVAnUiyHnTCDo9HkPm7jYEyyZMd8FhPPcEFzJNM=; b=dmCboz3OOMjhuhw0cNVVgNchG/YKR6mWx4cOvZXTJGK1j147rzvooJjMQpew+3tfpolaXW YefJMuut12uRT0L/doazD4YqFwn9CwQAlEtwAqrFrHwzWfSL0SYnZERr9plYh/uiMJa4q5 3CxPwiz7osy86ZNjeNUgIP/Hj/d6gD8= From: Sarah Morgensen Date: Sat, 24 Jul 2021 23:12:04 -0700 Message-Id: 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=2001:41d0:2:863f::; envelope-from=iskarian@mgsn.dev; helo=out1.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, 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 (--) guix/build/gnu-build-system.scm (reset-gzip-timestamps): Ensure gzip files are writable before resetting their timestamps. --- Hello Guix, There have been a number of instances of packages having to add their own phase before 'reset-gzip-timestamps to make the gzip files writable--perhaps the gnu build system can take care of this itself? WDYT? -- Sarah guix/build/gnu-build-system.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guix/build/gnu-build-system.scm b/guix/build/gnu-build-system.scm index d0f7413268..d84411c090 100644 --- a/guix/build/gnu-build-system.scm +++ b/guix/build/gnu-build-system.scm @@ -598,6 +598,8 @@ and 'man/'. This phase moves directories to the right place if needed." (string-suffix? ".tgz" file)) (gzip-file? file))) #:stat lstat))) + ;; Ensure the files are writable. + (for-each make-file-writable files) (for-each reset-gzip-timestamp files))) (match outputs base-commit: 7bef3be1d318beebaf48ac6daa3140205ba18e98 -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates] build-system/gnu: Make gzip files writable before resetting timestamps. Resent-From: Maxime Devos Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 25 Jul 2021 15:28:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Sarah Morgensen , 49729@debbugs.gnu.org Cc: ludo@gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162722682428539 (code B ref 49729); Sun, 25 Jul 2021 15:28:01 +0000 Received: (at 49729) by debbugs.gnu.org; 25 Jul 2021 15:27:04 +0000 Received: from localhost ([127.0.0.1]:49154 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m7g1w-0007QF-Gb for submit@debbugs.gnu.org; Sun, 25 Jul 2021 11:27:04 -0400 Received: from xavier.telenet-ops.be ([195.130.132.52]:43076) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m7g1u-0007Pr-Fa for 49729@debbugs.gnu.org; Sun, 25 Jul 2021 11:27:03 -0400 Received: from ptr-bvsjgyjmffd7q9timvx.18120a2.ip6.access.telenet.be ([IPv6:2a02:1811:8c09:9d00:aaf1:9810:a0b8:a55d]) by xavier.telenet-ops.be with bizsmtp id ZTSy2500P0mfAB401TSzQQ; Sun, 25 Jul 2021 17:27:00 +0200 Message-ID: <4a4d285bafb763b6e6a8c5febc224f178d9a3083.camel@telenet.be> From: Maxime Devos Date: Sun, 25 Jul 2021 17:26:54 +0200 In-Reply-To: References: Content-Type: multipart/signed; micalg="pgp-sha512"; protocol="application/pgp-signature"; boundary="=-diOOgIujgp7ooQQa9phN" User-Agent: Evolution 3.34.2 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=telenet.be; s=r21; t=1627226820; bh=eME6SPWTJDZxxdMh8jnXhRf5BGQmADCdVbxKW+luzdw=; h=Subject:From:To:Cc:Date:In-Reply-To:References; b=hFydarnDDU+Z13qpoB8GclU4vijsEadsOVH3yW/A/m/GOEaPdevDuQTefb4zSo9K1 Zm6H6eCIClEmrc8q7ZNHEJX02NWMsE9+TENyWffHBe8V+g3wYpIx2k0+AsYIjXAfJO WjTbPpzvROPfyuXYCcVcLyVn4BghruBuj3t7iDVvUvoVfOID7aPKatDQOPM3MJG/jg f/l4CAtz6vwfubXdXPpzQsCNras9kR53O3zxuP1gFCUlr99Q2uwUhAA6HiH9ARTd3L 2d1nKv+HROp3w6se8hqQ56OlyX/rPx98IZqxXYKmU8H5KEOP2y51EGCOw8iZ5mJHF+ Vq6731h8s/zag== 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 (-) --=-diOOgIujgp7ooQQa9phN Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable [CC'ing Ludo because Ludo introduced the 'reset-gzip-timestamps' phase] Sarah Morgensen schreef op za 24-07-2021 om 23:12 [-0700]: > guix/build/gnu-build-system.scm (reset-gzip-timestamps): Ensure gzip > files are writable before resetting their timestamps. > --- > Hello Guix, >=20 > There have been a number of instances of packages having to add their own= phase > before 'reset-gzip-timestamps to make the gzip files writable--perhaps th= e gnu > build system can take care of this itself? WDYT? This seems reasonable to me. There are 35 package definions referring to 'reset-gzip-timestamps', could you follow up with patches removing the phas= es for making gzip files writable? Greetings, Maxime. --=-diOOgIujgp7ooQQa9phN Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- iI0EABYKADUWIQTB8z7iDFKP233XAR9J4+4iGRcl7gUCYP2CvhccbWF4aW1lZGV2 b3NAdGVsZW5ldC5iZQAKCRBJ4+4iGRcl7nGHAP9miEDKAiQV/WaMbi+zOyO6p21B bBSxBHb1yrdbMudOsAEAwA12n2XQ6H9qmlj81hL6897qEs27oxn26sHD4LhMYw0= =y7gm -----END PGP SIGNATURE----- --=-diOOgIujgp7ooQQa9phN-- From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates] build-system/gnu: Make gzip files writable before resetting timestamps. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 25 Jul 2021 20:46:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Maxime Devos Cc: 49729@debbugs.gnu.org, ludo@gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162724592527787 (code B ref 49729); Sun, 25 Jul 2021 20:46:01 +0000 Received: (at 49729) by debbugs.gnu.org; 25 Jul 2021 20:45:25 +0000 Received: from localhost ([127.0.0.1]:49481 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m7l00-0007Di-Ef for submit@debbugs.gnu.org; Sun, 25 Jul 2021 16:45:24 -0400 Received: from out0.migadu.com ([94.23.1.103]:24326) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m7kzy-0007BP-OV for 49729@debbugs.gnu.org; Sun, 25 Jul 2021 16:45:23 -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=1627245922; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=HTkL0WJ8o/3GYR+p5MTaYX3UKmxJUvoX0QEwZ93DxKM=; b=czr2uXWC0ov/xVi3rr9ZmACL8iQpDCTto0kOfTBt7ctGw+aKcUR3q6UWv9lbCpwknyOprr NubLuBLI5FdiT98GSnR5NY5f5eqdyfEE0OHMFhVotDMDrxVdi1M3/jbalOxHUeFLk5maYV ael49PEwa8PHgQNLN3JSbyyEBLxrDbo= From: Sarah Morgensen References: <4a4d285bafb763b6e6a8c5febc224f178d9a3083.camel@telenet.be> Date: Sun, 25 Jul 2021 13:45:20 -0700 In-Reply-To: <4a4d285bafb763b6e6a8c5febc224f178d9a3083.camel@telenet.be> (Maxime Devos's message of "Sun, 25 Jul 2021 17:26:54 +0200") Message-ID: <86a6map1gf.fsf_-_@mgsn.dev> MIME-Version: 1.0 Content-Type: text/plain 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 (-) Hi, Thanks for taking a look at this. Maxime Devos writes: > [CC'ing Ludo because Ludo introduced the 'reset-gzip-timestamps' phase] > Sarah Morgensen schreef op za 24-07-2021 om 23:12 [-0700]: >> guix/build/gnu-build-system.scm (reset-gzip-timestamps): Ensure gzip >> files are writable before resetting their timestamps. >> --- >> Hello Guix, >> >> There have been a number of instances of packages having to add their own phase >> before 'reset-gzip-timestamps to make the gzip files writable--perhaps the gnu >> build system can take care of this itself? WDYT? > > This seems reasonable to me. There are 35 package definions referring to > 'reset-gzip-timestamps', could you follow up with patches removing the phases > for making gzip files writable? Yes, I intend to. Should I send them to this issue #, or separately? (And one commit per package, yes?) -- Sarah From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates] build-system/gnu: Make gzip files writable before resetting timestamps. Resent-From: Maxime Devos Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 26 Jul 2021 20:50:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Sarah Morgensen Cc: 49729@debbugs.gnu.org, ludo@gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162733259030647 (code B ref 49729); Mon, 26 Jul 2021 20:50:01 +0000 Received: (at 49729) by debbugs.gnu.org; 26 Jul 2021 20:49:50 +0000 Received: from localhost ([127.0.0.1]:51610 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m87Xq-0007yF-DW for submit@debbugs.gnu.org; Mon, 26 Jul 2021 16:49:50 -0400 Received: from albert.telenet-ops.be ([195.130.137.90]:45610) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m87Xl-0007y1-9p for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 16:49:48 -0400 Received: from ptr-bvsjgyjmffd7q9timvx.18120a2.ip6.access.telenet.be ([IPv6:2a02:1811:8c09:9d00:aaf1:9810:a0b8:a55d]) by albert.telenet-ops.be with bizsmtp id Zwpi2500W0mfAB406wpjKq; Mon, 26 Jul 2021 22:49:43 +0200 Message-ID: <0b4f4d6b6b86b05ab31136f0c2d6fceb77f7184d.camel@telenet.be> From: Maxime Devos Date: Mon, 26 Jul 2021 22:49:32 +0200 In-Reply-To: <86a6map1gf.fsf_-_@mgsn.dev> References: <4a4d285bafb763b6e6a8c5febc224f178d9a3083.camel@telenet.be> <86a6map1gf.fsf_-_@mgsn.dev> Content-Type: multipart/signed; micalg="pgp-sha512"; protocol="application/pgp-signature"; boundary="=-9kucrYxab7qiQnobXx5P" User-Agent: Evolution 3.34.2 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=telenet.be; s=r21; t=1627332583; bh=UR107MqEpfSsf7mezOhYTYYy/ySJllfmUE6TgnP77R8=; h=Subject:From:To:Cc:Date:In-Reply-To:References; b=qLA37g+sSdpgCJOec7zUGrJWQnso/RHYVECT8NmottSvR+QTizDmfvkPsdnixt7nO nMSaKO9dNbeeWm2HvCyb1eySDIxFJdGxacFg/xY9hO01uLJJ9Nr9lmUT8bCvLM5pE5 eAWDc9x7CzOICSusJ0p3jrzQjXlh7p/npW+hMHC2oPPQdGauU49q97iMRWHDHidetN ucEep7TxQUvenefgNdj3mzwl45bJA7g2oZUCCm2xQi/NWj+Do3gFUILsSQOfXEeuUS CkxPgSZyDiznRpvqfxtOsPRwvoTKVa2bYhfwYzTm1NMtdzXxdbcii4glxNaLivRait jvoFgLA+fLppg== 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 (-) --=-9kucrYxab7qiQnobXx5P Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Hi, > > This seems reasonable to me. There are 35 package definions referring = to > > 'reset-gzip-timestamps', could you follow up with patches removing the = phases > > for making gzip files writable? >=20 > Yes, I intend to. Should I send them to this issue #, or separately? Personally, I'd send them to this issue # (easier to test whether this patc= h works that way). > (And one commit per package, yes?) Indeed! Greetings, Maxime. --=-9kucrYxab7qiQnobXx5P Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- iI0EABYKADUWIQTB8z7iDFKP233XAR9J4+4iGRcl7gUCYP8f3RccbWF4aW1lZGV2 b3NAdGVsZW5ldC5iZQAKCRBJ4+4iGRcl7sPOAP9I79tMsAnGLsBX0j9S81QL0/S/ lydvt2XE2wxoJB0NjgEApOdC50kCmzW1SMyfRzrqdk19HKn7z2qnVVLLyEtnSAA= =pbtX -----END PGP SIGNATURE----- --=-9kucrYxab7qiQnobXx5P-- From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 00/20] Remove obsolete phases making gzip files writable. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:17:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735218828752 (code B ref 49729); Tue, 27 Jul 2021 02:17:02 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:16:28 +0000 Received: from localhost ([127.0.0.1]:51886 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8Cdv-0007Tg-Pr for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:16:28 -0400 Received: from out2.migadu.com ([188.165.223.204]:56910) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8Cdt-0007TV-Hq for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:16:26 -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=1627352183; 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=ErtEKm76Hx7kAD6C6205MANlMpBzC4osNxPZjJZarPI=; b=YQMFr/0+N+081Tuxqk4ZdpWf6aP8Bes2ZIL30B82xUXwCtUlXO0fsvKaT+KIK9tpoFBk4r HPI2t66fFN6NR6yqIj3jaumZq+90256T1v6pVGSnu8kW4w0RbljOyamaefMjlMuqbuONPY jbBDCmPRIDWV0PheD9NQ4GpA/LJ+abo= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:16:20 -0700 Message-Id: In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev 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 (-) This follow-up series removes phases some packages added to specifically make gzip files writable before the 'reset-gzip-timestamps phase. For cpuid, it removes a similar file permissions tweak to the Makefile. After this patchset, there are only 7 other packages which reference 'reset-gzip-timestamps', and they delete the 'reset-gzip-timestamps phase. Upon inspection, I think all should remain unaltered. They have gzip files present in their sources which should be preserved in their output, and (as far as I can tell) they do not generate any gzip files or man pages (which would then be gzipped). For reference, they are: texlive-pstricks texlive-xypic texlive-cm-super julia-fileio go-github-com-go-git-go-git-fixtures cl-uffi cl-dexador -- Sarah Morgensen (20): gnu: python-biom-format: Remove obsolete phase. gnu: clipper: Remove obsolete phase. gnu: khmer: Remove obsolete phase. gnu: cups-minimal: Remove obsolete phase. gnu: emacs: Remove obsolete phase. gnu: po4a: Remove obsolete phase. gnu: go-golang-org-x-crypto: Remove obsolete phase. gnu: go-github-com-docker-distribution: Remove obsolete phase. gnu: go-github-com-gdamore-tcell: Remove obsolete phase. gnu: python-plotly: Remove obsolete phase. gnu: go-ipfs: Remove obsolete phase. gnu: python-scikit-learn: Remove obsolete phase. gnu: jalv-select: Remove obsolete phase. gnu: lmms: Remove obsolete phase. gnu: helm: Remove obsolete phase. gnu: arcanist: Remove obsolete phase. gnu: python-pdfminer-six: Remove obsolete phase. gnu: go-github-com-prometheus-common: Remove obsolete phase. gnu: pre-commit: Remove obsolete phase. gnu: cpuid: Remove obsolete file permissions change. gnu/packages/bioinformatics.scm | 31 ++------------------------- gnu/packages/cups.scm | 9 -------- gnu/packages/emacs.scm | 11 +--------- gnu/packages/gettext.scm | 7 ------- gnu/packages/golang.scm | 35 +++---------------------------- gnu/packages/graph.scm | 9 +------- gnu/packages/ipfs.scm | 11 +--------- gnu/packages/linux.scm | 7 +------ gnu/packages/machine-learning.scm | 10 +-------- gnu/packages/music.scm | 27 ++---------------------- gnu/packages/phabricator.scm | 8 +------ gnu/packages/python-xyz.scm | 8 +------ gnu/packages/syncthing.scm | 9 -------- gnu/packages/version-control.scm | 9 +------- 14 files changed, 15 insertions(+), 176 deletions(-) base-commit: e2690a8eb2df2cfc24bd84454dbfe092a6bf5139 prerequisite-patch-id: 89dd022dfbf4b935c4b8ba4002df7995d7a664e1 -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 02/20] gnu: clipper: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:57:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735461732265 (code B ref 49729); Tue, 27 Jul 2021 02:57:01 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:56:57 +0000 Received: from localhost ([127.0.0.1]:51906 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DH6-0008OJ-Lr for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:56:56 -0400 Received: from out0.migadu.com ([94.23.1.103]:24054) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DH4-0008O0-7q for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:56:54 -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=1627354613; 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=MYB92CXjk1fXosHiNCWyJsGPkca4XopjRznThM4k2Ag=; b=arTyTCeIOlHJkPHGviYuGtGlTAt++XxxJKYR0P7eJSLCMEV6sRAatGPLrYMpvTkq5Epqeh hSRWWirXbXtQg5zd0YwHSwajv5v8SaqL9A+2ZiioW1GVmvuUilI82LZ6DjaaTyUnnOlG7P o16f8rbIztpqUvwuxlho9T+WSTb+TUY= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:31 -0700 Message-Id: <43b263936417b9e8ae2725e35c69f9168432c24a.1627351168.git.iskarian@mgsn.dev> In-Reply-To: References: 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 (-) * gnu/packages/bioinformatics.scm (clipper)[arguments]<#:phases>: Remove 'make-files-writable phase. --- gnu/packages/bioinformatics.scm | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index aa9a1328f0..f027da3ce7 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -2303,17 +2303,6 @@ databases.") (base32 "1bcag4lb5bkzsj2vg7lrq24aw6yfgq275ifrbhd82l7kqgbbjbkv")))) (build-system python-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-before 'reset-gzip-timestamps 'make-files-writable - (lambda* (#:key outputs #:allow-other-keys) - ;; Make sure .gz files are writable so that the - ;; 'reset-gzip-timestamps' phase can do its work. - (let ((out (assoc-ref outputs "out"))) - (for-each make-file-writable - (find-files out "\\.gz$")) - #t)))))) (inputs `(("htseq" ,htseq) ("python-pybedtools" ,python-pybedtools) -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 01/20] gnu: python-biom-format: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:57:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735461732271 (code B ref 49729); Tue, 27 Jul 2021 02:57:02 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:56:57 +0000 Received: from localhost ([127.0.0.1]:51908 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DH6-0008OM-TZ for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:56:57 -0400 Received: from out0.migadu.com ([94.23.1.103]:24045) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DH3-0008Nx-7S for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:56:54 -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=1627354611; 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=MoFNtwKk5/eQ5NQ/ZeDW0ePghf586hvK1P7ud8XINW0=; b=USyC9in1o4JWW4kg1RX9+rCLLsMdWFCIYSAf6iSW2rwFE+T5D+IdEw8EewBdKaHc4F30Z4 PFq3MiXltSx85hg6xDV1jVP5tSTYrbkItEN9h20oF+SprHFe50oZdQUAgFi35u2xaXrkI+ 68JY3GEKo0ZBfsdLPbtVyK19tWd5Ku0= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:30 -0700 Message-Id: <6c136dc582692dd6fcac4565b8f3d57ee5f6ce72.1627351168.git.iskarian@mgsn.dev> In-Reply-To: References: 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 (-) * gnu/packages/bioinformatics.scm (python-biom-format)[arguments] <#:phases>: Remove 'make-files-writable phase. --- gnu/packages/bioinformatics.scm | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 002b417b54..aa9a1328f0 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -1012,14 +1012,7 @@ Python.") (("^(.+)def test_from_hdf5_issue_731" m indent) (string-append indent "@npt.dec.skipif(True, msg='Guix')\n" - m))) - #t)) - (add-before 'reset-gzip-timestamps 'make-files-writable - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (for-each (lambda (file) (chmod file #o644)) - (find-files out "\\.gz")) - #t)))))) + m)))))))) (propagated-inputs `(("python-numpy" ,python-numpy) ("python-scipy" ,python-scipy) -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 03/20] gnu: khmer: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735462332335 (code B ref 49729); Tue, 27 Jul 2021 02:58:01 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:03 +0000 Received: from localhost ([127.0.0.1]:51915 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHD-0008PR-7j for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:03 -0400 Received: from out0.migadu.com ([94.23.1.103]:24062) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DH6-0008OD-7B for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:56:56 -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=1627354615; 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=BpXlU6KXIE1eoQ5nKzzvGb7ncEgfWDW8eJT11/ECcNc=; b=TPt+bCP2QoWDYAhx3fLliLmCSGdzXiunUQVWhDj1hd1iwrvMPh5ueHD9rvtuSP6pAppSgS QZcBwBtEfLs8Ko85/+sZNpCQRSX/CCkgcSgO6YKJlyUmFm1XiP7H2Wf82fdk1qFap0vrlb MNPttiY4JmvYgV9NaLcttOvtXbQ/MPs= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:32 -0700 Message-Id: <4653284d9fd1c732063872170fb197af734b2f2f.1627351168.git.iskarian@mgsn.dev> In-Reply-To: References: 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 (-) * gnu/packages/bioinformatics.scm (khmer)[arguments]<#:phases>: Remove 'make-files-writable phase. --- gnu/packages/bioinformatics.scm | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index f027da3ce7..76a8160aa6 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -4739,16 +4739,7 @@ command, or queried for specific k-mers with @code{jellyfish query}.") `(#:phases (modify-phases %standard-phases (add-after 'unpack 'set-cc - (lambda _ (setenv "CC" "gcc") #t)) - - (add-before 'reset-gzip-timestamps 'make-files-writable - (lambda* (#:key outputs #:allow-other-keys) - ;; Make sure .gz files are writable so that the - ;; 'reset-gzip-timestamps' phase can do its work. - (let ((out (assoc-ref outputs "out"))) - (for-each make-file-writable - (find-files out "\\.gz$")) - #t)))))) + (lambda _ (setenv "CC" "gcc") #t))))) (native-inputs `(("python-cython" ,python-cython) ("python-pytest" ,python-pytest) -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 04/20] gnu: cups-minimal: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735462332343 (code B ref 49729); Tue, 27 Jul 2021 02:58:01 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:03 +0000 Received: from localhost ([127.0.0.1]:51917 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHD-0008PT-I3 for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:03 -0400 Received: from out0.migadu.com ([94.23.1.103]:24072) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DH8-0008OZ-9J for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:56:58 -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=1627354617; 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=bDpr6ORkhDK9Ht8XKExuasSG/ZrjbFHz14GZf1MA0Sg=; b=WUO6W0yGuvVcshyVBam96TkiFJ+FM0eKWpKZ3jlDsN2/sZkztOCqv/nHDx77q8fpjuhBVm A2hOCWFGNvumcGxrnHtvdpr4OE9f7Vp3LNPpRIGPLlNUvPHlFXYNUeg+MO9jsXT3+hT9U7 O4s9t9F4h+TCFZECua0XeZ/QwgFyNS0= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:33 -0700 Message-Id: <7ea06103233a147708ce78b8b200ddf311d46368.1627351168.git.iskarian@mgsn.dev> In-Reply-To: References: 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 (-) * gnu/packages/cups.scm (cups-minimal)[arguments]<#:phases>: Remove 'make-manpages-writable phase. --- gnu/packages/cups.scm | 9 --------- 1 file changed, 9 deletions(-) diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm index 0cec211b1b..8357bab50f 100644 --- a/gnu/packages/cups.scm +++ b/gnu/packages/cups.scm @@ -311,15 +311,6 @@ filters for the PDF-centric printing workflow introduced by OpenPrinting.") (("INITDIR.*=.*@INITDIR@") "INITDIR = @prefix@/@INITDIR@") (("/bin/sh") (which "sh"))) #t)) - ;; Make the compressed manpages writable so that the - ;; reset-gzip-timestamps phase does not error out. - (add-before 'reset-gzip-timestamps 'make-manpages-writable - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (man (string-append out "/share/man"))) - (for-each (lambda (file) (chmod file #o644)) - (find-files man "\\.gz")) - #t))) (add-before 'build 'patch-tests (lambda _ (substitute* "tools/ippeveprinter.c" -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 05/20] gnu: emacs: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735462432349 (code B ref 49729); Tue, 27 Jul 2021 02:58:02 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:04 +0000 Received: from localhost ([127.0.0.1]:51919 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHD-0008Pc-SJ for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:04 -0400 Received: from out0.migadu.com ([94.23.1.103]:24087) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHA-0008Og-8m for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:00 -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=1627354619; 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=NnCgb7ZosRdMSMBdhZpvIoyNixdoFDBNCSmH2Rx2/q0=; b=DXKmRM+doEmyKqZ6NnE6tGI2lIHZFRL0Be3OMUHfpY3Ya90srq/JjWpUKV60NrfexsTcdI hnwxWiyIQlbxfUXCRn2BNPyNixxMEtEq7+u+OLlsqYpyg9qviHVOFbRCcZZcduOPI+Bw31 57ChlDo37NhFXy9C72yc7aUrdGIE5VA= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:34 -0700 Message-Id: <06d930a8b0d89de247db72124d675a556a474bfc.1627351168.git.iskarian@mgsn.dev> In-Reply-To: References: 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 (-) * gnu/packages/emacs.scm (emacs)[arguments]<#:phases>: Remove 'make-compressed-files-writable phase. --- gnu/packages/emacs.scm | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 060a253968..36692347ee 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -225,16 +225,7 @@ ;; environment variables from emacs. ;; Likewise, we don't need to patch helper binaries ;; like etags, ctags or ebrowse. - "^emacs(-[0-9]+(\\.[0-9]+)*)?$")) - #t))) - (add-before 'reset-gzip-timestamps 'make-compressed-files-writable - ;; The 'reset-gzip-timestamps phase will throw a permission error - ;; if gzip files aren't writable then. This phase is needed when - ;; building from a git checkout. - (lambda _ - (for-each make-file-writable - (find-files %output ".*\\.t?gz$")) - #t))))) + "^emacs(-[0-9]+(\\.[0-9]+)*)?$")))))))) (inputs `(("gnutls" ,gnutls) ("ncurses" ,ncurses) -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 06/20] gnu: po4a: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735463132390 (code B ref 49729); Tue, 27 Jul 2021 02:58:02 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:11 +0000 Received: from localhost ([127.0.0.1]:51925 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHL-0008QK-6s for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:11 -0400 Received: from out0.migadu.com ([94.23.1.103]:24107) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHC-0008P2-4X for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:02 -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=1627354621; 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=SSY7RWFEO8PfJOCT5pwMoJM5CuWwY1b3nMSJSbN+Vs0=; b=LrxZTu4zp6Pufvve1Zzhn5WIbuNZcAtQdyRGHBwUV4gEKB8WRzvxL7Sh58QDe+r6LMwu5Q 3j6E47HqbtS29B6X4kRF5u7G2uVR94K/ItchcvMuxuUOr4RILg6nWHRCZSCT8aD3/oojwr LSxFliJv04VvYzoiDhYK50t9wxPM91c= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:35 -0700 Message-Id: <2e01668f03cca0c2e3824ca695523b658ec2e770.1627351168.git.iskarian@mgsn.dev> In-Reply-To: References: 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 (-) * gnu/packages/gettext.scm (po4a)[arguments]<#:phases>: Remove 'make-compressed-files-writable phase. --- gnu/packages/gettext.scm | 7 ------- 1 file changed, 7 deletions(-) diff --git a/gnu/packages/gettext.scm b/gnu/packages/gettext.scm index a71af5bbe3..f8392d7677 100644 --- a/gnu/packages/gettext.scm +++ b/gnu/packages/gettext.scm @@ -251,13 +251,6 @@ from Markdown files.") `("PERL5LIB" ":" prefix (,path)))) (find-files bin "\\.*$")) #t))) - (add-before 'reset-gzip-timestamps 'make-compressed-files-writable - (lambda* (#:key outputs #:allow-other-keys) - (for-each make-file-writable - (find-files (string-append (assoc-ref outputs "out") - "/share/man") - ".*\\.gz$")) - #t)) (add-after 'unpack 'patch-docbook-xml (lambda* (#:key inputs #:allow-other-keys) (substitute* (find-files "." ".*\\.xml(-good)?") -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 07/20] gnu: go-golang-org-x-crypto: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735463132397 (code B ref 49729); Tue, 27 Jul 2021 02:58:03 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:11 +0000 Received: from localhost ([127.0.0.1]:51927 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHL-0008QN-Eg for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:11 -0400 Received: from out0.migadu.com ([94.23.1.103]:24118) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHD-0008PZ-UJ for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:04 -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=1627354623; 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=tnN9MyGnwtESswpJkvMiNdDAvupOoI2wlWb0+ow/new=; b=FXL6imjiuKWqzHVQO5qRQvYGV+Cu/2ix5OAD+tGJnncOtHbc7SSEreYyVpJxETy98PYoB1 9R38GKS6w7BkPZ58n5bvXYF+phHPrKhTBv8zIvNC/2jNwCPtaSRRtiyMQ95zy6rLDjErjv m6D5LGqdIQuSOx6dcnOGPx7nApKaBTU= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:36 -0700 Message-Id: In-Reply-To: References: 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 (-) * gnu/packages/golang.scm (go-golang-org-x-crypto)[arguments]<#:phases>: Remove 'make-gzip-archive-writable phase. --- gnu/packages/golang.scm | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index d3ef39a2e6..c6804cdee3 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -2188,16 +2188,7 @@ Go programming language.") #:phases (modify-phases %standard-phases ;; Source-only package - (delete 'build) - (add-before 'reset-gzip-timestamps 'make-gzip-archive-writable - (lambda* (#:key outputs #:allow-other-keys) - (map (lambda (file) - (make-file-writable file)) - (find-files - (string-append (assoc-ref outputs "out") - "/src/golang.org/x/crypto/ed25519/testdata") - ".*\\.gz$")) - #t))))) + (delete 'build)))) (propagated-inputs `(("go-golang-org-x-sys" ,go-golang-org-x-sys))) (synopsis "Supplementary cryptographic libraries in Go") -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 08/20] gnu: go-github-com-docker-distribution: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735463232404 (code B ref 49729); Tue, 27 Jul 2021 02:58:03 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:12 +0000 Received: from localhost ([127.0.0.1]:51929 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHL-0008QU-Qs for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:12 -0400 Received: from out2.migadu.com ([188.165.223.204]:10430) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHG-0008Pv-Ua for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:08 -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=1627354625; 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=Q5L8+0GckN+2OYKS388UaE0cmxk6PP7/ceLzNdO+nUM=; b=KCjB8VWhOrr4Atl54Rp2C9rWsp+fdbu/0Z85aIZhnT9qKLoU6QcnY4AZ8UeFk2sB+PBSUW VioknnIdbx1RAjL8HoiCv2oeisAQ1jQv1F6FkAMuLM0mVsRs/4ps0xhaOGx5S+ytgRXICU AJAHrXNNI8YD3WxGpo6XVA1D7oy+nl0= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:37 -0700 Message-Id: <8925b70e487ed2690f96aafc00128133212a6cdb.1627351168.git.iskarian@mgsn.dev> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev 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 (-) * gnu/packages/golang.scm (go-github-com-docker-distribution)[arguments] <#:phases>: Remove 'make-gzip-archive-writable phase. --- gnu/packages/golang.scm | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index c6804cdee3..e2b557f5ee 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3391,17 +3391,7 @@ SysVinit, and more.") ("go-golang-org-x-crypto" ,go-golang-org-x-crypto))) (arguments - '(#:import-path "github.com/docker/distribution" - #:phases - (modify-phases %standard-phases - (add-before 'reset-gzip-timestamps 'make-gzip-archive-writable - (lambda* (#:key outputs #:allow-other-keys) - (map (lambda (file) - (make-file-writable file)) - (find-files - (assoc-ref outputs "out") - ".*\\.gz$")) - #t))))) + '(#:import-path "github.com/docker/distribution")) (home-page "https://github.com/docker/distribution") (synopsis "This package is a Docker toolset to pack, ship, store, and -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 09/20] gnu: go-github-com-gdamore-tcell: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:04 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735463232412 (code B ref 49729); Tue, 27 Jul 2021 02:58:04 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:12 +0000 Received: from localhost ([127.0.0.1]:51931 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHM-0008Qb-51 for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:12 -0400 Received: from out2.migadu.com ([188.165.223.204]:10443) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHH-0008Pz-Uu for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:09 -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=1627354627; 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=/guW9xigt3C2KK2njv23waQ/7fX/eKD/ys/7lkQWGk0=; b=jf6Xg1qyEl77ziCUdj8QsLJRdHkHi8/IVTwIlUuOWqbuGsEO46Dvu1vIWWd4yAJPnk10GJ cAyR5GELFeaec4RVksebgkJIGa4gWZlcfvBdcmtClpquSMrKOGy6jY3mcISorkYJC5Whmf 2F1elbQVkzhldNsZLZW3qyEuffQMq3I= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:38 -0700 Message-Id: <4d8029049c070d3762fecf430334ba7eb1efa26d.1627351168.git.iskarian@mgsn.dev> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev 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 (-) * gnu/packages/golang.scm (go-github-com-gdamore-tcell)[arguments] <#:phases>: Remove 'make-files-writable phase. --- gnu/packages/golang.scm | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index e2b557f5ee..232c2fef38 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -5211,17 +5211,7 @@ non-UTF-friendly sources.") "0il2nnxp2cqiy73m49215dnf9in3vd25ji8qxbmq87c5qy7i1q9d")))) (build-system go-build-system) (arguments - `(#:import-path "github.com/gdamore/tcell" - #:phases - (modify-phases %standard-phases - (add-before 'reset-gzip-timestamps 'make-files-writable - (lambda* (#:key outputs #:allow-other-keys) - ;; Make sure .gz files are writable so that the - ;; 'reset-gzip-timestamps' phase can do its work. - (let ((out (assoc-ref outputs "out"))) - (for-each make-file-writable - (find-files out "\\.gz$")) - #t)))))) + `(#:import-path "github.com/gdamore/tcell")) (inputs `(("go-github.com-mattn-go-runewidth" ,go-github.com-mattn-go-runewidth) ("go-golang-org-colorful" ,go-golang-org-colorful) -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 10/20] gnu: python-plotly: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:04 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735464232459 (code B ref 49729); Tue, 27 Jul 2021 02:58:04 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:22 +0000 Received: from localhost ([127.0.0.1]:51938 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHW-0008RS-G5 for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:22 -0400 Received: from out2.migadu.com ([188.165.223.204]:10459) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHK-0008QE-GG for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:57: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=1627354629; 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=k1Q0VxsKh8eeggFXrai8QP0D2a6/Xrt12iSTD3e5tiY=; b=ZOAZ71N2f/RBCWYDcGoyNlwwVf36RnOhcLRwRi+ds9Q53C5HgZHwWX+F0/JH5Bp7ILPZFg P7wzUZ2TuBrNifqg7JlAv3J+lOLji9mtraZzzmoLODpJk4/dyOcwQ6iw2tIHX+fmWXzO/T jSuod1cAyhQRrz0ex+asN+6bpUvgw+8= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:39 -0700 Message-Id: <59ce03199c7c17e0b0696326776855e70067e698.1627351168.git.iskarian@mgsn.dev> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev 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 (-) * gnu/packages/graph.scm (python-plotly)[arguments]<#:phases>: Remove 'make-files-writable phase. --- gnu/packages/graph.scm | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm index 42bd37a07a..01e9b853ea 100644 --- a/gnu/packages/graph.scm +++ b/gnu/packages/graph.scm @@ -183,14 +183,7 @@ lines.") (invoke "pytest" "-x" "plotly/tests/test_io") ;; FIXME: Add optional dependencies and enable their tests. ;; (invoke "pytest" "-x" "plotly/tests/test_optional") - (invoke "pytest" "_plotly_utils/tests")) - #t)) - (add-before 'reset-gzip-timestamps 'make-files-writable - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (for-each (lambda (file) (chmod file #o644)) - (find-files out "\\.gz")) - #t)))))) + (invoke "pytest" "_plotly_utils/tests"))))))) (native-inputs `(("python-ipywidgets" ,python-ipywidgets) ("python-pytest" ,python-pytest) -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 11/20] gnu: go-ipfs: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:04 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735464332466 (code B ref 49729); Tue, 27 Jul 2021 02:58:04 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:23 +0000 Received: from localhost ([127.0.0.1]:51940 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHW-0008RU-Mt for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:23 -0400 Received: from out0.migadu.com ([94.23.1.103]:24151) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHM-0008Qg-Ht for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:12 -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=1627354632; 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=3oRJFn2e9VB/oFsgaW6obJ3aIEExEXGPQkxGzYI7KIU=; b=UbBH441kV13NSDUSeC+RFYfT7gQBgUfKTYgAF+NroaYbDwfwP87RjOTht+myNxWzFEOpGB aMF3pzXuFcS/pIVlbtC4o9aXgid0V1/qgUY2vq3DW+PDLD6L88eoA6FyGTtikKgtRh+0Kx tEZqZTnyRBxeoMOXuLlezdp3Cwr1680= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:40 -0700 Message-Id: <21c73a9243ae770d3d94bfac0405cd0df88bccc0.1627351168.git.iskarian@mgsn.dev> In-Reply-To: References: 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 (-) * gnu/packages/ipfs.scm (go-ipfs)[arguments]<#:phases>: Remove 'make-files-writable phase. --- gnu/packages/ipfs.scm | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index 57701991e3..0739c2cf61 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -227,16 +227,7 @@ written in Go.") (build-system go-build-system) (arguments '(#:unpack-path "github.com/ipfs/go-ipfs" - #:import-path "github.com/ipfs/go-ipfs/cmd/ipfs" - #:phases (modify-phases %standard-phases - (add-before 'reset-gzip-timestamps 'make-files-writable - (lambda* (#:key outputs #:allow-other-keys) - ;; Make sure .gz files are writable so that the - ;; 'reset-gzip-timestamps' phase can do its work. - (let ((out (assoc-ref outputs "out"))) - (for-each make-file-writable - (find-files out "\\.gz$")) - #t)))))) + #:import-path "github.com/ipfs/go-ipfs/cmd/ipfs")) (home-page "https://ipfs.io") (synopsis "Go implementation of IPFS, a peer-to-peer hypermedia protocol") (description "IPFS is a global, versioned, peer-to-peer file system. It -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 12/20] gnu: python-scikit-learn: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:05 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735464332473 (code B ref 49729); Tue, 27 Jul 2021 02:58:05 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:23 +0000 Received: from localhost ([127.0.0.1]:51942 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHX-0008Rb-4N for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:23 -0400 Received: from out2.migadu.com ([188.165.223.204]:10478) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHO-0008Qw-CI for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:14 -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=1627354633; 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=zJbT2XmwIKAgJPwznMZ25HYIJO662DedmI9gKSmo1k0=; b=TbihVFaCob8nB2YhXrmVrvLIZxAgDsZ8o9W0jv0gY4UqOc1QCY2wnF9y82F3LSFZkokcB0 +q0Iylc0RHSb+MuPiyI0y9XIS45Z7IIz37h0daIzPYtzcrmBBN68vg6yME+NU5fNCeVn5V 4xkJQdj5k2pzRhsQF3PvTIgr83WJ1ts= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:41 -0700 Message-Id: <1b02f4fc0483562a3cfda85e4f2e5b263a7022ae.1627351168.git.iskarian@mgsn.dev> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev 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 (-) * gnu/packages/machine-learning.scm (python-scikit-learn)[arguments] <#:phases>: Remove 'make-files-writable phase. --- gnu/packages/machine-learning.scm | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 93eee3de88..bfc730f221 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -812,15 +812,7 @@ computing environments.") ;; Some tests require write access to $HOME. (setenv "HOME" "/tmp") - (invoke "pytest" "sklearn" "-m" "not network"))) - (add-before 'reset-gzip-timestamps 'make-files-writable - (lambda* (#:key outputs #:allow-other-keys) - ;; Make sure .gz files are writable so that the - ;; 'reset-gzip-timestamps' phase can do its work. - (let ((out (assoc-ref outputs "out"))) - (for-each make-file-writable - (find-files out "\\.gz$")) - #t)))))) + (invoke "pytest" "sklearn" "-m" "not network")))))) (inputs `(("openblas" ,openblas))) (native-inputs -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 13/20] gnu: jalv-select: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:05 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735464332481 (code B ref 49729); Tue, 27 Jul 2021 02:58:05 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:23 +0000 Received: from localhost ([127.0.0.1]:51944 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHX-0008Ri-FO for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:23 -0400 Received: from out0.migadu.com ([94.23.1.103]:24168) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHQ-0008R4-KL for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:17 -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=1627354636; 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=UzKXkUCASAtaUv8IFarY39EdY9vYrOCxKvZerArYBik=; b=kIC+ofDxM5vNz+mPsrLBE4Fin39zLLNeCtWwTq8tugDa5H1x45iCXaFfaFwvPpyT0PnKO4 a3cxoqB6B423/dyZvD7wCJ1eTZymn4ByjvpYL9B+ZgMkfUbGCynz+00AHMcnHMykdn/Odm UJd0acrdWdtex6zgzhW+GN8gFyEOWgQ= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:42 -0700 Message-Id: In-Reply-To: References: 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 (-) * gnu/packages/music.scm (jalv-select)[arguments]<#:phases>: Remove 'make-manpages-writable phase. --- gnu/packages/music.scm | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 492103b715..f3da49ddd3 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -2029,15 +2029,7 @@ Editor. It is compatible with Power Tab Editor 1.7 and Guitar Pro.") (lambda* (#:key inputs #:allow-other-keys) (substitute* "jalv.select.cpp" (("echo \\$PATH.*tr ':'.*xargs ls") - (string-append "ls -1 " (assoc-ref inputs "jalv") "/bin"))) - #t)) - (add-before 'reset-gzip-timestamps 'make-manpages-writable - (lambda* (#:key outputs #:allow-other-keys) - (for-each make-file-writable - (find-files (string-append (assoc-ref outputs "out") - "/share/man") - ".*\\.gz$")) - #t))))) + (string-append "ls -1 " (assoc-ref inputs "jalv") "/bin")))))))) (inputs `(("lilv" ,lilv) ("lv2" ,lv2) -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 14/20] gnu: lmms: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:06 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735464432488 (code B ref 49729); Tue, 27 Jul 2021 02:58:06 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:24 +0000 Received: from localhost ([127.0.0.1]:51946 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHX-0008Rq-Ob for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:24 -0400 Received: from out2.migadu.com ([188.165.223.204]:10499) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHS-0008RC-Eu for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:18 -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=1627354637; 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=2IUGglPUinktc6vducHz2v2kuwbwWY6Ry+I0MV4hukY=; b=SM+G7pQKnvXm7MPvpqlaOQ39/4zzykR/969GCviT7Qx4F2BroCLgjAKO2nrMBNVi5rtLz0 I+sp8FBpj0jn2/PI99edyPAIPWXE6FjKhz6FfO+OgwoTqNFjwowVNHVl1A9lp/M2RlPZB/ h55G2kmK4Isp3wvkEenCkZA77PLw5Rc= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:43 -0700 Message-Id: In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev 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 (-) * gnu/packages/music.scm (lmms)[arguments]<#:phases>: Remove 'make-manpages-writable phase. --- gnu/packages/music.scm | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index f3da49ddd3..b9234d4996 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -4632,16 +4632,7 @@ are a C compiler and glib. Full API documentation and examples are included.") (assoc-ref outputs "out") "/lib/lmms" ":" (assoc-ref outputs "out") "/lib/lmms/ladspa" - "\"")) - #t)) - (add-before 'reset-gzip-timestamps 'make-manpages-writable - (lambda* (#:key outputs #:allow-other-keys) - (map (lambda (file) - (make-file-writable file)) - (find-files (string-append (assoc-ref outputs "out") - "/share/man") - ".*\\.gz$")) - #t))))) + "\""))))))) (native-inputs `(("pkg-config" ,pkg-config) ("qttools" ,qttools) -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 15/20] gnu: helm: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:06 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735465732538 (code B ref 49729); Tue, 27 Jul 2021 02:58:06 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:37 +0000 Received: from localhost ([127.0.0.1]:51952 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHl-0008Si-2N for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:37 -0400 Received: from out2.migadu.com ([188.165.223.204]:10518) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHV-0008RK-Bu for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:21 -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=1627354639; 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=a0UcxE0QYHhhX8UnybFNzpSZGST4U/DEbW9W3L38xbY=; b=hCsKrXx9Sv6ZYY2hqj8QGablRqG7dilq8cJpeEZODkpOYyz7it/CPJc2TIibWR0YrN72Ru uT03p7HVu337pxX+sI5Btywk0wT05/f3f3V9aM3h+lFqKkuTu0xVvqnV049kKzNokgpXor kX2puXxupv4t/Yp9Osd9kzQWLoV89HU= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:44 -0700 Message-Id: <06030a9455560cd273aa2e2d70fdc2830abf06e4.1627351168.git.iskarian@mgsn.dev> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev 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 (-) * gnu/packages/music.scm (helm)[arguments]<#:phases>: Remove 'make-gz-files-writable phase. --- gnu/packages/music.scm | 6 ------ 1 file changed, 6 deletions(-) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index b9234d4996..f9b93fb199 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -6156,12 +6156,6 @@ MIDI drums and comes as two separate drumkits: Black Pearl and Red Zeppelin.") (substitute* "Makefile" (("/usr") "")) #t)) - (add-before 'reset-gzip-timestamps 'make-gz-files-writable - (lambda* (#:key outputs #:allow-other-keys) - (for-each make-file-writable - (find-files (string-append (assoc-ref outputs "out")) - ".*\\.gz$")) - #t)) (delete 'configure)))) (inputs `(("alsa-lib" ,alsa-lib) -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 16/20] gnu: arcanist: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:06 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735465732545 (code B ref 49729); Tue, 27 Jul 2021 02:58:06 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:37 +0000 Received: from localhost ([127.0.0.1]:51954 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHl-0008Sl-Ew for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:37 -0400 Received: from out2.migadu.com ([188.165.223.204]:10531) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHY-0008Rw-73 for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:24 -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=1627354642; 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=Heby+jchH01fpZQuTheAcx1Wwshdq2nBNNxayAXAl4Y=; b=Tc9YemIJRub6fU5P9olswKSK0zAdda5Dt6hPgvjzEQnBfz1iZEdgObRi20wJqlv8F/PyB8 BaIEB5y2MsRIqj0ZmnnpwWKPp4wZFEYhsbtVlFimHjVfqklMd11TwlczYHjQcYBAg3ZE0o LTshfC+QIxiplLigBPtDhCZGrz1RG18= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:45 -0700 Message-Id: <7bad382096dbaf3f0aca5f7067c3e283d2a918b8.1627351168.git.iskarian@mgsn.dev> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev 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 (-) * gnu/packages/phabricator.scm (arcanist)[arguments]<#:phases>: Remove 'make-compressed-files-writable phase. --- gnu/packages/phabricator.scm | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/gnu/packages/phabricator.scm b/gnu/packages/phabricator.scm index af95cd93d2..86fc7a0c12 100644 --- a/gnu/packages/phabricator.scm +++ b/gnu/packages/phabricator.scm @@ -62,13 +62,7 @@ `("PATH" ":" prefix (,@(map (lambda (i) (string-append (assoc-ref %build-inputs i) "/bin")) - '("php" "git" "mercurial" "subversion")))))) - #t)) - (add-before 'reset-gzip-timestamps 'make-compressed-files-writable - (lambda _ - (for-each make-file-writable - (find-files %output ".*\\.t?gz$")) - #t))))) + '("php" "git" "mercurial" "subversion"))))))))))) (inputs `(("php" ,php) ("git" ,git) -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 17/20] gnu: python-pdfminer-six: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:07 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735465832553 (code B ref 49729); Tue, 27 Jul 2021 02:58:07 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:38 +0000 Received: from localhost ([127.0.0.1]:51956 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHl-0008Ss-Og for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:38 -0400 Received: from out2.migadu.com ([188.165.223.204]:10550) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHa-0008SB-7N for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:26 -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=1627354645; 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=ucuWdO7AvPjDXOq+8Z9wqSdZEi0xA7yG0OJNc79lDok=; b=itfqSgL70BxrVKZbHFHLcccuCcU0HpNA+nGbeOk2T62zoQzVd8V19PYe5vyT8TlmEAxVVd tCJyKcamnOO14JVfyihPGHRJwPK4fBug7b2Tj7KwcAkFO5KPVEFwIL8mdYWCjKiS8UZH7d AsNbeEy+9IUbCQVOKlke9uEWyr7Lpfs= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:46 -0700 Message-Id: In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev 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 (-) * gnu/packages/python-xyz.scm (python-pdfminer-six)[arguments] <#:phases>: Remove 'make-files-writable phase. --- gnu/packages/python-xyz.scm | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 60a0ea5f5d..5e99a892d3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13597,13 +13597,7 @@ module, adding support for Unicode strings.") #t)) (replace 'check (lambda _ - (invoke "make" "test"))) - (add-before 'reset-gzip-timestamps 'make-files-writable - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (for-each make-file-writable - (find-files out "\\.gz$")) - #t)))))) + (invoke "make" "test")))))) (propagated-inputs `(("python-chardet" ,python-chardet) ("python-cryptography" ,python-cryptography) -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 18/20] gnu: go-github-com-prometheus-common: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:07 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735465832561 (code B ref 49729); Tue, 27 Jul 2021 02:58:07 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:38 +0000 Received: from localhost ([127.0.0.1]:51958 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHm-0008T0-3P for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:38 -0400 Received: from out0.migadu.com ([94.23.1.103]:24208) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHc-0008SK-5s for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:28 -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=1627354647; 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=aZMBM26RRUqefKgIRlMW2DxkuISHuKe+Kw9GRzIXdbQ=; b=Re40qYb7iprGmvl4woYzC7UURsfxsy4rWwJz8Jp1Fcp5trS0nIXxyMzaHrnhXpPRN/GoId eHg+6FHqr3EtnxQpAyxYJnZdpmMEiyXLy06olpCXvRvyV284fzFXo9lBCmdWLbOOCAPsnj jQJLnAammwMvx2rNVe8aji4/XTXF1Xo= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:47 -0700 Message-Id: <1aba445c679e00c1d048ecac66be4e2313c8f0dc.1627351168.git.iskarian@mgsn.dev> In-Reply-To: References: 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 (-) * gnu/packages/syncthing.scm (go-github-com-prometheus-common) [arguments]<#:phases>: Remove 'make-gzip-archive-writable phase. --- gnu/packages/syncthing.scm | 9 --------- 1 file changed, 9 deletions(-) diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm index 5cb8449e44..bc3640be8e 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -894,15 +894,6 @@ message streaming.") #:tests? #f #:phases (modify-phases %standard-phases - (add-before 'reset-gzip-timestamps 'make-gzip-archive-writable - (lambda* (#:key outputs #:allow-other-keys) - (map (lambda (file) - (make-file-writable file)) - (find-files - (string-append (assoc-ref outputs "out") - "/src/github.com/prometheus/common/expfmt/testdata/") - ".*\\.gz$")) - #t)) ;; Source-only package (delete 'build)))) (propagated-inputs -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 19/20] gnu: pre-commit: Remove obsolete phase. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 02:58:08 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162735465832567 (code B ref 49729); Tue, 27 Jul 2021 02:58:08 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 02:57:38 +0000 Received: from localhost ([127.0.0.1]:51960 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHm-0008T8-CE for submit@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:38 -0400 Received: from out2.migadu.com ([188.165.223.204]:10572) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8DHd-0008SS-Ul for 49729@debbugs.gnu.org; Mon, 26 Jul 2021 22:57:30 -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=1627354649; 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=TrSEt10f7qv9OekVpJUuorYVCMvp+qDTGj7hJS0LXrc=; b=U635Lgk+f13T/vOAaOzTOIJCm0ACNqq1Ya35aiHKtYa4sD1dPV0nfB6ACh71/N2vpkTQpe WQ54/o6KU8PQIV3c1+1MUI4lYbbXhtV7poD0IBmLVW3IrGW77ywT9SC+cV/SMHM8K5D5cM jP84lWESxB3fd4T1PSSwNblVM1Oazx4= From: Sarah Morgensen Date: Mon, 26 Jul 2021 19:56:48 -0700 Message-Id: In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev 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 (-) * gnu/packages/version-control.scm (pre-commit)[arguments]<#:phases>: Remove 'make-gz-writable phase. --- gnu/packages/version-control.scm | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 8bdac8df53..cae8077909 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -1569,14 +1569,7 @@ control to Git repositories.") ;; be possible to fix them. "not test_install_existing_hooks_no_overwrite" " and not test_uninstall_restores_legacy_hooks" - " and not test_installed_from_venv"))))) - (add-before 'reset-gzip-timestamps 'make-gz-writable - (lambda* (#:key outputs #:allow-other-keys) - ;; Make sure .gz files are writable so that the - ;; 'reset-gzip-timestamps' phase can do its work. - (let ((out (assoc-ref outputs "out"))) - (for-each make-file-writable - (find-files out "\\.gz$")))))))) + " and not test_installed_from_venv")))))))) (native-inputs `(("git" ,git-minimal) ("python-covdefaults" ,python-covdefaults) -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates 20/20] gnu: cpuid: Remove obsolete file permissions change. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Jul 2021 19:27:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49729@debbugs.gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.16274140127192 (code B ref 49729); Tue, 27 Jul 2021 19:27:02 +0000 Received: (at 49729) by debbugs.gnu.org; 27 Jul 2021 19:26:52 +0000 Received: from localhost ([127.0.0.1]:53936 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8Sj6-0001rv-GI for submit@debbugs.gnu.org; Tue, 27 Jul 2021 15:26:52 -0400 Received: from out2.migadu.com ([188.165.223.204]:14108) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8Sj3-0001rk-DH for 49729@debbugs.gnu.org; Tue, 27 Jul 2021 15:26:50 -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=1627414007; 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=nZe0S/KG8uEH0zpV36mV+8Z9+xqRtwnUjY0EGlxW80Y=; b=D7GeFzwPAj4zBhQJQ6mz/zZLN1C6d4+hgrFk74/sgyb6T6+XsMWYoXURxMpL/ejpWRSOBN aCh/rpFqqgKLjRBYH2trDShYNrf8CeOXJ+cYZPLahfry6EwuhzarRgnmvC2zYs5dunBCqD 1YKLTATwJH9Mcfl+UMUg3uI60WzOD5w= From: Sarah Morgensen Date: Tue, 27 Jul 2021 12:26:45 -0700 Message-Id: <7ea269be17494a5b957cf20050dd7e8580d6a9fb.1627351168.git.iskarian@mgsn.dev> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev 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 (-) * gnu/packages/linux.scm (cpuid)[arguments]<#:phases>{fix-makefile}: Remove Makefile gzip permissions patch. --- gnu/packages/linux.scm | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 9e3ad367e2..d8787c9154 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -7073,12 +7073,7 @@ available in the kernel Linux.") (add-before 'install 'fix-makefile (lambda* (#:key outputs #:allow-other-keys) (substitute* "Makefile" - (("\\$\\(BUILDROOT\\)/usr") (assoc-ref outputs "out"))) - ;; Make the compressed manpages writable so that the - ;; reset-gzip-timestamps phase does not error out. - (substitute* "Makefile" - (("-m 444") "-m 644")) - #t))))) + (("\\$\\(BUILDROOT\\)/usr") (assoc-ref outputs "out")))))))) (inputs `(("perl" ,perl))) (supported-systems '("i686-linux" "x86_64-linux")) (home-page "http://www.etallen.com/cpuid.html") -- 2.31.1 From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates] build-system/gnu: Make gzip files writable before resetting timestamps. Resent-From: Sarah Morgensen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 28 Jul 2021 01:22:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Maxime Devos Cc: 49729@debbugs.gnu.org, ludo@gnu.org Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.162743530816561 (code B ref 49729); Wed, 28 Jul 2021 01:22:02 +0000 Received: (at 49729) by debbugs.gnu.org; 28 Jul 2021 01:21:48 +0000 Received: from localhost ([127.0.0.1]:54318 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8YGa-0004Iz-6P for submit@debbugs.gnu.org; Tue, 27 Jul 2021 21:21:48 -0400 Received: from out2.migadu.com ([188.165.223.204]:42947) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m8YGW-0004I9-3c for 49729@debbugs.gnu.org; Tue, 27 Jul 2021 21:21:47 -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=1627435302; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=baE6uGrcGRU0tnVSJPbJiir85RzrKOFIqwuH1Q6NFFU=; b=Ld86pR0wtwf/eJPxcyN3Q0/fY05XTxH2lKvbzQVrfkMp9ofYW4BKc+gV2gj2s1DKiktQOC 7hSQze+3vFABltRNqIpFu1lU6289jO/kQp72H0Ikix/Zo1N+dLSTuOiuPolp+wMlswiOpA VKTo1sradFqZaPSbZO0VAaw7Chz0hgo= From: Sarah Morgensen References: <4a4d285bafb763b6e6a8c5febc224f178d9a3083.camel@telenet.be> <86a6map1gf.fsf_-_@mgsn.dev> <0b4f4d6b6b86b05ab31136f0c2d6fceb77f7184d.camel@telenet.be> Date: Tue, 27 Jul 2021 18:21:40 -0700 In-Reply-To: <0b4f4d6b6b86b05ab31136f0c2d6fceb77f7184d.camel@telenet.be> (Maxime Devos's message of "Mon, 26 Jul 2021 22:49:32 +0200") Message-ID: <864kcfp717.fsf_-_@mgsn.dev> MIME-Version: 1.0 Content-Type: text/plain X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev 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 again, Maxime Devos writes: > Hi, > >> > This seems reasonable to me. There are 35 package definions referring to >> > 'reset-gzip-timestamps', could you follow up with patches removing the phases >> > for making gzip files writable? >> >> Yes, I intend to. Should I send them to this issue #, or separately? > > Personally, I'd send them to this issue # (easier to test whether this patch > works that way). I've sent a followup patchset; I only found 27 package definitions referring to 'reset-gzip-timestamps', 7 of which delete the phase for other reasons, as I've detailed in the cover letter. It's possible some of these could be unnecessary after this change, but I'm not familiar enough with the packages to tell. > >> (And one commit per package, yes?) > Indeed! > > Greetings, > Maxime. -- Sarah From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] (No Subject) References: In-Reply-To: Resent-From: Attila Lendvai Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 26 Oct 2021 13:15:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: "49729@debbugs.gnu.org" <49729@debbugs.gnu.org> Reply-To: Attila Lendvai Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.163525409527850 (code B ref 49729); Tue, 26 Oct 2021 13:15:02 +0000 Received: (at 49729) by debbugs.gnu.org; 26 Oct 2021 13:14:55 +0000 Received: from localhost ([127.0.0.1]:45435 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mfMI2-0007F7-P4 for submit@debbugs.gnu.org; Tue, 26 Oct 2021 09:14:54 -0400 Received: from mail-4317.proton.ch ([185.70.43.17]:41188) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mfMHz-0007Er-4E for 49729@debbugs.gnu.org; Tue, 26 Oct 2021 09:14:53 -0400 Date: Tue, 26 Oct 2021 13:14:42 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lendvai.name; s=protonmail2; t=1635254084; bh=TdKyz3QweZuRgHMvES0WZMZHQZ29FZ3Beu7XR7wSXkg=; h=Date:To:From:Reply-To:Subject:From; b=U385SIMS2+T0f/pFo1kO42WKuB7gU/A4/bHsgd6SzOlVmzc7nB+Oi0AZSECRHCeD0 9PTySP8vS10hJarVwHw02qkvoqqRITK+7qg4P7XtnI3n79eLEdai6nEOAVZRcsXgKS 9QxfTWVdxnAFz/JojN9Ey9S3n4p95TDjHNAvFLQHc+ZG29oCb66sSZdfKfPjoFUo/J fQkiqJm5ijIIspCJ4WxMUkzBoxCcgo27MDMXD0Kyv0t/JuREPScDNcAE+HymjFaCQm 60XxgdCTsbNQEfrePQb+/0RysvW1n1XCRmJV9Z2mhUUnBXxzsPzCgyuztddt8EeZow Ld7OKtjwCG6uw== From: Attila Lendvai Message-ID: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="b1_4Bzy5YwHlfJyAwMBKCNzI9z99Vr97ApVttlXmceqA" X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,HTML_MESSAGE 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: 2.0 (++) 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: i'm working on the golang importer (testing it on go-ethereum), and i see multiple packages in its output that have this issue. any ETA when this will reach master? - attila PGP: 5D5F 45C7 DFCD 0A39 Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.0 SLIGHTLY_BAD_SUBJECT Subject contains something slightly spammy -0.0 SPF_PASS SPF: sender matches SPF record -0.0 RCVD_IN_MSPIKE_H4 RBL: Very Good reputation (+4) [185.70.43.17 listed in wl.mailspike.net] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 HTML_MESSAGE BODY: HTML included in message -0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 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 (+) This is a multi-part message in MIME format. --b1_4Bzy5YwHlfJyAwMBKCNzI9z99Vr97ApVttlXmceqA Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: base64 aSdtIHdvcmtpbmcgb24gdGhlIGdvbGFuZyBpbXBvcnRlciAodGVzdGluZyBpdCBvbiBnby1ldGhl cmV1bSksIGFuZCBpIHNlZSBtdWx0aXBsZSBwYWNrYWdlcyBpbiBpdHMgb3V0cHV0IHRoYXQgaGF2 ZSB0aGlzIGlzc3VlLgoKYW55IEVUQSB3aGVuIHRoaXMgd2lsbCByZWFjaCBtYXN0ZXI/CgotIGF0 dGlsYQpQR1A6IDVENUYgNDVDNyBERkNEIDBBMzk= --b1_4Bzy5YwHlfJyAwMBKCNzI9z99Vr97ApVttlXmceqA Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: base64 PGRpdj5pJ20gd29ya2luZyBvbiB0aGUgZ29sYW5nIGltcG9ydGVyICh0ZXN0aW5nIGl0IG9uIGdv LWV0aGVyZXVtKSwgYW5kIGkgc2VlIG11bHRpcGxlIHBhY2thZ2VzIGluIGl0cyBvdXRwdXQgdGhh dCBoYXZlIHRoaXMgaXNzdWUuPGJyPjwvZGl2PjxkaXY+PGJyPjwvZGl2PjxkaXY+YW55IEVUQSB3 aGVuIHRoaXMgd2lsbCByZWFjaCBtYXN0ZXI/PGJyPjwvZGl2PjxkaXY+PGJyPjwvZGl2PjxkaXY+ LSBhdHRpbGE8YnI+PC9kaXY+PGRpdiBjbGFzcz0icHJvdG9ubWFpbF9zaWduYXR1cmVfYmxvY2si PjxkaXYgY2xhc3M9InByb3Rvbm1haWxfc2lnbmF0dXJlX2Jsb2NrLXVzZXIiPjxkaXY+UEdQOiZu YnNwOzVENUYgNDVDNyBERkNEIDBBMzk8YnI+PC9kaXY+PC9kaXY+PGRpdiBjbGFzcz0icHJvdG9u bWFpbF9zaWduYXR1cmVfYmxvY2stcHJvdG9uIHByb3Rvbm1haWxfc2lnbmF0dXJlX2Jsb2NrLWVt cHR5Ij48L2Rpdj48L2Rpdj48ZGl2Pjxicj48L2Rpdj4= --b1_4Bzy5YwHlfJyAwMBKCNzI9z99Vr97ApVttlXmceqA-- From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates] build-system/gnu: Make gzip files writable before resetting timestamps. Resent-From: Maxim Cournoyer Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 24 Dec 2021 05:52:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Attila Lendvai Cc: "49729@debbugs.gnu.org" <49729@debbugs.gnu.org>, Sarah Morgensen Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.164032508027854 (code B ref 49729); Fri, 24 Dec 2021 05:52:01 +0000 Received: (at 49729) by debbugs.gnu.org; 24 Dec 2021 05:51:20 +0000 Received: from localhost ([127.0.0.1]:35490 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n0dU7-0007FC-Ox for submit@debbugs.gnu.org; Fri, 24 Dec 2021 00:51:19 -0500 Received: from mail-qk1-f180.google.com ([209.85.222.180]:42749) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n0dU6-0007Ex-4h for 49729@debbugs.gnu.org; Fri, 24 Dec 2021 00:51:18 -0500 Received: by mail-qk1-f180.google.com with SMTP id r139so6642945qke.9 for <49729@debbugs.gnu.org>; Thu, 23 Dec 2021 21:51:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=NWZHi7Syak05lXf2XeF6lJQuDHhRLn9iUckEMW4krAI=; b=CoXJ82dcOatyabL6Dotijarf0B5fUSpY5l6IirhFHN1R9NHKwJGBBRRDcAKWcnJiyd vfEN5Mka/0tyegHOTl0Sm1r4uuS0MkrIiPfmOigOH6f7qb31lUYbfBDsUKhdtxuXTBly xYsm7/J8Dg6kPWZS5KyDebX6j9D/e7QpoK96S+wzh1gxKd+0VSDOBHZjNqyBJyvou5kN Y9Zvk1yhILq6Xfx1/9aeisJkMqoV9MvSMObxozXitczVGz5/lqfC0GAVKPlJfBfgndfS cTnyd5je+/CNJoECBi/FkmotLdrqh0Lee8gFXsB5v4hLnx9FQyu1NjPRlmU23Ft1LOVN pPtw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:cc:subject:references:date :in-reply-to:message-id:user-agent:mime-version; bh=NWZHi7Syak05lXf2XeF6lJQuDHhRLn9iUckEMW4krAI=; b=aAMO1ZhNwbgpvxV3yZ6fGrhP1bAh4tA3zB91UwgJ5ceL4KebUpb/VyPMNwgNMquBt/ VMkS8lWiC8oj+7HfQhb74SoC3nMwnXCXTqnWNmIoJIWCTS3cPD9gQOgAAq8NIZKphaYR nWXWMI+lNXnTTBWiiF/hYizI4tEU2oBQhc1Y5P+8eESpmVCOhp3W35/HRfLLqOPVSTIS EhrkG5FRIzS11O2iYG9rqb9fL0t5m7irLBEQgUjhZDmWWqq8fhcFkDKYOb7Uq35OtQ4R RBeodSQUPeAhLVieDMCaH8fQ3taGrVPibheZv9qyr1DIl6LN8+3PDWULIXQZHAgiIrph mAPA== X-Gm-Message-State: AOAM530zCE7KM6vue293Rtnrv+egqDdAL51OX0y9aZAo6SV/p+WnEsnh /x7IL4Ti7XpNnTDpCmeKmECOFREW68E= X-Google-Smtp-Source: ABdhPJyEt263G9+MpIneY2FfT894OIhphA8XZd2Oed582Ho1HRWUC3iy161rNLON9yBbRx72ChxHKg== X-Received: by 2002:a05:620a:2407:: with SMTP id d7mr3801138qkn.114.1640325072228; Thu, 23 Dec 2021 21:51:12 -0800 (PST) Received: from hurd (dsl-151-170.b2b2c.ca. [66.158.151.170]) by smtp.gmail.com with ESMTPSA id f9sm5972737qkp.94.2021.12.23.21.51.11 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 23 Dec 2021 21:51:11 -0800 (PST) From: Maxim Cournoyer References: Date: Fri, 24 Dec 2021 00:51:11 -0500 In-Reply-To: (Attila Lendvai's message of "Tue, 26 Oct 2021 13:14:42 +0000") Message-ID: <87r1a2zh2o.fsf_-_@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain 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, Attila Lendvai writes: > i'm working on the golang importer (testing it on go-ethereum), and i see multiple packages in its output that have this issue. > > any ETA when this will reach master? > > - attila > PGP: 5D5F 45C7 DFCD 0A39 I've merged this to my local version-1.4.0 branch that I'll push shortly, and if everything goes fine it should reach master in about a week or so. Thanks, Maxim From unknown Wed Aug 20 00:02:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49729] [PATCH core-updates] build-system/gnu: Make gzip files writable before resetting timestamps. Resent-From: Maxim Cournoyer Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 17 Jan 2022 17:10:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49729 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Attila Lendvai Cc: "49729-done@debbugs.gnu.org" <49729@debbugs.gnu.org>, Sarah Morgensen Received: via spool by 49729-submit@debbugs.gnu.org id=B49729.164243938022849 (code B ref 49729); Mon, 17 Jan 2022 17:10:02 +0000 Received: (at 49729) by debbugs.gnu.org; 17 Jan 2022 17:09:40 +0000 Received: from localhost ([127.0.0.1]:47779 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n9VVk-0005wT-Gh for submit@debbugs.gnu.org; Mon, 17 Jan 2022 12:09:40 -0500 Received: from mail-qt1-f171.google.com ([209.85.160.171]:43730) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n9VVi-0005wA-NX for 49729@debbugs.gnu.org; Mon, 17 Jan 2022 12:09:39 -0500 Received: by mail-qt1-f171.google.com with SMTP id q14so19742939qtx.10 for <49729@debbugs.gnu.org>; Mon, 17 Jan 2022 09:09:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=mUVCfD5Vk5IDDUGfne1/Xm4+wSVSxF38qURt62auAn8=; b=e5R0W2vaohKo7xF+YghgY2bPIz1US6vC4yY0qAmONbA6bEgvy0IksWq6f+iEugCVZp aa+p5wtBRoqN8byinQfQcImrAcfyx1EOBudJ8Y5G3mJgpSAYPBiedcoXoWnUhZ4xZoq5 dyEu0KUzuVVekVLec2eIr+szFFToXLsV6ZvUMUZiUiyBEb07L5H5n4LqB/4cFfKGrRJm FEKf4xVv0eM55d+VPivMP7sY+U2QnIiTxWRk7O1JYv8ttrCzyTU1G7cMhrbxlFBGTjgJ ERBAGjM50KN9Wlk9bX7b4GtQqJ9HIIyGE7Iqdmv+TNNp6LkzZth80tM5Kw96E32pta1w qM8g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=mUVCfD5Vk5IDDUGfne1/Xm4+wSVSxF38qURt62auAn8=; b=QNwb3XTGwtYkBFK5AbSNLK+gyR4WvLThl90kF7c1gqEwUdB17QikFpexVNJsqEt/CV id7sMycTCjJUSlIpKsEcVL5LziCG6wVq1HJ3jDR58vBrboeVZc5ClVm0z8NDbc0mQhpL /oH+Z4/08dSDjD+uv6wHeScilXvuw5ijgFRj1nIGkQVbTMTdujJSWAVg2CYdHrB4xLDd g2OsqRNNbEU2BSO7LQ6+kfOecPV5VP/BzPCMedzi2QiFnrMCg3KyebW2aWq4JMz/1V82 CRBG91nUlCtXWlopeLjxnJ5SDvwsEao0c09Ia+sF8VxWPx8iojedyGeq1be+hqWZG2Xj fYiA== X-Gm-Message-State: AOAM530aKsceX94I5ANBUxdvbTCMf8a7LLaHPYcJ9/+we9e32cN9E1Hh PgKrCUUYOiGotx3r39lwylw= X-Google-Smtp-Source: ABdhPJwnoCIe4CIkzdahYmG1l/Mo1OFgNYS5dQ+rzGGBbZ2lryEJM8mYgn55hN1M3m62yQ8CKiAuXA== X-Received: by 2002:ac8:7d03:: with SMTP id g3mr4750844qtb.389.1642439373344; Mon, 17 Jan 2022 09:09:33 -0800 (PST) Received: from hurd (dsl-205-236-230-134.b2b2c.ca. [205.236.230.134]) by smtp.gmail.com with ESMTPSA id o5sm1640716qta.39.2022.01.17.09.09.32 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 17 Jan 2022 09:09:32 -0800 (PST) From: Maxim Cournoyer References: <87r1a2zh2o.fsf_-_@gmail.com> Date: Mon, 17 Jan 2022 12:09:32 -0500 In-Reply-To: <87r1a2zh2o.fsf_-_@gmail.com> (Maxim Cournoyer's message of "Fri, 24 Dec 2021 00:51:11 -0500") Message-ID: <8735lmjnlf.fsf_-_@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain 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, Maxim Cournoyer writes: > Hello, > > Attila Lendvai writes: > >> i'm working on the golang importer (testing it on go-ethereum), and >> i see multiple packages in its output that have this issue. >> >> any ETA when this will reach master? >> >> - attila >> PGP: 5D5F 45C7 DFCD 0A39 > > I've merged this to my local version-1.4.0 branch that I'll push > shortly, and if everything goes fine it should reach master in about a > week or so. This has now been merged back into master. Closing. Thank you! Maxim From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 20 15:50:40 2024 Received: (at control) by debbugs.gnu.org; 20 Jan 2024 20:50:40 +0000 Received: from localhost ([127.0.0.1]:35935 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rRIIa-0004hU-As for submit@debbugs.gnu.org; Sat, 20 Jan 2024 15:50:40 -0500 Received: from mail-qk1-x72c.google.com ([2607:f8b0:4864:20::72c]:55792) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rRIIY-0004hB-FE for control@debbugs.gnu.org; Sat, 20 Jan 2024 15:50:38 -0500 Received: by mail-qk1-x72c.google.com with SMTP id af79cd13be357-7833b6bb41bso185413085a.3 for ; Sat, 20 Jan 2024 12:50:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1705783829; x=1706388629; darn=debbugs.gnu.org; h=subject:from:to:message-id:date:from:to:cc:subject:date:message-id :reply-to; bh=4aguQCju7SntQFKHRh5+0iev5xp7y+oT6srkyPr0Hm8=; b=DlZ5li+qvo4PiTqQCqtO2h8GFDSIlZkTtA7sotn23POMKIKnht7P13kBdwUgoV6vKG f/S8QV1j4HICgK+w1jziIQwwtN8KOKst4tvv52pDiHvGavRtH51zFXZU38hIy7bsrDmf PkPkKOL3N5j2K4s3o08iN1Unc9jVOErYaLhJp8FYyMjhCi7i6eR3qiSm+tinE2E6WnF7 nR2Rf2j1AWVKkzUOI56ujsqxtJlsEZBQO/7Ta/zqMul+Ip9ds62hAAFbdV5tNMwKey6G RLRzfQVK3DZSanmmUhFL99GVLA1WUBN0x2Ve/CXa+krb/HYlJVQlPXu07435c4l6Qxhz TNeQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1705783829; x=1706388629; h=subject:from:to:message-id:date:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=4aguQCju7SntQFKHRh5+0iev5xp7y+oT6srkyPr0Hm8=; b=iVaPnOHWAnvkq1hu3UGltWZ6wa9eVteDKlsWWx0MrEzQCqRTWKszih1OuIXZ9kfkzS +5hNfGOjTu68vfJqbvL6mVC0FicXXfgm60WJQOb6hlS7plulxJn3Fm6z2R65vG0lZlmy Mad/hfbZutHzGuIxMT7nQ9XnmthU7zm/9dunImCxZMMuS2Hf8ZhsKl6v5oAjiIx4LBoU Scncx+VLZxs63VziSW2W8AAZo7BEkK0x9/YD+y0QWFZvIj47qp8pLgUGkmmSwnu1SP/R c/1s2CxbEqN5u5YAI22lhuL7x+jiQ89hPU6wRA4YB0EmbAQLT6l/DvVtyWsDKWCE6Wyw jRiQ== X-Gm-Message-State: AOJu0Yz2V0TT0xvRfBNWKYr2gjJK1VsrLvXXcdnm5tvVqtpz/Q7RV8JF NGCaY1MchzfiWArqLrBsgQLYHxwM1QmErkL+5JiBSZmwH/i45wVTaYUzXrkzM9U= X-Google-Smtp-Source: AGHT+IGSpfGAJ5wbDsbtEXqaxfUphel6FxIjGrNhgplbaNhXEygF8Z8SKoQUg/01NSrmML8GiDXt4A== X-Received: by 2002:a05:620a:458c:b0:783:38e3:a0f1 with SMTP id bp12-20020a05620a458c00b0078338e3a0f1mr2812059qkb.4.1705783829522; Sat, 20 Jan 2024 12:50:29 -0800 (PST) Received: from hurd (dsl-10-128-232.b2b2c.ca. [72.10.128.232]) by smtp.gmail.com with ESMTPSA id j28-20020a05620a0a5c00b007833dbbc07asm821211qka.0.2024.01.20.12.50.28 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 20 Jan 2024 12:50:29 -0800 (PST) Date: Sat, 20 Jan 2024 15:50:28 -0500 Message-Id: <87zfwzd90r.fsf@gmail.com> To: control@debbugs.gnu.org From: Maxim Cournoyer Subject: control message for bug #49729 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: control 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 (-) close 49729 quit