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 2023-10-13 23:14:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-OneTuple (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-OneTuple.new.20540 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-OneTuple"

Fri Oct 13 23:14:51 2023 rev:6 rq:1117072 version:0.4.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-OneTuple/ghc-OneTuple.changes        
2023-06-22 23:26:25.385952353 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-OneTuple.new.20540/ghc-OneTuple.changes     
2023-10-13 23:15:54.825719680 +0200
@@ -1,0 +2,6 @@
+Wed Oct  4 11:27:54 UTC 2023 - Peter Simons <psim...@suse.com>
+
+- Update OneTuple to version 0.4.1.1 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  OneTuple.cabal

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

Other differences:
------------------
++++++ ghc-OneTuple.spec ++++++
--- /var/tmp/diff_new_pack.Uo11xO/_old  2023-10-13 23:15:55.345738541 +0200
+++ /var/tmp/diff_new_pack.Uo11xO/_new  2023-10-13 23:15:55.349738686 +0200
@@ -26,6 +26,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-base-devel
 BuildRequires:  ghc-base-prof
@@ -77,6 +78,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ OneTuple.cabal ++++++
cabal-version:      1.12
name:               OneTuple
version:            0.4.1.1
x-revision:         1
synopsis:           Singleton Tuple
category:           Data
description:
  This package is a compatibility package for a singleton data type
  .
  > data Solo a = MkSolo 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 <hask...@colquitt.org>
maintainer:
  Oleg Grenrus <oleg.gren...@iki.fi>, John Dorsey <hask...@colquitt.org>

stability:          experimental
build-type:         Simple
tested-with:
  GHC ==7.0.4
   || ==7.2.2
   || ==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.7
   || ==9.0.2
   || ==9.2.8
   || ==9.4.7
   || ==9.6.3
   || ==9.8.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.3 && <4.20
    , template-haskell

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

  else
    if impl(ghc >=7.4)
      build-depends: hashable >=1.3.5.0 && <1.5

    else
      build-depends: hashable >=1.2.5.0 && <1.3

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

  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.0)
    build-depends: foldable1-classes-compat >=0.1 && <0.2

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

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

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

  if !impl(ghc >=9.6)
    build-depends: foldable1-classes-compat >=0.1 && <0.2

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