* [bug#73987] [PATCH] gnu: openfpgaloader: Update to 0.12.1.
@ 2024-10-24 14:26 Cayetano Santos via Guix-patches via
2024-10-31 7:46 ` bug#73987: " Z572
0 siblings, 1 reply; 2+ messages in thread
From: Cayetano Santos via Guix-patches via @ 2024-10-24 14:26 UTC (permalink / raw)
To: 73987; +Cc: Cayetano Santos
* gnu/packages/fpga.scm (openfpgaloader): Update to 0.12.1.
---
New release: updated home page and dependencies.
gnu/packages/fpga.scm | 24 ++++++++++++++----------
1 file changed, 14 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm
index 545ec3482d..6d2ad9414f 100644
--- a/gnu/packages/fpga.scm
+++ b/gnu/packages/fpga.scm
@@ -603,25 +603,29 @@ (define-public fftgen
(define-public openfpgaloader
(package
(name "openfpgaloader")
- (version "0.9.0")
+ (version "0.12.1")
(source (origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/trabucayre/openFPGALoader.git")
- (commit (string-append "v" version))))
- (file-name (string-append name "-" version "-checkout"))
+ (url "https://github.com/trabucayre/openfpgaloader")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "1v3bwzhsrnsn304cqhd5azn68cl847qv8w8cb8bl7372jiqz5wqq"))))
+ "0r4dxryhfa1brhyh4z5ixmr7bvcqf3p8b339k6vrmmqnwy497548"))))
(build-system cmake-build-system)
- (native-inputs
- (list pkg-config))
- (inputs
- (list libftdi libusb hidapi zlib))
(arguments
`(#:tests? #f)) ; No tests exist
+ (native-inputs
+ (list pkg-config))
+ (inputs (list eudev
+ hidapi
+ libftdi
+ libgpiod
+ libusb
+ zlib))
(synopsis "Utility for programming FPGA")
(description "This package provides a program to transfer a bitstream
to an FPGA.")
- (home-page "https://f4pga.org/")
+ (home-page "https://trabucayre.github.io/openFPGALoader")
(license license:asl2.0)))
base-commit: 2394a7f5fbf60dd6adc0a870366adb57166b6d8b
--
2.46.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#73987: [PATCH] gnu: openfpgaloader: Update to 0.12.1.
2024-10-24 14:26 [bug#73987] [PATCH] gnu: openfpgaloader: Update to 0.12.1 Cayetano Santos via Guix-patches via
@ 2024-10-31 7:46 ` Z572
0 siblings, 0 replies; 2+ messages in thread
From: Z572 @ 2024-10-31 7:46 UTC (permalink / raw)
To: Cayetano Santos via Guix-patches via; +Cc: 73987-done, Cayetano Santos
[-- Attachment #1: Type: text/plain, Size: 2300 bytes --]
Cayetano Santos via Guix-patches via <guix-patches@gnu.org> writes:
> * gnu/packages/fpga.scm (openfpgaloader): Update to 0.12.1.
> ---
>
> New release: updated home page and dependencies.
>
adjust message to
* gnu/packages/fpga.scm (openfpgaloader): Update to 0.12.1.
[source]: Update url. Use GIT-FILE-NAME.
[inputs]: Add eudev and libgpiod.
[home-page]: Update it.
> gnu/packages/fpga.scm | 24 ++++++++++++++----------
> 1 file changed, 14 insertions(+), 10 deletions(-)
>
> diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm
> index 545ec3482d..6d2ad9414f 100644
> --- a/gnu/packages/fpga.scm
> +++ b/gnu/packages/fpga.scm
> @@ -603,25 +603,29 @@ (define-public fftgen
> (define-public openfpgaloader
> (package
> (name "openfpgaloader")
> - (version "0.9.0")
> + (version "0.12.1")
> (source (origin
> (method git-fetch)
> (uri (git-reference
> - (url "https://github.com/trabucayre/openFPGALoader.git")
> - (commit (string-append "v" version))))
> - (file-name (string-append name "-" version "-checkout"))
> + (url "https://github.com/trabucayre/openfpgaloader")
> + (commit (string-append "v" version))))
> + (file-name (git-file-name name version))
> (sha256
> (base32
> - "1v3bwzhsrnsn304cqhd5azn68cl847qv8w8cb8bl7372jiqz5wqq"))))
> + "0r4dxryhfa1brhyh4z5ixmr7bvcqf3p8b339k6vrmmqnwy497548"))))
> (build-system cmake-build-system)
> - (native-inputs
> - (list pkg-config))
> - (inputs
> - (list libftdi libusb hidapi zlib))
> (arguments
> `(#:tests? #f)) ; No tests exist
> + (native-inputs
> + (list pkg-config))
> + (inputs (list eudev
> + hidapi
> + libftdi
> + libgpiod
> + libusb
> + zlib))
> (synopsis "Utility for programming FPGA")
> (description "This package provides a program to transfer a bitstream
> to an FPGA.")
> - (home-page "https://f4pga.org/")
> + (home-page "https://trabucayre.github.io/openFPGALoader")
> (license license:asl2.0)))
>
> base-commit: 2394a7f5fbf60dd6adc0a870366adb57166b6d8b
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-10-31 7:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-24 14:26 [bug#73987] [PATCH] gnu: openfpgaloader: Update to 0.12.1 Cayetano Santos via Guix-patches via
2024-10-31 7:46 ` bug#73987: " Z572
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.