Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-Unique for openSUSE:Factory 
checked in at 2023-01-18 13:09:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-Unique (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-Unique.new.32243 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-Unique"

Wed Jan 18 13:09:36 2023 rev:4 rq:1059048 version:0.4.7.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-Unique/ghc-Unique.changes    2021-10-12 
21:50:20.599956755 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-Unique.new.32243/ghc-Unique.changes 
2023-01-18 13:09:43.576437782 +0100
@@ -1,0 +2,6 @@
+Wed Dec 21 08:00:37 UTC 2022 - Peter Simons <[email protected]>
+
+- Update Unique to version 0.4.7.9 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  Unique.cabal

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

Other differences:
------------------
++++++ ghc-Unique.spec ++++++
--- /var/tmp/diff_new_pack.My7ZOo/_old  2023-01-18 13:09:44.140441022 +0100
+++ /var/tmp/diff_new_pack.My7ZOo/_new  2023-01-18 13:09:44.144441045 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-Unique
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # 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 @@
 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-extra-devel
@@ -53,6 +54,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ Unique.cabal ++++++
cabal-version: 2.0
name:          Unique
version:       0.4.7.9
x-revision: 1
license:       BSD3
license-file:  LICENSE
maintainer:    [email protected]
author:        Volodymyr Yashchenko
tested-with:   ghc >=7.4 && <8.2.1 || >8.2.1 && <8.12
synopsis:      It provides the functionality like unix "uniq" utility
description:
    Library provides the functions to find unique and duplicate elements in the 
list

category:      Data
build-type:    Simple

source-repository head
    type:     git
    location: https://github.com/kapralVV/Unique.git

library
    exposed-modules:
        Data.List.Unique
        Data.List.UniqueStrict
        Data.List.UniqueUnsorted

    default-language: Haskell2010
    ghc-options:      -Wall
    build-depends:
        base >=4.0 && < 5,
        containers >=0.5.0.0 && <=0.7,
        extra >=1.6.2 && <=1.8,
        hashable >= 1.2.6 && <=1.5,
        unordered-containers >= 0.2.8 && <=0.3

test-suite HspecTest
    type:             exitcode-stdio-1.0
    main-is:          Main.hs
    hs-source-dirs:   tests
    other-modules:
        Unique.Complex
        Unique.IsUnique
        Unique.RepeatedBy
        Unique.SortUniq
        Unique.AllUnique
        UniqueStrict.IsUnique
        UniqueStrict.RepeatedBy
        UniqueStrict.SortUniq
        UniqueStrict.AllUnique
        UniqueUnsorted.IsUnique
        UniqueUnsorted.RemoveDuplicates
        UniqueUnsorted.RepeatedBy
        UniqueUnsorted.AllUnique

    default-language: Haskell2010
    ghc-options:      -Wall
    build-depends:
        base >=4.0 && <5,
        Unique,
        hspec -any,
        containers >=0.5.0.0 && <=0.7,
        QuickCheck    >= 2.10 && <2.15

benchmark Criterion
    type:             exitcode-stdio-1.0
    main-is:          Main.hs
    hs-source-dirs:   bench
    default-language: Haskell2010
    ghc-options:      -Wall -rtsopts
    build-depends:
        base >=4.0 && <5,
        Unique,
        criterion -any,
        QuickCheck    >= 2.10 && <2.15,
        quickcheck-instances -any,
        bytestring -any,
        hashable -any

Reply via email to