From unknown Mon Aug 18 17:56:48 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#61540] [PATCH] gnu: Add barecft. Resent-From: Olivier Dion Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 15 Feb 2023 21:01:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 61540 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 61540@debbugs.gnu.org Cc: Olivier Dion X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.167649482920188 (code B ref -1); Wed, 15 Feb 2023 21:01:02 +0000 Received: (at submit) by debbugs.gnu.org; 15 Feb 2023 21:00:29 +0000 Received: from localhost ([127.0.0.1]:34148 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pSOtA-0005FX-IB for submit@debbugs.gnu.org; Wed, 15 Feb 2023 16:00:28 -0500 Received: from lists.gnu.org ([209.51.188.17]:46314) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pSOt4-0005FI-Qo for submit@debbugs.gnu.org; Wed, 15 Feb 2023 16:00:26 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pSOt4-0002e8-Hz for guix-patches@gnu.org; Wed, 15 Feb 2023 16:00:22 -0500 Received: from smtp.polymtl.ca ([132.207.4.11]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pSOt2-0000p3-9k for guix-patches@gnu.org; Wed, 15 Feb 2023 16:00:22 -0500 Received: from laura.hitronhub.home (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 31FL036r028230 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT); Wed, 15 Feb 2023 16:00:10 -0500 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 31FL036r028230 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=polymtl.ca; s=default; t=1676494811; bh=8mta6ijSJ5f7QGFUS5VM+JZwkNb0RREceHyr4zo95f4=; h=From:To:Cc:Subject:Date:From; b=CFO3z7cCxlftDq1yfxOIUOcXwFKjFzErVCGKkFQXql0BrjDvCrO6X1AGDGbdYxCtc KOastz1dYyWvnZ390ikYttpfwHbZr2erckhtk6zOxnUoqpWW8bn+/j/w4w0BtkrgtV 1s3l+va2R46V/m/TN0OGuc+ri2LIfXkqdlXtkhME= From: Olivier Dion Date: Wed, 15 Feb 2023 15:59:58 -0500 Message-Id: <20230215205958.15719-1-olivier.dion@polymtl.ca> X-Mailer: git-send-email 2.39.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Poly-FromMTA: (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) at Wed, 15 Feb 2023 21:00:03 +0000 Received-SPF: pass client-ip=132.207.4.11; envelope-from=olivier.dion@polymtl.ca; helo=smtp.polymtl.ca X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) From: Olivier Dion * 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 From unknown Mon Aug 18 17:56:48 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#61540] Acknowledgement ([PATCH] gnu: Add barecft.) Resent-From: Olivier Dion Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 23 Feb 2023 18:53:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61540 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 61540@debbugs.gnu.org Cc: Mathieu Othacehe Received: via spool by 61540-submit@debbugs.gnu.org id=B61540.167717835731831 (code B ref 61540); Thu, 23 Feb 2023 18:53:03 +0000 Received: (at 61540) by debbugs.gnu.org; 23 Feb 2023 18:52:37 +0000 Received: from localhost ([127.0.0.1]:35301 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVGho-0008HJ-Iu for submit@debbugs.gnu.org; Thu, 23 Feb 2023 13:52:37 -0500 Received: from smtpout.efficios.com ([167.114.26.122]:34708) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVCoO-00071c-8n for 61540@debbugs.gnu.org; Thu, 23 Feb 2023 09:43:08 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=efficios.com; s=smtpout1; t=1677163383; bh=1hzD7mnkp4yrCd+PcwyIlSTVb9DaMUh+e/9s3ThJxps=; h=From:To:Subject:In-Reply-To:References:CC:Date:From; b=dcCn8bQYxxZfFalnUFgVBb5S2iA1cMTeYo7PW+TwbkT4zU3h/b5LvW6m1sIqDeiHq 0HH0VwNhjIyKmUpiJWVyPjxPatIKc19f2HFkphCRPnZFwO0XMixJTc4cgtpXZNUpiZ 4hjPLXrgEEfpd/eK7gXvB44DqfwrT907344/roQZdhbcMqELkdPpGRmQW0Xa3weNxJ zSuN5uLvcvPFZ3fnNdAmARdXj7aEp0prngddzGIxktotoDPbLo5oDGfKe9ZMMEwib2 5vtE1X3tINtuebk79ora04ZHhc7Czj8XC/mLXQN1LPFUtqKMuQKhcUw7ZIGVdXHlcY r3kiEX1lH5jYQ== Received: from localhost (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) by smtpout.efficios.com (Postfix) with ESMTPSA id 4PMwjy6jZWzmYc; Thu, 23 Feb 2023 09:43:02 -0500 (EST) From: Olivier Dion In-Reply-To: Organization: EfficiOS References: <20230215205958.15719-1-olivier.dion@polymtl.ca> Date: Thu, 23 Feb 2023 09:43:02 -0500 Message-ID: <875ybssart.fsf@laura> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Mailman-Approved-At: Thu, 23 Feb 2023 13:52:35 -0500 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Ping --=20 Olivier Dion D=C3=A9velopeur Logiciel | Qu=C3=A9bec EfficiOS From unknown Mon Aug 18 17:56:48 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Olivier Dion Subject: bug#61540: closed (Re: bug#61540: [PATCH] gnu: Add barecft.) Message-ID: References: <87fsaqg26w.fsf@gnu.org> <20230215205958.15719-1-olivier.dion@polymtl.ca> X-Gnu-PR-Message: they-closed 61540 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 61540@debbugs.gnu.org Date: Mon, 27 Feb 2023 22:43:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1677537782-1043-1" This is a multi-part message in MIME format... ------------=_1677537782-1043-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #61540: [PATCH] gnu: Add barecft. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 61540@debbugs.gnu.org. --=20 61540: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D61540 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1677537782-1043-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 61540-done) by debbugs.gnu.org; 27 Feb 2023 22:42:59 +0000 Received: from localhost ([127.0.0.1]:49129 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWmCx-0000GZ-F6 for submit@debbugs.gnu.org; Mon, 27 Feb 2023 17:42:59 -0500 Received: from eggs.gnu.org ([209.51.188.92]:59728) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWmCu-0000GJ-R9 for 61540-done@debbugs.gnu.org; Mon, 27 Feb 2023 17:42:59 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWmCo-0004fd-0R; Mon, 27 Feb 2023 17:42:50 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=JVVx299vFPpmwuX6yel1UfaT1a6qs42hCvUzrJn2mVY=; b=q7hKbTKC4Z5+pEpW9cbw aZe4tkVJVQKPB9wg9NOcU4Zk4t5iZDw7hXwnSa8JYFoRGGz9HFaTLpF8MiajJZ26dvqnlJ/C9oEWF XmcmE1zgIt7W2wLHT4A62n7PuY75+cWB2B5YmnofvmYN0UjYQNo10qTO4l0cqdhEVZSDlm0Gx+RuY u7iSerYMmlyqzFJ4TWRi7jRlns59E04dujEon2L/dEkqVnKFJeDiwAntx6DhT27ah2AxTHj+vecoT t5OHQlgOelOA0yXWeGyOn2016Da6kpGGVTo1JQYQBdm2huOmf9yCvgvRtDHpPTzjH+CPzcARehAPh zzt6Af+NZmMsCg==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201] helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWmCn-0005Mz-K4; Mon, 27 Feb 2023 17:42:49 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Olivier Dion Subject: Re: bug#61540: [PATCH] gnu: Add barecft. References: <20230215205958.15719-1-olivier.dion@polymtl.ca> Date: Mon, 27 Feb 2023 23:42:47 +0100 In-Reply-To: <20230215205958.15719-1-olivier.dion@polymtl.ca> (Olivier Dion's message of "Wed, 15 Feb 2023 15:59:58 -0500") Message-ID: <87fsaqg26w.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 61540-done Cc: Olivier Dion , 61540-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, Olivier Dion skribis: > From: Olivier Dion > > * gnu/packages/instrumentation.scm (barecft): New variable. I passed it through =E2=80=98guix style=E2=80=99 and changed =E2=80=9Ccft= =E2=80=9D to =E2=80=9Cctf=E2=80=9D in a couple of places. Thanks! Ludo=E2=80=99. ------------=_1677537782-1043-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 15 Feb 2023 21:00:29 +0000 Received: from localhost ([127.0.0.1]:34148 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pSOtA-0005FX-IB for submit@debbugs.gnu.org; Wed, 15 Feb 2023 16:00:28 -0500 Received: from lists.gnu.org ([209.51.188.17]:46314) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pSOt4-0005FI-Qo for submit@debbugs.gnu.org; Wed, 15 Feb 2023 16:00:26 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pSOt4-0002e8-Hz for guix-patches@gnu.org; Wed, 15 Feb 2023 16:00:22 -0500 Received: from smtp.polymtl.ca ([132.207.4.11]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pSOt2-0000p3-9k for guix-patches@gnu.org; Wed, 15 Feb 2023 16:00:22 -0500 Received: from laura.hitronhub.home (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 31FL036r028230 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT); Wed, 15 Feb 2023 16:00:10 -0500 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 31FL036r028230 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=polymtl.ca; s=default; t=1676494811; bh=8mta6ijSJ5f7QGFUS5VM+JZwkNb0RREceHyr4zo95f4=; h=From:To:Cc:Subject:Date:From; b=CFO3z7cCxlftDq1yfxOIUOcXwFKjFzErVCGKkFQXql0BrjDvCrO6X1AGDGbdYxCtc KOastz1dYyWvnZ390ikYttpfwHbZr2erckhtk6zOxnUoqpWW8bn+/j/w4w0BtkrgtV 1s3l+va2R46V/m/TN0OGuc+ri2LIfXkqdlXtkhME= From: Olivier Dion To: guix-patches@gnu.org Subject: [PATCH] gnu: Add barecft. Date: Wed, 15 Feb 2023 15:59:58 -0500 Message-Id: <20230215205958.15719-1-olivier.dion@polymtl.ca> X-Mailer: git-send-email 2.39.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Poly-FromMTA: (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) at Wed, 15 Feb 2023 21:00:03 +0000 Received-SPF: pass client-ip=132.207.4.11; envelope-from=olivier.dion@polymtl.ca; helo=smtp.polymtl.ca X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Olivier Dion X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) From: Olivier Dion * 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 ------------=_1677537782-1043-1--