all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Aleksandr Vityazev <avityazev@posteo.org>
To: 52567@debbugs.gnu.org
Subject: [bug#52567] [PATCH 2/2] gnu: supercollider: Update to 3.12.1.
Date: Fri, 17 Dec 2021 08:14:02 +0000	[thread overview]
Message-ID: <67cff69fde715fd8c3d97727184725ef27c12c77.1639728651.git.avityazev@posteo.org> (raw)
In-Reply-To: <cover.1639728651.git.avityazev@posteo.org>

* gnu/packages/audio.scm (supercollider): Update to 3.12.1.
[arguments]<#:configure-flags>: Change formatting.
[inputs]: Remove labels.
---
 gnu/packages/audio.scm | 51 +++++++++++++++++++++---------------------
 1 file changed, 26 insertions(+), 25 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 520843347a..f5fda6d4e9 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -35,6 +35,7 @@
 ;;; Copyright © 2020, 2021 Vinicius Monego <monego@posteo.net>
 ;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
 ;;; Copyright © 2021 jgart <jgart@dismail.de>
+;;; Copyright © 2021 Aleksandr Vityazev <avityazev@posteo.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2910,7 +2911,7 @@ (define-public qjackrcd
 (define-public supercollider
   (package
     (name "supercollider")
-    (version "3.11.2")
+    (version "3.12.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -2921,7 +2922,7 @@ (define-public supercollider
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1gi7nrmjmbnjndqkmhfrkk0jchrzvnhl3f6gp6n5wgdd4mxbgxgw"))
+                "0id522338a464j1slcspajwc7klypbc9qpigw5mqjhrw970wij5z"))
               (modules '((guix build utils)
                          (ice-9 ftw)))
               (snippet
@@ -2949,12 +2950,13 @@ (define-public supercollider
      '("out"   ;core language
        "ide")) ;qt ide
     (arguments
-     `(#:configure-flags '("-DSYSTEM_BOOST=on" "-DSYSTEM_YAMLCPP=on"
-                           "-DSC_QT=ON" "-DCMAKE_BUILD_TYPE=Release"
+     `(#:configure-flags '("-DSYSTEM_BOOST=ON"
+                           "-DSYSTEM_YAMLCPP=ON"
+                           "-DSC_QT=ON"
+                           "-DCMAKE_BUILD_TYPE=Release"
                            "-DFORTIFY=ON"
-                           ;"-DLIBSCSYNTH=ON"   ; TODO: Re-enable?
-                           "-DSC_EL=off") ;scel is packaged individually as
-                                          ;emacs-scel
+                           ;; "-DLIBSCSYNTH=ON"   ; TODO: Re-enable?
+                           "-DSC_EL=OFF") ;scel is packaged individually as emacs-scel
        #:phases
        (modify-phases %standard-phases
          ;; HOME must be defined otherwise supercollider throws a "ERROR:
@@ -2992,24 +2994,23 @@ (define-public supercollider
                #t))))))
     (native-inputs
      (list ableton-link pkg-config qttools xorg-server-for-tests))
-    (inputs
-     `(("jack" ,jack-1)
-       ("libsndfile" ,libsndfile)
-       ("fftw" ,fftw)
-       ("libxt" ,libxt)
-       ("readline" ,readline)           ;readline support for sclang's CLI
-       ("alsa" ,alsa-lib)               ;for sclang's MIDI interface
-       ("eudev" ,eudev)                 ;for user interactions with devices
-       ("avahi" ,avahi)                 ;zeroconf service discovery support
-       ("icu4c" ,icu4c)
-       ("boost" ,boost)
-       ("boost-sync" ,boost-sync)
-       ("yaml-cpp" ,yaml-cpp)
-       ("qtbase" ,qtbase-5)
-       ("qtdeclarative" ,qtdeclarative)
-       ("qtsvg" ,qtsvg)
-       ("qtwebchannel" ,qtwebchannel)
-       ("qtwebsockets" ,qtwebsockets)))
+    (inputs (list jack-1
+                  libsndfile
+                  fftw
+                  libxt
+                  readline                   ;readline support for sclang's CLI
+                  alsa-lib                   ;for sclang's MIDI interface
+                  eudev                      ;for user interactions with devices
+                  avahi                      ;zeroconf service discovery support
+                  icu4c
+                  boost
+                  boost-sync
+                  yaml-cpp
+                  qtbase-5
+                  qtdeclarative
+                  qtsvg
+                  qtwebchannel
+                  qtwebsockets))
     (propagated-inputs                  ;to get native-search-path
      (list qtwebengine))
     (home-page "https://github.com/supercollider/supercollider")
-- 
2.34.0



-- 

Aleksandr Vityazev




  parent reply	other threads:[~2021-12-17  8:14 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-17  8:12 [bug#52567] [PATCH 0/2] gnu: Update supercollider to 3.12.1 Aleksandr Vityazev
2021-12-17  8:13 ` [bug#52567] [PATCH 1/2] gnu: boost-sync: Update to 1.55-1-e690de2d Aleksandr Vityazev
2021-12-17  8:14 ` Aleksandr Vityazev [this message]
2021-12-17  8:34 ` bug#52567: [PATCH 0/2] gnu: Update supercollider to 3.12.1 Nicolas Goaziou

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

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

  git send-email \
    --in-reply-to=67cff69fde715fd8c3d97727184725ef27c12c77.1639728651.git.avityazev@posteo.org \
    --to=avityazev@posteo.org \
    --cc=52567@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 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.