From unknown Tue Jun 17 01:10:51 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#65739 <65739@debbugs.gnu.org> To: bug#65739 <65739@debbugs.gnu.org> Subject: Status: [PATCH] Add Ruby to the tree-sitter build-module script Reply-To: bug#65739 <65739@debbugs.gnu.org> Date: Tue, 17 Jun 2025 08:10:51 +0000 retitle 65739 [PATCH] Add Ruby to the tree-sitter build-module script reassign 65739 emacs submitter 65739 john muhl severity 65739 normal tag 65739 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 04 13:11:50 2023 Received: (at submit) by debbugs.gnu.org; 4 Sep 2023 17:11:50 +0000 Received: from localhost ([127.0.0.1]:52466 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qdD78-0008VU-FB for submit@debbugs.gnu.org; Mon, 04 Sep 2023 13:11:50 -0400 Received: from lists.gnu.org ([2001:470:142::17]:49374) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qdD75-0008VG-Ag for submit@debbugs.gnu.org; Mon, 04 Sep 2023 13:11:48 -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 1qdD6z-0008Vf-Pf for bug-gnu-emacs@gnu.org; Mon, 04 Sep 2023 13:11:41 -0400 Received: from out-213.mta0.migadu.com ([2001:41d0:1004:224b::d5]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qdD6w-0004Gi-IF for bug-gnu-emacs@gnu.org; Mon, 04 Sep 2023 13:11:41 -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=pub.pink; s=key1; t=1693847496; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=YYgkrhqMPoMeLiV6+RA3WExmNChSwPsUIHr+LZMYrzw=; b=lE9Ewr2gPDwUIKJjzif0PeaWktLDvlNRL+XVM1SdHyjW6B6AIpZF3yZLM55bwhrdYVmHlP EzHYN5I7MxDBMfS4eONuQ7zEwUFmJssd+cCGz+2LULwNO4sXEO0ODCPGK7kHCqRHbD8Nx8 6OPKBBWBxQ1SvSqqil4qoRcSsQTVzBo= From: john muhl To: bug-gnu-emacs@gnu.org Subject: [PATCH] Add Ruby to the tree-sitter build-module script Date: Mon, 04 Sep 2023 12:09:50 -0500 Message-ID: <87v8cpj22j.fsf@pub.pink> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Migadu-Flow: FLOW_OUT Received-SPF: pass client-ip=2001:41d0:1004:224b::d5; envelope-from=jm@pub.pink; helo=out-213.mta0.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: 0.9 (/) 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: -0.1 (/) --=-=-= Content-Type: text/plain Tags: patch While looking at the java-ts-modes tests I noticed Ruby was missing from the build-module script. In GNU Emacs 30.0.50 (build 6, x86_64-pc-linux-gnu, GTK+ Version 3.24.38, cairo version 1.17.8) of 2023-08-29 built on localhost Repository revision: fb9312722f7b0166f178b601811213a576be5ae4 Repository branch: main System Description: Fedora Linux 38 (Workstation Edition) Configured using: 'configure --with-native-compilation=aot --with-pgtk --prefix=/home/jm/.opt' --=-=-= Content-Type: text/patch Content-Disposition: attachment; filename=0001-Add-Ruby-to-the-tree-sitter-build-module-script.patch >From cb73036bb916bef5fd5b862b935d8d564d7f6771 Mon Sep 17 00:00:00 2001 From: john muhl Date: Mon, 4 Sep 2023 12:08:34 -0500 Subject: [PATCH] Add Ruby to the tree-sitter build-module script * admin/notes/tree-sitter/build-module/batch.sh (languages): Add Ruby. --- admin/notes/tree-sitter/build-module/batch.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/admin/notes/tree-sitter/build-module/batch.sh b/admin/notes/tree-sitter/build-module/batch.sh index 1d4076564dc..ec7231dd82f 100755 --- a/admin/notes/tree-sitter/build-module/batch.sh +++ b/admin/notes/tree-sitter/build-module/batch.sh @@ -16,6 +16,7 @@ languages= 'javascript' 'json' 'python' + 'ruby' 'rust' 'toml' 'tsx' -- 2.41.0 --=-=-= Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" --==-=-= Content-Type: text/plain --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQFABAEBCAAqFiEEK5CvUQq7L5O2pQef9D+KfcKUo10FAmT2D8QMHGptQHB1Yi5w aW5rAAoJEPQ/in3ClKNdr5wH/j+a6OBZlG4SZYMPXeZRzEG41X247rTzcM6S9XRM 1qUdFlYrexERea1hUGuHVm99BJF993eXamNr2wd85hDRB+eIaJulmB+CvUh+Ulwu 4EBaB5DRM3GSzED4JiaAc2jw9IDA5asbpuldanCBBpbDIWACM8BqQkoEI46KKCln cGY+Z4CsLizYBrgBCQvZoH/VTgbwGToW2z/OlA53Z2OPqQOss79iYc1f6hbb9CHb t+u+3SJeUYF/HMUnuYTOuG3oRipbrdd2MjOyWBN1fMSPHtqLMhvwXpKr9sdSvw98 rCxLv63jQc6LZ3ltrDlDWtmz66QTNIkSOA9H87dcb6vq75g= =f5se -----END PGP SIGNATURE----- --==-=-=-- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 04 15:17:07 2023 Received: (at 65739) by debbugs.gnu.org; 4 Sep 2023 19:17:07 +0000 Received: from localhost ([127.0.0.1]:52589 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qdF4M-00061u-U6 for submit@debbugs.gnu.org; Mon, 04 Sep 2023 15:17:07 -0400 Received: from mail-lf1-x12c.google.com ([2a00:1450:4864:20::12c]:47330) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qdF4K-00061K-9q for 65739@debbugs.gnu.org; Mon, 04 Sep 2023 15:17:05 -0400 Received: by mail-lf1-x12c.google.com with SMTP id 2adb3069b0e04-5007f3d3235so2727214e87.2 for <65739@debbugs.gnu.org>; Mon, 04 Sep 2023 12:17:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1693855018; x=1694459818; darn=debbugs.gnu.org; h=cc:to:subject:message-id:date:mime-version:references:in-reply-to :from:from:to:cc:subject:date:message-id:reply-to; bh=u3QgDliZ/aamD8VDvpCNAktIJN2MkNEI/lztHxBjo38=; b=eGdCjWKkmqN9aU3G33uDvCdh54DKdw5r4Qwfv/B8XbTCW4ZVCMG2epaWA+RmO3VYSv US89VevN7U66rhWsC6gty7XCxAh4tlCv0rWfLduemzMmr/Br8GzbItnoP7qkait4Zzpa 0iVCWEnEFO2zrkMO9BD1nQwR3BratTRTtwk9XSDPR1MwEq04uV3T7bn7bbG+eUNPGO4k tnRbHyo07yZ97fcUhBCFiX2be4f3KkFojeE0NBWGOppHyIW157U4ZH2N/fCJjd598yYq A3Xrsoo7c/U1YM4+NWOXS+Jb4HcxJHhkPf3ChQr9amwAuFJhAf2QhgHHsdO2AvYwjsoh hxJw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1693855018; x=1694459818; h=cc:to:subject:message-id:date:mime-version:references:in-reply-to :from:x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=u3QgDliZ/aamD8VDvpCNAktIJN2MkNEI/lztHxBjo38=; b=Y0DlYzeF2ICI9h8FGbbs1yxsXfNZCJHbWmLmmlE7MD4z4WANmNGikVjphnTSQXFzYM 4EXFAciQqDsrmWUofm1qYiL9dhReDeoUw+nSwoFP6caR879UAauQsg4ta1+Rn85c3yRl GGcekf2zcIaRUpMl66lj+uaZ8Q0Ngvkf3Ad+ClFTnf89v+rHuLLu4mZ+aYwETFxOw8bN M+kPD8qbnFOU5F+3Sw8tO+C9UqkSMn5x3lIfWeoOheO8S6Q9G3qS7b9dChmBri+Dl9Oi qrQq3z/05TAjll3sCTm/xwz7eTX0aKziNtm9HPKa3Dxitu2eE60djz5ilPTQ9oep+3E0 owtw== X-Gm-Message-State: AOJu0YyoL6hALCPhNJVSPS9QaXARpyqRaFsAJvgcuz8v6zGX3uaMcWtI bq5QtBWKftCKFoQ5sNTu0Qptj4XCZN37Wv1a9wE= X-Google-Smtp-Source: AGHT+IEF3aBbNFeVPtbD1cDsemd0ae4ZPfQgHkiYS0psu09EPv0ds11/49ZrxUCxtwc9Kbe0HF8Fck2jy3PalPRMI88= X-Received: by 2002:a05:6512:3603:b0:4ff:9aaa:6e3e with SMTP id f3-20020a056512360300b004ff9aaa6e3emr6267988lfs.41.1693855017874; Mon, 04 Sep 2023 12:16:57 -0700 (PDT) Received: from 753933720722 named unknown by gmailapi.google.com with HTTPREST; Mon, 4 Sep 2023 12:16:57 -0700 From: Stefan Kangas In-Reply-To: <87v8cpj22j.fsf@pub.pink> References: <87v8cpj22j.fsf@pub.pink> MIME-Version: 1.0 Date: Mon, 4 Sep 2023 12:16:57 -0700 Message-ID: Subject: Re: bug#65739: [PATCH] Add Ruby to the tree-sitter build-module script To: john muhl , 65739@debbugs.gnu.org Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 65739 Cc: Perry Smith , Yuan Fu 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 (-) john muhl via "Bug reports for GNU Emacs, the Swiss army knife of text editors" writes: > Tags: patch > > While looking at the java-ts-modes tests I noticed Ruby was missing from > the build-module script. Yuan and Perry, any comments here? > In GNU Emacs 30.0.50 (build 6, x86_64-pc-linux-gnu, GTK+ Version > 3.24.38, cairo version 1.17.8) of 2023-08-29 built on localhost > Repository revision: fb9312722f7b0166f178b601811213a576be5ae4 > Repository branch: main > System Description: Fedora Linux 38 (Workstation Edition) > > Configured using: > 'configure --with-native-compilation=aot --with-pgtk > --prefix=/home/jm/.opt' > > From cb73036bb916bef5fd5b862b935d8d564d7f6771 Mon Sep 17 00:00:00 2001 > From: john muhl > Date: Mon, 4 Sep 2023 12:08:34 -0500 > Subject: [PATCH] Add Ruby to the tree-sitter build-module script > > * admin/notes/tree-sitter/build-module/batch.sh (languages): Add > Ruby. > --- > admin/notes/tree-sitter/build-module/batch.sh | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/admin/notes/tree-sitter/build-module/batch.sh b/admin/notes/tree-sitter/build-module/batch.sh > index 1d4076564dc..ec7231dd82f 100755 > --- a/admin/notes/tree-sitter/build-module/batch.sh > +++ b/admin/notes/tree-sitter/build-module/batch.sh > @@ -16,6 +16,7 @@ languages= > 'javascript' > 'json' > 'python' > + 'ruby' > 'rust' > 'toml' > 'tsx' > -- > 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 04 21:07:47 2023 Received: (at 65739) by debbugs.gnu.org; 5 Sep 2023 01:07:48 +0000 Received: from localhost ([127.0.0.1]:52989 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qdKXh-0000fb-4o for submit@debbugs.gnu.org; Mon, 04 Sep 2023 21:07:47 -0400 Received: from wout5-smtp.messagingengine.com ([64.147.123.21]:44553) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qdKXb-0000fJ-Mk for 65739@debbugs.gnu.org; Mon, 04 Sep 2023 21:07:43 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.west.internal (Postfix) with ESMTP id 08E44320093E; Mon, 4 Sep 2023 21:07:32 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute4.internal (MEProxy); Mon, 04 Sep 2023 21:07:33 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gutov.dev; h=cc :cc:content-transfer-encoding:content-type:content-type:date :date:from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to; s=fm3; t= 1693876052; x=1693962452; bh=a6T/cvQff7ZGFoViDbtAiQvAiJgahWiA2tz UMaP9jKA=; b=P2eZCONYhe8Kx65RIlTA8Mo2o2RfpfvqPni5SLrMNqqVOzwEBij Py3Pvl78Q0OqAWlzpVGu1CrHQm6LBOCbyL6DzUOulKAPEK5LJhF+C3+P3oruTbMs JP2MKYFoyFDQewBbHH3/6RHcXsjiU2xJuP/+Tvvnwc8XNa3lFDnjC478S+ZnkGU6 NFIO3eoAx4xYboYwyDHQsMSMUrZRHTohuFZqvIc/CRof0HBPKiLE4Q6HzYnTOHpx 2AzMhFy8iLHu8GIUSLauUwS15xCqsxjhxvna238Dn0XnZ9BTLpajQtA7Qb/KzQUp OFeRCJItc2RzRhYAcbXBD5uO8urt3Uw0M9w== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding :content-type:content-type:date:date:feedback-id:feedback-id :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; t= 1693876052; x=1693962452; bh=a6T/cvQff7ZGFoViDbtAiQvAiJgahWiA2tz UMaP9jKA=; b=ybh0krwg0KjIvCB0Wi1+iiptwmEVDevWBeaGu/TbWluXlRdrkaY lFp4k2Zp41e+scoMMrgyNZsrUvKXn0zZaYmlcqJrIBHFWEtPrd3RJB2EHG035gFu lsqH0lmXEL/Bc8rZ9nMBrbemW2ONfNv4DRP04VuzYdwrYtG/w/ayOtyPi8m21ck/ fQTfdart6cMwSswUexYC2qmbuOpbb4G3oecHJLkqijoutkIRnQHia+U1M0BuGvzh TMvfPPYg9OBagSh549h5jhlK3GpA4auoHRdFuCUV4gfKrFgwrqBEU3pSBADlt0l1 qkboEKhBM8gNt4e0DWlxruQiFWt5u7XHP8w== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedviedrudegledggeefucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhepkfffgggfuffvvehfhfgjtgfgsehtjeertddtfeejnecuhfhrohhmpeffmhhi thhrhicuifhuthhovhcuoegumhhithhrhiesghhuthhovhdruggvvheqnecuggftrfgrth htvghrnhepiefgteevheevveffheeltdeukeeiieekueefgedugfefgefhudelgfefveel vdevnecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehmrghilhhfrhhomhepug hmihhtrhihsehguhhtohhvrdguvghv X-ME-Proxy: Feedback-ID: i0e71465a:Fastmail Received: by mail.messagingengine.com (Postfix) with ESMTPA; Mon, 4 Sep 2023 21:07:30 -0400 (EDT) Message-ID: Date: Tue, 5 Sep 2023 04:07:28 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.13.0 Subject: Re: bug#65739: [PATCH] Add Ruby to the tree-sitter build-module script Content-Language: en-US To: Stefan Kangas , john muhl , 65739@debbugs.gnu.org References: <87v8cpj22j.fsf@pub.pink> From: Dmitry Gutov In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -2.2 (--) X-Debbugs-Envelope-To: 65739 Cc: Perry Smith , Yuan Fu 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.2 (---) On 04/09/2023 22:16, Stefan Kangas wrote: > john muhl via "Bug reports for GNU Emacs, the Swiss army knife of text > editors" writes: > >> Tags: patch >> >> While looking at the java-ts-modes tests I noticed Ruby was missing from >> the build-module script. > Yuan and Perry, any comments here? Am neither, but this looks "obviously correct" to me without testing (the ruby grammar doesn't need any special settings to compile). From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 10 16:42:43 2024 Received: (at 65739-done) by debbugs.gnu.org; 10 Jan 2024 21:42:43 +0000 Received: from localhost ([127.0.0.1]:43353 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rNgLS-0006v2-W6 for submit@debbugs.gnu.org; Wed, 10 Jan 2024 16:42:43 -0500 Received: from mail-lj1-x234.google.com ([2a00:1450:4864:20::234]:50242) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rNgLR-0006ui-0U for 65739-done@debbugs.gnu.org; Wed, 10 Jan 2024 16:42:41 -0500 Received: by mail-lj1-x234.google.com with SMTP id 38308e7fff4ca-2ccb4adbffbso55294791fa.0 for <65739-done@debbugs.gnu.org>; Wed, 10 Jan 2024 13:42:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1704922956; x=1705527756; darn=debbugs.gnu.org; h=cc:to:subject:message-id:date:mime-version:references:in-reply-to :from:from:to:cc:subject:date:message-id:reply-to; bh=tpNsPfhMUF6k8vRP//pQZLw/5u8KMwWZl5vOFYw1+LY=; b=WsHxZm7bFamdmPGqKyAMfRBCVLh4KzZiP0Q+38hII57WRH/VAj/7xfL3ZK5eGnJi+6 V5j3J9+wZtvvQ5k8yJ2jr9ZUyHC2a0owvE+noyLjc2g7rQ/h25SY1TP01UbdlkQV2R4S Q/tow2KlC6c3Js+PxSuXePEAQghF0v3isq/mP3lA4CNIXGOpdU8gV+y0eDb5wPXjWoun +9JIhHeK9068CLj7sEqyzuCOq6FAWKTaW7Q8bNfYLcwLreAb4pWIq58DcKDhfEZGYENt 9VY6f1BETnuD9DuDZ/MS0LV1b5tRhR0NH5UFxue6O+RO91S69QZGUJi1IWOSoV2/85EG QoLQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1704922956; x=1705527756; h=cc:to:subject:message-id:date:mime-version:references:in-reply-to :from:x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=tpNsPfhMUF6k8vRP//pQZLw/5u8KMwWZl5vOFYw1+LY=; b=CSwtDvLyxioOeoHo6XzQXOAPPBFhsvWA5PFXGwWWhX8BYSnMeBRSJ94fj88WkX33RG qfYSdoWT98fY6Khx3lek6DuhpVWdHLxp9i+Eu6MpLP7MHqXfbeAdEOwpa/OQ/a26gY+T so9GWm7jMzbX70UKEg9g8orW+ureBs/rKrg5yEcl5OCQaW6KAUbgmhgaYGzxpLjoHfrg 6Yiwb63lqO5A9T2N/NZC0wB9glXxUjA7ClFqIe+SjogDLok6w9jWSF7GDTShyk2nkdi4 Dj3rjJBnDO/kbwQ4dFQjuRtW8Vl+2nv4i5/41kI0crC7NCE+8qOVaAV9bgCouEORl0Fg cU5w== X-Gm-Message-State: AOJu0Yy278MfxR4j6KDmzYoXK07Q3NleRvJqJ7Ab+l/+dqHXXeW3ZKqj xJWfRwrX6CwKbHUTGetJuLhTca350KdVOaL4HiK/W8yLgtox8g== X-Google-Smtp-Source: AGHT+IHNiPwvmzVmnTUSN39ZlTD9Fu45wFol6/knO2yRWWyTCrwtl8JQROR90dcwxfUzbpn/PyPOcjG3ToOvGoTzlGI= X-Received: by 2002:a2e:93c7:0:b0:2cd:624d:c194 with SMTP id p7-20020a2e93c7000000b002cd624dc194mr94040ljh.27.1704922955519; Wed, 10 Jan 2024 13:42:35 -0800 (PST) Received: from 753933720722 named unknown by gmailapi.google.com with HTTPREST; Wed, 10 Jan 2024 13:42:34 -0800 From: Stefan Kangas In-Reply-To: <87v8cpj22j.fsf@pub.pink> (john muhl's message of "Mon, 04 Sep 2023 12:09:50 -0500") References: <87v8cpj22j.fsf@pub.pink> MIME-Version: 1.0 Date: Wed, 10 Jan 2024 13:42:34 -0800 Message-ID: Subject: Re: bug#65739: [PATCH] Add Ruby to the tree-sitter build-module script To: john muhl Content-Type: text/plain; charset="UTF-8" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 65739-done Cc: 65739-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 (-) Version: 30.1 john muhl writes: > Tags: patch > > While looking at the java-ts-modes tests I noticed Ruby was missing from > the build-module script. Thanks, installed on master (a0133f63450) and closing. From unknown Tue Jun 17 01:10:51 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 08 Feb 2024 12:24:09 +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