From unknown Mon Aug 11 12:54:44 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#58213 <58213@debbugs.gnu.org> To: bug#58213 <58213@debbugs.gnu.org> Subject: Status: [PATCH] gnu: emacs-ag: Do not propagate the-silver-searcher and use gexp. Reply-To: bug#58213 <58213@debbugs.gnu.org> Date: Mon, 11 Aug 2025 19:54:44 +0000 retitle 58213 [PATCH] gnu: emacs-ag: Do not propagate the-silver-searcher a= nd use gexp. reassign 58213 guix-patches submitter 58213 Michael Rohleder severity 58213 normal tag 58213 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 01 01:34:27 2022 Received: (at submit) by debbugs.gnu.org; 1 Oct 2022 05:34:27 +0000 Received: from localhost ([127.0.0.1]:43427 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oeV8t-0000sA-63 for submit@debbugs.gnu.org; Sat, 01 Oct 2022 01:34:27 -0400 Received: from lists.gnu.org ([209.51.188.17]:58460) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oeV8m-0000rx-N0 for submit@debbugs.gnu.org; Sat, 01 Oct 2022 01:34:26 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45836) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oeV8m-0003o0-I9 for guix-patches@gnu.org; Sat, 01 Oct 2022 01:34:20 -0400 Received: from wp224.webpack.hosteurope.de ([2a01:488:42:1000:50ed:84e7::]:34966) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oeV8k-0006ss-JB for guix-patches@gnu.org; Sat, 01 Oct 2022 01:34:20 -0400 Received: from www.rohleder.de ([37.61.204.227]); authenticated by wp224.webpack.hosteurope.de running ExIM with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) id 1oeV8h-0004pW-Sd; Sat, 01 Oct 2022 07:34:15 +0200 Received: from [192.168.1.3] (helo=micha.rohleder.de) by www.rohleder.de with esmtp (Exim 4.95) (envelope-from ) id 1oeV7m-000Mej-8K; Sat, 01 Oct 2022 07:34:15 +0200 From: Michael Rohleder To: guix-patches@gnu.org Subject: [PATCH] gnu: emacs-ag: Do not propagate the-silver-searcher and use gexp. Date: Sat, 1 Oct 2022 07:33:16 +0200 Message-Id: <20221001053316.731-1-mike@rohleder.de> X-Mailer: git-send-email 2.37.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-bounce-key: webpack.hosteurope.de;mike@rohleder.de;1664602458;bd5bc7a7; X-HE-SMSGID: 1oeV8h-0004pW-Sd Received-SPF: permerror client-ip=2a01:488:42:1000:50ed:84e7::; envelope-from=mike@rohleder.de; helo=wp224.webpack.hosteurope.de X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, T_SPF_PERMERROR=0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Michael Rohleder 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 (---) * gnu/packages/emacs-xyz.scm (emacs-ag)[phases]: Use gexps. {substitute-ag-path}: Add phase to avoid propagating ag. {install-info}: Use gexps. [inputs]: Add the-silver-searcher. [propagated-inputs]: Remove the-silver-searcher. --- gnu/packages/emacs-xyz.scm | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 6d9d0d6a8f..76a17da88e 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -3026,23 +3026,27 @@ (define-public emacs-ag (base32 "1p918y24vcn2pdliaymd210xp9fvhd4a1srqbv2lfiqrh59yjidx")))) (build-system emacs-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-before 'install 'make-info - (lambda _ - (with-directory-excursion "docs" - (invoke "make" "info")))) - (add-after 'install 'install-info - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (info (string-append out "/share/info"))) - (install-file "docs/_build/texinfo/agel.info" info))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'substitute-ag-path + (lambda _ + (make-file-writable "ag.el") + (emacs-substitute-sexps "ag.el" + ("defcustom ag-executable" (which "ag"))))) + (add-before 'install 'make-info + (lambda _ + (with-directory-excursion "docs" + (invoke "make" "info")))) + (add-after 'install 'install-info + (lambda _ + (install-file "docs/_build/texinfo/agel.info" + (string-append #$output "/share/info"))))))) + (inputs (list the-silver-searcher)) ;'ag' executable (native-inputs (list python-sphinx texinfo)) (propagated-inputs - (list emacs-dash - emacs-s - the-silver-searcher)) ;'ag' executable + (list emacs-dash emacs-s)) (home-page "https://github.com/Wilfred/ag.el") (synopsis "Front-end for ag (the-silver-searcher) for Emacs") (description "This package provides the ability to use the silver -- 2.37.3 From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 02 14:14:12 2022 Received: (at 58213) by debbugs.gnu.org; 2 Oct 2022 18:14:12 +0000 Received: from localhost ([127.0.0.1]:48017 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1of3Tg-0003du-00 for submit@debbugs.gnu.org; Sun, 02 Oct 2022 14:14:12 -0400 Received: from mail-ej1-f53.google.com ([209.85.218.53]:46047) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1of3Te-0003da-6h for 58213@debbugs.gnu.org; Sun, 02 Oct 2022 14:14:10 -0400 Received: by mail-ej1-f53.google.com with SMTP id z23so1448695ejw.12 for <58213@debbugs.gnu.org>; Sun, 02 Oct 2022 11:14:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=in-reply-to:content-disposition:mime-version:references :mail-followup-to:message-id:subject:cc:to:from:date:sender:from:to :cc:subject:date; bh=cQ/aImDoW2bLdACrgPVO9XijFVlmNW4MFnrTM9QPN9I=; b=IND5fUje35uxbUcD3zYvyXpDI5D8p/KupzuTDhyZfquRL2hNPRvdp7WvX872upRihZ wyNlbsKFXeoB1U3XzuohkYRiMnSA6zfehe4feu9wxSIad/OFeg6mdZZGNI8Erdc32Zxs fDfXqFzSnkFNLqnxS7kSH5Am1s2xp7OXWlVi/MfX+j6wDPA9y7EnGdl98suPgrPEnQP1 /LaK8c2hrwZLCfurU/M0mDkq029Jp2RbyT6ZjEAl8M6RylPlQlIe9Mi0BCwZWAx9a3Gx KQK13euCYV0we7LZ5xV14EQym+IssZTCa2aQLwbrYtdjCSE+M4/NxQJDd+A/J3lV4EC5 c19w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=in-reply-to:content-disposition:mime-version:references :mail-followup-to:message-id:subject:cc:to:from:date:sender :x-gm-message-state:from:to:cc:subject:date; bh=cQ/aImDoW2bLdACrgPVO9XijFVlmNW4MFnrTM9QPN9I=; b=0wsGwA31380uRbzGHB90MIBt2gMd9wCgzKJ8iEv521YIbfgM3xw3fAi+tw8qG978BT Z0A0I7ajlYms9ueirfynMDqHt9RFudfh50ZUjaueImUMKeaM/vUAJ5a4GuPILrVXOxcK oVyc895xCXWy/e01GjMwL5NYpdsG1HDDuX6kk280UxNq5rrY4awAZDIxN0wWLOgefLjm OFrg3RBXe8tYArkHu5ZMmtla2xHfQoC3hYlWrsiQ6fTPDqgjvJC26pYGOOhO2ZZTiwym rUcqvs3FSTQUVfCaPltQ9MeIqlD8JlbgFw4Q2m6jeHiqV3lSos9gTGaTzN13aW6UOT1p +wTg== X-Gm-Message-State: ACrzQf2noB5InKyFexaY+11ADNCvHcyJCQ0OJBVSJ0Ct97jEKHTvC/QU BZzxlXyHU1hYJLP7n3Q1NL23cHp/PxS6JP2C X-Google-Smtp-Source: AMsMyM5q78vCBdK7Wm/ZSyH366faJ+mE6xK4lUG4CIvsVj0G4+NC0Wb8wyJL8OJSwjCkm9YPVDfbJg== X-Received: by 2002:a17:906:794c:b0:783:ce42:4d2 with SMTP id l12-20020a170906794c00b00783ce4204d2mr12640070ejo.517.1664734444650; Sun, 02 Oct 2022 11:14:04 -0700 (PDT) Received: from localhost ([141.226.13.62]) by smtp.gmail.com with ESMTPSA id f8-20020a50ee88000000b00458d744898asm2158142edr.79.2022.10.02.11.14.03 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 02 Oct 2022 11:14:04 -0700 (PDT) Date: Sun, 2 Oct 2022 21:14:01 +0300 From: Efraim Flashner To: Michael Rohleder Subject: Re: [bug#58213] [PATCH] gnu: emacs-ag: Do not propagate the-silver-searcher and use gexp. Message-ID: Mail-Followup-To: Efraim Flashner , Michael Rohleder , 58213@debbugs.gnu.org References: <20221001053316.731-1-mike@rohleder.de> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="z4v3TEL4ONR66FYV" Content-Disposition: inline In-Reply-To: <20221001053316.731-1-mike@rohleder.de> 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.5 (/) X-Debbugs-Envelope-To: 58213 Cc: 58213@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: -0.5 (/) --z4v3TEL4ONR66FYV Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 01, 2022 at 07:33:16AM +0200, Michael Rohleder wrote: > * gnu/packages/emacs-xyz.scm (emacs-ag)[phases]: Use gexps. > {substitute-ag-path}: Add phase to avoid propagating ag. > {install-info}: Use gexps. > [inputs]: Add the-silver-searcher. > [propagated-inputs]: Remove the-silver-searcher. > --- > gnu/packages/emacs-xyz.scm | 32 ++++++++++++++++++-------------- > 1 file changed, 18 insertions(+), 14 deletions(-) >=20 > diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm > index 6d9d0d6a8f..76a17da88e 100644 > --- a/gnu/packages/emacs-xyz.scm > +++ b/gnu/packages/emacs-xyz.scm > @@ -3026,23 +3026,27 @@ (define-public emacs-ag > (base32 "1p918y24vcn2pdliaymd210xp9fvhd4a1srqbv2lfiqrh59yjidx"))= )) > (build-system emacs-build-system) > (arguments > - `(#:phases > - (modify-phases %standard-phases > - (add-before 'install 'make-info > - (lambda _ > - (with-directory-excursion "docs" > - (invoke "make" "info")))) > - (add-after 'install 'install-info > - (lambda* (#:key outputs #:allow-other-keys) > - (let* ((out (assoc-ref outputs "out")) > - (info (string-append out "/share/info"))) > - (install-file "docs/_build/texinfo/agel.info" info))))))) > + (list > + #:phases > + #~(modify-phases %standard-phases > + (add-after 'unpack 'substitute-ag-path > + (lambda _ > + (make-file-writable "ag.el") > + (emacs-substitute-sexps "ag.el" > + ("defcustom ag-executable" (which "ag"))))) > + (add-before 'install 'make-info > + (lambda _ > + (with-directory-excursion "docs" > + (invoke "make" "info")))) > + (add-after 'install 'install-info > + (lambda _ > + (install-file "docs/_build/texinfo/agel.info" > + (string-append #$output "/share/info"))))))) > + (inputs (list the-silver-searcher)) ;'ag' executable > (native-inputs > (list python-sphinx texinfo)) > (propagated-inputs > - (list emacs-dash > - emacs-s > - the-silver-searcher)) ;'ag' executable > + (list emacs-dash emacs-s)) > (home-page "https://github.com/Wilfred/ag.el") > (synopsis "Front-end for ag (the-silver-searcher) for Emacs") > (description "This package provides the ability to use the silver > --=20 > 2.37.3 >=20 Can you split this into two patches? The first to not propagate the silver searcher and the second to switch to gexps? Thanks. --=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 --z4v3TEL4ONR66FYV Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmM51OkACgkQQarn3Mo9 g1F9ghAAgkwA7xZ7YtuQVsg4MhJaJowTCCGm6XwgDBrJPHihPnYDvW2qK8YrvM52 jGDrrzyHpHVDTnecj7BeExzBa4kn/mfDFBFek+/aGX17ExvCZaXkincbWwm+Xz05 rfJ9sywZigc9xvYMytD9je4BzD5m/zpJWqIShr7d8NbgxovBeYGX8nM8aNpeYDGq HJKyFmPkzf8fxd6xnvqwPvSYhrnS+bJ8c/7K1meResdJTWiNpZ6hIoZ+e8qCM4cr O8nQ7KRwJZ9uxfFSIB3cfXvF1Au2fl+A60kAEpbxTnmvbXAI6s6aI4irg+LVzzpR 6blgghsmCAxBcX56sI4HDjnScyteXovhZTfUpWkF0l+CmNPtYaRC3z5jbUBaC4Gh qlhik61wmDpUfl2Fk53idFN0A9/kYYUzJSb/BPrcwQynpxFS2kIHZnHgvq01YMYr ZLXFwZyEFNC6lVPadopSKJi32Fje5odDTPywZ6lqfQUPz/EKDY7tdY0r7niW5REq Ze0atvouyvAm66el5TYnf7OKEE+0QmTvVlQzUZeGZUI0zbXo9iqKuq4P1lgQx89S dADCAhMs46p6pdB0+RER7RXAzQMDy2TtkC8Ba1y68fhyQYOs4vvvUQXWL+MFKmdo aFF2GTqKTyCw+WPJio05z42WK9m60WGOdpVKVwlsMBbHFnQ6D4A= =O50R -----END PGP SIGNATURE----- --z4v3TEL4ONR66FYV-- From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 02 16:43:30 2022 Received: (at 58213) by debbugs.gnu.org; 2 Oct 2022 20:43:31 +0000 Received: from localhost ([127.0.0.1]:48175 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1of5oA-0005Zn-F4 for submit@debbugs.gnu.org; Sun, 02 Oct 2022 16:43:30 -0400 Received: from wp224.webpack.hosteurope.de ([80.237.132.231]:51118) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1of5o8-0005Zb-Jt for 58213@debbugs.gnu.org; Sun, 02 Oct 2022 16:43:29 -0400 Received: from www.rohleder.de ([37.61.204.227]); authenticated by wp224.webpack.hosteurope.de running ExIM with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) id 1of5o5-0007oe-U2; Sun, 02 Oct 2022 22:43:25 +0200 Received: from [192.168.1.3] (helo=micha) by www.rohleder.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.95) (envelope-from ) id 1of5n9-000aky-8Y; Sun, 02 Oct 2022 22:43:25 +0200 From: Michael Rohleder To: Efraim Flashner Subject: Re: [bug#58213] [PATCH] gnu: emacs-ag: Do not propagate the-silver-searcher and use gexp. References: <20221001053316.731-1-mike@rohleder.de> Date: Sun, 02 Oct 2022 22:42:27 +0200 In-Reply-To: (Efraim Flashner's message of "Sun, 2 Oct 2022 21:14:01 +0300") Message-ID: <8735c6t0ss.fsf@rohleder.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-bounce-key: webpack.hosteurope.de;mike@rohleder.de;1664743408;ada63807; X-HE-SMSGID: 1of5o5-0007oe-U2 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 58213 Cc: 58213@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 (-) --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain Hi Efraim! Thanks for reviewing! Efraim Flashner writes: > Can you split this into two patches? The first to not propagate the > silver searcher and the second to switch to gexps? Thanks. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-emacs-ag-Use-gexps.patch Content-Transfer-Encoding: quoted-printable Content-Description: emacs-ag: Use gexps. From=20040aa27ca507032e8c02e02a90dc2e7aaecf4511 Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Sun, 2 Oct 2022 22:01:17 +0200 Subject: [PATCH] gnu: emacs-ag: Use gexps. * gnu/packages/emacs-xyz.scm (emacs-ag)[phases]: Use gexps. {install-info}: Adjust for gexps. =2D-- gnu/packages/emacs-xyz.scm | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 93ad1a6fbf..f907838dc8 100644 =2D-- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -3026,17 +3026,17 @@ (define-public emacs-ag (base32 "1p918y24vcn2pdliaymd210xp9fvhd4a1srqbv2lfiqrh59yjidx")))) (build-system emacs-build-system) (arguments =2D `(#:phases =2D (modify-phases %standard-phases =2D (add-before 'install 'make-info =2D (lambda _ =2D (with-directory-excursion "docs" =2D (invoke "make" "info")))) =2D (add-after 'install 'install-info =2D (lambda* (#:key outputs #:allow-other-keys) =2D (let* ((out (assoc-ref outputs "out")) =2D (info (string-append out "/share/info"))) =2D (install-file "docs/_build/texinfo/agel.info" info))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-before 'install 'make-info + (lambda _ + (with-directory-excursion "docs" + (invoke "make" "info")))) + (add-after 'install 'install-info + (lambda _ + (install-file "docs/_build/texinfo/agel.info" + (string-append #$output "/share/info"))))))) (native-inputs (list python-sphinx texinfo)) (propagated-inputs =2D-=20 2.37.3 --=-=-= Content-Type: text/plain This applies to the first one. I changed emacs-substitute-sexps to emacs-substitute-variables. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-emacs-ag-Do-not-propagate-the-silver-searcher.patch Content-Transfer-Encoding: quoted-printable Content-Description: emacs-ag: Do not propagate the-silver-searcher. From=20f3ace8a1daa1a40c90c08043df42d0af4864e5cb Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Sun, 2 Oct 2022 22:25:56 +0200 Subject: [PATCH] gnu: emacs-ag: Do not propagate the-silver-searcher. * gnu/packages/emacs-xyz.scm (emacs-ag)[phases]: Add phase substitute-ag-pa= th to avoid propagating ag. [inputs]: Add the-silver-searcher. [propagated-inputs]: Remove the-silver-searcher. =2D-- gnu/packages/emacs-xyz.scm | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index f907838dc8..ff2d45500e 100644 =2D-- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -3029,6 +3029,11 @@ (define-public emacs-ag (list #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'substitute-ag-path + (lambda _ + (make-file-writable "ag.el") + (emacs-substitute-variables "ag.el" + ("ag-executable" (which "ag"))))) (add-before 'install 'make-info (lambda _ (with-directory-excursion "docs" @@ -3037,12 +3042,11 @@ (define-public emacs-ag (lambda _ (install-file "docs/_build/texinfo/agel.info" (string-append #$output "/share/info"))))))) + (inputs (list the-silver-searcher)) (native-inputs (list python-sphinx texinfo)) (propagated-inputs =2D (list emacs-dash =2D emacs-s =2D the-silver-searcher)) ;'ag' executable + (list emacs-dash emacs-s)) (home-page "https://github.com/Wilfred/ag.el") (synopsis "Front-end for ag (the-silver-searcher) for Emacs") (description "This package provides the ability to use the silver =2D-=20 2.37.3 --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable =2D-=20 I still maintain the point that designing a monolithic kernel in 1991 is a fundamental error. Be thankful you are not my student. You would not get a high grade for such a design :-) (Andrew Tanenbaum to Linus Torvalds) --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQFFBAEBCAAvFiEEdV4t5dDVhcUueCgwfHr/vv7yyyUFAmM597MRHG1pa2VAcm9o bGVkZXIuZGUACgkQfHr/vv7yyyVhNwf/dAWtCLmfP47VXGEtzGDVvlGHhk1aYjp4 31DG069Ugp7A6Rowtari0Eff9r5ctvzF9prgQXDorIxIZRM4ghbeIaqRrbMFPjIj ouL5dYTTxsFRU/aAq8E2B409W2ZlRDZHJCXKGFvOHkjVhK0qOjBCh6uC3Snh3RgE 662T9r6iOPHyKwmGo5IzexHHx76E1NJthttHoxgmTNerx2zObggUxLVU0tm5Nv2M 5j2iAk7YGCefMOUKr7MJtasRKwgRwSmD+C+Slb+QRl8OhbF9/EPxNtQYOdmxJZsa JhREYXlkJtbgAX9CLD/fFjxdmD/TfXDK9cBk7ErljZbWUezg3Wm4bg== =/Rd2 -----END PGP SIGNATURE----- --==-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 03 03:37:41 2022 Received: (at 58213-done) by debbugs.gnu.org; 3 Oct 2022 07:37:41 +0000 Received: from localhost ([127.0.0.1]:48826 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ofG1F-0008I0-GS for submit@debbugs.gnu.org; Mon, 03 Oct 2022 03:37:41 -0400 Received: from mail-ed1-f41.google.com ([209.85.208.41]:33434) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ofG1A-0008Hh-CV for 58213-done@debbugs.gnu.org; Mon, 03 Oct 2022 03:37:40 -0400 Received: by mail-ed1-f41.google.com with SMTP id a13so13397759edj.0 for <58213-done@debbugs.gnu.org>; Mon, 03 Oct 2022 00:37:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=in-reply-to:content-disposition:mime-version:references :mail-followup-to:message-id:subject:cc:to:from:date:sender:from:to :cc:subject:date; bh=NC4pi+Q2Ttoo/9IjxJIbM6ZCThnbLZ+4lxm8+Hv1oZc=; b=o15W5Mvfk1QqxY+1GgrwlN0dr8AA7604y3E6v0hYl4DUCPz5m3qLAW4hKQGY8dka2r V+5ZDbWUVJdRfDibd1HUrPbyR/0gB0FeYtKKcfwij6WDnL6qSKobDuYWSWQf3NqM1Yc8 rVUJ1pDKmKehCQ+DfFtDIj3XLLZffIGLEifPQ+2X6CYWqpBuH1kjw4ANbcOF3JmFkYCl YvXRusZzTKENcFVJq5VmWU37ZUFqp689tmAxVgDSaj/XHyH+QEhw1OxeLKShaTCHnGgn 4dSepSgmgEq+dn656Bd8Sz2jnSjAkodq1q4dVTwrTECKkUAWZSub4cwvNJ+0XrISKOrR EONg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=in-reply-to:content-disposition:mime-version:references :mail-followup-to:message-id:subject:cc:to:from:date:sender :x-gm-message-state:from:to:cc:subject:date; bh=NC4pi+Q2Ttoo/9IjxJIbM6ZCThnbLZ+4lxm8+Hv1oZc=; b=LndBou/Fu8tHrdwHF1LsQEO8HhBPucNoqAZ4/nIfTWBnOmoc7Kymbpg0zCvLJCnAnT NatHh2pKH5RZejy5y1dd6Lnq2NKFVp0Tsh0T+HRjc9wkgCxXdXRr2dcvl+06bsXpIZN5 gXEEc8BLcbilkB7rMNCNRrwwlZ+ddB6gn6J6S7vPKVE+SlFBfA8UN+KCRmVFE0S6GOc6 7TfRV5ws+8iShwitT5zM31ikr76Mygwa2sov8huZM2mKiQhVaxxAxEL0jpH8tLuTeaDG GMeZmSPESwTYa/zofdAJD0wLZey2oi3fgPdO4q4KmT+mheGg/9dK3IVjwmAzVYH3iO0n 7CLg== X-Gm-Message-State: ACrzQf3aeKNAVitLIzAIR2weq3VHOMBOge1MqPkOlLhrNY20XkgekhJD dZtUXrcJ0DPkxG6jHrN5TvM= X-Google-Smtp-Source: AMsMyM7beVRg4LP2O77TJeMNf3knyKq+47KeMlNIMWFURKlAOpnQJdEOvIq8nUuFI0d3hFugjjBMZQ== X-Received: by 2002:a05:6402:1d4f:b0:450:fd05:628c with SMTP id dz15-20020a0564021d4f00b00450fd05628cmr17836792edb.419.1664782650495; Mon, 03 Oct 2022 00:37:30 -0700 (PDT) Received: from localhost ([141.226.13.62]) by smtp.gmail.com with ESMTPSA id k25-20020a056402049900b0044657ecfbb5sm3992698edv.13.2022.10.03.00.37.29 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 03 Oct 2022 00:37:29 -0700 (PDT) Date: Mon, 3 Oct 2022 10:37:26 +0300 From: Efraim Flashner To: Michael Rohleder Subject: Re: [bug#58213] [PATCH] gnu: emacs-ag: Do not propagate the-silver-searcher and use gexp. Message-ID: Mail-Followup-To: Efraim Flashner , Michael Rohleder , 58213-done@debbugs.gnu.org References: <20221001053316.731-1-mike@rohleder.de> <8735c6t0ss.fsf@rohleder.de> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="W9kRC+Mff87pJjnp" Content-Disposition: inline In-Reply-To: <8735c6t0ss.fsf@rohleder.de> 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.5 (/) X-Debbugs-Envelope-To: 58213-done Cc: 58213-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: -0.5 (/) --W9kRC+Mff87pJjnp Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Oct 02, 2022 at 10:42:27PM +0200, Michael Rohleder wrote: > Hi Efraim! >=20 > Thanks for reviewing! >=20 > Efraim Flashner writes: > > Can you split this into two patches? The first to not propagate the > > silver searcher and the second to switch to gexps? Thanks. Thanks. Patches 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 --W9kRC+Mff87pJjnp Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmM6kTMACgkQQarn3Mo9 g1H65g//XGeYcPf98kTAaHmxN4ZiwHdNcnTBpyqNlsZZB4b35kzFaPHzQdHOSRTZ 7dbo3mdq4Mm3+yaNooiK9pSo10wSmBLXQnqF19ytt2FGeY9BDOeuCOJ57zPPLTFD kaIvKXppnTY6aE1tMzMPLBeFwiN7VagSxctBFcMiAaAwlJscLB7hznCPFs/l+OwT eTILqM8ukWx1MIicX+nTB6ls+EvtGiN4Bt9HGrhYzZ6/HzW27SYj3SC/tWn2fbdi m7ZVL7zX2w1xtpZWOF+rmP4K8+ofJ2JKSa9BgHAXcSN3jNCabApQxHvpgSYaX+i0 QEWhXji5kj/RBfgKjBPSF2o3MB9dFq4YkX2ppFZFFdWfoICPQev6TPMuZnv/C/i8 evZqqOpq6BEz21iaFXaqfcVsuBvvewoaqPrIiZBWPB89elFClMP2Tp4FBE8ebv4x 8034gjnGrSv6b7KtxilKw9mqukqUKfjvM94m78iDdmgeoEz6S6B1gezY7pQWHlPu MP8ZzXfY9q1mVLvW0eT4SH4bkDrf9cCVuR5sPyO7YIQRlGXj9NPZ5Og6faJGpkaf Ie+cojs9mmhvOLdmiV4ReIfzMVSwlhEFluZpicpWu4RDzb9ikeLO9HJxjymCiQ8i TU+yq9C102URU1E78nnUmHsu3oxStAB1Zd3VL9C7Us5oNTUVvkI= =EmDk -----END PGP SIGNATURE----- --W9kRC+Mff87pJjnp-- From unknown Mon Aug 11 12:54:44 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 31 Oct 2022 11:24:04 +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