update to 0.3.0.1

This commit is contained in:
Jens Petersen 2019-02-21 10:21:48 +08:00
parent 219d6572f4
commit 34ae19f712
4 changed files with 87 additions and 77 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
/fsnotify-0.0.11.tar.gz /fsnotify-0.0.11.tar.gz
/fsnotify-0.2.1.tar.gz /fsnotify-0.2.1.tar.gz
/fsnotify-0.2.1.1.tar.gz /fsnotify-0.2.1.1.tar.gz
/fsnotify-0.3.0.1.tar.gz

View File

@ -1,74 +1,76 @@
Name: fsnotify Name: fsnotify
Version: 0.2.1.1 Version: 0.3.0.1
x-revision: 1 x-revision: 1
Author: Mark Dittmer <mark.s.dittmer@gmail.com> Author: Mark Dittmer <mark.s.dittmer@gmail.com>, Niklas Broberg
Maintainer: Greg Weber <greg@gregweber.info>, Roman Cheplyaka <roma@ro-che.info> Maintainer: Tom McLaughlin <tom@codedown.io>
License: BSD3 License: BSD3
License-File: LICENSE License-File: LICENSE
Synopsis: Cross platform library for file change notification. Synopsis: Cross platform library for file change notification.
Description: Cross platform library for file creation, modification, Description: Cross platform library for file creation, modification,
and deletion notification. This library builds upon and deletion notification. This library builds upon
existing libraries for platform-specific Windows, Mac, existing libraries for platform-specific Windows, Mac,
and Linux filesystem event notification. and Linux filesystem event notification.
Category: Filesystem Category: Filesystem
Cabal-Version: >= 1.8 Cabal-Version: >= 1.8
Build-Type: Simple Build-Type: Simple
Homepage: https://github.com/haskell-fswatch/hfsnotify Homepage: https://github.com/haskell-fswatch/hfsnotify
Extra-Source-Files: Extra-Source-Files:
README.md README.md
CHANGELOG.md CHANGELOG.md
test/test.hs test/Test.hs
test/EventUtils.hs test/EventUtils.hs
Library Library
Build-Depends: base >= 4.3.1 && < 5 Build-Depends: base >= 4.8 && < 5
, containers >= 0.4 , bytestring >= 0.10.2
, directory >= 1.1.0.0 , containers >= 0.4
, filepath >= 1.3.0.0 , directory >= 1.1.0.0
, text >= 0.11.0 , filepath >= 1.3.0.0
, time >= 1.1 , text >= 0.11.0
, async >= 2.0.1 , time >= 1.1
, unix-compat >= 0.2 , async >= 2.0.1
Exposed-Modules: System.FSNotify , unix-compat >= 0.2
, System.FSNotify.Devel Exposed-Modules: System.FSNotify
Other-Modules: System.FSNotify.Listener , System.FSNotify.Devel
, System.FSNotify.Path Other-Modules: System.FSNotify.Listener
, System.FSNotify.Polling , System.FSNotify.Path
, System.FSNotify.Types , System.FSNotify.Polling
Hs-Source-Dirs: src , System.FSNotify.Types
GHC-Options: -Wall Hs-Source-Dirs: src
if os(linux) GHC-Options: -Wall
CPP-Options: -DOS_Linux if os(linux)
Other-Modules: System.FSNotify.Linux CPP-Options: -DOS_Linux
Build-Depends: hinotify >= 0.3.7 && < 0.3.10 Other-Modules: System.FSNotify.Linux
else Build-Depends: hinotify >= 0.3.0,
if os(windows) shelly >= 1.6.5,
CPP-Options: -DOS_Win32 unix >= 2.7.1.0
Other-Modules: System.FSNotify.Win32 else
Build-Depends: Win32-notify >= 0.3 if os(windows)
else CPP-Options: -DOS_Win32
if os(darwin) Other-Modules: System.FSNotify.Win32
CPP-Options: -DOS_Mac , System.Win32.FileNotify
Other-Modules: System.FSNotify.OSX , System.Win32.Notify
Build-Depends: hfsevents >= 0.1.3 Build-Depends: Win32
Hs-Source-Dirs: win-src
Test-Suite test else
Type: exitcode-stdio-1.0 if os(darwin)
Main-Is: test.hs CPP-Options: -DOS_Mac
Other-modules: EventUtils Other-Modules: System.FSNotify.OSX
Hs-Source-Dirs: test Build-Depends: hfsevents >= 0.1.3
GHC-Options: -Wall -threaded
Build-depends: base >= 4.3.1.0 Test-Suite test
, tasty >= 0.5 Type: exitcode-stdio-1.0
, tasty-hunit Main-Is: Test.hs
, directory Other-modules: EventUtils
, filepath Hs-Source-Dirs: test
, unix-compat GHC-Options: -Wall -threaded
, fsnotify
, async >= 2 if os(windows)
, temporary Build-Depends: base >= 4.3.1.0, tasty >= 0.5, tasty-hunit, directory, filepath, unix-compat, fsnotify, async >= 2, temporary, random, Win32
else
Source-Repository head Build-Depends: base >= 4.3.1.0, tasty >= 0.5, tasty-hunit, directory, filepath, unix-compat, fsnotify, async >= 2, temporary, random
Type: git
Location: git://github.com/haskell-fswatch/hfsnotify Source-Repository head
Type: git
Location: git://github.com/haskell-fswatch/hfsnotify

View File

@ -7,8 +7,8 @@
%bcond_without tests %bcond_without tests
Name: ghc-%{pkg_name} Name: ghc-%{pkg_name}
Version: 0.2.1.1 Version: 0.3.0.1
Release: 6%{?dist} Release: 1%{?dist}
Summary: Cross platform library for file change notification Summary: Cross platform library for file change notification
License: BSD License: BSD
@ -22,14 +22,18 @@ Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#
BuildRequires: ghc-Cabal-devel BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-rpm-macros BuildRequires: ghc-rpm-macros
BuildRequires: ghc-async-devel BuildRequires: ghc-async-devel
BuildRequires: ghc-bytestring-devel
BuildRequires: ghc-containers-devel BuildRequires: ghc-containers-devel
BuildRequires: ghc-directory-devel BuildRequires: ghc-directory-devel
BuildRequires: ghc-filepath-devel BuildRequires: ghc-filepath-devel
BuildRequires: ghc-hinotify-devel BuildRequires: ghc-hinotify-devel
BuildRequires: ghc-shelly-devel
BuildRequires: ghc-text-devel BuildRequires: ghc-text-devel
BuildRequires: ghc-time-devel BuildRequires: ghc-time-devel
BuildRequires: ghc-unix-compat-devel BuildRequires: ghc-unix-compat-devel
BuildRequires: ghc-unix-devel
%if %{with tests} %if %{with tests}
BuildRequires: ghc-random-devel
BuildRequires: ghc-tasty-devel BuildRequires: ghc-tasty-devel
BuildRequires: ghc-tasty-hunit-devel BuildRequires: ghc-tasty-hunit-devel
BuildRequires: ghc-temporary-devel BuildRequires: ghc-temporary-devel
@ -99,6 +103,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal
%changelog %changelog
* Thu Feb 21 2019 Jens Petersen <petersen@redhat.com> - 0.3.0.1-1
- update to 0.3.0.1
* Sun Feb 17 2019 Jens Petersen <petersen@redhat.com> - 0.2.1.1-6 * Sun Feb 17 2019 Jens Petersen <petersen@redhat.com> - 0.2.1.1-6
- refresh to cabal-rpm-0.13 - refresh to cabal-rpm-0.13

View File

@ -1 +1 @@
SHA512 (fsnotify-0.2.1.1.tar.gz) = d4ab5095840b6144582283e9a8e85143d8a929fdd8249421bbe23e05aeafad3c14da3a00e03c69afea94c0a1ba5ec9be85ec5fe8b3d0336cbce738a7279bcc01 SHA512 (fsnotify-0.3.0.1.tar.gz) = d5c96a54c1b4788e1d50f259d11d4e2d6eb7224552b50cb359a1f4cdcc2a9b7270f9b5ccdfe9738a163b54ab7ab5a0114de9cabc56660a7324cdfc4b16179e1a