[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
17/17: gnu: castget: Update to 2.0.0-0.da9727d.
From: |
guix-commits |
Subject: |
17/17: gnu: castget: Update to 2.0.0-0.da9727d. |
Date: |
Sun, 8 Jan 2023 01:46:28 -0500 (EST) |
apteryx pushed a commit to branch master
in repository guix.
commit 17a672524e44ec11847ec166c51731c7ada7ce99
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Jan 6 20:49:16 2023 -0500
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.
---
gnu/packages/gpodder.scm | 49 ++++++++++++++++++++++++++----------------------
1 file changed, 27 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/gpodder.scm b/gnu/packages/gpodder.scm
index 620a8ea039..474065836e 100644
--- a/gnu/packages/gpodder.scm
+++ b/gnu/packages/gpodder.scm
@@ -2,6 +2,7 @@
;;; Copyright © 2019, 2020, 2021 Pierre Langlois <pierre.langlois@gmx.com>
;;; Copyright © 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
+;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -213,27 +214,31 @@ in Python.")
(license license:isc)))
(define-public castget
- (package
- (name "castget")
- (version "2.0.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/mlj/castget")
- (commit (string-append "rel_" (string-replace-substring
- version "." "_")))))
- (sha256
- (base32 "1129x64rw587q3sdpa3lrgs0gni5f0siwbvmfz8ya4zkbhgi2ik7"))
- (file-name (git-file-name name version))))
- (build-system gnu-build-system)
- (native-inputs
- (list autoconf automake libtool pkg-config ronn-ng))
- (inputs (list curl glib id3lib libxml2))
- (synopsis "Command line podcast downloader")
- (description
- "castget is a simple, command-line based RSS enclosure downloader. It is
+ ;; Since ronn-ng uses a newer ruby-nokogiri, the test suite would fail on a
+ ;; free call with the error: "free(): invalid pointer". Use the latest
+ ;; commit, which is immune to that problem.
+ (let ((revision "0")
+ (commit "da9727de1b9e4e636be21bf07c73eb41f5d8439b"))
+ (package
+ (name "castget")
+ (version (git-version "2.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mlj/castget")
+ (commit commit)))
+ (sha256
+ (base32 "0d5ji21af5mfj1xa90v4hp104c1ipy076175kp7nzz1c4sxdadff"))
+ (file-name (git-file-name name version))))
+ (build-system gnu-build-system)
+ (native-inputs
+ (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
libcurl for the download process.")
- (license license:lgpl2.1+)
- (home-page "https://castget.johndal.com")))
+ (license license:lgpl2.1+)
+ (home-page "https://castget.johndal.com"))))
- 07/17: gnu: ruby-prawn: Update to 2.4.0., (continued)
- 07/17: gnu: ruby-prawn: Update to 2.4.0., guix-commits, 2023/01/08
- 08/17: gnu: ruby-asciidoctor-pdf: Update to 2.3.4., guix-commits, 2023/01/08
- 13/17: gnu: ruby-nokogiri: Make it reproducible., guix-commits, 2023/01/08
- 03/17: gnu: Add ruby-prawn-dev., guix-commits, 2023/01/08
- 05/17: gnu: Add ruby-matrix., guix-commits, 2023/01/08
- 01/17: gnu: ruby-asciidoctor-multipage: Update to 0.0.16., guix-commits, 2023/01/08
- 09/17: gnu: ruby-prawn-icon: Update to 3.1.0., guix-commits, 2023/01/08
- 10/17: gnu: ruby-prawn-svg: Update to 0.32.0., guix-commits, 2023/01/08
- 11/17: gnu: ruby-ruby-prof: Update to 1.4.5., guix-commits, 2023/01/08
- 15/17: gnu: ruby-html-proofer: Update to 5.0.3., guix-commits, 2023/01/08
- 17/17: gnu: castget: Update to 2.0.0-0.da9727d.,
guix-commits <=
- 16/17: gnu: ruby-sanitize: Update to 6.0.0., guix-commits, 2023/01/08
- 12/17: gnu: ruby-nokogiri: Update to 1.13.10., guix-commits, 2023/01/08
- 14/17: gnu: ruby-nokogumbo: Deprecate in favor of ruby-nokogiri., guix-commits, 2023/01/08