mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: castget: Update to 2.0.0-0.da9727d.
* gnu/packages/gpodder.scm (castget): Update to 2.0.0-0.da9727d. [inputs]: Replace id3lib with taglib.
This commit is contained in:
parent
b0f92620d8
commit
17a672524e
1 changed files with 27 additions and 22 deletions
|
@ -2,6 +2,7 @@
|
||||||
;;; Copyright © 2019, 2020, 2021 Pierre Langlois <pierre.langlois@gmx.com>
|
;;; Copyright © 2019, 2020, 2021 Pierre Langlois <pierre.langlois@gmx.com>
|
||||||
;;; Copyright © 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
|
;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
|
||||||
|
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -213,27 +214,31 @@ (define-public python-podcastparser
|
||||||
(license license:isc)))
|
(license license:isc)))
|
||||||
|
|
||||||
(define-public castget
|
(define-public castget
|
||||||
(package
|
;; Since ronn-ng uses a newer ruby-nokogiri, the test suite would fail on a
|
||||||
(name "castget")
|
;; free call with the error: "free(): invalid pointer". Use the latest
|
||||||
(version "2.0.0")
|
;; commit, which is immune to that problem.
|
||||||
(source
|
(let ((revision "0")
|
||||||
(origin
|
(commit "da9727de1b9e4e636be21bf07c73eb41f5d8439b"))
|
||||||
(method git-fetch)
|
(package
|
||||||
(uri (git-reference
|
(name "castget")
|
||||||
(url "https://github.com/mlj/castget")
|
(version (git-version "2.0.0" revision commit))
|
||||||
(commit (string-append "rel_" (string-replace-substring
|
(source
|
||||||
version "." "_")))))
|
(origin
|
||||||
(sha256
|
(method git-fetch)
|
||||||
(base32 "1129x64rw587q3sdpa3lrgs0gni5f0siwbvmfz8ya4zkbhgi2ik7"))
|
(uri (git-reference
|
||||||
(file-name (git-file-name name version))))
|
(url "https://github.com/mlj/castget")
|
||||||
(build-system gnu-build-system)
|
(commit commit)))
|
||||||
(native-inputs
|
(sha256
|
||||||
(list autoconf automake libtool pkg-config ronn-ng))
|
(base32 "0d5ji21af5mfj1xa90v4hp104c1ipy076175kp7nzz1c4sxdadff"))
|
||||||
(inputs (list curl glib id3lib libxml2))
|
(file-name (git-file-name name version))))
|
||||||
(synopsis "Command line podcast downloader")
|
(build-system gnu-build-system)
|
||||||
(description
|
(native-inputs
|
||||||
"castget is a simple, command-line based RSS enclosure downloader. It is
|
(list autoconf automake libtool pkg-config ronn-ng))
|
||||||
|
(inputs (list curl glib taglib libxml2))
|
||||||
|
(synopsis "Command line podcast downloader")
|
||||||
|
(description
|
||||||
|
"castget is a simple, command-line based RSS enclosure downloader. It is
|
||||||
primarily intended for automatic, unattended downloading of podcasts. It uses
|
primarily intended for automatic, unattended downloading of podcasts. It uses
|
||||||
libcurl for the download process.")
|
libcurl for the download process.")
|
||||||
(license license:lgpl2.1+)
|
(license license:lgpl2.1+)
|
||||||
(home-page "https://castget.johndal.com")))
|
(home-page "https://castget.johndal.com"))))
|
||||||
|
|
Loading…
Reference in a new issue