Hello community,

here is the log from the commit of package ghc-range-set-list for 
openSUSE:Factory checked in at 2017-07-11 08:25:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-range-set-list (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-range-set-list.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-range-set-list"

Tue Jul 11 08:25:39 2017 rev:2 rq:508573 version:0.1.2.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-range-set-list/ghc-range-set-list.changes    
2016-10-22 13:19:00.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-range-set-list.new/ghc-range-set-list.changes   
    2017-07-11 08:25:40.260923197 +0200
@@ -1,0 +2,5 @@
+Tue Jun 27 09:40:03 UTC 2017 - [email protected]
+
+- Update to version 0.1.2.0 revision 1.
+
+-------------------------------------------------------------------

New:
----
  range-set-list.cabal

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

Other differences:
------------------
++++++ ghc-range-set-list.spec ++++++
--- /var/tmp/diff_new_pack.hqdS42/_old  2017-07-11 08:25:40.720858325 +0200
+++ /var/tmp/diff_new_pack.hqdS42/_new  2017-07-11 08:25:40.724857761 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-range-set-list
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,11 +23,11 @@
 Release:        0
 Summary:        Memory efficient sets with ranges of elements
 License:        MIT
-Group:          System/Libraries
+Group:          Development/Languages/Other
 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
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-deepseq-devel
 BuildRequires:  ghc-hashable-devel
@@ -38,7 +38,6 @@
 BuildRequires:  ghc-tasty-devel
 BuildRequires:  ghc-tasty-quickcheck-devel
 %endif
-# End cabal-rpm deps
 
 %description
 Memory efficient sets with continuous ranges of discrete, bounded elements.
@@ -58,21 +57,16 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
-
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
 
 %post devel
 %ghc_pkg_recache

++++++ range-set-list.cabal ++++++
name:                range-set-list
version:             0.1.2.0
x-revision:          1
synopsis:            Memory efficient sets with ranges of elements.
description:         Memory efficient sets with continuous ranges of discrete, 
bounded elements. List- and map-based implementations. Interface mimics 
'Data.Set' where possible.
homepage:            https://github.com/phadej/range-set-list#readme
bug-reports:         https://github.com/phadej/range-set-list/issues
license:             MIT
license-file:        LICENSE
author:              Oleg Grenrus <[email protected]>
maintainer:          Oleg Grenrus <[email protected]>
category:            Data
tested-with:         GHC==7.4.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.2
build-type:          Simple
cabal-version:       >= 1.10

extra-source-files:
  CHANGELOG.md
  README.md

source-repository head
  type: git
  location: https://github.com/phadej/range-set-list

library
  hs-source-dirs:
    src
  other-extensions: DeriveDataTypeable Safe
  ghc-options: -Wall -fwarn-tabs
  build-depends:
    base        >=4.5      && <4.11,
    containers  >=0.5.3    && <0.6,
    semigroups  >=0.16.2.2 && <0.19,
    deepseq     >=1.3.0.0  && <1.5,
    hashable    >=1.2.3.3  && <1.3
  exposed-modules:
    Data.RangeSet.Internal
    Data.RangeSet.IntMap
    Data.RangeSet.List
    Data.RangeSet.Map
  default-language: Haskell2010

test-suite test
  type: exitcode-stdio-1.0
  main-is: Tests.hs
  hs-source-dirs:
    tests
  ghc-options: -Wall -fwarn-tabs
  build-depends:
    base,
    containers,
    semigroups,
    deepseq,
    hashable,
    containers        >=0.5 && <0.6,
    tasty             >=0.8 && <0.12,
    tasty-quickcheck  >=0.8 && <0.10,
    range-set-list
  other-modules:
    IntMap
    List
    Map
    SetAction
  default-language: Haskell2010

Reply via email to