From owner-svn-ports-head@freebsd.org Mon Jan 9 22:46:52 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2F0C7CA81BA; Mon, 9 Jan 2017 22:46:52 +0000 (UTC) (envelope-from feld@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 mx1.freebsd.org (Postfix) with ESMTPS id 086BD1A13; Mon, 9 Jan 2017 22:46:51 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v09Mkp4P029566; Mon, 9 Jan 2017 22:46:51 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v09MkoYC029560; Mon, 9 Jan 2017 22:46:50 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201701092246.v09MkoYC029560@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 9 Jan 2017 22:46:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431040 - in head/sysutils: . fswatch-mon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 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: Mon, 09 Jan 2017 22:46:52 -0000 Author: feld Date: Mon Jan 9 22:46:50 2017 New Revision: 431040 URL: https://svnweb.freebsd.org/changeset/ports/431040 Log: 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 FreeBSD 4.1 and supported on most *BSD systems (including OS X). * 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 on any operating system where stat (2) can be used. fswatch should build and work correctly on any system shipping either of the aforementioned APIs. WWW: https://github.com/emcrisostomo/fswatch PR: 200552 Submitted by: Enrico M. Crisostomo Added: head/sysutils/fswatch-mon/ head/sysutils/fswatch-mon/Makefile (contents, props changed) head/sysutils/fswatch-mon/distinfo (contents, props changed) head/sysutils/fswatch-mon/pkg-descr (contents, props changed) head/sysutils/fswatch-mon/pkg-plist (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Jan 9 22:21:30 2017 (r431039) +++ head/sysutils/Makefile Mon Jan 9 22:46:50 2017 (r431040) @@ -324,6 +324,7 @@ SUBDIR += fsbackup SUBDIR += fsc SUBDIR += fstyp + SUBDIR += fswatch-mon SUBDIR += ftwin SUBDIR += fusefs-afuse SUBDIR += fusefs-chironfs Added: head/sysutils/fswatch-mon/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fswatch-mon/Makefile Mon Jan 9 22:46:50 2017 (r431040) @@ -0,0 +1,34 @@ +# Created by: Enrico M. Crisostomo +# $FreeBSD$ + +PORTNAME= fswatch +PORTVERSION= 1.9.3 +CATEGORIES= sysutils +PKGNAMESUFFIX= -mon + +MAINTAINER= enrico.m.crisostomo@gmail.com +COMMENT= Cross-platform file change monitor + +LICENSE= GPLv3 + +USES= autoreconf gettext libtool makeinfo +USE_LDCONFIG= yes +GNU_CONFIGURE= yes + +INFO= fswatch + +CONFLCICTS_INSTALL= fswatch-[0-9]* + +OPTIONS_DEFINE= NLS +OPTIONS_SUB= yes + +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls + +USE_GITHUB= yes +GH_ACCOUNT= emcrisostomo + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libfswatch.so + +.include Added: head/sysutils/fswatch-mon/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fswatch-mon/distinfo Mon Jan 9 22:46:50 2017 (r431040) @@ -0,0 +1,3 @@ +TIMESTAMP = 1484000771 +SHA256 (emcrisostomo-fswatch-1.9.3_GH0.tar.gz) = f2ed037dacebf688773f94e474009094dff28bf65faaba8cc4adb16a57435b49 +SIZE (emcrisostomo-fswatch-1.9.3_GH0.tar.gz) = 202937 Added: head/sysutils/fswatch-mon/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fswatch-mon/pkg-descr Mon Jan 9 22:46:50 2017 (r431040) @@ -0,0 +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 +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 + FreeBSD 4.1 and supported on most *BSD systems (including OS X). + * 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 + on any operating system where stat (2) can be used. + +fswatch should build and work correctly on any system shipping either of the +aforementioned APIs. + +WWW: https://github.com/emcrisostomo/fswatch Added: head/sysutils/fswatch-mon/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fswatch-mon/pkg-plist Mon Jan 9 22:46:50 2017 (r431040) @@ -0,0 +1,53 @@ +bin/fswatch +include/libfswatch/c++/event.hpp +include/libfswatch/c++/filter.hpp +include/libfswatch/c++/kqueue_monitor.hpp +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++/path_utils.hpp +include/libfswatch/c++/poll_monitor.hpp +include/libfswatch/c++/string_utils.hpp +include/libfswatch/c/cevent.h +include/libfswatch/c/cfilter.h +include/libfswatch/c/cmonitor.h +include/libfswatch/c/error.h +include/libfswatch/c/libfswatch.h +include/libfswatch/c/libfswatch_log.h +include/libfswatch/c/libfswatch_types.h +lib/libfswatch.a +lib/libfswatch.so +lib/libfswatch.so.6 +lib/libfswatch.so.6.2.0 +man/man7/fswatch.7.gz +%%PORTDOCS%%%%DOCSDIR%%/ABOUT-NLS +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/CONTRIBUTING.md +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/LICENSE +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README.bsd +%%PORTDOCS%%%%DOCSDIR%%/README.codestyle +%%PORTDOCS%%%%DOCSDIR%%/README.freebsd +%%PORTDOCS%%%%DOCSDIR%%/README.gnu-build-system +%%PORTDOCS%%%%DOCSDIR%%/README.illumos +%%PORTDOCS%%%%DOCSDIR%%/README.linux +%%PORTDOCS%%%%DOCSDIR%%/README.md +%%PORTDOCS%%%%DOCSDIR%%/README.osx +%%PORTDOCS%%%%DOCSDIR%%/README.smartos +%%PORTDOCS%%%%DOCSDIR%%/README.solaris +%%PORTDOCS%%%%DOCSDIR%%/README.windows +%%PORTDOCS%%share/doc/libfswatch/AUTHORS +%%PORTDOCS%%share/doc/libfswatch/COPYING +%%PORTDOCS%%share/doc/libfswatch/LICENSE +%%PORTDOCS%%share/doc/libfswatch/NEWS +%%PORTDOCS%%share/doc/libfswatch/README.md +%%NLS%%share/locale/en@boldquot/LC_MESSAGES/fswatch.mo +%%NLS%%share/locale/en@boldquot/LC_MESSAGES/libfswatch.mo +%%NLS%%share/locale/en@quot/LC_MESSAGES/fswatch.mo +%%NLS%%share/locale/en@quot/LC_MESSAGES/libfswatch.mo +%%NLS%%share/locale/es/LC_MESSAGES/fswatch.mo +%%NLS%%share/locale/es/LC_MESSAGES/libfswatch.mo +%%NLS%%share/locale/it/LC_MESSAGES/fswatch.mo +%%NLS%%share/locale/it/LC_MESSAGES/libfswatch.mo