svn commit: r436654 - in head/sysutils: . lsop

Tobias Kortkamp tobik at FreeBSD.org
Tue Mar 21 21:00:34 UTC 2017


Author: tobik
Date: Tue Mar 21 21:00:32 2017
New Revision: 436654
URL: https://svnweb.freebsd.org/changeset/ports/436654

Log:
  New port: sysutils/lsop
  
  lsop is a FreeBSD utility to list all processes running with outdated
  binaries or shared libraries (that is, binaries or shared libraries
  that have been upgraded or simply deleted).
  
  lsop does not currently work when started in a FreeBSD jail!
  
  WWW: https://github.com/606u/lsop
  
  PR:		213340
  Submitted by:	606u at dir.bg
  Approved by:	lme (mentor)
  Differential Revision:	https://reviews.freebsd.org/D10083

Added:
  head/sysutils/lsop/
  head/sysutils/lsop/Makefile   (contents, props changed)
  head/sysutils/lsop/distinfo   (contents, props changed)
  head/sysutils/lsop/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Tue Mar 21 20:50:43 2017	(r436653)
+++ head/sysutils/Makefile	Tue Mar 21 21:00:32 2017	(r436654)
@@ -559,6 +559,7 @@
     SUBDIR += lookat
     SUBDIR += lr
     SUBDIR += lsof
+    SUBDIR += lsop
     SUBDIR += ltrace
     SUBDIR += lttng-tools
     SUBDIR += lttng-ust

Added: head/sysutils/lsop/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/lsop/Makefile	Tue Mar 21 21:00:32 2017	(r436654)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+PORTNAME=	lsop
+PORTVERSION=	0.1
+DISTVERSIONPREFIX=	v
+CATEGORIES=	sysutils
+
+MAINTAINER=	606u at dir.bg
+COMMENT=	List all processes running with outdated binaries or shared libraries
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	606u
+
+PLIST_FILES=	sbin/lsop \
+		libexec/nagios/check_restart
+
+post-patch:
+	@${REINPLACE_CMD} -e 's|lsop|${PREFIX}/sbin/lsop|' ${WRKSRC}/check_restart
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/lsop ${STAGEDIR}${PREFIX}/sbin
+	@${MKDIR} ${STAGEDIR}${PREFIX}/libexec/nagios
+	${INSTALL_SCRIPT} ${WRKSRC}/check_restart ${STAGEDIR}${PREFIX}/libexec/nagios
+
+.include <bsd.port.mk>

Added: head/sysutils/lsop/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/lsop/distinfo	Tue Mar 21 21:00:32 2017	(r436654)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1488798320
+SHA256 (606u-lsop-v0.1_GH0.tar.gz) = e69bcc173c24672dc320da0c30030d0790b25a0869f39379dbfa179282421df9
+SIZE (606u-lsop-v0.1_GH0.tar.gz) = 3918

Added: head/sysutils/lsop/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/lsop/pkg-descr	Tue Mar 21 21:00:32 2017	(r436654)
@@ -0,0 +1,7 @@
+lsop is a FreeBSD utility to list all processes running with outdated
+binaries or shared libraries (that is, binaries or shared libraries
+that have been upgraded or simply deleted).
+
+lsop does not currently work when started in a FreeBSD jail!
+
+WWW: https://github.com/606u/lsop


More information about the svn-ports-all mailing list