unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#48818] [PATCH 0/2] gnu: Add emacs-flymake-kondor.
@ 2021-06-03 21:09 Alexandr Vityazev
  2021-06-03 21:26 ` [bug#48818] [PATCH 1/2] gnu: Add emacs-flymake-quickdef Alexandr Vityazev
  2021-06-03 21:26 ` [bug#48818] [PATCH 2/2] gnu: Add emacs-flymake-kondor Alexandr Vityazev
  0 siblings, 2 replies; 4+ messages in thread
From: Alexandr Vityazev @ 2021-06-03 21:09 UTC (permalink / raw)
  To: 48818


This patch series adds these packages: emacs-flymake-quickdef, emacs-flymake-kondor.

gnu: Add emacs-flymake-quickdef.
gnu: Add emacs-flymake-kondor.

-- 
Best regards,
Alexandr Vityazev




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#48818] [PATCH 1/2] gnu: Add emacs-flymake-quickdef.
  2021-06-03 21:09 [bug#48818] [PATCH 0/2] gnu: Add emacs-flymake-kondor Alexandr Vityazev
@ 2021-06-03 21:26 ` Alexandr Vityazev
  2021-06-03 21:26 ` [bug#48818] [PATCH 2/2] gnu: Add emacs-flymake-kondor Alexandr Vityazev
  1 sibling, 0 replies; 4+ messages in thread
From: Alexandr Vityazev @ 2021-06-03 21:26 UTC (permalink / raw)
  To: 48818

* gnu/packages/emacs-xyz.scm (emacs-flymake-quickdef): 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 7d985c0d0f..2541c148ad 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28272,3 +28272,32 @@ to the https://multitran.com online dictionary.")
 Leiningen plugin for detecting and improving non-idiomatic
 Clojure source code, from within GNU Emacs. ")
       (license license:gpl3+))))
+
+(define-public emacs-flymake-quickdef
+  (let ((version "1.0.0")
+        (revision "0")
+        (commit "150c5839768a3d32f988f9dc08052978a68f2ad7"))
+    (package
+      (name "emacs-flymake-quickdef")
+      (version (git-version version revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/karlotness/flymake-quickdef")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "19gfd539l97j8xbrq1fw83b54mxbcamlz9m896088d3p01zf8b0g"))))
+      (build-system emacs-build-system)
+      (home-page
+       "https://github.com/karlotness/flymake-quickdef")
+      (synopsis "Quickly define a new Flymake backend")
+      (description
+       "This package mainly defines @code{flymake-quickdef-backend}, a macro
+which helps remove some of the boilerplate code from defining new
+Flymake backend functions.  The macro defines a function which is
+suitable for use with @code{flymake-diagnostic-functions} and handles
+running the external process, creating and removing any necessary
+files and buffers, and regex matches against diagnostic output. ")
+      (license license:gpl3+))))
-- 
2.31.1



-- 

Alexandr Vityazev




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#48818] [PATCH 2/2] gnu: Add emacs-flymake-kondor.
  2021-06-03 21:09 [bug#48818] [PATCH 0/2] gnu: Add emacs-flymake-kondor Alexandr Vityazev
  2021-06-03 21:26 ` [bug#48818] [PATCH 1/2] gnu: Add emacs-flymake-quickdef Alexandr Vityazev
@ 2021-06-03 21:26 ` Alexandr Vityazev
  2021-06-05 12:27   ` bug#48818: " Nicolas Goaziou
  1 sibling, 1 reply; 4+ messages in thread
From: Alexandr Vityazev @ 2021-06-03 21:26 UTC (permalink / raw)
  To: 48818

* gnu/packages/emacs-xyz.scm (emacs-flymake-kondor): New variable.
---
 gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 2541c148ad..1892d06960 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28301,3 +28301,30 @@ suitable for use with @code{flymake-diagnostic-functions} and handles
 running the external process, creating and removing any necessary
 files and buffers, and regex matches against diagnostic output. ")
       (license license:gpl3+))))
+
+(define-public emacs-flymake-kondor
+  (let ((version "0.0.3")
+        (revision "0")
+        (commit "72052b5ba827faf357608cf720a70221192a8282"))
+    (package
+      (name "emacs-flymake-kondor")
+      (version (git-version version revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/turbo-cafe/flymake-kondor")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0h8dqk35r10pxx2w4swb3kij4y2vi17j9wfk978x8lf0wd3h3hsy"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-flymake-quickdef"
+          ,emacs-flymake-quickdef)))
+      (home-page
+       "https://github.com/turbo-cafe/flymake-kondor")
+      (synopsis "Linter with clj-kondo")
+      (description
+       "This package adds Clojure syntax checker clj-kondo. ")
+      (license license:gpl3+))))
-- 
2.31.1



-- 

Alexandr Vityazev




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#48818: [PATCH 2/2] gnu: Add emacs-flymake-kondor.
  2021-06-03 21:26 ` [bug#48818] [PATCH 2/2] gnu: Add emacs-flymake-kondor Alexandr Vityazev
@ 2021-06-05 12:27   ` Nicolas Goaziou
  0 siblings, 0 replies; 4+ messages in thread
From: Nicolas Goaziou @ 2021-06-05 12:27 UTC (permalink / raw)
  To: Alexandr Vityazev; +Cc: 48818-done

Hello,

Alexandr Vityazev <avityazev@posteo.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-flymake-kondor): New variable.

Applied, with the patch before it. Thank you.

> +(define-public emacs-flymake-kondor
> +  (let ((version "0.0.3")
> +        (revision "0")
> +        (commit "72052b5ba827faf357608cf720a70221192a8282"))

This commit is exactly tagged "0.0.3" release. So I used that instead.

> +      (description
> +       "This package adds Clojure syntax checker clj-kondo. ")

Please mind the trailing white space.

Regards,
-- 
Nicolas Goaziou




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-06-05 12:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-03 21:09 [bug#48818] [PATCH 0/2] gnu: Add emacs-flymake-kondor Alexandr Vityazev
2021-06-03 21:26 ` [bug#48818] [PATCH 1/2] gnu: Add emacs-flymake-quickdef Alexandr Vityazev
2021-06-03 21:26 ` [bug#48818] [PATCH 2/2] gnu: Add emacs-flymake-kondor Alexandr Vityazev
2021-06-05 12:27   ` bug#48818: " Nicolas Goaziou

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.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).