emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#61540: closed ([PATCH] gnu: Add barecft.)


From: GNU bug Tracking System
Subject: bug#61540: closed ([PATCH] gnu: Add barecft.)
Date: Mon, 27 Feb 2023 22:43:01 +0000

Your message dated Mon, 27 Feb 2023 23:42:47 +0100
with message-id <87fsaqg26w.fsf@gnu.org>
and subject line Re: bug#61540: [PATCH] gnu: Add barecft.
has caused the debbugs.gnu.org bug report #61540,
regarding [PATCH] gnu: Add barecft.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
61540: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=61540
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add barecft. Date: Wed, 15 Feb 2023 15:59:58 -0500
From: Olivier Dion <odion@efficios.com>

* gnu/packages/instrumentation.scm (barecft): New variable.
---
 gnu/packages/instrumentation.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/instrumentation.scm b/gnu/packages/instrumentation.scm
index 133d684567..a54b7920f1 100644
--- a/gnu/packages/instrumentation.scm
+++ b/gnu/packages/instrumentation.scm
@@ -43,6 +43,7 @@ (define-module (gnu packages instrumentation)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages popt)
   #:use-module (gnu packages python)
+  #:use-module (gnu packages python-check)
   #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages sphinx)
   #:use-module (gnu packages swig)
@@ -53,6 +54,7 @@ (define-module (gnu packages instrumentation)
   #:use-module (guix build-system copy)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system linux-module)
+  #:use-module (guix build-system python)
   #:use-module (guix download)
   #:use-module (guix gexp)
   #:use-module (guix git-download)
@@ -120,6 +122,33 @@ (define-public babeltrace
 bindings, and the command-line tool @command{babeltrace2}.")
     (license license:expat)))
 
+(define-public barecft
+  (package
+    (name "barectf")
+    (version "3.1.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "barectf" version))
+       (sha256
+        (base32 "0zhc9d4qnnl4fjj6354qb4bng4ykywn8x3l3acpv6sx439q6ylwd"))))
+    (build-system python-build-system)
+    (native-inputs
+     (list
+      gcc-toolchain
+      gnu-make
+      python-jinja2
+      python-jsonschema
+      python-pyyaml-5
+      python-termcolor
+      python-tox))
+    (home-page "https://barectf.org";)
+    (synopsis "CTF tracer generator")
+    (description "@command{barectf} is a generator of tracer which produces
+CTF data streams.  The generated C source code has no other dependencies than
+a few C standard library headers.")
+    (license license:expat)))
+
 (define-public dyninst
   (package
     (name "dyninst")
-- 
2.39.1




--- End Message ---
--- Begin Message --- Subject: Re: bug#61540: [PATCH] gnu: Add barecft. Date: Mon, 27 Feb 2023 23:42:47 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
Hi,

Olivier Dion <olivier.dion@polymtl.ca> skribis:

> From: Olivier Dion <odion@efficios.com>
>
> * gnu/packages/instrumentation.scm (barecft): New variable.

I passed it through ‘guix style’ and changed “cft” to “ctf” in a couple
of places.

Thanks!

Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]