all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#72944] [PATCH 1/5] gnu: liburcu: Update to 0.14.1.
@ 2024-09-01 22:09 odion
  2024-09-01 22:11 ` [bug#72944] [PATCH 2/5] gnu: librseq: Update to revision 2 odion
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: odion @ 2024-09-01 22:09 UTC (permalink / raw)
  To: 72944; +Cc: Olivier Dion

From: Olivier Dion <odion@efficios.com>

* gnu/packages/datastructures.scm (liburcu): Update to 0.14.1.

Change-Id: I310c7db2970e164a533c9f0aa773537f5bbdd8bf
---
 gnu/packages/datastructures.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/datastructures.scm b/gnu/packages/datastructures.scm
index c6b2396537..84e9edb52d 100644
--- a/gnu/packages/datastructures.scm
+++ b/gnu/packages/datastructures.scm
@@ -214,14 +214,14 @@ (define-public libcuckoo
 (define-public liburcu
   (package
     (name "liburcu")
-    (version "0.14.0")
+    (version "0.14.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://www.lttng.org/files/urcu/"
                                   "userspace-rcu-" version ".tar.bz2"))
               (sha256
                (base32
-                "0kwx4fi3gn4p4sdxqkz2zh4z0fv06q449bnz43zjqfad3lkbyhya"))))
+                "1h5bg0k94by2v7cjq7fb3ridqixbd9pndw506vl27h3fvh9wn6i3"))))
     (build-system gnu-build-system)
     (native-inputs
      (list perl))                 ; for tests

base-commit: a977900d76b7585c401222a3ce8bbb82e5f6da45
-- 
2.45.2





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

* [bug#72944] [PATCH 2/5] gnu: librseq: Update to revision 2
  2024-09-01 22:09 [bug#72944] [PATCH 1/5] gnu: liburcu: Update to 0.14.1 odion
@ 2024-09-01 22:11 ` odion
  2024-09-01 22:11 ` [bug#72944] [PATCH 3/5] gnu: lttng-modules: Update to 2.13.14 odion
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: odion @ 2024-09-01 22:11 UTC (permalink / raw)
  To: 72944; +Cc: Olivier Dion

From: Olivier Dion <odion@efficios.com>

* gnu/packages/engineering.scm (librseq): Update to revision 2.
[inputs]: Add numactl.
[native-inputs]: Add pkg-config.

Change-Id: I5b4f38e59e0a59156eea42519a1e2e32cbb2fa44
---
 gnu/packages/engineering.scm | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 65c95b80bb..9de7cc2d20 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -1286,8 +1286,8 @@ (define-public kicad-templates
 
 (define-public librseq
   ;; There's no release.
-  (let ((commit "170f840b498e1aff068b90188727a656111bfc2f")
-        (revision "1"))
+  (let ((commit "c3ed6b64bbe1944bd8de8b9fde14e7c290f02a90")
+        (revision "2"))
     (package
       (name "librseq")
       (version (git-version "0.0.0" revision commit))
@@ -1299,9 +1299,15 @@ (define-public librseq
                 (file-name (git-file-name name version))
                 (sha256
                  (base32
-                  "0rdx59y8y9x8cfmmx5gl66gibkzpk3kw5lrrqhrxan8zr37a055y"))))
+                  "046lrfw87gjbr4rvs054s6wk22c4xcmrcww04wkpnxmy5vp33mk3"))))
       (build-system gnu-build-system)
-      (native-inputs (list autoconf automake libtool))
+      (inputs
+       (list numactl))
+      (native-inputs
+       (list autoconf
+             automake
+             libtool
+             pkg-config))
       (home-page "https://github.com/compudj/librseq")
       (synopsis "Userspace library for restartable sequences")
       (description "A restartable sequence is a critical region delimited by a
-- 
2.45.2





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

* [bug#72944] [PATCH 3/5] gnu: lttng-modules: Update to 2.13.14.
  2024-09-01 22:09 [bug#72944] [PATCH 1/5] gnu: liburcu: Update to 0.14.1 odion
  2024-09-01 22:11 ` [bug#72944] [PATCH 2/5] gnu: librseq: Update to revision 2 odion
@ 2024-09-01 22:11 ` odion
  2024-09-01 22:11 ` [bug#72944] [PATCH 4/5] gnu: lttng-ust: Update to 2.13.8 odion
  2024-09-01 22:11 ` [bug#72944] [PATCH 5/5] gnu: lttng-tools: Update to 2.13.14 odion
  3 siblings, 0 replies; 5+ messages in thread
From: odion @ 2024-09-01 22:11 UTC (permalink / raw)
  To: 72944; +Cc: Olivier Dion

From: Olivier Dion <odion@efficios.com>

* gnu/packages/instrumentation.scm (lttng-modules): Update to 2.13.14.

Change-Id: I4013100fa0bc0446724b217f4b6561abceebf36b
---
 gnu/packages/instrumentation.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/instrumentation.scm b/gnu/packages/instrumentation.scm
index f8bc2702bc..149bc31ace 100644
--- a/gnu/packages/instrumentation.scm
+++ b/gnu/packages/instrumentation.scm
@@ -352,14 +352,14 @@ (define-public libpatch
 (define-public lttng-modules
   (package
     (name "lttng-modules")
-    (version "2.13.10")
+    (version "2.13.14")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://lttng.org/files/lttng-modules/"
                                   "lttng-modules-" version ".tar.bz2"))
               (sha256
                (base32
-                "19xh8nm19vx6c2i1adqpa8q2xsvxn59qxa6z186iywbhr0dgpaqk"))))
+                "19jx1yz1hsbr4vwfp2nr6z52a5g50iimaak962k49diay5zryi66"))))
     (build-system linux-module-build-system)
     (arguments
      `(#:tests? #f ; no tests
-- 
2.45.2





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

* [bug#72944] [PATCH 4/5] gnu: lttng-ust: Update to 2.13.8.
  2024-09-01 22:09 [bug#72944] [PATCH 1/5] gnu: liburcu: Update to 0.14.1 odion
  2024-09-01 22:11 ` [bug#72944] [PATCH 2/5] gnu: librseq: Update to revision 2 odion
  2024-09-01 22:11 ` [bug#72944] [PATCH 3/5] gnu: lttng-modules: Update to 2.13.14 odion
@ 2024-09-01 22:11 ` odion
  2024-09-01 22:11 ` [bug#72944] [PATCH 5/5] gnu: lttng-tools: Update to 2.13.14 odion
  3 siblings, 0 replies; 5+ messages in thread
From: odion @ 2024-09-01 22:11 UTC (permalink / raw)
  To: 72944; +Cc: Olivier Dion

From: Olivier Dion <odion@efficios.com>

* gnu/packages/instrumentation.scm (lttng-ust): Update to 2.13.8.

Change-Id: If2cf30c865a07250a6db28f69f5184f6749751fc
---
 gnu/packages/instrumentation.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/instrumentation.scm b/gnu/packages/instrumentation.scm
index 149bc31ace..a44b762d76 100644
--- a/gnu/packages/instrumentation.scm
+++ b/gnu/packages/instrumentation.scm
@@ -376,14 +376,14 @@ (define-public lttng-modules
 (define-public lttng-ust
   (package
     (name "lttng-ust")
-    (version "2.13.6")
+    (version "2.13.8")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://lttng.org/files/lttng-ust/"
                                   "lttng-ust-" version ".tar.bz2"))
               (sha256
                (base32
-                "1mffy0fmr8h8kfghjadxa7nhzfwxjh7h1k97kslpmb3kvnb4bq77"))))
+                "0dyr4j8f8y6fmfpxb3ajkc1ndwpl1baxzbyc4ksx8ym3p7d9ivyl"))))
     (build-system gnu-build-system)
     (inputs
      (list numactl))
-- 
2.45.2





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

* [bug#72944] [PATCH 5/5] gnu: lttng-tools: Update to 2.13.14.
  2024-09-01 22:09 [bug#72944] [PATCH 1/5] gnu: liburcu: Update to 0.14.1 odion
                   ` (2 preceding siblings ...)
  2024-09-01 22:11 ` [bug#72944] [PATCH 4/5] gnu: lttng-ust: Update to 2.13.8 odion
@ 2024-09-01 22:11 ` odion
  3 siblings, 0 replies; 5+ messages in thread
From: odion @ 2024-09-01 22:11 UTC (permalink / raw)
  To: 72944; +Cc: Olivier Dion

From: Olivier Dion <odion@efficios.com>

* gnu/packages/instrumentation.scm (lttng-tools): Update to 2.13.14.

Change-Id: I6c7eaa72ce9e3a9819b35fe796f6f558d7a14777
---
 gnu/packages/instrumentation.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/instrumentation.scm b/gnu/packages/instrumentation.scm
index a44b762d76..d280972729 100644
--- a/gnu/packages/instrumentation.scm
+++ b/gnu/packages/instrumentation.scm
@@ -402,14 +402,14 @@ (define-public lttng-ust
 (define-public lttng-tools
   (package
     (name "lttng-tools")
-    (version "2.13.9")
+    (version "2.13.14")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://lttng.org/files/lttng-tools/"
                                   "lttng-tools-" version ".tar.bz2"))
               (sha256
                (base32
-                "0dzk13d0hdzll8hk9qmj5lipmfa2h8zkl801dchp1kq8nsaxr54d"))))
+                "1jxdwm0a3z70jrx6yg57x5cswi7ycgyazng41rkgxnq7mp2gggak"))))
     (build-system gnu-build-system)
     (arguments
      `(#:configure-flags '("--enable-python-bindings")
-- 
2.45.2





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

end of thread, other threads:[~2024-09-01 22:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-01 22:09 [bug#72944] [PATCH 1/5] gnu: liburcu: Update to 0.14.1 odion
2024-09-01 22:11 ` [bug#72944] [PATCH 2/5] gnu: librseq: Update to revision 2 odion
2024-09-01 22:11 ` [bug#72944] [PATCH 3/5] gnu: lttng-modules: Update to 2.13.14 odion
2024-09-01 22:11 ` [bug#72944] [PATCH 4/5] gnu: lttng-ust: Update to 2.13.8 odion
2024-09-01 22:11 ` [bug#72944] [PATCH 5/5] gnu: lttng-tools: Update to 2.13.14 odion

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.