Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Feb 2020 12:47:26 +0000 (UTC)
From:      Mateusz Piotrowski <0mp@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r527078 - in head/sysutils: . checkrestart
Message-ID:  <202002251247.01PClQ5C060783@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: 0mp
Date: Tue Feb 25 12:47:26 2020
New Revision: 527078
URL: https://svnweb.freebsd.org/changeset/ports/527078

Log:
  New port: sysutils/checkrestart
  
  Find processes using stale binaries or shared libraries that may need
  restarting after an upgrade.
  
  WWW: http://github.com/Freaky/checkrestart
  
  PR:		244295
  Submitted by:	Thomas Hurst <tom@hur.st>

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

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Tue Feb 25 12:12:34 2020	(r527077)
+++ head/sysutils/Makefile	Tue Feb 25 12:47:26 2020	(r527078)
@@ -162,6 +162,7 @@
     SUBDIR += cfengine313
     SUBDIR += cfengine314
     SUBDIR += cfengine315
+    SUBDIR += checkrestart
     SUBDIR += chgrep
     SUBDIR += chyves
     SUBDIR += cinnamon-control-center

Added: head/sysutils/checkrestart/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/checkrestart/Makefile	Tue Feb 25 12:47:26 2020	(r527078)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME=	checkrestart
+DISTVERSIONPREFIX=	v
+DISTVERSION=	0.2.0
+CATEGORIES=	sysutils
+
+MAINTAINER=	tom@hur.st
+COMMENT=	Find processes that need restarting after an upgrade
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	Freaky
+
+PLIST_FILES=	bin/checkrestart \
+		share/man/man1/checkrestart.1.gz
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/checkrestart ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/checkrestart.1 ${STAGEDIR}${MAN1PREFIX}/share/man/man1
+
+.include <bsd.port.mk>

Added: head/sysutils/checkrestart/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/checkrestart/distinfo	Tue Feb 25 12:47:26 2020	(r527078)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1582634638
+SHA256 (Freaky-checkrestart-v0.2.0_GH0.tar.gz) = beb2e82cde38f9e11a278f8fefd7012abe2fcbd599d8b4e721d015a315ceb367
+SIZE (Freaky-checkrestart-v0.2.0_GH0.tar.gz) = 4784

Added: head/sysutils/checkrestart/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/checkrestart/pkg-descr	Tue Feb 25 12:47:26 2020	(r527078)
@@ -0,0 +1,4 @@
+Find processes using stale binaries or shared libraries that may need
+restarting after an upgrade.
+
+WWW: http://github.com/Freaky/checkrestart



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002251247.01PClQ5C060783>