Hello community,

here is the log from the commit of package ghc-reducers for openSUSE:Factory 
checked in at 2017-09-15 22:08:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-reducers (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-reducers.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-reducers"

Fri Sep 15 22:08:41 2017 rev:3 rq:525275 version:3.12.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-reducers/ghc-reducers.changes        
2016-07-27 16:10:16.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-reducers.new/ghc-reducers.changes   
2017-09-15 22:08:42.602499113 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - [email protected]
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+-------------------------------------------------------------------

Old:
----
  1.cabal

New:
----
  reducers.cabal

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

Other differences:
------------------
++++++ ghc-reducers.spec ++++++
--- /var/tmp/diff_new_pack.hGtdVI/_old  2017-09-15 22:08:43.226411210 +0200
+++ /var/tmp/diff_new_pack.hGtdVI/_new  2017-09-15 22:08:43.226411210 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-reducers
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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,12 +22,11 @@
 Release:        0
 Summary:        Semigroups, specialized containers and a general map/reduce 
framework
 License:        BSD-3-Clause
-Group:          System/Libraries
-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
-Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal
+Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-array-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-containers-devel
@@ -39,15 +38,13 @@
 BuildRequires:  ghc-text-devel
 BuildRequires:  ghc-transformers-devel
 BuildRequires:  ghc-unordered-containers-devel
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 Semigroups, specialized containers and a general map/reduce framework.
 
 %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}
@@ -60,15 +57,12 @@
 %setup -q -n %{pkg_name}-%{version}
 cp -p %{SOURCE1} %{pkg_name}.cabal
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -76,10 +70,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog

++++++ reducers.cabal ++++++
name:          reducers
category:      Data, Math, Numerical, Semigroups
version:       3.12.1
x-revision: 1
license:       BSD3
cabal-version: >= 1.6
license-file:  LICENSE
author:        Edward A. Kmett
maintainer:    Edward A. Kmett <[email protected]>
stability:     provisional
homepage:      http://github.com/ekmett/reducers/
bug-reports:   http://github.com/ekmett/reducers/issues
copyright:     Copyright (C) 2008-2013 Edward A. Kmett
synopsis:      Semigroups, specialized containers and a general map/reduce 
framework
description:   Semigroups, specialized containers and a general map/reduce 
framework
build-type:    Simple
extra-source-files: .travis.yml

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

library
  hs-source-dirs: src

  build-depends:
    base                   >= 4        && < 5,
    array                  >= 0.3      && < 0.6,
    transformers           >= 0.2      && < 0.6,
    bytestring             >= 0.9.1    && < 0.11,
    containers             >= 0.3      && < 0.6,
    fingertree             >= 0.1      && < 0.2,
    hashable               >= 1.1.2.1  && < 1.3,
    text                   >= 0.11.1.5 && < 1.3,
    unordered-containers   >= 0.1.4    && < 0.3,
    semigroups             >= 0.9      && < 1,
    semigroupoids          >= 4        && < 6

  exposed-modules:
    Data.Generator
    Data.Generator.Combinators
    Data.Semigroup.Generator
    Data.Semigroup.Reducer
    Data.Semigroup.Reducer.With
    Data.Semigroup.Instances
    Data.Semigroup.Union
    Data.Semigroup.Apply
    Data.Semigroup.Applicative
    Data.Semigroup.Alt
    Data.Semigroup.Alternative
    Data.Semigroup.Monad
    Data.Semigroup.MonadPlus
    Data.Semigroup.Self

  if impl(ghc)
    extensions: DeriveDataTypeable
    cpp-options: -DLANGUAGE_DeriveDataTypeable

  ghc-options: -Wall

Reply via email to