From unknown Sat Aug 16 21:00:58 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#66396 <66396@debbugs.gnu.org> To: bug#66396 <66396@debbugs.gnu.org> Subject: Status: [PATCH] guix: Add case to Github url updater. Reply-To: bug#66396 <66396@debbugs.gnu.org> Date: Sun, 17 Aug 2025 04:00:58 +0000 retitle 66396 [PATCH] guix: Add case to Github url updater. reassign 66396 guix-patches submitter 66396 Giacomo Leidi severity 66396 normal tag 66396 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 07 15:46:11 2023 Received: (at submit) by debbugs.gnu.org; 7 Oct 2023 19:46:12 +0000 Received: from localhost ([127.0.0.1]:55970 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qpDFb-0004Rw-Gd for submit@debbugs.gnu.org; Sat, 07 Oct 2023 15:46:11 -0400 Received: from lists.gnu.org ([2001:470:142::17]:55088) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qpDFZ-0004Rg-Jr for submit@debbugs.gnu.org; Sat, 07 Oct 2023 15:46:10 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qpDF9-0008JB-SX for guix-patches@gnu.org; Sat, 07 Oct 2023 15:45:44 -0400 Received: from confino.investici.org ([93.190.126.19]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qpDF7-0008Or-5R for guix-patches@gnu.org; Sat, 07 Oct 2023 15:45:43 -0400 Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4S2wkn04h4z118p; Sat, 7 Oct 2023 19:45:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1696707937; bh=4ztMqVeGh1sMQFn0vClzwxYldcAO+XBo06zMubuM/1c=; h=From:To:Cc:Subject:Date:From; b=lr6eywly9Q8nupDA4g8jB+EHHAC1Fxnb4NN3kh6UciSa0Rx00HLnI18Cq7UG9y8da sI6P4Dlf5m0FlsEFSiGqQeJ0r2PGfe+xgIte+DkkEeU8A2syqGQRa6DkleArro9F65 Wvnr9PgU+iF5VIIXtw8UDSQ1lNSdctzO+98GXnCg= Received: from [93.190.126.19] (mx1.investici.org [93.190.126.19]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id 4S2wkm6gnZz117w; Sat, 7 Oct 2023 19:45:36 +0000 (UTC) From: Giacomo Leidi To: guix-patches@gnu.org Subject: [PATCH] guix: Add case to Github url updater. Date: Sat, 7 Oct 2023 21:45:11 +0200 Message-ID: <1ed23c30a7592facd1db4c28c0f3cfb908157d9e.1696707911.git.goodoldpaul@autistici.org> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=93.190.126.19; envelope-from=goodoldpaul@autistici.org; helo=confino.investici.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: Giacomo Leidi X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) * guix/import/github.scm (updated-github-url)[updated-url]: Add additional heuristics to Github url updater. --- guix/import/github.scm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/guix/import/github.scm b/guix/import/github.scm index 7409c9a202..c5556d78ee 100644 --- a/guix/import/github.scm +++ b/guix/import/github.scm @@ -6,6 +6,7 @@ ;;; Copyright © 2019 Efraim Flashner ;;; Copyright © 2022 Maxime Devos ;;; Copyright © 2022 Hartmut Goebel +;;; Copyright © 2023 Giacomo Leidi ;;; ;;; This file is part of GNU Guix. ;;; @@ -24,6 +25,7 @@ (define-module (guix import github) #:use-module (ice-9 match) + #:use-module (ice-9 regex) #:use-module (srfi srfi-1) #:use-module (srfi srfi-26) #:use-module (srfi srfi-34) @@ -96,6 +98,11 @@ (define (updated-github-url old-package new-version) url) (string-append prefix "/releases/download/" repo "-" new-version "/" repo "-" new-version ext)) + ((string-match (string-append "/releases/download/(v)?" version "/" + name ".*" ext "$") + url) + (string-replace-substring url version new-version)) + (#t #f))) ; Some URLs are not recognised. #f)) base-commit: 00a28bc435606dc98925fbae1ebe314881f35c90 -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 23 17:56:15 2023 Received: (at 66396) by debbugs.gnu.org; 23 Oct 2023 21:56:15 +0000 Received: from localhost ([127.0.0.1]:52101 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qv2uF-0008NH-Bq for submit@debbugs.gnu.org; Mon, 23 Oct 2023 17:56:15 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55896) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qv2uD-0008N2-EV for 66396@debbugs.gnu.org; Mon, 23 Oct 2023 17:56:14 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qv2tc-0007PA-QF; Mon, 23 Oct 2023 17:55:38 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=knf+DjJBOuH94k3yPCowLBpiLGec7gNFQMgTUFeZwo0=; b=rPNhmXe6VtnEm6BR77iP k4W9ecp4nTaENw4sGHtuPc+t//E8M8Ai5zcc3JLjUnkltbkW1f7H29I8TiQp1cFk4AaRLFVwqPVJQ W6paGCMQzb2jbu4i5ip+mzN7qXgL+2o4xezix/I58SLY9bO0QRnbAzcCkWT26tqSbh31xAKuf1U1V nRnc+ICZx2OI3aZwdRKPcdoy/K6pjC7qtHPb6X8ib493SdmnPZNsGYwNDyOAQG8NZzU2oTvP6iN+A 1s/FIQ1HIJd4yzGI7s2kRDzm2tk2fAf5ma9oHPogy47uNnJt+AHpDc3973mekIme+Ap56ohhxR+Dw j968lbZQ6eO+fw==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Giacomo Leidi Subject: Re: [bug#66396] [PATCH] guix: Add case to Github url updater. In-Reply-To: <1ed23c30a7592facd1db4c28c0f3cfb908157d9e.1696707911.git.goodoldpaul@autistici.org> (Giacomo Leidi's message of "Sat, 7 Oct 2023 21:45:11 +0200") References: <1ed23c30a7592facd1db4c28c0f3cfb908157d9e.1696707911.git.goodoldpaul@autistici.org> Date: Mon, 23 Oct 2023 23:55:33 +0200 Message-ID: <87y1ftc8bu.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 66396 Cc: 66396@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, Giacomo Leidi skribis: > * guix/import/github.scm (updated-github-url)[updated-url]: Add > additional heuristics to Github url updater. [...] > + ((string-match (string-append "/releases/download/(v)?" versi= on "/" > + name ".*" ext "$") > + url) > + (string-replace-substring url version new-version)) Is it not already covered by one of the other cases? Do you have an example URL matched by this new clause? Thanks, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 23 18:05:39 2023 Received: (at 66396) by debbugs.gnu.org; 23 Oct 2023 22:05:39 +0000 Received: from localhost ([127.0.0.1]:52119 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qv33L-0000CY-2q for submit@debbugs.gnu.org; Mon, 23 Oct 2023 18:05:39 -0400 Received: from confino.investici.org ([93.190.126.19]:58001) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qv33H-0000CO-T0 for 66396@debbugs.gnu.org; Mon, 23 Oct 2023 18:05:38 -0400 Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4SDq4K01nqz110G; Mon, 23 Oct 2023 22:05:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1698098705; bh=gBS/sNGx5LVN1rdv54ph3xy4XrOuUwX5xwlULJKwoI8=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=G88uRFn8efAv8mfq1Zie/EyHvyCyF9/sE5O2vso9SJIW6H4wru6+TvSB8J67l4dbz 6WzWvt6r+Xhcd9LS9sPV7MDSF+hTbQuC2c1oWSuyDOnM/Ym+7d7iTYjtCMoN0BfmbW OK+UzKnvhvIOIXmWjigHd+3+758JKyA/VObdWD3I= Received: from [93.190.126.19] (mx1.investici.org [93.190.126.19]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id 4SDq4J6ZwDz1103; Mon, 23 Oct 2023 22:05:04 +0000 (UTC) Content-Type: multipart/alternative; boundary="------------UbRjEB6L4NYZid2MbzOviZDu" Message-ID: Date: Tue, 24 Oct 2023 00:05:04 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.15.0 Subject: Re: [bug#66396] [PATCH] guix: Add case to Github url updater. To: =?UTF-8?Q?Ludovic_Court=c3=a8s?= References: <1ed23c30a7592facd1db4c28c0f3cfb908157d9e.1696707911.git.goodoldpaul@autistici.org> <87y1ftc8bu.fsf@gnu.org> Content-Language: en-US From: paul In-Reply-To: <87y1ftc8bu.fsf@gnu.org> X-Spam-Score: -1.5 (-) X-Debbugs-Envelope-To: 66396 Cc: 66396@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.5 (--) This is a multi-part message in MIME format. --------------UbRjEB6L4NYZid2MbzOviZDu Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Hi Ludo’ , On 10/23/23 23:55, Ludovic Courtès wrote: >> + ((string-match (string-append "/releases/download/(v)?" version "/" >> + name ".*" ext "$") >> + url) >> + (string-replace-substring url version new-version)) > Is it not already covered by one of the other cases? Do you have an > example URL matched by this new clause? Yes, this patch fixes some failings I got from urls such as: |https://github.com/derailed/k9s/releases/download/v||0.27.4||/k9s_Linux_amd64.tar.gz| |https://github.com/metal3d/katenary/releases/download/||2.0.0-beta2||/katenary-linux-amd64| |https://github.com/kubernetes/kompose/releases/download/v||1.30.0||/kompose-linux-amd64| Thank you for your time, giacomo --------------UbRjEB6L4NYZid2MbzOviZDu Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 8bit

Hi Ludo’ ,

On 10/23/23 23:55, Ludovic Courtès wrote:
+           ((string-match (string-append "/releases/download/(v)?" version "/"
+                                         name ".*" ext "$")
+                          url)
+            (string-replace-substring url version new-version))
Is it not already covered by one of the other cases?  Do you have an
example URL matched by this new clause?
Yes, this patch fixes some failings I got from urls such as:

https://github.com/derailed/k9s/releases/download/v0.27.4/k9s_Linux_amd64.tar.gz

https://github.com/metal3d/katenary/releases/download/2.0.0-beta2/katenary-linux-amd64

https://github.com/kubernetes/kompose/releases/download/v1.30.0/kompose-linux-amd64


Thank you for your time,


giacomo

--------------UbRjEB6L4NYZid2MbzOviZDu-- From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 03 17:03:16 2023 Received: (at 66396) by debbugs.gnu.org; 3 Dec 2023 22:03:16 +0000 Received: from localhost ([127.0.0.1]:32911 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r9uYW-0000kC-5t for submit@debbugs.gnu.org; Sun, 03 Dec 2023 17:03:16 -0500 Received: from confino.investici.org ([93.190.126.19]:26819) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r9uYT-0000k0-SO for 66396@debbugs.gnu.org; Sun, 03 Dec 2023 17:03:14 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1701640983; bh=MpEBpR2TEBjL4V4efKYVA+SgW/dbYy+Xei7FfRdkaCA=; h=Date:Subject:From:To:Cc:References:In-Reply-To:From; b=CwsLkLtWU11NHYxnejal7VxAPG1G+npTAtdusAW7TWIqiebE/0ZNhXPRH9G5iLv3b YqNjgRI08osfcV55hM/kMSFFlaxWgqJ6SgRC1ikO63lPFRWwmqBWlA5qxhQ4j4KXNr I4X48lK7YlCF4b/wbsddYGaWwPWemsrrtotopihM= Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4Sk1531Mnnz11Jt; Sun, 3 Dec 2023 22:03:03 +0000 (UTC) Received: from [93.190.126.19] (mx1.investici.org [93.190.126.19]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id 4Sk1530879z11JX; Sun, 3 Dec 2023 22:03:02 +0000 (UTC) Message-ID: <208e097c-e299-b14d-2437-310355245de8@autistici.org> Date: Sun, 3 Dec 2023 23:03:02 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.15.0 Subject: Re: [bug#66396] [PATCH] guix: Add case to Github url updater. Content-Language: en-US From: paul To: =?UTF-8?Q?Ludovic_Court=c3=a8s?= References: <1ed23c30a7592facd1db4c28c0f3cfb908157d9e.1696707911.git.goodoldpaul@autistici.org> <87y1ftc8bu.fsf@gnu.org> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Score: -2.9 (--) X-Debbugs-Envelope-To: 66396 Cc: 66396@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.9 (---) Hi, On 10/24/23 00:05, paul wrote: > > Hi Ludo’ , > > On 10/23/23 23:55, Ludovic Courtès wrote: >>> + ((string-match (string-append "/releases/download/(v)?" version "/" >>> + name ".*" ext "$") >>> + url) >>> + (string-replace-substring url version new-version)) >> Is it not already covered by one of the other cases? Do you have an >> example URL matched by this new clause? Besides k9s, kompose and katenary I believe also  pigx_rnaseq and pigx-chipseq  and probably others need this. Thank you for your time, giacomo From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 06 19:51:13 2024 Received: (at 66396) by debbugs.gnu.org; 7 Feb 2024 00:51:13 +0000 Received: from localhost ([127.0.0.1]:55405 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rXW9h-0004S1-1y for submit@debbugs.gnu.org; Tue, 06 Feb 2024 19:51:13 -0500 Received: from confino.investici.org ([93.190.126.19]:49749) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rXW9e-0004Rl-Aq for 66396@debbugs.gnu.org; Tue, 06 Feb 2024 19:51:12 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1707267054; bh=11oO241JKoTc8vTw7kJQwp3vkWabFf/w92XziZfzUeE=; h=Date:Subject:From:To:Cc:References:In-Reply-To:From; b=mKCFp/e3/TeL9O14/Uk/kOPB2RPdKBKm/NV/9fTE7zRZ1FVTUPoP/kg/1PVpF3c1m Ww4qbhNHoJTzEqP1tDr/q1+mqrjxNOLEmbE7AuVSrc3T6p27vji2E0O1xQ+ZBPwam7 yz8bX8Y8KQDF9tC1AEKum8B/el2W80CHfsiTq59o= Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4TV1kk67gzz113j; Wed, 7 Feb 2024 00:50:54 +0000 (UTC) Received: from [93.190.126.19] (mx1.investici.org [93.190.126.19]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id 4TV1kk5SVkz113H; Wed, 7 Feb 2024 00:50:54 +0000 (UTC) Content-Type: multipart/mixed; boundary="------------wWd0iVy5liPBBR1mR3uG0BFW" Message-ID: Date: Wed, 7 Feb 2024 01:50:54 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.15.0 Subject: Re: [bug#66396] [PATCH] guix: Add case to Github url updater. From: paul To: =?UTF-8?Q?Ludovic_Court=c3=a8s?= References: <1ed23c30a7592facd1db4c28c0f3cfb908157d9e.1696707911.git.goodoldpaul@autistici.org> <87y1ftc8bu.fsf@gnu.org> <208e097c-e299-b14d-2437-310355245de8@autistici.org> Content-Language: en-US In-Reply-To: <208e097c-e299-b14d-2437-310355245de8@autistici.org> X-Spam-Score: -3.8 (---) X-Debbugs-Envelope-To: 66396 Cc: 66396@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.8 (----) This is a multi-part message in MIME format. --------------wWd0iVy5liPBBR1mR3uG0BFW Content-Type: multipart/alternative; boundary="------------Shgy0c0jYx33LH9Xa3cWg7re" --------------Shgy0c0jYx33LH9Xa3cWg7re Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Hi Ludo’ , I made a detailed analysis on the current status of the updater. I'm attaching the source code I used. There are ~239 packages (probably with some false positive due to deprecated packages I believe) that have a github.com origin-uri that currently are marked as having no updater: guix time-machine -C channels-lock.scm -- repl -- t.scm | grep github.com | awk '{ print $1 }' | wc -l 239 This patch allows the following packages (and probably more in downstream channels) to be refreshed: gnu/packages/admin.scm:4242:13: 4.9 is already the latest version of nnn gnu/packages/admin.scm:4416:13: launchmon would be upgraded from 1.0.2 to 1.2.0 gnu/packages/audio.scm:5814:13: lsp-dsp-lib would be upgraded from 0.5.14 to 1.0.20 gnu/packages/bioinformatics.scm:9847:13: seqan would be upgraded from 3.0.3 to 3.3.0 gnu/packages/bioinformatics.scm:9847:13: seqan would be upgraded from 3.0.3 to 3.3.0 gnu/packages/bioinformatics.scm:9563:13: preseq would be upgraded from 2.0.3 to 3.2.0 gnu/packages/bioinformatics.scm:18604:13: arriba would be upgraded from 1.0.1 to 2.4.0 gnu/packages/build-tools.scm:436:13: premake would be upgraded from 5.0.0-alpha15 to 5.0.0.alpha4 gnu/packages/compression.scm:2292:13: upx would be upgraded from 4.1.0 to 4.2.2 gnu/packages/datastructures.scm:294:13: 2.1.1 is already the latest version of sdsl-lite gnu/packages/dlang.scm:219:2: ldc would be upgraded from 1.35.0 to 1.36.0 gnu/packages/dns.scm:475:13: dnscrypt-wrapper would be upgraded from 0.2.2 to 0.4.2 gnu/packages/engineering.scm:4303:13: rizin would be upgraded from 0.6.2 to 0.6.3 gnu/packages/fontutils.scm:1585:13: libuninameslist would be upgraded from 20200313 to 20230916 gnu/packages/fontutils.scm:1563:13: libspiro would be upgraded from 20200505 to 20221101 gnu/packages/game-development.scm:268:12: 5.2.2 is already the latest version of deutex gnu/packages/game-development.scm:952:13: love would be upgraded from 11.4 to 11.5 gnu/packages/game-development.scm:3057:13: 1.5.2 is already the latest version of dhewm3 gnu/packages/games.scm:2427:15: retux would be upgraded from 1.6.1 to 1.6.2 gnu/packages/games.scm:6336:13: 1.02e is already the latest version of mrrescue gnu/packages/games.scm:5832:13: 2.4 is already the latest version of starfighter gnu/packages/games.scm:9239:13: edgar would be upgraded from 1.36 to 1.37 gnu/packages/geo.scm:144:13: gmt would be upgraded from 6.4.0 to 6.5.0 gnu/packages/java.scm:11861:13: java-gson would be upgraded from 2.8.6 to 2.10.1 gnu/packages/java.scm:8135:13: antlr3 would be upgraded from 3.5.2 to 3.5.3 gnu/packages/java.scm:8076:13: java-stringtemplate would be upgraded from 4.0.8 to 4.3.3 gnu/packages/java.scm:8135:13: antlr3 would be upgraded from 3.5.2 to 3.5.3 gnu/packages/maths.scm:221:13: bitwise would be upgraded from 0.43 to 0.50 gnu/packages/music.scm:6018:13: lsp-plugins would be upgraded from 1.2.3 to 1.2.14 gnu/packages/networking.scm:2801:13: 21.1 is already the latest version of nzbget gnu/packages/notcurses.scm:39:13: 3.0.9 is already the latest version of notcurses gnu/packages/password-utils.scm:1406:13: 1.9 is already the latest version of hashcat-utils gnu/packages/password-utils.scm:1490:13: 1.4.0 is already the latest version of bruteforce-luks gnu/packages/solidity.scm:37:13: solidity would be upgraded from 0.8.15 to 0.8.24 gnu/packages/sync.scm:568:13: rclone would be upgraded from 1.52.3 to 1.65.2 gnu/packages/virtualization.scm:2202:13: 0.4.7 is already the latest version of umoci gnu/packages/virtualization.scm:2152:13: runc would be upgraded from 1.1.9 to 1.1.12 gnu/packages/web-browsers.scm:108:13: 9.0 is already the latest version of midori gnu/packages/wm.scm:791:13: 3.4.5 is already the latest version of icewm I see this as an, albeit small, valuable addition. What do you think? Thank you for your time giacomo --------------Shgy0c0jYx33LH9Xa3cWg7re Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 8bit

Hi Ludo’ ,

I made a detailed analysis on the current status of the updater. I'm attaching the source code I used.

There are ~239 packages (probably with some false positive due to deprecated packages I believe) that have a github.com origin-uri that currently are marked as having no updater:

guix time-machine -C channels-lock.scm -- repl -- t.scm | grep github.com | awk '{ print $1 }' | wc -l
239

This patch allows the following packages (and probably more in downstream channels) to be refreshed:

gnu/packages/admin.scm:4242:13: 4.9 is already the latest version of nnn
gnu/packages/admin.scm:4416:13: launchmon would be upgraded from 1.0.2 to 1.2.0
gnu/packages/audio.scm:5814:13: lsp-dsp-lib would be upgraded from 0.5.14 to 1.0.20
gnu/packages/bioinformatics.scm:9847:13: seqan would be upgraded from 3.0.3 to 3.3.0
gnu/packages/bioinformatics.scm:9847:13: seqan would be upgraded from 3.0.3 to 3.3.0
gnu/packages/bioinformatics.scm:9563:13: preseq would be upgraded from 2.0.3 to 3.2.0
gnu/packages/bioinformatics.scm:18604:13: arriba would be upgraded from 1.0.1 to 2.4.0
gnu/packages/build-tools.scm:436:13: premake would be upgraded from 5.0.0-alpha15 to 5.0.0.alpha4
gnu/packages/compression.scm:2292:13: upx would be upgraded from 4.1.0 to 4.2.2
gnu/packages/datastructures.scm:294:13: 2.1.1 is already the latest version of sdsl-lite
gnu/packages/dlang.scm:219:2: ldc would be upgraded from 1.35.0 to 1.36.0
gnu/packages/dns.scm:475:13: dnscrypt-wrapper would be upgraded from 0.2.2 to 0.4.2
gnu/packages/engineering.scm:4303:13: rizin would be upgraded from 0.6.2 to 0.6.3
gnu/packages/fontutils.scm:1585:13: libuninameslist would be upgraded from 20200313 to 20230916
gnu/packages/fontutils.scm:1563:13: libspiro would be upgraded from 20200505 to 20221101
gnu/packages/game-development.scm:268:12: 5.2.2 is already the latest version of deutex
gnu/packages/game-development.scm:952:13: love would be upgraded from 11.4 to 11.5
gnu/packages/game-development.scm:3057:13: 1.5.2 is already the latest version of dhewm3
gnu/packages/games.scm:2427:15: retux would be upgraded from 1.6.1 to 1.6.2
gnu/packages/games.scm:6336:13: 1.02e is already the latest version of mrrescue
gnu/packages/games.scm:5832:13: 2.4 is already the latest version of starfighter
gnu/packages/games.scm:9239:13: edgar would be upgraded from 1.36 to 1.37
gnu/packages/geo.scm:144:13: gmt would be upgraded from 6.4.0 to 6.5.0
gnu/packages/java.scm:11861:13: java-gson would be upgraded from 2.8.6 to 2.10.1
gnu/packages/java.scm:8135:13: antlr3 would be upgraded from 3.5.2 to 3.5.3
gnu/packages/java.scm:8076:13: java-stringtemplate would be upgraded from 4.0.8 to 4.3.3
gnu/packages/java.scm:8135:13: antlr3 would be upgraded from 3.5.2 to 3.5.3
gnu/packages/maths.scm:221:13: bitwise would be upgraded from 0.43 to 0.50
gnu/packages/music.scm:6018:13: lsp-plugins would be upgraded from 1.2.3 to 1.2.14
gnu/packages/networking.scm:2801:13: 21.1 is already the latest version of nzbget
gnu/packages/notcurses.scm:39:13: 3.0.9 is already the latest version of notcurses
gnu/packages/password-utils.scm:1406:13: 1.9 is already the latest version of hashcat-utils
gnu/packages/password-utils.scm:1490:13: 1.4.0 is already the latest version of bruteforce-luks
gnu/packages/solidity.scm:37:13: solidity would be upgraded from 0.8.15 to 0.8.24
gnu/packages/sync.scm:568:13: rclone would be upgraded from 1.52.3 to 1.65.2
gnu/packages/virtualization.scm:2202:13: 0.4.7 is already the latest version of umoci
gnu/packages/virtualization.scm:2152:13: runc would be upgraded from 1.1.9 to 1.1.12
gnu/packages/web-browsers.scm:108:13: 9.0 is already the latest version of midori
gnu/packages/wm.scm:791:13: 3.4.5 is already the latest version of icewm


I see this as an, albeit small, valuable addition. What do you think?

Thank you for your time

giacomo
--------------Shgy0c0jYx33LH9Xa3cWg7re-- --------------wWd0iVy5liPBBR1mR3uG0BFW Content-Type: text/x-scheme; charset=UTF-8; name="channels-lock.scm" Content-Disposition: attachment; filename="channels-lock.scm" Content-Transfer-Encoding: base64 KGxpc3QKIChjaGFubmVsCiAgKG5hbWUgJ2d1aXgpCiAgKHVybCAiaHR0cHM6Ly9naXQuc2F2 YW5uYWguZ251Lm9yZy9naXQvZ3VpeC5naXQiKQogIChjb21taXQKICAgIjU3MjliMmIzNTIx YWE5ZDRhODhjOGFjNjgwYmQzN2ZmZTNiM2FjYzYiKQogIChpbnRyb2R1Y3Rpb24KICAgKG1h a2UtY2hhbm5lbC1pbnRyb2R1Y3Rpb24KICAgICJhZmI5ZjI3NTIzMTVmMTMxZTRkZGQ0NGVi YTAyZWVkNDAzMzY1MDg1IgogICAgKG9wZW5wZ3AtZmluZ2VycHJpbnQKICAgICAiQkJCMCAy RERGIDJDRUEgRjZBOCAwRDFEICBFNjQzIEEyQTAgNkRGMiBBMzNBIDU0RkEiKSkpKSkK --------------wWd0iVy5liPBBR1mR3uG0BFW Content-Type: text/x-scheme; charset=UTF-8; name="t.scm" Content-Disposition: attachment; filename="t.scm" Content-Transfer-Encoding: base64 KHVzZS1tb2R1bGVzIChnbnUgcGFja2FnZXMpCiAgICAgICAgICAgICAoZ3VpeCBidWlsZCB1 dGlscykKICAgICAgICAgICAgIChndWl4IGltcG9ydCBnaXRodWIpCiAgICAgICAgICAgICAo Z3VpeCBwYWNrYWdlcykKICAgICAgICAgICAgIChndWl4IHVwc3RyZWFtKQogICAgICAgICAg ICAgKGd1aXggdXRpbHMpCiAgICAgICAgICAgICAoaWNlLTkgZm9ybWF0KQogICAgICAgICAg ICAgKHNyZmkgc3JmaS0xKQogICAgICAgICAgICAgKHNyZmkgc3JmaS05KQogICAgICAgICAg ICAgKHNyZmkgc3JmaS0yNikKICAgICAgICAgICAgIChzcmZpIHNyZmktMzcpCiAgICAgICAg ICAgICAoc3JmaSBzcmZpLTcxKSkKCihkZWZpbmUgcGFja2FnZXMgKGZpbHRlciAobGFtYmRh IChwKQogICAgICAgICAgICAgICAgICAgICAgICAgICAob3JpZ2luPyAocGFja2FnZS1zb3Vy Y2UgcCkpKQogICAgICAgICAgICAgICAgICAgICAgICAgKGZvbGQtcGFja2FnZXMgY29ucyAn KCkpKSkKKGRlZmluZSB1bmNvdmVyZWQKICAoZm9sZCAobGFtYmRhICh1cGRhdGVyIHVuY292 ZXJlZCkKICAgICAgICAgIChsZXQgKChtYXRjaGVzIChmaWx0ZXIgKHVwc3RyZWFtLXVwZGF0 ZXItcHJlZGljYXRlIHVwZGF0ZXIpCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg IHBhY2thZ2VzKSkpCiAgICAgICAgICAgIChsc2V0LWRpZmZlcmVuY2UgZXE/IHVuY292ZXJl ZCBtYXRjaGVzKSkpCiAgICAgICAgcGFja2FnZXMKICAgICAgICAoZm9yY2UgJXVwZGF0ZXJz KSkpCgooZm9yLWVhY2ggKGxhbWJkYSAodSkKICAgICAgICAgICAgKGZvcm1hdCAjdCAifmFc dH5hfiUiIChwYWNrYWdlLW5hbWUgdSkgKG9yaWdpbi11cmkgKHBhY2thZ2Utc291cmNlIHUp KSkpCiAgICAgICAgICB1bmNvdmVyZWQpCg== --------------wWd0iVy5liPBBR1mR3uG0BFW-- From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 17 05:13:13 2024 Received: (at 66396-done) by debbugs.gnu.org; 17 Apr 2024 09:13:13 +0000 Received: from localhost ([127.0.0.1]:45734 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rx1Ls-00009o-Ir for submit@debbugs.gnu.org; Wed, 17 Apr 2024 05:13:13 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:33036) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rx1Lp-00008k-Kz for 66396-done@debbugs.gnu.org; Wed, 17 Apr 2024 05:13:10 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rx1LW-000851-5c; Wed, 17 Apr 2024 05:12:50 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=QCNb6fpRCi+/N/oWc/UkTYX1Dfxjp9OwhX0ljh5IE7g=; b=ReCR5/aYv0EegZOHbqeZ KwHykf1q6AAxIUkpoggOayRn4CIkdvSsmecA6RX1j6Kk49wpCt6FlWzgbiqkMPC1AGZQjDIidoWD4 5BfnqRjFC3oXMe+WtM/eAYeOu5SFXnTpnGlbSS21We9ZrLXZ8oa9hAwk4dalxPl/YCyajPvNzWYZW jlcugk7WjxycCQ+UJW+wD1J3PlpbQ0MfO9dFB5PGS2il1zaJqmTlpXU74uAnbcLMYY1ZTAcw4RSsA xTtWe7x8saEdyTffj49AitOMc/p1c/29IZyA4xo1u3SMRWElBOd/CR0s2dyPTPfTw7RRWfSt/71lj msEbeDPQiUAgPQ==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: paul Subject: Re: [bug#66396] [PATCH] guix: Add case to Github url updater. In-Reply-To: (paul's message of "Wed, 7 Feb 2024 01:50:54 +0100") References: <1ed23c30a7592facd1db4c28c0f3cfb908157d9e.1696707911.git.goodoldpaul@autistici.org> <87y1ftc8bu.fsf@gnu.org> <208e097c-e299-b14d-2437-310355245de8@autistici.org> Date: Wed, 17 Apr 2024 11:12:47 +0200 Message-ID: <871q74jqsw.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 66396-done Cc: 66396-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, paul skribis: > I made a detailed analysis on the current status of the updater. I'm > attaching the source code I used. > > There are ~239 packages (probably with some false positive due to > deprecated packages I believe) that have a github.com origin-uri that > currently are marked as having no updater: > > guix time-machine -C channels-lock.scm -- repl -- t.scm | grep github.com= | awk '{ print $1 }' | wc -l > > 239 > > This patch allows the following packages (and probably more in > downstream channels) to be refreshed: Got it. Finally applied with a commit log that explains this. Thanks! Ludo=E2=80=99. From unknown Sat Aug 16 21:00:58 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 15 May 2024 11:24:12 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator