* [bug#52942] [PATCH 0/2] gnu: Add odio-sacd.
@ 2022-01-01 23:14 Arjan Adriaanse
2022-01-02 1:36 ` [bug#52942] [PATCH 1/2] gnu: Add libodiosacd Arjan Adriaanse
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Arjan Adriaanse @ 2022-01-01 23:14 UTC (permalink / raw)
To: 52942; +Cc: Arjan Adriaanse
This patch series adds te odio-sacd package. The first patch adds the library
it depends on.
Arjan Adriaanse (2):
gnu: Add libodiosacd.
gnu: Add odio-sacd.
gnu/packages/audio.scm | 59 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 59 insertions(+)
base-commit: 637dec9d45db4df2a3e6aa565fa2c5cf6bb77768
--
2.34.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#52942] [PATCH 1/2] gnu: Add libodiosacd.
2022-01-01 23:14 [bug#52942] [PATCH 0/2] gnu: Add odio-sacd Arjan Adriaanse
@ 2022-01-02 1:36 ` Arjan Adriaanse
2022-01-02 1:36 ` [bug#52942] [PATCH 2/2] gnu: Add odio-sacd Arjan Adriaanse
2022-01-02 5:39 ` bug#52942: [PATCH 0/2] " Leo Famulari
2 siblings, 0 replies; 4+ messages in thread
From: Arjan Adriaanse @ 2022-01-02 1:36 UTC (permalink / raw)
To: 52942; +Cc: Arjan Adriaanse
* gnu/packages/audio.scm (libodiosacd): New variable.
---
gnu/packages/audio.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index e10ee31b12..309d0024e6 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -36,6 +36,7 @@
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
;;; Copyright © 2021 jgart <jgart@dismail.de>
;;; Copyright © 2021 Aleksandr Vityazev <avityazev@posteo.org>
+;;; Copyright © 2022 Arjan Adriaanse <arjan@adriaan.se>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -5560,3 +5561,36 @@ (define-public mda-lv2
"MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few
instrument plugins.")
(license license:gpl3+)))
+
+(define-public libodiosacd
+ (package
+ (name "libodiosacd")
+ (version "21.8.30")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tari01/libodiosacd")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0iamf7wksbql0qfigdv5ahaax53ms2yligdav8dw6x0ay88x4lhi"))
+ (modules '((guix build utils)))
+ (snippet
+ '(substitute* "Makefile"
+ (("\\$\\(DESTDIR\\)/usr") "\\$(DESTDIR)")))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; no check target
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure)) ; no configure script
+ #:make-flags
+ (list (string-append "DESTDIR=" %output))))
+ (synopsis "Odio SACD (library)")
+ (description
+ "The Odio SACD shared library is a decoding engine which takes a Super
+Audio CD source and extracts a 24-bit high resolution wave file. It handles
+both DST and DSD streams.")
+ (home-page "https://tari.in/www/software/libodiosacd/")
+ (license license:gpl3)))
--
2.34.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#52942] [PATCH 2/2] gnu: Add odio-sacd.
2022-01-01 23:14 [bug#52942] [PATCH 0/2] gnu: Add odio-sacd Arjan Adriaanse
2022-01-02 1:36 ` [bug#52942] [PATCH 1/2] gnu: Add libodiosacd Arjan Adriaanse
@ 2022-01-02 1:36 ` Arjan Adriaanse
2022-01-02 5:39 ` bug#52942: [PATCH 0/2] " Leo Famulari
2 siblings, 0 replies; 4+ messages in thread
From: Arjan Adriaanse @ 2022-01-02 1:36 UTC (permalink / raw)
To: 52942; +Cc: Arjan Adriaanse
* gnu/packages/audio.scm (odio-sacd): New variable.
---
gnu/packages/audio.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 309d0024e6..ffe737c940 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -5594,3 +5594,28 @@ (define-public libodiosacd
both DST and DSD streams.")
(home-page "https://tari.in/www/software/libodiosacd/")
(license license:gpl3)))
+
+(define-public odio-sacd
+ (package
+ (name "odio-sacd")
+ (version "21.1.9")
+ (source (origin
+ (inherit (package-source libodiosacd)) ; needs same snippet
+ (uri (git-reference
+ (url "https://github.com/tari01/odio-sacd")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0314srqk0r4qv292qiaply619l2fw04nkdwvqhj3q1dqzv41g4qk"))))
+ (inputs (list libodiosacd))
+ ;; Build system and arguments for libodiosacd are identical.
+ (build-system (package-build-system libodiosacd))
+ (arguments (package-arguments libodiosacd))
+ (synopsis "Odio SACD (application)")
+ (description
+ "Odio SACD is a command-line application which takes a Super Audio CD
+source and extracts a 24-bit high resolution wave file. It handles both DST
+and DSD streams.")
+ (home-page "https://tari.in/www/software/odio-sacd/")
+ (license license:gpl3)))
--
2.34.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#52942: [PATCH 0/2] gnu: Add odio-sacd.
2022-01-01 23:14 [bug#52942] [PATCH 0/2] gnu: Add odio-sacd Arjan Adriaanse
2022-01-02 1:36 ` [bug#52942] [PATCH 1/2] gnu: Add libodiosacd Arjan Adriaanse
2022-01-02 1:36 ` [bug#52942] [PATCH 2/2] gnu: Add odio-sacd Arjan Adriaanse
@ 2022-01-02 5:39 ` Leo Famulari
2 siblings, 0 replies; 4+ messages in thread
From: Leo Famulari @ 2022-01-02 5:39 UTC (permalink / raw)
To: Arjan Adriaanse; +Cc: 52942-done
On Sun, Jan 02, 2022 at 12:14:50AM +0100, Arjan Adriaanse wrote:
> This patch series adds te odio-sacd package. The first patch adds the library
> it depends on.
>
> Arjan Adriaanse (2):
> gnu: Add libodiosacd.
> gnu: Add odio-sacd.
Thank you for these patches! I pushed as
0e4a23098ac274c79351a423410867e549729794 with the following changes:
I changed the license to gpl3+. Looking at the source file headers, I
see they all seem to say "either version 3 of the License, or (at your
option) any later version", so we pass the option on to our users as
well. For example:
https://github.com/tari01/odio-sacd/blob/master/src/main.c
I also changed "wave" to "WAV" in the descriptions, since I found the
former to be ambiguous, and I also tweaked the synopses to be less
self-referential and (hopefully!) more useful for readers.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-01-02 5:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-01 23:14 [bug#52942] [PATCH 0/2] gnu: Add odio-sacd Arjan Adriaanse
2022-01-02 1:36 ` [bug#52942] [PATCH 1/2] gnu: Add libodiosacd Arjan Adriaanse
2022-01-02 1:36 ` [bug#52942] [PATCH 2/2] gnu: Add odio-sacd Arjan Adriaanse
2022-01-02 5:39 ` bug#52942: [PATCH 0/2] " Leo Famulari
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.