all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#66888] [PATCH 1/2] gnu: babeltrace: Do not install bindings as egg.
@ 2023-11-01 20:30 odion
  2023-11-01 20:35 ` [bug#66888] [PATCH 2/2] gnu: Add babeltrace/dev odion
  2023-11-22 15:05 ` bug#66888: [PATCH 1/2] gnu: babeltrace: Do not install bindings as egg Ludovic Courtès
  0 siblings, 2 replies; 3+ messages in thread
From: odion @ 2023-11-01 20:30 UTC (permalink / raw)
  To: 66888; +Cc: Olivier Dion

From: Olivier Dion <odion@efficios.com>

Oddly enough, bindings were now installed as an egg.  Fix this by
forcing setuptools to install individual files with
`--single-version-externally-managed'

*
gnu/packages/instrumentation.scm (babeltrace)[arguments]<#:make-flags>:
Pass it via DISTSETUPOPTS.

Change-Id: I143dd16179e1e4728cb8e5d6b00b06359da83389
---
 gnu/packages/instrumentation.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/instrumentation.scm b/gnu/packages/instrumentation.scm
index 7fa7b2f7ba..0d6513aaca 100644
--- a/gnu/packages/instrumentation.scm
+++ b/gnu/packages/instrumentation.scm
@@ -85,7 +85,9 @@ (define-public babeltrace
      `(#:tests? #f  ; FIXME - When Python's bindings are enabled, tests do not
                     ; pass.
        #:make-flags
-       ,#~(list (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib"))
+       ,#~(list
+           (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib")
+           "DISTSETUPOPTS=--single-version-externally-managed")
        #:configure-flags
        '("--enable-debug-info"
          "--enable-man-pages"
-- 
2.41.0





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

end of thread, other threads:[~2023-11-22 15:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-01 20:30 [bug#66888] [PATCH 1/2] gnu: babeltrace: Do not install bindings as egg odion
2023-11-01 20:35 ` [bug#66888] [PATCH 2/2] gnu: Add babeltrace/dev odion
2023-11-22 15:05 ` bug#66888: [PATCH 1/2] gnu: babeltrace: Do not install bindings as egg Ludovic Courtès

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.