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

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

bug#66521: closed ([PATCH] gnu: Add taskflow.)


From: GNU bug Tracking System
Subject: bug#66521: closed ([PATCH] gnu: Add taskflow.)
Date: Sat, 14 Oct 2023 20:37:01 +0000

Your message dated Sat, 14 Oct 2023 22:35:40 +0200
with message-id <87a5sl9c2r.fsf@gnu.org>
and subject line Re: [bug#66521] [PATCH] gnu: Add taskflow.
has caused the debbugs.gnu.org bug report #66521,
regarding [PATCH] gnu: Add taskflow.
to be marked as done.

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


-- 
66521: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=66521
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add taskflow. Date: Fri, 13 Oct 2023 14:17:35 +0000
* gnu/packages/cpp.scm (taskflow): New variable.
---
 gnu/packages/cpp.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 7d9eb2a264..f3f6d8df64 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -38,6 +38,7 @@
 ;;; Copyright © 2023 Liliana Marie Prikler <liliana.prikler@gmail.com>
 ;;; Copyright © 2023 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
 ;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
+;;; Copyright © 2023 Paul A. Patience <paul@apatience.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1039,6 +1040,28 @@ (define-public sobjectizer
 development of concurrent and multithreaded applications in C++.")
     (license license:bsd-3)))
 
+(define-public taskflow
+  (package
+    (name "taskflow")
+    (version "3.6.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/taskflow/taskflow";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1cv74l181137lchc1rxygcg401cnq216ymq5qz2njsw99j342br3"))))
+    (build-system cmake-build-system)
+    (home-page "https://taskflow.github.io/";)
+    (synopsis
+     "General-purpose parallel and heterogeneous task programming system")
+    (description
+     "Taskflow is a C++ library for writing parallel and heterogeneous task
+programs.")
+    (license license:expat)))
+
 (define-public tweeny
   (package
     (name "tweeny")

base-commit: f4e8baf3806e79d7111d2943859865ae4ee0b59d
-- 
2.41.0





--- End Message ---
--- Begin Message --- Subject: Re: [bug#66521] [PATCH] gnu: Add taskflow. Date: Sat, 14 Oct 2023 22:35:40 +0200 User-agent: Gnus/5.13 (Gnus v5.13)
"Paul A. Patience" <paul@apatience.com> skribis:

> * gnu/packages/cpp.scm (taskflow): New variable.

Applied, thanks!


--- End Message ---

reply via email to

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