Date: Mon, 9 Jan 2017 22:46:50 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431040 - in head/sysutils: . fswatch-mon Message-ID: <201701092246.v09MkoYC029560@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <enrico.m.crisostomo@gmail.com> 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 <enrico.m.crisostomo@gmail.com> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701092246.v09MkoYC029560>