GNU bug report logs -
#71990
[PATCH] gnu: Add emacs-empv.
Previous Next
Reported by: Thanos Apollo <public <at> thanosapollo.org>
Date: Mon, 8 Jul 2024 06:29: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 71990 in the body.
You can then email your comments to 71990 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#71990
; Package
guix-patches
.
(Mon, 08 Jul 2024 06:29:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Thanos Apollo <public <at> thanosapollo.org>
:
New bug report received and forwarded. Copy sent to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
.
(Mon, 08 Jul 2024 06:29: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-empv): New variable.
Change-Id: Ibfb0fca623a536e8db27b15b87e76ef9d7d5a742
---
gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index c82e264930..0bb115ee42 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3730,6 +3730,34 @@ (define-public emacs-emprise
Selectrum.")
(license license:gpl3+)))
+(define-public emacs-empv
+ (let ((commit "631299ae2a918b4af17ae94eddcde4c9451235bb"))
+ (package
+ (name "emacs-empv")
+ (version "v4.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/isamert/empv.el")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0njqzri2qvpsdbkrkr1lidg2zc2742nzapwgdjaf5ms3rl8kc898"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ (list emacs-compat
+ emacs-s))
+ (home-page "https://github.com/isamert/empv.el")
+ (synopsis "An Emacs media player, media library manager, radio player, YouTube frontend ")
+ (description
+ "An Emacs media player, based on mpv. More precisely this package
+provides somewhat comprehensive interface to mpv with bunch of
+convenient functionality like an embedded radio manager, YouTube
+interface, local music/video library manager etc.")
+ (license license:gpl3+))))
+
(define-public emacs-marginalia-emprise
(package
(name "emacs-marginalia-emprise")
base-commit: 5217ea6d45bef053844d8360a06252b9436783b3
--
2.45.2
Information forwarded
to
guix-patches <at> gnu.org
:
bug#71990
; Package
guix-patches
.
(Mon, 08 Jul 2024 08:03:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 71990 <at> debbugs.gnu.org (full text, mbox):
Hello,
Thanos Apollo <public <at> thanosapollo.org> writes:
> * gnu/packages/emacs-xyz.scm (emacs-empv): New variable.
Thank you. Some comments follow.
> +(define-public emacs-empv
> + (let ((commit "631299ae2a918b4af17ae94eddcde4c9451235bb"))
> + (package
> + (name "emacs-empv")
> + (version "v4.2.0")
Upstream version is confusing. The main file says its 4.3.0, but last
tag, created one day before bumping to 4.3.0, mentions 4.2.0-RC1.
Moreover, commit 631299... does not match a version bump. So, you should
also bind `revision' to, e.g., "0". and use `git-file-name'.
Eventually, you need to remove the "v" from the version string. It
belongs to the tag, not the version.
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/isamert/empv.el")
> + (commit commit)))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32
> + "0njqzri2qvpsdbkrkr1lidg2zc2742nzapwgdjaf5ms3rl8kc898"))))
> + (build-system emacs-build-system)
> + (propagated-inputs
> + (list emacs-compat
> + emacs-s))
You can write propagated inputs on a single line.
(propagated-inputs (list emacs-compat emacs-s))
> + (home-page "https://github.com/isamert/empv.el")
> + (synopsis "An Emacs media player, media library manager, radio player, YouTube frontend ")
Please remove the article "An" and the trailing white space.
> + (description
> + "An Emacs media player, based on mpv. More precisely this package
> +provides somewhat comprehensive interface to mpv with bunch of
> +convenient functionality like an embedded radio manager, YouTube
> +interface, local music/video library manager etc.")
> + (license license:gpl3+))))
Description should consist of complete sentences. I suggest something
like:
"This package is an Emacs player, based on MPV. More precisely, it
[...], local music and video library manager, etc."
Could you send an updated patch?
Regards,
--
Nicolas Goaziou
Information forwarded
to
public <at> thanosapollo.org, mail <at> nicolasgoaziou.fr, andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#71990
; Package
guix-patches
.
(Mon, 08 Jul 2024 16:43:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 71990 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-empv): New variable.
Change-Id: Ibfb0fca623a536e8db27b15b87e76ef9d7d5a742
---
gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d5257f16a9..97d13e4635 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3730,6 +3730,34 @@ (define-public emacs-emprise
Selectrum.")
(license license:gpl3+)))
+(define-public emacs-empv
+ (let ((commit "631299ae2a918b4af17ae94eddcde4c9451235bb")
+ (revision "0"))
+ (package
+ (name "emacs-empv")
+ (version (git-version "4.3.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/isamert/empv.el")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0njqzri2qvpsdbkrkr1lidg2zc2742nzapwgdjaf5ms3rl8kc898"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ (list emacs-compat emacs-s))
+ (home-page "https://github.com/isamert/empv.el")
+ (synopsis "Emacs media player, media library manager, radio player, YouTube frontend")
+ (description
+ "Emacs multimedia player based on MPV. This package offers a
+comprehensive interface to mpv, including convenient features such as an
+embedded radio manager, YouTube integration, and a local music/video library
+manager.")
+ (license license:gpl3+))))
+
(define-public emacs-marginalia-emprise
(package
(name "emacs-marginalia-emprise")
base-commit: 13f0f52314244f08eb9fdd626d907c0c3976e06a
--
2.45.2
Reply sent
to
Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
:
You have taken responsibility.
(Tue, 09 Jul 2024 08:09:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Thanos Apollo <public <at> thanosapollo.org>
:
bug acknowledged by developer.
(Tue, 09 Jul 2024 08:09:03 GMT)
Full text and
rfc822 format available.
Message #16 received at 71990-done <at> debbugs.gnu.org (full text, mbox):
Hello,
Thanos Apollo <public <at> thanosapollo.org> writes:
> * gnu/packages/emacs-xyz.scm (emacs-empv): New variable.
I bumped it to the (very recent) latest upstream commit and applied your
patch. Thank you!
Regards,
--
Nicolas Goaziou
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 06 Aug 2024 11:24:19 GMT)
Full text and
rfc822 format available.
This bug report was last modified 90 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.