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

kiasoc5 (2):
  gnu: zam-plugins: Update to 4.1.
  gnu: zam-plugins: Use new package style.

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


base-commit: 4ca649e978f08335fcabdcef693a7049082b5373
-- 
2.39.0





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

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

* gnu/packages/music.scm (zam-plugins): Update to 4.1.
---
 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..111a4245db 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5974,7 +5974,7 @@ (define-public x42-plugins
 (define-public zam-plugins
   (package
     (name "zam-plugins")
-    (version "3.13")
+    (version "4.1")
     (source
      (origin
        (method git-fetch)
@@ -5988,7 +5988,7 @@ (define-public zam-plugins
          (recursive? #t)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "02blg0iqich4vx5z1ahj6avkh83yqszdiq83p9jd5qwm0i4llqjq"))))
+        (base32 "0p3y3r2nrhzr0xlcy5rz4c2jsvc10l1n8cwc642r0zppwfabm9il"))))
     (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#60393] [PATCH 2/2] gnu: zam-plugins: Use new package style.
  2022-12-28 23:55 ` [bug#60393] [PATCH 1/2] gnu: zam-plugins: Update to 4.1 kiasoc5 via Guix-patches via
@ 2022-12-28 23:55   ` kiasoc5 via Guix-patches via
  0 siblings, 0 replies; 4+ messages in thread
From: kiasoc5 via Guix-patches via @ 2022-12-28 23:55 UTC (permalink / raw)
  To: 60393; +Cc: kiasoc5

* gnu/packages/music.scm (arguments): Use G-expressions. Use #$output instead
of assoc-ref.
(home-page): Use https.
---
 gnu/packages/music.scm | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 111a4245db..d411fbeb2d 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5991,16 +5991,17 @@ (define-public zam-plugins
         (base32 "0p3y3r2nrhzr0xlcy5rz4c2jsvc10l1n8cwc642r0zppwfabm9il"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f                      ;no "check" target
-       #:make-flags
-       (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
-             "HAVE_ZITA_CONVOLVER=true")
-       #:phases
-       (modify-phases %standard-phases
-         (add-before 'build 'set-CC-variable
-           (lambda _
-             (setenv "CC" "gcc") #t))
-         (delete 'configure))))
+     (list
+      #:tests? #f                      ;no "check" target
+      #:make-flags
+      #~(list (string-append "PREFIX=" #$output)
+              "HAVE_ZITA_CONVOLVER=true")
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-before 'build 'set-CC-variable
+            (lambda _
+              (setenv "CC" "gcc")))
+          (delete 'configure))))
     (inputs
      (list fftwf
            jack-1 ;for the standalone JACK application
@@ -6017,7 +6018,7 @@ (define-public zam-plugins
 includes ZaMaximX2, ZamAutoSat, ZamComp, ZamCompX2, ZamEQ2, ZamGEQ31,
 ZamHeadX2, ZamPhono, ZamGate, ZamGateX2, ZamTube, ZamDelay, ZamDynamicEQ,
 ZaMultiComp, ZaMultiCompX2 and ZamSynth.")
-    (home-page "http://www.zamaudio.com/?p=976")
+    (home-page "https://www.zamaudio.com/?p=976")
     (license license:gpl2+)))
 
 (define-public geonkick
-- 
2.39.0





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

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

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


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

> kiasoc5 (2):
>   gnu: zam-plugins: Update to 4.1.
>   gnu: zam-plugins: Use new package style.
>
>  gnu/packages/music.scm | 27 ++++++++++++++-------------
>  1 file changed, 14 insertions(+), 13 deletions(-)

Thanks, I've pushed these to master as
75749bbf7b8b70894a7844bf67bc6ec66e21142f.

I tweaked the commit message style in the second commit.

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:44 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:49 [bug#60393] [PATCH 0/2] Update zam-plugins and use new package style kiasoc5 via Guix-patches via
2022-12-28 23:55 ` [bug#60393] [PATCH 1/2] gnu: zam-plugins: Update to 4.1 kiasoc5 via Guix-patches via
2022-12-28 23:55   ` [bug#60393] [PATCH 2/2] gnu: zam-plugins: Use new package style kiasoc5 via Guix-patches via
2023-01-31 14:27 ` bug#60393: [PATCH 0/2] Update zam-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.