Hello community,

here is the log from the commit of package ghc-either for openSUSE:Factory 
checked in at 2018-10-25 08:21:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-either (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-either.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-either"

Thu Oct 25 08:21:43 2018 rev:11 rq:643330 version:5.0.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-either/ghc-either.changes    2018-07-24 
17:18:28.022998262 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-either.new/ghc-either.changes       
2018-10-25 08:21:45.367927234 +0200
@@ -1,0 +2,5 @@
+Sat Oct 20 11:24:50 UTC 2018 - Peter Simons <[email protected]>
+
+- Update Cabal build instructions to support ghc-8.6.1.
+
+-------------------------------------------------------------------

New:
----
  either.cabal

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

Other differences:
------------------
++++++ ghc-either.spec ++++++
--- /var/tmp/diff_new_pack.XxPJ7H/_old  2018-10-25 08:21:46.639926663 +0200
+++ /var/tmp/diff_new_pack.XxPJ7H/_new  2018-10-25 08:21:46.643926661 +0200
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -26,6 +26,7 @@
 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#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-bifunctors-devel
 BuildRequires:  ghc-mtl-devel
@@ -55,6 +56,7 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ either.cabal ++++++
name:          either
category:      Control, Monads
version:       5.0.1
x-revision: 1
license:       BSD3
cabal-version: >= 1.10
license-file:  LICENSE
author:        Edward A. Kmett
maintainer:    Edward A. Kmett <[email protected]>
stability:     provisional
homepage:      http://github.com/ekmett/either/
bug-reports:   http://github.com/ekmett/either/issues
copyright:     Copyright (C) 2008-2017 Edward A. Kmett
synopsis:      Combinators for working with sums
description:   Combinators for working with sums.
build-type:    Simple
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
extra-source-files:
  .gitignore
  .ghci
  .vim.custom
  .travis.yml
  CHANGELOG.markdown
  README.markdown

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

library
  build-depends:
    base              >= 4       && < 5,
    bifunctors        >= 4       && < 6,
    mtl               >= 2.0     && < 2.3,
    profunctors       >= 4       && < 6,
    semigroups        >= 0.8.3.1 && < 1,
    semigroupoids     >= 4       && < 6

  other-extensions: CPP Rank2Types
  ghc-options: -Wall
  hs-source-dirs: src
  default-language: Haskell2010
  exposed-modules:
    Data.Either.Combinators
    Data.Either.Validation

test-suite tests
  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs: tests
  build-depends:
    base,
    either,
    test-framework             >= 0.8.1.1 && < 0.9,
    test-framework-quickcheck2 >= 0.3.0.3 && < 0.4,
    QuickCheck                 >= 2.9     && < 2.13
  default-language: Haskell2010

Reply via email to