unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#43311] [PATCH] gnu: geonkick: Update to 2.3.7.
@ 2020-09-10 16:58 Alexandros Theodotou
  2020-09-11 11:14 ` bug#43311: " Efraim Flashner
  0 siblings, 1 reply; 2+ messages in thread
From: Alexandros Theodotou @ 2020-09-10 16:58 UTC (permalink / raw)
  To: 43311


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

Hi,

These 2 patches update Geonkick (and its dependency Redkite) to the
latest versions. I had to use gcc 9 for geonkick because it uses new
C++ features and fails to compile with default gcc.

Thanks,
Alex

[-- Attachment #1.2: 0002-gnu-geonkick-Update-to-2.3.7.patch --]
[-- Type: text/x-patch, Size: 1478 bytes --]

From 4819ef5a5201c8c18531b307def503f42170c6e7 Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Thu, 10 Sep 2020 17:50:27 +0100
Subject: [PATCH 2/2] gnu: geonkick: Update to 2.3.7.

* gnu/packages/music.scm (geonkick): Update to 2.3.7.
---
 gnu/packages/music.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 28c889019e..b1a802bd83 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5169,7 +5169,7 @@ ZaMultiComp, ZaMultiCompX2 and ZamSynth.")
 (define-public geonkick
   (package
     (name "geonkick")
-    (version "1.10.0")
+    (version "2.3.7")
     (source
      (origin
        (method git-fetch)
@@ -5179,7 +5179,7 @@ ZaMultiComp, ZaMultiCompX2 and ZamSynth.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "1a59wnm4035kjhs66hihlkiv45p3ffb2yaj1awvyyi5f0lds5zvh"))))
+         "1wdcbwiyy6i5agq5lffkyilyc8mv1cc4mp9h0nybn240vb2flqc2"))))
     (build-system cmake-build-system)
     (arguments
      `(#:tests? #f                      ;no tests included
@@ -5198,6 +5198,8 @@ ZaMultiComp, ZaMultiCompX2 and ZamSynth.")
        ("rapidjson" ,rapidjson)))
     (native-inputs
      `(("lv2" ,lv2)
+       ;; Fails with default gcc (#include <filesystem> not found).
+       ("gcc" ,gcc-9)
        ("pkg-config" ,pkg-config)
        ("sord" ,sord)))
     (synopsis "Percussion synthesizer")
-- 
2.27.0


[-- Attachment #1.3: 0001-gnu-redkite-Update-to-1.0.3.patch --]
[-- Type: text/x-patch, Size: 1189 bytes --]

From 8a3901dc5b37352d589f9359e4c05c4ce11c9576 Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Thu, 10 Sep 2020 17:49:06 +0100
Subject: [PATCH 1/2] gnu: redkite: Update to 1.0.3.

* gnu/packages/audio.scm (redkite): Update to 1.0.3.
---
 gnu/packages/audio.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index eecbf5260b..f67ef2f37c 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -4479,7 +4479,7 @@ supports both of ID3v1/v2 and APEv2 tags.")
 (define-public redkite
   (package
     (name "redkite")
-    (version "0.8.1")
+    (version "1.0.3")
     (source
      (origin
        (method git-fetch)
@@ -4488,7 +4488,7 @@ supports both of ID3v1/v2 and APEv2 tags.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "17kv2jc4jvn3sdicz3sf8dnf25wbvv7ijzkr0mm0sbrrjz6vrwz0"))))
+        (base32 "1m2db7c791fi33snkjwnvlxapmf879g5r8azlkx7sr6vp2s0jq2k"))))
     (build-system cmake-build-system)
     (arguments
      `(#:tests? #f))                    ;no tests included
-- 
2.27.0


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

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

* bug#43311: [PATCH] gnu: geonkick: Update to 2.3.7.
  2020-09-10 16:58 [bug#43311] [PATCH] gnu: geonkick: Update to 2.3.7 Alexandros Theodotou
@ 2020-09-11 11:14 ` Efraim Flashner
  0 siblings, 0 replies; 2+ messages in thread
From: Efraim Flashner @ 2020-09-11 11:14 UTC (permalink / raw)
  To: Alexandros Theodotou; +Cc: 43311-done

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

Looks good. Patch pushed!


-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

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

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

end of thread, other threads:[~2020-09-11 11:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-10 16:58 [bug#43311] [PATCH] gnu: geonkick: Update to 2.3.7 Alexandros Theodotou
2020-09-11 11:14 ` bug#43311: " Efraim Flashner

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