Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

ghc-lens-prof-5.3.3-1.3 RPM for aarch64

From OpenSuSE Ports Tumbleweed for aarch64

Name: ghc-lens-prof Distribution: openSUSE Tumbleweed
Version: 5.3.3 Vendor: openSUSE
Release: 1.3 Build date: Sat Dec 28 17:38:55 2024
Group: Unspecified Build host: reproducible
Size: 28814398 Source RPM: ghc-lens-5.3.3-1.3.src.rpm
Packager: http://bugs.opensuse.org
Url: https://hackage.haskell.org/package/lens
Summary: Haskell lens profiling library
This package provides the Haskell lens profiling library.

Provides

Requires

License

BSD-2-Clause

Changelog

* Sat Dec 28 2024 Peter Simons <psimons@suse.com>
  - Update lens to version 5.3.3.
    5.3.3 [2024.12.28]
    - -----------------
    * Add `makeFieldsId`, which generates overloaded field accessors using the
      same names as the underlying fields. This is intended for use with the
      `NoFieldSelectors` and `DuplicateRecordFields` language extensions.
      Also add `classIdFields :: LensRules` and `classIdNamer :: FieldNamer`, both
      of which use the same naming rules as `makeFieldsId`.
    * Update the `Prism`s in `Language.Haskell.TH.Lens` to reflect additions to
      `template-haskell-2.23.0.0`:
    * Add an `_OrP` `Prism` for the `Pat` data type.
    * Add `_ForallE`, `_ForallVisE`, and `_ConstrainedE` `Prism`s for the `Exp`
      data type.
* Fri Jul 05 2024 Peter Simons <psimons@suse.com>
  - Update lens to version 5.3.2 revision 2.
    5.3.2 [2024.05.12]
    - -----------------
    * Define the following lenses that perform an operation and result the old
      result:
    * `(<<<>:~)` (prepend to the front via `(<>)` and return the old result)
    * `(<<<|~)` (prepend to the front via `(<|)` and return the old result)
    * `(<<|>~)` (append to the back via `(|>)` and return the old result)
      Each of these also has a variant that end with `=` instead of `~` (e.g.,
      `(<<<>:=)`) for working in a `MonadState` setting.
    * Re-export `(<>:~)`, `(<<>:~)`, `(<|~)`, `(<<|~)`, `(|>~)`, and `(<|>~)` (as
      well as their variants which end with `=` instead of `~`, and their variants
      which return the old result) from `Control.Lens.Operators`.
    5.3.1 [2024.05.05]
    - -----------------
    * Add a `Magnify` instance for the CPS variant of `RWST` when building with
      `mtl-2.3` or later.
    5.3 [2024.05.04]
    - ---------------
    * Allow building with GHC 9.10.
    * Update the `Prism`s in `Language.Haskell.TH.Lens` to reflect additions to
      `template-haskell-2.22.0.0`:
    * The `_InfixD` `Prism` now focuses on `(Fixity, NamespaceSpecifier, Name)`
      when building with `template-haskell-2.22.0.0` or later.
    * Add `Prism`s for the newly introduced `NamespaceSpecifier` data type.
    * Add `_TypeP` and `_InvisP` `Prism`s for the `Pat` data type.
    * Add a `_TypeE` `Prism` for the `Exp` data type.
    * Add a `_SCCP` `Prism` for the `Pragma` data type.
    * Add the following `Setter`s for prepending and appending elements:
    * `(<>:~)`: prepend an element to the front via `(<>)`.
    * `(<<>:~)`: prepend an element to the front via `(<>)` and return the result.
    * `(<|~)`: cons an element to the front via `(<|)`.
    * `(<<|~)`: cons an element to the front via `(<|)` and return the result.
    * `(|>~)`: snoc an element to the back via `(|>)`.
    * `(<|>~)`: snoc an element to the back via `(|>)` and return the result.
      Each of these also has a variant that end with `=` instead of `~` (e.g.,
      `(<>:=)`) for working in a `MonadState` setting.
* Tue Apr 30 2024 Peter Simons <psimons@suse.com>
  - Update lens to version 5.2.3 revision 5.
    Upstream has revised the Cabal build instructions on Hackage.
* Fri Apr 05 2024 Peter Simons <psimons@suse.com>
  - Update lens to version 5.2.3 revision 4.
    Upstream has revised the Cabal build instructions on Hackage.
* Sun Mar 17 2024 Peter Simons <psimons@suse.com>
  - Update lens to version 5.2.3 revision 3.
    Upstream has revised the Cabal build instructions on Hackage.
* Sat Sep 30 2023 Peter Simons <psimons@suse.com>
  - Update lens to version 5.2.3 revision 2.
    Upstream has revised the Cabal build instructions on Hackage.
* Sun Aug 27 2023 Peter Simons <psimons@suse.com>
  - Update lens to version 5.2.3 revision 1.
    5.2.3 [2023.08.24]
    - -----------------
    * Allow building with GHC 9.8.
    * Add new `Prism`s to `Language.Haskell.TH.Lens` to reflect recent additions to
      `template-haskell`:
    * `_GetFieldE` and `_ProjectionE` `Prism`s for the `Exp` data type, whose
      corresponding data constructors were introduced in
      `template-haskell-2.18.*`.
    * `_TypedBracketE` and `_TypedSpliceE` `Prism`s for the `Exp` data type, whose
      corresponding data constructors were introduced in
      `template-haskell-2.21.*`.
    * `_BndrReq` and `_BndrInvis` `Prism`s for the `BndrVis` data type, which was
      added in `template-haskell-2.21.*`.
    * Add a `generateRecordSyntax` option to `Control.Lens.TH`, which controls
      whether to generate lenses using record update syntax or not. By default, this
      option is disabled.
    * Fix a bug in which the `declare*` Template Haskell functions would fail if a
      data type's field has a type that is defined in the same Template Haskell
      quotation.
    * Add `altOf`, which collects targets into any `Alternative`.
* Mon Jul 10 2023 Peter Simons <psimons@suse.com>
  - Update lens to version 5.2.2 revision 1.
    Upstream has revised the Cabal build instructions on Hackage.
* Thu Mar 30 2023 Peter Simons <psimons@suse.com>
  - Updated spec file to conform with ghc-rpm-macros-2.5.2.
* Sat Mar 18 2023 Peter Simons <psimons@suse.com>
  - Update lens to version 5.2.2.
    5.2.2 [2023.03.18]
    - -----------------
    * Fix a bug in which calling `ix i` (where `i` is a negative number) on `Text`
      or `ByteString` would return the `Just` the first character instead of
      returning `Nothing`.
* Wed Mar 15 2023 Peter Simons <psimons@suse.com>
  - Update lens to version 5.2.1 revision 3.
    Upstream has revised the Cabal build instructions on Hackage.
* Sun Mar 12 2023 Peter Simons <psimons@suse.com>
  - Update lens to version 5.2.1 revision 2.
    Upstream has revised the Cabal build instructions on Hackage.
* Tue Feb 28 2023 Peter Simons <psimons@suse.com>
  - Update lens to version 5.2.1.
    5.2.1 [2023.02.27]
    - -----------------
    * Allow building with GHC 9.6.
    * Allow building with GHC backends where `HTYPE_SIG_ATOMIC_T` is not defined,
      such as the WASM backend.
    * Support building with `th-abstraction-0.5.*`.
    * Define `_TypeDataD` in `Language.Haskell.TH.Lens` when building with
      `template-haskell-2.20.0.0` (GHC 9.6) or later.
* Thu Aug 11 2022 Peter Simons <psimons@suse.com>
  - Update lens to version 5.2.
    5.2 [2022.08.11]
    - ---------------
    * Allow building with GHC 9.4.
    * The type of `universeOf` has changed:
      ```diff
    - universeOf :: Getting       [a]  a a -> a -> [a]
      +universeOf :: Getting (Endo [a]) a a -> a -> [a]
      ```
      In many cases, using `Endo [a]` over `[a]` improves performance. Most call
      sites to `universeOf` will not be affected by this change, although you may
      need to update your code if you define your own combinators in terms of
      `universeOf`.
    * Allow `makeWrapped` to accept the names of data constructors. This way,
      `makeWrapped` can be used with data family instances, much like other
      functions in `Control.Lens.TH`.
    * Define `_OpaqueP`, `_DefaultD`, `_LamCasesE`, `_PromotedInfixT`, and
      `_PromotedUInfixT` in `Language.Haskell.TH.Lens` when building with
      `template-haskell-2.19.0.0` (GHC 9.4) or later.
* Tue Jun 21 2022 Peter Simons <psimons@suse.com>
  - Update lens to version 5.1.1 revision 1.
    Upstream has revised the Cabal build instructions on Hackage.
* Tue May 17 2022 Peter Simons <psimons@suse.com>
  - Update lens to version 5.1.1.
    5.1.1 [2022.05.17]
    - -----------------
    * Add `Data.HashSet.Lens.hashMap`, an `Iso` between a `HashSet a` and a
      `HashMap a ()`.
    * Allow building with `transformers-0.6.*` and `mtl-2.3.*`.
      Note that `lens` no longer defines `Zoom` instances for `ErrorT` or `ListT`
      when building with `mtl-2.3` or later. This is because `MonadState` is a
      superclass of `Zoom`, and the `MonadState` instances for `ErrorT` and `ListT`
      were removed in `mtl-2.3`. Be watchful of this if you build `lens` with
      `mtl-2.3` (or later) combined with an older version of `transformers`
      (pre-`0.6`) that defines `ErrorT` or `ListT`.

Files

/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Exception/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/At.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Combinators.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Cons.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Each.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Empty.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Equality.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Extras.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Fold.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Getter.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Indexed.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Bazaar.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/ByteString.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/CTypes.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Context.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Deque.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Doctest.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Exception.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/FieldTH.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Fold.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Getter.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Indexed.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Instances.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Iso.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Level.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/List.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Magma.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Prelude.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Prism.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/PrismTH.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Profunctor.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Review.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Setter.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/TH.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Internal/Zoom.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Iso.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Level.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Operators.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Plated.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Prism.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Profunctor.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Reified.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Review.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Setter.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/TH.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Traversal.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Tuple.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Type.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Unsound.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Wrapped.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Lens/Zoom.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Monad/Error/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Parallel/Strategies/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Control/Seq/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/Array/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/Bits/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/ByteString/Lazy/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/ByteString/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/ByteString/Strict/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/Complex/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/Data/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/Dynamic/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/HashSet/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/IntSet/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/List/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/Map/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/Sequence/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/Set/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/Text/Lazy/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/Text/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/Text/Strict/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/Tree/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/Typeable/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/Vector/Generic/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Data/Vector/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/GHC/Generics/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Language/Haskell/TH/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Numeric/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/Numeric/Natural/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/System/Exit/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/System/FilePath/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/System/IO/Error/Lens.p_hi
/usr/lib64/ghc-9.10.1/lib/lens-5.3.3/libHSlens-5.3.3-KqcYysQgLbBBoZBAnWvNDM_p.a


Generated by rpm2html 1.8.1

Fabrice Bellet, Fri Feb 21 02:51:21 2025