pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/libinotify



Module Name:    pkgsrc
Committed By:   wiz
Date:           Tue Aug  6 12:38:50 UTC 2024

Modified Files:
        pkgsrc/devel/libinotify: Makefile distinfo

Log Message:
libinotify: update to 0.0.20240724.

libinotify-kqueue is a gem of software that does two things:
* It implements a sophisticated filesystem changes detection algorithm via
  kqueue/kevent API (for instance, tracking renames or diff'ing directory contents)
* It exposes this functionality via Linux inotify interface, which allows the
  library to be used as a drop-in compatibility shim

The compatibility, however, comes at cost, since the library has to emulate
the inotify descriptor via an unix domain socket. This means that delivering an
event involves copying the data into the kernel and then pulling it back.

This change adds a special operating mode for libinotify-kqueue dubbed "direct".
In this mode the socket pipe is replaced with another kqueue that is used to
deliver events via a kevent(EVFILT_USER) call.
Using this mode requires minor changes to the client code compared to using
plain inotify API, but in return it allows for reusing libinotify's algorithms
without a performance penalty.

Sponsored by:   Serenity Cybersecurity, LLC


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/libinotify/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/libinotify/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/libinotify/Makefile
diff -u pkgsrc/devel/libinotify/Makefile:1.12 pkgsrc/devel/libinotify/Makefile:1.13
--- pkgsrc/devel/libinotify/Makefile:1.12       Mon Jun 17 16:43:15 2024
+++ pkgsrc/devel/libinotify/Makefile    Tue Aug  6 12:38:50 2024
@@ -1,12 +1,11 @@
-# $NetBSD: Makefile,v 1.12 2024/06/17 16:43:15 jperkin Exp $
+# $NetBSD: Makefile,v 1.13 2024/08/06 12:38:50 wiz Exp $
 
 DISTNAME=      libinotify
 PKGNAME=       ${DISTNAME}-0.0.${GITHUB_TAG}
-PKGREVISON=    1
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=libinotify-kqueue/}
 GITHUB_PROJECT=        libinotify-kqueue
-GITHUB_TAG=    20211018
+GITHUB_TAG=    20240724
 
 MAINTAINER=    me%dmitrymatveev.co.uk@localhost
 #HOMEPAGE=     http://dmitrymatveev.co.uk/gsoc11

Index: pkgsrc/devel/libinotify/distinfo
diff -u pkgsrc/devel/libinotify/distinfo:1.7 pkgsrc/devel/libinotify/distinfo:1.8
--- pkgsrc/devel/libinotify/distinfo:1.7        Wed Apr 26 16:03:30 2023
+++ pkgsrc/devel/libinotify/distinfo    Tue Aug  6 12:38:50 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.7 2023/04/26 16:03:30 wiz Exp $
+$NetBSD: distinfo,v 1.8 2024/08/06 12:38:50 wiz Exp $
 
-BLAKE2s (libinotify-20211018.tar.gz) = 6e02921da404953056c104647e5d305d311192e486587a881797cf36e209f07f
-SHA512 (libinotify-20211018.tar.gz) = 69a501403f323abd95b6052fc0ab94deb729637de3753ccd7e1fe8836020f4ff4cfa25ab46ea3fbff86f0c481cb3ae62053ca8144c2fb2404e3f4b1feb3f93a7
-Size (libinotify-20211018.tar.gz) = 74778 bytes
+BLAKE2s (libinotify-20240724.tar.gz) = 61c8b4a8a83d74c952319abf11f2a50292eab10cd7c78768563d14c85c4bec5d
+SHA512 (libinotify-20240724.tar.gz) = 0827686359bb0266a0ff0acdda063dcde8dde667112a22cf0821aef32417d9b7c910c14edb81fa63f7025d67738f709e048e0b7f8891d8ecdc522160dc1cfc56
+Size (libinotify-20240724.tar.gz) = 77857 bytes



Home | Main Index | Thread Index | Old Index