From unknown Sun Jun 22 04:10:10 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#74242] [PATCH] gnu: Add python-vunit. Resent-From: Cayetano Santos Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 07 Nov 2024 17:11:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 74242 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 74242@debbugs.gnu.org Cc: Cayetano Santos X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.17309994405006 (code B ref -1); Thu, 07 Nov 2024 17:11:02 +0000 Received: (at submit) by debbugs.gnu.org; 7 Nov 2024 17:10:40 +0000 Received: from localhost ([127.0.0.1]:49430 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t961o-0001Ig-Dw for submit@debbugs.gnu.org; Thu, 07 Nov 2024 12:10:40 -0500 Received: from lists.gnu.org ([209.51.188.17]:46206) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t961m-0001IW-N0 for submit@debbugs.gnu.org; Thu, 07 Nov 2024 12:10:39 -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 1t95ze-0003QS-Rx for guix-patches@gnu.org; Thu, 07 Nov 2024 12:08:26 -0500 Received: from latitanza.investici.org ([2001:888:2000:56::19]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t95zb-0001wp-LJ for guix-patches@gnu.org; Thu, 07 Nov 2024 12:08:26 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1730999299; bh=P+SVgx6yHrNAXo7iuL+2K+zs9x30p4MTSjlp+CnNPAk=; h=From:To:Cc:Subject:Date:From; b=uzyTzxDScsh/qzDfvlZ06sJR/eiM8IMqEd3xZXlGQGqa20BbUKyWmQ13XCLhg/stK 6oZGZhNAbJFSwm64028s5J9tb3ZY9sLXHdopHcsc0AcNvvtr4nsSD1W1BVX2EIG4E5 9gMuwMxlAoxCboQErjbYrNYYWh9NlfZrFdopbCOg= Received: from mx3.investici.org (unknown [127.0.0.1]) by latitanza.investici.org (Postfix) with ESMTP id 4XkpS36RpPzGp4g; Thu, 7 Nov 2024 17:08:19 +0000 (UTC) Received: from [82.94.249.234] (mx3.investici.org [82.94.249.234]) (Authenticated sender: cayetano.santos@inventati.org) by localhost (Postfix) with ESMTPSA id 4XkpS35NCLzGp4T; Thu, 7 Nov 2024 17:08:19 +0000 (UTC) From: Cayetano Santos Date: Thu, 7 Nov 2024 18:07:36 +0100 Message-ID: <6d12df6576ce97b5c988e074b876c974811c9613.1730999256.git.csantosb@inventati.org> X-Mailer: git-send-email 2.46.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2001:888:2000:56::19; envelope-from=csantosb@inventati.org; helo=latitanza.investici.org X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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_LOW=-0.7, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -0.6 (/) 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.6 (-) * gnu/packages/fpga.scm (python-vunit): New variable. Change-Id: Ieb16ec16928e6b0b2af6992fd9566cb946990dad --- gnu/packages/fpga.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm index c812ed3b7e..a6efa40fcd 100644 --- a/gnu/packages/fpga.scm +++ b/gnu/packages/fpga.scm @@ -433,6 +433,32 @@ (define-public python-myhdl a hardware description and verification language.") (license license:lgpl2.1+))) +(define-public python-vunit + (package + (name "python-vunit") + (version "4.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/VUnit/vunit") + (commit (string-append "v" version)) + (recursive? #t))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s7j5bykbv34wgnxy5cl4zp6g0caidvzs8pd9yxjq341543xkjwm")))) + (build-system python-build-system) + ;; tests + (native-inputs (list python-pytest)) + (inputs (list nvc python-pycodestyle python-pylint)) + ;; tests + (propagated-inputs (list python python-colorama)) + (home-page "https://vunit.github.io") + (synopsis "Open source unit testing framework for VHDL/SystemVerilog") + (description + "VUnit features the functionality needed to realize continuous and automated testing of HDL code.") + (license (list license:mpl2.0 license:asl2.0)))) + (define-public nvc (package (name "nvc") base-commit: 673b924ac1e30a5d498e28859af365cf2bb4a508 -- 2.46.0 From unknown Sun Jun 22 04:10:10 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#74242] [PATCH v1] gnu: Add python-vunit. References: <6d12df6576ce97b5c988e074b876c974811c9613.1730999256.git.csantosb@inventati.org> In-Reply-To: <6d12df6576ce97b5c988e074b876c974811c9613.1730999256.git.csantosb@inventati.org> Resent-From: Cayetano Santos Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 08 Nov 2024 22:56:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 74242 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 74242@debbugs.gnu.org Cc: Cayetano Santos Received: via spool by 74242-submit@debbugs.gnu.org id=B74242.173110650628282 (code B ref 74242); Fri, 08 Nov 2024 22:56:02 +0000 Received: (at 74242) by debbugs.gnu.org; 8 Nov 2024 22:55:06 +0000 Received: from localhost ([127.0.0.1]:52512 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t9Xsf-0007M3-GJ for submit@debbugs.gnu.org; Fri, 08 Nov 2024 17:55:06 -0500 Received: from confino.investici.org ([93.190.126.19]:56703) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t9Xsd-0007KR-AL for 74242@debbugs.gnu.org; Fri, 08 Nov 2024 17:55:04 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1731106494; bh=9sqYLRUlKx0b0OnqS/1TPgfySxvZQ5mXWU93CCmzuu8=; h=From:To:Cc:Subject:Date:From; b=scpDWsR3rVQ1FPUGqAM3wHrGkNS9p3iCVbF1azjoAub9nDNGLytSoA9qP+kuCzpwE XwHzCo5h8gqJLv0BQ1xsYana4ZX2+dhDAoGqbtGv6ShgDuS/NUUU4dsRIXCEFBvsuM B2+bf7McBLvu+GXAgJE/Dxjwx4axPvN+XnBLwrzw= Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4XlZ5V5g0Zz1123; Fri, 8 Nov 2024 22:54:54 +0000 (UTC) Received: from [93.190.126.19] (mx1.investici.org [93.190.126.19]) (Authenticated sender: cayetano.santos@inventati.org) by localhost (Postfix) with ESMTPSA id 4XlZ5V30Wvz111t; Fri, 8 Nov 2024 22:54:54 +0000 (UTC) From: Cayetano Santos Date: Fri, 8 Nov 2024 23:54:47 +0100 Message-ID: <77578fe7778ae147a60340418a4137be19c74e94.1731106487.git.csantosb@inventati.org> X-Mailer: git-send-email 2.46.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) 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.7 (-) * gnu/packages/fpga.scm (python-vunit): New variable. Change-Id: Ieb16ec16928e6b0b2af6992fd9566cb946990dad --- gnu/packages/fpga.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm index c812ed3b7e..2a0584cc1c 100644 --- a/gnu/packages/fpga.scm +++ b/gnu/packages/fpga.scm @@ -433,6 +433,30 @@ (define-public python-myhdl a hardware description and verification language.") (license license:lgpl2.1+))) +(define-public python-vunit + (package + (name "python-vunit") + (version "4.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/VUnit/vunit") + (commit (string-append "v" version)) + (recursive? #t))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s7j5bykbv34wgnxy5cl4zp6g0caidvzs8pd9yxjq341543xkjwm")))) + (build-system python-build-system) + (arguments + '(#:tests? #f)) ;requires setuptools_scm >= 2.0.0, <3 + (propagated-inputs (list python python-colorama)) + (home-page "https://vunit.github.io") + (synopsis "Open source unit testing framework for VHDL/SystemVerilog") + (description + "VUnit features the functionality needed to realize continuous and automated testing of HDL code.") + (license (list license:mpl2.0 license:asl2.0)))) + (define-public nvc (package (name "nvc") base-commit: 2a6d96425eea57dc6dd48a2bec16743046e32e06 -- 2.46.0 From unknown Sun Jun 22 04:10:10 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: Cayetano Santos Subject: bug#74242: closed (Re: [bug#74242] [PATCH v1] gnu: Add python-vunit.) Message-ID: References: <87msg2zeto.fsf@gnu.org> <6d12df6576ce97b5c988e074b876c974811c9613.1730999256.git.csantosb@inventati.org> X-Gnu-PR-Message: they-closed 74242 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 74242@debbugs.gnu.org Date: Tue, 07 Jan 2025 17:59:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1736272742-17516-1" This is a multi-part message in MIME format... ------------=_1736272742-17516-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #74242: [PATCH] gnu: Add python-vunit. 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 74242@debbugs.gnu.org. --=20 74242: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D74242 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1736272742-17516-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 74242-done) by debbugs.gnu.org; 7 Jan 2025 17:58:23 +0000 Received: from localhost ([127.0.0.1]:44510 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tVDqQ-0004Wn-A9 for submit@debbugs.gnu.org; Tue, 07 Jan 2025 12:58:22 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:38876) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tVDqN-0004WT-VX for 74242-done@debbugs.gnu.org; Tue, 07 Jan 2025 12:58:20 -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 1tVDqH-0005Uw-Mm; Tue, 07 Jan 2025 12:58:13 -0500 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=9BuzJ8Dbc1LkGnYgNnw6ZcQs73BWlGo5EmHP2ugboyE=; b=kZpf8CD04QsjCtzswv1H 0uwP7FOsM5gPdEpdbaW4hoEoFHjMbbfkVkXd5zzqH3EtSBNbc31qp9PM0PZVK+EgMKaoGNB40QeBD T4roo2MTls9YrKGPxfaJtV6+fjtrnjBsNTh+Bbfu9bG6yKkJ1dmAbgYZZrHr7lrUEFZikGR2WwjmS 4bmuCmWF8Mze0GHMjJbQ5STO115KHkCLZwfldpNAvwYoGg1Z+Xc0kVNt2ik2+qLAaXF7p5e7prp/9 YaGvs3YPW6cwNi+A+tI4l/BCh3Flm2f+9rbG5/I21VfaqjNRZEIZ/49CqxCf3YrINjgtI4etLAYv5 R9PL1t0xeERoUA==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Cayetano Santos Subject: Re: [bug#74242] [PATCH v1] gnu: Add python-vunit. In-Reply-To: <77578fe7778ae147a60340418a4137be19c74e94.1731106487.git.csantosb@inventati.org> (Cayetano Santos's message of "Fri, 8 Nov 2024 23:54:47 +0100") References: <6d12df6576ce97b5c988e074b876c974811c9613.1730999256.git.csantosb@inventati.org> <77578fe7778ae147a60340418a4137be19c74e94.1731106487.git.csantosb@inventati.org> Date: Tue, 07 Jan 2025 18:58:11 +0100 Message-ID: <87msg2zeto.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: 74242-done Cc: 74242-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: -2.6 (--) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, Cayetano Santos skribis: > * gnu/packages/fpga.scm (python-vunit): New variable. > > Change-Id: Ieb16ec16928e6b0b2af6992fd9566cb946990dad Finally applied, with the changes below. Thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm index 5c3faf2c94..9116a4f151 100644 --- a/gnu/packages/fpga.scm +++ b/gnu/packages/fpga.scm @@ -537,12 +537,16 @@ (define-public python-vunit (base32 "0s7j5bykbv34wgnxy5cl4zp6g0caidvzs8pd9yxjq341543xkjwm")))) (build-system python-build-system) (arguments - '(#:tests? #f)) ;requires setuptools_scm >= 2.0.0, <3 + '(#:tests? #f)) ;XXX: requires setuptools_scm >= 2.0.0, <3 (propagated-inputs (list python python-colorama)) (home-page "https://vunit.github.io") - (synopsis "Open source unit testing framework for VHDL/SystemVerilog") + (synopsis "Unit testing framework for VHDL/SystemVerilog") (description - "VUnit features the functionality needed to realize continuous and automated testing of HDL code.") + "VUnit features the functionality needed to realize continuous and +automated testing of HDL code.") + + ;; According to 'LICENSE.rst', VUnit itself is under MPL but two + ;; subdirectories are under ASL. (license (list license:mpl2.0 license:asl2.0)))) (define-public nvc --=-=-=-- ------------=_1736272742-17516-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 7 Nov 2024 17:10:40 +0000 Received: from localhost ([127.0.0.1]:49430 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t961o-0001Ig-Dw for submit@debbugs.gnu.org; Thu, 07 Nov 2024 12:10:40 -0500 Received: from lists.gnu.org ([209.51.188.17]:46206) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t961m-0001IW-N0 for submit@debbugs.gnu.org; Thu, 07 Nov 2024 12:10:39 -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 1t95ze-0003QS-Rx for guix-patches@gnu.org; Thu, 07 Nov 2024 12:08:26 -0500 Received: from latitanza.investici.org ([2001:888:2000:56::19]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t95zb-0001wp-LJ for guix-patches@gnu.org; Thu, 07 Nov 2024 12:08:26 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1730999299; bh=P+SVgx6yHrNAXo7iuL+2K+zs9x30p4MTSjlp+CnNPAk=; h=From:To:Cc:Subject:Date:From; b=uzyTzxDScsh/qzDfvlZ06sJR/eiM8IMqEd3xZXlGQGqa20BbUKyWmQ13XCLhg/stK 6oZGZhNAbJFSwm64028s5J9tb3ZY9sLXHdopHcsc0AcNvvtr4nsSD1W1BVX2EIG4E5 9gMuwMxlAoxCboQErjbYrNYYWh9NlfZrFdopbCOg= Received: from mx3.investici.org (unknown [127.0.0.1]) by latitanza.investici.org (Postfix) with ESMTP id 4XkpS36RpPzGp4g; Thu, 7 Nov 2024 17:08:19 +0000 (UTC) Received: from [82.94.249.234] (mx3.investici.org [82.94.249.234]) (Authenticated sender: cayetano.santos@inventati.org) by localhost (Postfix) with ESMTPSA id 4XkpS35NCLzGp4T; Thu, 7 Nov 2024 17:08:19 +0000 (UTC) From: Cayetano Santos To: guix-patches@gnu.org Subject: [PATCH] gnu: Add python-vunit. Date: Thu, 7 Nov 2024 18:07:36 +0100 Message-ID: <6d12df6576ce97b5c988e074b876c974811c9613.1730999256.git.csantosb@inventati.org> X-Mailer: git-send-email 2.46.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2001:888:2000:56::19; envelope-from=csantosb@inventati.org; helo=latitanza.investici.org X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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_LOW=-0.7, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -0.6 (/) X-Debbugs-Envelope-To: submit Cc: Cayetano Santos 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.6 (-) * gnu/packages/fpga.scm (python-vunit): New variable. Change-Id: Ieb16ec16928e6b0b2af6992fd9566cb946990dad --- gnu/packages/fpga.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm index c812ed3b7e..a6efa40fcd 100644 --- a/gnu/packages/fpga.scm +++ b/gnu/packages/fpga.scm @@ -433,6 +433,32 @@ (define-public python-myhdl a hardware description and verification language.") (license license:lgpl2.1+))) +(define-public python-vunit + (package + (name "python-vunit") + (version "4.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/VUnit/vunit") + (commit (string-append "v" version)) + (recursive? #t))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s7j5bykbv34wgnxy5cl4zp6g0caidvzs8pd9yxjq341543xkjwm")))) + (build-system python-build-system) + ;; tests + (native-inputs (list python-pytest)) + (inputs (list nvc python-pycodestyle python-pylint)) + ;; tests + (propagated-inputs (list python python-colorama)) + (home-page "https://vunit.github.io") + (synopsis "Open source unit testing framework for VHDL/SystemVerilog") + (description + "VUnit features the functionality needed to realize continuous and automated testing of HDL code.") + (license (list license:mpl2.0 license:asl2.0)))) + (define-public nvc (package (name "nvc") base-commit: 673b924ac1e30a5d498e28859af365cf2bb4a508 -- 2.46.0 ------------=_1736272742-17516-1--