Hello community,

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

Package is "ghc-adjunctions"

Fri Sep 15 21:15:19 2017 rev:4 rq:524016 version:4.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-adjunctions/ghc-adjunctions.changes  
2016-07-21 08:00:50.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-adjunctions.new/ghc-adjunctions.changes     
2017-09-15 21:15:19.977758811 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+-------------------------------------------------------------------

Old:
----
  1.cabal

New:
----
  adjunctions.cabal

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

Other differences:
------------------
++++++ ghc-adjunctions.spec ++++++
--- /var/tmp/diff_new_pack.kfZTOc/_old  2017-09-15 21:15:20.969619450 +0200
+++ /var/tmp/diff_new_pack.kfZTOc/_new  2017-09-15 21:15:20.973618888 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-adjunctions
 #
-# 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:        Adjunctions and representable functors
 License:        BSD-2-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-comonad-devel
 BuildRequires:  ghc-containers-devel
@@ -43,15 +42,13 @@
 BuildRequires:  ghc-transformers-compat-devel
 BuildRequires:  ghc-transformers-devel
 BuildRequires:  ghc-void-devel
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 Adjunctions and representable functors.
 
 %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}
@@ -64,15 +61,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
 
@@ -80,11 +74,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc CHANGELOG.markdown README.markdown
 
 %changelog

++++++ adjunctions.cabal ++++++
name:          adjunctions
category:      Data Structures, Adjunctions
version:       4.3
x-revision: 1
license:       BSD3
cabal-version: >= 1.6
license-file:  LICENSE
author:        Edward A. Kmett
maintainer:    Edward A. Kmett <ekm...@gmail.com>
stability:     provisional
homepage:      http://github.com/ekmett/adjunctions/
bug-reports:   http://github.com/ekmett/adjunctions/issues
copyright:     Copyright (C) 2011-2014 Edward A. Kmett
synopsis:      Adjunctions and representable functors
description:   Adjunctions and representable functors
build-type:    Simple
extra-source-files:
  .ghci
  .gitignore
  .travis.yml
  .vim.custom
  travis/cabal-apt-install
  travis/config
  HLint.hs
  CHANGELOG.markdown
  README.markdown

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

library
  hs-source-dirs: src

  other-extensions:
    CPP
    FunctionalDependencies
    FlexibleContexts
    MultiParamTypeClasses
    Rank2Types
    UndecidableInstances

  build-depends:
    array               >= 0.3.0.2 && < 0.7,
    base                >= 4       && < 5,
    comonad             >= 4       && < 6,
    containers          >= 0.3     && < 0.6,
    contravariant       >= 1       && < 2,
    distributive        >= 0.5     && < 1,
    free                >= 4       && < 5,
    mtl                 >= 2.0.1   && < 2.3,
    profunctors         >= 4       && < 6,
    tagged              >= 0.7     && < 1,
    semigroupoids       >= 4       && < 6,
    semigroups          >= 0.11    && < 1,
    transformers        >= 0.2     && < 0.6,
    transformers-compat >= 0.3     && < 1,
    void                >= 0.5.5.1 && < 1

  exposed-modules:
    Control.Comonad.Representable.Store
    Control.Comonad.Trans.Adjoint
    Control.Monad.Representable.Reader
    Control.Monad.Representable.State
    Control.Monad.Trans.Adjoint
    Control.Monad.Trans.Contravariant.Adjoint
    Control.Monad.Trans.Conts
    Data.Functor.Adjunction
    Data.Functor.Contravariant.Adjunction
    Data.Functor.Contravariant.Rep
    Data.Functor.Rep

  ghc-options: -Wall

Reply via email to