GNU bug report logs -
#75758
[PATCH] gnu: Remove arachne-pnr.
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 75758 in the body.
You can then email your comments to 75758 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#75758
; Package
guix-patches
.
(Wed, 22 Jan 2025 11:38:02 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
guix-patches <at> gnu.org
.
(Wed, 22 Jan 2025 11:38:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/fpga.scm (arachne-pnr): Delete variable.
Change-Id: I86a42633de96af04499106aabca43bfab4b35f24
---
Arachne README.md states that this code is not maintained anymore, and advices to replace it by nextpnr.
gnu/packages/fpga.scm | 42 ------------------------------------------
1 file changed, 42 deletions(-)
diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm
index fadf72ba1d..4af701bc14 100644
--- a/gnu/packages/fpga.scm
+++ b/gnu/packages/fpga.scm
@@ -402,48 +402,6 @@ (define-public nextpnr-ice40
(home-page "https://github.com/YosysHQ/nextpnr")
(license license:expat))))
-(define-public arachne-pnr
- (let ((commit "840bdfdeb38809f9f6af4d89dd7b22959b176fdd")
- (revision "2"))
- (package
- (name "arachne-pnr")
- (version (string-append "0.0-" revision "-" (string-take commit 9)))
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/YosysHQ/arachne-pnr")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1dqvjvgvsridybishv4pnigw9gypxh7r7nrqp9z9qq92v7c5rxzl"))))
- (build-system gnu-build-system)
- (arguments
- `(#:test-target "test"
- #:make-flags
- (list (string-append "DESTDIR=" (assoc-ref %outputs "out"))
- (string-append "ICEBOX=" (string-append
- (assoc-ref %build-inputs "icestorm")
- "/share/icebox")))
- #:phases (modify-phases %standard-phases
- (replace 'configure
- (lambda* (#:key outputs inputs #:allow-other-keys)
- (substitute* '("./tests/fsm/generate.py"
- "./tests/combinatorial/generate.py")
- (("#!/usr/bin/python") "#!/usr/bin/python2"))
- #t)))))
- (inputs
- (list icestorm))
- (native-inputs
- `(("git" ,git) ; for determining its own version string
- ("yosys" ,yosys) ; for tests
- ("perl" ,perl) ; for shasum
- ("python-2" ,python-2))) ; for tests
- (home-page "https://github.com/YosysHQ/arachne-pnr")
- (synopsis "Place-and-Route tool for FPGAs")
- (description "Arachne-PNR is a Place-and-Route Tool For FPGAs.")
- (license license:gpl2))))
-
(define-public gtkwave
(package
(name "gtkwave")
base-commit: 49cb321eb799ef9da82ba83a0a0e0db4b1a72f51
--
2.47.1
Reply sent
to
Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
:
You have taken responsibility.
(Mon, 27 Jan 2025 03:42:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Cayetano Santos <csantosb <at> inventati.org>
:
bug acknowledged by developer.
(Mon, 27 Jan 2025 03:42:02 GMT)
Full text and
rfc822 format available.
Message #10 received at 75758-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org> writes:
> * gnu/packages/fpga.scm (arachne-pnr): Delete variable.
>
> Change-Id: I86a42633de96af04499106aabca43bfab4b35f24
> ---
>
> Arachne README.md states that this code is not maintained anymore, and advices to replace it by nextpnr.
I added this to the commit message.
>
> gnu/packages/fpga.scm | 42 ------------------------------------------
> 1 file changed, 42 deletions(-)
>
> diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm
> index fadf72ba1d..4af701bc14 100644
> --- a/gnu/packages/fpga.scm
> +++ b/gnu/packages/fpga.scm
> @@ -402,48 +402,6 @@ (define-public nextpnr-ice40
> (home-page "https://github.com/YosysHQ/nextpnr")
> (license license:expat))))
>
> -(define-public arachne-pnr
> - (let ((commit "840bdfdeb38809f9f6af4d89dd7b22959b176fdd")
> - (revision "2"))
> - (package
> - (name "arachne-pnr")
> - (version (string-append "0.0-" revision "-" (string-take commit 9)))
> - (source (origin
> - (method git-fetch)
> - (uri (git-reference
> - (url "https://github.com/YosysHQ/arachne-pnr")
> - (commit commit)))
> - (file-name (git-file-name name version))
> - (sha256
> - (base32
> - "1dqvjvgvsridybishv4pnigw9gypxh7r7nrqp9z9qq92v7c5rxzl"))))
> - (build-system gnu-build-system)
> - (arguments
> - `(#:test-target "test"
> - #:make-flags
> - (list (string-append "DESTDIR=" (assoc-ref %outputs "out"))
> - (string-append "ICEBOX=" (string-append
> - (assoc-ref %build-inputs "icestorm")
> - "/share/icebox")))
> - #:phases (modify-phases %standard-phases
> - (replace 'configure
> - (lambda* (#:key outputs inputs #:allow-other-keys)
> - (substitute* '("./tests/fsm/generate.py"
> - "./tests/combinatorial/generate.py")
> - (("#!/usr/bin/python") "#!/usr/bin/python2"))
> - #t)))))
> - (inputs
> - (list icestorm))
> - (native-inputs
> - `(("git" ,git) ; for determining its own version string
> - ("yosys" ,yosys) ; for tests
> - ("perl" ,perl) ; for shasum
> - ("python-2" ,python-2))) ; for tests
> - (home-page "https://github.com/YosysHQ/arachne-pnr")
> - (synopsis "Place-and-Route tool for FPGAs")
> - (description "Arachne-PNR is a Place-and-Route Tool For FPGAs.")
> - (license license:gpl2))))
> -
> (define-public gtkwave
> (package
> (name "gtkwave")
>
> base-commit: 49cb321eb799ef9da82ba83a0a0e0db4b1a72f51
pushed, closing.
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75758
; Package
guix-patches
.
(Mon, 27 Jan 2025 03:43:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Mon, 24 Feb 2025 12:24:14 GMT)
Full text and
rfc822 format available.
This bug report was last modified 176 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.