diff --git a/ghc-witherable.spec b/ghc-witherable.spec index d4f1ad30ebe9eba938a205b470e32854c31b4d86..110615ce64d26c1b5689fc6e63869541b9dc358f 100644 --- a/ghc-witherable.spec +++ b/ghc-witherable.spec @@ -3,13 +3,13 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.4.2 +Version: 0.5 Release: 1 Summary: Filterable traversable License: BSD-3-Clause 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/4.cabal#/%{pkg_name}.cabal +Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-base-devel BuildRequires: ghc-base-orphans-devel @@ -58,6 +58,7 @@ This package provides the Haskell %{pkg_name} library development files. %package -n ghc-%{pkg_name}-help Summary: Haskell %{pkg_name} library documentation +Requires: ghc-filesystem BuildArch: noarch %description -n ghc-%{pkg_name}-help @@ -102,5 +103,8 @@ cp -p %{SOURCE1} %{pkg_name}.cabal %files -n ghc-%{pkg_name}-prof -f ghc-%{pkg_name}-prof.files %changelog +* Sat May 24 2025 Lin Runze 0.5-1 +- Update to 0.5 revision 1. + * Thu Sep 28 2023 Lin Runze 0.4.2-1 - Initial packaging (Version 0.4.2) diff --git a/witherable-0.4.2.tar.gz b/witherable-0.4.2.tar.gz deleted file mode 100644 index 307e5d20a8bf416a692256b4ee5f4d505634c263..0000000000000000000000000000000000000000 Binary files a/witherable-0.4.2.tar.gz and /dev/null differ diff --git a/witherable-0.5.tar.gz b/witherable-0.5.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..65d502ffe60ba27e2c242fada54278de26f94997 Binary files /dev/null and b/witherable-0.5.tar.gz differ diff --git a/witherable.cabal b/witherable.cabal index 7ab90ed3550377f3b2aa97b38cec3c6adb99942e..46300240e4e232f632829e49ae44a44c20984c6b 100644 --- a/witherable.cabal +++ b/witherable.cabal @@ -1,56 +1,56 @@ -cabal-version: 2.4 -name: witherable -version: 0.4.2 -x-revision: 4 -synopsis: filterable traversable -description: A stronger variant of `traverse` which can remove elements and generalised mapMaybe, catMaybes, filter -homepage: https://github.com/fumieval/witherable -license: BSD-3-Clause -license-file: LICENSE -author: Fumiaki Kinoshita -maintainer: Fumiaki Kinoshita -copyright: Copyright (c) 2014 Fumiaki Kinoshita -category: Data -build-type: Simple -extra-source-files: CHANGELOG.md -tested-with: GHC ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.1 || ==9.2.1 - -source-repository head - type: git - location: https://github.com/fumieval/witherable.git - subdir: witherable - -library - exposed-modules: - Witherable - Data.Witherable - build-depends: base >=4.9 && <5, - base-orphans >=0.8.4 && <0.10, - containers >=0.5.7.1 && <0.7, - hashable >=1.2.7.0 && <1.5, - transformers >=0.5.2.0 && <0.7, - unordered-containers >=0.2.12.0 && <0.3, - vector >=0.12.2.0 && <0.14, - indexed-traversable >=0.1.1 && <0.2, - indexed-traversable-instances >=0.1 && <0.2 - hs-source-dirs: src - ghc-options: -Wall -Wcompat - default-language: Haskell2010 - -test-suite witherable-tests - type: exitcode-stdio-1.0 - main-is: tests.hs - hs-source-dirs: tests - ghc-options: -Wall -Wcompat - default-language: Haskell2010 - build-depends: base, - witherable, - containers, - hashable, - QuickCheck >=2.14.2, - quickcheck-instances, - tasty, - tasty-quickcheck, - transformers, - unordered-containers, - vector +cabal-version: 2.4 +name: witherable +version: 0.5 +x-revision: 1 +synopsis: filterable traversable +description: A stronger variant of `traverse` which can remove elements and generalised mapMaybe, catMaybes, filter +homepage: https://github.com/fumieval/witherable +license: BSD-3-Clause +license-file: LICENSE +author: Fumiaki Kinoshita +maintainer: Fumiaki Kinoshita +copyright: Copyright (c) 2014 Fumiaki Kinoshita +category: Data +build-type: Simple +extra-source-files: CHANGELOG.md +tested-with: GHC ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || + ==9.0.1 || ==9.2.8 || ==9.4.8 || ==9.6.5 || ==9.8.2 || ==9.10.1 + +source-repository head + type: git + location: https://github.com/fumieval/witherable.git + subdir: witherable + +library + exposed-modules: + Witherable + build-depends: base >=4.9 && <5, + base-orphans >=0.8.4 && <0.10, + containers >=0.5.7.1 && <0.8, + hashable >=1.2.7.0 && <1.6, + transformers >=0.5.2.0 && <0.7, + unordered-containers >=0.2.12.0 && <0.3, + vector >=0.12.2.0 && <0.14, + indexed-traversable >=0.1.1 && <0.2, + indexed-traversable-instances >=0.1 && <0.2 + hs-source-dirs: src + ghc-options: -Wall -Wcompat + default-language: Haskell2010 + +test-suite witherable-tests + type: exitcode-stdio-1.0 + main-is: tests.hs + hs-source-dirs: tests + ghc-options: -Wall -Wcompat + default-language: Haskell2010 + build-depends: base, + witherable, + containers, + hashable, + QuickCheck >=2.14.2, + quickcheck-instances, + tasty, + tasty-quickcheck, + transformers, + unordered-containers, + vector