From debbugs-submit-bounces@debbugs.gnu.org Tue Dec 10 05:42:04 2024 Received: (at submit) by debbugs.gnu.org; 10 Dec 2024 10:42:04 +0000 Received: from localhost ([127.0.0.1]:57072 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tKxgp-0001U2-JA for submit@debbugs.gnu.org; Tue, 10 Dec 2024 05:42:03 -0500 Received: from lists.gnu.org ([209.51.188.17]:36876) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tKxgn-0001Ta-7B for submit@debbugs.gnu.org; Tue, 10 Dec 2024 05:42:02 -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 1tKxgm-00057i-V7 for guix-patches@gnu.org; Tue, 10 Dec 2024 05:42:01 -0500 Received: from latitanza.investici.org ([82.94.249.234]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tKxgk-0007L5-ET for guix-patches@gnu.org; Tue, 10 Dec 2024 05:42:00 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1733827308; bh=+nwuADDFOT+cQ1jkVlvCaCmgywRmpOKHeeSME7QgjWY=; h=From:To:Cc:Subject:Date:From; b=MQo2k53WBy79WtBmlTwFfmgwwggKPLeVUjb0JRjsuZezE7wXlKmeKdQ+665AMbP1w 5TAAJRu/9ucW5jO3MERxLCZFM5qmw6dEGfl5yy94wXZD9ET64g8iEHNq4mAuGtZxsK ob2vMU+OT9w7aPBuwx8Ql8u7YQYFxE4oDxXqbM5s= Received: from mx3.investici.org (unknown [127.0.0.1]) by latitanza.investici.org (Postfix) with ESMTP id 4Y6wJr0BTqzGp4t; Tue, 10 Dec 2024 10:41:48 +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 4Y6wJq6LwBzGp4j; Tue, 10 Dec 2024 10:41:47 +0000 (UTC) From: Cayetano Santos To: guix-patches@gnu.org Subject: [PATCH] gnu: Add python-hdlmake. Date: Tue, 10 Dec 2024 11:41:08 +0100 Message-ID: <0b1319ee05bc8e954cdefc620a88f2e879e58310.1733827268.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=82.94.249.234; 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, RCVD_IN_VALIDITY_CERTIFIED_BLOCKED=0.001, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, 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-hdlmake): New variable. Change-Id: I4f19d2cceb7fe46bbc359f9bc5197ae3113bb3d7 --- gnu/packages/fpga.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm index e69169b980..234f19003f 100644 --- a/gnu/packages/fpga.scm +++ b/gnu/packages/fpga.scm @@ -635,3 +635,28 @@ (define-public openfpgaloader to an FPGA.") (home-page "https://trabucayre.github.io/openFPGALoader") (license license:asl2.0))) + +(define-public python-hdlmake + (let ((commit "3cb248fdad601c579b59fd7c194402871209bc54") + (revision "0")) + (package + (name "python-hdlmake") + (version (git-version "3.3" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://ohwr.org/project/hdl-make") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08ivnhxyp44agmifqb4pjbxj23p43qqcg73s2y2z1hqk2six3fdx")))) + (build-system pyproject-build-system) + (arguments + `(#:tests? #f)) + (propagated-inputs (list python-six)) + (home-page "https://ohwr.org/projects/hdl-make") + (synopsis "Generate multi-purpose makefiles for HDL projects") + (description + "Hdlmake helps to manage and share HDL code by automatically finding file dependencies, writing synthesis and simulation Makefiles.") + (license license:gpl3+)))) base-commit: 93e1586116f39a30ba1fcb67bd839a43533dfaf4 -- 2.46.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 07 13:03:37 2025 Received: (at 74763-done) by debbugs.gnu.org; 7 Jan 2025 18:03:37 +0000 Received: from localhost ([127.0.0.1]:44523 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tVDvV-0004pD-DY for submit@debbugs.gnu.org; Tue, 07 Jan 2025 13:03:37 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:34794) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tVDvS-0004ox-6S for 74763-done@debbugs.gnu.org; Tue, 07 Jan 2025 13:03:35 -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 1tVDvM-00064Y-Mf; Tue, 07 Jan 2025 13:03:28 -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=aws+p5pjVrkjUehX91Dkdq/dLF43DQ+tZBpwqwPOQkA=; b=aILNkCvE4u99Dn+69XSL oZCCXg+nH+Y530Odx/UNgyqvOiD9y4h/rWdhiJmW0sRJGiMU1VlFphF0+FuLetCi5iTTfFQ0KObWH 64Rr8UTVLqvo/PMKrSei/9lrM5zEud8aV8X6EhfCe/c6GkLzG1CZ1fOsNQwAVQW4Gz9MCHMJmdvoG WtysSyzZ35NNsxS2qwQTP5D720XgqUp2nMTaRfIqk5bH8OWWTnkqUfk0KrAqvfI2wExGQfDfHVXOO 3GRlYgcJ8O10+JnBZmyJkqiJ+KdZkRbAWk4gqSpovv+/3GFAkq7qyv94bEGxRfc2hLmPc7urIW+Cr lHnQu9dy/xV2JQ==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Cayetano Santos Subject: Re: [bug#74763] [PATCH] gnu: Add python-hdlmake. In-Reply-To: <0b1319ee05bc8e954cdefc620a88f2e879e58310.1733827268.git.csantosb@inventati.org> (Cayetano Santos's message of "Tue, 10 Dec 2024 11:41:08 +0100") References: <0b1319ee05bc8e954cdefc620a88f2e879e58310.1733827268.git.csantosb@inventati.org> Date: Tue, 07 Jan 2025 19:03:25 +0100 Message-ID: <87ikqqzeky.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 74763-done Cc: 74763-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 (---) --=-=-= Content-Type: text/plain Cayetano Santos skribis: > * gnu/packages/fpga.scm (python-hdlmake): New variable. > > Change-Id: I4f19d2cceb7fe46bbc359f9bc5197ae3113bb3d7 Applied with the changes below, thanks! --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm index 80d21bab08..c757353ac6 100644 --- a/gnu/packages/fpga.scm +++ b/gnu/packages/fpga.scm @@ -36,6 +36,7 @@ (define-module (gnu packages fpga) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) #:use-module (guix build-system python) + #:use-module (guix build-system pyproject) #:use-module (gnu packages) #:use-module (gnu packages autotools) #:use-module (gnu packages algebra) @@ -66,6 +67,7 @@ (define-module (gnu packages fpga) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) + #:use-module (gnu packages python-build) #:use-module (gnu packages python-xyz) #:use-module (gnu packages qt) #:use-module (gnu packages readline) @@ -764,9 +766,12 @@ (define-public python-hdlmake (build-system pyproject-build-system) (arguments `(#:tests? #f)) + (native-inputs (list python-setuptools python-wheel)) (propagated-inputs (list python-six)) (home-page "https://ohwr.org/projects/hdl-make") (synopsis "Generate multi-purpose makefiles for HDL projects") (description - "Hdlmake helps to manage and share HDL code by automatically finding file dependencies, writing synthesis and simulation Makefiles.") + "Hdlmake helps manage and share @acronym{HDL, hardware description +language} code by automatically finding file dependencies, writing synthesis +and simulation Makefiles.") (license license:gpl3+)))) --=-=-=-- From unknown Sat Jun 14 03:55:04 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 05 Feb 2025 12:24:12 +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