From unknown Sat Jun 21 05:17:07 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#34766] [PATCH] Add emacs-xr Resent-From: Nicolas Goaziou Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 06 Mar 2019 09:52:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 34766 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 34766@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.155186591423599 (code B ref -1); Wed, 06 Mar 2019 09:52:01 +0000 Received: (at submit) by debbugs.gnu.org; 6 Mar 2019 09:51:54 +0000 Received: from localhost ([127.0.0.1]:33754 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h1TDN-00068Z-Vf for submit@debbugs.gnu.org; Wed, 06 Mar 2019 04:51:54 -0500 Received: from eggs.gnu.org ([209.51.188.92]:60682) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h1TDM-00068J-4n for submit@debbugs.gnu.org; Wed, 06 Mar 2019 04:51:52 -0500 Received: from lists.gnu.org ([209.51.188.17]:48731) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h1TDG-0000MO-VF for submit@debbugs.gnu.org; Wed, 06 Mar 2019 04:51:47 -0500 Received: from eggs.gnu.org ([209.51.188.92]:46828) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h1TDF-0004Nf-V1 for guix-patches@gnu.org; Wed, 06 Mar 2019 04:51:46 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_LOW, 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 1h1TDD-0000Kl-VD for guix-patches@gnu.org; Wed, 06 Mar 2019 04:51:45 -0500 Received: from relay12.mail.gandi.net ([217.70.178.232]:47041) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h1TDD-0000J7-MQ for guix-patches@gnu.org; Wed, 06 Mar 2019 04:51:43 -0500 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay12.mail.gandi.net (Postfix) with ESMTPSA id E591E20000F for ; Wed, 6 Mar 2019 09:51:39 +0000 (UTC) From: Nicolas Goaziou Date: Wed, 06 Mar 2019 10:51:39 +0100 Message-ID: <87va0wl49g.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 217.70.178.232 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: 0.7 (/) 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.3 (/) --=-=-= Content-Type: text/plain Hello, The following patch adds emacs-xr. Feedback welcome. Regards, -- Nicolas Goaziou --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-Add-emacs-xr.patch Content-Description: Add emacs-xr >From 35c46ec8cede39bc26754db6d839be6ac6c5ae0a Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 6 Mar 2019 10:48:32 +0100 Subject: [PATCH] gnu: Add emacs-xr. * gnu/packages/emacs-xyz.scm (emacs-xr): New variable. --- gnu/packages/emacs-xyz.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 30248f673a..52624d9e13 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -734,6 +734,35 @@ can be referred to during the expression. This technique can improve clarity in certain cases. It also enables recursion for anonymous functions.") (license license:public-domain))) +(define-public emacs-xr + (package + (name "emacs-xr") + (version "1.5") + (source + (origin + (method url-fetch) + (uri (string-append + "https://elpa.gnu.org/packages/xr-" version ".tar")) + (sha256 + (base32 + "137d43p748rqh16bq9wdy74zq2sm6z35haa8hwnq6p7n0j3kxkyp")))) + (build-system emacs-build-system) + (home-page "http://elpa.gnu.org/packages/xr.html") + (synopsis "Convert string regexp to rx notation") + (description + "This is an inverse companion to the @code{rx} package for translating +regexps in string form to the @code{rx} notation. Its chief uses are: + +@itemize +@item Migrating existing code to @code{rx} form, for better readability and +maintainability +@item Understanding complex regexp strings and finding errors in them +@end itemize + +Please refer to @code{rx} for more information about the notation.") + (license license:gpl3+))) + + ;;; ;;; Web browsing. -- 2.21.0 --=-=-=-- From unknown Sat Jun 21 05:17:07 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: Nicolas Goaziou Subject: bug#34766: closed ([PATCH] Add emacs-xr) Message-ID: References: <87imwfst95.fsf@nicolasgoaziou.fr> <87va0wl49g.fsf@nicolasgoaziou.fr> X-Gnu-PR-Message: they-closed 34766 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 34766@debbugs.gnu.org Date: Mon, 18 Mar 2019 22:39:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1552948742-32554-1" This is a multi-part message in MIME format... ------------=_1552948742-32554-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #34766: [PATCH] Add emacs-xr 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 34766@debbugs.gnu.org. --=20 34766: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D34766 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1552948742-32554-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 34766-done) by debbugs.gnu.org; 18 Mar 2019 22:38:40 +0000 Received: from localhost ([127.0.0.1]:49321 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h60u0-0008SS-Go for submit@debbugs.gnu.org; Mon, 18 Mar 2019 18:38:40 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:40361) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h60ty-0008SI-IN for 34766-done@debbugs.gnu.org; Mon, 18 Mar 2019 18:38:39 -0400 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 301F9100004 for <34766-done@debbugs.gnu.org>; Mon, 18 Mar 2019 22:38:34 +0000 (UTC) From: Nicolas Goaziou To: 34766-done@debbugs.gnu.org Subject: [PATCH] Add emacs-xr Date: Mon, 18 Mar 2019 23:38:30 +0100 Message-ID: <87imwfst95.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 34766-done 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 (-) Pushed. -- Nicolas Goaziou ------------=_1552948742-32554-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 6 Mar 2019 09:51:54 +0000 Received: from localhost ([127.0.0.1]:33754 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h1TDN-00068Z-Vf for submit@debbugs.gnu.org; Wed, 06 Mar 2019 04:51:54 -0500 Received: from eggs.gnu.org ([209.51.188.92]:60682) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h1TDM-00068J-4n for submit@debbugs.gnu.org; Wed, 06 Mar 2019 04:51:52 -0500 Received: from lists.gnu.org ([209.51.188.17]:48731) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h1TDG-0000MO-VF for submit@debbugs.gnu.org; Wed, 06 Mar 2019 04:51:47 -0500 Received: from eggs.gnu.org ([209.51.188.92]:46828) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h1TDF-0004Nf-V1 for guix-patches@gnu.org; Wed, 06 Mar 2019 04:51:46 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_LOW, 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 1h1TDD-0000Kl-VD for guix-patches@gnu.org; Wed, 06 Mar 2019 04:51:45 -0500 Received: from relay12.mail.gandi.net ([217.70.178.232]:47041) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h1TDD-0000J7-MQ for guix-patches@gnu.org; Wed, 06 Mar 2019 04:51:43 -0500 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay12.mail.gandi.net (Postfix) with ESMTPSA id E591E20000F for ; Wed, 6 Mar 2019 09:51:39 +0000 (UTC) From: Nicolas Goaziou To: guix-patches@gnu.org Subject: [PATCH] Add emacs-xr Date: Wed, 06 Mar 2019 10:51:39 +0100 Message-ID: <87va0wl49g.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 217.70.178.232 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: 0.7 (/) 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.3 (/) --=-=-= Content-Type: text/plain Hello, The following patch adds emacs-xr. Feedback welcome. Regards, -- Nicolas Goaziou --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-Add-emacs-xr.patch Content-Description: Add emacs-xr >From 35c46ec8cede39bc26754db6d839be6ac6c5ae0a Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 6 Mar 2019 10:48:32 +0100 Subject: [PATCH] gnu: Add emacs-xr. * gnu/packages/emacs-xyz.scm (emacs-xr): New variable. --- gnu/packages/emacs-xyz.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 30248f673a..52624d9e13 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -734,6 +734,35 @@ can be referred to during the expression. This technique can improve clarity in certain cases. It also enables recursion for anonymous functions.") (license license:public-domain))) +(define-public emacs-xr + (package + (name "emacs-xr") + (version "1.5") + (source + (origin + (method url-fetch) + (uri (string-append + "https://elpa.gnu.org/packages/xr-" version ".tar")) + (sha256 + (base32 + "137d43p748rqh16bq9wdy74zq2sm6z35haa8hwnq6p7n0j3kxkyp")))) + (build-system emacs-build-system) + (home-page "http://elpa.gnu.org/packages/xr.html") + (synopsis "Convert string regexp to rx notation") + (description + "This is an inverse companion to the @code{rx} package for translating +regexps in string form to the @code{rx} notation. Its chief uses are: + +@itemize +@item Migrating existing code to @code{rx} form, for better readability and +maintainability +@item Understanding complex regexp strings and finding errors in them +@end itemize + +Please refer to @code{rx} for more information about the notation.") + (license license:gpl3+))) + + ;;; ;;; Web browsing. -- 2.21.0 --=-=-=-- ------------=_1552948742-32554-1--