unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#72665] [PATCH] Add bitrot-plugins package
@ 2024-08-16 10:42 Apoorv via Guix-patches via
  2025-02-04 10:26 ` 宋文武 via Guix-patches via
  0 siblings, 1 reply; 2+ messages in thread
From: Apoorv via Guix-patches via @ 2024-08-16 10:42 UTC (permalink / raw)
  To: 72665


[-- Attachment #1.1: Type: text/plain, Size: 156 bytes --]

This is a patch to add a new package, `bitrot-plugins` to `gnu/packages/music.scm`.

-- 
 Sent with Tuta; enjoy secure & ad-free emails: 
 https://tuta.com

[-- Attachment #1.2: Type: text/html, Size: 410 bytes --]

[-- Attachment #2: 0012-Add-bitrot-plugins-package.patch --]
[-- Type: text/x-patch, Size: 1851 bytes --]

From c9ff439cb3fa982895e49f57408c1d41c5e63e86 Mon Sep 17 00:00:00 2001
From: apoorv569 <apoorvs569@gmail.com>
Date: Fri, 16 Aug 2024 15:36:25 +0530
Subject: [PATCH 12/13] Add bitrot-plugins package

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

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index d3e247bd10..5b89419b07 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -8549,6 +8549,34 @@ (define-public ykchorus
 well-known Japanese vintage analog synthesizers (You Know which).")
      (license license:gpl2))))
 
+(define-public bitrot-plugins
+  (let ((commit "06a72cd6cbe99b469e57a662cfb34e1cfe75e070")
+        (revision "0"))
+    (package
+     (name "bitrot-plugins")
+     (version (git-version "0.7" revision commit))
+     (source
+      (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/grejppi/bitrot")
+             (recursive? #t)
+             (commit commit)))
+       (sha256
+        (base32 "0gfhy6a1cc8czrw2bq922b87584fbzpvwdzrl0vv3acda03z1f85"))
+       (file-name (git-file-name name version))))
+     (build-system waf-build-system)
+     (arguments
+      `(#:configure-flags (list "--platform=linux64")
+        #:phases (modify-phases %standard-phases
+                                ;; no check target
+                                (delete 'check))))
+     (home-page "https://github.com/grejppi/bitrot")
+     (synopsis "Audio effect plugins (LV2, VST2, LADSPA) for glitch effects")
+     (description
+      "Audio effect plugins (LV2, VST2, LADSPA) for glitch effects")
+     (license license:asl2.0))))
+
 ;;;
 ;;; Avoid adding new packages to the end of this file. To reduce the chances
 ;;; of a merge conflict, place them above by existing packages with similar
-- 
2.45.2


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

* [bug#72665] [PATCH] Add bitrot-plugins package
  2024-08-16 10:42 [bug#72665] [PATCH] Add bitrot-plugins package Apoorv via Guix-patches via
@ 2025-02-04 10:26 ` 宋文武 via Guix-patches via
  0 siblings, 0 replies; 2+ messages in thread
From: 宋文武 via Guix-patches via @ 2025-02-04 10:26 UTC (permalink / raw)
  To: Apoorv; +Cc: 72665

Apoorv <apoorvs@tuta.io> writes:

> From: apoorv569 <apoorvs569@gmail.com>
> Date: Fri, 16 Aug 2024 15:36:25 +0530
> Subject: [PATCH 12/13] Add bitrot-plugins package
>
> ---
>  gnu/packages/music.scm | 28 ++++++++++++++++++++++++++++
>  1 file changed, 28 insertions(+)
>
> diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
> index d3e247bd10..5b89419b07 100644
> --- a/gnu/packages/music.scm
> +++ b/gnu/packages/music.scm
> @@ -8549,6 +8549,34 @@ (define-public ykchorus
>  well-known Japanese vintage analog synthesizers (You Know which).")
>       (license license:gpl2))))
>  
> +(define-public bitrot-plugins
> +  (let ((commit "06a72cd6cbe99b469e57a662cfb34e1cfe75e070")
> +        (revision "0"))
> +    (package
> +     (name "bitrot-plugins")
> +     (version (git-version "0.7" revision commit))
> +     (source
> +      (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://github.com/grejppi/bitrot")
> +             (recursive? #t)
> +             (commit commit)))

I see there are some packages you sent both use DPF, can we build it as
a shared library and unbundle DPF in each plugin package?

> +       (sha256
> +        (base32 "0gfhy6a1cc8czrw2bq922b87584fbzpvwdzrl0vv3acda03z1f85"))
> +       (file-name (git-file-name name version))))
> +     (build-system waf-build-system)
> +     (arguments
> +      `(#:configure-flags (list "--platform=linux64")

Is this 'platform' argument actually needed?  Not tried, but I think
it's for cross-compile, and when not specified it should default to
current one..

> +        #:phases (modify-phases %standard-phases
> +                                ;; no check target
> +                                (delete 'check))))
> +     (home-page "https://github.com/grejppi/bitrot")
> +     (synopsis "Audio effect plugins (LV2, VST2, LADSPA) for glitch effects")
> +     (description
> +      "Audio effect plugins (LV2, VST2, LADSPA) for glitch effects")

Description should be a full sentence, ends with period.




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

end of thread, other threads:[~2025-02-04 10:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-16 10:42 [bug#72665] [PATCH] Add bitrot-plugins package Apoorv via Guix-patches via
2025-02-04 10:26 ` 宋文武 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).