Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-OneTuple for openSUSE:Factory 
checked in at 2021-12-19 17:34:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-OneTuple (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-OneTuple.new.2520 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-OneTuple"

Sun Dec 19 17:34:18 2021 rev:2 rq:932821 version:0.3.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-OneTuple/ghc-OneTuple.changes        
2021-11-11 21:37:44.576946456 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-OneTuple.new.2520/ghc-OneTuple.changes      
2021-12-19 17:34:24.612263828 +0100
@@ -1,0 +2,6 @@
+Tue Nov 16 19:50:36 UTC 2021 - [email protected]
+
+- Update OneTuple to version 0.3.1 revision 2.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  OneTuple.cabal

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

Other differences:
------------------
++++++ ghc-OneTuple.spec ++++++
--- /var/tmp/diff_new_pack.QGWtug/_old  2021-12-19 17:34:25.140264200 +0100
+++ /var/tmp/diff_new_pack.QGWtug/_new  2021-12-19 17:34:25.144264202 +0100
@@ -25,6 +25,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/2.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-base-orphans-devel
 BuildRequires:  ghc-hashable-devel
@@ -53,6 +54,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ OneTuple.cabal ++++++
cabal-version:      >=1.10
name:               OneTuple
version:            0.3.1
x-revision:         2
synopsis:           Singleton Tuple
category:           Data
description:
  This package is a compatibility package for a singleton data type
  .
  > data Solo a = Solo a
  .
  Note: it's not a @newtype@
  .
  @Solo@ is available in @base-4.16@ (GHC-9.2).

copyright:          (c) John Dorsey 2008
license:            BSD3
license-file:       LICENSE
author:             John Dorsey <[email protected]>
maintainer:
  Oleg Grenrus <[email protected]>, John Dorsey <[email protected]>

stability:          experimental
build-type:         Simple
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
   || ==9.2.1

extra-source-files: Changelog.md

source-repository head
  type:     git
  location: https://github.com/phadej/OneTuple.git

library
  default-language: Haskell98
  exposed-modules:
    Data.Tuple.OneTuple
    Data.Tuple.Solo
    Data.Tuple.Solo.TH

  hs-source-dirs:   src
  build-depends:
      base              >=4.5 && <4.17
    , template-haskell

  if impl(ghc >=9.0)
    build-depends: ghc-prim

  else
    build-depends: hashable >=1.3.5.0 && <1.5

  if !impl(ghc >=8.0)
    build-depends:
        semigroups    >=0.18.4 && <0.21
      , transformers  >=0.3    && <0.7

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

    else
      build-depends: transformers-compat >=0.5.1.0 && <0.8

  if !impl(ghc >=9.2)
    build-depends: base-orphans >=0.8.6

  if !impl(ghc >=7.6)
    build-depends: ghc-prim

test-suite instances
  type:             exitcode-stdio-1.0
  default-language: Haskell98
  hs-source-dirs:   test
  main-is:          instances.hs
  build-depends:
      base
    , hashable  >=1.3.5.0 && <1.5
    , OneTuple

  if !impl(ghc >=8.0)
    build-depends:
        semigroups
      , transformers
      , transformers-compat

test-suite th
  type:             exitcode-stdio-1.0
  default-language: Haskell98
  hs-source-dirs:   test
  main-is:          th.hs
  build-depends:
      base
    , OneTuple
    , template-haskell

Reply via email to