Hello community,

here is the log from the commit of package ghc-tagged for openSUSE:Leap:15.2 
checked in at 2020-02-19 18:41:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/ghc-tagged (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.ghc-tagged.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-tagged"

Wed Feb 19 18:41:26 2020 rev:13 rq:771477 version:0.8.6

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/ghc-tagged/ghc-tagged.changes  2020-01-15 
15:02:39.913817616 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.ghc-tagged.new.26092/ghc-tagged.changes       
2020-02-19 18:41:28.662209961 +0100
@@ -1,0 +2,10 @@
+Fri Nov  8 16:14:53 UTC 2019 - Peter Simons <[email protected]>
+
+- Drop obsolete group attributes.
+
+-------------------------------------------------------------------
+Tue Jun 11 14:29:19 UTC 2019 - Peter Simons <[email protected]>
+
+- Update Cabal file for more accurate build dependencies.
+
+-------------------------------------------------------------------

New:
----
  tagged.cabal

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

Other differences:
------------------
++++++ ghc-tagged.spec ++++++
--- /var/tmp/diff_new_pack.8AJd4E/_old  2020-02-19 18:41:29.042210428 +0100
+++ /var/tmp/diff_new_pack.8AJd4E/_new  2020-02-19 18:41:29.046210433 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-tagged
 #
-# 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
@@ -22,9 +22,9 @@
 Release:        0
 Summary:        Haskell 98 phantom types to avoid unsafely passing dummy 
arguments
 License:        BSD-3-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
+Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-deepseq-devel
 BuildRequires:  ghc-rpm-macros
@@ -36,7 +36,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}
@@ -47,6 +46,7 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ tagged.cabal ++++++
name:           tagged
version:        0.8.6
x-revision: 2
license:        BSD3
license-file:   LICENSE
author:         Edward A. Kmett
maintainer:     Edward A. Kmett <[email protected]>
stability:      experimental
category:       Data, Phantom Types
synopsis:       Haskell 98 phantom types to avoid unsafely passing dummy 
arguments
homepage:       http://github.com/ekmett/tagged
bug-reports:    http://github.com/ekmett/tagged/issues
copyright:      2009-2015 Edward A. Kmett
description:    Haskell 98 phantom types to avoid unsafely passing dummy 
arguments.
build-type:     Simple
cabal-version:  >= 1.10
extra-source-files: .travis.yml CHANGELOG.markdown README.markdown HLint.hs
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.3
             , GHC == 8.6.1

source-repository head
  type: git
  location: git://github.com/ekmett/tagged.git

flag deepseq
  description:
    You can disable the use of the `deepseq` package using `-f-deepseq`.
    .
    Disabing this is an unsupported configuration, but it may be useful for 
accelerating builds in sandboxes for expert users.
  default: True
  manual: True

flag transformers
  description:
    You can disable the use of the `transformers` and `transformers-compat` 
packages using `-f-transformers`.
    .
    Disable this is an unsupported configuration, but it may be useful for 
accelerating builds in sandboxes for expert users.
  default: True
  manual: True

library
  default-language: Haskell98
  other-extensions: CPP
  build-depends: base >= 2 && < 5
  ghc-options: -Wall
  hs-source-dirs: src
  exposed-modules: Data.Tagged

  if !impl(hugs)
    cpp-options: -DLANGUAGE_DeriveDataTypeable
    other-extensions: DeriveDataTypeable

  if impl(ghc<7.7)
    hs-source-dirs: old
    exposed-modules: Data.Proxy
    other-modules: Paths_tagged

  if impl(ghc>=7.2 && <7.5)
    build-depends: ghc-prim

  if impl(ghc>=7.6)
    exposed-modules: Data.Proxy.TH
    build-depends: template-haskell >= 2.8 && < 2.17

  if flag(deepseq)
    build-depends: deepseq >= 1.1 && < 1.5

  if flag(transformers)
    build-depends: transformers        >= 0.2 && < 0.6

    -- Ensure Data.Functor.Classes is always available
    if impl(ghc >= 7.10) || impl(ghcjs)
      build-depends: transformers >= 0.4.2.0
    else
      build-depends: transformers-compat >= 0.5 && < 1

Reply via email to