commit ghc-math-functions for openSUSE:Factory
Hello community, here is the log from the commit of package ghc-math-functions for openSUSE:Factory checked in at 2020-08-28 21:34:46 Comparing /work/SRC/openSUSE:Factory/ghc-math-functions (Old) and /work/SRC/openSUSE:Factory/.ghc-math-functions.new.3399 (New) Package is "ghc-math-functions" Fri Aug 28 21:34:46 2020 rev:7 rq:829342 version:0.3.4.1 Changes: --- /work/SRC/openSUSE:Factory/ghc-math-functions/ghc-math-functions.changes 2020-06-19 17:15:10.306484439 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-math-functions.new.3399/ghc-math-functions.changes 2020-08-28 21:34:47.748707251 +0200 @@ -1,0 +2,13 @@ +Tue Aug 18 10:45:24 UTC 2020 - Peter Simons + +- Replace %setup -q with the more modern %autosetup macro. + +--- +Sat Aug 15 02:02:15 UTC 2020 - psim...@suse.com + +- Update math-functions to version 0.3.4.1. + ## Changes in 0.3.4.1 + +* Precision of `incompleteGamma` improved. + +--- Old: math-functions-0.3.4.0.tar.gz math-functions.cabal New: math-functions-0.3.4.1.tar.gz Other differences: -- ++ ghc-math-functions.spec ++ --- /var/tmp/diff_new_pack.lNVydz/_old 2020-08-28 21:34:48.456707586 +0200 +++ /var/tmp/diff_new_pack.lNVydz/_new 2020-08-28 21:34:48.460707588 +0200 @@ -19,13 +19,12 @@ %global pkg_name math-functions %bcond_with tests Name: ghc-%{pkg_name} -Version:0.3.4.0 +Version:0.3.4.1 Release:0 Summary:Collection of tools for numeric computations License:BSD-2-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/1.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-data-default-class-devel BuildRequires: ghc-deepseq-devel @@ -58,8 +57,7 @@ This package provides the Haskell %{pkg_name} library development files. %prep -%setup -q -n %{pkg_name}-%{version} -cp -p %{SOURCE1} %{pkg_name}.cabal +%autosetup -n %{pkg_name}-%{version} %build %ghc_lib_build ++ math-functions-0.3.4.0.tar.gz -> math-functions-0.3.4.1.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/math-functions-0.3.4.0/Numeric/SpecFunctions/Internal.hs new/math-functions-0.3.4.1/Numeric/SpecFunctions/Internal.hs --- old/math-functions-0.3.4.0/Numeric/SpecFunctions/Internal.hs 2001-09-09 03:46:40.0 +0200 +++ new/math-functions-0.3.4.1/Numeric/SpecFunctions/Internal.hs 2001-09-09 03:46:40.0 +0200 @@ -409,12 +409,21 @@ || (abs mu < 0.4) -- Gautschi's algorithm. -- --- Evaluate series for P(a,x). See [Temme1994] Eq. 5.5 --- --- FIXME: Term `exp (log x * z - x - logGamma (z+1))` doesn't give full precision +-- Evaluate series for P(a,x). See [Temme1994] Eq. 5.5 and [NOTE: +-- incompleteGamma.taylorP] +factorP + | a < 10 = x ** a + / (exp x * exp (logGamma (a + 1))) + | a < 1182.5 = (x * exp 1 / a) ** a + / exp x + / sqrt (2*pi*a) + / exp (logGammaCorrection a) + | otherwise = (x * exp 1 / a * exp (-x/a)) ** a + / sqrt (2*pi*a) + / exp (logGammaCorrection a) taylorSeriesP = sumPowerSeries x (scanSequence (/) 1 $ enumSequenceFrom (a+1)) - * exp (log x * a - x - logGamma (a+1)) + * factorP -- Series for 1-Q(a,x). See [Temme1994] Eq. 5.5 taylorSeriesComplQ = sumPowerSeries (-x) (scanSequence (/) 1 (enumSequenceFrom 1) / enumSequenceFrom a) @@ -1322,3 +1331,53 @@ , 4.269068009004705e304 , 7.257415615307998e306 ] + + +-- [NOTE: incompleteGamma.taylorP] +-- +-- Incompltete gamma uses several algorithms for different parts of +-- parameter space. Most troublesome is P(a,x) Taylor series +-- [Temme1994,Eq.5.5] which requires to evaluate rather nasty +-- expression: +-- +-- x^a x^a +-- - = - +-- exp(x)·Γ(a+1) exp(x)·a·Γ(a) +-- +-- Conditions: +--| 0.5 155- x^a could overflow +-- · a > 1182.5 - exp(x) could overflow +-- +-- Usual way to avoid overflow problem is to perform calculations in +-- the log domain. It however doesn't work very well in this case +-- since we encounter catastrophic cancellations and could easily lose +-- up to 6(!) digits for large `a`. +-- +-- So we take another approach and use Stirling approximation with +-- correction (logGammaCorrecti
commit ghc-math-functions for openSUSE:Factory
Hello community, here is the log from the commit of package ghc-math-functions for openSUSE:Factory checked in at 2020-06-19 17:15:07 Comparing /work/SRC/openSUSE:Factory/ghc-math-functions (Old) and /work/SRC/openSUSE:Factory/.ghc-math-functions.new.3606 (New) Package is "ghc-math-functions" Fri Jun 19 17:15:07 2020 rev:6 rq:815128 version:0.3.4.0 Changes: --- /work/SRC/openSUSE:Factory/ghc-math-functions/ghc-math-functions.changes 2019-12-27 13:55:00.668705927 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-math-functions.new.3606/ghc-math-functions.changes 2020-06-19 17:15:10.306484439 +0200 @@ -1,0 +2,9 @@ +Tue Jun 9 09:10:52 UTC 2020 - psim...@suse.com + +- Update math-functions to version 0.3.4.0. + ## Changes in 0.3.4.0 + +* Dependency on `vector-th-unbox` is dropped. All instances are written by + hand now. + +--- Old: math-functions-0.3.3.0.tar.gz New: math-functions-0.3.4.0.tar.gz math-functions.cabal Other differences: -- ++ ghc-math-functions.spec ++ --- /var/tmp/diff_new_pack.oWGoT1/_old 2020-06-19 17:15:15.622501007 +0200 +++ /var/tmp/diff_new_pack.oWGoT1/_new 2020-06-19 17:15:15.626501020 +0200 @@ -1,7 +1,7 @@ # # spec file for package ghc-math-functions # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,25 +19,26 @@ %global pkg_name math-functions %bcond_with tests Name: ghc-%{pkg_name} -Version:0.3.3.0 +Version:0.3.4.0 Release:0 Summary:Collection of tools for numeric computations License:BSD-2-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/1.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-data-default-class-devel BuildRequires: ghc-deepseq-devel BuildRequires: ghc-primitive-devel BuildRequires: ghc-rpm-macros BuildRequires: ghc-vector-devel -BuildRequires: ghc-vector-th-unbox-devel %if %{with tests} BuildRequires: ghc-QuickCheck-devel BuildRequires: ghc-erf-devel BuildRequires: ghc-tasty-devel BuildRequires: ghc-tasty-hunit-devel BuildRequires: ghc-tasty-quickcheck-devel +BuildRequires: ghc-vector-th-unbox-devel %endif %description @@ -58,6 +59,7 @@ %prep %setup -q -n %{pkg_name}-%{version} +cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build ++ math-functions-0.3.3.0.tar.gz -> math-functions-0.3.4.0.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/math-functions-0.3.3.0/Numeric/SpecFunctions/Internal.hs new/math-functions-0.3.4.0/Numeric/SpecFunctions/Internal.hs --- old/math-functions-0.3.3.0/Numeric/SpecFunctions/Internal.hs 2001-09-09 03:46:40.0 +0200 +++ new/math-functions-0.3.4.0/Numeric/SpecFunctions/Internal.hs 2001-09-09 03:46:40.0 +0200 @@ -582,7 +582,7 @@ -- | Regularized incomplete beta function. -- -- \[ --- I(x;a,b) = \frac{1}{B(a,b)} \int_0^x t^{a-1}(1-t)^{1-b}\,dt +-- I(x;a,b) = \frac{1}{B(a,b)} \int_0^x t^{a-1}(1-t)^{b-1}\,dt -- \] -- -- Uses algorithm AS63 by Majumder and Bhattachrjee and quadrature diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/math-functions-0.3.3.0/Numeric/Sum.hs new/math-functions-0.3.4.0/Numeric/Sum.hs --- old/math-functions-0.3.3.0/Numeric/Sum.hs 2001-09-09 03:46:40.0 +0200 +++ new/math-functions-0.3.4.0/Numeric/Sum.hs 2001-09-09 03:46:40.0 +0200 @@ -1,5 +1,5 @@ {-# LANGUAGE BangPatterns, DeriveDataTypeable, FlexibleContexts, -MultiParamTypeClasses, TemplateHaskell, TypeFamilies, CPP #-} +MultiParamTypeClasses, TypeFamilies, CPP #-} {-# OPTIONS_GHC -fno-warn-name-shadowing #-} -- | -- Module: Numeric.Sum @@ -58,13 +58,14 @@ import Data.Semigroup (Semigroup(..)) #endif import Data.Vector.Generic (Vector(..), foldl') -import Data.Vector.Unboxed.Deriving (derivingUnbox) -- Needed for GHC 7.2 & 7.4 to derive Unbox instances +import Control.Monad (liftM) import Data.Vector.Generic.Mutable (MVector(..)) import qualified Data.Foldable as F import qualified Data.Vector as V import qualified Data.Vector.Generic as G +import qualified Data.Vector.Generic.Mutable as GM import qualified Data.Vector.Unboxed as U -- | A class for summation of floati
commit ghc-math-functions for openSUSE:Factory
Hello community, here is the log from the commit of package ghc-math-functions for openSUSE:Factory checked in at 2019-12-27 13:54:49 Comparing /work/SRC/openSUSE:Factory/ghc-math-functions (Old) and /work/SRC/openSUSE:Factory/.ghc-math-functions.new.6675 (New) Package is "ghc-math-functions" Fri Dec 27 13:54:49 2019 rev:5 rq:759443 version:0.3.3.0 Changes: --- /work/SRC/openSUSE:Factory/ghc-math-functions/ghc-math-functions.changes 2019-10-18 14:34:17.624104964 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-math-functions.new.6675/ghc-math-functions.changes 2019-12-27 13:55:00.668705927 +0100 @@ -1,0 +2,5 @@ +Fri Nov 8 16:14:10 UTC 2019 - Peter Simons + +- Drop obsolete group attributes. + +--- Other differences: -- ++ ghc-math-functions.spec ++ --- /var/tmp/diff_new_pack.ISZXqD/_old 2019-12-27 13:55:01.180706174 +0100 +++ /var/tmp/diff_new_pack.ISZXqD/_new 2019-12-27 13:55:01.184706176 +0100 @@ -23,7 +23,6 @@ Release:0 Summary:Collection of tools for numeric computations License:BSD-2-Clause -Group: Development/Libraries/Haskell URL:https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz BuildRequires: ghc-Cabal-devel @@ -49,7 +48,6 @@ %package devel Summary:Haskell %{pkg_name} library development files -Group: Development/Libraries/Haskell Requires: %{name} = %{version}-%{release} Requires: ghc-compiler = %{ghc_version} Requires(post): ghc-compiler = %{ghc_version}
commit ghc-math-functions for openSUSE:Factory
Hello community, here is the log from the commit of package ghc-math-functions for openSUSE:Factory checked in at 2019-10-18 14:34:16 Comparing /work/SRC/openSUSE:Factory/ghc-math-functions (Old) and /work/SRC/openSUSE:Factory/.ghc-math-functions.new.2352 (New) Package is "ghc-math-functions" Fri Oct 18 14:34:16 2019 rev:4 rq:737203 version:0.3.3.0 Changes: --- /work/SRC/openSUSE:Factory/ghc-math-functions/ghc-math-functions.changes 2018-12-06 12:16:28.913573605 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-math-functions.new.2352/ghc-math-functions.changes 2019-10-18 14:34:17.624104964 +0200 @@ -1,0 +2,43 @@ +Wed Sep 25 02:02:31 UTC 2019 - psim...@suse.com + +- Update math-functions to version 0.3.3.0. + ## Changes in 0.3.3.0 + +* New implementation for `logGamma`. Now it's precise within 2 ulps at full + range including zeros at 1 and 2. + +* Bug with precision loss of `invErf` for parameters near zero is fixed. + +* Fixed loss of precision in bundled `erf` near zero. (Affect primarily GHCJS) + +* `factorial` for now uses lookup table + +* `logFactorial` is optimized a bit (less number of terms is used) + +* `m_sqrt_eps` constant added. + +* Module `Numeric.SpecFunctions.Internal` is exposed. + +* Many improvements for test suite. Tables of expected function values are + generated with mpmath, error estimates improved. Test suite itself is + migrated to `tasty` from `test-framework`. + +--- +Tue Sep 10 02:02:37 UTC 2019 - psim...@suse.com + +- Update math-functions to version 0.3.2.1. + ## Changes in 0.3.2.1 + +* Fixes build on windows for GHC<8.0 + +--- +Fri Sep 6 06:39:53 UTC 2019 - psim...@suse.com + +- Update math-functions to version 0.3.2.0. + ## Changes in 0.3.2.0 + +* GHCJS is now supported + +* Flag `system-expm1` is set to true by default. Only affects GHC<8.0 + +--- Old: math-functions-0.3.1.0.tar.gz New: math-functions-0.3.3.0.tar.gz Other differences: -- ++ ghc-math-functions.spec ++ --- /var/tmp/diff_new_pack.L55NDl/_old 2019-10-18 14:34:18.552102547 +0200 +++ /var/tmp/diff_new_pack.L55NDl/_new 2019-10-18 14:34:18.556102536 +0200 @@ -1,7 +1,7 @@ # # spec file for package ghc-math-functions # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,7 +19,7 @@ %global pkg_name math-functions %bcond_with tests Name: ghc-%{pkg_name} -Version:0.3.1.0 +Version:0.3.3.0 Release:0 Summary:Collection of tools for numeric computations License:BSD-2-Clause @@ -34,12 +34,11 @@ BuildRequires: ghc-vector-devel BuildRequires: ghc-vector-th-unbox-devel %if %{with tests} -BuildRequires: ghc-HUnit-devel BuildRequires: ghc-QuickCheck-devel BuildRequires: ghc-erf-devel -BuildRequires: ghc-test-framework-devel -BuildRequires: ghc-test-framework-hunit-devel -BuildRequires: ghc-test-framework-quickcheck2-devel +BuildRequires: ghc-tasty-devel +BuildRequires: ghc-tasty-hunit-devel +BuildRequires: ghc-tasty-quickcheck-devel %endif %description ++ math-functions-0.3.1.0.tar.gz -> math-functions-0.3.3.0.tar.gz ++ 23748 lines of diff (skipped)
commit ghc-math-functions for openSUSE:Factory
Hello community, here is the log from the commit of package ghc-math-functions for openSUSE:Factory checked in at 2018-12-06 12:16:28 Comparing /work/SRC/openSUSE:Factory/ghc-math-functions (Old) and /work/SRC/openSUSE:Factory/.ghc-math-functions.new.19453 (New) Package is "ghc-math-functions" Thu Dec 6 12:16:28 2018 rev:3 rq:650506 version:0.3.1.0 Changes: --- /work/SRC/openSUSE:Factory/ghc-math-functions/ghc-math-functions.changes 2018-10-25 08:17:47.972032496 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-math-functions.new.19453/ghc-math-functions.changes 2018-12-06 12:16:28.913573605 +0100 @@ -1,0 +2,10 @@ +Wed Nov 14 03:01:50 UTC 2018 - psim...@suse.com + +- Update math-functions to version 0.3.1.0. + ## Changes in 0.3.1.0 + +* Exported data types for iteration steps in root finding + +* Defaults for root finding algorithm are documented + +--- Old: math-functions-0.3.0.2.tar.gz New: math-functions-0.3.1.0.tar.gz Other differences: -- ++ ghc-math-functions.spec ++ --- /var/tmp/diff_new_pack.LQBEjp/_old 2018-12-06 12:16:29.841572608 +0100 +++ /var/tmp/diff_new_pack.LQBEjp/_new 2018-12-06 12:16:29.845572604 +0100 @@ -19,7 +19,7 @@ %global pkg_name math-functions %bcond_with tests Name: ghc-%{pkg_name} -Version:0.3.0.2 +Version:0.3.1.0 Release:0 Summary:Collection of tools for numeric computations License:BSD-2-Clause ++ math-functions-0.3.0.2.tar.gz -> math-functions-0.3.1.0.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/math-functions-0.3.0.2/Numeric/RootFinding.hs new/math-functions-0.3.1.0/Numeric/RootFinding.hs --- old/math-functions-0.3.0.2/Numeric/RootFinding.hs 2018-09-02 19:32:55.0 +0200 +++ new/math-functions-0.3.1.0/Numeric/RootFinding.hs 2018-11-13 21:25:18.0 +0100 @@ -30,10 +30,12 @@ , RiddersParam(..) , ridders , riddersIterations +, RiddersStep(..) -- * Newton-Raphson algorithm , NewtonParam(..) , newtonRaphson , newtonRaphsonIterations +, NewtonStep(..) -- * References -- $references ) where @@ -172,9 +174,10 @@ -- | Parameters for 'ridders' root finding data RiddersParam = RiddersParam { riddersMaxIter :: !Int --- ^ Maximum number of iterations. +-- ^ Maximum number of iterations. Default = 100 , riddersTol :: !Tolerance --- ^ Error tolerance for root approximation. +-- ^ Error tolerance for root approximation. Default is relative +-- error 4·ε, where ε is machine precision. } deriving (Eq, Read, Show, Typeable, Data #if __GLASGOW_HASKELL__ > 704 @@ -287,9 +290,10 @@ -- | Parameters for 'ridders' root finding data NewtonParam = NewtonParam { newtonMaxIter :: !Int --- ^ Maximum number of iterations. +-- ^ Maximum number of iterations. Default = 50 , newtonTol :: !Tolerance --- ^ Error tolerance for root approximation. +-- ^ Error tolerance for root approximation. Default is relative +-- error 4·ε, where ε is machine precision } deriving (Eq, Read, Show, Typeable, Data #if __GLASGOW_HASKELL__ > 704 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/math-functions-0.3.0.2/changelog.md new/math-functions-0.3.1.0/changelog.md --- old/math-functions-0.3.0.2/changelog.md 2018-09-02 19:32:55.0 +0200 +++ new/math-functions-0.3.1.0/changelog.md 2018-11-13 21:25:18.0 +0100 @@ -1,3 +1,10 @@ +## Changes in 0.3.1.0 + + * Exported data types for iteration steps in root finding + + * Defaults for root finding algorithm are documented + + ## Changes in 0.3.0.2 * Fix license field in cabal file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/math-functions-0.3.0.2/math-functions.cabal new/math-functions-0.3.1.0/math-functions.cabal --- old/math-functions-0.3.0.2/math-functions.cabal 2018-09-02 19:32:55.0 +0200 +++ new/math-functions-0.3.1.0/math-functions.cabal 2018-11-13 21:25:18.0 +0100 @@ -1,5 +1,5 @@ name: math-functions -version:0.3.0.2 +version:0.3.1.0 cabal-version: >= 1.10 license:BSD2 license-file: LICENSE diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/math-functions-0.3.0.2/tests/view.hs new/math-functions-0.3.1.0/tests/view.hs --- old/math-functions-0.3.0.2/tests/view.hs2018-09-02 19:32:55.0 +0200 +++ new/math-functions-0.3.1.0/tests/view.hs1970-01-01 01:00:00.0 +0100 @@ -1,102 +0,0 @@ -{-# LANGUAGE Ov
commit ghc-math-functions for openSUSE:Factory
Hello community, here is the log from the commit of package ghc-math-functions for openSUSE:Factory checked in at 2018-10-25 08:17:22 Comparing /work/SRC/openSUSE:Factory/ghc-math-functions (Old) and /work/SRC/openSUSE:Factory/.ghc-math-functions.new (New) Package is "ghc-math-functions" Thu Oct 25 08:17:22 2018 rev:2 rq:642878 version:0.3.0.2 Changes: --- /work/SRC/openSUSE:Factory/ghc-math-functions/ghc-math-functions.changes 2018-07-25 16:09:05.009445022 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-math-functions.new/ghc-math-functions.changes 2018-10-25 08:17:47.972032496 +0200 @@ -1,0 +2,8 @@ +Thu Oct 4 09:43:01 UTC 2018 - psim...@suse.com + +- Update math-functions to version 0.3.0.2. + ## Changes in 0.3.0.2 + +* Fix license field in cabal file + +--- Old: math-functions-0.3.0.1.tar.gz New: math-functions-0.3.0.2.tar.gz Other differences: -- ++ ghc-math-functions.spec ++ --- /var/tmp/diff_new_pack.TduMdJ/_old 2018-10-25 08:17:49.112031997 +0200 +++ /var/tmp/diff_new_pack.TduMdJ/_new 2018-10-25 08:17:49.112031997 +0200 @@ -12,14 +12,14 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # %global pkg_name math-functions %bcond_with tests Name: ghc-%{pkg_name} -Version:0.3.0.1 +Version:0.3.0.2 Release:0 Summary:Collection of tools for numeric computations License:BSD-2-Clause ++ math-functions-0.3.0.1.tar.gz -> math-functions-0.3.0.2.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/math-functions-0.3.0.1/changelog.md new/math-functions-0.3.0.2/changelog.md --- old/math-functions-0.3.0.1/changelog.md 2018-07-16 10:15:06.0 +0200 +++ new/math-functions-0.3.0.2/changelog.md 2018-09-02 19:32:55.0 +0200 @@ -1,3 +1,8 @@ +## Changes in 0.3.0.2 + + * Fix license field in cabal file + + ## Changes in 0.3.0.0 * `Semigroup` and `Monoid` instances added for data types from `Numeric.Sum` diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/math-functions-0.3.0.1/math-functions.cabal new/math-functions-0.3.0.2/math-functions.cabal --- old/math-functions-0.3.0.1/math-functions.cabal 2018-07-16 10:15:06.0 +0200 +++ new/math-functions-0.3.0.2/math-functions.cabal 2018-09-02 19:32:55.0 +0200 @@ -1,7 +1,7 @@ name: math-functions -version:0.3.0.1 +version:0.3.0.2 cabal-version: >= 1.10 -license:BSD3 +license:BSD2 license-file: LICENSE author: Bryan O'Sullivan , Alexey Khudyakov
commit ghc-math-functions for openSUSE:Factory
Hello community, here is the log from the commit of package ghc-math-functions for openSUSE:Factory checked in at 2017-09-15 21:56:57 Comparing /work/SRC/openSUSE:Factory/ghc-math-functions (Old) and /work/SRC/openSUSE:Factory/.ghc-math-functions.new (New) Package is "ghc-math-functions" Fri Sep 15 21:56:57 2017 rev:2 rq:524978 version:0.2.1.0 Changes: --- /work/SRC/openSUSE:Factory/ghc-math-functions/ghc-math-functions.changes 2017-04-11 12:45:29.287839373 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-math-functions.new/ghc-math-functions.changes 2017-09-15 21:56:58.245747844 +0200 @@ -1,0 +2,5 @@ +Thu Aug 3 15:38:38 UTC 2017 - psim...@suse.com + +- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. + +--- Other differences: -- ++ ghc-math-functions.spec ++ --- /var/tmp/diff_new_pack.GwS9zM/_old 2017-09-15 21:56:58.82966 +0200 +++ /var/tmp/diff_new_pack.GwS9zM/_new 2017-09-15 21:56:58.833664991 +0200 @@ -23,8 +23,8 @@ Release:0 Summary:Special functions and Chebyshev polynomials License:BSD-2-Clause -Group: Development/Languages/Other -Url:https://hackage.haskell.org/package/%{pkg_name} +Group: Development/Libraries/Haskell +URL:https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz BuildRequires: ghc-Cabal-devel BuildRequires: ghc-deepseq-devel @@ -32,7 +32,6 @@ BuildRequires: ghc-rpm-macros BuildRequires: ghc-vector-devel BuildRequires: ghc-vector-th-unbox-devel -BuildRoot: %{_tmppath}/%{name}-%{version}-build %if %{with tests} BuildRequires: ghc-HUnit-devel BuildRequires: ghc-QuickCheck-devel @@ -49,7 +48,7 @@ %package devel Summary:Haskell %{pkg_name} library development files -Group: Development/Libraries/Other +Group: Development/Libraries/Haskell Requires: %{name} = %{version}-%{release} Requires: ghc-compiler = %{ghc_version} Requires(post): ghc-compiler = %{ghc_version} @@ -77,11 +76,9 @@ %ghc_pkg_recache %files -f %{name}.files -%defattr(-,root,root,-) %doc LICENSE %files devel -f %{name}-devel.files -%defattr(-,root,root,-) %doc README.markdown changelog.md doc %changelog