diff --git a/ghc-hinotify.changes b/ghc-hinotify.changes deleted file mode 100644 index 60ae1ea..0000000 --- a/ghc-hinotify.changes +++ /dev/null @@ -1,26 +0,0 @@ -------------------------------------------------------------------- -Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com - -- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. - -------------------------------------------------------------------- -Sun Dec 4 19:47:34 UTC 2016 - psimons@suse.com - -- Update to version 0.3.9 with cabal2obs. - -------------------------------------------------------------------- -Sun Jul 10 17:18:46 UTC 2016 - psimons@suse.com - -- Update to version 0.3.8.1 revision 0 with cabal2obs. - -------------------------------------------------------------------- -Sun Aug 9 15:59:00 UTC 2015 - mimi.vx@gmail.com - -- update to 0.3.8.1 -* Use file system encoding for file names. - -------------------------------------------------------------------- -Mon Feb 16 20:46:05 UTC 2015 - mimi.vx@gmail.com - -- initial commit of package ghc-hinotify version 0.3.7 - diff --git a/ghc-hinotify.spec b/ghc-hinotify.spec index 50078fe..5428976 100644 --- a/ghc-hinotify.spec +++ b/ghc-hinotify.spec @@ -1,7 +1,7 @@ # # spec file for package ghc-hinotify # -# Copyright (c) 2017 SUSE LINUX 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 @@ -19,7 +19,7 @@ %global pkg_name hinotify %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.3.9 +Version: 0.3.10 Release: 0 Summary: Haskell binding to inotify License: BSD-3-Clause @@ -29,10 +29,13 @@ Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg 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 BuildRequires: ghc-containers-devel -BuildRequires: ghc-directory-devel BuildRequires: ghc-rpm-macros BuildRequires: ghc-unix-devel +%if %{with tests} +BuildRequires: ghc-directory-devel +%endif %description This library provides a wrapper to the Linux Kernel's inotify feature, allowing diff --git a/hinotify-0.3.10.tar.gz b/hinotify-0.3.10.tar.gz new file mode 100644 index 0000000..0a98ebf --- /dev/null +++ b/hinotify-0.3.10.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af2b7d5733ab52ca38f0d9aed1ec37304f1d6964caa0fb556b8215858c1d5d9d +size 9193 diff --git a/hinotify-0.3.9.tar.gz b/hinotify-0.3.9.tar.gz deleted file mode 100644 index a68dc84..0000000 --- a/hinotify-0.3.9.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f2480e4c08a516831c2221eebc6a9d3242e892932d9315c34cbe92a101c5df99 -size 9021 diff --git a/hinotify.cabal b/hinotify.cabal index 9fdef36..d717fbb 100644 --- a/hinotify.cabal +++ b/hinotify.cabal @@ -1,5 +1,5 @@ name: hinotify -version: 0.3.9 +version: 0.3.10 x-revision: 1 build-type: Simple synopsis: Haskell binding to inotify @@ -22,8 +22,8 @@ source-repository head library default-language: Haskell2010 - build-depends: base >= 4.5.0.0 && < 5, containers, directory, unix, - async >= 2.0 && < 2.2 + build-depends: base >= 4.5.0.0 && < 5, bytestring, containers, unix, + async >= 2.0 && < 2.3 exposed-modules: System.INotify @@ -37,7 +37,7 @@ library test-suite test001 type: exitcode-stdio-1.0 default-language: Haskell2010 - build-depends: base, directory, hinotify + build-depends: base, bytestring, directory, hinotify, unix hs-source-dirs: src tests main-is: test001-list-dir-contents.hs other-modules: Utils @@ -46,7 +46,7 @@ test-suite test001 test-suite test002 type: exitcode-stdio-1.0 default-language: Haskell2010 - build-depends: base, directory, hinotify + build-depends: base, bytestring, directory, hinotify, unix hs-source-dirs: src tests main-is: test002-writefile.hs other-modules: Utils @@ -55,7 +55,7 @@ test-suite test002 test-suite test003 type: exitcode-stdio-1.0 default-language: Haskell2010 - build-depends: base, directory, hinotify + build-depends: base, bytestring, directory, hinotify, unix hs-source-dirs: src tests main-is: test003-removefile.hs other-modules: Utils @@ -64,7 +64,7 @@ test-suite test003 test-suite test004 type: exitcode-stdio-1.0 default-language: Haskell2010 - build-depends: base, directory, hinotify + build-depends: base, bytestring, directory, hinotify, unix hs-source-dirs: src tests main-is: test004-modify-file.hs other-modules: Utils @@ -72,7 +72,7 @@ test-suite test004 test-suite test005 type: exitcode-stdio-1.0 - build-depends: base, directory, hinotify + build-depends: base, bytestring, directory, hinotify, unix default-language: Haskell2010 hs-source-dirs: src tests main-is: test005-move-file.hs @@ -81,7 +81,7 @@ test-suite test005 test-suite test006 type: exitcode-stdio-1.0 - build-depends: base, directory, hinotify + build-depends: base, bytestring, directory, hinotify, unix default-language: Haskell2010 hs-source-dirs: src tests main-is: test006-callbackHang.hs