Hello community,

here is the log from the commit of package ghc-dlist for openSUSE:Factory 
checked in at 2019-06-19 21:10:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-dlist (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-dlist.new.4811 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-dlist"

Wed Jun 19 21:10:28 2019 rev:13 rq:710623 version:0.8.0.6

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-dlist/ghc-dlist.changes      2019-04-03 
09:27:19.415795697 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-dlist.new.4811/ghc-dlist.changes    
2019-06-19 21:12:02.158721262 +0200
@@ -1,0 +2,5 @@
+Tue Jun 11 14:29:09 UTC 2019 - Peter Simons <[email protected]>
+
+- Update Cabal file for more accurate build dependencies.
+
+-------------------------------------------------------------------

New:
----
  dlist.cabal

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

Other differences:
------------------
++++++ ghc-dlist.spec ++++++
--- /var/tmp/diff_new_pack.5WCz3C/_old  2019-06-19 21:12:02.926722008 +0200
+++ /var/tmp/diff_new_pack.5WCz3C/_new  2019-06-19 21:12:02.934722016 +0200
@@ -26,6 +26,7 @@
 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
+Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-deepseq-devel
 BuildRequires:  ghc-rpm-macros
@@ -51,6 +52,7 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ dlist.cabal ++++++
name:                   dlist
version:                0.8.0.6
x-revision: 1
synopsis:               Difference lists
description:
  Difference lists are a list-like type supporting O(1) append. This is
  particularly useful for efficient logging and pretty printing (e.g. with the
  Writer monad), where list append quickly becomes too expensive.
category:               Data
license:                BSD3
license-file:           LICENSE
author:                 Don Stewart
maintainer:             Sean Leather <[email protected]>
copyright:              2006-2009 Don Stewart, 2013-2016 Sean Leather
homepage:               https://github.com/spl/dlist
bug-reports:            https://github.com/spl/dlist/issues
extra-source-files:     README.md,
                        ChangeLog.md
build-type:             Simple
cabal-version:          >= 1.9.2
tested-with:            GHC==7.0.4
                        GHC==7.2.2
                        GHC==7.4.2
                        GHC==7.6.3
                        GHC==7.8.4
                        GHC==7.10.3
                        GHC==8.0.1

source-repository head
  type:                 git
  location:             git://github.com/spl/dlist.git

library
  -- fail is not a method of Monad in base-4.13
  build-depends: base <4.13

  build-depends:
                        base >= 4 && < 5,
                        deepseq >= 1.1 && < 2
  extensions:           CPP
  exposed-modules:      Data.DList
  ghc-options:          -Wall

test-suite test
  type:                 exitcode-stdio-1.0
  main-is:              Main.hs
  other-modules:        OverloadedStrings
  hs-source-dirs:       tests
  build-depends:        dlist,
                        base,
                        Cabal,
                        -- QuickCheck-2.10 is the first version supporting
                        -- base-4.9 (ghc-8) without the Arbitrary NonEmpty
                        -- instance, which we include ourselves.
                        QuickCheck >= 2.10 && < 2.14

Reply via email to