Hello community,

here is the log from the commit of package ghc-union for openSUSE:Factory 
checked in at 2017-04-11 09:43:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-union (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-union.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-union"

Tue Apr 11 09:43:55 2017 rev:3 rq:485169 version:0.1.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-union/ghc-union.changes      2017-02-03 
17:40:22.310020386 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-union.new/ghc-union.changes 2017-04-11 
09:43:57.419304505 +0200
@@ -1,0 +2,5 @@
+Wed Mar 22 09:14:44 UTC 2017 - psim...@suse.com
+
+- Update to version 0.1.1.1 revision 1 with cabal2obs.
+
+-------------------------------------------------------------------

New:
----
  union.cabal

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

Other differences:
------------------
++++++ ghc-union.spec ++++++
--- /var/tmp/diff_new_pack.nRAJ9y/_old  2017-04-11 09:43:58.455158178 +0200
+++ /var/tmp/diff_new_pack.nRAJ9y/_new  2017-04-11 09:43:58.455158178 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-union
 #
-# 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
@@ -25,6 +25,7 @@
 Group:          Development/Languages/Other
 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-deepseq-devel
 BuildRequires:  ghc-profunctors-devel
@@ -52,6 +53,7 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ union.cabal ++++++
name:                union
version:             0.1.1.1
x-revision: 1
synopsis:            Extensible type-safe unions
description:

    Extensible type-safe unions for Haskell with prisms using modern
    GHC features. Dual to vinyl records. Unions are also known as
    corecords or polymorphic variants.

    Neither requires a @Typeable@ constraint nor uses unsafe coercions
    at the cost of linear time access (negligible in practice).

license:             BSD3
license-file:        LICENSE
author:              Vladislav Zavialov
maintainer:          Vladislav Zavialov <vlad.z.4...@gmail.com>
bug-reports:         https://github.com/int-index/union/issues
category:            Data
build-type:          Simple
cabal-version:       >=1.10

source-repository head
  type:                git
  location:            g...@github.com:int-index/union.git

library
  exposed-modules:     Data.Union
  other-modules:       Data.Union.Prism
  other-extensions:    DataKinds
                       EmptyCase
                       FlexibleContexts
                       FlexibleInstances
                       GADTs
                       LambdaCase
                       MultiParamTypeClasses
                       PolyKinds
                       RankNTypes
                       ScopedTypeVariables
                       TypeOperators
  build-depends:       base >=4.8 && <4.10
               ,       vinyl >=0.5 && <0.6
               ,       profunctors >=5.1 && <5.3
               ,       tagged >=0.8 && <0.9
               ,       deepseq >=1.4 && <1.5
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall

benchmark bench
  type:                exitcode-stdio-1.0
  main-is:             Benchmark.hs
  build-depends:       base
               ,       union
               ,       lens
               ,       deepseq >=1.4.2
               ,       criterion
  hs-source-dirs:      bench
  default-language:    Haskell2010
  ghc-options:         -Wall -O2 -fno-warn-orphans

Reply via email to