unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#57286] [PATCH 0/1] Add Streamripper
@ 2022-08-18 19:35 simon
  2022-08-18 19:39 ` [bug#57286] [PATCH 1/1] gnu: Add streamripper simon
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: simon @ 2022-08-18 19:35 UTC (permalink / raw)
  To: 57286; +Cc: Simon Streit

From: Simon Streit <simon@netpanic.org>

An Oldie but goldie.  This package hasn't had a new version since 2008, but
deserves to be part of Guix' package list.

Simon Streit (1):
  gnu: Add streamripper.

 gnu/packages/audio.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

--
2.37.2




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#57286] [PATCH 1/1] gnu: Add streamripper.
  2022-08-18 19:35 [bug#57286] [PATCH 0/1] Add Streamripper simon
@ 2022-08-18 19:39 ` simon
  2022-08-19  9:34 ` [bug#57286] [PATCH v2 0/1] Add Streamripper simon
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: simon @ 2022-08-18 19:39 UTC (permalink / raw)
  To: 57286; +Cc: Simon Streit

From: Simon Streit <simon@netpanic.org>

* gnu/packages/audio.scm (streamripper): New variable.
---
 gnu/packages/audio.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index aad86bac06..8ed890eaad 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -5863,3 +5863,26 @@ (define-public qpwgraph
 managed by PipeWire.")
     (home-page "https://gitlab.freedesktop.org/rncbc/qpwgraph")
     (license license:gpl2)))
+
+(define-public streamripper
+  (package
+    (name "streamripper")
+    (version "1.64.6")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://sourceforge.net/projects/streamripper"
+                           "/files/streamripper%20(current)/"
+                           version "/streamripper-" version ".tar.gz"))
+       (sha256
+        (base32 "0hnyv3206r0rfprn3k7k6a0j959kagsfyrmyjm3gsf3vkhp5zmy1"))))
+    (build-system gnu-build-system)
+    (native-inputs (list pkg-config))
+    (inputs (list faad2 glib libmad libvorbis))
+    (home-page "http://streamripper.sourceforge.net")
+    (synopsis "Record audio streams to your hard drive")
+    (description "Streamripper records shoutcast-compatible
+streams.  For shoutcast style streams it finds the “meta data” or track
+separation data, and uses that as a marker for where the track should
+be separated.")
+    (license license:gpl2+)))
-- 
2.37.2





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#57286] [PATCH v2 0/1] Add Streamripper
  2022-08-18 19:35 [bug#57286] [PATCH 0/1] Add Streamripper simon
  2022-08-18 19:39 ` [bug#57286] [PATCH 1/1] gnu: Add streamripper simon
@ 2022-08-19  9:34 ` simon
  2022-08-19  9:34 ` [bug#57286] [PATCH v2 1/1] gnu: Add streamripper simon
  2022-08-26 22:07 ` bug#57286: [PATCH 0/1] Add Streamripper Marius Bakke
  3 siblings, 0 replies; 5+ messages in thread
From: simon @ 2022-08-19  9:34 UTC (permalink / raw)
  To: 57286; +Cc: Simon Streit

From: Simon Streit <simon@netpanic.org>

Add missing copyright tag too.

Simon Streit (1):
  gnu: Add streamripper.

 gnu/packages/audio.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

--
2.37.2




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#57286] [PATCH v2 1/1] gnu: Add streamripper.
  2022-08-18 19:35 [bug#57286] [PATCH 0/1] Add Streamripper simon
  2022-08-18 19:39 ` [bug#57286] [PATCH 1/1] gnu: Add streamripper simon
  2022-08-19  9:34 ` [bug#57286] [PATCH v2 0/1] Add Streamripper simon
@ 2022-08-19  9:34 ` simon
  2022-08-26 22:07 ` bug#57286: [PATCH 0/1] Add Streamripper Marius Bakke
  3 siblings, 0 replies; 5+ messages in thread
From: simon @ 2022-08-19  9:34 UTC (permalink / raw)
  To: 57286; +Cc: Simon Streit

From: Simon Streit <simon@netpanic.org>

* gnu/packages/audio.scm (streamripper): New variable.
---
 gnu/packages/audio.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index aad86bac06..e8d2ed00b3 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -38,6 +38,7 @@
 ;;; Copyright © 2021 Aleksandr Vityazev <avityazev@posteo.org>
 ;;; Copyright © 2022 Arjan Adriaanse <arjan@adriaan.se>
 ;;; Copyright © 2022 Juliana Sims <jtsims@protonmail.com>
+;;; Copyright © 2022 Simon Streit <simon@netpanic.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -5863,3 +5864,26 @@ (define-public qpwgraph
 managed by PipeWire.")
     (home-page "https://gitlab.freedesktop.org/rncbc/qpwgraph")
     (license license:gpl2)))
+
+(define-public streamripper
+  (package
+    (name "streamripper")
+    (version "1.64.6")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://sourceforge.net/projects/streamripper"
+                           "/files/streamripper%20(current)/"
+                           version "/streamripper-" version ".tar.gz"))
+       (sha256
+        (base32 "0hnyv3206r0rfprn3k7k6a0j959kagsfyrmyjm3gsf3vkhp5zmy1"))))
+    (build-system gnu-build-system)
+    (native-inputs (list pkg-config))
+    (inputs (list faad2 glib libmad libvorbis))
+    (home-page "http://streamripper.sourceforge.net")
+    (synopsis "Record audio streams to your hard drive")
+    (description "Streamripper records shoutcast-compatible
+streams.  For shoutcast style streams it finds the “meta data” or track
+separation data, and uses that as a marker for where the track should
+be separated.")
+    (license license:gpl2+)))
-- 
2.37.2





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#57286: [PATCH 0/1] Add Streamripper
  2022-08-18 19:35 [bug#57286] [PATCH 0/1] Add Streamripper simon
                   ` (2 preceding siblings ...)
  2022-08-19  9:34 ` [bug#57286] [PATCH v2 1/1] gnu: Add streamripper simon
@ 2022-08-26 22:07 ` Marius Bakke
  3 siblings, 0 replies; 5+ messages in thread
From: Marius Bakke @ 2022-08-26 22:07 UTC (permalink / raw)
  To: simon, 57286-done; +Cc: Simon Streit

[-- Attachment #1: Type: text/plain, Size: 294 bytes --]

simon@netpanic.org skriver:

> From: Simon Streit <simon@netpanic.org>
>
> An Oldie but goldie.  This package hasn't had a new version since 2008, but
> deserves to be part of Guix' package list.

Applied, thanks!  I added a follow-up commit to remove the cohabitating
third-party MAD library.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-08-26 22:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-18 19:35 [bug#57286] [PATCH 0/1] Add Streamripper simon
2022-08-18 19:39 ` [bug#57286] [PATCH 1/1] gnu: Add streamripper simon
2022-08-19  9:34 ` [bug#57286] [PATCH v2 0/1] Add Streamripper simon
2022-08-19  9:34 ` [bug#57286] [PATCH v2 1/1] gnu: Add streamripper simon
2022-08-26 22:07 ` bug#57286: [PATCH 0/1] Add Streamripper Marius Bakke

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).