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

ghc-scientific-devel-0.3.7.0-150500.1.1 RPM for ppc64le

From OpenSuSE Leap 15.5 for ppc64le

Name: ghc-scientific-devel Distribution: SUSE Linux Enterprise 15
Version: 0.3.7.0 Vendor: SUSE LLC <https://www.suse.com/>
Release: 150500.1.1 Build date: Tue Dec 13 22:20:40 2022
Group: Unspecified Build host: cabernet
Size: 4359435 Source RPM: ghc-scientific-0.3.7.0-150500.1.1.src.rpm
Packager: https://www.suse.com/
Url: https://hackage.haskell.org/package/scientific
Summary: Haskell scientific library development files
This package provides the Haskell scientific library development files.

Provides

Requires

License

BSD-3-Clause

Changelog

* Fri Dec 31 2021 psimons@suse.com
  - Update scientific to version 0.3.7.0 revision 2.
    Upstream has revised the Cabal build instructions on Hackage.
* Mon Nov 01 2021 psimons@suse.com
  - Update scientific to version 0.3.7.0 revision 1.
    Upstream has revised the Cabal build instructions on Hackage.
* Thu May 20 2021 psimons@suse.com
  - Update scientific to version 0.3.7.0.
    0.3.7.0
    * Make division (/) on Scientifics slightly more efficient.
    * Fix the Show instance to surround negative numbers with parentheses when
    necessary.
    * Add (Template Haskell) Lift Scientific instance
    * Mark modules as Safe or Trustworthy (Safe Haskell).
* Thu Dec 17 2020 mimi.vx@gmail.com
  - disable %{ix86} build
* 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.
* 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 scientific to version 0.3.6.2.
    * Due to a regression introduced in 0.3.4.14 the RealFrac methods
      and floatingOrInteger became vulnerable to a space blowup when
      applied to scientifics with huge exponents. This has now been
      fixed again.
    * Fix build on GHC < 8.
    * Make the methods of the Hashable, Eq and Ord instances safe to
    use when applied to scientific numbers coming from untrusted
    sources. Previously these methods first converted their arguments
    to Rational before applying the operation. This is unsafe because
    converting a Scientific to a Rational could fill up all space and
    crash your program when the Scientific has a huge base10Exponent.
    Do note that the hash computation of the Hashable Scientific
    instance has been changed because of this improvement!
    Thanks to Tom Sydney Kerckhove (@NorfairKing) for pushing me to
    fix this.
    * fromRational :: Rational -> Scientific now throws an error
    instead of diverging when applied to a repeating decimal. This
    does mean it will consume space linear in the number of digits of
    the resulting scientific. This makes "fromRational" and the other
    Fractional methods "recip" and "/" a bit safer to use.
    * To get the old unsafe but more efficient behaviour the following
    function was added: unsafeFromRational :: Rational -> Scientific.
    * Add alternatives for fromRationalRepetend:
      fromRationalRepetendLimited
      :: Int -- ^ limit
    - > Rational
    - > Either (Scientific, Rational)
      (Scientific, Maybe Int)
      and:
      fromRationalRepetendUnlimited
      :: Rational -> (Scientific, Maybe Int)
      Thanks to Ian Jeffries (@seagreen) for the idea.
    * Dropped upper version bounds of dependencies
      because it's to much work to maintain.
* Tue Jul 11 2017 psimons@suse.com
  - Update to version 0.3.5.1.
* Mon Jul 03 2017 psimons@suse.com
  - Update to version 0.3.4.15 revision 2.
* Mon Jun 12 2017 psimons@suse.com
  - Update to version 0.3.4.15.
* Wed May 31 2017 psimons@suse.com
  - Update to version 0.3.4.13.
* Wed Apr 19 2017 psimons@suse.com
  - Update to version 0.3.4.12 with cabal2obs.
* Tue Apr 04 2017 psimons@suse.com
  - Update to version 0.3.4.11 with cabal2obs.
* Sun Feb 12 2017 psimons@suse.com
  - Update to version 0.3.4.10 with cabal2obs.
* Wed Jan 04 2017 psimons@suse.com
  - Update to version 0.3.4.9 revision 1 with cabal2obs.
* Fri Jul 22 2016 psimons@suse.com
  - Update to version 0.3.4.9 revision 0 with cabal2obs.
* Sun Jul 10 2016 psimons@suse.com
  - Update to version 0.3.4.8 revision 0 with cabal2obs.
* Sun Jul 03 2016 mimi.vx@gmail.com
  - update to 0.3.4.8
    * Make bytestring-builder's installation conditional based on a Cabal flag.
* Fri Jul 01 2016 toddrme2178@gmail.com
  - Make Group tag consistent with other GHC packages.
* Sun Jun 12 2016 mimi.vx@gmail.com
  - update to 0.3.4.7
    * Unconditionally export Data.ByteString.Builder.Scientific.
    * The bytestring-builder cabal flag has been removed.
    * Depend on bytestring-builder for backwards compatibility for GHC < 7.8.
* Sat Mar 12 2016 mimi.vx@gmail.com
  - update to 0.3.4.6
    * Made toDecimalDigits more similar to floatToDigits
    * Introduce a special case for 0 in fromFloatDigits
* Thu Mar 10 2016 mimi.vx@gmail.com
  - update to 0.3.4.5
    * Support GHC-8.0.1
    * Support binary-0.8
* Sun Nov 29 2015 mimi.vx@gmail.com
  - update to 0.3.4.4
    * Fix build with integer-simple.
    * Improved performance of toDecimalDigits by 13%.
* Mon Oct 12 2015 mimi.vx@gmail.com
  - update to 0.3.4.2
    * build fixes
* Sun Oct 04 2015 mimi.vx@gmail.com
  - update to 0.3.4.0
    * Added fromRationalRepetend & toRationalRepetend
    for safely converting from and to rationals
    which have a repeating decimal representation like:
    1 % 28 = 0.03(571428).
    * Added a Binary instance.
    * Various performance improvements.
    * Support vector-0.11
    * Support tasty-0.11
    * Support criterion-1.1.0.0
* Sun Apr 12 2015 mimi.vx@gmail.com
  - update to 0.3.3.8
* Sun Mar 29 2015 mpluskal@suse.com
  - Remove ExclusiveArch
* Mon Feb 02 2015 mpluskal@suse.com
  -  Initial package

Files

/usr/lib64/ghc-8.10.7/package.conf.d/scientific-0.3.7.0.conf
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Data
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Data/ByteString
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Data/ByteString/Builder
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Data/ByteString/Builder/Scientific.dyn_hi
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Data/ByteString/Builder/Scientific.hi
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Data/ByteString/Builder/Scientific.p_hi
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Data/Scientific.dyn_hi
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Data/Scientific.hi
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Data/Scientific.p_hi
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Data/Text
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Data/Text/Lazy
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Data/Text/Lazy/Builder
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Data/Text/Lazy/Builder/Scientific.dyn_hi
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Data/Text/Lazy/Builder/Scientific.hi
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Data/Text/Lazy/Builder/Scientific.p_hi
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/GHC
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/GHC/Integer
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/GHC/Integer/Compat.dyn_hi
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/GHC/Integer/Compat.hi
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/GHC/Integer/Compat.p_hi
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Utils.dyn_hi
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Utils.hi
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/Utils.p_hi
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/libHSscientific-0.3.7.0-CfGYDmam8OFCyRakWk0zP3.a
/usr/lib64/ghc-8.10.7/scientific-0.3.7.0/libHSscientific-0.3.7.0-CfGYDmam8OFCyRakWk0zP3_p.a
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/Data-ByteString-Builder-Scientific.html
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/Data-Scientific.html
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/Data-Text-Lazy-Builder-Scientific.html
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/doc-index.html
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/haddock-bundle.min.js
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/index.html
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/linuwial.css
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/meta.json
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/quick-jump.css
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/scientific.haddock
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/scientific.txt
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/src
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/src/Data.ByteString.Builder.Scientific.html
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/src/Data.Scientific.html
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/src/Data.Text.Lazy.Builder.Scientific.html
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/src/GHC.Integer.Compat.html
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/src/Utils.html
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/src/highlight.js
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/src/style.css
/usr/share/doc/ghc-8.10.7/html/libraries/scientific-0.3.7.0/synopsis.png
/usr/share/doc/packages/ghc-scientific-devel
/usr/share/doc/packages/ghc-scientific-devel/changelog


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 19:50:46 2024