Hello community,

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

Package is "ghc-th-orphans"

Wed Jun 19 21:12:03 2019 rev:7 rq:710643 version:0.13.7

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

New:
----
  th-orphans.cabal

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

Other differences:
------------------
++++++ ghc-th-orphans.spec ++++++
--- /var/tmp/diff_new_pack.fPdxoU/_old  2019-06-19 21:13:01.262778686 +0200
+++ /var/tmp/diff_new_pack.fPdxoU/_new  2019-06-19 21:13:01.266778690 +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-mtl-devel
 BuildRequires:  ghc-rpm-macros
@@ -56,6 +57,7 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ th-orphans.cabal ++++++
name:               th-orphans
version:            0.13.7
x-revision: 1
cabal-version:      >= 1.10
build-type:         Simple
license:            BSD3
license-file:       LICENSE
category:           Template Haskell
author:             Matt Morrow
copyright:          (c) Matt Morrow
maintainer:         Michael Sloan <mgsloan at gmail>
bug-reports:        https://github.com/mgsloan/th-orphans/issues
stability:          experimental
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.2
                  , GHC == 8.2.2
                  , GHC == 8.4.4
                  , GHC == 8.6.4
synopsis:           Orphan instances for TH datatypes
description:        Orphan instances for TH datatypes.  In particular, instances
                    for Ord and Lift, as well as a few missing Show / Eq.  These
                    instances used to live in haskell-src-meta, and that's where
                    the version number started.
extra-source-files: CHANGELOG.md, README.md

library
  build-depends:      base >= 4.3 && < 5,
                      template-haskell < 2.16,
                      -- https://github.com/mboes/th-lift/issues/14
                      th-lift >= 0.7.1,
                      th-reify-many >= 0.1 && < 0.2,
                      th-lift-instances,
                      mtl

  if !impl(ghc >= 8.0)
    build-depends:    fail == 4.9.*

  -- Use TH to derive Generics instances instead of DeriveGeneric, for < 7.10
  if impl(ghc < 7.10)
    build-depends:    generic-deriving >= 1.9

  -- Prior to GHC 7.6, GHC generics lived in ghc-prim
  if impl(ghc >= 7.2) && impl(ghc < 7.6)
    build-depends:    ghc-prim

  hs-source-dirs:     src
  ghc-options:        -Wall
  exposed-modules:    Language.Haskell.TH.Instances
  default-language:   Haskell2010

test-suite test
  type:               exitcode-stdio-1.0
  hs-source-dirs:     test
  main-is:            Spec.hs
  other-modules:      TestUtil
  build-depends:      base,
                      bytestring,
                      ghc-prim,
                      hspec,
                      template-haskell,
                      th-lift,
                      th-orphans
  build-tool-depends: hspec-discover:hspec-discover
  default-language:   Haskell2010

source-repository head
  type:     git
  location: https://github.com/mgsloan/th-orphans

Reply via email to