Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-tdigest for openSUSE:Factory 
checked in at 2021-09-10 23:41:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-tdigest (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-tdigest.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-tdigest"

Fri Sep 10 23:41:12 2021 rev:4 rq:917497 version:0.2.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-tdigest/ghc-tdigest.changes  2021-01-20 
18:25:26.219404321 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-tdigest.new.1899/ghc-tdigest.changes        
2021-09-10 23:41:30.294571748 +0200
@@ -1,0 +2,6 @@
+Thu Sep  2 08:32:35 UTC 2021 - [email protected]
+
+- Update tdigest to version 0.2.1.1 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  tdigest.cabal

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-tdigest.spec ++++++
--- /var/tmp/diff_new_pack.oOJuQx/_old  2021-09-10 23:41:30.678572156 +0200
+++ /var/tmp/diff_new_pack.oOJuQx/_new  2021-09-10 23:41:30.678572156 +0200
@@ -25,6 +25,7 @@
 License:        BSD-3-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-base-compat-devel
 BuildRequires:  ghc-binary-devel
@@ -62,6 +63,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ tdigest.cabal ++++++
cabal-version:      >=1.10
name:               tdigest
version:            0.2.1.1
x-revision:         1
synopsis:           On-line accumulation of rank-based statistics
description:
  A new data structure for accurate on-line accumulation of rank-based 
statistics such as quantiles and trimmed means.
  .
  See original paper: "Computing extremely accurate quantiles using t-digest" 
by Ted Dunning and Otmar Ertl
  for more details 
<https://github.com/tdunning/t-digest/blob/07b8f2ca2be8d0a9f04df2feadad5ddc1bb73c88/docs/t-digest-paper/histo.pdf>.

category:           Numeric
homepage:           https://github.com/phadej/haskell-tdigest#readme
bug-reports:        https://github.com/phadej/haskell-tdigest/issues
author:             Oleg Grenrus <[email protected]>
maintainer:         Oleg Grenrus <[email protected]>
license:            BSD3
license-file:       LICENSE
tested-with:
  GHC ==7.8.4
   || ==7.10.3
   || ==8.0.2
   || ==8.2.2
   || ==8.4.4
   || ==8.6.5
   || ==8.8.4
   || ==8.10.4
   || ==9.0.1

build-type:         Simple
extra-source-files:
  README.md
  CHANGELOG.md

source-repository head
  type:     git
  location: https://github.com/phadej/haskell-tdigest
  subdir:   tdigest

library
  default-language: Haskell2010
  hs-source-dirs:   src
  ghc-options:      -Wall

  -- GHC boot libraries
  build-depends:
      base          >=4.7     && <4.16
    , binary        >=0.7.1.0 && <0.10
    , deepseq       >=1.3.0.2 && <1.5
    , transformers  >=0.3     && <0.6

  if !impl(ghc >=8.0)
    build-depends: semigroups >=0.18.4 && <0.20

  -- other dependencies
  build-depends:
      base-compat        >=0.10.1   && <0.13
    , reducers           >=3.12.2   && <3.13
    , semigroupoids      >=5.2.2    && <5.4
    , vector             >=0.12.0.1 && <0.13
    , vector-algorithms  >=0.7.0.1  && <0.9

  exposed-modules:
    Data.TDigest
    Data.TDigest.NonEmpty
    Data.TDigest.Postprocess
    Data.TDigest.Tree
    Data.TDigest.Tree.NonEmpty
    Data.TDigest.Tree.Postprocess
    Data.TDigest.Vector
    Data.TDigest.Vector.NonEmpty
    Data.TDigest.Vector.Postprocess

  -- Internal modules are exposed, but aren't under PVP contract.
  exposed-modules:
    Data.TDigest.Internal
    Data.TDigest.Postprocess.Internal
    Data.TDigest.Tree.Internal
    Data.TDigest.Vector.Internal

  other-extensions:
    DataKinds
    KindSignatures
    MultiParamTypeClasses
    ScopedTypeVariables

test-suite tdigest-tests
  default-language: Haskell2010
  type:             exitcode-stdio-1.0
  main-is:          Tests.hs
  ghc-options:      -Wall -threaded
  hs-source-dirs:   tests
  build-depends:
      base
    , base-compat
    , binary
    , deepseq
    , semigroups
    , tasty              >=0.11.0.4 && <1.5
    , tasty-quickcheck   >=0.8.4    && <0.11
    , tdigest
    , vector
    , vector-algorithms

Reply via email to