unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH]: gnu: Add patchage.
@ 2015-02-15 20:44 Ricardo Wurmus
  2015-02-15 20:48 ` Ricardo Wurmus
  2015-02-16 15:03 ` Mark H Weaver
  0 siblings, 2 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2015-02-15 20:44 UTC (permalink / raw)
  To: Guix-devel

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

From d1ee03729c640bd6727bb13f61fa2729b6eef93b Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <rekado@elephly.net>
Date: Sun, 15 Feb 2015 21:43:01 +0100
Subject: [PATCH] gnu: Add patchage.

* gnu/packages/audio.scm (patchage): 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 5b365e8..bd757cb 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -499,6 +499,40 @@ extensions into easy to use C++ classes.  It is the successor of
 lv2-c++-tools.")
     (license license:gpl3+)))
 
+(define-public patchage
+  (package
+    (name "patchage")
+    (version "1.0.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://download.drobilla.net/patchage-"
+                                  version
+                                  ".tar.bz2"))
+              (sha256
+               (base32
+                "1agdpwwi42176l4mxj0c4fsvdiv1ig56bfnnx0msckxmy57df8bb"))))
+    (build-system waf-build-system)
+    (arguments `(#:tests? #f)) ; no check target
+    (inputs
+     `(("alsa-lib" ,alsa-lib)
+       ("boost" ,boost)
+       ("jack" ,jack-1)
+       ("libuuid" ,util-linux)
+       ("ganv" ,ganv)
+       ("glib" ,glib)
+       ("glibmm" ,glibmm)
+       ("gtkmm" ,gtkmm-2)
+       ("dbus" ,dbus)
+       ("dbus-glib" ,dbus-glib)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "http://drobilla.net/software/patchage/")
+    (synopsis "Modular patch bay for audio and MIDI systems")
+    (description
+     "Patchage is a modular patch bay for audio and MIDI systems based on Jack
+and Alsa.")
+    (license license:gpl3+)))
+
 (define-public rubberband
   (package
     (name "rubberband")
-- 
2.1.0

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

* Re: [PATCH]: gnu: Add patchage.
  2015-02-15 20:44 [PATCH]: gnu: Add patchage Ricardo Wurmus
@ 2015-02-15 20:48 ` Ricardo Wurmus
  2015-02-16 14:55   ` Mark H Weaver
  2015-02-16 15:01   ` Mark H Weaver
  2015-02-16 15:03 ` Mark H Weaver
  1 sibling, 2 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2015-02-15 20:48 UTC (permalink / raw)
  To: Guix-devel

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

I forgot to send along the patch that adds "ganv", the GTK widget used
by patchage.

~~ Ricardo


[-- Attachment #2: 0001-gnu-Add-ganv.patch --]
[-- Type: text/x-patch, Size: 2013 bytes --]

From 348f70829543f13677c2b63f8e0d3bb6fc39f922 Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <rekado@elephly.net>
Date: Sun, 15 Feb 2015 21:45:54 +0100
Subject: [PATCH] gnu: Add ganv.

* gnu/packages/gtk.scm (ganv): New variable.
---
 gnu/packages/gtk.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index da39047..f1d8722 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -27,6 +27,7 @@
   #:use-module (guix download)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system python)
+  #:use-module (guix build-system waf)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages fontutils)
   #:use-module (gnu packages ghostscript)
@@ -209,6 +210,33 @@ longer provided by recent pango releases.  pangox-compat provides the
 functions which were removed.")
     (license license:lgpl2.0+)))
 
+(define-public ganv
+  (package
+    (name "ganv")
+    (version "1.4.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://download.drobilla.net/ganv-"
+                                  version
+                                  ".tar.bz2"))
+              (sha256
+               (base32
+                "0g7s5mp14qgbfjdql0k1s8464r21g47ssn5dws6jazsnw6njhl0l"))))
+    (build-system waf-build-system)
+    (arguments `(#:tests? #f)) ; no check target
+    (inputs
+     `(("gtk" ,gtk+-2)
+       ("gtkmm" ,gtkmm-2)))
+    (native-inputs
+     `(("glib" ,glib "bin")             ; for glib-genmarshal, etc.
+       ("pkg-config" ,pkg-config)))
+    (home-page "http://drobilla.net/software/ganv/")
+    (synopsis "Gtk widget for interactive graph-like environments")
+    (description
+     "Ganv is an interactive Gtk widget for interactive “boxes and lines” or
+graph-like environments (e.g. modular synths or finite state machine
+diagrams).")
+    (license license:gpl3+)))
 
 (define-public gtksourceview
   (package
-- 
2.1.0


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

* Re: [PATCH]: gnu: Add patchage.
  2015-02-15 20:48 ` Ricardo Wurmus
@ 2015-02-16 14:55   ` Mark H Weaver
  2015-02-16 15:01   ` Mark H Weaver
  1 sibling, 0 replies; 5+ messages in thread
From: Mark H Weaver @ 2015-02-16 14:55 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

Ricardo Wurmus <rekado@elephly.net> writes:

> From 348f70829543f13677c2b63f8e0d3bb6fc39f922 Mon Sep 17 00:00:00 2001
> From: Ricardo Wurmus <rekado@elephly.net>
> Date: Sun, 15 Feb 2015 21:45:54 +0100
> Subject: [PATCH] gnu: Add ganv.
>
> * gnu/packages/gtk.scm (ganv): New variable.

Looks good to me, please push!

    Thanks,
      Mark

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

* Re: [PATCH]: gnu: Add patchage.
  2015-02-15 20:48 ` Ricardo Wurmus
  2015-02-16 14:55   ` Mark H Weaver
@ 2015-02-16 15:01   ` Mark H Weaver
  1 sibling, 0 replies; 5+ messages in thread
From: Mark H Weaver @ 2015-02-16 15:01 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

Ricardo Wurmus <rekado@elephly.net> writes:

> +    (synopsis "Gtk widget for interactive graph-like environments")
> +    (description
> +     "Ganv is an interactive Gtk widget for interactive “boxes and lines” or
> +graph-like environments (e.g. modular synths or finite state machine
> +diagrams).")

Instead of "Gtk", please write "GTK+".  Also, instead of parentheses,
how about writing "... environments, e.g. modular synths ..." ?

Otherwise looks good!  Please push :)

      Mark

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

* Re: [PATCH]: gnu: Add patchage.
  2015-02-15 20:44 [PATCH]: gnu: Add patchage Ricardo Wurmus
  2015-02-15 20:48 ` Ricardo Wurmus
@ 2015-02-16 15:03 ` Mark H Weaver
  1 sibling, 0 replies; 5+ messages in thread
From: Mark H Weaver @ 2015-02-16 15:03 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

Ricardo Wurmus <rekado@elephly.net> writes:

> From d1ee03729c640bd6727bb13f61fa2729b6eef93b Mon Sep 17 00:00:00 2001
> From: Ricardo Wurmus <rekado@elephly.net>
> Date: Sun, 15 Feb 2015 21:43:01 +0100
> Subject: [PATCH] gnu: Add patchage.
>
> * gnu/packages/audio.scm (patchage): 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 5b365e8..bd757cb 100644
> --- a/gnu/packages/audio.scm
> +++ b/gnu/packages/audio.scm
> @@ -499,6 +499,40 @@ extensions into easy to use C++ classes.  It is the successor of
>  lv2-c++-tools.")
>      (license license:gpl3+)))
>  
> +(define-public patchage
> +  (package
> +    (name "patchage")
> +    (version "1.0.0")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append "http://download.drobilla.net/patchage-"
> +                                  version
> +                                  ".tar.bz2"))
> +              (sha256
> +               (base32
> +                "1agdpwwi42176l4mxj0c4fsvdiv1ig56bfnnx0msckxmy57df8bb"))))
> +    (build-system waf-build-system)
> +    (arguments `(#:tests? #f)) ; no check target
> +    (inputs
> +     `(("alsa-lib" ,alsa-lib)
> +       ("boost" ,boost)
> +       ("jack" ,jack-1)
> +       ("libuuid" ,util-linux)
> +       ("ganv" ,ganv)
> +       ("glib" ,glib)
> +       ("glibmm" ,glibmm)
> +       ("gtkmm" ,gtkmm-2)
> +       ("dbus" ,dbus)
> +       ("dbus-glib" ,dbus-glib)))
> +    (native-inputs
> +     `(("pkg-config" ,pkg-config)))
> +    (home-page "http://drobilla.net/software/patchage/")
> +    (synopsis "Modular patch bay for audio and MIDI systems")
> +    (description
> +     "Patchage is a modular patch bay for audio and MIDI systems based on Jack
> +and Alsa.")

"JACK" and "ALSA".

> +    (license license:gpl3+)))
> +

Okay to push with those spelling fixes.

     Thanks!
       Mark

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

end of thread, other threads:[~2015-02-16 15:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-15 20:44 [PATCH]: gnu: Add patchage Ricardo Wurmus
2015-02-15 20:48 ` Ricardo Wurmus
2015-02-16 14:55   ` Mark H Weaver
2015-02-16 15:01   ` Mark H Weaver
2015-02-16 15:03 ` Mark H Weaver

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).