Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Nov 2018 15:11:16 +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: r485673 - head/sysutils/fswatch-mon
Message-ID:  <201811231511.wANFBG7Z085764@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: 0mp
Date: Fri Nov 23 15:11:16 2018
New Revision: 485673
URL: https://svnweb.freebsd.org/changeset/ports/485673

Log:
  sysutils/fswatch-mon: Update to 1.13.0
  
  - Update to 1.13.0
    - Changelogs:
      - https://github.com/emcrisostomo/fswatch/releases/tag/1.11.3
      - https://github.com/emcrisostomo/fswatch/releases/tag/1.12.0
      - https://github.com/emcrisostomo/fswatch/releases/tag/1.13.0
  - Do not use GH_* variables as USE_GITHUB is not set
  - Use DISTVERSION instead of PORTVERSION
  - Set LICENSE_FILE
  - Fix the order of variables
  - Use INSTALL_TARGET=install-strip instead of STRIP_CMD in post-install
  - Remove trailing whitespace from pkg-descr
  
  PR:		232556
  Reviewed by:	krion, mat
  Approved by:	krion (mentor), mat (mentor), maintainer (timeout)
  Differential Revision:	https://reviews.freebsd.org/D17666

Modified:
  head/sysutils/fswatch-mon/Makefile
  head/sysutils/fswatch-mon/distinfo
  head/sysutils/fswatch-mon/pkg-descr
  head/sysutils/fswatch-mon/pkg-plist

Modified: head/sysutils/fswatch-mon/Makefile
==============================================================================
--- head/sysutils/fswatch-mon/Makefile	Fri Nov 23 15:04:56 2018	(r485672)
+++ head/sysutils/fswatch-mon/Makefile	Fri Nov 23 15:11:16 2018	(r485673)
@@ -2,35 +2,29 @@
 # $FreeBSD$
 
 PORTNAME=	fswatch
-PORTVERSION=	1.11.2
-PORTREVISION=	2
+DISTVERSION=	1.13.0
 CATEGORIES=	sysutils
-MASTER_SITES=	https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/releases/download/${PORTVERSION}/
+MASTER_SITES=	https://github.com/emcrisostomo/${PORTNAME}/releases/download/${DISTVERSION}/
 PKGNAMESUFFIX=	-mon
 
 MAINTAINER=	enrico.m.crisostomo@gmail.com
 COMMENT=	Cross-platform file change monitor
 
 LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/COPYING
 
 USES=		compiler:c++11-lang libtool makeinfo
 USE_LDCONFIG=	yes
-GNU_CONFIGURE=	yes
 
+CONFLICTS_INSTALL=	fswatch-[0-9]*
+GNU_CONFIGURE=	yes
 INFO=	fswatch
+INSTALL_TARGET=	install-strip
 
-CONFLICTS_INSTALL=	fswatch-[0-9]*
-
 OPTIONS_DEFINE=	DOCS NLS
 OPTIONS_SUB=	yes
 
 NLS_USES=	gettext
 NLS_CONFIGURE_ENABLE=	nls
-
-GH_ACCOUNT=	emcrisostomo
-GH_PROJECT=	fswatch
-
-post-install:
-	  ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libfswatch.so
 
 .include <bsd.port.mk>

Modified: head/sysutils/fswatch-mon/distinfo
==============================================================================
--- head/sysutils/fswatch-mon/distinfo	Fri Nov 23 15:04:56 2018	(r485672)
+++ head/sysutils/fswatch-mon/distinfo	Fri Nov 23 15:11:16 2018	(r485673)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1509465920
-SHA256 (fswatch-1.11.2.tar.gz) = b7dadb84848ce666aac0311f9b4c739fbfee6a90c6097807a1f45ad4367294c2
-SIZE (fswatch-1.11.2.tar.gz) = 821822
+TIMESTAMP = 1540284604
+SHA256 (fswatch-1.13.0.tar.gz) = 90bcf0e02fa586251aa3233cb805ca4087e81de2c5960150a0676cc42f8534bb
+SIZE (fswatch-1.13.0.tar.gz) = 819644

Modified: head/sysutils/fswatch-mon/pkg-descr
==============================================================================
--- head/sysutils/fswatch-mon/pkg-descr	Fri Nov 23 15:04:56 2018	(r485672)
+++ head/sysutils/fswatch-mon/pkg-descr	Fri Nov 23 15:11:16 2018	(r485673)
@@ -1,17 +1,17 @@
-fswatch is a file change monitor that receives notifications when the contents 
-of the specified files or directories are modified. fswatch implements four 
+fswatch is a file change monitor that receives notifications when the contents
+of the specified files or directories are modified. fswatch implements four
 kinds of monitors:
 
   * A monitor based on the File System Events API of Apple OS X.
-  * A monitor based on kqueue, an event notification interface introduced in 
+  * A monitor based on kqueue, an event notification interface introduced in
     FreeBSD 4.1 and supported on most *BSD systems (including OS X).
-  * A monitor based on inotify, a Linux kernel subsystem that reports file 
+  * A monitor based on inotify, a Linux kernel subsystem that reports file
     system changes to applications.
-  * A monitor which periodically stats the file system, saves file modification 
-    times in memory and manually calculates file system changes, which can work 
+  * A monitor which periodically stats the file system, saves file modification
+    times in memory and manually calculates file system changes, which can work
     on any operating system where stat (2) can be used.
 
-fswatch should build and work correctly on any system shipping either of the 
+fswatch should build and work correctly on any system shipping either of the
 aforementioned APIs.
 
 WWW: https://github.com/emcrisostomo/fswatch

Modified: head/sysutils/fswatch-mon/pkg-plist
==============================================================================
--- head/sysutils/fswatch-mon/pkg-plist	Fri Nov 23 15:04:56 2018	(r485672)
+++ head/sysutils/fswatch-mon/pkg-plist	Fri Nov 23 15:11:16 2018	(r485673)
@@ -6,6 +6,7 @@ include/libfswatch/c++/libfswatch_exception.hpp
 include/libfswatch/c++/libfswatch_map.hpp
 include/libfswatch/c++/libfswatch_set.hpp
 include/libfswatch/c++/monitor.hpp
+include/libfswatch/c++/monitor_factory.hpp
 include/libfswatch/c++/path_utils.hpp
 include/libfswatch/c++/poll_monitor.hpp
 include/libfswatch/c++/string_utils.hpp
@@ -18,8 +19,8 @@ include/libfswatch/c/libfswatch_log.h
 include/libfswatch/c/libfswatch_types.h
 lib/libfswatch.a
 lib/libfswatch.so
-lib/libfswatch.so.9
-lib/libfswatch.so.9.0.0
+lib/libfswatch.so.11
+lib/libfswatch.so.11.0.0
 man/man7/fswatch.7.gz
 %%NLS%%%%PORTDOCS%%%%DOCSDIR%%/ABOUT-NLS
 %%PORTDOCS%%%%DOCSDIR%%/AUTHORS



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