Compare commits
6 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 912d9606b6 | |||
| 8e9f49d2a3 | |||
| 76a2e27f7b | |||
| 0f48c11374 | |||
| cb4c25d471 | |||
| 00726ea591 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c38e341c567f5f16bfa64b72fc48bba5e93873d8572522e670e6f320bbc2122f
|
||||
size 853852
|
||||
3
fswatch-1.18.3.tar.gz
Normal file
3
fswatch-1.18.3.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:08b13c0e0f92bd5eee5a310bb58fc373f0cda8304f9decc34cfabc42adf8e9ca
|
||||
size 815588
|
||||
@@ -1,3 +1,54 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 17 13:12:18 UTC 2025 - Michal Vyskocil <mvyskocil@opensuse.org>
|
||||
|
||||
- Update to 1.18.3
|
||||
* Fix: spurious output inotify_rm_watch: Invalid argument
|
||||
* Issue #335: v. 1.18.0: build error: kFSEventStreamCreateFlagFileEvents was
|
||||
not declared in this scope.
|
||||
* Grammar fix in documentation.
|
||||
* Fix: typo in man page.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 27 21:47:32 UTC 2025 - Michal Vyskocil <mvyskocil@opensuse.org>
|
||||
|
||||
- Update to 1.18.2
|
||||
* Added event flag CloseWrite: file open for write has been closed.
|
||||
* inotify_monitor: added support for CloseWrite, adding support for events of
|
||||
type IN_CLOSE_WRITE.
|
||||
* Issue #337: fswatch exits on non-existing paths.
|
||||
- Update to 1.18.1
|
||||
* Issue #333: Handle non-ASCII characters in file paths to prevent segmentation
|
||||
faults in FSEvents callback.
|
||||
- require gcc > 7, as build fail in this version
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jan 5 10:35:58 UTC 2025 - Michal Vyskocil <mvyskocil@opensuse.org>
|
||||
|
||||
- Update to 1.18.0
|
||||
* The C++17 standard has been adopted: code has been rewritten and simplified
|
||||
to adobe new features of the C++17 standard library such as std::filesystem.
|
||||
* gettextize: gettext v. 0.22.5
|
||||
* Documentation: add reference to Go bindings.
|
||||
* Issue #313: Make -1, --one-event return $? when killed.
|
||||
* Remove unused or obsolete configuration checks.
|
||||
* Use the #include predefined notation to include generated configuration headers.
|
||||
* Use target CPPFLAGS instead of AM_CPPFLAGS.
|
||||
* Update FSEventStreamEventFlags flags and add support to macOS 10.13+ features.
|
||||
* Issue #278: fsevents monitor: Add support to for extended data, to allow
|
||||
* file inodes to be collected with events. This feature enables users to
|
||||
* correlate rename events.
|
||||
* Issue #278: inotify monitor: Add support for
|
||||
correlation cookie. This feature enables users to correlate rename events.
|
||||
* Add %c format specifier to print the event correlation id.
|
||||
* Require <mutex>, <atomic> and thread_local and remove checks and conditional code.
|
||||
- libfswatch v. 1.18.0 introduces the following features and bug fixes:
|
||||
* Update the event class to have a correlation id field.
|
||||
* Remove private headers from the list of installed header files.
|
||||
* Library interface does not depend on configuration any longer.
|
||||
- Packaging changes
|
||||
* Use autogen.sh to regnerate configure script
|
||||
* Remove non Linux READMEs
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 18 22:42:24 UTC 2024 - Michal Vyskocil <mvyskocill@opensuse.org>
|
||||
|
||||
|
||||
19
fswatch.spec
19
fswatch.spec
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package fswatch
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: fswatch
|
||||
Version: 1.17.1
|
||||
Version: 1.18.3
|
||||
Release: 0
|
||||
Summary: Multi platform file change monitor
|
||||
License: GPL-3.0-or-later
|
||||
@@ -25,7 +25,8 @@ URL: https://github.com/emcrisostomo/fswatch
|
||||
Source: https://github.com/emcrisostomo/fswatch/releases/download/%{version}/fswatch-%{version}.tar.gz
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: gcc-c++ > 7
|
||||
BuildRequires: libtool
|
||||
|
||||
%package -n lib%{name}13
|
||||
Summary: Shared library for %{name}
|
||||
@@ -72,6 +73,9 @@ monitors based on:
|
||||
%configure
|
||||
%make_build
|
||||
|
||||
%check
|
||||
%{__make} check
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
||||
@@ -82,6 +86,15 @@ rm %{buildroot}%{_libdir}/lib%{name}.la
|
||||
# remove copying - will get installed via license
|
||||
rm %{buildroot}%{_datadir}/doc/%{name}/COPYING
|
||||
|
||||
# remove non Linux READMEs
|
||||
rm %{buildroot}%{_datadir}/doc/%{name}/README.bsd \
|
||||
%{buildroot}%{_datadir}/doc/%{name}/README.freebsd \
|
||||
%{buildroot}%{_datadir}/doc/%{name}/README.illumos \
|
||||
%{buildroot}%{_datadir}/doc/%{name}/README.macos \
|
||||
%{buildroot}%{_datadir}/doc/%{name}/README.smartos \
|
||||
%{buildroot}%{_datadir}/doc/%{name}/README.solaris \
|
||||
%{buildroot}%{_datadir}/doc/%{name}/README.windows
|
||||
|
||||
install -d -m0755 %{buildroot}%{_defaultdocdir}
|
||||
mv %{buildroot}%{_datadir}/doc/%{name} %{buildroot}%{_defaultdocdir}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user