unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#60388] [PATCH 0/2] Update lsp-plugins and use new package style.
@ 2022-12-28 23:03 kiasoc5 via Guix-patches via
  2022-12-28 23:06 ` [bug#60388] [PATCH 1/2] gnu: lsp-plugins: Update to 1.2.4 kiasoc5 via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: kiasoc5 via Guix-patches via @ 2022-12-28 23:03 UTC (permalink / raw)
  To: 60388; +Cc: kiasoc5

kiasoc5 (2):
  gnu: lsp-plugins: Update to 1.2.4.
  gnu: lsp-plugins: Use new package style.

 gnu/packages/music.scm | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)


base-commit: 7c476873e0300711bf92668cf01abd28f7295ead
-- 
2.39.0





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

* [bug#60388] [PATCH 1/2] gnu: lsp-plugins: Update to 1.2.4.
  2022-12-28 23:03 [bug#60388] [PATCH 0/2] Update lsp-plugins and use new package style kiasoc5 via Guix-patches via
@ 2022-12-28 23:06 ` kiasoc5 via Guix-patches via
  2022-12-28 23:06   ` [bug#60388] [PATCH 2/2] gnu: lsp-plugins: Use new package style kiasoc5 via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: kiasoc5 via Guix-patches via @ 2022-12-28 23:06 UTC (permalink / raw)
  To: 60388; +Cc: kiasoc5

* gnu/packages/music.scm (lsp-plugins): Update to 1.2.4.
---
 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 5be767a138..6f21a69473 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5767,7 +5767,7 @@ (define-public artyfx
 (define-public lsp-plugins
   (package
     (name "lsp-plugins")
-    (version "1.2.3")
+    (version "1.2.4")
     (source
       (origin
         (method url-fetch)
@@ -5775,7 +5775,7 @@ (define-public lsp-plugins
                             "/releases/download/" version
                             "/lsp-plugins-src-" version ".tar.gz"))
         (sha256
-         (base32 "0asgwrkyncxz5h7kjkbwm78z8l2jndxvsrgd634m5x9n37gjsgvs"))))
+         (base32 "0anbymniyfcg9kbhd7b9spl9rk9znbhvlfv2ixbxyv3l5m9xqfhr"))))
     (build-system gnu-build-system)
     (arguments
      `(#:make-flags
-- 
2.39.0





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

* [bug#60388] [PATCH 2/2] gnu: lsp-plugins: Use new package style.
  2022-12-28 23:06 ` [bug#60388] [PATCH 1/2] gnu: lsp-plugins: Update to 1.2.4 kiasoc5 via Guix-patches via
@ 2022-12-28 23:06   ` kiasoc5 via Guix-patches via
  0 siblings, 0 replies; 3+ messages in thread
From: kiasoc5 via Guix-patches via @ 2022-12-28 23:06 UTC (permalink / raw)
  To: 60388; +Cc: kiasoc5

* gnu/packages/music (lsp-plugins)[arguments]: Use G-expressions. Use #$output
instead of assoc-ref.
---
 gnu/packages/music.scm | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 6f21a69473..b9d67d52fd 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5778,23 +5778,23 @@ (define-public lsp-plugins
          (base32 "0anbymniyfcg9kbhd7b9spl9rk9znbhvlfv2ixbxyv3l5m9xqfhr"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:make-flags
-       (list
-         (string-append "CC=" ,(cc-for-target))
+     (list
+      #:make-flags
+      #~(list
+         (string-append "CC=" #$(cc-for-target))
          "BUILD_MODULES=\"lv2 ladspa jack\"" "VST_UI=0"
-         (string-append "PREFIX=" (assoc-ref %outputs "out"))
-         (string-append "ETC_PATH=" (assoc-ref %outputs "out") "/etc"))
-       #:phases
-       (modify-phases %standard-phases
-         (replace 'configure
-           (lambda* (#:key outputs #:allow-other-keys)
-             (let ((out (assoc-ref outputs "out")))
-               (invoke "make" "config" "TEST=1"
-                       (string-append "PREFIX=" out)
-                       (string-append "ETCDIR=" out "/etc")))))
-         (replace 'check
-           (lambda _
-             (invoke ".build/host/lsp-plugin-fw/lsp-plugins-test" "utest"))))))
+         (string-append "PREFIX=" #$output)
+         (string-append "ETC_PATH=" #$output "/etc"))
+      #:phases
+      #~(modify-phases %standard-phases
+          (replace 'configure
+            (lambda _
+              (invoke "make" "config" "TEST=1"
+                      (string-append "PREFIX=" #$output)
+                      (string-append "ETCDIR=" #$output "/etc"))))
+          (replace 'check
+            (lambda _
+              (invoke ".build/host/lsp-plugin-fw/lsp-plugins-test" "utest"))))))
     (inputs
      (list cairo
            freetype
-- 
2.39.0





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

end of thread, other threads:[~2022-12-28 23:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-28 23:03 [bug#60388] [PATCH 0/2] Update lsp-plugins and use new package style kiasoc5 via Guix-patches via
2022-12-28 23:06 ` [bug#60388] [PATCH 1/2] gnu: lsp-plugins: Update to 1.2.4 kiasoc5 via Guix-patches via
2022-12-28 23:06   ` [bug#60388] [PATCH 2/2] gnu: lsp-plugins: Use new package style kiasoc5 via Guix-patches via

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