diff options
author | JinWang An <jinwang.an@samsung.com> | 2021-12-28 11:09:54 +0900 |
---|---|---|
committer | JinWang An <jinwang.an@samsung.com> | 2021-12-28 11:19:50 +0900 |
commit | 3cc5c63d5d33876a018318974a43d7ec9be6c081 (patch) | |
tree | 44552b865f2611086e9a8586b1882c974d67c4f0 | |
parent | d5614e49224899629aa1d6699cdb0d1736831dec (diff) | |
download | lsof-sandbox/jinwang.an/lsof-4.91_20211228.tar.gz lsof-sandbox/jinwang.an/lsof-4.91_20211228.tar.bz2 lsof-sandbox/jinwang.an/lsof-4.91_20211228.zip |
Bump to lsof 4.19submit/tizen/20211228.040006submit/tizen/20211228.034609accepted/tizen/unified/20211228.140308sandbox/jinwang.an/lsof-4.91_20211228
Change-Id: I399caeaeba7c806adc81aed75bed45998d203c98
Signed-off-by: JinWang An <jinwang.an@samsung.com>
-rw-r--r-- | packaging/lsof.manifest | 5 | ||||
-rw-r--r-- | packaging/lsof.spec | 37 |
2 files changed, 42 insertions, 0 deletions
diff --git a/packaging/lsof.manifest b/packaging/lsof.manifest new file mode 100644 index 0000000..017d22d --- /dev/null +++ b/packaging/lsof.manifest @@ -0,0 +1,5 @@ +<manifest> + <request> + <domain name="_"/> + </request> +</manifest> diff --git a/packaging/lsof.spec b/packaging/lsof.spec new file mode 100644 index 0000000..e35b13e --- /dev/null +++ b/packaging/lsof.spec @@ -0,0 +1,37 @@ +Name: lsof +Version: 4.91 +Release: 0 +License: Zlib +Summary: A utility which lists open files on a Linux/UNIX system +URL: http://people.freebsd.org/~abe/ +Group: Base/Tools +# lsof contains licensed code that we cannot ship. Therefore we use +# upstream2downstream.sh script to remove the code before shipping it. +Source0: %{name}_%{version}-linux-only.tar.xz +#Source1: upstream2downstream.sh +Source1001: lsof.manifest + +%description +Lsof stands for LiSt Open Files, and it does just that: it lists +information about files that are open by the processes running on a +UNIX system. + +%prep +%setup -q -n %{name}_%{version}-linux-only +cp %{SOURCE1001} . + +%build +LSOF_VSTR=2.6.16 LINUX_BASE=/proc ./Configure -n linux + +make DEBUG="%{optflags} -fPIC" CFGL="-pie " %{?_smp_mflags} + +%install +install -Dm755 lsof %{buildroot}%{_sbindir}/lsof +install -Dm644 lsof.8 %{buildroot}%{_mandir}/man8/lsof.8 + + +%docs_package + +%files +%manifest %{name}.manifest +%{_sbindir}/lsof |