GNU bug report logs - #57164
[PATCH 1/3] gnu: Add lttng-modules.

Previous Next

Package: guix-patches;

Reported by: Olivier Dion <olivier.dion <at> polymtl.ca>

Date: Fri, 12 Aug 2022 22:39:01 UTC

Severity: normal

Tags: patch

Done: Mathieu Othacehe <othacehe <at> gnu.org>

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 57164 in the body.
You can then email your comments to 57164 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#57164; Package guix-patches. (Fri, 12 Aug 2022 22:39:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Olivier Dion <olivier.dion <at> polymtl.ca>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 12 Aug 2022 22:39:01 GMT) Full text and rfc822 format available.

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

From: Olivier Dion <olivier.dion <at> polymtl.ca>
To: guix-patches <at> gnu.org
Cc: Olivier Dion <olivier.dion <at> polymtl.ca>
Subject: [PATCH 1/3] gnu: Add lttng-modules.
Date: Fri, 12 Aug 2022 18:38:09 -0400
* gnu/packages/instrumentation.scm (lttng-modules): New variable.
---
 gnu/packages/instrumentation.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/instrumentation.scm b/gnu/packages/instrumentation.scm
index f52cf11505..8b03c285dc 100644
--- a/gnu/packages/instrumentation.scm
+++ b/gnu/packages/instrumentation.scm
@@ -50,6 +50,7 @@ (define-module (gnu packages instrumentation)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system copy)
   #:use-module (guix build-system gnu)
+  #:use-module (guix build-system linux-module)
   #:use-module (guix download)
   #:use-module (guix gexp)
   #:use-module (guix git-download)
@@ -206,6 +207,30 @@ (define-public flamegraph
 with the script @command{flamegraph.pl} and many stackcollapse scripts.")
       (license license:cddl1.0))))
 
+(define-public lttng-modules
+  (package
+    (name "lttng-modules")
+    (version "2.13.4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://lttng.org/files/lttng-modules/"
+                                  "lttng-modules-" version ".tar.bz2"))
+              (sha256
+               (base32
+                "1vm9nnjvid7acsvgwnjyxd60ih9rmbhnfjldxip58n8x9q7d0nb1"))))
+    (build-system linux-module-build-system)
+    (arguments
+     `(#:phases (modify-phases %standard-phases
+                  (delete 'check))))
+    (home-page "https://lttng.org/")
+    (synopsis "LTTng modules provide kernel tracing capability to the LTTng
+tracer toolset")
+    (description
+     "LTTng kernel modules are Linux kernel modules which make
+LTTng kernel tracing possible.  They include essential control modules and
+many probes which instrument numerous interesting parts of Linux.")
+    (license (list license:lgpl2.1 license:gpl2 license:expat))))
+
 (define-public lttng-ust
   (package
     (name "lttng-ust")
-- 
2.37.1





Information forwarded to guix-patches <at> gnu.org:
bug#57164; Package guix-patches. (Fri, 12 Aug 2022 22:41:02 GMT) Full text and rfc822 format available.

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

From: Olivier Dion <olivier.dion <at> polymtl.ca>
To: 57164 <at> debbugs.gnu.org
Cc: Olivier Dion <olivier.dion <at> polymtl.ca>
Subject: [PATCH 2/3] gnu: lttng-ust: Update to 2.13.3.
Date: Fri, 12 Aug 2022 18:40:19 -0400
* gnu/packages/instrumentation.scm (lttng-ust): Update to 2.13.3.
---
 gnu/packages/instrumentation.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/instrumentation.scm b/gnu/packages/instrumentation.scm
index 8b03c285dc..b9a5b603a5 100644
--- a/gnu/packages/instrumentation.scm
+++ b/gnu/packages/instrumentation.scm
@@ -234,7 +234,7 @@ (define-public lttng-modules
 (define-public lttng-ust
   (package
     (name "lttng-ust")
-    (version "2.13.1")
+    (version "2.13.3")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://lttng.org/files/lttng-ust/"
-- 
2.37.1





Information forwarded to guix-patches <at> gnu.org:
bug#57164; Package guix-patches. (Fri, 12 Aug 2022 22:41:02 GMT) Full text and rfc822 format available.

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

From: Olivier Dion <olivier.dion <at> polymtl.ca>
To: 57164 <at> debbugs.gnu.org
Cc: Olivier Dion <olivier.dion <at> polymtl.ca>
Subject: [PATCH 3/3] gnu: lttng-tools: Update to 2.13.7.
Date: Fri, 12 Aug 2022 18:40:38 -0400
* gnu/packages/instrumentation.scm (lttng-tools): Update to 2.13.7.
---
 gnu/packages/instrumentation.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/instrumentation.scm b/gnu/packages/instrumentation.scm
index b9a5b603a5..d89788a517 100644
--- a/gnu/packages/instrumentation.scm
+++ b/gnu/packages/instrumentation.scm
@@ -260,7 +260,7 @@ (define-public lttng-ust
 (define-public lttng-tools
   (package
     (name "lttng-tools")
-    (version "2.13.2")
+    (version "2.13.7")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://lttng.org/files/lttng-tools/"
-- 
2.37.1





Information forwarded to guix-patches <at> gnu.org:
bug#57164; Package guix-patches. (Fri, 12 Aug 2022 23:25:02 GMT) Full text and rfc822 format available.

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

From: Olivier Dion <olivier.dion <at> polymtl.ca>
To: 57164 <at> debbugs.gnu.org
Cc: Olivier Dion <olivier.dion <at> polymtl.ca>
Subject: [PATCH v2] gnu: Add lttng-modules.
Date: Fri, 12 Aug 2022 19:24:12 -0400
* gnu/packages/instrumentation.scm (lttng-modules): New variable.
---
 gnu/packages/instrumentation.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/instrumentation.scm b/gnu/packages/instrumentation.scm
index f52cf11505..9f4ff325f5 100644
--- a/gnu/packages/instrumentation.scm
+++ b/gnu/packages/instrumentation.scm
@@ -50,6 +50,7 @@ (define-module (gnu packages instrumentation)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system copy)
   #:use-module (guix build-system gnu)
+  #:use-module (guix build-system linux-module)
   #:use-module (guix download)
   #:use-module (guix gexp)
   #:use-module (guix git-download)
@@ -206,6 +207,30 @@ (define-public flamegraph
 with the script @command{flamegraph.pl} and many stackcollapse scripts.")
       (license license:cddl1.0))))
 
+(define-public lttng-modules
+  (package
+    (name "lttng-modules")
+    (version "2.13.4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://lttng.org/files/lttng-modules/"
+                                  "lttng-modules-" version ".tar.bz2"))
+              (sha256
+               (base32
+                "1vm9nnjvid7acsvgwnjyxd60ih9rmbhnfjldxip58n8x9q7d0nb1"))))
+    (build-system linux-module-build-system)
+    (arguments
+     `(#:tests? #f
+       #:make-flags (list "CONFIG_LTTNG=m" "CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m")))
+    (home-page "https://lttng.org/")
+    (synopsis "LTTng modules provide kernel tracing capability to the LTTng
+tracer toolset")
+    (description
+     "LTTng kernel modules are Linux kernel modules which make
+LTTng kernel tracing possible.  They include essential control modules and
+many probes which instrument numerous interesting parts of Linux.")
+    (license (list license:lgpl2.1 license:gpl2 license:expat))))
+
 (define-public lttng-ust
   (package
     (name "lttng-ust")
-- 
2.37.1





Reply sent to Mathieu Othacehe <othacehe <at> gnu.org>:
You have taken responsibility. (Mon, 15 Aug 2022 07:56:02 GMT) Full text and rfc822 format available.

Notification sent to Olivier Dion <olivier.dion <at> polymtl.ca>:
bug acknowledged by developer. (Mon, 15 Aug 2022 07:56:02 GMT) Full text and rfc822 format available.

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

From: Mathieu Othacehe <othacehe <at> gnu.org>
To: Olivier Dion <olivier.dion <at> polymtl.ca>
Cc: 57164-done <at> debbugs.gnu.org
Subject: Re: bug#57164: [PATCH 1/3] gnu: Add lttng-modules.
Date: Mon, 15 Aug 2022 09:55:38 +0200
> * gnu/packages/instrumentation.scm (lttng-modules): New variable.

Pushed with the following changes:

--8<---------------cut here---------------start------------->8---
--- a/gnu/packages/instrumentation.scm
+++ b/gnu/packages/instrumentation.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2021 Olivier Dion <olivier.dion <at> polymtl.ca>
+;;; Copyright © 2021, 2022 Olivier Dion <olivier.dion <at> polymtl.ca>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -220,11 +220,11 @@ (define-public lttng-modules
                 "1vm9nnjvid7acsvgwnjyxd60ih9rmbhnfjldxip58n8x9q7d0nb1"))))
     (build-system linux-module-build-system)
     (arguments
-     `(#:tests? #f
-       #:make-flags (list "CONFIG_LTTNG=m" "CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m")))
+     `(#:tests? #f ; no tests
+       #:make-flags (list "CONFIG_LTTNG=m"
+                          "CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m")))
     (home-page "https://lttng.org/")
-    (synopsis "LTTng modules provide kernel tracing capability to the LTTng
-tracer toolset")
+    (synopsis "LTTng kernel modules for the LTTng tracer toolset")
     (description
      "LTTng kernel modules are Linux kernel modules which make
 LTTng kernel tracing possible.  They include essential control modules and
--8<---------------cut here---------------end--------------->8---

Thanks,

Mathieu




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

This bug report was last modified 1 year and 227 days ago.

Previous Next


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