Received: (at 72432) by debbugs.gnu.org; 30 Nov 2024 19:13:38 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Nov 30 14:13:38 2024 Received: from localhost ([127.0.0.1]:49116 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1tHSuL-0003R9-Ly for submit <at> debbugs.gnu.org; Sat, 30 Nov 2024 14:13:38 -0500 Received: from mail.boiledscript.com ([144.168.59.46]:58332) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <hako@HIDDEN>) id 1tHSuJ-0003Qp-JW for 72432 <at> debbugs.gnu.org; Sat, 30 Nov 2024 14:13:32 -0500 Date: Sun, 01 Dec 2024 03:13:18 +0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ultrarare.space; s=dkim; t=1732994004; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=teR2CTV/GIpsexQ5XRDDT6mdAimGGmd2spYVayZhZvs=; b=tvucnfOXNpwRhnUO0SIqf2Ltazly4jug9xHcgP9ZQqeBOLfYT5FUkNgumR/o/HUVOOoy2p Fs0NciUpdRaQx/z3LnsSx1/W07lIuO7tLPsNoOX0pbJ9DM68cGWQqatEvlzLD+1sX19KRN 6wndoSwXUJeAfC/rCD6L2pV4puBuxQr1Z0oKL33q78IgPThRsoTSX0rtQoYF7VcpOSwNw8 ohSGIIRYFoJTZNXbf5Xuz6EXOclHB682RFazyiJDs9gv/yot1TbUp70iTupUDca9AsirpU DMAwRilrXgoptU2XC/taXtapErM4H3NhEQY196h6jCG1RWVWiSvGcGixWNdhAQ== Authentication-Results: mail.boiledscript.com; auth=pass smtp.mailfrom=hako@HIDDEN Message-ID: <87ldx04jsh.wl-hako@HIDDEN> From: Hilton Chain <hako@HIDDEN> To: Nicolas Graves <ngraves@HIDDEN> Subject: Re: [bug#72432] [PATCH 2/2] gnu: Add python-pyclibrary. In-Reply-To: <20240803210441.7297-2-ngraves@HIDDEN> References: <20240803210441.7297-1-ngraves@HIDDEN> <20240803210441.7297-2-ngraves@HIDDEN> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Spamd-Bar: -- X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 72432 Cc: 72432 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) Hi Nicolas, On Sun, 04 Aug 2024 05:04:37 +0800, Nicolas Graves via Guix-patches via wrote: > > * gnu/packages/python-xyz.scm (python-pyclibrary): New variable. > > Change-Id: Ib4d1bf9f265fc1935c432d8e4ed3e9704f03ba70 > --- > gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) > > diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm > index d09c16b73e..9dc941ca84 100644 > --- a/gnu/packages/python-xyz.scm > +++ b/gnu/packages/python-xyz.scm > @@ -25937,6 +25937,32 @@ (define-public python-setuptools-rust > Rust Python extensions implemented with @code{PyO3} or @code{rust-cpython}.") > (license license:expat))) > > +(define-public python-pyclibrary > + (package > + (name "python-pyclibrary") > + (version "0.2.2") > + (source > + (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/MatthieuDartiailh/pyclibrary") > + (commit version))) > + (file-name (git-file-name name version)) > + (sha256 > + (base32 "0scnfk0dr8za1m7k1ml74dr8sg570sgs3hmis7fl27s2h1dbsapk")))) > + (build-system pyproject-build-system) > + (arguments > + (list #:tests? #f)) ; XXX: 1/3rd of tests are failing, find out why. Can you find out why these tests are failing? From the output it looks serious to me. > + (native-inputs (list python-pytest)) > + (propagated-inputs (list python-pyparsing-2.4.7)) > + (home-page "http://github.com/MatthieuDartiailh/pyclibrary") > + (synopsis "Wrap dynamic libraries in Python") > + (description "This package provides a library to make wrapping dynamic > +libraries in Python less cumbersome and more user friendly. It includes a > +pure-Python C parser and an automation library that uses C header file > +definitions to simplify the use of C bindings.") > + (license license:expat))) > + > (define-public python-pyclipper > (package > (name "python-pyclipper") > -- > 2.45.2 Thanks
guix-patches@HIDDEN
:bug#72432
; Package guix-patches
.
Full text available.Received: (at 72432) by debbugs.gnu.org; 3 Aug 2024 21:05:18 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Aug 03 17:05:18 2024 Received: from localhost ([127.0.0.1]:54870 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1saLwE-00073D-5B for submit <at> debbugs.gnu.org; Sat, 03 Aug 2024 17:05:18 -0400 Received: from 4.mo560.mail-out.ovh.net ([87.98.172.75]:55325) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <ngraves@HIDDEN>) id 1saLwA-00072f-5Z for 72432 <at> debbugs.gnu.org; Sat, 03 Aug 2024 17:05:15 -0400 Received: from director6.ghost.mail-out.ovh.net (unknown [10.108.25.252]) by mo560.mail-out.ovh.net (Postfix) with ESMTP id 4WbwFJ5fGrz1LqS for <72432 <at> debbugs.gnu.org>; Sat, 3 Aug 2024 21:04:52 +0000 (UTC) Received: from ghost-submission-6684bf9d7b-87dg2 (unknown [10.110.188.251]) by director6.ghost.mail-out.ovh.net (Postfix) with ESMTPS id 46D7E1FDBD; Sat, 3 Aug 2024 21:04:51 +0000 (UTC) Received: from ngraves.fr ([37.59.142.97]) by ghost-submission-6684bf9d7b-87dg2 with ESMTPSA id h6PmOXObrmaaLQIAdGTL/w (envelope-from <ngraves@HIDDEN>); Sat, 03 Aug 2024 21:04:51 +0000 Authentication-Results: garm.ovh; auth=pass (GARM-97G00250abfcde-6885-4873-b7d5-32ca935e0433, E34AFB2340764F5F567B5510BD420AC790156C9A) smtp.auth=ngraves@HIDDEN X-OVh-ClientIp: 90.110.172.34 From: Nicolas Graves <ngraves@HIDDEN> To: 72432 <at> debbugs.gnu.org Subject: [PATCH 2/2] gnu: Add python-pyclibrary. Date: Sat, 3 Aug 2024 23:04:37 +0200 Message-ID: <20240803210441.7297-2-ngraves@HIDDEN> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240803210441.7297-1-ngraves@HIDDEN> References: <20240803210441.7297-1-ngraves@HIDDEN> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Ovh-Tracer-Id: 11201578174647558882 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 0 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgeeftddrkedvgdduheehucetufdoteggodetrfdotffvucfrrhhofhhilhgvmecuqfggjfdpvefjgfevmfevgfenuceurghilhhouhhtmecuhedttdenucenucfjughrpefhvfevufffkffojghfggfgsedtkeertdertddtnecuhfhrohhmpefpihgtohhlrghsucfirhgrvhgvshcuoehnghhrrghvvghssehnghhrrghvvghsrdhfrheqnecuggftrfgrthhtvghrnhepvdehleeiffehtedvlefhffffjeefgfduhfetkeevheeiteduiedugfekuedtheejnecuffhomhgrihhnpehgihhthhhusgdrtghomhenucfkphepuddvjedrtddrtddruddpledtrdduuddtrddujedvrdefgedpfeejrdehledrudegvddrleejnecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehinhgvthepuddvjedrtddrtddruddpmhgrihhlfhhrohhmpehnghhrrghvvghssehnghhrrghvvghsrdhfrhdpnhgspghrtghpthhtohepuddprhgtphhtthhopeejvdegfedvseguvggssghughhsrdhgnhhurdhorhhgpdfovfetjfhoshhtpehmohehiedtpdhmohguvgepshhmthhpohhuth DKIM-Signature: a=rsa-sha256; bh=TOcyuafobtZAdWTsXpm69KmhPIxw5A2mlojsWs4NhQc=; c=relaxed/relaxed; d=ngraves.fr; h=From; s=ovhmo4487190-selector1; t=1722719092; v=1; b=AL1RQdX8mEYL72W1NrOuS3LYzLLsVJ8EzffsBQ7ggyhLFA0YMFODgXTeEFbWJIbej8SKFhHi kcw+5k+jxhuhHVkZfxQRZSorPm5qG5xTj4wvwEHx2E2M6nHiWkZvkvy/G6xGFhNYRb6mX6wXIZl TPbldVB7oCDZHqsCuqw46w3/Cf+UPQ+XmZQWpXG6sot87FiMlpkK+aafG7mczoWO0KJ06f3BnEC YVau42EcSeON5dfgQnMDdojc0/Puf456cUSjk+3V2djJlW/nf3RQSMzvZCwpWDN7uXjnCqUKpL/ 8VnZNS2Aw04L3j0koHpyKKrIqajcparaRrbgb0fq4+47g== X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 72432 Cc: ngraves@HIDDEN X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) * gnu/packages/python-xyz.scm (python-pyclibrary): New variable. Change-Id: Ib4d1bf9f265fc1935c432d8e4ed3e9704f03ba70 --- gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d09c16b73e..9dc941ca84 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25937,6 +25937,32 @@ (define-public python-setuptools-rust Rust Python extensions implemented with @code{PyO3} or @code{rust-cpython}.") (license license:expat))) +(define-public python-pyclibrary + (package + (name "python-pyclibrary") + (version "0.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/MatthieuDartiailh/pyclibrary") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0scnfk0dr8za1m7k1ml74dr8sg570sgs3hmis7fl27s2h1dbsapk")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ; XXX: 1/3rd of tests are failing, find out why. + (native-inputs (list python-pytest)) + (propagated-inputs (list python-pyparsing-2.4.7)) + (home-page "http://github.com/MatthieuDartiailh/pyclibrary") + (synopsis "Wrap dynamic libraries in Python") + (description "This package provides a library to make wrapping dynamic +libraries in Python less cumbersome and more user friendly. It includes a +pure-Python C parser and an automation library that uses C header file +definitions to simplify the use of C bindings.") + (license license:expat))) + (define-public python-pyclipper (package (name "python-pyclipper") -- 2.45.2
guix-patches@HIDDEN
:bug#72432
; Package guix-patches
.
Full text available.Received: (at 72432) by debbugs.gnu.org; 3 Aug 2024 21:05:16 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Aug 03 17:05:16 2024 Received: from localhost ([127.0.0.1]:54868 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1saLwB-00072y-Qb for submit <at> debbugs.gnu.org; Sat, 03 Aug 2024 17:05:16 -0400 Received: from 13.mo583.mail-out.ovh.net ([87.98.182.191]:54637) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <ngraves@HIDDEN>) id 1saLw7-00072T-Qb for 72432 <at> debbugs.gnu.org; Sat, 03 Aug 2024 17:05:14 -0400 Received: from director10.ghost.mail-out.ovh.net (unknown [10.109.140.207]) by mo583.mail-out.ovh.net (Postfix) with ESMTP id 4WbwFF5v3Bz1Jf8 for <72432 <at> debbugs.gnu.org>; Sat, 3 Aug 2024 21:04:49 +0000 (UTC) Received: from ghost-submission-6684bf9d7b-v4rbb (unknown [10.108.54.132]) by director10.ghost.mail-out.ovh.net (Postfix) with ESMTPS id 620CB1FD42; Sat, 3 Aug 2024 21:04:49 +0000 (UTC) Received: from ngraves.fr ([37.59.142.108]) by ghost-submission-6684bf9d7b-v4rbb with ESMTPSA id jX2QE3GbrmZ4MQAAHIcBgQ (envelope-from <ngraves@HIDDEN>); Sat, 03 Aug 2024 21:04:49 +0000 Authentication-Results: garm.ovh; auth=pass (GARM-108S002c7658b4d-e0fe-4e76-a77e-043b2ab08419, E34AFB2340764F5F567B5510BD420AC790156C9A) smtp.auth=ngraves@HIDDEN X-OVh-ClientIp: 90.110.172.34 From: Nicolas Graves <ngraves@HIDDEN> To: 72432 <at> debbugs.gnu.org Subject: [PATCH 1/2] gnu: Add dlpack. Date: Sat, 3 Aug 2024 23:04:36 +0200 Message-ID: <20240803210441.7297-1-ngraves@HIDDEN> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Ovh-Tracer-Id: 11200733752226931426 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 0 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgeeftddrkedvgdduheeiucetufdoteggodetrfdotffvucfrrhhofhhilhgvmecuqfggjfdpvefjgfevmfevgfenuceurghilhhouhhtmecuhedttdenucenucfjughrpefhvfevufffkffoggfgsedtkeertdertddtnecuhfhrohhmpefpihgtohhlrghsucfirhgrvhgvshcuoehnghhrrghvvghssehnghhrrghvvghsrdhfrheqnecuggftrfgrthhtvghrnhepteeffefhfffhjeevleeuvdehgffgveekheeuhfekhfehuefgheffhedugfegleeinecuffhomhgrihhnpehgihhthhhusgdrtghomhenucfkphepuddvjedrtddrtddruddpledtrdduuddtrddujedvrdefgedpfeejrdehledrudegvddruddtkeenucevlhhushhtvghrufhiiigvpedtnecurfgrrhgrmhepihhnvghtpeduvdejrddtrddtrddupdhmrghilhhfrhhomhepnhhgrhgrvhgvshesnhhgrhgrvhgvshdrfhhrpdhnsggprhgtphhtthhopedupdhrtghpthhtohepjedvgeefvdesuggvsggsuhhgshdrghhnuhdrohhrghdpoffvtefjohhsthepmhhoheekfedpmhhouggvpehsmhhtphhouhht DKIM-Signature: a=rsa-sha256; bh=o20ZO0mgcsdGhcM+BBDCAKPlyLNxRdtjWRVRejZ/x64=; c=relaxed/relaxed; d=ngraves.fr; h=From; s=ovhmo4487190-selector1; t=1722719090; v=1; b=DQ8zqyK4DIORI2q3pYcRW5Lz8GY9mI8kxbPKKjN8xyABlFHWFd6NjnjiGvdHTFyNLqBkqunP D3tij+EEJ93DXi/5nB2AR7l+L9ry+a1LSGFv5OnKepC7JggSCPzNU2tZ2Dct17IZP72e8+kfgI4 pq00ZB/cSVCxmErzUOwa/X5UDCydxt61W66YPFmdZOnwzHe9kURgcg2mRGlo+tV+OJ57ybrRRLr WfZU7DbI5CxDHUZ4uZzRcv4raSl8Xu8YeUhWdJGBbXNadFY0ppVHYoeZtpJN9eCLfXudB/u/27x cSL5l32C1slf6H2VftwS0sU3uBM7yKGs9iVTzNnq9t72w== X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 72432 Cc: ngraves@HIDDEN X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) * gnu/packages/machine-learning.scm (dlpack): New variable. Change-Id: I9223e5c3b8f8317f88954cfdaccdfa11a51b7167 --- gnu/packages/machine-learning.scm | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 4c5b713cbf..600e111594 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -133,6 +133,40 @@ (define-module (gnu packages machine-learning) #:use-module (gnu packages xorg) #:use-module (ice-9 match)) +(define-public dlpack + (package + (name "dlpack") + (version "0.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dmlc/dlpack") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jmfvdrx8dn9b0ksm04ixha0jnrk35ip796qg98kfz6g7niw5ir1")))) + (build-system cmake-build-system) + (arguments + (list #:tests? #f)) ; no tests. + (home-page "https://github.com/dmlc/dlpack") + (synopsis "In Memory Tensor Structure") + (description "This package provides an open in-memory tensor structure for +sharing tensors among frameworks. DLPack enables +@itemize +@item Easier sharing of operators between deep learning frameworks. +@item Easier wrapping of vendor level operator implementations, allowing +collaboration when introducing new devices/ops. +@item Quick swapping of backend implementations, like different version of +BLAS +@item For final users,this could bring more operators, and possibility of +mixing usage between frameworks. +@end itemize + +This package does not intend to implement Tensor and Ops, but instead use this +as common bridge to reuse tensor and ops across frameworks.") + (license license:asl2.0))) + (define-public fasttext (package (name "fasttext") -- 2.45.2
guix-patches@HIDDEN
:bug#72432
; Package guix-patches
.
Full text available.Received: (at submit) by debbugs.gnu.org; 2 Aug 2024 23:16:55 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Fri Aug 02 19:16:55 2024 Received: from localhost ([127.0.0.1]:53867 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1sa1W2-0008Bi-KI for submit <at> debbugs.gnu.org; Fri, 02 Aug 2024 19:16:54 -0400 Received: from lists.gnu.org ([209.51.188.17]:56464) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <ngraves@HIDDEN>) id 1sa1W0-0008Bb-N0 for submit <at> debbugs.gnu.org; Fri, 02 Aug 2024 19:16:53 -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 <ngraves@HIDDEN>) id 1sa1Vh-0005vE-EE for guix-patches@HIDDEN; Fri, 02 Aug 2024 19:16:33 -0400 Received: from 17.mo561.mail-out.ovh.net ([87.98.178.58]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <ngraves@HIDDEN>) id 1sa1Ve-0002PL-LV for guix-patches@HIDDEN; Fri, 02 Aug 2024 19:16:33 -0400 Received: from director4.ghost.mail-out.ovh.net (unknown [10.108.2.118]) by mo561.mail-out.ovh.net (Postfix) with ESMTP id 4WbMCZ60tWz1PZd for <guix-patches@HIDDEN>; Fri, 2 Aug 2024 23:16:26 +0000 (UTC) Received: from ghost-submission-6684bf9d7b-xg4qt (unknown [10.108.42.203]) by director4.ghost.mail-out.ovh.net (Postfix) with ESMTPS id 714A31FD55; Fri, 2 Aug 2024 23:16:25 +0000 (UTC) Received: from ngraves.fr ([37.59.142.101]) by ghost-submission-6684bf9d7b-xg4qt with ESMTPSA id KQL7JslorWbaGwcA24bKqQ (envelope-from <ngraves@HIDDEN>); Fri, 02 Aug 2024 23:16:25 +0000 Authentication-Results: garm.ovh; auth=pass (GARM-101G004470d0b54-0736-48da-a0a9-f9764c06bb07, E34AFB2340764F5F567B5510BD420AC790156C9A) smtp.auth=ngraves@HIDDEN X-OVh-ClientIp: 90.110.172.34 From: Nicolas Graves <ngraves@HIDDEN> To: guix-patches@HIDDEN Subject: [PATCH 0/2] Add dlpack, python-pyclibrary. Date: Sat, 3 Aug 2024 01:13:38 +0200 Message-ID: <20240802231617.8650-1-ngraves@HIDDEN> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Ovh-Tracer-Id: 7550847727606162146 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 0 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgeeftddrkedugddvvdcutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfqggfjpdevjffgvefmvefgnecuuegrihhlohhuthemucehtddtnecunecujfgurhephffvvefufffkofgggfestdekredtredttdenucfhrhhomheppfhitgholhgrshcuifhrrghvvghsuceonhhgrhgrvhgvshesnhhgrhgrvhgvshdrfhhrqeenucggtffrrghtthgvrhhnpeehgfffffdtkeevieehudduleefgfffteethfeuteetleeliedtudffgfduiefgleenucffohhmrghinhepghhithhlrggsrdgtohhmnecukfhppeduvdejrddtrddtrddupdeltddruddutddrudejvddrfeegpdefjedrheelrddugedvrddutddunecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehinhgvthepuddvjedrtddrtddruddpmhgrihhlfhhrohhmpehnghhrrghvvghssehnghhrrghvvghsrdhfrhdpnhgspghrtghpthhtohepuddprhgtphhtthhopehguhhigidqphgrthgthhgvshesghhnuhdrohhrghdpoffvtefjohhsthepmhhoheeiuddpmhhouggvpehsmhhtphhouhht DKIM-Signature: a=rsa-sha256; bh=M/6VEhuWYSOFwFFXmcqke38phgKFS9saL03+EENckvg=; c=relaxed/relaxed; d=ngraves.fr; h=From; s=ovhmo4487190-selector1; t=1722640586; v=1; b=byHhAFotGxg/fRKvXY1Rn2xDUHYwcAmvuK8PfSkrZcSDWzpMLNmv8pzKpyglisGl0cbvJ+BZ YNMi+8+hgy/B2GJIeC+PGbM21Xuus5z709BXaw0mo3kvYYydGhIAAR0n8s+0vDzJxKkYhQDp4/1 PCks73AaMNqpSCll76CVPsbHoGsKx9Ay33InKXUIXkAYtcIuwy+m1XXKDHEjTVOe2f+Xg+uMEye Uh4q5JKymzSkqAqkGJ8cOaU2li+O3N6RfD1npml3KqNLUXAcNxYaauWZPnPbyWrTk1f6mtF6D2i girdG/vOnH6zf27auGB/VIi2vbmJSfbchAvMXjx/89qAA== Received-SPF: pass client-ip=87.98.178.58; envelope-from=ngraves@HIDDEN; helo=17.mo561.mail-out.ovh.net 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_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=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: ngraves@HIDDEN X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -2.3 (--) These packages are used in the following pull request in nonguix: https://gitlab.com/nonguix/nonguix/-/merge_requests/497 Nicolas Graves (2): gnu: Add dlpack. gnu: Add python-pyclibrary. gnu/packages/machine-learning.scm | 34 +++++++++++++++++++++++++++++++ gnu/packages/python-xyz.scm | 26 +++++++++++++++++++++++ 2 files changed, 60 insertions(+) -- 2.45.2
Nicolas Graves <ngraves@HIDDEN>
:guix-patches@HIDDEN
.
Full text available.guix-patches@HIDDEN
:bug#72432
; Package guix-patches
.
Full text available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.