GNU bug report logs - #72428
[PATCH 00/10]

Previous Next

Package: guix-patches;

Reported by: Nikita Domnitskii <nikita <at> domnitskii.me>

Date: Fri, 2 Aug 2024 21:15:02 UTC

Severity: normal

Tags: patch

Done: Nikita Domnitskii <nikita <at> domnitskii.me>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 72428 in the body.
You can then email your comments to 72428 AT debbugs.gnu.org in the normal way.

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#72428; Package guix-patches. (Fri, 02 Aug 2024 21:15:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Nikita Domnitskii <nikita <at> domnitskii.me>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 02 Aug 2024 21:15:02 GMT) Full text and rfc822 format available.

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

From: Nikita Domnitskii <nikita <at> domnitskii.me>
To: guix-patches <at> gnu.org
Subject: [PATCH 00/10] 
Date: Sat, 03 Aug 2024 03:14:02 +0600
Nikita Domnitskii (10):
  gnu: calf: Remove native-search-paths
  gnu: guitarix: Remove native-search-paths
  gnu: ir: Remove native-search-paths
  gnu: lv2-mda-piano: Remove native-search-paths
  gnu: rubberband: Remove LV2_PATH search-path-specification
  gnu: mda-lv2: Remove native-search-paths
  gnu: distrho-ports: Remove LV2_PATH search-path-specification
  gnu: lv2: Add native-search-paths
  gnu: rubberband: Remove native-search-paths
  gnu: ladspa: Add native-search-paths

 gnu/packages/audio.scm | 35 ++++++++---------------------------
 gnu/packages/music.scm |  4 +---
 2 files changed, 9 insertions(+), 30 deletions(-)

-- 
Best Regards,
Nikita Domnitskii




Information forwarded to guix-patches <at> gnu.org:
bug#72428; Package guix-patches. (Fri, 02 Aug 2024 21:16:02 GMT) Full text and rfc822 format available.

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

From: Nikita Domnitskii <nikita <at> domnitskii.me>
To: guix-patches <at> gnu.org
Subject: [PATCH 01/10] gnu: calf: Remove native-search-paths
Date: Sat, 03 Aug 2024 03:14:48 +0600
---
 gnu/packages/audio.scm | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index b728220e1f..3859a4a015 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -1343,10 +1343,6 @@ (define-public calf
            fftw))
     (native-inputs
      (list pkg-config))
-    (native-search-paths
-     (list (search-path-specification
-            (variable "LV2_PATH")
-            (files '("lib/lv2")))))
     (home-page "http://calf.sourceforge.net/")
     (synopsis "Audio plug-in pack for LV2 and JACK environments")
     (description


-- 
Best Regards,
Nikita Domnitskii




Information forwarded to guix-patches <at> gnu.org:
bug#72428; Package guix-patches. (Fri, 02 Aug 2024 21:16:02 GMT) Full text and rfc822 format available.

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

From: Nikita Domnitskii <nikita <at> domnitskii.me>
To: guix-patches <at> gnu.org
Subject: [PATCH 02/10] gnu: guitarix: Remove native-search-paths
Date: Sat, 03 Aug 2024 03:15:09 +0600
---
 gnu/packages/audio.scm | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 3859a4a015..50d3cdca61 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -2448,10 +2448,6 @@ (define-public guitarix
            gettext-minimal
            pkg-config
            sassc))
-    (native-search-paths
-     (list (search-path-specification
-            (variable "LV2_PATH")
-            (files '("lib/lv2")))))
     (home-page "https://guitarix.org/")
     (synopsis "Virtual guitar amplifier")
     (description "Guitarix is a virtual guitar amplifier running JACK.


-- 
Best Regards,
Nikita Domnitskii




Information forwarded to guix-patches <at> gnu.org:
bug#72428; Package guix-patches. (Fri, 02 Aug 2024 21:16:03 GMT) Full text and rfc822 format available.

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

From: Nikita Domnitskii <nikita <at> domnitskii.me>
To: guix-patches <at> gnu.org
Subject: [PATCH 03/10] gnu: ir: Remove native-search-paths
Date: Sat, 03 Aug 2024 03:15:25 +0600
---
 gnu/packages/audio.scm | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 50d3cdca61..7111264ae0 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -2555,10 +2555,6 @@ (define-public ir
            zita-convolver))
     (native-inputs
      (list pkg-config))
-    (native-search-paths
-     (list (search-path-specification
-            (variable "LV2_PATH")
-            (files '("lib/lv2")))))
     (home-page "https://tomszilagyi.github.io/plugins/ir.lv2")
     (synopsis "LV2 convolution reverb")
     (description


-- 
Best Regards,
Nikita Domnitskii




Information forwarded to guix-patches <at> gnu.org:
bug#72428; Package guix-patches. (Fri, 02 Aug 2024 21:17:02 GMT) Full text and rfc822 format available.

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

From: Nikita Domnitskii <nikita <at> domnitskii.me>
To: guix-patches <at> gnu.org
Subject: [PATCH 04/10] gnu: lv2-mda-piano: Remove native-search-paths
Date: Sat, 03 Aug 2024 03:15:42 +0600
---
 gnu/packages/audio.scm | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 7111264ae0..ebfe9dadab 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -3215,10 +3215,6 @@ (define-public lv2-mda-piano
      (list lv2 lvtk))
     (native-inputs
      (list pkg-config ttl2c))
-    (native-search-paths
-     (list (search-path-specification
-            (variable "LV2_PATH")
-            (files '("lib/lv2")))))
     (home-page "https://elephly.net/lv2/mdapiano.html")
     (synopsis "LV2 port of the mda Piano plugin")
     (description "An LV2 port of the mda Piano VSTi.")


-- 
Best Regards,
Nikita Domnitskii




Information forwarded to guix-patches <at> gnu.org:
bug#72428; Package guix-patches. (Fri, 02 Aug 2024 21:17:02 GMT) Full text and rfc822 format available.

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

From: Nikita Domnitskii <nikita <at> domnitskii.me>
To: guix-patches <at> gnu.org
Subject: [PATCH 05/10] gnu: rubberband: Remove LV2_PATH
 search-path-specification
Date: Sat, 03 Aug 2024 03:15:56 +0600
---
 gnu/packages/audio.scm | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index ebfe9dadab..07f1f8aded 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -3722,9 +3722,6 @@ (define-public rubberband
      (list pkg-config))
     (native-search-paths
      (list (search-path-specification
-            (variable "LV2_PATH")
-            (files '("lib/lv2")))
-           (search-path-specification
             (variable "LADSPA_PATH")
             (files '("lib/ladspa")))))
     (home-page "https://breakfastquay.com/rubberband/")


-- 
Best Regards,
Nikita Domnitskii




Information forwarded to guix-patches <at> gnu.org:
bug#72428; Package guix-patches. (Fri, 02 Aug 2024 21:17:02 GMT) Full text and rfc822 format available.

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

From: Nikita Domnitskii <nikita <at> domnitskii.me>
To: guix-patches <at> gnu.org
Subject: [PATCH 06/10] gnu: mda-lv2: Remove native-search-paths
Date: Sat, 03 Aug 2024 03:16:11 +0600
---
 gnu/packages/audio.scm | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 07f1f8aded..737bdc4958 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -6355,10 +6355,6 @@ (define-public mda-lv2
      (list lv2))
     (native-inputs
      (list pkg-config))
-    (native-search-paths
-     (list (search-path-specification
-            (variable "LV2_PATH")
-            (files '("lib/lv2")))))
     (home-page "https://drobilla.net/software/mda-lv2.html")
     (synopsis "Audio plug-in pack for LV2")
     (description


-- 
Best Regards,
Nikita Domnitskii




Information forwarded to guix-patches <at> gnu.org:
bug#72428; Package guix-patches. (Fri, 02 Aug 2024 21:17:03 GMT) Full text and rfc822 format available.

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

From: Nikita Domnitskii <nikita <at> domnitskii.me>
To: guix-patches <at> gnu.org
Subject: [PATCH 07/10] gnu: distrho-ports: Remove LV2_PATH
 search-path-specification
Date: Sat, 03 Aug 2024 03:16:28 +0600
---
 gnu/packages/music.scm | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 100a41f87b..df7191d74f 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -57,6 +57,7 @@
 ;;; Copyright © 2023 Zheng Junjie <873216071 <at> qq.com>
 ;;; Copyright © 2024 Parnikkapore <poomklao <at> yahoo.com>
 ;;; Copyright © 2024 hapster <o.rojon <at> posteo.net>
+;;; Copyright © 2024 Nikita Domnitskii <nikita <at> domnitskii.me>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -6847,9 +6848,6 @@ (define-public distrho-ports
              mesa))
       (native-search-paths
        (list (search-path-specification
-              (variable "LV2_PATH")
-              (files '("lib/lv2")))
-             (search-path-specification
               (variable "VST2_PATH")
               (files '("lib/vst")))
              (search-path-specification


-- 
Best Regards,
Nikita Domnitskii




Information forwarded to guix-patches <at> gnu.org:
bug#72428; Package guix-patches. (Fri, 02 Aug 2024 21:18:02 GMT) Full text and rfc822 format available.

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

From: Nikita Domnitskii <nikita <at> domnitskii.me>
To: guix-patches <at> gnu.org
Subject: [PATCH 08/10] gnu: lv2: Add native-search-paths
Date: Sat, 03 Aug 2024 03:16:43 +0600
---
 gnu/packages/audio.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 737bdc4958..1e2a2408f0 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -3150,6 +3150,10 @@ (define-public lv2
      (list libsndfile))
     (native-inputs
      (list pkg-config))
+    (native-search-paths
+     (list (search-path-specification
+            (variable "LV2_PATH")
+            (files '("lib/lv2")))))
     (home-page "https://lv2plug.in/")
     (synopsis "LV2 audio plugin specification")
     (description


-- 
Best Regards,
Nikita Domnitskii




Information forwarded to guix-patches <at> gnu.org:
bug#72428; Package guix-patches. (Fri, 02 Aug 2024 21:18:02 GMT) Full text and rfc822 format available.

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

From: Nikita Domnitskii <nikita <at> domnitskii.me>
To: guix-patches <at> gnu.org
Subject: [PATCH 09/10] gnu: rubberband: Remove native-search-paths
Date: Sat, 03 Aug 2024 03:17:01 +0600
---
 gnu/packages/audio.scm | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 1e2a2408f0..c6d50d5123 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -3724,10 +3724,6 @@ (define-public rubberband
      (list fftw libsamplerate)) ;required by rubberband.pc
     (native-inputs
      (list pkg-config))
-    (native-search-paths
-     (list (search-path-specification
-            (variable "LADSPA_PATH")
-            (files '("lib/ladspa")))))
     (home-page "https://breakfastquay.com/rubberband/")
     (synopsis "Audio time-stretching and pitch-shifting library")
     (description


-- 
Best Regards,
Nikita Domnitskii




Information forwarded to guix-patches <at> gnu.org:
bug#72428; Package guix-patches. (Fri, 02 Aug 2024 21:18:03 GMT) Full text and rfc822 format available.

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

From: Nikita Domnitskii <nikita <at> domnitskii.me>
To: guix-patches <at> gnu.org
Subject: [PATCH 10/10] gnu: ladspa: Add native-search-paths
Date: Sat, 03 Aug 2024 03:17:22 +0600
---
 gnu/packages/audio.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index c6d50d5123..ea300bfa4e 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -2812,6 +2812,10 @@ (define-public ladspa
                  (("^CPP.*")           "CPP = g++\n")))
              #t))
          (delete 'build))))
+    (native-search-paths
+     (list (search-path-specification
+            (variable "LADSPA_PATH")
+            (files '("lib/ladspa")))))
     ;; Since the home page is gone, we provide a link to the archived version.
     (home-page
      "https://web.archive.org/web/20140729190945/http://www.ladspa.org/")


-- 
Best Regards,
Nikita Domnitskii




Information forwarded to guix-patches <at> gnu.org:
bug#72428; Package guix-patches. (Thu, 08 Aug 2024 09:22:01 GMT) Full text and rfc822 format available.

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

From: Vincent Legoll <vincent.legoll <at> gmail.com>
To: 72428 <at> debbugs.gnu.org
Subject: [PATCH 00/10]
Date: Thu, 8 Aug 2024 09:19:15 +0000
[Message part 1 (text/plain, inline)]
Hello,

I think this issue should get a proper title

-- 
Vincent Legoll
[Message part 2 (text/html, inline)]

Reply sent to Nikita Domnitskii <nikita <at> domnitskii.me>:
You have taken responsibility. (Fri, 16 Aug 2024 04:34:02 GMT) Full text and rfc822 format available.

Notification sent to Nikita Domnitskii <nikita <at> domnitskii.me>:
bug acknowledged by developer. (Fri, 16 Aug 2024 04:34:02 GMT) Full text and rfc822 format available.

Message #43 received at 72428-done <at> debbugs.gnu.org (full text, mbox):

From: Nikita Domnitskii <nikita <at> domnitskii.me>
To: 72428-done <at> debbugs.gnu.org
Subject: bug#26507: Close
Date: Fri, 16 Aug 2024 10:32:31 +0600
Superceded by 72648.

-- 
Best Regards,
Nikita Domnitskii




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 13 Sep 2024 11:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 274 days ago.

Previous Next


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