From unknown Sat Sep 20 20:51:46 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#66521 <66521@debbugs.gnu.org> To: bug#66521 <66521@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add taskflow. Reply-To: bug#66521 <66521@debbugs.gnu.org> Date: Sun, 21 Sep 2025 03:51:46 +0000 retitle 66521 [PATCH] gnu: Add taskflow. reassign 66521 guix-patches submitter 66521 "Paul A. Patience" severity 66521 normal tag 66521 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 13 10:18:34 2023 Received: (at submit) by debbugs.gnu.org; 13 Oct 2023 14:18:34 +0000 Received: from localhost ([127.0.0.1]:47020 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qrIzq-0001Rj-4J for submit@debbugs.gnu.org; Fri, 13 Oct 2023 10:18:34 -0400 Received: from lists.gnu.org ([2001:470:142::17]:50110) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qrIzm-0001RM-Sd for submit@debbugs.gnu.org; Fri, 13 Oct 2023 10:18:32 -0400 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 1qrIzG-0008C6-U3 for guix-patches@gnu.org; Fri, 13 Oct 2023 10:18:00 -0400 Received: from mail-4317.proton.ch ([185.70.43.17]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qrIzB-0005fF-NR for guix-patches@gnu.org; Fri, 13 Oct 2023 10:17:57 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=apatience.com; s=protonmail2; t=1697206669; x=1697465869; bh=P9TBqq+CLKyNefYugq4AGN+B1Ply9C4ImemxnEFf+8U=; h=Date:To:From:Cc:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=LShMaAhW2KWpm9KEEBh83YF2i1FHwfec5sJL6Gkyi6pBsMkVDF2U86+AiTHqaYwF0 WHcHN+/n6lYH6jizYxl6tf8EeS5J8vSqlqgZcZVGc7uL36W9HZqSXDrWNLUfdh4S5x Vib1rG7hlxAJdwWJJqxnC5b3Efifztu7zvsNx9y1IvJz1LjtQCSrmIKYp/uBFFJzFE FSxkhEzu3vc37ByTDCafKMAfisIMTQHlP+XS9SmZljGdYT2WzwUyaXAK5q/hdg3IvB BvNv3aNATK3ogL1MLH5EAPsirnGD4ZYwYXJcCHFtvx0JmQYxRj6V9Arm0ANwb9q2OS 6NvXTO09ArKmw== Date: Fri, 13 Oct 2023 14:17:35 +0000 To: guix-patches@gnu.org From: "Paul A. Patience" Subject: [PATCH] gnu: Add taskflow. Message-ID: Feedback-ID: 19227857:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.43.17; envelope-from=paul@apatience.com; helo=mail-4317.proton.ch X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 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_MSPIKE_H5=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.0 (+) X-Debbugs-Envelope-To: submit Cc: "Paul A. Patience" 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: -0.0 (/) * 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 =C2=A9 2023 Liliana Marie Prikler ;;; Copyright =C2=A9 2023 Denis 'GNUtoo' Carikli ;;; Copyright =C2=A9 2023 Foundation Devices, Inc. +;;; Copyright =C2=A9 2023 Paul A. Patience ;;; ;;; 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))) =20 +(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 tas= k +programs.") + (license license:expat))) + (define-public tweeny (package (name "tweeny") base-commit: f4e8baf3806e79d7111d2943859865ae4ee0b59d --=20 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 14 16:36:13 2023 Received: (at 66521-done) by debbugs.gnu.org; 14 Oct 2023 20:36:13 +0000 Received: from localhost ([127.0.0.1]:50718 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qrlMr-0001N5-40 for submit@debbugs.gnu.org; Sat, 14 Oct 2023 16:36:13 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:50778) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qrlMp-0001Ms-L6 for 66521-done@debbugs.gnu.org; Sat, 14 Oct 2023 16:36:12 -0400 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 1qrlMM-0003aI-Gx; Sat, 14 Oct 2023 16:35:42 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=LWplWPOcvYVUoBBqfIh4EyzwusJxCcCSyihyrI8p4T0=; b=POAglGjlAW++74ShbD8Y 9U2CsesldQ3ulwhOuKVu7uSXV7+jojfTiUJ1wfm3fiYKIhwr38MYBftH+Dn0zlPJ3Aj0Dp/WAcl1l 3xy2aXIpCoiy66YP4xm0Fm1hSZ2TFy2UZmNfif7XbFDTmad3uN1nYRG47PscrCoT6ZGJz9qjH9e5+ pI5mW92YpBgCUHc9WDrpyoEUoBKkbh+/1lCEkbFlYUd+P0tYjDHn9/bHlXF8dzkJqi8eyWyuYWazU pUvp1cc1G+3rNAzZ6E/+zBqFzDMtyoSMvKv+jn3rdYIUtEqdbRs+/pzHGGI4EJ2w5i1Zie6tWfANl puf8DzX8E9ywxg==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: "Paul A. Patience" Subject: Re: [bug#66521] [PATCH] gnu: Add taskflow. In-Reply-To: (Paul A. Patience's message of "Fri, 13 Oct 2023 14:17:35 +0000") References: Date: Sat, 14 Oct 2023 22:35:40 +0200 Message-ID: <87a5sl9c2r.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 66521-done Cc: 66521-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 (---) "Paul A. Patience" skribis: > * gnu/packages/cpp.scm (taskflow): New variable. Applied, thanks! From unknown Sat Sep 20 20:51:46 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 12 Nov 2023 12:24:09 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator