unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#71991] [PATCH 2/2] gnu: emacs-yeetube: Update to 2.1.7
       [not found] <a5ea83d2ef14dacce239e98f88ec6be487b4f4ae.1720423037.git.public@thanosapollo.org>
@ 2024-07-08  7:17 ` Thanos Apollo
  2024-07-08  8:05   ` Nicolas Goaziou via Guix-patches via
  0 siblings, 1 reply; 4+ messages in thread
From: Thanos Apollo @ 2024-07-08  7:17 UTC (permalink / raw)
  To: 71991
  Cc: Thanos Apollo, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-yeetube): Update to 2.1.7.

Change-Id: Ib5de9ca8d155740da2a5f7ecdba9b349e366def3
---
 gnu/packages/emacs-xyz.scm | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0bb115ee42..e9e7f06603 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -29238,10 +29238,10 @@ (define-public emacs-ytel-show
       (license license:gpl3+))))
 
 (define-public emacs-yeetube
-  (let ((commit "c9721a295f4fd30a44e94b3424151fa8a14d22ae")) ;version bump
+  (let ((commit "5c0a3efd2fb5cc25a6a90741ad198e31fdb15640"))
     (package
       (name "emacs-yeetube")
-      (version "2.1.6")
+      (version "2.1.7")
       (source
        (origin
          (method git-fetch)
@@ -29250,7 +29250,7 @@ (define-public emacs-yeetube
                (commit commit)))
          (sha256
           (base32
-           "0lrcs0n30h800sm6py4av44a3fcfgasmj223mnl76q34syyrgz6k"))
+           "0a3pm8cz6yl5s2xnbnjvdwm8mf5hyman419xl4fyyfgwy6vrxp70"))
          (file-name (git-file-name name version))))
       (build-system emacs-build-system)
       (arguments
@@ -29272,13 +29272,10 @@ (define-public emacs-yeetube
       (inputs (list mpv torsocks yt-dlp))
       (propagated-inputs (list emacs-compat))
       (home-page "https://thanosapollo.org/projects/yeetube/")
-      (synopsis "Youtube and Invidious front-end for Emacs")
+      (synopsis "Youtube front-end for Emacs")
       (description
-       "This package offers an Emacs interface that allows you to search YouTube
-or an Invidious instance for a specific query.  The search results are shown
-as links in an Org mode buffer.  The videos can be opened to a user-defined
-video player (by default @command{mpv}) or downloaded using @command{yt-dlp}.
-This package also includes a @code{yt-dlp} front-end.")
+       "This package provides the ability to scrape YouTube, with the results
+displayed in a tabulated list.")
       (license license:gpl3+))))
 
 (define-public emacs-org-web-tools
-- 
2.45.2





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

* [bug#71991] [PATCH 2/2] gnu: emacs-yeetube: Update to 2.1.7
  2024-07-08  7:17 ` Thanos Apollo
@ 2024-07-08  8:05   ` Nicolas Goaziou via Guix-patches via
  0 siblings, 0 replies; 4+ messages in thread
From: Nicolas Goaziou via Guix-patches via @ 2024-07-08  8:05 UTC (permalink / raw)
  To: Thanos Apollo
  Cc: Katherine Cox-Buday, 71991, Liliana Marie Prikler, Andrew Tropin

Hello,

Thanos Apollo <public@thanosapollo.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-yeetube): Update to 2.1.7.

Thank you. Some comments follow.

>  (define-public emacs-yeetube
> -  (let ((commit "c9721a295f4fd30a44e94b3424151fa8a14d22ae")) ;version bump
> +  (let ((commit "5c0a3efd2fb5cc25a6a90741ad198e31fdb15640"))

Why did you remove the comment?

> -      (synopsis "Youtube and Invidious front-end for Emacs")
> +      (synopsis "Youtube front-end for Emacs")
>        (description
> -       "This package offers an Emacs interface that allows you to search YouTube
> -or an Invidious instance for a specific query.  The search results are shown
> -as links in an Org mode buffer.  The videos can be opened to a user-defined
> -video player (by default @command{mpv}) or downloaded using @command{yt-dlp}.
> -This package also includes a @code{yt-dlp} front-end.")
> +       "This package provides the ability to scrape YouTube, with the results
> +displayed in a tabulated list.")

The changes to synopsis and description should be mentioned in the
commit log, too.

Please note that I find the new description much less informative. In
particular, I find "scrape YouTube" not being very clear. May you
expound this a bit?

Regards,
-- 
Nicolas Goaziou






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

* [bug#71991] [PATCH 2/2] gnu: emacs-yeetube: Update to 2.1.7
       [not found] <4e16cb0ed765c0bab5ea8e504d6ddf444cec2a6a.1720457637.git.public@thanosapollo.org>
@ 2024-07-08 16:54 ` Thanos Apollo
  2024-07-09  8:12   ` Nicolas Goaziou via Guix-patches via
  0 siblings, 1 reply; 4+ messages in thread
From: Thanos Apollo @ 2024-07-08 16:54 UTC (permalink / raw)
  To: 71991
  Cc: Thanos Apollo, Thanos Apollo, Nicolas Goaziou, Andrew Tropin,
	Katherine Cox-Buday, Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-yeetube): Update to 2.1.7.
[synopsis]: Remove deprecated invidious functionality
[description]: Rephrase & remove deprecated org-mode functionality

Change-Id: Ib5de9ca8d155740da2a5f7ecdba9b349e366def3
---
 gnu/packages/emacs-xyz.scm | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 97d13e4635..901a5f49a0 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -29263,10 +29263,10 @@ (define-public emacs-ytel-show
       (license license:gpl3+))))
 
 (define-public emacs-yeetube
-  (let ((commit "c9721a295f4fd30a44e94b3424151fa8a14d22ae")) ;version bump
+  (let ((commit "5c0a3efd2fb5cc25a6a90741ad198e31fdb15640")) ;version bump
     (package
       (name "emacs-yeetube")
-      (version "2.1.6")
+      (version "2.1.7")
       (source
        (origin
          (method git-fetch)
@@ -29275,7 +29275,7 @@ (define-public emacs-yeetube
                (commit commit)))
          (sha256
           (base32
-           "0lrcs0n30h800sm6py4av44a3fcfgasmj223mnl76q34syyrgz6k"))
+           "0a3pm8cz6yl5s2xnbnjvdwm8mf5hyman419xl4fyyfgwy6vrxp70"))
          (file-name (git-file-name name version))))
       (build-system emacs-build-system)
       (arguments
@@ -29297,13 +29297,12 @@ (define-public emacs-yeetube
       (inputs (list mpv torsocks yt-dlp))
       (propagated-inputs (list emacs-compat))
       (home-page "https://thanosapollo.org/projects/yeetube/")
-      (synopsis "Youtube and Invidious front-end for Emacs")
+      (synopsis "Youtube front-end for Emacs")
       (description
-       "This package offers an Emacs interface that allows you to search YouTube
-or an Invidious instance for a specific query.  The search results are shown
-as links in an Org mode buffer.  The videos can be opened to a user-defined
+       "This package provides the ability to scrape YouTube, with the results
+displayed in a tabulated list format.  The videos can be opened with a user-defined
 video player (by default @command{mpv}) or downloaded using @command{yt-dlp}.
-This package also includes a @code{yt-dlp} front-end.")
+This package also includes a minimal @code{yt-dlp} wrapper.")
       (license license:gpl3+))))
 
 (define-public emacs-org-web-tools
-- 
2.45.2





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

* [bug#71991] [PATCH 2/2] gnu: emacs-yeetube: Update to 2.1.7
  2024-07-08 16:54 ` [bug#71991] [PATCH 2/2] gnu: emacs-yeetube: Update to 2.1.7 Thanos Apollo
@ 2024-07-09  8:12   ` Nicolas Goaziou via Guix-patches via
  0 siblings, 0 replies; 4+ messages in thread
From: Nicolas Goaziou via Guix-patches via @ 2024-07-09  8:12 UTC (permalink / raw)
  To: Thanos Apollo
  Cc: Katherine Cox-Buday, 71991-done, Liliana Marie Prikler,
	Andrew Tropin

Hello,

Thanos Apollo <public@thanosapollo.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-yeetube): Update to 2.1.7.
> [synopsis]: Remove deprecated invidious functionality
> [description]: Rephrase & remove deprecated org-mode functionality

Applied. Thanks!

The bug numbers were slightly mixed up, but I think all bugs are
properly closed now.

Regards,
-- 
Nicolas Goaziou






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

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

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <4e16cb0ed765c0bab5ea8e504d6ddf444cec2a6a.1720457637.git.public@thanosapollo.org>
2024-07-08 16:54 ` [bug#71991] [PATCH 2/2] gnu: emacs-yeetube: Update to 2.1.7 Thanos Apollo
2024-07-09  8:12   ` Nicolas Goaziou via Guix-patches via
     [not found] <a5ea83d2ef14dacce239e98f88ec6be487b4f4ae.1720423037.git.public@thanosapollo.org>
2024-07-08  7:17 ` Thanos Apollo
2024-07-08  8:05   ` Nicolas Goaziou via Guix-patches via

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