diff --git a/ghc-hinotify.changes b/ghc-hinotify.changes index 72ed15e..8243f45 100644 --- a/ghc-hinotify.changes +++ b/ghc-hinotify.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Wed Aug 22 09:18:11 UTC 2018 - psimons@suse.com + +- Update hinotify to version 0.4. + Upstream has not updated the file "CHANGELOG.md" since the last + release. + ------------------------------------------------------------------- Wed Jul 18 14:26:26 UTC 2018 - psimons@suse.com diff --git a/ghc-hinotify.spec b/ghc-hinotify.spec index 5428976..9d9ba33 100644 --- a/ghc-hinotify.spec +++ b/ghc-hinotify.spec @@ -19,14 +19,13 @@ %global pkg_name hinotify %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.3.10 +Version: 0.4 Release: 0 Summary: Haskell binding to inotify License: BSD-3-Clause Group: Development/Libraries/Haskell URL: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz -Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-async-devel BuildRequires: ghc-bytestring-devel @@ -54,7 +53,6 @@ This package provides the Haskell %{pkg_name} library development files. %prep %setup -q -n %{pkg_name}-%{version} -cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build diff --git a/hinotify-0.3.10.tar.gz b/hinotify-0.3.10.tar.gz deleted file mode 100644 index 0a98ebf..0000000 --- a/hinotify-0.3.10.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:af2b7d5733ab52ca38f0d9aed1ec37304f1d6964caa0fb556b8215858c1d5d9d -size 9193 diff --git a/hinotify-0.4.tar.gz b/hinotify-0.4.tar.gz new file mode 100644 index 0000000..dc9a9fb --- /dev/null +++ b/hinotify-0.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d182c524384aaa15eec666803643d067671e8e806f315c10758685e90a934f4 +size 9158 diff --git a/hinotify.cabal b/hinotify.cabal deleted file mode 100644 index d717fbb..0000000 --- a/hinotify.cabal +++ /dev/null @@ -1,89 +0,0 @@ -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 -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