GNU bug report logs - #48161
[PATCH] gnu: Add castget.

Previous Next

Package: guix-patches;

Reported by: Stefan Reichör <stefan <at> xsteve.at>

Date: Sun, 2 May 2021 15:13:01 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

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 48161 in the body.
You can then email your comments to 48161 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#48161; Package guix-patches. (Sun, 02 May 2021 15:13:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Stefan Reichör <stefan <at> xsteve.at>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 02 May 2021 15:13:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Stefan Reichör <stefan <at> xsteve.at>
To: guix-patches <at> gnu.org
Cc: Stefan Reichör <stefan <at> xsteve.at>
Subject: [PATCH] gnu: Add castget.
Date: Sun,  2 May 2021 17:12:27 +0200
* gnu/packages/gpodder.scm (castget): New variable.
---
 gnu/packages/gpodder.scm | 43 +++++++++++++++++++++++++++++++++++++++-
 1 file changed, 42 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gpodder.scm b/gnu/packages/gpodder.scm
index f185f2e546..a22a2b41cd 100644
--- a/gnu/packages/gpodder.scm
+++ b/gnu/packages/gpodder.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2019, 2020, 2021 Pierre Langlois <pierre.langlois <at> gmx.com>
 ;;; Copyright © 2020, 2021 Tobias Geerinckx-Rice <me <at> tobias.gr>
+;;; Copyright © 2021 Stefan Reichör <stefan <at> xsteve.at>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -21,20 +22,27 @@
   #:use-module (guix download)
   #:use-module (guix git-download)
   #:use-module (guix packages)
+  #:use-module (guix utils)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix build-system cmake)
+  #:use-module (guix build-system gnu)
   #:use-module (guix build-system python)
   #:use-module (gnu packages)
+  #:use-module (gnu packages autotools)
   #:use-module (gnu packages base)
   #:use-module (gnu packages check)
+  #:use-module (gnu packages curl)
   #:use-module (gnu packages freedesktop)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gtk)
+  #:use-module (gnu packages groff)
+  #:use-module (gnu packages mp3)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python-web)
   #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages qt)
-  #:use-module (gnu packages video))
+  #:use-module (gnu packages video)
+  #:use-module (gnu packages xml))
 
 (define-public gpodder
   (package
@@ -203,3 +211,36 @@ downloading episode status changes.")
 provide an easy and reliable way of parsing RSS and Atom-based podcast feeds
 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
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("libtool" ,libtool)
+       ("pkg-config" ,pkg-config)
+       ("ronn-ng" ,ronn-ng)))
+    (inputs `(("curl" ,curl)
+              ("glib" ,glib)
+              ("id3lib" ,id3lib)
+              ("libxml2" ,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:gpl2)
+    (home-page "https://castget.johndal.com")))
-- 
2.25.1





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Wed, 05 May 2021 13:37:02 GMT) Full text and rfc822 format available.

Notification sent to Stefan Reichör <stefan <at> xsteve.at>:
bug acknowledged by developer. (Wed, 05 May 2021 13:37:02 GMT) Full text and rfc822 format available.

Message #10 received at 48161-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Stefan Reichör <stefan <at> xsteve.at>
Cc: 48161-done <at> debbugs.gnu.org
Subject: Re: bug#48161: [PATCH] gnu: Add castget.
Date: Wed, 05 May 2021 15:36:30 +0200
[Message part 1 (text/plain, inline)]
Hi Stefan,

Stefan Reichör <stefan <at> xsteve.at> skribis:

> * gnu/packages/gpodder.scm (castget): New variable.

Applied with the change below: according to source file headers, this code
is under LGPL 2.1 “or any later version”.

Thanks,
Ludo’.

[Message part 2 (text/x-patch, inline)]
diff --git a/gnu/packages/gpodder.scm b/gnu/packages/gpodder.scm
index a22a2b41cd..677ec3f33e 100644
--- a/gnu/packages/gpodder.scm
+++ b/gnu/packages/gpodder.scm
@@ -242,5 +242,5 @@ in Python.")
      "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:gpl2)
+    (license license:lgpl2.1+)
     (home-page "https://castget.johndal.com")))

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 03 Jun 2021 11:24:09 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 300 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.