forked from pool/perl-Filesys-Notify-Simple
Accepting request 585301 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/585301 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Filesys-Notify-Simple?expand=0&rev=4
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ecafcdfdebd0706fdf1bb7ee1bbbc304a65d70c6cc05255d14fd133da6aca60d
|
||||
size 12935
|
||||
3
Filesys-Notify-Simple-0.13.tar.gz
Normal file
3
Filesys-Notify-Simple-0.13.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ade3d3db882ce2137e527201893d4b8c12b2dbd15009bb89c31cb91ba6495ba2
|
||||
size 13086
|
||||
28
cpanspec.yml
Normal file
28
cpanspec.yml
Normal file
@@ -0,0 +1,28 @@
|
||||
---
|
||||
#description_paragraphs: 3
|
||||
#description: |-
|
||||
# override description from CPAN
|
||||
#summary: override summary from CPAN
|
||||
#no_testing: broken upstream
|
||||
#sources:
|
||||
# - source1
|
||||
# - source2
|
||||
#patches:
|
||||
# foo.patch: -p1
|
||||
# bar.patch:
|
||||
#preamble: |-
|
||||
# BuildRequires: gcc-c++
|
||||
#post_prep: |-
|
||||
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
|
||||
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
|
||||
#post_build: |-
|
||||
# rm unused.files
|
||||
#post_install: |-
|
||||
# sed on %{name}.files
|
||||
#license: SUSE-NonFree
|
||||
#skip_noarch: 1
|
||||
#custom_build: |-
|
||||
#./Build build flags=%{?_smp_mflags} --myflag
|
||||
#custom_test: |-
|
||||
#startserver && make test
|
||||
#ignore_requires: Bizarre::Module
|
||||
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 9 06:20:01 UTC 2018 - coolo@suse.com
|
||||
|
||||
- updated to 0.13
|
||||
see /usr/share/doc/packages/perl-Filesys-Notify-Simple/Changes
|
||||
|
||||
0.13 2018-03-07 23:02:15 PST
|
||||
- Add OpenBSD support #22
|
||||
- Fix for a new Mac::FSEvents API #25
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 18 09:39:58 UTC 2013 - coolo@suse.com
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-Filesys-Notify-Simple
|
||||
#
|
||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,24 +17,20 @@
|
||||
|
||||
|
||||
Name: perl-Filesys-Notify-Simple
|
||||
Version: 0.12
|
||||
Version: 0.13
|
||||
Release: 0
|
||||
%define cpan_name Filesys-Notify-Simple
|
||||
Summary: Simple and dumb file system watcher
|
||||
License: Artistic-1.0 or GPL-1.0+
|
||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||
Group: Development/Libraries/Perl
|
||||
Url: http://search.cpan.org/dist/Filesys-Notify-Simple/
|
||||
Source: http://www.cpan.org/authors/id/M/MI/MIYAGAWA/%{cpan_name}-%{version}.tar.gz
|
||||
Source0: https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA/%{cpan_name}-%{version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(Test::SharedFork)
|
||||
#BuildRequires: perl(Filesys::Notify::KQueue)
|
||||
#BuildRequires: perl(Filesys::Notify::Simple)
|
||||
#BuildRequires: perl(Linux::Inotify2)
|
||||
#BuildRequires: perl(Mac::FSEvents)
|
||||
#BuildRequires: perl(Win32::ChangeNotify)
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
@@ -44,39 +40,27 @@ on Linux, fsevents on OS X, kqueue on FreeBSD and
|
||||
FindFirstChangeNotification on Windows if they're installed, with a
|
||||
fallback to the full directory scan if they're not available.
|
||||
|
||||
There are some limitations in this module. If you don't like it, use the
|
||||
File::ChangeNotify manpage.
|
||||
There are some limitations in this module. If you don't like it, use
|
||||
File::ChangeNotify.
|
||||
|
||||
* *
|
||||
* There is no file name based filter. Do it in your own code.
|
||||
|
||||
There is no file name based filter. Do it in your own code.
|
||||
* You can not get types of events (created, updated, deleted).
|
||||
|
||||
* *
|
||||
|
||||
You can not get types of events (created, updated, deleted).
|
||||
|
||||
* *
|
||||
|
||||
Currently 'wait' method blocks.
|
||||
* Currently 'wait' method blocks.
|
||||
|
||||
In return, this module doesn't depend on any non-core modules. Platform
|
||||
specific optimizations with the Linux::Inotify2 manpage, the Mac::FSEvents
|
||||
manpage, the Filesys::Notify::KQueue manpage and the Win32::ChangeNotify
|
||||
manpage are truely optional.
|
||||
specific optimizations with Linux::Inotify2, Mac::FSEvents,
|
||||
Filesys::Notify::KQueue and Win32::ChangeNotify are truely optional.
|
||||
|
||||
NOTE: Using the Win32::ChangeNotify manpage may put additional limitations.
|
||||
NOTE: Using Win32::ChangeNotify may put additional limitations.
|
||||
|
||||
* *
|
||||
* Win32::ChangeNotify uses FindFirstChangeNotificationA so that Unicode
|
||||
characters can not be handled. On cygwin (1.7 or later), Unicode characters
|
||||
should be able to be handled when Win32::ChangeNotify is not used.
|
||||
|
||||
the Win32::ChangeNotify manpage uses FindFirstChangeNotificationA so that
|
||||
Unicode characters can not be handled. On cygwin (1.7 or later), Unicode
|
||||
characters should be able to be handled when the Win32::ChangeNotify
|
||||
manpage is not used.
|
||||
|
||||
* *
|
||||
|
||||
If more than 64 directories are included under the specified paths, an
|
||||
error occurrs.
|
||||
* If more than 64 directories are included under the specified paths, an
|
||||
error occurrs.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
@@ -95,6 +79,7 @@ NOTE: Using the Win32::ChangeNotify manpage may put additional limitations.
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes cpanfile LICENSE README
|
||||
%doc Changes README
|
||||
%license LICENSE
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user