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

ghc-vector-devel-0.13.2.0-1.1 RPM for riscv64

From OpenSuSE Ports Tumbleweed for riscv64

Name: ghc-vector-devel Distribution: openSUSE Tumbleweed
Version: 0.13.2.0 Vendor: openSUSE
Release: 1.1 Build date: Thu Oct 31 19:01:59 2024
Group: Unspecified Build host: reproducible
Size: 39655443 Source RPM: ghc-vector-0.13.2.0-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://hackage.haskell.org/package/vector
Summary: Haskell vector library development files
This package provides the Haskell vector library development files.

Provides

Requires

License

BSD-3-Clause

Changelog

* Thu Oct 31 2024 Peter Simons <psimons@suse.com>
  - Update vector to version 0.13.2.0.
    [#] Changes in version 0.13.2.0
    * Strict boxed vector `Data.Vector.Strict` and `Data.Vector.Strict.Mutable` is
      added (#488). it ensures that all values in the vector are evaluated to WHNF.
    * `DoNotUnboxStrict`, `DoNotUnboxLazy`, and `DoNotUnboxNormalForm` wrapper are
      added for defining unbox instances for types that contain not unboxable fields.
      [#503](https://github.com/haskell/vector/issues/506),
      [#508](https://github.com/haskell/vector/pull/508)
    * `spanR` and `breakR` were added [#476](https://github.com/haskell/vector/pull/476).
      They allow parsing vector from the right.
    * We had some improvements on `*.Mutable.{next,prev}Permutation{,By}`
      [#498](https://github.com/haskell/vector/pull/498):
    * Add `*.Mutable.prevPermutation{,By}` and `*.Mutable.nextPermutationBy`
    * Improve time performance. We may now expect good specialization supported by inlining.
      The implementation has also been algorithmically updated: in the previous implementation
      the full enumeration of all the permutations of `[1..n]` took Omega(n*n!), but it now takes O(n!).
    * Add tests for `{next,prev}Permutation`
    * Add benchmarks for `{next,prev}Permutation`
    * Cabal >= 3.0 is now required for building package (#481).
    * `vector:benchmarks-O2` public sublibrary containing benchmarks is added (#481).
    * Type family `Mutable` provides instances for arrays from `primitive`.
    * Various documentation improvements.
* Sat Oct 19 2024 Peter Simons <psimons@suse.com>
  - Update vector to version 0.13.1.0 revision 2.
    Upstream has revised the Cabal build instructions on Hackage.
* Sat Mar 16 2024 Peter Simons <psimons@suse.com>
  - Update vector to version 0.13.1.0 revision 1.
    Upstream has revised the Cabal build instructions on Hackage.
* Sat Oct 07 2023 Peter Simons <psimons@suse.com>
  - Update vector to version 0.13.1.0.
    [#] Changes in version 0.13.1.0
    * Specialized variants of `findIndexR` are reexported for all vector
      types. [#469](https://github.com/haskell/vector/pull/469)
    * `UnboxViaPrim` could be used for deriving `Unbox` instances (`V_UnboxViaPrim`
      constructor is exported) [#450](https://github.com/haskell/vector/pull/450)
    * Fields of `Data.Vector.Fusion.Bundle.Size` are now strict
      [#456](https://github.com/haskell/vector/pull/456)
    * Compatibility with future GHC 9.10 release
      [#462](https://github.com/haskell/vector/pull/462)
    * Test suite no longer fails when built with QuickCheck-2.14
      [#461](https://github.com/haskell/vector/pull/461)
    * Doctests now work with current versions of GHC
      [#465](https://github.com/haskell/vector/pull/466)
    * Various documentation improvements
* Thu Aug 10 2023 Peter Simons <psimons@suse.com>
  - Update vector to version 0.13.0.0 revision 5.
    Upstream has revised the Cabal build instructions on Hackage.
* Thu Jul 27 2023 Peter Simons <psimons@suse.com>
  - Update vector to version 0.13.0.0 revision 4.
    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.
* Mon Feb 20 2023 Peter Simons <psimons@suse.com>
  - Update vector to version 0.13.0.0 revision 3.
    Upstream has revised the Cabal build instructions on Hackage.
* Mon Jan 16 2023 Peter Simons <psimons@suse.com>
  - Update vector to version 0.13.0.0 revision 2.
    Upstream has edited the change log file since the last release in
    a non-trivial way, i.e. they did more than just add a new entry
    at the top. You can review the file at:
    http://hackage.haskell.org/package/vector-0.13.0.0/src/changelog.md
* Fri May 20 2022 Peter Simons <psimons@suse.com>
  - Update vector to version 0.12.3.1 revision 2.
    Upstream has revised the Cabal build instructions on Hackage.
* Tue Nov 16 2021 psimons@suse.com
  - Update vector to version 0.12.3.1 revision 1.
    Upstream has revised the Cabal build instructions on Hackage.
* Wed Sep 22 2021 psimons@suse.com
  - Update vector to version 0.12.3.1.
    [#] Changes in version 0.12.3.1
    * Bugfix for ghcjs and `Double` memset for `Storable` vector:
      [#410](https://github.com/haskell/vector/issues/410)
    * Avoid haddock bug: [#383](https://github.com/haskell/vector/issues/383)
    * Improve haddock and doctests
    * Disable problematic tests with -boundschecks [#407](https://github.com/haskell/vector/pull/407)
* Tue Sep 07 2021 psimons@suse.com
  - Update vector to version 0.12.3.0 revision 2.
    Upstream has revised the Cabal build instructions on Hackage.
* Wed Apr 07 2021 psimons@suse.com
  - Update vector to version 0.12.3.0.
    [#] Changes in version 0.12.3.0
    * Fix performance regression due to introduction of `keepAlive#` primop in ghc-9.0: [#372](https://github.com/haskell/vector/pull/372)
    * Add monadic functions for mutable vectors: [#338](https://github.com/haskell/vector/pull/338)
    * Added folds for monadic functions: `mapM_`, `imapM_`, `forM_`, `iforM_`,
      `foldl`, `foldl'`, `foldM`, `foldM'`, `ifoldl`, `ifoldl'`, `ifoldM`,
      `ifoldM'`
    * Added `modifyM` and `unsafeModifyM` for mutable vectors
    * Added `generate` and `generateM` for mutable vectors
* Fri Jan 29 2021 psimons@suse.com
  - Update vector to version 0.12.2.0.
    [#] Changes in version 0.12.2.0
    * Add `MINIMAL` pragma to `Vector` & `MVector` type classes: [#11](https://github.com/haskell/vector/issues/11)
    * Export `unstreamM` from`from Data.Vector.Generic`: [#70](https://github.com/haskell/vector/issues/70)
    * New functions: `unfoldrExactN` and `unfoldrExactNM`: [#140](https://github.com/haskell/vector/issues/140)
    * Added `iforM` and `iforM_`: [#262](https://github.com/haskell/vector/issues/262)
    * Added `MonadFix` instance for boxed vectors: [#178](https://github.com/haskell/vector/issues/178)
    * Added `uncons` and `unsnoc`: [#212](https://github.com/haskell/vector/issues/212)
    * Added `foldMap` and `foldMap'`: [#263](https://github.com/haskell/vector/issues/263)
    * Added `isSameVector` for storable vectors
    * Added `toArray`, `fromArray`, `toMutableArray` and `fromMutableArray`
    * Added `iscanl`, `iscanl'`, `iscanr`, `iscanr'` to `Primitive`, `Storable` and `Unboxed`
    * Added `izipWithM`, `izipWithM_`, `imapM` and `imapM_` to `Primitive` and `Storable`
    * Added `ifoldM`, `ifoldM'`, `ifoldM_` and `ifoldM'_` to `Primitive` and `Storable`
    * Added `eqBy` and `cmpBy`
    * Added `findIndexR` to `Generic`: [#172](https://github.com/haskell/vector/issues/172)
    * Added `catMaybes`: [#329](https://github.com/haskell/vector/issues/329)
    * Added `mapMaybeM` and `imapMaybeM`: [#183](https://github.com/haskell/vector/issues/183)

Files

/usr/lib64/ghc-9.8.3/lib/package.conf.d/vector-0.13.2.0-3CBdgx7aDO41G3CdjTbJE5.conf
/usr/lib64/ghc-9.8.3/lib/package.conf.d/vector-0.13.2.0-7cmAXUOAqLM2KV1JMqQSxQ-benchmarks-O2.conf
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/AwShCC.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/AwShCC.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/FindIndexR.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/FindIndexR.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/HybCC.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/HybCC.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/Leaffix.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/Leaffix.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/ListRank.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/ListRank.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/MutableSet.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/MutableSet.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/NextPermutation.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/NextPermutation.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/Quickhull.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/Quickhull.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/Rootfix.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/Rootfix.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/Spectral.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/Spectral.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/Tridiag.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Algo/Tridiag.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Tasty.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/Tasty.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/TestData
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/TestData/Graph.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/TestData/Graph.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/TestData/ParenTree.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Bench/Vector/TestData/ParenTree.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Fusion
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Fusion/Bundle
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Fusion/Bundle.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Fusion/Bundle.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Fusion/Bundle/Monadic.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Fusion/Bundle/Monadic.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Fusion/Bundle/Size.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Fusion/Bundle/Size.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Fusion/Stream
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Fusion/Stream/Monadic.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Fusion/Stream/Monadic.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Fusion/Util.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Fusion/Util.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Generic
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Generic.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Generic.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Generic/Base.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Generic/Base.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Generic/Mutable
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Generic/Mutable.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Generic/Mutable.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Generic/Mutable/Base.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Generic/Mutable/Base.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Generic/New.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Generic/New.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Internal
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Internal/Check.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Internal/Check.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Mutable.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Mutable.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Primitive
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Primitive.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Primitive.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Primitive/Mutable.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Primitive/Mutable.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Storable
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Storable.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Storable.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Storable/Internal.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Storable/Internal.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Storable/Mutable.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Storable/Mutable.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Strict
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Strict.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Strict.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Strict/Mutable.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Strict/Mutable.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Unboxed
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Unboxed.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Unboxed.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Unboxed/Base.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Unboxed/Base.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Unboxed/Mutable.dyn_hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/Data/Vector/Unboxed/Mutable.hi
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/include
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/include/vector.h
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/libHSvector-0.13.2.0-3CBdgx7aDO41G3CdjTbJE5.a
/usr/lib64/ghc-9.8.3/lib/vector-0.13.2.0/libHSvector-0.13.2.0-7cmAXUOAqLM2KV1JMqQSxQ-benchmarks-O2.a
/usr/share/doc/packages/ghc-vector-devel
/usr/share/doc/packages/ghc-vector-devel/README.md
/usr/share/doc/packages/ghc-vector-devel/changelog.md


Generated by rpm2html 1.8.1

Fabrice Bellet, Wed Nov 13 00:41:02 2024