mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: lsof: Update to 4.99.3.
* gnu/packages/lsof.scm (lsof): Update to 4.99.3. [native-inputs]: Add libtool. [arguments]<#:phases>: Add fix-configure-ac-version phase. Change-Id: Id086d46c5dbef6028e5eae4df1d2f0b24d4c3d76
This commit is contained in:
parent
fb59f4f392
commit
05da43104c
1 changed files with 10 additions and 2 deletions
|
@ -36,7 +36,7 @@ (define-module (gnu packages lsof)
|
||||||
(define-public lsof
|
(define-public lsof
|
||||||
(package
|
(package
|
||||||
(name "lsof")
|
(name "lsof")
|
||||||
(version "4.98.0")
|
(version "4.99.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -45,17 +45,25 @@ (define-public lsof
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0cjmhd01p5a9cy52lirv1rkidrzhyn366f4h212jcf1cmp8xh0hd"))))
|
"1v32407al4j0hhcph95lv4xvr9h012lii29iyq41iwj39zwfavax"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs (list automake
|
(native-inputs (list automake
|
||||||
autoconf
|
autoconf
|
||||||
groff ;for soelim
|
groff ;for soelim
|
||||||
|
libtool
|
||||||
perl
|
perl
|
||||||
pkg-config
|
pkg-config
|
||||||
procps ;for ps
|
procps ;for ps
|
||||||
util-linux)) ;for unshare
|
util-linux)) ;for unshare
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases (modify-phases %standard-phases
|
`(#:phases (modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-configure-ac-version
|
||||||
|
;; see https://github.com/lsof-org/lsof/commit/932a0b3b1992497e23fd9b8d31116b9ca9b0f98d
|
||||||
|
;; to fix tests/case-01-version.bash test fail.
|
||||||
|
(lambda _
|
||||||
|
(substitute* "configure.ac"
|
||||||
|
(("4\\.99\\.0")
|
||||||
|
"4.99.3"))))
|
||||||
(add-before 'bootstrap 'disable-failing-tests
|
(add-before 'bootstrap 'disable-failing-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "Makefile.am"
|
(substitute* "Makefile.am"
|
||||||
|
|
Loading…
Reference in a new issue