pkgsrc-WIP-changes archive

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

Update wip/fswatch to 1.7.0.



Module Name:	pkgsrc-wip
Committed By:	Filip Hajny <filip%joyent.com@localhost>
Pushed By:	fhajny
Date:		Thu Jan 14 13:40:05 2016 +0000
Changeset:	9568d0e5ec77c12ae73f7ee79a1fa0d8d8d99a18

Modified Files:
	fswatch/Makefile
	fswatch/PLIST
	fswatch/PLIST.Darwin
	fswatch/distinfo
Removed Files:
	fswatch/patches/patch-Makefile.am

Log Message:
Update wip/fswatch to 1.7.0.

Pull request by @CyBeRoni

https://github.com/joyent/pkgsrc-wip/pull/95

New in 1.7.0:
* Issue 35: Support Solaris/Illumos File Events Notification API.
* Issue 98: Add (-d, --directories) option to request the monitor
  to watch directories only during a recursive scan.
* Issue 99: A monitor using the File Events Notification API of the
  Solaris/Illumos kernel has been added.
* Issue 101: Add flag to watch file accesses.

New in 1.6.1:
* Texinfo documentation now includes @dircategory and @direntry tags
  to be compatible with install-info.

New in 1.6.0:
* fswatch can now be built on Microsoft Windows using Cygwin.
* A monitor for Microsoft Windows has been added.
* fswatch can report monitor buffer overflows (which cannot be avoided
  with certain monitors) as regular events for callers to recover
  gracefully.
* Monitors can be customized by passing monitor-specific configuration
  properties.

New in 1.5.1:
* fswatch-run scripts have been removed.
* Dependency on at least one supported shell (Zsh or Bash) has been
  removed.
* Fixes Issue 91: Can't compile fswatch 1.5.0 on FreeBSD 9.3-RELEASE.

New in 1.5.0:
* Fix issue 46: Allow filtering by event type.

New in 1.4.7:
* Fix bug in exclusion filter ordering (PR 75).
* README.md improvements.
* Documentation improvements.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=9568d0e5ec77c12ae73f7ee79a1fa0d8d8d99a18

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

diffstat:
 fswatch/Makefile                  |  2 +-
 fswatch/PLIST                     | 36 +++++++++++++++++++++++++++++-------
 fswatch/PLIST.Darwin              |  2 +-
 fswatch/distinfo                  |  8 ++++----
 fswatch/patches/patch-Makefile.am | 24 ------------------------
 5 files changed, 35 insertions(+), 37 deletions(-)

diffs:
diff --git a/fswatch/Makefile b/fswatch/Makefile
index b502c8a..09185e8 100644
--- a/fswatch/Makefile
+++ b/fswatch/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD: Makefile,v 1.2 2015/05/10 07:41:59 thomasklausner Exp $
 
-DISTNAME=	fswatch-1.4.6
+DISTNAME=	fswatch-1.7.0
 CATEGORIES=	sysutils
 MASTER_SITES=	${MASTER_SITE_GITHUB:=emcrisostomo/}
 
diff --git a/fswatch/PLIST b/fswatch/PLIST
index 7afd46e..c705eeb 100644
--- a/fswatch/PLIST
+++ b/fswatch/PLIST
@@ -1,31 +1,53 @@
-@comment $NetBSD: PLIST,v 1.2 2015/06/04 10:14:50 thomasklausner Exp $
+@comment $NetBSD$
 bin/fswatch
-include/libfswatch/c++/event.h
-include/libfswatch/c++/filter.h
-include/libfswatch/c++/kqueue_monitor.h
-include/libfswatch/c++/libfswatch_exception.h
-include/libfswatch/c++/monitor.h
-include/libfswatch/c++/poll_monitor.h
+include/libfswatch/c++/event.hpp
+include/libfswatch/c++/fen_monitor.hpp
+include/libfswatch/c++/filter.hpp
+include/libfswatch/c++/inotify_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/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_mem.h
 info/fswatch.info
+info/libfswatch.info
 lib/libfswatch.la
 man/man7/fswatch.7
+share/doc/fswatch/ABOUT-NLS
 share/doc/fswatch/AUTHORS
+share/doc/fswatch/CONTRIBUTING.md
 share/doc/fswatch/COPYING
 share/doc/fswatch/LICENSE
 share/doc/fswatch/NEWS
 share/doc/fswatch/README.bsd
+share/doc/fswatch/README.codestyle
 share/doc/fswatch/README.freebsd
 share/doc/fswatch/README.gnu-build-system
+share/doc/fswatch/README.illumos
 share/doc/fswatch/README.linux
 share/doc/fswatch/README.md
 share/doc/fswatch/README.osx
+share/doc/fswatch/README.smartos
+share/doc/fswatch/README.solaris
+share/doc/fswatch/README.windows
 share/doc/libfswatch/AUTHORS
 share/doc/libfswatch/COPYING
 share/doc/libfswatch/LICENSE
 share/doc/libfswatch/NEWS
 share/doc/libfswatch/README.md
+share/locale/en@boldquot/LC_MESSAGES/fswatch.mo
+share/locale/en@boldquot/LC_MESSAGES/libfswatch.mo
+share/locale/en@quot/LC_MESSAGES/fswatch.mo
+share/locale/en@quot/LC_MESSAGES/libfswatch.mo
+share/locale/es/LC_MESSAGES/fswatch.mo
+share/locale/es/LC_MESSAGES/libfswatch.mo
+share/locale/it/LC_MESSAGES/fswatch.mo
+share/locale/it/LC_MESSAGES/libfswatch.mo
diff --git a/fswatch/PLIST.Darwin b/fswatch/PLIST.Darwin
index 14e24e3..dd893ed 100644
--- a/fswatch/PLIST.Darwin
+++ b/fswatch/PLIST.Darwin
@@ -1,2 +1,2 @@
 @comment $NetBSD: PLIST.Darwin,v 1.1 2015/06/04 10:14:50 thomasklausner Exp $
-include/libfswatch/c++/fsevents_monitor.h
+include/libfswatch/c++/fsevents_monitor.hpp
diff --git a/fswatch/distinfo b/fswatch/distinfo
index 8ad0333..3d7ac9f 100644
--- a/fswatch/distinfo
+++ b/fswatch/distinfo
@@ -1,6 +1,6 @@
 $NetBSD: distinfo,v 1.2 2015/06/04 10:14:50 thomasklausner Exp $
 
-SHA1 (fswatch-1.4.6.tar.gz) = fb0dfd6fac6e11e11f8507bb084cb0b3c5ceb244
-RMD160 (fswatch-1.4.6.tar.gz) = ae62559177968a1d3b237a1a06a73fc7edd12c46
-Size (fswatch-1.4.6.tar.gz) = 126122 bytes
-SHA1 (patch-Makefile.am) = d3162ab9eb2ec996f792a7585765ba3dbf08aa2c
+SHA1 (fswatch-1.7.0.tar.gz) = 6fc8119c4b4e547eb797588f202a1cc6a2e18f96
+RMD160 (fswatch-1.7.0.tar.gz) = 75547da99df2767fb1c36e68a2dc934588a6ae45
+SHA512 (fswatch-1.7.0.tar.gz) = 2e1b659798b4497d3d9170e51055002e81010f22cd1ece0390444acb5d66cf0b96a2023d61f7aef26daf554541e9b3ad836391db41dd06ce51af8313faf5c9bf
+Size (fswatch-1.7.0.tar.gz) = 169248 bytes
diff --git a/fswatch/patches/patch-Makefile.am b/fswatch/patches/patch-Makefile.am
deleted file mode 100644
index 733bf86..0000000
--- a/fswatch/patches/patch-Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-Makefile.am,v 1.1 2015/06/04 10:14:50 thomasklausner Exp $
-
-Do not install fswatch-run-* conditionally on shell existence,
-would break packaging.
-TODO: install unconditionally, or add dependencies
-
---- Makefile.am.orig	2015-01-14 15:07:55.000000000 +0000
-+++ Makefile.am
-@@ -28,14 +28,9 @@ dist_doc_DATA  = README.bsd README.freeb
- dist_doc_DATA += README.linux README.osx AUTHORS COPYING LICENSE NEWS
- 
- dist_bin_SCRIPTS = 
--if HAVE_ZSH
--  dist_bin_SCRIPTS += scripts/fswatch-run-zsh
--endif
--if HAVE_BASH
--  dist_bin_SCRIPTS += scripts/fswatch-run-bash
--endif
- 
- install-exec-hook: fswatch-remove-links
-+not:
- if HAVE_ZSH
- 	$(LN_S) $(bindir)/fswatch-run-zsh $(DESTDIR)$(bindir)/fswatch-run
- else


Home | Main Index | Thread Index | Old Index