From unknown Sat Jun 14 03:51:37 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#30330 <30330@debbugs.gnu.org> To: bug#30330 <30330@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add curseradio. Reply-To: bug#30330 <30330@debbugs.gnu.org> Date: Sat, 14 Jun 2025 10:51:37 +0000 retitle 30330 [PATCH] gnu: Add curseradio. reassign 30330 guix-patches submitter 30330 Stefan Reich=C3=B6r severity 30330 normal tag 30330 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Feb 02 17:30:58 2018 Received: (at submit) by debbugs.gnu.org; 2 Feb 2018 22:30:59 +0000 Received: from localhost ([127.0.0.1]:54670 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ehjrG-0000f8-Gf for submit@debbugs.gnu.org; Fri, 02 Feb 2018 17:30:58 -0500 Received: from eggs.gnu.org ([208.118.235.92]:56775) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ehjrE-0000ew-Q6 for submit@debbugs.gnu.org; Fri, 02 Feb 2018 17:30:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ehjr8-0007ko-FK for submit@debbugs.gnu.org; Fri, 02 Feb 2018 17:30:51 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:38029) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ehjr8-0007kh-BW for submit@debbugs.gnu.org; Fri, 02 Feb 2018 17:30:50 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47733) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ehjr7-0006Ks-4W for guix-patches@gnu.org; Fri, 02 Feb 2018 17:30:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ehjr4-0007iE-0n for guix-patches@gnu.org; Fri, 02 Feb 2018 17:30:49 -0500 Received: from dd5424.kasserver.com ([85.13.138.252]:53788) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ehjr3-0007h2-Oy for guix-patches@gnu.org; Fri, 02 Feb 2018 17:30:45 -0500 Received: from localhost (unknown [151.236.13.81]) by dd5424.kasserver.com (Postfix) with ESMTPA id 91D32B58050B; Fri, 2 Feb 2018 23:30:17 +0100 (CET) Subject: [PATCH] gnu: Add curseradio. From: Stefan =?utf-8?q?Reich=C3=B6r?= To: guix-patches@gnu.org Date: Fri, 02 Feb 2018 23:30:16 +0100 Message-ID: <151761061691.29518.11001816987162875591.stgit@sandburg> User-Agent: StGit/unknown-version MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit 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: -5.0 (-----) * gnu/packages/music.scm (curseradio): New variable. --- gnu/packages/music.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 2e8bc17..33795e5 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -2317,6 +2317,33 @@ analogue-like user interface.") socket or command line.") (license license:gpl3+)))) +(define-public curseradio + (let ((commit "1bd4bd0faeec675e0647bac9a100b526cba19f8d") + (revision "1")) + (package + (name "curseradio") + (version (git-version "0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chronitis/curseradio.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "11bf0jnj8h2fxhpdp498189r4s6b47vy4wripv0z4nx7lxajl88i")))) + (build-system python-build-system) + (propagated-inputs + `(("python-lxml" ,python-lxml) + ("python-requests" ,python-requests) + ("python-pyxdg" ,python-pyxdg) + ("mpv" ,mpv))) + (home-page "https://github.com/chronitis/curseradio") + (synopsis "Command line internet radio player") + (description "Curses based radio player that uses a tunein sender list from +@url{http://opml.radiotime.com}.") + (license license:expat)))) + (define-public pianobar (package (name "pianobar") From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 06 10:41:38 2018 Received: (at 30330-done) by debbugs.gnu.org; 6 Feb 2018 15:41:38 +0000 Received: from localhost ([127.0.0.1]:60462 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ej5NK-0002wa-9S for submit@debbugs.gnu.org; Tue, 06 Feb 2018 10:41:38 -0500 Received: from hera.aquilenet.fr ([185.233.100.1]:57740) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ej5NG-0002wR-GG for 30330-done@debbugs.gnu.org; Tue, 06 Feb 2018 10:41:35 -0500 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id DDAD410833; Tue, 6 Feb 2018 16:41:33 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GZy9cA5bgrxm; Tue, 6 Feb 2018 16:41:32 +0100 (CET) Received: from ribbon (unknown [193.50.110.200]) by hera.aquilenet.fr (Postfix) with ESMTPSA id C61F71007E; Tue, 6 Feb 2018 16:41:32 +0100 (CET) From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Stefan =?utf-8?Q?Reich=C3=B6r?= Subject: Re: [bug#30330] [PATCH] gnu: Add curseradio. References: <151761061691.29518.11001816987162875591.stgit@sandburg> Date: Tue, 06 Feb 2018 16:41:32 +0100 In-Reply-To: <151761061691.29518.11001816987162875591.stgit@sandburg> ("Stefan \=\?utf-8\?Q\?Reich\=C3\=B6r\=22's\?\= message of "Fri, 02 Feb 2018 23:30:16 +0100") Message-ID: <877erq5dn7.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 30330-done Cc: 30330-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: 1.0 (+) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Stefan, Stefan Reich=C3=B6r skribis: > * gnu/packages/music.scm (curseradio): New variable. Applied with the change below, thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index afce9bd69..2db8ffea3 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -2339,9 +2339,9 @@ socket or command line.") ("python-pyxdg" ,python-pyxdg) ("mpv" ,mpv))) (home-page "https://github.com/chronitis/curseradio") - (synopsis "Command line internet radio player") - (description "Curses based radio player that uses a tunein sender list from -@url{http://opml.radiotime.com}.") + (synopsis "Command-line Internet radio player") + (description "Curseradio is a Curses-based radio player that uses a +tune-in sender list from @url{http://opml.radiotime.com}.") (license license:expat)))) (define-public pianobar --=-=-=-- From unknown Sat Jun 14 03:51:37 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 07 Mar 2018 12:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator