From unknown Sun Aug 17 01:51:04 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#46714] [PATCH] gnu: Add emacs-ido-at-point. Resent-From: Masaya Tojo Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 23 Feb 2021 10:56:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 46714 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 46714@debbugs.gnu.org Cc: Masaya Tojo X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.161407775822259 (code B ref -1); Tue, 23 Feb 2021 10:56:01 +0000 Received: (at submit) by debbugs.gnu.org; 23 Feb 2021 10:55:58 +0000 Received: from localhost ([127.0.0.1]:58391 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lEVM8-0005mr-Jw for submit@debbugs.gnu.org; Tue, 23 Feb 2021 05:55:58 -0500 Received: from lists.gnu.org ([209.51.188.17]:50826) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lEVM6-0005mh-Hz for submit@debbugs.gnu.org; Tue, 23 Feb 2021 05:55:51 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:45552) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lEVM3-0006zr-0H for guix-patches@gnu.org; Tue, 23 Feb 2021 05:55:48 -0500 Received: from mail.tojo.tokyo ([45.77.102.230]:35666 helo=localhost) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lEVLy-0007QF-2w for guix-patches@gnu.org; Tue, 23 Feb 2021 05:55:44 -0500 Received: from laptop.tojo.local (softbank126078034060.bbtec.net [126.78.34.60]) by localhost (OpenSMTPD) with ESMTPSA id 88654949 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Tue, 23 Feb 2021 10:55:40 +0000 (UTC) From: Masaya Tojo Date: Tue, 23 Feb 2021 19:54:22 +0900 Message-Id: <20210223105422.24036-1-masaya@tojo.tokyo> X-Mailer: git-send-email 2.30.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=45.77.102.230; envelope-from=masaya@tojo.tokyo; helo=localhost X-Spam_score_int: 19 X-Spam_score: 1.9 X-Spam_bar: + X-Spam_report: (1.9 / 5.0 requ) BAYES_00=-1.9, FSL_HELO_NON_FQDN_1=0.001, HELO_LOCALHOST=3.828, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.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: -0.0 (/) * gnu/packages/emacs-xyz.scm (emacs-ido-at-point): New variable. --- gnu/packages/emacs-xyz.scm | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 71564dcd0c..6d492b33eb 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -60,7 +60,7 @@ ;;; Copyright © 2020 Paul Garlick ;;; Copyright © 2020 Robert Smith ;;; Copyright © 2020 Evan Straw -;;; Copyright © 2020 Masaya Tojo +;;; Copyright © 2020, 2021 Masaya Tojo ;;; Copyright © 2020, 2021 Martin Becze ;;; Copyright © 2020, 2021 Michael Rohleder ;;; Copyright © 2020 Brice Waegeneire @@ -26887,3 +26887,25 @@ to pastebin-like services. It supports more than one service and will failover if one service fails. More services can easily be added over time and prefered services can easily be configured.") (license license:gpl3+))) + +(define-public emacs-ido-at-point + (package + (name "emacs-ido-at-point") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/katspaugh/ido-at-point") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp")))) + (build-system emacs-build-system) + (synopsis "Ido-style completion-at-point") + (description + "This package is an alternative frontend for @code{completion-at-point}. +It replaces the standard completions buffer with ido prompt. Press +or to complete a symbol at point.") + (home-page "https://github.com/katspaugh/ido-at-point") + (license license:gpl3+))) -- 2.30.1 From unknown Sun Aug 17 01:51:04 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: Masaya Tojo Subject: bug#46714: closed (Re: [bug#46714] [PATCH] gnu: Add emacs-ido-at-point.) Message-ID: References: <878s7flzj4.fsf@nicolasgoaziou.fr> <20210223105422.24036-1-masaya@tojo.tokyo> X-Gnu-PR-Message: they-closed 46714 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 46714@debbugs.gnu.org Date: Tue, 23 Feb 2021 12:50:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1614084602-9702-1" This is a multi-part message in MIME format... ------------=_1614084602-9702-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #46714: [PATCH] gnu: Add emacs-ido-at-point. 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 46714@debbugs.gnu.org. --=20 46714: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D46714 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1614084602-9702-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 46714-done) by debbugs.gnu.org; 23 Feb 2021 12:49:48 +0000 Received: from localhost ([127.0.0.1]:58490 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lEX8N-0002Vy-Uw for submit@debbugs.gnu.org; Tue, 23 Feb 2021 07:49:48 -0500 Received: from relay11.mail.gandi.net ([217.70.178.231]:35267) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lEX8L-0002Ve-5R for 46714-done@debbugs.gnu.org; Tue, 23 Feb 2021 07:49:47 -0500 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay11.mail.gandi.net (Postfix) with ESMTPSA id E0DB4100004; Tue, 23 Feb 2021 12:49:37 +0000 (UTC) From: Nicolas Goaziou To: Masaya Tojo Subject: Re: [bug#46714] [PATCH] gnu: Add emacs-ido-at-point. References: <20210223105422.24036-1-masaya@tojo.tokyo> Date: Tue, 23 Feb 2021 13:49:35 +0100 In-Reply-To: <20210223105422.24036-1-masaya@tojo.tokyo> (Masaya Tojo's message of "Tue, 23 Feb 2021 19:54:22 +0900") Message-ID: <878s7flzj4.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 46714-done Cc: 46714-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.7 (-) Hello, Masaya Tojo writes: > * gnu/packages/emacs-xyz.scm (emacs-ido-at-point): New variable. Applied. Thank you. Regards, -- Nicolas Goaziou ------------=_1614084602-9702-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 23 Feb 2021 10:55:58 +0000 Received: from localhost ([127.0.0.1]:58391 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lEVM8-0005mr-Jw for submit@debbugs.gnu.org; Tue, 23 Feb 2021 05:55:58 -0500 Received: from lists.gnu.org ([209.51.188.17]:50826) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lEVM6-0005mh-Hz for submit@debbugs.gnu.org; Tue, 23 Feb 2021 05:55:51 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:45552) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lEVM3-0006zr-0H for guix-patches@gnu.org; Tue, 23 Feb 2021 05:55:48 -0500 Received: from mail.tojo.tokyo ([45.77.102.230]:35666 helo=localhost) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lEVLy-0007QF-2w for guix-patches@gnu.org; Tue, 23 Feb 2021 05:55:44 -0500 Received: from laptop.tojo.local (softbank126078034060.bbtec.net [126.78.34.60]) by localhost (OpenSMTPD) with ESMTPSA id 88654949 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Tue, 23 Feb 2021 10:55:40 +0000 (UTC) From: Masaya Tojo To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-ido-at-point. Date: Tue, 23 Feb 2021 19:54:22 +0900 Message-Id: <20210223105422.24036-1-masaya@tojo.tokyo> X-Mailer: git-send-email 2.30.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=45.77.102.230; envelope-from=masaya@tojo.tokyo; helo=localhost X-Spam_score_int: 19 X-Spam_score: 1.9 X-Spam_bar: + X-Spam_report: (1.9 / 5.0 requ) BAYES_00=-1.9, FSL_HELO_NON_FQDN_1=0.001, HELO_LOCALHOST=3.828, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Masaya Tojo 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.0 (/) * gnu/packages/emacs-xyz.scm (emacs-ido-at-point): New variable. --- gnu/packages/emacs-xyz.scm | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 71564dcd0c..6d492b33eb 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -60,7 +60,7 @@ ;;; Copyright © 2020 Paul Garlick ;;; Copyright © 2020 Robert Smith ;;; Copyright © 2020 Evan Straw -;;; Copyright © 2020 Masaya Tojo +;;; Copyright © 2020, 2021 Masaya Tojo ;;; Copyright © 2020, 2021 Martin Becze ;;; Copyright © 2020, 2021 Michael Rohleder ;;; Copyright © 2020 Brice Waegeneire @@ -26887,3 +26887,25 @@ to pastebin-like services. It supports more than one service and will failover if one service fails. More services can easily be added over time and prefered services can easily be configured.") (license license:gpl3+))) + +(define-public emacs-ido-at-point + (package + (name "emacs-ido-at-point") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/katspaugh/ido-at-point") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp")))) + (build-system emacs-build-system) + (synopsis "Ido-style completion-at-point") + (description + "This package is an alternative frontend for @code{completion-at-point}. +It replaces the standard completions buffer with ido prompt. Press +or to complete a symbol at point.") + (home-page "https://github.com/katspaugh/ido-at-point") + (license license:gpl3+))) -- 2.30.1 ------------=_1614084602-9702-1--