Hello community,

here is the log from the commit of package ghc-test-framework for 
openSUSE:Factory checked in at 2017-04-20 20:56:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-test-framework (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-test-framework.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-test-framework"

Thu Apr 20 20:56:03 2017 rev:2 rq:487962 version:0.8.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-test-framework/ghc-test-framework.changes    
2016-11-02 12:43:36.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-test-framework.new/ghc-test-framework.changes   
    2017-04-20 20:56:10.019700990 +0200
@@ -1,0 +2,5 @@
+Fri Apr  7 10:28:59 UTC 2017 - psim...@suse.com
+
+- Update to version 0.8.1.1 revision 2 with cabal2obs.
+
+-------------------------------------------------------------------

Old:
----
  1.cabal

New:
----
  test-framework.cabal

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

Other differences:
------------------
++++++ ghc-test-framework.spec ++++++
--- /var/tmp/diff_new_pack.QUvRyX/_old  2017-04-20 20:56:13.227247394 +0200
+++ /var/tmp/diff_new_pack.QUvRyX/_new  2017-04-20 20:56:13.231246828 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-test-framework
 #
-# 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
@@ -22,12 +22,11 @@
 Release:        0
 Summary:        Framework for running and organising tests, with HUnit and 
QuickCheck support
 License:        BSD-3-Clause
-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
+Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-ansi-terminal-devel
 BuildRequires:  ghc-ansi-wl-pprint-devel
 BuildRequires:  ghc-containers-devel
@@ -39,7 +38,6 @@
 BuildRequires:  ghc-time-devel
 BuildRequires:  ghc-xml-devel
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 Allows tests such as QuickCheck properties and HUnit test cases to be assembled
@@ -63,15 +61,12 @@
 %setup -q -n %{pkg_name}-%{version}
 cp -p %{SOURCE1} %{pkg_name}.cabal
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 

++++++ test-framework.cabal ++++++
Name:                test-framework
Version:             0.8.1.1
x-revision: 2
Cabal-Version:       >= 1.6
Category:            Testing
Synopsis:            Framework for running and organising tests, with HUnit and 
QuickCheck support
Description:         Allows tests such as QuickCheck properties and HUnit test 
cases to be assembled into test groups, run in
                     parallel (but reported in deterministic order, to aid diff 
interpretation) and filtered and controlled by
                     command line options. All of this comes with colored test 
output, progress reporting and test statistics output.
License:             BSD3
License-File:        LICENSE
Author:              Max Bolingbroke <batterseapo...@hotmail.com>
Maintainer:          Libraries List <librar...@haskell.org>
Homepage:            https://batterseapower.github.io/test-framework/
Bug-Reports:         https://github.com/haskell/test-framework/issues/
Build-Type:          Simple

Flag Tests
        Description:    Build the tests
        Default:        False
        Manual:         True


Library
        Exposed-Modules:        Test.Framework
                                Test.Framework.Options
                                Test.Framework.Providers.API
                                Test.Framework.Runners.Console
                                Test.Framework.Runners.Options
                                Test.Framework.Runners.TestPattern
                                Test.Framework.Runners.API
                                Test.Framework.Seed

        Other-Modules:          Test.Framework.Core
                                Test.Framework.Improving
                                Test.Framework.Runners.Console.Colors
                                Test.Framework.Runners.Console.ProgressBar
                                Test.Framework.Runners.Console.Run
                                Test.Framework.Runners.Console.Statistics
                                Test.Framework.Runners.Console.Table
                                Test.Framework.Runners.Console.Utilities
                                Test.Framework.Runners.Core
                                Test.Framework.Runners.Processors
                                Test.Framework.Runners.Statistics
                                Test.Framework.Runners.ThreadPool
                                Test.Framework.Runners.TimedConsumption
                                Test.Framework.Runners.XML.JUnitWriter
                                Test.Framework.Runners.XML
                                Test.Framework.Utilities

        Build-Depends:          ansi-terminal >= 0.4.0, ansi-wl-pprint >= 0.5.1,
                                base >= 4.3 && < 5, random >= 1.0 && < 2, 
containers >= 0.1,
                                regex-posix >= 0.72,
                                old-locale == 1.0.*,
                                time >= 1.1.2 && < 1.9,
                                xml >= 1.3.5, hostname >= 1.0

        Extensions:             CPP
                                PatternGuards
                                ExistentialQuantification
                                RecursiveDo
                                FlexibleInstances
                                TypeSynonymInstances
                                TypeOperators
                                FunctionalDependencies
                                MultiParamTypeClasses

        Ghc-Options:            -Wall

        if impl(ghc)
                Cpp-Options:            -DCOMPILER_GHC

Executable test-framework-tests
        Main-Is:                Test/Framework/Tests.hs

        if !flag(tests)
                Buildable:              False
        else
                Build-Depends:          HUnit >= 1.2, QuickCheck >= 2.3 && < 
2.5,
                                        base >= 4.3 && < 5, random >= 1.0, 
containers >= 0.1,
                                        ansi-terminal >= 0.4.0, ansi-wl-pprint 
>= 0.5.1,
                                        regex-posix >= 0.72,
                                        old-locale >= 1.0, time >= 1.1.2,
                                        xml >= 1.3.5, hostname >= 1.0,
                                        libxml >= 0.1.1, bytestring >= 0.9

                Extensions:             CPP
                                        PatternGuards
                                        ExistentialQuantification
                                        RecursiveDo
                                        FlexibleInstances
                                        TypeSynonymInstances
                                        TypeOperators
                                        FunctionalDependencies
                                        MultiParamTypeClasses

                Cpp-Options:            -DTEST

                Ghc-Options:            -Wall -threaded

                if impl(ghc)
                        Cpp-Options:            -DCOMPILER_GHC

Source-Repository head
  Type:     git
  Location: https://github.com/haskell/test-framework

Reply via email to