GNU bug report logs -
#58157
[PATCH] gnu: Add emacs-cov.
Previous Next
Reported by: jgart <jgart <at> dismail.de>
Date: Thu, 29 Sep 2022 04:50:02 UTC
Severity: normal
Tags: patch
Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
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 58157 in the body.
You can then email your comments to 58157 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#58157
; Package
guix-patches
.
(Thu, 29 Sep 2022 04:50:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
jgart <jgart <at> dismail.de>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Thu, 29 Sep 2022 04:50:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Hi, here's cov for emacs.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#58157
; Package
guix-patches
.
(Thu, 29 Sep 2022 04:52:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 58157 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-elquery): 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 fef37627f3..3f6c95e79e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8476,6 +8476,30 @@ (define-public emacs-company-jedi
"This package provides a Company backend for Python.")
(license license:gpl3+)))
+(define-public emacs-elquery
+ (package
+ (name "emacs-elquery")
+ (version "1.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/AdamNiederer/elquery")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "035zjzmd7yfw0rsjpaklc2wwiqw6brkjadch9x8n8n2gjyxg05mn"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-dash))
+ (home-page "https://github.com/AdamNiederer/elquery/")
+ (synopsis "Read and manipulate HTML in Emacs")
+ (description
+"@code{emacs-elquery} is a library that lets you parse, query, set, and
+format HTML using Emacs Lisp. It implements most of the @code{querySelector}
+API with @code{elquery-$}, and can get and set HTML attributes.")
+ (license license:gpl3+)))
+
(define-public emacs-puppet-mode
(package
(name "emacs-puppet-mode")
--
2.37.3
Information forwarded
to
guix-patches <at> gnu.org
:
bug#58157
; Package
guix-patches
.
(Thu, 29 Sep 2022 04:52:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 58157 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-cov): New variable.
---
gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3f6c95e79e..5008c8b754 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8500,6 +8500,32 @@ (define-public emacs-elquery
API with @code{elquery-$}, and can get and set HTML attributes.")
(license license:gpl3+)))
+(define-public emacs-cov
+ (let ((commit "cd3e1995c596cc227124db9537792d8329ffb696")
+ (revision "0"))
+ (package
+ (name "emacs-cov")
+ (version (git-version "0.1.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/AdamNiederer/cov")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1gyc0si60czhgrkm7kink1p1zj1h5j5nzif4ivm5bg78l28skmpm"))))
+ (build-system emacs-build-system)
+ (native-inputs (list emacs-mocker))
+ (propagated-inputs
+ (list emacs-f emacs-s emacs-elquery))
+ (home-page "https://github.com/AdamNiederer/cov/")
+ (synopsis "Emacs extension for displaying coverage data")
+ (description
+"@code{emacs-cov} shows code coverage data for your program in Emacs.")
+ (license license:gpl3+))))
+
(define-public emacs-puppet-mode
(package
(name "emacs-puppet-mode")
--
2.37.3
Information forwarded
to
guix-patches <at> gnu.org
:
bug#58157
; Package
guix-patches
.
(Thu, 29 Sep 2022 09:42:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 58157 <at> debbugs.gnu.org (full text, mbox):
Hello,
jgart via Guix-patches via <guix-patches <at> gnu.org> writes:
> * gnu/packages/emacs-xyz.scm (emacs-elquery): New variable.
Thank you. I activated tests, fixed a (native) compilation error and
applied your patch.
I also made the following changes:
> + (description
> +"@code{emacs-elquery} is a library that lets you parse, query, set, and
Elquery is a ...
> +format HTML using Emacs Lisp. It implements most of the @code{querySelector}
> +API with @code{elquery-$}, and can get and set HTML attributes.")
I dropped the "with @code{elquery-}" part, which sounds too internal for
a package description.
Regards,
--
Nicolas Goaziou
Information forwarded
to
guix-patches <at> gnu.org
:
bug#58157
; Package
guix-patches
.
(Thu, 29 Sep 2022 09:43:02 GMT)
Full text and
rfc822 format available.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#58157
; Package
guix-patches
.
(Thu, 29 Sep 2022 09:43:02 GMT)
Full text and
rfc822 format available.
Message #20 received at submit <at> debbugs.gnu.org (full text, mbox):
Hello,
jgart via Guix-patches via <guix-patches <at> gnu.org> writes:
> * gnu/packages/emacs-xyz.scm (emacs-cov): New variable.
Thank you. I activated tests, tweaked the description and applied your patch.
Regards,
--
Nicolas Goaziou
Reply sent
to
Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
:
You have taken responsibility.
(Thu, 29 Sep 2022 09:43:03 GMT)
Full text and
rfc822 format available.
Notification sent
to
jgart <jgart <at> dismail.de>
:
bug acknowledged by developer.
(Thu, 29 Sep 2022 09:43:03 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Thu, 27 Oct 2022 11:24:16 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 319 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.