Hello community,

here is the log from the commit of package ghc-Glob for openSUSE:Leap:15.2 
checked in at 2020-02-19 18:37:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/ghc-Glob (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.ghc-Glob.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-Glob"

Wed Feb 19 18:37:08 2020 rev:11 rq:771192 version:0.10.0

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/ghc-Glob/ghc-Glob.changes      2020-01-15 
15:00:34.517752203 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.ghc-Glob.new.26092/ghc-Glob.changes   
2020-02-19 18:37:09.277785317 +0100
@@ -1,0 +2,10 @@
+Fri Nov  8 16:13:48 UTC 2019 - Peter Simons <[email protected]>
+
+- Drop obsolete group attributes.
+
+-------------------------------------------------------------------
+Tue Jun 11 14:29:05 UTC 2019 - Peter Simons <[email protected]>
+
+- Update Cabal file for more accurate build dependencies.
+
+-------------------------------------------------------------------

New:
----
  Glob.cabal

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

Other differences:
------------------
++++++ ghc-Glob.spec ++++++
--- /var/tmp/diff_new_pack.82Hzqb/_old  2020-02-19 18:37:09.645786087 +0100
+++ /var/tmp/diff_new_pack.82Hzqb/_new  2020-02-19 18:37:09.645786087 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-Glob
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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,9 +23,9 @@
 Release:        0
 Summary:        Globbing library
 License:        BSD-3-Clause
-Group:          Development/Libraries/Haskell
 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-directory-devel
@@ -47,7 +47,6 @@
 
 %package devel
 Summary:        Haskell %{pkg_name} library development files
-Group:          Development/Libraries/Haskell
 Requires:       %{name} = %{version}-%{release}
 Requires:       ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -58,6 +57,7 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 chmod -x *.txt   # https://github.com/Deewiant/glob/issues/31
 
 %build

++++++ Glob.cabal ++++++
Cabal-Version: >= 1.9.2

Name:        Glob
Version:     0.10.0
x-revision: 1
Homepage:    http://iki.fi/matti.niemenmaa/glob/
Synopsis:    Globbing library
Category:    System
Stability:   provisional
Description:
   A library for globbing: matching patterns against file paths.

Author:       Matti Niemenmaa
Maintainer:   Matti Niemenmaa <[email protected]>
License:      BSD3
License-File: LICENSE.txt

Build-Type: Simple

Extra-Source-Files: CHANGELOG.txt
                    CREDITS.txt
                    README.txt

Source-Repository head
  Type: git
  Location: https://github.com/Deewiant/glob

Library
   Build-Depends: base         >= 4 && < 5
                , containers   <  0.7
                , directory    <  1.4
                , dlist        >= 0.4 && < 0.9
                , filepath     >= 1.1 && < 1.5
                , transformers >= 0.2 && < 0.6
                , transformers-compat >= 0.3 && < 0.7

   if impl(ghc < 8.0)
      Build-Depends: semigroups >= 0.18 && < 0.20

   if os(windows)
      Build-Depends: Win32 == 2.*

   Exposed-Modules: System.FilePath.Glob
                    System.FilePath.Glob.Primitive
   Other-Modules:   System.FilePath.Glob.Base
                    System.FilePath.Glob.Directory
                    System.FilePath.Glob.Match
                    System.FilePath.Glob.Simplify
                    System.FilePath.Glob.Utils

   GHC-Options: -Wall

Test-Suite glob-tests
   type: exitcode-stdio-1.0

   hs-source-dirs: ., tests
   main-is: Main.hs

   Build-Depends: base                       >= 4 && < 5
                , containers                 <  0.7
                , directory                  <  1.4
                , dlist                      >= 0.4 && < 0.9
                , filepath                   >= 1.1 && < 1.5
                , transformers               >= 0.2 && < 0.6
                , transformers-compat        >= 0.3 && < 0.7
                , HUnit                      >= 1.2 && < 1.7
                , QuickCheck                 >= 2 && < 3
                , test-framework             >= 0.2 && < 1
                , test-framework-hunit       >= 0.2 && < 1
                , test-framework-quickcheck2 >= 0.3 && < 1

   if impl(ghc < 8.0)
      Build-Depends: semigroups >= 0.18 && < 0.20

   if os(windows)
      Build-Depends: Win32 == 2.*

   Other-Modules: System.FilePath.Glob.Base
                  System.FilePath.Glob.Directory
                  System.FilePath.Glob.Match
                  System.FilePath.Glob.Primitive
                  System.FilePath.Glob.Simplify
                  System.FilePath.Glob.Utils
                  Tests.Base
                  Tests.Compiler
                  Tests.Directory
                  Tests.Instances
                  Tests.Matcher
                  Tests.Optimizer
                  Tests.Regression
                  Tests.Simplifier
                  Tests.Utils

   GHC-Options: -Wall

Reply via email to