From unknown Sat Aug 16 22:47:44 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#48161] [PATCH] gnu: Add castget. Resent-From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 02 May 2021 15:13:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 48161 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 48161@debbugs.gnu.org Cc: Stefan =?UTF-8?Q?Reich=C3=B6r?= X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.161996836615294 (code B ref -1); Sun, 02 May 2021 15:13:01 +0000 Received: (at submit) by debbugs.gnu.org; 2 May 2021 15:12:46 +0000 Received: from localhost ([127.0.0.1]:43254 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldDm2-0003yc-54 for submit@debbugs.gnu.org; Sun, 02 May 2021 11:12:46 -0400 Received: from lists.gnu.org ([209.51.188.17]:59236) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldDlx-0003yW-Lz for submit@debbugs.gnu.org; Sun, 02 May 2021 11:12:45 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54190) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ldDlw-0004ZK-Kt for guix-patches@gnu.org; Sun, 02 May 2021 11:12:41 -0400 Received: from dd3624.kasserver.com ([85.13.130.11]:48294) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ldDlu-0003w9-Bp for guix-patches@gnu.org; Sun, 02 May 2021 11:12:40 -0400 Received: from localhost (37-186-9-252.ip.as39912.net [37.186.9.252]) by dd3624.kasserver.com (Postfix) with ESMTPA id A64AB5D4023B; Sun, 2 May 2021 17:12:34 +0200 (CEST) From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Date: Sun, 2 May 2021 17:12:27 +0200 Message-Id: <20210502151227.385012-1-stefan@xsteve.at> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.130.11; envelope-from=stefan@xsteve.at; helo=dd3624.kasserver.com X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * 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 ;;; Copyright © 2020, 2021 Tobias Geerinckx-Rice +;;; Copyright © 2021 Stefan Reichör ;;; ;;; 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 From unknown Sat Aug 16 22:47:44 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Stefan =?UTF-8?Q?Reich=C3=B6r?= Subject: bug#48161: closed (Re: bug#48161: [PATCH] gnu: Add castget.) Message-ID: References: <87im3xjo9t.fsf@gnu.org> <20210502151227.385012-1-stefan@xsteve.at> X-Gnu-PR-Message: they-closed 48161 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 48161@debbugs.gnu.org Date: Wed, 05 May 2021 13:37:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1620221822-6354-1" This is a multi-part message in MIME format... ------------=_1620221822-6354-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #48161: [PATCH] gnu: Add castget. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 48161@debbugs.gnu.org. --=20 48161: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D48161 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1620221822-6354-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 48161-done) by debbugs.gnu.org; 5 May 2021 13:36:41 +0000 Received: from localhost ([127.0.0.1]:60265 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1leHhg-0001eC-RW for submit@debbugs.gnu.org; Wed, 05 May 2021 09:36:41 -0400 Received: from eggs.gnu.org ([209.51.188.92]:49020) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1leHhe-0001e6-KM for 48161-done@debbugs.gnu.org; Wed, 05 May 2021 09:36:39 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:44421) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1leHhY-0000fS-GU; Wed, 05 May 2021 09:36:32 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=36186 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1leHhX-0003sV-Nt; Wed, 05 May 2021 09:36:32 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Stefan =?utf-8?Q?Reich=C3=B6r?= Subject: Re: bug#48161: [PATCH] gnu: Add castget. References: <20210502151227.385012-1-stefan@xsteve.at> Date: Wed, 05 May 2021 15:36:30 +0200 In-Reply-To: <20210502151227.385012-1-stefan@xsteve.at> ("Stefan =?utf-8?Q?Reich=C3=B6r=22's?= message of "Sun, 2 May 2021 17:12:27 +0200") Message-ID: <87im3xjo9t.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 48161-done Cc: 48161-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Stefan, Stefan Reich=C3=B6r 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 =E2=80=9Cor any later version=E2=80=9D. Thanks, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: 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"))) --=-=-=-- ------------=_1620221822-6354-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 2 May 2021 15:12:46 +0000 Received: from localhost ([127.0.0.1]:43254 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldDm2-0003yc-54 for submit@debbugs.gnu.org; Sun, 02 May 2021 11:12:46 -0400 Received: from lists.gnu.org ([209.51.188.17]:59236) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldDlx-0003yW-Lz for submit@debbugs.gnu.org; Sun, 02 May 2021 11:12:45 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54190) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ldDlw-0004ZK-Kt for guix-patches@gnu.org; Sun, 02 May 2021 11:12:41 -0400 Received: from dd3624.kasserver.com ([85.13.130.11]:48294) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ldDlu-0003w9-Bp for guix-patches@gnu.org; Sun, 02 May 2021 11:12:40 -0400 Received: from localhost (37-186-9-252.ip.as39912.net [37.186.9.252]) by dd3624.kasserver.com (Postfix) with ESMTPA id A64AB5D4023B; Sun, 2 May 2021 17:12:34 +0200 (CEST) From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= To: guix-patches@gnu.org Subject: [PATCH] gnu: Add castget. Date: Sun, 2 May 2021 17:12:27 +0200 Message-Id: <20210502151227.385012-1-stefan@xsteve.at> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.130.11; envelope-from=stefan@xsteve.at; helo=dd3624.kasserver.com X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: =?UTF-8?q?Stefan=20Reich=C3=B6r?= X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * 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 ;;; Copyright © 2020, 2021 Tobias Geerinckx-Rice +;;; Copyright © 2021 Stefan Reichör ;;; ;;; 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 ------------=_1620221822-6354-1--