Index: head/devel/libinotify/Makefile =================================================================== --- head/devel/libinotify/Makefile (revision 414760) +++ head/devel/libinotify/Makefile (revision 414761) @@ -1,23 +1,23 @@ # Created by: stas # $FreeBSD$ PORTNAME= libinotify -PORTVERSION= 20150910 +PORTVERSION= 20160505 CATEGORIES= devel MAINTAINER= delphij@FreeBSD.org COMMENT= Kevent based inotify compatible library LICENSE= MIT USE_GITHUB= yes -GH_ACCOUNT= dmatveev +GH_ACCOUNT= libinotify-kqueue GH_PROJECT= libinotify-kqueue -GH_TAGNAME= b2873cf +GH_TAGNAME= 417e789 USES= autoreconf libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes INSTALL_TARGET= install-strip .include Index: head/devel/libinotify/distinfo =================================================================== --- head/devel/libinotify/distinfo (revision 414760) +++ head/devel/libinotify/distinfo (revision 414761) @@ -1,2 +1,2 @@ -SHA256 (dmatveev-libinotify-kqueue-20150910-b2873cf_GH0.tar.gz) = 40672e27c8ea609ae79b370f0a6ac7a72ab9d1d9fc34ae5333980e612a337f19 -SIZE (dmatveev-libinotify-kqueue-20150910-b2873cf_GH0.tar.gz) = 61578 +SHA256 (libinotify-kqueue-libinotify-kqueue-20160505-417e789_GH0.tar.gz) = 706b8e257a7adf986f928fb3bc8de37e763b6692b6a6875396be64c3e82447ae +SIZE (libinotify-kqueue-libinotify-kqueue-20160505-417e789_GH0.tar.gz) = 67298 Index: head/devel/libinotify/pkg-descr =================================================================== --- head/devel/libinotify/pkg-descr (revision 414760) +++ head/devel/libinotify/pkg-descr (revision 414761) @@ -1,8 +1,8 @@ This library provides inotify-compatible interface for applications, that need to monitor changes happening in a filesystem. It can be useful when porting Linux applications, which often use inotify interface. The IN_OPEN, IN_CLOSE_WRITE and IN_CLOSE_NOWRITE events are not yet implemented, so the relevant tests are known to fail. -WWW: https://github.com/dmatveev/libinotify-kqueue +WWW: https://github.com/libinotify-kqueue/libinotify-kqueue Index: head/devel/libinotify/pkg-message =================================================================== --- head/devel/libinotify/pkg-message (revision 414760) +++ head/devel/libinotify/pkg-message (revision 414761) @@ -1,44 +1,44 @@ ============================================================================ Libinotify functionality on FreeBSD is missing support for - detecting a file being moved into or out of a directory within the same filesystem - certain modifications to a symbolic link (rather than the file it points to.) in addition to the known limitations on all platforms using kqueue(2) where various open and close notifications are unimplemented. This means the following regression tests will fail: Directory notifications: IN_MOVED_FROM IN_MOVED_TO Open/close notifications: IN_OPEN IN_CLOSE_NOWRITE IN_CLOSE_WRITE Symbolic Link notifications: IN_DONT_FOLLOW IN_ATTRIB IN_MOVE_SELF IN_DELETE_SELF Kernel patches to address the missing directory and symbolic link notifications are available from: -https://github.com/dmatveev/libinotify-kqueue/tree/master/patches +https://github.com/libinotify-kqueue/libinotify-kqueue/tree/master/patches ============================================================================= You might want to consider increasing the kern.maxfiles tunable if you plan to use this library for applications that need to monitor activity of a lot of files. If the default on your system is too low, add the following line to /boot/loader.conf, then reboot the system: kern.maxfiles="25000" =============================================================================