update to 0.3.10

This commit is contained in:
Jens Petersen 2019-02-21 10:26:30 +08:00
parent a5543ed5c4
commit ff5246f919
4 changed files with 100 additions and 93 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@
/hinotify-0.3.7.tar.gz
/hinotify-0.3.8.1.tar.gz
/hinotify-0.3.9.tar.gz
/hinotify-0.3.10.tar.gz

View File

@ -7,8 +7,8 @@
%bcond_without tests
Name: ghc-%{pkg_name}
Version: 0.3.9
Release: 9%{?dist}
Version: 0.3.10
Release: 1%{?dist}
Summary: Haskell binding to inotify
License: BSD
@ -22,9 +22,12 @@ Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-rpm-macros
BuildRequires: ghc-async-devel
BuildRequires: ghc-bytestring-devel
BuildRequires: ghc-containers-devel
BuildRequires: ghc-directory-devel
BuildRequires: ghc-unix-devel
%if %{with tests}
BuildRequires: ghc-directory-devel
%endif
# End cabal-rpm deps
%description
@ -89,6 +92,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal
%changelog
* Thu Feb 21 2019 Jens Petersen <petersen@redhat.com> - 0.3.10-1
- update to 0.3.10
* Sun Feb 17 2019 Jens Petersen <petersen@redhat.com> - 0.3.9-9
- refresh to cabal-rpm-0.13

View File

@ -1,89 +1,89 @@
name: hinotify
version: 0.3.9
x-revision: 1
build-type: Simple
synopsis: Haskell binding to inotify
description:
This library provides a wrapper to the Linux Kernel's inotify feature,
allowing applications to subscribe to notifications when a file is
accessed or modified.
category: System
homepage: https://github.com/kolmodin/hinotify.git
license: BSD3
license-file: LICENSE
author: Lennart Kolmodin
maintainer: Lennart Kolmodin <kolmodin@gmail.com>
extra-source-files: README.md, CHANGELOG.md
cabal-version: >= 1.10
source-repository head
type: git
location: git://github.com/kolmodin/hinotify.git
library
default-language: Haskell2010
build-depends: base >= 4.5.0.0 && < 5, containers, directory, unix,
async >= 2.0 && < 2.2
exposed-modules:
System.INotify
other-modules:
System.INotify.Masks
ghc-options: -Wall
includes: sys/inotify.h
hs-source-dirs: src
test-suite test001
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base, directory, hinotify
hs-source-dirs: src tests
main-is: test001-list-dir-contents.hs
other-modules: Utils
ghc-options: -Wall
test-suite test002
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base, directory, hinotify
hs-source-dirs: src tests
main-is: test002-writefile.hs
other-modules: Utils
ghc-options: -Wall
test-suite test003
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base, directory, hinotify
hs-source-dirs: src tests
main-is: test003-removefile.hs
other-modules: Utils
ghc-options: -Wall
test-suite test004
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base, directory, hinotify
hs-source-dirs: src tests
main-is: test004-modify-file.hs
other-modules: Utils
ghc-options: -Wall
test-suite test005
type: exitcode-stdio-1.0
build-depends: base, directory, hinotify
default-language: Haskell2010
hs-source-dirs: src tests
main-is: test005-move-file.hs
other-modules: Utils
ghc-options: -Wall
test-suite test006
type: exitcode-stdio-1.0
build-depends: base, directory, hinotify
default-language: Haskell2010
hs-source-dirs: src tests
main-is: test006-callbackHang.hs
other-modules: Utils
ghc-options: -Wall
name: hinotify
version: 0.3.10
x-revision: 1
build-type: Simple
synopsis: Haskell binding to inotify
description:
This library provides a wrapper to the Linux Kernel's inotify feature,
allowing applications to subscribe to notifications when a file is
accessed or modified.
category: System
homepage: https://github.com/kolmodin/hinotify.git
license: BSD3
license-file: LICENSE
author: Lennart Kolmodin
maintainer: Lennart Kolmodin <kolmodin@gmail.com>
extra-source-files: README.md, CHANGELOG.md
cabal-version: >= 1.10
source-repository head
type: git
location: git://github.com/kolmodin/hinotify.git
library
default-language: Haskell2010
build-depends: base >= 4.5.0.0 && < 5, bytestring, containers, unix,
async >= 2.0 && < 2.3
exposed-modules:
System.INotify
other-modules:
System.INotify.Masks
ghc-options: -Wall
includes: sys/inotify.h
hs-source-dirs: src
test-suite test001
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base, bytestring, directory, hinotify, unix
hs-source-dirs: src tests
main-is: test001-list-dir-contents.hs
other-modules: Utils
ghc-options: -Wall
test-suite test002
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base, bytestring, directory, hinotify, unix
hs-source-dirs: src tests
main-is: test002-writefile.hs
other-modules: Utils
ghc-options: -Wall
test-suite test003
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base, bytestring, directory, hinotify, unix
hs-source-dirs: src tests
main-is: test003-removefile.hs
other-modules: Utils
ghc-options: -Wall
test-suite test004
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base, bytestring, directory, hinotify, unix
hs-source-dirs: src tests
main-is: test004-modify-file.hs
other-modules: Utils
ghc-options: -Wall
test-suite test005
type: exitcode-stdio-1.0
build-depends: base, bytestring, directory, hinotify, unix
default-language: Haskell2010
hs-source-dirs: src tests
main-is: test005-move-file.hs
other-modules: Utils
ghc-options: -Wall
test-suite test006
type: exitcode-stdio-1.0
build-depends: base, bytestring, directory, hinotify, unix
default-language: Haskell2010
hs-source-dirs: src tests
main-is: test006-callbackHang.hs
other-modules: Utils
ghc-options: -Wall

View File

@ -1 +1 @@
SHA512 (hinotify-0.3.9.tar.gz) = cea1fd7304e3fd56cec67b5d17cec6d462cf581ce44b518208a5c07758aadbf85392efd4918dd2fbbbf6b2b433272386eeee13ba0ce1101111ada15fe8942a9a
SHA512 (hinotify-0.3.10.tar.gz) = d22f40bb055e14fd4be6669122a11b36fd7c5a989489d1b8c1e4117672b9f1700197a827f23242c91504b8236c349a4494adf724827001a77a1abdc11a9d6b8b