* [NonGnu ELPA] New package: flymake-codespell
@ 2023-10-29 13:45 Chmouel Boudjnah
2023-10-29 22:40 ` Stefan Kangas
0 siblings, 1 reply; 6+ messages in thread
From: Chmouel Boudjnah @ 2023-10-29 13:45 UTC (permalink / raw)
To: emacs-devel
[-- Attachment #1: Type: text/plain, Size: 214 bytes --]
Hi all!
I have made a new package called flymake-codespell which plugs codespell (https://github.com/codespell-project/codespell) to flymake.
I would like to include it in Nongnu ELPA.
Cheers,
Chmouel
[-- Attachment #2: 0001-Add-flymake-codespell.patch --]
[-- Type: application/octet-stream, Size: 854 bytes --]
From 1c3d35080283e552590112f2ba85069d6590ae9d Mon Sep 17 00:00:00 2001
From: Chmouel Boudjnah <chmouel@chmouel.com>
Date: Sun, 29 Oct 2023 14:38:28 +0100
Subject: [PATCH] Add flymake codespell
Signed-off-by: Chmouel Boudjnah <chmouel@chmouel.com>
---
elpa-packages | 3 +++
1 file changed, 3 insertions(+)
diff --git a/elpa-packages b/elpa-packages
index 0f722f7..46b7c53 100644
--- a/elpa-packages
+++ b/elpa-packages
@@ -236,6 +236,9 @@
:ignored-files (".travis.yml" "Cask" "LICENSE" "tests" "Makefile"
"flx.el" "misc/flx-helm-demo.el" "misc/flx-test-list.el"))
+(flymake-codespell :url "https://github.com/chmouel/flymake-codespell"
+ :ignored-files ("README.md" "LICENSE"))
+
(flymake-kondor :url "https://github.com/turbo-cafe/flymake-kondor"
:ignored-files ("COPYING.txt"))
--
2.42.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [NonGnu ELPA] New package: flymake-codespell
2023-10-29 13:45 [NonGnu ELPA] New package: flymake-codespell Chmouel Boudjnah
@ 2023-10-29 22:40 ` Stefan Kangas
2023-10-30 3:59 ` Chmouel Boudjnah
0 siblings, 1 reply; 6+ messages in thread
From: Stefan Kangas @ 2023-10-29 22:40 UTC (permalink / raw)
To: Chmouel Boudjnah, emacs-devel
Chmouel Boudjnah <chmouel@chmouel.com> writes:
> I have made a new package called flymake-codespell which plugs
> codespell (https://github.com/codespell-project/codespell) to flymake.
>
> I would like to include it in Nongnu ELPA.
I didn't take a look at it, but I have had something similar cooking for
a while:
https://github.com/skangas/flymake-codespell
How do you feel about merging our efforts? It would be better with just
one package for this, for obvious reasons. I don't really care which
package to use as a base, but I do think it would be better to keep the
result on GNU ELPA.
Please let me know what you think.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [NonGnu ELPA] New package: flymake-codespell
2023-10-29 22:40 ` Stefan Kangas
@ 2023-10-30 3:59 ` Chmouel Boudjnah
2023-10-31 8:29 ` Philip Kaludercic
2023-10-31 11:49 ` Stefan Kangas
0 siblings, 2 replies; 6+ messages in thread
From: Chmouel Boudjnah @ 2023-10-30 3:59 UTC (permalink / raw)
To: Stefan Kangas; +Cc: emacs-devel
[-- Attachment #1: Type: text/plain, Size: 865 bytes --]
On Sun, Oct 29, 2023 at 11:41 PM Stefan Kangas <stefankangas@gmail.com>
wrote:
> I didn't take a look at it, but I have had something similar cooking for
> a while:
>
> https://github.com/skangas/flymake-codespell
>
> How do you feel about merging our efforts? It would be better with just
> one package for this, for obvious reasons. I don't really care which
> package to use as a base, but I do think it would be better to keep the
> result on GNU ELPA.
>
This is great, I didn't see this before.
Your package seems a bit better documented and configurable, I would not
mind deprecating mine and just put a notice on the repository to have users
(but I doubt i have many) redirected to your's.
(and I guess maybe to have a submission of your's for GNU ELPA ?)
Cheers,
Chmouel
> Please let me know what you think.
>
[-- Attachment #2: Type: text/html, Size: 1517 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [NonGnu ELPA] New package: flymake-codespell
2023-10-30 3:59 ` Chmouel Boudjnah
@ 2023-10-31 8:29 ` Philip Kaludercic
2023-10-31 11:49 ` Stefan Kangas
1 sibling, 0 replies; 6+ messages in thread
From: Philip Kaludercic @ 2023-10-31 8:29 UTC (permalink / raw)
To: Chmouel Boudjnah; +Cc: Stefan Kangas, emacs-devel
Chmouel Boudjnah <chmouel@chmouel.com> writes:
> On Sun, Oct 29, 2023 at 11:41 PM Stefan Kangas <stefankangas@gmail.com>
> wrote:
>
>> I didn't take a look at it, but I have had something similar cooking for
>> a while:
>>
>> https://github.com/skangas/flymake-codespell
>>
>> How do you feel about merging our efforts? It would be better with just
>> one package for this, for obvious reasons. I don't really care which
>> package to use as a base, but I do think it would be better to keep the
>> result on GNU ELPA.
>>
>
> This is great, I didn't see this before.
>
> Your package seems a bit better documented and configurable, I would not
> mind deprecating mine and just put a notice on the repository to have users
> (but I doubt i have many) redirected to your's.
>
> (and I guess maybe to have a submission of your's for GNU ELPA ?)
Should we go ahead and add Stefan's package then?
> Cheers,
> Chmouel
>
>
>
>
>> Please let me know what you think.
>>
--
Philip Kaludercic
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [NonGnu ELPA] New package: flymake-codespell
2023-10-30 3:59 ` Chmouel Boudjnah
2023-10-31 8:29 ` Philip Kaludercic
@ 2023-10-31 11:49 ` Stefan Kangas
2023-10-31 11:53 ` Chmouel Boudjnah
1 sibling, 1 reply; 6+ messages in thread
From: Stefan Kangas @ 2023-10-31 11:49 UTC (permalink / raw)
To: Chmouel Boudjnah; +Cc: emacs-devel, Philip Kaludercic
Chmouel Boudjnah <chmouel@chmouel.com> writes:
> Your package seems a bit better documented and configurable, I would not
> mind deprecating mine and just put a notice on the repository to have users
> (but I doubt i have many) redirected to your's.
>
> (and I guess maybe to have a submission of your's for GNU ELPA ?)
Thanks, sounds like a plan!
Thus, I have now added my package to GNU ELPA:
https://elpa.gnu.org/packages/flymake-codespell.html
Feel free to submit PR:s or send patches.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [NonGnu ELPA] New package: flymake-codespell
2023-10-31 11:49 ` Stefan Kangas
@ 2023-10-31 11:53 ` Chmouel Boudjnah
0 siblings, 0 replies; 6+ messages in thread
From: Chmouel Boudjnah @ 2023-10-31 11:53 UTC (permalink / raw)
To: Stefan Kangas; +Cc: emacs-devel, Philip Kaludercic
[-- Attachment #1: Type: text/plain, Size: 349 bytes --]
On Tue, Oct 31, 2023, 12:49 Stefan Kangas <stefankangas@gmail.com> wrote
> Thanks, sounds like a plan!
>
> Thus, I have now added my package to GNU ELPA:
>
> https://elpa.gnu.org/packages/flymake-codespell.html
>
> Feel free to submit PR:s or send patches
Great thanks, I'll archive my repo and redirect users to your packages
Chmouel
.
>
[-- Attachment #2: Type: text/html, Size: 1073 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-10-31 11:53 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-29 13:45 [NonGnu ELPA] New package: flymake-codespell Chmouel Boudjnah
2023-10-29 22:40 ` Stefan Kangas
2023-10-30 3:59 ` Chmouel Boudjnah
2023-10-31 8:29 ` Philip Kaludercic
2023-10-31 11:49 ` Stefan Kangas
2023-10-31 11:53 ` Chmouel Boudjnah
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).