GNU bug report logs - #60390
[PATCH 0/2] Update dpf-plugins and use new package style.

Previous Next

Package: guix-patches;

Reported by: kiasoc5 <kiasoc5 <at> disroot.org>

Date: Wed, 28 Dec 2022 23:20:02 UTC

Severity: normal

Tags: patch

To reply to this bug, email your comments to 60390 AT debbugs.gnu.org.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#60390; Package guix-patches. (Wed, 28 Dec 2022 23:20:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to kiasoc5 <kiasoc5 <at> disroot.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 28 Dec 2022 23:20:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: kiasoc5 <kiasoc5 <at> disroot.org>
To: guix-patches <at> gnu.org
Cc: kiasoc5 <kiasoc5 <at> disroot.org>
Subject: [PATCH 0/2] Update dpf-plugins and use new package style.
Date: Wed, 28 Dec 2022 18:18:48 -0500
kiasoc5 (2):
  gnu: dpf-plugins: Update to 1.6.
  gnu: dpf-plugins: Use new package style.

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


base-commit: 4ca649e978f08335fcabdcef693a7049082b5373
-- 
2.39.0





Information forwarded to guix-patches <at> gnu.org:
bug#60390; Package guix-patches. (Wed, 28 Dec 2022 23:22:01 GMT) Full text and rfc822 format available.

Message #8 received at 60390 <at> debbugs.gnu.org (full text, mbox):

From: kiasoc5 <kiasoc5 <at> disroot.org>
To: 60390 <at> debbugs.gnu.org
Cc: kiasoc5 <kiasoc5 <at> disroot.org>
Subject: [PATCH 1/2] gnu: dpf-plugins: Update to 1.6.
Date: Wed, 28 Dec 2022 18:21:32 -0500
* gnu/packages/music.scm (dpf-plugins): Update to 1.6.
---
 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..09c4bf6afd 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -6105,7 +6105,7 @@ (define-public mamba
 (define-public dpf-plugins
   (package
     (name "dpf-plugins")
-    (version "1.4")
+    (version "1.6")
     (source
      (origin
        (method git-fetch)
@@ -6115,7 +6115,7 @@ (define-public dpf-plugins
          (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0y7qvpfm34g6f7d786c6c9043dlbg5c4h71l2s24dsc9m8i7x2ww"))))
+        (base32 "017d4cw3kkkxdpry4ya1c6kv8bsfiraij9dgqqcj07hb9dy0xnxi"))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f                      ; no "check" target
-- 
2.39.0





Information forwarded to guix-patches <at> gnu.org:
bug#60390; Package guix-patches. (Wed, 28 Dec 2022 23:22:02 GMT) Full text and rfc822 format available.

Message #11 received at 60390 <at> debbugs.gnu.org (full text, mbox):

From: kiasoc5 <kiasoc5 <at> disroot.org>
To: 60390 <at> debbugs.gnu.org
Cc: kiasoc5 <kiasoc5 <at> disroot.org>
Subject: [PATCH 2/2] gnu: dpf-plugins: Use new package style.
Date: Wed, 28 Dec 2022 18:21:34 -0500
* gnu/packages/music (dpf-plugins)[arguments]: Use G-expressions. Use #$output
instead of assoc-ref.
---
 gnu/packages/music.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 09c4bf6afd..50dbb744e6 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -6118,13 +6118,13 @@ (define-public dpf-plugins
         (base32 "017d4cw3kkkxdpry4ya1c6kv8bsfiraij9dgqqcj07hb9dy0xnxi"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f                      ; no "check" target
-       #:make-flags
-       (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
-             (string-append "CC=" ,(cc-for-target)))
-       #:phases
-       (modify-phases %standard-phases
-         (delete 'configure))))
+     (list #:tests? #f                      ; no "check" target
+           #:make-flags
+           #~(list (string-append "PREFIX=" #$output)
+                   (string-append "CC=" #$(cc-for-target)))
+           #:phases
+           #~(modify-phases %standard-phases
+               (delete 'configure))))
     (inputs
      (list cairo
            liblo ; for dssi plugins
-- 
2.39.0





This bug report was last modified 1 year and 113 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.