unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Alexandros Theodotou <alex@zrythm.org>
To: 42273@debbugs.gnu.org
Subject: [bug#42273] [PATCH 1/2] gnu: dragonfly-reverb: Update to 3.0.0.
Date: Wed, 08 Jul 2020 21:10:57 +0100	[thread overview]
Message-ID: <a95abe712a4c01228aad4b1e8190ed30a9ccaf21.camel@zrythm.org> (raw)


[-- Attachment #1.1: Type: text/plain, Size: 130 bytes --]

Hi,

This change updates dragonfly-reverb and uses regex to install the
binaries (there are now 4 binaries).

Thanks,
Alex

[-- Attachment #1.2: 0002-gnu-dragonfly-reverb-Use-regex-to-install-bin.patch --]
[-- Type: text/x-patch, Size: 1475 bytes --]

From 9dd2e2ec819cf2ca6b5dbb10b312214a5001a44c Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Wed, 8 Jul 2020 21:06:09 +0100
Subject: [PATCH 2/2] gnu: dragonfly-reverb: Use regex to install bin.

* gnu/packages/music.scm (dragonfly-reverb)[arguments]: Use regex to
  install the binaries.
---
 gnu/packages/music.scm | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index efb0070862..6dc1229a54 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5374,8 +5374,15 @@ plugin support, JACK support and chord assistance.")
                                     (string-append lv2 "/" (basename file))))
                 (find-files "bin" "\\.lv2$" #:directories? #t))
                ;; Install executables.
-               (install-file "bin/DragonflyRoomReverb" bin)
-               (install-file "bin/DragonflyHallReverb" bin)
+               (for-each
+                 (lambda (file)
+                   (install-file file bin))
+                 (find-files "bin"
+                             (lambda (name stat)
+                               (and
+                                 (equal? (dirname name) "bin")
+                                 (not (string-suffix? ".so" name))
+                                 (not (string-suffix? ".lv2" name))))))
                #t))))))
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-- 
2.27.0


[-- Attachment #1.3: 0001-gnu-dragonfly-reverb-Update-to-3.0.0.patch --]
[-- Type: text/x-patch, Size: 1214 bytes --]

From 35f558cc8f9ef4e9d9969d0574f3d2a6c20baf53 Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Wed, 8 Jul 2020 20:48:57 +0100
Subject: [PATCH 1/2] gnu: dragonfly-reverb: Update to 3.0.0.

* gnu/packages/music.scm (dragonfly-reverb): Update to 3.0.0.
---
 gnu/packages/music.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 6042015dda..efb0070862 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5342,7 +5342,7 @@ plugin support, JACK support and chord assistance.")
 (define-public dragonfly-reverb
   (package
     (name "dragonfly-reverb")
-    (version "2.0.0")
+    (version "3.0.0")
     (source
      (origin
        (method git-fetch)
@@ -5354,7 +5354,7 @@ plugin support, JACK support and chord assistance.")
          (recursive? #t)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1qrbv4kk5v6ynx424h1i54qj0w8v6vpw81b759jawxvzzprpgq72"))))
+        (base32 "1z2x33lzpd26dv1p29ca7vy8mjfzkfpin35iq46spwd9k3sqn1ja"))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f                      ; no check target
-- 
2.27.0


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

             reply	other threads:[~2020-07-08 20:12 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-08 20:10 Alexandros Theodotou [this message]
2020-07-12 18:35 ` bug#42273: [PATCH 1/2] gnu: dragonfly-reverb: Update to 3.0.0 Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a95abe712a4c01228aad4b1e8190ed30a9ccaf21.camel@zrythm.org \
    --to=alex@zrythm.org \
    --cc=42273@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).