Hello community,

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

Package is "ghc-type-eq"

Tue Sep 19 16:32:16 2017 rev:2 rq:526751 version:0.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-type-eq/ghc-type-eq.changes  2017-01-18 
21:36:05.037147377 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-type-eq.new/ghc-type-eq.changes     
2017-09-19 16:32:24.794658948 +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:
----
  type-eq.cabal

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

Other differences:
------------------
++++++ ghc-type-eq.spec ++++++
--- /var/tmp/diff_new_pack.PNCZUz/_old  2017-09-19 16:32:25.338581902 +0200
+++ /var/tmp/diff_new_pack.PNCZUz/_new  2017-09-19 16:32:25.342581335 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-type-eq
 #
-# 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,16 +22,13 @@
 Release:        0
 Summary:        Type equality evidence you can carry around
 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
-# Begin cabal-rpm deps:
+Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  cpphs
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-rpm-macros
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 This package provides types and functions to store and manipulate evidence of
@@ -70,7 +67,7 @@
 
 %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}
@@ -83,15 +80,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
 
@@ -99,10 +93,8 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 
 %changelog

++++++ type-eq.cabal ++++++
name:          type-eq
category:      Type System
version:       0.5
x-revision: 1
author:        Gábor Lehel
maintainer:    Gábor Lehel <glaebho...@gmail.com>
homepage:      http://github.com/glaebhoerl/type-eq
copyright:     Copyright (C) 2012-2013 Gábor Lehel
license:       BSD3
license-file:  LICENSE
stability:     experimental
cabal-version: >= 1.10
build-type:    Simple
synopsis:      Type equality evidence you can carry around
description:
    This package provides types and functions to store and manipulate evidence 
of equality between types.
    .
    To take advantage of kind polymorphism when it is available but not require 
it, it is split into the following primary modules:
    .
        - @/Type.Eq/@: Types and functions which can be kind-polymorphic if 
@PolyKinds@ are available, but are specific to kind @*@ otherwise.
    .
        - @/Type.Eq.Higher/@: Kind-monomorphic types and functions of higher 
kind, up to @* -> * -> *@.
    .
        - @/Type.Eq.Poly/@: Combinators that require kind polymorphism. This 
module is only available if @PolyKinds@ are available.
    .
    Major required extensions: @GADTs@, @TypeFamilies@ (for @~@), @Rank2Types@, 
@TypeOperators@
    .
    Optional extensions: @PolyKinds@ (GHC 7.6+)
    .
    Minimum GHC: 6.10
    .
    Related packages:
    .
        - <http://hackage.haskell.org/package/type-equality>
    .
        - <http://hackage.haskell.org/package/eq>
    .
        - <http://hackage.haskell.org/package/ty>
    .
        - <http://hackage.haskell.org/package/dependent-sum>
    .
        - <http://hackage.haskell.org/package/categories> 
(@Data.Category.Discrete@)

extra-source-files: macros.h

source-repository head
    type:      git
    location:  git://github.com/glaebhoerl/type-eq.git

library
    default-language:
        Haskell98

    other-extensions:
        CPP
        GADTs
        Rank2Types
        TypeFamilies
        TypeOperators
        KindSignatures
        FlexibleContexts

    build-depends:
        base >= 3.0 && < 4.10

    exposed-modules:
        Type.Eq
        Type.Eq.Unsafe
        Type.Eq.Higher
        Type.Eq.Higher.Unsafe

    ghc-options: -pgmPcpphs -optP--cpp
    build-tools: cpphs

-- DeriveDataTypeable and PolyKinds sadly don't mix
--    if impl(ghc)
--        cpp-options: -DHAVE_TYPEABLE
--        other-extensions: DeriveDataTypeable

--    if impl(ghc >= 7.0)
--        cpp-options: -DHAVE_DEPENDENCIES
--        build-depends:
-- Semigroupoid
--            semigroupoids >= 1.0 && < 3.1,
-- Groupoid
--            groupoids     >= 0.1 && < 3.1
-- Tensor
--            data-lens     >= 2.9 && < 2.11

    if impl(ghc >= 7.2)
        other-extensions: Trustworthy

    if impl(ghc >= 7.6)
        exposed-modules:  Type.Eq.Poly
--        other-extensions: PolyKinds, Unsafe

    include-dirs: .

    ghc-options:
        -Wall


Reply via email to