lsof: fix url and checksum (#13801)

* lsof: fix url and checksum

* lsof: change the download url, add list url and version 4.91, 4.90
This commit is contained in:
noguchi-k 2019-11-27 03:10:14 +09:00 committed by Adam J. Stewart
parent 77c206185b
commit 8ea4692ee9

View File

@ -10,9 +10,12 @@ class Lsof(Package):
"""Lsof displays information about files open to Unix processes.""" """Lsof displays information about files open to Unix processes."""
homepage = "https://people.freebsd.org/~abe/" homepage = "https://people.freebsd.org/~abe/"
url = "https://www.mirrorservice.org/sites/lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_4.89.tar.gz" url = "https://www.mirrorservice.org/sites/lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_4.91.tar.gz"
list_url = "https://www.mirrorservice.org/sites/lsof.itap.purdue.edu/pub/tools/unix/lsof/OLD/"
version('4.89', sha256='ff4ac555966b587f06338475c8fcc0f41402b4c8e970e730f6f83b62be8b5c0d') version('4.91', sha256='3ca57887470fdf223a8e8aae4559cd3a26787bea93b94336c90ee8062e29e352')
version('4.90', sha256='27794d3d6499fd5f0f08710b4518b33aed8a4580951d1adf27f6c25898685c9e')
version('4.89', sha256='5d08da7ebe049c9d9a6472d6afb81aa5af54c4733a3f8822cbc22b57867633c9')
def install(self, spec, prefix): def install(self, spec, prefix):
tar = which('tar') tar = which('tar')