Hello community,

here is the log from the commit of package ghc-app-settings for 
openSUSE:Factory checked in at 2016-11-10 13:19:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-app-settings (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-app-settings.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-app-settings"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-app-settings/ghc-app-settings.changes        
2016-09-25 14:31:55.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-app-settings.new/ghc-app-settings.changes   
2016-11-10 13:19:34.000000000 +0100
@@ -1,0 +2,10 @@
+Thu Oct 27 15:54:51 UTC 2016 - [email protected]
+
+- Update to version 0.2.0.9 with cabal2obs.
+
+-------------------------------------------------------------------
+Tue Oct 11 08:49:38 UTC 2016 - [email protected]
+
+- Update to version 0.2.0.8 with cabal2obs.
+
+-------------------------------------------------------------------

Old:
----
  app-settings-0.2.0.7.tar.gz

New:
----
  app-settings-0.2.0.9.tar.gz

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

Other differences:
------------------
++++++ ghc-app-settings.spec ++++++
--- /var/tmp/diff_new_pack.b53cXG/_old  2016-11-10 13:19:35.000000000 +0100
+++ /var/tmp/diff_new_pack.b53cXG/_new  2016-11-10 13:19:35.000000000 +0100
@@ -19,15 +19,14 @@
 %global pkg_name app-settings
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        0.2.0.7
+Version:        0.2.0.9
 Release:        0
 Summary:        A library to manage application settings (INI file-like)
 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
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-directory-devel
 BuildRequires:  ghc-mtl-devel
@@ -39,7 +38,6 @@
 BuildRequires:  ghc-HUnit-devel
 BuildRequires:  ghc-hspec-devel
 %endif
-# End cabal-rpm deps
 
 %description
 A library to deal with application settings.
@@ -132,20 +130,14 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
 
 %post devel
 %ghc_pkg_recache

++++++ app-settings-0.2.0.7.tar.gz -> app-settings-0.2.0.9.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/app-settings-0.2.0.7/app-settings.cabal 
new/app-settings-0.2.0.9/app-settings.cabal
--- old/app-settings-0.2.0.7/app-settings.cabal 2015-10-06 11:59:42.000000000 
+0200
+++ new/app-settings-0.2.0.9/app-settings.cabal 2016-10-17 19:32:05.000000000 
+0200
@@ -1,17 +1,17 @@
--- Initial app-settings.cabal generated by cabal init.  For further 
+-- Initial app-settings.cabal generated by cabal init.  For further
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                app-settings
-version:             0.2.0.7
+version:             0.2.0.9
 synopsis:            A library to manage application settings (INI file-like)
-description:         
+description:
   A library to deal with application settings.
   .
   This library deals with read-write application settings.
   You will have to specify the settings that your application
   uses, their name, types and default values.
   .
-  Setting types must implement the 'Read' and 'Show' typeclasses. 
+  Setting types must implement the 'Read' and 'Show' typeclasses.
   .
   The settings are saved in a file in an INI-like key-value format
   (without sections).
@@ -22,13 +22,13 @@
   holding settings handling.
   .
   You can then declare settings:
-  . 
+  .
   > fontSize :: Setting Double
   > fontSize = Setting "fontSize" 14
-  > 
+  >
   > dateFormat :: Setting String
   > dateFormat = Setting "dateFormat" "%x"
-  > 
+  >
   > backgroundColor :: Setting (Int, Int, Int)
   > backgroundColor = Setting "backcolor" (255, 0, 0)
   .
@@ -91,7 +91,7 @@
   >    Left (x :: SomeException) -> error "Error reading the config file!"
   .
   'AutoFromAppName' specifies where to save the configuration file.
-  And we've already covered the getSetting in this snippet, see 
+  And we've already covered the getSetting in this snippet, see
   the 'readSettings' documentation for further information.
   .
   You can also look at the tests of the library on the github project for 
sample use.
@@ -101,7 +101,7 @@
 license-file:        LICENSE
 author:              Emmanuel Touzery
 maintainer:          [email protected]
--- copyright:           
+-- copyright:
 category:            Configuration
 build-type:          Simple
 extra-source-files:  tests/*.conf tests/*.config tests/*.txt
@@ -111,14 +111,14 @@
   exposed-modules:     Data.AppSettings
   other-modules:       Data.Serialization,
                        Data.AppSettingsInternal
-  -- other-extensions:    
+  -- other-extensions:
   build-depends:       base >=4.6 && <5,
                        mtl >= 2.1 && <2.3,
                        containers == 0.5.*,
                        directory == 1.2.*,
                        text >= 0.10,
                        parsec == 3.1.*
-  -- hs-source-dirs:      
+  -- hs-source-dirs:
   default-language:    Haskell2010
   Ghc-Options:         -Wall
 
@@ -129,7 +129,7 @@
   default-language:    Haskell2010
   build-depends:       base,
                        hspec,
-                       HUnit >= 1.2 && <1.4,
+                       HUnit >= 1.2 && <1.6,
                        mtl >= 2.1 && <2.3,
                        containers == 0.5.*,
                        directory == 1.2.*,


Reply via email to