gnu: minicom: Update to 2.9.
* gnu/packages/engineering.scm (minicom): Update to 2.9. [arguments]: Don't explicitly return #t from phases. [native-inputs]: Upgrade autoconf to autoconf-2.71.
This commit is contained in:
parent
4e64374743
commit
fd2f78f5fc
1 changed files with 5 additions and 7 deletions
|
@ -1487,7 +1487,7 @@ replacement for the OpenDWG libraries.")
|
||||||
(define-public minicom
|
(define-public minicom
|
||||||
(package
|
(package
|
||||||
(name "minicom")
|
(name "minicom")
|
||||||
(version "2.8")
|
(version "2.9")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -1495,7 +1495,7 @@ replacement for the OpenDWG libraries.")
|
||||||
(url "https://salsa.debian.org/minicom-team/minicom.git")
|
(url "https://salsa.debian.org/minicom-team/minicom.git")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0kfihxbh9qkjk9m1932ajyqx384c2aj3d9yaphh3i9i7y1shxlpx"))
|
(base32 "18k0hiljsiq80x93c3qrd1cmcjjvsk1ymin03vncjp1v35xn8248"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -1508,15 +1508,13 @@ replacement for the OpenDWG libraries.")
|
||||||
(replace 'bootstrap
|
(replace 'bootstrap
|
||||||
;; autogen.sh needlessly hard-codes aclocal-1.14.
|
;; autogen.sh needlessly hard-codes aclocal-1.14.
|
||||||
(lambda _
|
(lambda _
|
||||||
(invoke "autoreconf" "-vif")
|
(invoke "autoreconf" "-vif")))
|
||||||
#t))
|
|
||||||
(add-before 'configure 'patch-lock-check
|
(add-before 'configure 'patch-lock-check
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "configure"
|
(substitute* "configure"
|
||||||
(("test -d [$]UUCPLOCK") "true"))
|
(("test -d [$]UUCPLOCK") "true")))))))
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf-2.71)
|
||||||
("automake" ,automake)
|
("automake" ,automake)
|
||||||
("gettext" ,gettext-minimal)
|
("gettext" ,gettext-minimal)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
|
|
Reference in a new issue