From owner-svn-ports-head@freebsd.org Fri Nov 23 15:11:18 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2756211493A7; Fri, 23 Nov 2018 15:11:18 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BCA888DA43; Fri, 23 Nov 2018 15:11:17 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9EB65202E5; Fri, 23 Nov 2018 15:11:17 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wANFBHpp085768; Fri, 23 Nov 2018 15:11:17 GMT (envelope-from 0mp@FreeBSD.org) Received: (from 0mp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wANFBG7Z085764; Fri, 23 Nov 2018 15:11:16 GMT (envelope-from 0mp@FreeBSD.org) Message-Id: <201811231511.wANFBG7Z085764@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: 0mp set sender to 0mp@FreeBSD.org using -f From: Mateusz Piotrowski <0mp@FreeBSD.org> Date: Fri, 23 Nov 2018 15:11:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485673 - head/sysutils/fswatch-mon X-SVN-Group: ports-head X-SVN-Commit-Author: 0mp X-SVN-Commit-Paths: head/sysutils/fswatch-mon X-SVN-Commit-Revision: 485673 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BCA888DA43 X-Spamd-Result: default: False [1.21 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_SHORT(0.05)[0.049,0]; NEURAL_SPAM_MEDIUM(0.74)[0.738,0]; NEURAL_SPAM_LONG(0.42)[0.420,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Nov 2018 15:11:18 -0000 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 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