GNU bug report logs -
#65643
[PATCH] gnu: Add emacs-flymake-guile.
Previous Next
Reported by: Distopico <distopico <at> riseup.net>
Date: Thu, 31 Aug 2023 01:26:02 UTC
Severity: normal
Tags: patch
Done: Andrew Tropin <andrew <at> trop.in>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 65643 in the body.
You can then email your comments to 65643 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
, guix-patches <at> gnu.org
:
bug#65643
; Package
guix-patches
.
(Thu, 31 Aug 2023 01:26:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Distopico <distopico <at> riseup.net>
:
New bug report received and forwarded. Copy sent to
, guix-patches <at> gnu.org
.
(Thu, 31 Aug 2023 01:26:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* 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 <at> fabionatali.com>
;;; Copyright © 2023 Arnaud Lechevallier <arnaud.lechevallier <at> free.fr>
;;; Copyright © 2023 Ahmad Draidi <a.r.draidi <at> redscript.org>
+;;; Copyright © 2023 Camilo Q.S. (Distopico) <distopico <at> 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
Information forwarded
to
andrew <at> trop.in, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#65643
; Package
guix-patches
.
(Wed, 06 Sep 2023 00:49:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 65643 <at> debbugs.gnu.org (full text, mbox):
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 <at> fabionatali.com>
;;; Copyright © 2023 Arnaud Lechevallier <arnaud.lechevallier <at> free.fr>
;;; Copyright © 2023 Ahmad Draidi <a.r.draidi <at> redscript.org>
+;;; Copyright © 2023 Camilo Q.S. (Distopico) <distopico <at> 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
Reply sent
to
Andrew Tropin <andrew <at> trop.in>
:
You have taken responsibility.
(Thu, 07 Sep 2023 12:33:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Distopico <distopico <at> riseup.net>
:
bug acknowledged by developer.
(Thu, 07 Sep 2023 12:33:02 GMT)
Full text and
rfc822 format available.
Message #13 received at 65643-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
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 <at> fabionatali.com>
> ;;; Copyright © 2023 Arnaud Lechevallier <arnaud.lechevallier <at> free.fr>
> ;;; Copyright © 2023 Ahmad Draidi <a.r.draidi <at> redscript.org>
> +;;; Copyright © 2023 Camilo Q.S. (Distopico) <distopico <at> 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
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Fri, 06 Oct 2023 11:24:10 GMT)
Full text and
rfc822 format available.
This bug report was last modified 1 year and 217 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.