GNU bug report logs -
#78297
[PATCH electronics-team] gnu: Add python-pydigitalwavetools.
Previous Next
To reply to this bug, email your comments to 78297 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
csantosb <at> inventati.org, ekaitz <at> elenq.tech, gabriel <at> erlikon.ch, maxim.cournoyer <at> gmail.com, guix-patches <at> gnu.org
:
bug#78297
; Package
guix-patches
.
(Wed, 07 May 2025 08:32:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Cayetano Santos <csantosb <at> inventati.org>
:
New bug report received and forwarded. Copy sent to
csantosb <at> inventati.org, ekaitz <at> elenq.tech, gabriel <at> erlikon.ch, maxim.cournoyer <at> gmail.com, guix-patches <at> gnu.org
.
(Wed, 07 May 2025 08:32:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/electronics.scm (python-pydigitalwavetools): New variable.
Change-Id: Iff4d12231b366cff20b386fb1d1ae121ef50e51e
---
gnu/packages/electronics.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index 4df7064243..db9459ac03 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -551,6 +551,30 @@ (define-public python-edalize
some tool-specific options are set.")
(license license:bsd-2)))
+(define-public python-pydigitalwavetools
+ (package
+ (name "python-pydigitalwavetools")
+ (version "1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Nic30/pyDigitalWaveTools/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1zbk4ndpwm4h8vdv9f567bpsizpy6q4jf0xmma77h0gsnnaqkwis"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest
+ python-setuptools
+ python-wheel))
+ (home-page "https://github.com/Nic30/pyDigitalWaveTools/")
+ (synopsis "Library to manipulate digital wave files.")
+ (description
+ "Pydigitalwavetools is a python library to parse, write and format VCD and other digital wave files.")
+ (license license:expat)))
+
(define-public python-surf
(package
(name "python-surf")
base-commit: 658dc3ff5efb3f17e66d4f692a45805fae007989
--
2.49.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#78297
; Package
guix-patches
.
(Wed, 07 May 2025 13:14:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 78297 <at> debbugs.gnu.org (full text, mbox):
Thanks for the patch! It LGTM.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#78297
; Package
guix-patches
.
(Thu, 08 May 2025 07:53:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 78297 <at> debbugs.gnu.org (full text, mbox):
Hi,
Cayetano Santos <csantosb <at> inventati.org> writes:
> * gnu/packages/electronics.scm (python-pydigitalwavetools): New variable.
>
> Change-Id: Iff4d12231b366cff20b386fb1d1ae121ef50e51e
> ---
> gnu/packages/electronics.scm | 24 ++++++++++++++++++++++++
> 1 file changed, 24 insertions(+)
>
> diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
> index 4df7064243..db9459ac03 100644
> --- a/gnu/packages/electronics.scm
> +++ b/gnu/packages/electronics.scm
> @@ -551,6 +551,30 @@ (define-public python-edalize
> some tool-specific options are set.")
> (license license:bsd-2)))
>
> +(define-public python-pydigitalwavetools
> + (package
> + (name "python-pydigitalwavetools")
> + (version "1.1")
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/Nic30/pyDigitalWaveTools/")
> + (commit (string-append "v" version))))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32 "1zbk4ndpwm4h8vdv9f567bpsizpy6q4jf0xmma77h0gsnnaqkwis"))))
> + (build-system pyproject-build-system)
> + (native-inputs
> + (list python-pytest
> + python-setuptools
> + python-wheel))
> + (home-page "https://github.com/Nic30/pyDigitalWaveTools/")
> + (synopsis "Library to manipulate digital wave files.")
> + (description
> + "Pydigitalwavetools is a python library to parse, write and format VCD and other digital wave files.")
Please M-x fill-paragraph (M-q) or equivalent in your editor to meet our
80 columns maximum width guideline. Also,
s/python/Python/
s/wav/WAV/
I'd also use @acronym{VCD, Video CD}, and @acronym{WAV, Waveform Audio
File Format} in the description.
Could you please send a v2 with these small suggested improvements?
--
Thanks,
Maxim
Information forwarded
to
csantosb <at> inventati.org, ekaitz <at> elenq.tech, gabriel <at> erlikon.ch, maxim.cournoyer <at> gmail.com, guix-patches <at> gnu.org
:
bug#78297
; Package
guix-patches
.
(Thu, 08 May 2025 08:43:03 GMT)
Full text and
rfc822 format available.
Message #14 received at 78297 <at> debbugs.gnu.org (full text, mbox):
From: Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org>
* gnu/packages/electronics.scm (python-pydigitalwavetools): New variable.
Change-Id: Iff4d12231b366cff20b386fb1d1ae121ef50e51e
Signed-off-by: Cayetano Santos <csantosb <at> inventati.org>
---
Note that VCD stands for Value Champ Dump, see [0].
[0] https://en.wikipedia.org/wiki/Value_change_dump
gnu/packages/electronics.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index da37a9fb33..0cff76786b 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -610,6 +610,31 @@ (define-public python-edalize
some tool-specific options are set.")
(license license:bsd-2)))
+(define-public python-pydigitalwavetools
+ (package
+ (name "python-pydigitalwavetools")
+ (version "1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Nic30/pyDigitalWaveTools/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1zbk4ndpwm4h8vdv9f567bpsizpy6q4jf0xmma77h0gsnnaqkwis"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest
+ python-setuptools
+ python-wheel))
+ (home-page "https://github.com/Nic30/pyDigitalWaveTools/")
+ (synopsis "Library to manipulate digital wave files.")
+ (description
+ "Pydigitalwavetools is a Python library to parse, write and format
+@acronym{VCD, Value Champ Dump} and other digital wave files.")
+ (license license:expat)))
+
(define-public python-surf
(package
(name "python-surf")
base-commit: 01ca654387c64265b310f2887d884cd7ec7c4f0a
--
2.49.0
Information forwarded
to
csantosb <at> inventati.org, ekaitz <at> elenq.tech, gabriel <at> erlikon.ch, maxim.cournoyer <at> gmail.com, guix-patches <at> gnu.org
:
bug#78297
; Package
guix-patches
.
(Thu, 08 May 2025 09:28:02 GMT)
Full text and
rfc822 format available.
Message #17 received at 78297 <at> debbugs.gnu.org (full text, mbox):
From: Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org>
* gnu/packages/electronics.scm (python-pydigitalwavetools): New variable.
Change-Id: Iff4d12231b366cff20b386fb1d1ae121ef50e51e
---
gnu/packages/electronics.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index da37a9fb33..0cff76786b 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -610,6 +610,31 @@ (define-public python-edalize
some tool-specific options are set.")
(license license:bsd-2)))
+(define-public python-pydigitalwavetools
+ (package
+ (name "python-pydigitalwavetools")
+ (version "1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Nic30/pyDigitalWaveTools/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1zbk4ndpwm4h8vdv9f567bpsizpy6q4jf0xmma77h0gsnnaqkwis"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest
+ python-setuptools
+ python-wheel))
+ (home-page "https://github.com/Nic30/pyDigitalWaveTools/")
+ (synopsis "Library to manipulate digital wave files.")
+ (description
+ "Pydigitalwavetools is a Python library to parse, write and format
+@acronym{VCD, Value Champ Dump} and other digital wave files.")
+ (license license:expat)))
+
(define-public python-surf
(package
(name "python-surf")
base-commit: 01ca654387c64265b310f2887d884cd7ec7c4f0a
--
2.49.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#78297
; Package
guix-patches
.
(Mon, 12 May 2025 12:08:01 GMT)
Full text and
rfc822 format available.
Message #20 received at 78297 <at> debbugs.gnu.org (full text, mbox):
LGTM
Information forwarded
to
guix-patches <at> gnu.org
:
bug#78297
; Package
guix-patches
.
(Mon, 12 May 2025 12:36:02 GMT)
Full text and
rfc822 format available.
Message #23 received at 78297 <at> debbugs.gnu.org (full text, mbox):
Hi Cayetano,
Cayetano Santos <csantosb <at> inventati.org> writes:
> From: Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org>
>
> * gnu/packages/electronics.scm (python-pydigitalwavetools): New variable.
[...]
> + (home-page "https://github.com/Nic30/pyDigitalWaveTools/")
> + (synopsis "Library to manipulate digital wave files.")
> + (description
> + "Pydigitalwavetools is a Python library to parse, write and format
> +@acronym{VCD, Value Champ Dump} and other digital wave files.")
> + (license license:expat)))
Are you sure about VCD being 'Value Champ Dump' and not Video CD as I
thought? The later seemed more sensical to me, this being about some
digital audio files :-).
You missed my earlier suggestion to turn 'wave' or 'wav' into WAV'.
The synopsis should not end with a '.'; please run './pre-inst-env guix
lint python-pydigitalwavetools' to catch these things.
Could you send a v3?
--
Thanks,
Maxim
Information forwarded
to
guix-patches <at> gnu.org
:
bug#78297
; Package
guix-patches
.
(Mon, 12 May 2025 12:55:02 GMT)
Full text and
rfc822 format available.
Message #26 received at 78297 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
>lun. 12 mai 2025 at 21:34, Maxim Cournoyer <maxim.cournoyer <at> gmail.com> wrote:
> Hi Cayetano,
>
> Cayetano Santos <csantosb <at> inventati.org> writes:
>
>> From: Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org>
>>
>> * gnu/packages/electronics.scm (python-pydigitalwavetools): New variable.
>
> [...]
>
>> + (home-page "https://github.com/Nic30/pyDigitalWaveTools/")
>> + (synopsis "Library to manipulate digital wave files.")
>> + (description
>> + "Pydigitalwavetools is a Python library to parse, write and format
>> +@acronym{VCD, Value Champ Dump} and other digital wave files.")
>> + (license license:expat)))
>
> Are you sure about VCD being 'Value Champ Dump' and not Video CD as I
> thought? The later seemed more sensical to me, this being about some
> digital audio files :-).
Yes. Where exactly do you see any reference to audio in here ?
See, for example
https://github.com/Nic30/pyDigitalWaveTools/?tab=readme-ov-file#related-open-source
This is what VCD is all about:
https://pyvcd.readthedocs.io/en/latest/vcd.gtkw.html
> You missed my earlier suggestion to turn 'wave' or 'wav' into WAV'.
Yes, just because this has nothing to do with WAV audio format. Is this
comment still relevant for v3 ?
> The synopsis should not end with a '.'; please run './pre-inst-env guix
> lint python-pydigitalwavetools' to catch these things.
You’re right, my bad !
C.
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#78297
; Package
guix-patches
.
(Tue, 13 May 2025 00:06:01 GMT)
Full text and
rfc822 format available.
Message #29 received at 78297 <at> debbugs.gnu.org (full text, mbox):
Hi Cayetano,
Cayetano Santos <csantosb <at> inventati.org> writes:
>>lun. 12 mai 2025 at 21:34, Maxim Cournoyer <maxim.cournoyer <at> gmail.com> wrote:
>
>> Hi Cayetano,
>>
>> Cayetano Santos <csantosb <at> inventati.org> writes:
>>
>>> From: Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org>
>>>
>>> * gnu/packages/electronics.scm (python-pydigitalwavetools): New variable.
>>
>> [...]
>>
>>> + (home-page "https://github.com/Nic30/pyDigitalWaveTools/")
>>> + (synopsis "Library to manipulate digital wave files.")
>>> + (description
>>> + "Pydigitalwavetools is a Python library to parse, write and format
>>> +@acronym{VCD, Value Champ Dump} and other digital wave files.")
>>> + (license license:expat)))
>>
>> Are you sure about VCD being 'Value Champ Dump' and not Video CD as I
>> thought? The later seemed more sensical to me, this being about some
>> digital audio files :-).
>
> Yes. Where exactly do you see any reference to audio in here ?
I simply assumed it was, with all the Wave references in the tool name
and description (I assumed it had to do with the WAV audio format).
> See, for example
>
> https://github.com/Nic30/pyDigitalWaveTools/?tab=readme-ov-file#related-open-source
Thanks. I see they define VCD as 'Value Change Dump' though, not 'Value
Champ Dump'. After reading [0], I now understand that VCDs are "a
standardized ASCII format used to store simulation data from Verilog and
other hardware description languages". Perhaps that could be added to
the description; as it was useful to provide proper context to me. We
should assume people reading these package descriptions know nothing
about the local domain jargon.
[0] https://www.chipverify.com/verilog/verilog-vcd
> This is what VCD is all about:
>
> https://pyvcd.readthedocs.io/en/latest/vcd.gtkw.html
>
>> You missed my earlier suggestion to turn 'wave' or 'wav' into WAV'.
>
> Yes, just because this has nothing to do with WAV audio format. Is this
> comment still relevant for v3 ?
I see. Not relevant then.
--
Thanks,
Maxim
Information forwarded
to
csantosb <at> inventati.org, ekaitz <at> elenq.tech, gabriel <at> erlikon.ch, maxim.cournoyer <at> gmail.com, guix-patches <at> gnu.org
:
bug#78297
; Package
guix-patches
.
(Tue, 13 May 2025 08:27:02 GMT)
Full text and
rfc822 format available.
Message #32 received at 78297 <at> debbugs.gnu.org (full text, mbox):
From: Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org>
* gnu/packages/electronics.scm (python-pydigitalwavetools): New variable.
Change-Id: Iff4d12231b366cff20b386fb1d1ae121ef50e51e
Signed-off-by: Cayetano Santos <csantosb <at> inventati.org>
---
gnu/packages/electronics.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index da37a9fb33..21c088460c 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -610,6 +610,33 @@ (define-public python-edalize
some tool-specific options are set.")
(license license:bsd-2)))
+(define-public python-pydigitalwavetools
+ (package
+ (name "python-pydigitalwavetools")
+ (version "1.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Nic30/pyDigitalWaveTools/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0fll8anz3i1j1nngsij1psp8766kvdfpls655lbxn2ykypv3633m"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest
+ python-setuptools
+ python-wheel))
+ (home-page "https://github.com/Nic30/pyDigitalWaveTools/")
+ (synopsis "Library to manipulate digital wave files")
+ (description
+ "Pydigitalwavetools is a Python library to parse, write and format digital
+wave files in @acronym{VCD, Value Change Dump} format, a standardized ASCII
+format used to store simulation data from Verilog and other hardware description
+languages.")
+ (license license:expat)))
+
(define-public python-surf
(package
(name "python-surf")
base-commit: 8a86f221d4066e7a0df2d07208c817035b98a949
--
2.49.0
This bug report was last modified 2 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.