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

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





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

* [bug#60390] [PATCH 1/2] gnu: dpf-plugins: Update to 1.6.
  2022-12-28 23:18 [bug#60390] [PATCH 0/2] Update dpf-plugins and use new package style kiasoc5 via Guix-patches via
@ 2022-12-28 23:21 ` kiasoc5 via Guix-patches via
  2022-12-28 23:21   ` [bug#60390] [PATCH 2/2] gnu: dpf-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:21 UTC (permalink / raw)
  To: 60390; +Cc: kiasoc5

* 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





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

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

* 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





^ 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:18 [bug#60390] [PATCH 0/2] Update dpf-plugins and use new package style kiasoc5 via Guix-patches via
2022-12-28 23:21 ` [bug#60390] [PATCH 1/2] gnu: dpf-plugins: Update to 1.6 kiasoc5 via Guix-patches via
2022-12-28 23:21   ` [bug#60390] [PATCH 2/2] gnu: dpf-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).