From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 17 14:59:23 2019 Received: (at submit) by debbugs.gnu.org; 17 Sep 2019 18:59:23 +0000 Received: from localhost ([127.0.0.1]:53247 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iAIh9-0003uQ-Aj for submit@debbugs.gnu.org; Tue, 17 Sep 2019 14:59:23 -0400 Received: from lists.gnu.org ([209.51.188.17]:34097) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iAIh8-0003uI-4R for submit@debbugs.gnu.org; Tue, 17 Sep 2019 14:59:22 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:35782) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iAIh6-0001lb-E8 for guix-patches@gnu.org; Tue, 17 Sep 2019 14:59:21 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iAIh5-0000eo-9j for guix-patches@gnu.org; Tue, 17 Sep 2019 14:59:20 -0400 Received: from flashner.co.il ([178.62.234.194]:48702) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iAIh5-0000d8-07 for guix-patches@gnu.org; Tue, 17 Sep 2019 14:59:19 -0400 Received: from localhost (unknown [188.120.128.191]) by flashner.co.il (Postfix) with ESMTPSA id AFE1F400CD for ; Tue, 17 Sep 2019 18:59:16 +0000 (UTC) Date: Tue, 17 Sep 2019 21:59:15 +0300 From: Efraim Flashner To: guix-patches@gnu.org Subject: [PATCH] import/github: Check for more version prefixes Message-ID: <20190917185915.GA6057@E5400> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="NMuMz9nt05w80d4+" Content-Disposition: inline X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 User-Agent: Mutt/1.12.1 (2019-06-15) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 178.62.234.194 X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) --NMuMz9nt05w80d4+ Content-Type: multipart/mixed; boundary="XsQoSWH+UP9D9v3l" Content-Disposition: inline --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable 'guix refresh openjpeg' gnu/packages/image.scm:762:13: openjpeg would be upgraded from 2.3.1 to ers= ion.2.1 I checked the git repository, there are a number of tags reading 'version.2.1' or similar. This allows for version tags 'version2.1' or 'version-2.1' or 'version.2.1' or 'version=E2=86=922.1'. (still looking for= a repo to test the last one) --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-import-github-Check-for-more-version-prefixes.patch" Content-Transfer-Encoding: quoted-printable =46rom 1d32a908d3bdbec89420b638791960e7535a5e90 Mon Sep 17 00:00:00 2001 =46rom: Efraim Flashner Date: Tue, 17 Sep 2019 21:50:36 +0300 Subject: [PATCH] import/github: Check for more version prefixes. * guix/import/github.scm (latest-released-version): Allow the version string to begin with the word 'version'. --- guix/import/github.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/guix/import/github.scm b/guix/import/github.scm index 55ea00a111..df5f6ff32f 100644 --- a/guix/import/github.scm +++ b/guix/import/github.scm @@ -3,6 +3,7 @@ ;;; Copyright =C2=A9 2017, 2018, 2019 Ludovic Court=C3=A8s ;;; Copyright =C2=A9 2018 Eric Bavier ;;; Copyright =C2=A9 2019 Arun Isaac +;;; Copyright =C2=A9 2019 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; @@ -186,7 +187,12 @@ the package e.g. 'bedtools2'. Return #f if there is n= o releases" (substring tag 0 (+ name-length 1)))) (substring tag (+ name-length 1))) ;; some tags start with a "v" e.g. "v0.25.0" + ;; or with the word "version" e.g. "version.2.1" ;; where some are just the version number + ((string-prefix? "version" tag) + (if (char-set-contains? char-set:digit (string-ref tag 7)) + (substring tag 7) + (substring tag 8))) ((string-prefix? "v" tag) (substring tag 1)) ;; Finally, reject tags that don't start with a digit: --=20 2.23.0 --XsQoSWH+UP9D9v3l-- --NMuMz9nt05w80d4+ Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl2BLQMACgkQQarn3Mo9 g1EoWBAAvxj5ysN/xspN8oQvWGJKSHC00lx9+LwyPtMSVjy7UTlqpr8PreOdkpja TPhd5inP0AZPRWnluxSWgsFLUL2DCQ/tMMAGRxvz5C4nJ2jscmIcOguk4pQb0vGO kpVnV8YbcDfk9z+utAKmuU8XqWxNTJ8C69bxkwo5C1Y9J/3ZnkYyZcMKwlpeBRws 4iiLmgwMDrvyAX+aOnxJxKG0DsEiPGMy06i8shBAWAtW5NpHRWRpqFxIlOAqFC7P MQrdXvOanRkVgoLUsWNMPk70ECBT8eJ960RhMgHAINNLvbmHKyCBs3Z3Wws1EWHG 6MAGWy2q/YSCcf2HyosgcN7+Z9RasD+E2nbL6uLdSdpVxwBupq4Gg6Tm4Al2vFWi gEu/evT3yTIMzUUvqhrtFm0OQAM++8DVTnQoVaBumHFn+qOsgCTjSF+jY3njfe3S phdp+aREOm/8yTFB1oL1jq1Z2ABlENI+QKRmYGvThK2DuJxo3iwiPe8L9I2kUHEc avR8ibFiyP7rX4iGyWFNIFOJ1+k8vLoP+SZ0SLF+qpzShQ1ELtnVXcpg3+R/6t/q sfBpYgGnWThnbqxTIzX+kH/RBSV7djNuSU7qXGjzQs6+fk9RAUBu6tK8rKtDhW4J zZAcQQ6t/VBgiPBIJHoUJ9RyBfSG+0us5OEYH6fFYSCRrOgRoF0= =koXf -----END PGP SIGNATURE----- --NMuMz9nt05w80d4+-- From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 19 15:50:30 2019 Received: (at 37442) by debbugs.gnu.org; 19 Sep 2019 19:50:30 +0000 Received: from localhost ([127.0.0.1]:56445 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iB2Ri-0004Zg-IZ for submit@debbugs.gnu.org; Thu, 19 Sep 2019 15:50:30 -0400 Received: from eggs.gnu.org ([209.51.188.92]:35797) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iB2Rg-0004ZT-Ll for 37442@debbugs.gnu.org; Thu, 19 Sep 2019 15:50:29 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:55580) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iB2Rb-0002w8-BD; Thu, 19 Sep 2019 15:50:23 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=43174 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iB2Ra-0005MB-Qw; Thu, 19 Sep 2019 15:50:23 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Efraim Flashner Subject: Re: [bug#37442] [PATCH] import/github: Check for more version prefixes References: <20190917185915.GA6057@E5400> Date: Thu, 19 Sep 2019 21:50:21 +0200 In-Reply-To: <20190917185915.GA6057@E5400> (Efraim Flashner's message of "Tue, 17 Sep 2019 21:59:15 +0300") Message-ID: <87o8zgysjm.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 37442 Cc: 37442@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! Efraim Flashner skribis: > 'guix refresh openjpeg' > gnu/packages/image.scm:762:13: openjpeg would be upgraded from 2.3.1 to e= rsion.2.1 Ouch. > I checked the git repository, there are a number of tags reading > 'version.2.1' or similar. This allows for version tags 'version2.1' or > 'version-2.1' or 'version.2.1' or 'version=E2=86=922.1'. (still looking f= or a > repo to test the last one) :-) > From 1d32a908d3bdbec89420b638791960e7535a5e90 Mon Sep 17 00:00:00 2001 > From: Efraim Flashner > Date: Tue, 17 Sep 2019 21:50:36 +0300 > Subject: [PATCH] import/github: Check for more version prefixes. > > * guix/import/github.scm (latest-released-version): Allow the > version string to begin with the word 'version'. LGTM! Thanks, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 20 02:07:54 2019 Received: (at 37442-done) by debbugs.gnu.org; 20 Sep 2019 06:07:54 +0000 Received: from localhost ([127.0.0.1]:56637 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBC5C-0006Cf-59 for submit@debbugs.gnu.org; Fri, 20 Sep 2019 02:07:54 -0400 Received: from flashner.co.il ([178.62.234.194]:58848) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBC5A-0006CT-HC for 37442-done@debbugs.gnu.org; Fri, 20 Sep 2019 02:07:52 -0400 Received: from localhost (unknown [188.120.128.191]) by flashner.co.il (Postfix) with ESMTPSA id BE0C84009C; Fri, 20 Sep 2019 06:07:46 +0000 (UTC) Date: Fri, 20 Sep 2019 09:07:45 +0300 From: Efraim Flashner To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#37442] [PATCH] import/github: Check for more version prefixes Message-ID: <20190920060745.GA16989@E5400> References: <20190917185915.GA6057@E5400> <87o8zgysjm.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="k1lZvvs/B4yU6o8G" Content-Disposition: inline In-Reply-To: <87o8zgysjm.fsf@gnu.org> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 User-Agent: Mutt/1.12.1 (2019-06-15) X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 37442-done Cc: 37442-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --k1lZvvs/B4yU6o8G Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Thanks. Patch pushed. --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --k1lZvvs/B4yU6o8G Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl2EbLEACgkQQarn3Mo9 g1HRaw/7BZuGpNsH+/dMwytGCyRT3yPc92CX35Ar3pdc04hwzO2AvNKTR7+QXANK VOzkfEFisBMcRiPDshG52djQDrR3FVks1J+OaRROw5tZgsPygxXPtetE3qr2WAOA sIcM6OKh1jAWC/dFER5xarfAaxmnucQR0LSma3DrozCZfPpOSyFljuSZYbW3JxQv Y+L/PWiIAnXMvVw+oEnwdouonhtd8Qb2UfT/KQtRa1xpcNNHeR+5hz9JQvzLdgcs uN2R3oQ+9Rl95Yb3/wAwVOVCQawWdnvPupfeVUNtZmJjvpRFwi18KdNjlaGhIBAF olN+lkYdSV5BGlvJy1zJ/sZLzcD2GdSjbgR05BcJp1GKzAa30Wn920urMSdX1XFo ak0ZJyY+UNudA1pf8Os5umpQnn8JCOxGmStyWV5oWAi9do/bvsYg/5Y8Kfk6ezn1 lFuy6XRr39VJO9ow275xVFyF70vTaCg1SpTIONVYnvi0nRq/dc5YezP1fZGiWegJ 95I8D+eMK0w0S13RFEuJHOyw3xBAgW1uJvgfg1hMSxmclhgEG/zICPTY8Y2u1cDr KXYSAQ66NgfoOmfAbpKx9V48Tq/xcDQQzbJavbQUfdgahLEmyUVX0MhqTVyDDyUp iJ/d2SwZKhE+/aVWUVmH6ScYtt+ECJbs+drmfu7RMorYwzZ5WqY= =jHVZ -----END PGP SIGNATURE----- --k1lZvvs/B4yU6o8G-- From unknown Sat Jun 14 03:55:41 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 18 Oct 2019 11:24:08 +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