From unknown Sat Aug 09 22:10:03 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#44300] [PATCH] gnu: ruby: Update to 2.7.2. Resent-From: Ryan Prior Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 29 Oct 2020 04:24:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 44300 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 44300@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Reply-To: Ryan Prior Received: via spool by submit@debbugs.gnu.org id=B.160394539028145 (code B ref -1); Thu, 29 Oct 2020 04:24:01 +0000 Received: (at submit) by debbugs.gnu.org; 29 Oct 2020 04:23:10 +0000 Received: from localhost ([127.0.0.1]:51480 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXzSw-0007Jt-N0 for submit@debbugs.gnu.org; Thu, 29 Oct 2020 00:23:10 -0400 Received: from lists.gnu.org ([209.51.188.17]:36612) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXzSv-0007Jm-Dd for submit@debbugs.gnu.org; Thu, 29 Oct 2020 00:23:09 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:58194) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kXzSt-0005eo-T4 for guix-patches@gnu.org; Thu, 29 Oct 2020 00:23:09 -0400 Received: from mail-40134.protonmail.ch ([185.70.40.134]:27755) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kXzSr-0003gg-8x for guix-patches@gnu.org; Thu, 29 Oct 2020 00:23:07 -0400 Date: Thu, 29 Oct 2020 04:22:51 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1603945380; bh=fRyFsoRCfsp5ai5CKnWZtbPHiByMsD7uvT+OJXGRRR8=; h=Date:To:From:Reply-To:Subject:From; b=UjBZCBHksIBNUslQE4n5481jML0Ewmg+bejWTqX+z++8VaQIbDDDLS8QfWrSeZ4gK haST2DpQbujJcLhFG2gublMa69QY4xmO+CkPsaayzqDEVkAjyAGs3Mq2tBrGdH862O gRyf4s+6kkd7wZH2eKJz4vjD+U0ZTP0fVbBVDclk= From: Ryan Prior Message-ID: <20201029042247.22600-1-rprior@protonmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch Received-SPF: pass client-ip=185.70.40.134; envelope-from=rprior@protonmail.com; helo=mail-40134.protonmail.ch X-detected-operating-system: by eggs.gnu.org: First seen = 2020/10/29 00:23:00 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] [fuzzy] X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.3 (/) 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 (--) * gnu/packages/ruby.scm (ruby): Update to 2.7.2. --- gnu/packages/ruby.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index df1c6d87d1..ee0f925177 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -147,16 +147,16 @@ a focus on simplicity and productivity.") (define-public ruby-2.7 (package (inherit ruby) - (version "2.7.1") + (version "2.7.2") (source (origin (method url-fetch) - (uri (string-append "http://cache.ruby-lang.org/pub/ruby/" + (uri (string-append "https://cache.ruby-lang.org/pub/ruby/" (version-major+minor version) "/ruby-" version ".tar.gz")) (sha256 (base32 - "0674x98f542y02r7n2yv2qhmh97blqhi2mvh2dn5f000vlxlh66l")) + "1m63461mxi3fg4y3bspbgmb0ckbbb1ldgf9xi0piwkpfsk80cmvf")) (modules '((guix build utils))) (snippet `(begin ;; Remove bundled libffi --=20 2.17.1 From unknown Sat Aug 09 22:10:03 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Ryan Prior Subject: bug#44300: closed (Re: [bug#44300] [PATCH] gnu: ruby: Update to 2.7.2.) Message-ID: References: <20201029081035.GC10124@E5400> <20201029042247.22600-1-rprior@protonmail.com> X-Gnu-PR-Message: they-closed 44300 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 44300@debbugs.gnu.org Date: Thu, 29 Oct 2020 08:12:01 +0000 Content-Type: multipart/mixed; boundary="----------=_1603959121-16953-1" This is a multi-part message in MIME format... ------------=_1603959121-16953-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #44300: [PATCH] gnu: ruby: Update to 2.7.2. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 44300@debbugs.gnu.org. --=20 44300: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D44300 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1603959121-16953-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 44300-done) by debbugs.gnu.org; 29 Oct 2020 08:11:18 +0000 Received: from localhost ([127.0.0.1]:51655 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kY31i-0004OD-IL for submit@debbugs.gnu.org; Thu, 29 Oct 2020 04:11:18 -0400 Received: from flashner.co.il ([178.62.234.194]:42882) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kY31g-0004Nn-TH for 44300-done@debbugs.gnu.org; Thu, 29 Oct 2020 04:11:17 -0400 Received: from localhost (unknown [141.226.13.8]) by flashner.co.il (Postfix) with ESMTPSA id 7534E40297; Thu, 29 Oct 2020 08:11:10 +0000 (UTC) Date: Thu, 29 Oct 2020 10:10:35 +0200 From: Efraim Flashner To: Ryan Prior Subject: Re: [bug#44300] [PATCH] gnu: ruby: Update to 2.7.2. Message-ID: <20201029081035.GC10124@E5400> References: <20201029042247.22600-1-rprior@protonmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="iv66pGDkNHRbjGM5" Content-Disposition: inline In-Reply-To: <20201029042247.22600-1-rprior@protonmail.com> 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 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 44300-done Cc: 44300-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 (-) --iv66pGDkNHRbjGM5 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I fixed the Author line to point to you and I added a note about the CVE (as you mentioned in IRC). 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 --iv66pGDkNHRbjGM5 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl+aePsACgkQQarn3Mo9 g1Hoew//WAEXZSUSTgZU5tqwA4eIttETnNsdiwj0rke9rQQUEJkFt4R2Qknomkav F/yOTBygR87Mj5otmsbO9fzBrX1s+9BVfbK6TY0C6hpVnn622A+98zxYHTjaO2hm N+2KDrNsA93MLkbY9B9OnvQ0xRx++ooC39Tg0FTwU2F8W5TZnfHaCcF0NQS/pxRh tUf8p6pnuFxHmq9nA1bMyqqvDm5R8JJMeINSKdAuoh0c4g+9mDa3gAUQETuKPBZA kEhj2HksEoPdC7T8a/qhGlm3A02Pf3s9zvRPPTrZ2rCb4jve4ljvIk0M+GjFVXVf F822h/CTcsGoby8DZthV5y5Lfn9XE8zQCcMxAh4pdgSNtUWSqX7t19Zig3kr56xg DH8fpL3gjHhCmSuR/OvG66iY9x27HUZW1UPXXe75IzrXsnP8KhSVeodC+idND+cI y56JimGCuMyxMgql3mTfMKtn0j/tATKl6DSge7sMfaD6YaLWo29eDVuwqOrGMN9c L6C6o3Sjo3kd9Wv94VsYBOBz3XSC+5flsRx08uawXdz+sprCOw0xetUWIBEGicZY n6X5KY1UNt7zo/Jeu8TRGnmH/RCRDxy0u7LPquDgoY2Rsve1W21/zBKsTqqy+SGt GIzfEj3wrF8cOjQVS+Kerwx/Lo9W99/rnUm/4bEH5WmvgebEqJ4= =kXps -----END PGP SIGNATURE----- --iv66pGDkNHRbjGM5-- ------------=_1603959121-16953-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 29 Oct 2020 04:23:10 +0000 Received: from localhost ([127.0.0.1]:51480 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXzSw-0007Jt-N0 for submit@debbugs.gnu.org; Thu, 29 Oct 2020 00:23:10 -0400 Received: from lists.gnu.org ([209.51.188.17]:36612) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXzSv-0007Jm-Dd for submit@debbugs.gnu.org; Thu, 29 Oct 2020 00:23:09 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:58194) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kXzSt-0005eo-T4 for guix-patches@gnu.org; Thu, 29 Oct 2020 00:23:09 -0400 Received: from mail-40134.protonmail.ch ([185.70.40.134]:27755) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kXzSr-0003gg-8x for guix-patches@gnu.org; Thu, 29 Oct 2020 00:23:07 -0400 Date: Thu, 29 Oct 2020 04:22:51 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1603945380; bh=fRyFsoRCfsp5ai5CKnWZtbPHiByMsD7uvT+OJXGRRR8=; h=Date:To:From:Reply-To:Subject:From; b=UjBZCBHksIBNUslQE4n5481jML0Ewmg+bejWTqX+z++8VaQIbDDDLS8QfWrSeZ4gK haST2DpQbujJcLhFG2gublMa69QY4xmO+CkPsaayzqDEVkAjyAGs3Mq2tBrGdH862O gRyf4s+6kkd7wZH2eKJz4vjD+U0ZTP0fVbBVDclk= To: guix-patches@gnu.org From: Ryan Prior Subject: [PATCH] gnu: ruby: Update to 2.7.2. Message-ID: <20201029042247.22600-1-rprior@protonmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch Received-SPF: pass client-ip=185.70.40.134; envelope-from=rprior@protonmail.com; helo=mail-40134.protonmail.ch X-detected-operating-system: by eggs.gnu.org: First seen = 2020/10/29 00:23:00 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] [fuzzy] X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.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: , Reply-To: Ryan Prior Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/ruby.scm (ruby): Update to 2.7.2. --- gnu/packages/ruby.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index df1c6d87d1..ee0f925177 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -147,16 +147,16 @@ a focus on simplicity and productivity.") (define-public ruby-2.7 (package (inherit ruby) - (version "2.7.1") + (version "2.7.2") (source (origin (method url-fetch) - (uri (string-append "http://cache.ruby-lang.org/pub/ruby/" + (uri (string-append "https://cache.ruby-lang.org/pub/ruby/" (version-major+minor version) "/ruby-" version ".tar.gz")) (sha256 (base32 - "0674x98f542y02r7n2yv2qhmh97blqhi2mvh2dn5f000vlxlh66l")) + "1m63461mxi3fg4y3bspbgmb0ckbbb1ldgf9xi0piwkpfsk80cmvf")) (modules '((guix build utils))) (snippet `(begin ;; Remove bundled libffi --=20 2.17.1 ------------=_1603959121-16953-1--