Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-semialign for openSUSE:Factory 
checked in at 2021-08-25 20:57:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-semialign (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-semialign.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-semialign"

Wed Aug 25 20:57:07 2021 rev:4 rq:912626 version:1.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-semialign/ghc-semialign.changes      
2021-03-10 08:57:35.602909921 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-semialign.new.1899/ghc-semialign.changes    
2021-08-25 20:58:08.969165818 +0200
@@ -1,0 +2,6 @@
+Wed Jul 28 07:42:28 UTC 2021 - [email protected]
+
+- Update semialign to version 1.2 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  semialign.cabal

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

Other differences:
------------------
++++++ ghc-semialign.spec ++++++
--- /var/tmp/diff_new_pack.nk1tNt/_old  2021-08-25 20:58:09.481165145 +0200
+++ /var/tmp/diff_new_pack.nk1tNt/_new  2021-08-25 20:58:09.485165140 +0200
@@ -24,6 +24,7 @@
 License:        BSD-3-Clause
 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-containers-devel
 BuildRequires:  ghc-hashable-devel
@@ -58,6 +59,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ semialign.cabal ++++++
cabal-version:      >=1.10
name:               semialign
version:            1.2
x-revision:         1
synopsis:
  Align and Zip type-classes from the common Semialign ancestor.

homepage:           https://github.com/haskellari/these
license:            BSD3
license-file:       LICENSE
author:             C. McCann, Oleg Grenrus
maintainer:         Oleg Grenrus <[email protected]>
category:           Data, These
build-type:         Simple
extra-source-files: CHANGELOG.md
description:
  The major use of @These@ of this is provided by the @align@ member of
  @Semialign@ class, representing a generalized notion of "zipping with padding"
  that combines structures without truncating to the size of the smaller input.
  .
  It turns out that @zip@ operation fits well the @Semialign@ class,
  forming lattice-like structure.

tested-with:
    GHC ==7.4.2
     || ==7.6.3
     || ==7.8.4
     || ==7.10.3
     || ==8.0.2
     || ==8.2.2
     || ==8.4.4
     || ==8.6.5
     || ==8.8.4
     || ==8.10.4
     || ==9.0.1
  , GHCJS ==8.4

source-repository head
  type:     git
  location: https://github.com/haskellari/these.git
  subdir:   semialign

flag semigroupoids
  description: Build with semigroupoids dependency
  manual:      True
  default:     True

library
  default-language: Haskell2010
  ghc-options:      -Wall

  if impl(ghc >=8.0)
    ghc-options: -Wno-trustworthy-safe

  hs-source-dirs:   src
  exposed-modules:
    Data.Align
    Data.Crosswalk
    Data.Semialign
    Data.Semialign.Indexed
    Data.Zip

  other-modules:    Data.Semialign.Internal

  -- ghc boot libs
  build-depends:
      base          >=4.5.1.0 && <4.16
    , containers    >=0.4.2.1 && <0.7
    , transformers  >=0.3.0.0 && <0.7

  -- These
  build-depends:    these >=1.1.1.1 && <1.2

  -- other dependencies
  build-depends:
      hashable                       >=1.2.7.0  && <1.4
    , indexed-traversable            >=0.1.1    && <0.2
    , indexed-traversable-instances  >=0.1      && <0.2
    , tagged                         >=0.8.6    && <0.9
    , unordered-containers           >=0.2.8.0  && <0.3
    , vector                         >=0.12.0.2 && <0.13

  -- base shims
  if !impl(ghc >=8.2)
    build-depends: bifunctors >=5.5.4 && <5.6

  if !impl(ghc >=8.0)
    build-depends:
        semigroups           >=0.18.5  && <0.20
      , transformers         >=0.3.0.0 && <0.7
      , transformers-compat  >=0.6.5   && <0.8

    -- Ensure Data.Functor.Classes is always available
    if impl(ghc >=7.10)
      build-depends: transformers >=0.4.2.0

  if !impl(ghc >=7.10)
    build-depends: void >=0.7.3 && <0.8

  if impl(ghc <7.5)
    build-depends: ghc-prim

  if flag(semigroupoids)
    build-depends: semigroupoids >=5.3.2 && <5.4

Reply via email to