diffstat of debian/ for lsof_4.57-1 lsof_4.70-1osso1 README.Debian | 8 ++++---- changelog | 35 +++++++++++++++++++++++++++++++---- control | 8 ++++---- dirs | 1 + rules | 19 +++++++++++++++---- watch | 2 ++ 6 files changed, 57 insertions(+), 16 deletions(-) diff -Nru lsof-4.57/debian/README.Debian lsof-4.70/debian/README.Debian --- lsof-4.57/debian/README.Debian 2019-04-09 00:31:45.000000000 +0000 +++ lsof-4.70/debian/README.Debian 2006-05-08 05:47:16.000000000 +0000 @@ -6,8 +6,8 @@ Compiled with the HASSECURITY option enabled meaning you can only see open files for your own processes. -As of this version of the debian package 2.0.x kernels are no longer -supported. This version uses the /proc filesystem and should work on -any kernel 2.2.x or 2.4.x. +This version of the debian package no longer supports 2.0.x kernels +It now uses the /proc filesystem and should work on any kernel 2.2.x +or 2.4.x -Jim Mintha , Sat, 15 May 1999 22:50:27 +0200 +Jim Mintha , Thu Jul 18 2002 01:31:18 +0200 diff -Nru lsof-4.57/debian/changelog lsof-4.70/debian/changelog --- lsof-4.57/debian/changelog 2019-04-09 00:31:45.000000000 +0000 +++ lsof-4.70/debian/changelog 2006-05-08 05:47:16.000000000 +0000 @@ -1,3 +1,34 @@ +lsof (4.70-1osso1) unstable; urgency=medium + + * Added patch from Leonid to support thumb instructions (N#28036). + + -- Kimmo Hämäläinen Sat, 29 Apr 2006 16:48:21 +0300 + +lsof (4.70-1osso) unstable; urgency=medium + + * Removed 10 legally problematic files. + + -- Kimmo Hämäläinen Wed, 17 Aug 2005 17:07:32 +0300 + +lsof (4.70-1) unstable; urgency=medium + + * new upstream release (closes: #199017) + * removed lsof-2.2 provides (closes: #223908) + * new Co-Maintainer: Norbert Tretkowski + * added debian/watch file, thanks to Filippo Giunchedi + * bumped up Standards-Version to 3.6.1.0, no changes needed + + -- Norbert Tretkowski Sun, 22 Feb 2004 23:33:16 +0100 + +lsof (4.64-1) unstable; urgency=low + + * New upstream version (Closes: #152196) + * Fixed grammar in description (Closes: #145387) + * Moved to /usr/bin (with link to /usr/sbin) to + conform with FSSTND and traceroute (Closes: #55587) + + -- Jim Mintha Thu, 18 Jul 2002 01:28:50 +0200 + lsof (4.57-1) unstable; urgency=low * New upstream version. @@ -176,7 +207,3 @@ -- Dominik Kubla Fri, 20 Sep 1996 17:00:00 +0200 -Local variables: -mode: debian-changelog -add-log-mailing-address: "jmintha@debian.org" -End: diff -Nru lsof-4.57/debian/control lsof-4.70/debian/control --- lsof-4.57/debian/control 2019-04-09 00:31:45.000000000 +0000 +++ lsof-4.70/debian/control 2006-05-08 05:47:15.000000000 +0000 @@ -2,8 +2,9 @@ Section: utils Priority: standard Maintainer: Jim Mintha +Uploaders: Norbert Tretkowski Build-Depends: debhelper (>> 3.0.0) -Standards-Version: 3.5.2 +Standards-Version: 3.6.1.0 Package: lsof Architecture: any @@ -11,9 +12,8 @@ Description: List open files. Lsof is a Unix-specific diagnostic tool. Its name stands for LiSt Open Files, and it does just that. It lists - information about any files that are open by processes - current running on the system. + information about any files that are open, by processes + currently running on the system. The binary should work on any kernel in 2.2 or 2.4 Replaces: lsof-2.2, lsof-2.0.35, lsof-2.0.36, lsof-2.0.38 -Provides: lsof-2.2 Conflicts: suidmanager (<< 0.50) diff -Nru lsof-4.57/debian/dirs lsof-4.70/debian/dirs --- lsof-4.57/debian/dirs 2019-04-09 00:31:45.000000000 +0000 +++ lsof-4.70/debian/dirs 2006-05-08 05:47:16.000000000 +0000 @@ -1 +1,2 @@ usr/sbin +usr/bin diff -Nru lsof-4.57/debian/rules lsof-4.70/debian/rules --- lsof-4.57/debian/rules 2019-04-09 00:31:45.000000000 +0000 +++ lsof-4.70/debian/rules 2006-05-08 05:47:16.000000000 +0000 @@ -8,11 +8,22 @@ # This is the debhelper compatability version to use. export DH_COMPAT=3 +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +# Use soft-float and thumb mode if it enabled. +ifneq (,$(findstring thumb,$(DEB_BUILD_OPTIONS))) + CFLAGS += -mthumb +endif + configure: configure-stamp configure-stamp: dh_testdir # Add here commands to configure the package. - LSOF_VSTR="2.2" LINUX_BASE="/proc" ./Configure -n linux + LSOF_VSTR="2.2" LINUX_BASE="/proc" CFLAGS="$(CFLAGS)" ./Configure -n linux touch configure-stamp @@ -21,7 +32,7 @@ dh_testdir # Add here commands to compile the package. - $(MAKE) DEBUG="-g -Wall" + $(MAKE) DEBUG="-g -Wall $(CFLAGS)" touch build-stamp @@ -44,7 +55,8 @@ dh_installdirs # Add here commands to install the package into debian/lsof. - install -c -s -m 755 -g kmem lsof debian/lsof/usr/sbin + install -c -s -m 755 -g kmem lsof debian/lsof/usr/bin + ln -s ../bin/lsof debian/lsof/usr/sbin # Build architecture-independent files here. binary-indep: build install @@ -52,7 +64,6 @@ # Build architecture-dependent files here. binary-arch: build install - dh_testversion 2 dh_testdir dh_testroot # dh_installdebconf diff -Nru lsof-4.57/debian/watch lsof-4.70/debian/watch --- lsof-4.57/debian/watch 1970-01-01 00:00:00.000000000 +0000 +++ lsof-4.70/debian/watch 2006-05-08 05:47:16.000000000 +0000 @@ -0,0 +1,2 @@ +version=2 +opts=pasv ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_(.+)\.tar\.gz