Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: ghc-transformers-compat-devel | Distribution: SUSE Linux Enterprise 15 |
Version: 0.7.2 | Vendor: SUSE LLC <https://www.suse.com/> |
Release: 150500.1.1 | Build date: Tue Dec 13 19:08:28 2022 |
Group: Unspecified | Build host: sheep65 |
Size: 4540226 | Source RPM: ghc-transformers-compat-0.7.2-150500.1.1.src.rpm |
Packager: https://www.suse.com/ | |
Url: https://hackage.haskell.org/package/transformers-compat | |
Summary: Haskell transformers-compat library development files |
This package provides the Haskell transformers-compat library development files.
BSD-3-Clause
* Sun Jun 26 2022 psimons@suse.com - Update transformers-compat to version 0.7.2. 0.7.2 [2022.06.26] - ----------------- * Add `Eq`, `Ord`, `Read`, and `Show` instances for `FunctorClassesDefault` in `Data.Functor.Classes.Generic`. * Mon Jan 10 2022 psimons@suse.com - Update transformers-compat to version 0.7.1 revision 1. Upstream has revised the Cabal build instructions on Hackage. * Mon Nov 01 2021 psimons@suse.com - Update transformers-compat to version 0.7.1. 0.7.1 [2021.10.30] - ----------------- * Backport new instances from GHC 9.2/`base-4.16` * `Eq1`, `Read1`, and `Show1` instances for `Complex` * `Eq{1,2}`, `Ord{1,2}`, `Show{1,2}`, and `Read{1,2}` instances for `(,,)` and `(,,,)` * Tue Jul 27 2021 psimons@suse.com - Update transformers-compat to version 0.7. 0.7 [2021.07.25] - --------------- * Backport changes from `transformers-0.6.*`: * Remove the long-deprecated `selectToCont` function from `Control.Monad.Trans.Select`. * Backport various `Generic`, `Generic1`, and `Data` instances. * Backport `handleE`, `tryE`, and `finallyE` to `Control.Monad.Trans.Except`. * Backport explicit implementations of `(<$)`, `liftA2`, `(*>)`, and `(<*)` for `Control.Applicative.Backwards`. * Backport a lazier implementation of `(<*>)` for `Control.Applicative.Lift`. * Thu Dec 17 2020 mimi.vx@gmail.com - disable %{ix86} build * Tue Oct 06 2020 psimons@suse.com - Update transformers-compat to version 0.6.6. 0.6.6 [2020.09.30] - ----------------- * Add `FunctorClassesDefault`, an adapter newtype suitable for `DerivingVia`, to `Data.Functor.Classes.Generic`. * Fix a bug in which `readsPrec1Default`/`liftReadsPrecDefault` would parse empty data types too strictly. * Tue Aug 18 2020 psimons@suse.com - Replace %setup -q with the more modern %autosetup macro. * Tue Jun 16 2020 psimons@suse.com - Re-generate file with latest version of spec-cleaner. * Fri Nov 08 2019 psimons@suse.com - Drop obsolete group attributes. * Sun May 12 2019 psimons@suse.com - Update transformers-compat to version 0.6.5. 0.6.5 [2019.05.11] - ----------------- * Ensure that the backported `MonadFail` instance for `ExceptT` is available when built against `transformers-0.4.*`. * Wed Apr 03 2019 psimons@suse.com - Update transformers-compat to version 0.6.4. 0.6.4 [2019.04.01] - ----------------- * Use more conservative CPP to guard the backported `MonadFix` instance for `ListT`. * Tue Apr 02 2019 psimons@suse.com - Update transformers-compat to version 0.6.3. 0.6.3 [2019.04.01] - ----------------- * Backport changes from `transformers-0.5.6.*`: * Backport the `MonadFix` instance for `ListT` in `Control.Monad.Trans.Instances`. * Generalize the type of `except` in `Control.Monad.Trans.Except`. * Backport `MonadFail` instances for `AccumT`, `Reverse`, and `SelectT` on pre-8.0 versions of GHC by depending on the `fail` package if necessary. * Backport `MonadFail` instances for monad transformer types in `Control.Monad.Trans.Instances`. * Sat Oct 20 2018 psimons@suse.com - Use https URL to refer to bugs.opensuse.org. * Wed Jul 18 2018 psimons@suse.com - Cosmetic: replace tabs with blanks, strip trailing white space, and update copyright headers with spec-cleaner. * Mon May 14 2018 psimons@suse.com - Update transformers-compat to version 0.6.2. * `transformers-compat` now uses automatic flags instead of manual ones. This has a number of benefits: * There is no need for making several simultaneous releases to support each flag combination. * As a result, the `cabal-install` constraint solver should have a much easier time figuring out install-plans involving `transformers-compat`. Due to old `cabal-install` bugs, `cabal-install-1.16` and older may have a harder time installing this package, so it is recommended that you use `cabal-install-1.18` or later. (Or, if you must use `cabal-install-1.16` or older, installing `transformers-compat` with the appropriate flags should help.) * Fix an oversight in which the `Control.Monad.Trans.Accum` and `Control.Monad.Trans.Select` modules were not backported when built with the `-ffour` flag. * Introduce the `Data.Functor.Classes.Generic` module, which provides functions that can generically implement methods in the `Eq1`, `Ord1`, `Read1`, and `Show1` classes (without the usual boilerplate involved). * Introduce the `generic-deriving` flag. When enabled, `transformers-compat` will depend on the `generic-deriving` library on older versions of GHC to backport `GHC.Generics` support for `Generic` instances and the machinery in `Data.Functor.Classes.Generic`. * Some instances were present in `Data.Functor.Sum` but not in `Control.Monad.Trans.Instances` (e.g., the `Generic`, `Typeable`, and `Data` instances for `Sum`). This has been fixed. * Backport changes from `transformers-0.5.5`: * Backport the `Semigroup` instance for `Constant` * Add `mapSelect` and `mapSelectT` * Define `selectToContT` (and deprecate `selectToCont` in favor of that) * Define some explicit `(*>)` definitions to avoid space leaks * Backport changes from `transformers-0.5.4` (i.e., add `Bifoldable` and `Bitraversable` instances for `Data.Functor.Constant`) * Backport changes from `transformers-0.5.3`: * Backport the `Control.Monad.Trans.Accum` and `Control.Monad.Trans.Select` modules * Backport the `eitherToErrors` and `elimLift` functions to `Control.Applicative.Lift` * Backport `Bits`, `FiniteBits`, `IsString`, `Num`, `Real`, `Integral`, `Fractional`, `Floating`, `RealFrac`, and `RealFloat` instances for `Data.Functor.Identity` * Backport `Monad`, `MonadFail`, and `MonadPlus` instances for `Data.Functor.Reverse` * Backport `Eq1`, `Ord1`, `Read1`, and `Show1` instances for `Data.Proxy` * Backport changes from `transformers-0.5.2` (i.e., add more `INLINE` annotations) * Backport changes from `transformers-0.5.1` (i.e., add `Bounded`, `Enum`, `Ix`, and `Storable` instances for `Identity`) * Thu Aug 03 2017 psimons@suse.com - Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. * Thu Sep 15 2016 psimons@suse.com - Update to version 0.5.1.4 revision 0 with cabal2obs. * Sun Jul 10 2016 psimons@suse.com - Update to version 0.4.0.4 revision 0 with cabal2obs. * Wed May 13 2015 mimi.vx@gmail.com - update to 0.4.0.4 * Tue Apr 21 2015 mimi.vx@gmail.com - initial commit
/usr/lib64/ghc-8.10.7/package.conf.d/transformers-compat-0.7.2.conf /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Control /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Control/Monad /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Control/Monad/Trans /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Control/Monad/Trans/Instances.dyn_hi /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Control/Monad/Trans/Instances.hi /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Control/Monad/Trans/Instances.p_hi /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Data /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Data/Functor /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Data/Functor/Classes /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Data/Functor/Classes/Generic /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Data/Functor/Classes/Generic.dyn_hi /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Data/Functor/Classes/Generic.hi /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Data/Functor/Classes/Generic.p_hi /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Data/Functor/Classes/Generic/Internal.dyn_hi /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Data/Functor/Classes/Generic/Internal.hi /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Data/Functor/Classes/Generic/Internal.p_hi /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Paths_transformers_compat.dyn_hi /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Paths_transformers_compat.hi /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/Paths_transformers_compat.p_hi /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/libHStransformers-compat-0.7.2-1KC3IXOcuxMEnmo4oqBwTm.a /usr/lib64/ghc-8.10.7/transformers-compat-0.7.2/libHStransformers-compat-0.7.2-1KC3IXOcuxMEnmo4oqBwTm_p.a /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2 /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/Control-Monad-Trans-Instances.html /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/Data-Functor-Classes-Generic-Internal.html /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/Data-Functor-Classes-Generic.html /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/doc-index.html /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/haddock-bundle.min.js /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/index.html /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/linuwial.css /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/meta.json /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/quick-jump.css /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/src /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/src/Control.Monad.Trans.Instances.html /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/src/Data.Functor.Classes.Generic.Internal.html /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/src/Data.Functor.Classes.Generic.html /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/src/Paths_transformers_compat.html /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/src/highlight.js /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/src/style.css /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/synopsis.png /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/transformers-compat.haddock /usr/share/doc/ghc-8.10.7/html/libraries/transformers-compat-0.7.2/transformers-compat.txt /usr/share/doc/packages/ghc-transformers-compat-devel /usr/share/doc/packages/ghc-transformers-compat-devel/CHANGELOG.markdown /usr/share/doc/packages/ghc-transformers-compat-devel/README.markdown
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Jul 9 18:11:13 2024