diff options
| author | Sergey Trofimov <sarg@sarg.org.ru> | 2025-12-15 12:11:06 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2025-12-21 18:02:05 +0100 |
| commit | 724d0cc75326d6463bb02862c43edac9bcca41b9 (patch) | |
| tree | 5ae8d757883f40183cdce81496ecda84fed7f3a7 | |
| parent | b172762c2dcf2431abaa3621ba5325776558ae6f (diff) | |
gnu: emacs-yeetube: Update to 2.1.10.
* gnu/packages/emacs-xyz.scm (emacs-yeetube): Update to 2.1.10.
Change-Id: I6db1e506b050454cd9b95292c95800370ea6da03
Signed-off-by: Cayetano Santos <csantosb@inventati.org>
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 76 |
1 files changed, 38 insertions, 38 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 2f8133fd389..14ad5a6146d 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm | |||
| @@ -34145,47 +34145,47 @@ and comments.") | |||
| 34145 | (license license:gpl3+)))) | 34145 | (license license:gpl3+)))) |
| 34146 | 34146 | ||
| 34147 | (define-public emacs-yeetube | 34147 | (define-public emacs-yeetube |
| 34148 | (let ((commit "b8877e61b58dfabcc30044680d0975b3c6b12052")) ;version bump | 34148 | (package |
| 34149 | (package | 34149 | (name "emacs-yeetube") |
| 34150 | (name "emacs-yeetube") | 34150 | (version "2.1.10") |
| 34151 | (version "2.1.8") | 34151 | (source |
| 34152 | (source | 34152 | (origin |
| 34153 | (origin | 34153 | (method git-fetch) |
| 34154 | (method git-fetch) | 34154 | (uri (git-reference |
| 34155 | (uri (git-reference | 34155 | (url "https://git.thanosapollo.org/yeetube") |
| 34156 | (url "https://git.thanosapollo.org/yeetube") | 34156 | (commit version))) |
| 34157 | (commit commit))) | 34157 | (sha256 |
| 34158 | (sha256 | 34158 | (base32 |
| 34159 | (base32 | 34159 | "0krd2x0vyysqsgb7r3ca2qc7cl1s929gm52j5rihnqw0yfjpwgpv")) |
| 34160 | "1gii2y4cvw795039kdky1mdmgpfrfm4s48ld7z4gv7bvb0fs9hpq")) | 34160 | (file-name (git-file-name name version)))) |
| 34161 | (file-name (git-file-name name version)))) | 34161 | (build-system emacs-build-system) |
| 34162 | (build-system emacs-build-system) | 34162 | (arguments |
| 34163 | (arguments | 34163 | (list |
| 34164 | (list | 34164 | #:tests? #f ; no tests |
| 34165 | #:phases | 34165 | #:phases |
| 34166 | #~(modify-phases %standard-phases | 34166 | #~(modify-phases %standard-phases |
| 34167 | (add-after 'unpack 'locate-binaries | 34167 | (add-after 'unpack 'locate-binaries |
| 34168 | (lambda* (#:key inputs #:allow-other-keys) | 34168 | (lambda* (#:key inputs #:allow-other-keys) |
| 34169 | (substitute* (find-files "." "\\.el$") | 34169 | (substitute* (find-files "." "\\.el$") |
| 34170 | (("\\(executable-find \"mpv\"\\)") | 34170 | (("\\(executable-find \"mpv\"\\)") |
| 34171 | (format #f "~s" | 34171 | (format #f "~s" |
| 34172 | (search-input-file inputs "/bin/mpv"))) | 34172 | (search-input-file inputs "/bin/mpv"))) |
| 34173 | (("\\(executable-find \"torsocks\"\\)") | 34173 | (("\\(executable-find \"torsocks\"\\)") |
| 34174 | (format #f "~s" | 34174 | (format #f "~s" |
| 34175 | (search-input-file inputs "/bin/torsocks"))) | 34175 | (search-input-file inputs "/bin/torsocks"))) |
| 34176 | (("\\(executable-find \"yt-dlp\"\\)") | 34176 | (("\\(executable-find \"yt-dlp\"\\)") |
| 34177 | (format #f "~s" | 34177 | (format #f "~s" |
| 34178 | (search-input-file inputs "/bin/yt-dlp"))))))))) | 34178 | (search-input-file inputs "/bin/yt-dlp"))))))))) |
| 34179 | (inputs (list mpv torsocks yt-dlp)) | 34179 | (inputs (list mpv torsocks yt-dlp)) |
| 34180 | (propagated-inputs (list emacs-compat)) | 34180 | (propagated-inputs (list emacs-compat)) |
| 34181 | (home-page "https://thanosapollo.org/projects/yeetube/") | 34181 | (home-page "https://thanosapollo.org/projects/yeetube/") |
| 34182 | (synopsis "Youtube front-end for Emacs") | 34182 | (synopsis "Youtube front-end for Emacs") |
| 34183 | (description | 34183 | (description |
| 34184 | "This package provides the ability to scrape YouTube, with the results | 34184 | "This package provides the ability to scrape YouTube, with the results |
| 34185 | displayed in a tabulated list format. The videos can be opened with a user-defined | 34185 | displayed in a tabulated list format. The videos can be opened with a user-defined |
| 34186 | video player (by default @command{mpv}) or downloaded using @command{yt-dlp}. | 34186 | video player (by default @command{mpv}) or downloaded using @command{yt-dlp}. |
| 34187 | This package also includes a minimal @code{yt-dlp} wrapper.") | 34187 | This package also includes a minimal @code{yt-dlp} wrapper.") |
| 34188 | (license license:gpl3+)))) | 34188 | (license license:gpl3+))) |
| 34189 | 34189 | ||
| 34190 | (define-public emacs-org-web-tools | 34190 | (define-public emacs-org-web-tools |
| 34191 | (package | 34191 | (package |
