GNU bug report logs -
#77555
[PATCH] gnu: minipro: Update to 0.7.2.
Previous Next
To reply to this bug, email your comments to 77555 AT debbugs.gnu.org.
There is no need to reopen the bug first.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
csantosb <at> inventati.org, ekaitz <at> elenq.tech, maxim.cournoyer <at> gmail.com, guix-patches <at> gnu.org
:
bug#77555
; Package
guix-patches
.
(Sat, 05 Apr 2025 16:21: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
csantosb <at> inventati.org, ekaitz <at> elenq.tech, maxim.cournoyer <at> gmail.com, guix-patches <at> gnu.org
.
(Sat, 05 Apr 2025 16:21:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/electronics.scm (minipro): Update to 0.7.2.
Change-Id: I73ee2d3e8e7db9ad5978576816926b2ae163a270
---
Updated and applied style.
gnu/packages/electronics.scm | 49 ++++++++++++++++++------------------
1 file changed, 25 insertions(+), 24 deletions(-)
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index ce35b19432..347f996191 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -475,30 +475,28 @@ (define-public m8c
(define-public minipro
;; Information needed to fix Makefile
- (let* ((commit "c181c2cf1619d00a520627d475e3fadb1eea5dac")
- (commit-short (substring commit 0 8))
- (date "2022-09-10 21:44:06 -0700"))
+ (let* ((date "2024-09-20 20:55:06 -0700"))
(package
(name "minipro")
- (version "0.6")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://gitlab.com/DavidGriffith/minipro.git")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "03xgmvvsxmqrz7blg7cqk0pb9ynhlq6v6jfl532zmjdzp5p3h10d"))))
+ (version "0.7.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.com/DavidGriffith/minipro.git")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1a7sbbs1byngkh3bh0dxwxk1iw1dx0kvp946y2lxb8rm6b7hwqym"))))
(native-inputs (list pkg-config which))
(inputs (list libusb))
(build-system gnu-build-system)
(arguments
(list
- #:tests? #f ; no test suite
+ #:tests? #f ;no test suite
#:phases
#~(modify-phases %standard-phases
- (delete 'configure) ; No ./configure script
+ (delete 'configure) ;No ./configure script
(add-before 'build 'fix-makefile
(lambda _
;; Fix some git related variables that minipro expects
@@ -506,17 +504,20 @@ (define-public minipro
(("GIT_BRANCH = .*")
(string-append "GIT_BRANCH = \"master\"\n"))
(("GIT_HASH = .*")
- (string-append "GIT_HASH = \"" #$commit "\"\n"))
- (("GIT_HASH_SHORT = .*")
- (string-append "GIT_HASH_SHORT = \"" #$commit-short "\"\n"))
+ (string-append "GIT_HASH = \""
+ #$version "\"\n"))
(("GIT_DATE = .*")
- (string-append "GIT_DATE = \"" #$date "\"\n"))))))
+ (string-append "GIT_DATE = \""
+ #$date "\"\n"))))))
#:make-flags
- #~(list (string-append "VERSION=" #$version)
- (string-append "PREFIX=" #$output)
- (string-append "UDEV_DIR=" #$output "/lib/udev")
- (string-append "COMPLETIONS_DIR=" #$output
- "/share/bash-completion/completions"))))
+ #~(list (string-append "VERSION="
+ #$version)
+ (string-append "PREFIX="
+ #$output)
+ (string-append "UDEV_DIR="
+ #$output "/lib/udev")
+ (string-append "COMPLETIONS_DIR="
+ #$output "/share/bash-completion/completions"))))
(synopsis "Controls the TL866xx series of chip programmers")
(description
"minipro is designed to program or read the contents of
base-commit: 521d08c6b938c4a4d207250a71966a1f7319202a
--
2.49.0
Reply sent
to
宋文武 <iyzsong <at> envs.net>
:
You have taken responsibility.
(Sun, 06 Apr 2025 07:23:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Cayetano Santos <csantosb <at> inventati.org>
:
bug acknowledged by developer.
(Sun, 06 Apr 2025 07:23:02 GMT)
Full text and
rfc822 format available.
Message #10 received at 77555-done <at> debbugs.gnu.org (full text, mbox):
Cayetano Santos <csantosb <at> inventati.org> writes:
> * gnu/packages/electronics.scm (minipro): Update to 0.7.2.
Pushed as commit f658cd1.
> Updated and applied style.
I leave out the style change.
Thank you!
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.