all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#60391] [PATCH 0/2] Update x42-plugins and use new package style.
@ 2022-12-28 23:36 kiasoc5 via Guix-patches via
  2022-12-28 23:38 ` [bug#60391] [PATCH 1/2] gnu: x42-plugins: Update to 20221119 kiasoc5 via Guix-patches via
  2023-01-31 14:25 ` bug#60391: [PATCH 0/2] Update x42-plugins and use " Christopher Baines
  0 siblings, 2 replies; 4+ messages in thread
From: kiasoc5 via Guix-patches via @ 2022-12-28 23:36 UTC (permalink / raw)
  To: 60391; +Cc: kiasoc5

kiasoc5 (2):
  gnu: x42-plugins: Update to 20221119.
  gnu: x42-plugins: Use new package style.

 gnu/packages/music.scm | 28 +++++++++++++++-------------
 1 file changed, 15 insertions(+), 13 deletions(-)


base-commit: 4ca649e978f08335fcabdcef693a7049082b5373
-- 
2.39.0





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

* [bug#60391] [PATCH 1/2] gnu: x42-plugins: Update to 20221119.
  2022-12-28 23:36 [bug#60391] [PATCH 0/2] Update x42-plugins and use new package style kiasoc5 via Guix-patches via
@ 2022-12-28 23:38 ` kiasoc5 via Guix-patches via
  2022-12-28 23:38   ` [bug#60391] [PATCH 2/2] gnu: x42-plugins: Use new package style kiasoc5 via Guix-patches via
  2023-01-31 14:25 ` bug#60391: [PATCH 0/2] Update x42-plugins and use " Christopher Baines
  1 sibling, 1 reply; 4+ messages in thread
From: kiasoc5 via Guix-patches via @ 2022-12-28 23:38 UTC (permalink / raw)
  To: 60391; +Cc: kiasoc5

* gnu/packages/music.scm (x42-plugins): Update to 20221119.
---
 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..58419bc954 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5928,7 +5928,7 @@ (define-public spectacle-analyzer
 (define-public x42-plugins
   (package
     (name "x42-plugins")
-    (version "20211016")
+    (version "20221119")
     (source
      (origin
        (method url-fetch)
@@ -5936,7 +5936,7 @@ (define-public x42-plugins
         (string-append "https://gareus.org/misc/x42-plugins/x42-plugins-"
                        version ".tar.xz"))
        (sha256
-        (base32 "11bf6q42ihyk4qxwf83y0847zzyl65kwpbk3hmyz0f0ykil5fsb7"))))
+        (base32 "128h9x7yzhy6q6l0fqk2zd6l48wgs2lhf2pzbiba6h3n6l9n555b"))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f                      ; no "check" target
-- 
2.39.0





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

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

* gnu/packages/music.scm (x42-plugins)[arguments]: Use g-expressions. Remove
references to %outputs and %build-inputs.
[inputs]: Add font-dejavu.
---
 gnu/packages/music.scm | 24 +++++++++++++-----------
 1 file changed, 13 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 58419bc954..4784e8ca2e 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5939,21 +5939,23 @@ (define-public x42-plugins
         (base32 "128h9x7yzhy6q6l0fqk2zd6l48wgs2lhf2pzbiba6h3n6l9n555b"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f                      ; no "check" target
-       #:make-flags
-       (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
-             "LIBZITACONVOLVER=-lzita-convolver"
-             (string-append "FONTFILE="
-                            (assoc-ref %build-inputs "font-dejavu")
-                            "/share/fonts/truetype/DejaVuSans-Bold.ttf")
-             (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)
+              "LIBZITACONVOLVER=-lzita-convolver"
+              (string-append "FONTFILE="
+                             #$(this-package-input "font-dejavu")
+                             "/share/fonts/truetype/DejaVuSans-Bold.ttf")
+              (string-append "CC=" #$(cc-for-target)))
+      #:phases
+      #~(modify-phases %standard-phases
+        (delete 'configure))))
     (inputs
      (list cairo
            fftwf
            ftgl
+           font-dejavu
            glib
            glu
            hicolor-icon-theme
-- 
2.39.0





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

* bug#60391: [PATCH 0/2] Update x42-plugins and use new package style.
  2022-12-28 23:36 [bug#60391] [PATCH 0/2] Update x42-plugins and use new package style kiasoc5 via Guix-patches via
  2022-12-28 23:38 ` [bug#60391] [PATCH 1/2] gnu: x42-plugins: Update to 20221119 kiasoc5 via Guix-patches via
@ 2023-01-31 14:25 ` Christopher Baines
  1 sibling, 0 replies; 4+ messages in thread
From: Christopher Baines @ 2023-01-31 14:25 UTC (permalink / raw)
  To: kiasoc5; +Cc: 60391-done, guix-patches

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


kiasoc5 via Guix-patches via <guix-patches@gnu.org> writes:

> kiasoc5 (2):
>   gnu: x42-plugins: Update to 20221119.
>   gnu: x42-plugins: Use new package style.
>
>  gnu/packages/music.scm | 28 +++++++++++++++-------------
>  1 file changed, 15 insertions(+), 13 deletions(-)

Thanks, I've pushed these to master as
8781ab4057692c854c91ac71c660a229ac2d8ae5.

In the second patch, I switched this-package-input to
this-package-native-input to avoid the need to have font-dejavu as both
an input and native-input.

Thanks again,

Chris

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

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

end of thread, other threads:[~2023-01-31 14:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-28 23:36 [bug#60391] [PATCH 0/2] Update x42-plugins and use new package style kiasoc5 via Guix-patches via
2022-12-28 23:38 ` [bug#60391] [PATCH 1/2] gnu: x42-plugins: Update to 20221119 kiasoc5 via Guix-patches via
2022-12-28 23:38   ` [bug#60391] [PATCH 2/2] gnu: x42-plugins: Use new package style kiasoc5 via Guix-patches via
2023-01-31 14:25 ` bug#60391: [PATCH 0/2] Update x42-plugins and use " Christopher Baines

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.