2024-08-06 14:38:50 by Thomas Klausner | Files touched by this commit (2) | |
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
|
2024-06-17 18:43:16 by Jonathan Perkin | Files touched by this commit (1) |
Log message:
libinotify: Limit flag to newer clang versions.
Fixes build with clang 13. At some point we really need a better abstraction
for this in mk/compiler.
|
2023-09-11 09:52:43 by =?UTF-8?B?RnLDqWTDqXJpYyBGYXViZXJ0ZWF1?= | Files touched by this commit (1) |
Log message:
libinotify: Fix build with clang (Darwin)
pkgsrc changes:
---------------
* Add -Wno-deprecated-pragma to avoid error due to use of ATOMIC_VAR_INIT.
* set USE_LANGUAGES to c++17 because it seems to be the last version including
this macro before deletion.
* Bump revision.
|
2023-04-26 18:03:30 by Thomas Klausner | Files touched by this commit (4) | |
Log message:
libinotify: update to 0.0.20211018.
20211018 update
Share kqueue watches between inotify watches to reduce # of opened files on \
recursive directory watching.
Add support for C89 compilers and linuxolator
O_PATH open(2) flag support
|
2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016) |
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Could not be committed due to merge conflict:
devel/py-traitlets/distinfo
The following distfiles were unfetchable (note: some may be only fetched
conditionally):
./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
|
2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017) |
Log message:
devel: Remove SHA1 hashes for distfiles
|
2019-11-03 11:39:32 by Roland Illig | Files touched by this commit (274) |
Log message:
devel: align variable assignments
pkglint -Wall -F --only aligned --only indent -r
No manual corrections.
|
2018-05-30 16:37:10 by Min Sik Kim | Files touched by this commit (3) |
Log message:
devel/libinotify: Update to 0.0.20180201
Changes:
- Directory diffing has been rewritten. No more memory hungry shallow
lists allocations/deallocations
- Fix compilation on platforms where kevent.data size is bigger than
void *
- Workaround sporadic crashes caused by reversing of kevent order
|
2017-08-16 22:45:48 by Thomas Klausner | Files touched by this commit (209) |
Log message:
Comment out dead sites.
|
2016-04-22 17:27:11 by Jonathan Perkin | Files touched by this commit (2) |
Log message:
Switch to the GitHub maintained version of libinotify. This has a
number of fixes and improvements compared to the GSOC version. Most
notable for pkgsrc is that it now works on Darwin.
However it is still version 0, and there is no ChangeLog, so all we
can do is bump the PKGREVISION.
|