unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#65643] [PATCH] gnu: Add emacs-flymake-guile.
@ 2023-08-31  1:24 Distopico
  2023-09-06  0:46 ` [bug#65643] [PATCH v2] " Distopico
  0 siblings, 1 reply; 3+ messages in thread
From: Distopico @ 2023-08-31  1:24 UTC (permalink / raw)
  To: 65643; +Cc: Distopico

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

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3eaf215134..fb1940262b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -132,6 +132,7 @@
 ;;; Copyright © 2023 Fabio Natali <me@fabionatali.com>
 ;;; Copyright © 2023 Arnaud Lechevallier <arnaud.lechevallier@free.fr>
 ;;; Copyright © 2023 Ahmad Draidi <a.r.draidi@redscript.org>
+;;; Copyright © 2023 Camilo Q.S. (Distopico) <distopico@riseup.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2497,6 +2498,30 @@ (define-public emacs-flymake-collection
 modes.")
     (license license:expat)))
 
+(define-public emacs-flymake-guile
+  (package
+    (name "emacs-flymake-guile")
+    (version "0.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url
+              "https://framagit.org/flymake-backends/flymake-guile.git")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "044k5rjc6bxpb1bsnlclc5n86vvj8gqkf974np9kcb3fgdrwvbqf"))))
+    (build-system emacs-build-system)
+    (propagated-inputs (list emacs-flymake-quickdef))
+    (home-page "https://framagit.org/flymake-backends/flymake-guile")
+    (synopsis "GNU Guile support for Flymake")
+    (description
+     "This package provides a Flymake backend for GNU Guile using @code{guild
+compile}.")
+    (license license:gpl3+)))
+
 (define-public emacs-flymake-popon
   (package
     (name "emacs-flymake-popon")
-- 
2.41.0





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

* [bug#65643] [PATCH v2] gnu: Add emacs-flymake-guile.
  2023-08-31  1:24 [bug#65643] [PATCH] gnu: Add emacs-flymake-guile Distopico
@ 2023-09-06  0:46 ` Distopico
  2023-09-07 12:31   ` bug#65643: " Andrew Tropin
  0 siblings, 1 reply; 3+ messages in thread
From: Distopico @ 2023-09-06  0:46 UTC (permalink / raw)
  To: 65643; +Cc: Distopico, andrew, liliana.prikler

From v1 -> v2 remove flymake-quickdef dependency and update version.

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

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

 gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3eaf215134..463cae82fe 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -132,6 +132,7 @@
 ;;; Copyright © 2023 Fabio Natali <me@fabionatali.com>
 ;;; Copyright © 2023 Arnaud Lechevallier <arnaud.lechevallier@free.fr>
 ;;; Copyright © 2023 Ahmad Draidi <a.r.draidi@redscript.org>
+;;; Copyright © 2023 Camilo Q.S. (Distopico) <distopico@riseup.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2497,6 +2498,29 @@ (define-public emacs-flymake-collection
 modes.")
     (license license:expat)))
 
+(define-public emacs-flymake-guile
+  (package
+    (name "emacs-flymake-guile")
+    (version "0.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url
+              "https://framagit.org/flymake-backends/flymake-guile.git")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "0cb2wcn34bzj93y7s1g2b2sxv79vqihb3a5n0rhxbrddfila95hh"))))
+    (build-system emacs-build-system)
+    (home-page "https://framagit.org/flymake-backends/flymake-guile")
+    (synopsis "GNU Guile support for Flymake")
+    (description
+     "This package provides a Flymake backend for GNU Guile using @code{guild
+compile}.")
+    (license license:gpl3+)))
+
 (define-public emacs-flymake-popon
   (package
     (name "emacs-flymake-popon")
-- 
2.41.0





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

* bug#65643: [PATCH v2] gnu: Add emacs-flymake-guile.
  2023-09-06  0:46 ` [bug#65643] [PATCH v2] " Distopico
@ 2023-09-07 12:31   ` Andrew Tropin
  0 siblings, 0 replies; 3+ messages in thread
From: Andrew Tropin @ 2023-09-07 12:31 UTC (permalink / raw)
  To: Distopico, 65643-done; +Cc: liliana.prikler, Distopico

[-- Attachment #1: Type: text/plain, Size: 2173 bytes --]

On 2023-09-05 19:46, Distopico wrote:

Hi Camilo!

> From v1 -> v2 remove flymake-quickdef dependency and update version.
>
> * gnu/packages/emacs-xyz.scm (emacs-flymake-guile): New variable.
> ---

Under --- is a better place for reroll notes, text here doesn't go to
commit message body.

>
> * gnu/packages/emacs-xyz.scm (emacs-flymake-guile): New variable.
>
>  gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 3eaf215134..463cae82fe 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -132,6 +132,7 @@
>  ;;; Copyright © 2023 Fabio Natali <me@fabionatali.com>
>  ;;; Copyright © 2023 Arnaud Lechevallier <arnaud.lechevallier@free.fr>
>  ;;; Copyright © 2023 Ahmad Draidi <a.r.draidi@redscript.org>
> +;;; Copyright © 2023 Camilo Q.S. (Distopico) <distopico@riseup.net>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -2497,6 +2498,29 @@ (define-public emacs-flymake-collection
>  modes.")
>      (license license:expat)))
>  
> +(define-public emacs-flymake-guile
> +  (package
> +    (name "emacs-flymake-guile")
> +    (version "0.5")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url
> +              "https://framagit.org/flymake-backends/flymake-guile.git")
> +             (commit version)))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32
> +         "0cb2wcn34bzj93y7s1g2b2sxv79vqihb3a5n0rhxbrddfila95hh"))))
> +    (build-system emacs-build-system)
> +    (home-page "https://framagit.org/flymake-backends/flymake-guile")
> +    (synopsis "GNU Guile support for Flymake")
> +    (description
> +     "This package provides a Flymake backend for GNU Guile using @code{guild
> +compile}.")
> +    (license license:gpl3+)))
> +
>  (define-public emacs-flymake-popon
>    (package
>      (name "emacs-flymake-popon")

Thank you for the package, applied, merged, updated commit message,
pushed.

-- 
Best regards,
Andrew Tropin

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

end of thread, other threads:[~2023-09-07 13:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-31  1:24 [bug#65643] [PATCH] gnu: Add emacs-flymake-guile Distopico
2023-09-06  0:46 ` [bug#65643] [PATCH v2] " Distopico
2023-09-07 12:31   ` bug#65643: " Andrew Tropin

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).