all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] Add Raul.
@ 2015-06-14 16:25 Ricardo Wurmus
  2015-06-14 18:33 ` Alex Kost
  2015-06-18 21:18 ` Ludovic Courtès
  0 siblings, 2 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2015-06-14 16:25 UTC (permalink / raw)
  To: guix-devel@gnu.org

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0002-gnu-Add-Raul.patch --]
[-- Type: text/x-patch, Size: 1546 bytes --]

From 14a14d312198f4c3a0cac7c308c925b35a80c5cd Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <rekado@elephly.net>
Date: Sun, 14 Jun 2015 10:05:38 +0200
Subject: [PATCH] gnu: Add Raul.

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

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 40ae9bf..87745a6 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -1003,6 +1003,33 @@ buffers, and audio capture.")
 and ALSA.")
     (license license:gpl3+)))
 
+(define-public raul
+  (package
+    (name "raul")
+    (version "0.8.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://download.drobilla.net/raul-"
+                                  version ".tar.bz2"))
+              (sha256
+               (base32
+                "09ms40xc1x6qli6lxkwn5ibqh62nl9w7dq0b6jh1q2zvnrxwsd8b"))))
+    (build-system waf-build-system)
+    (arguments
+     `(#:python ,python-2
+       #:tests? #f)) ; no check target
+    (inputs
+     `(("glib" ,glib)
+       ("boost" ,boost)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "http://drobilla.net/software/raul/")
+    (synopsis "Real-time audio utility library")
+    (description
+     "Raul (Real-time Audio Utility Library) is a C++ utility library primarily
+aimed at audio/musical applications.")
+    (license license:gpl2+)))
+
 (define-public rubberband
   (package
     (name "rubberband")
-- 
2.2.1

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

* Re: [PATCH] Add Raul.
  2015-06-14 16:25 [PATCH] Add Raul Ricardo Wurmus
@ 2015-06-14 18:33 ` Alex Kost
  2015-06-18 13:40   ` Ricardo Wurmus
  2015-06-18 21:18 ` Ludovic Courtès
  1 sibling, 1 reply; 5+ messages in thread
From: Alex Kost @ 2015-06-14 18:33 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel@gnu.org

Ricardo Wurmus (2015-06-14 19:25 +0300) wrote:

[...]
> +    (synopsis "Real-time audio utility library")
> +    (description
> +     "Raul (Real-time Audio Utility Library) is a C++ utility library primarily
> +aimed at audio/musical applications.")

In my opinion, it's not necessary to duplicate "Real-time Audio Utility
Library" in the description as it is already specified in the synopsis
(perhaps capitalizing the words in the synopsis would be better).

-- 
Alex

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

* Re: [PATCH] Add Raul.
  2015-06-14 18:33 ` Alex Kost
@ 2015-06-18 13:40   ` Ricardo Wurmus
  2015-06-18 21:18     ` Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: Ricardo Wurmus @ 2015-06-18 13:40 UTC (permalink / raw)
  To: Alex Kost; +Cc: guix-devel@gnu.org


Alex Kost <alezost@gmail.com> writes:

> Ricardo Wurmus (2015-06-14 19:25 +0300) wrote:
>
> [...]
>> +    (synopsis "Real-time audio utility library")
>> +    (description
>> +     "Raul (Real-time Audio Utility Library) is a C++ utility library primarily
>> +aimed at audio/musical applications.")
>
> In my opinion, it's not necessary to duplicate "Real-time Audio Utility
> Library" in the description as it is already specified in the synopsis
> (perhaps capitalizing the words in the synopsis would be better).

The synopsis says *what* it is, so there’s no capitalisation.  The
description starts with the name “Raul” followed by the words that make
up the name, hence the capitals.

~~ Ricardo

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

* Re: [PATCH] Add Raul.
  2015-06-18 13:40   ` Ricardo Wurmus
@ 2015-06-18 21:18     ` Ludovic Courtès
  0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2015-06-18 21:18 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel@gnu.org, Alex Kost

Ricardo Wurmus <rekado@elephly.net> skribis:

> Alex Kost <alezost@gmail.com> writes:
>
>> Ricardo Wurmus (2015-06-14 19:25 +0300) wrote:
>>
>> [...]
>>> +    (synopsis "Real-time audio utility library")
>>> +    (description
>>> +     "Raul (Real-time Audio Utility Library) is a C++ utility library primarily
>>> +aimed at audio/musical applications.")
>>
>> In my opinion, it's not necessary to duplicate "Real-time Audio Utility
>> Library" in the description as it is already specified in the synopsis
>> (perhaps capitalizing the words in the synopsis would be better).
>
> The synopsis says *what* it is, so there’s no capitalisation.  The
> description starts with the name “Raul” followed by the words that make
> up the name, hence the capitals.

Agreed.

Ludo’.

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

* Re: [PATCH] Add Raul.
  2015-06-14 16:25 [PATCH] Add Raul Ricardo Wurmus
  2015-06-14 18:33 ` Alex Kost
@ 2015-06-18 21:18 ` Ludovic Courtès
  1 sibling, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2015-06-18 21:18 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel@gnu.org

Ricardo Wurmus <rekado@elephly.net> skribis:

> From 14a14d312198f4c3a0cac7c308c925b35a80c5cd Mon Sep 17 00:00:00 2001
> From: Ricardo Wurmus <rekado@elephly.net>
> Date: Sun, 14 Jun 2015 10:05:38 +0200
> Subject: [PATCH] gnu: Add Raul.
>
> * gnu/packages/audio.scm (raul): New variable.

OK!

Thanks,
Ludo’.

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

end of thread, other threads:[~2015-06-18 21:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-14 16:25 [PATCH] Add Raul Ricardo Wurmus
2015-06-14 18:33 ` Alex Kost
2015-06-18 13:40   ` Ricardo Wurmus
2015-06-18 21:18     ` Ludovic Courtès
2015-06-18 21:18 ` Ludovic Courtès

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.