Hello community,

here is the log from the commit of package ghc-generic-aeson for 
openSUSE:Factory checked in at 2017-06-04 01:53:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-generic-aeson (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-generic-aeson.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-generic-aeson"

Sun Jun  4 01:53:19 2017 rev:3 rq:494152 version:0.2.0.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-generic-aeson/ghc-generic-aeson.changes      
2017-03-24 02:17:52.256185873 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-generic-aeson.new/ghc-generic-aeson.changes 
2017-06-04 01:53:23.186811955 +0200
@@ -1,0 +2,5 @@
+Wed May  3 08:14:02 UTC 2017 - [email protected]
+
+- Update to version 0.2.0.9 with cabal2obs.
+
+-------------------------------------------------------------------

Old:
----
  generic-aeson-0.2.0.8.tar.gz
  generic-aeson.cabal

New:
----
  generic-aeson-0.2.0.9.tar.gz

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

Other differences:
------------------
++++++ ghc-generic-aeson.spec ++++++
--- /var/tmp/diff_new_pack.0e8VhE/_old  2017-06-04 01:53:23.662744714 +0200
+++ /var/tmp/diff_new_pack.0e8VhE/_new  2017-06-04 01:53:23.666744149 +0200
@@ -18,14 +18,13 @@
 
 %global pkg_name generic-aeson
 Name:           ghc-%{pkg_name}
-Version:        0.2.0.8
+Version:        0.2.0.9
 Release:        0
 Summary:        Derivation of Aeson instances using GHC generics
 License:        BSD-3-Clause
 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/3.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-aeson-devel
 BuildRequires:  ghc-attoparsec-devel
@@ -54,7 +53,6 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ generic-aeson-0.2.0.8.tar.gz -> generic-aeson-0.2.0.9.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/generic-aeson-0.2.0.8/CHANGELOG.md 
new/generic-aeson-0.2.0.9/CHANGELOG.md
--- old/generic-aeson-0.2.0.8/CHANGELOG.md      2016-02-29 21:28:54.000000000 
+0100
+++ new/generic-aeson-0.2.0.9/CHANGELOG.md      2017-04-23 13:02:32.000000000 
+0200
@@ -1,5 +1,10 @@
 # Changelog
 
+#### 0.2.0.9
+
+* Allow `aeson 1.2.*`
+* Fix a documentation typo
+
 #### 0.2.0.8
 
 * Fix compilation on GHC 8.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/generic-aeson-0.2.0.8/generic-aeson.cabal 
new/generic-aeson-0.2.0.9/generic-aeson.cabal
--- old/generic-aeson-0.2.0.8/generic-aeson.cabal       2016-02-29 
21:28:54.000000000 +0100
+++ new/generic-aeson-0.2.0.9/generic-aeson.cabal       2017-04-23 
13:02:32.000000000 +0200
@@ -1,5 +1,5 @@
 name:                generic-aeson
-version:             0.2.0.8
+version:             0.2.0.9
 synopsis:            Derivation of Aeson instances using GHC generics.
 description:         Derivation of Aeson instances using GHC generics.
 author:              Silk
@@ -28,13 +28,13 @@
     Generics.Generic.IsEnum
   build-depends:
       base >= 4.4 && < 4.10
-    , aeson >= 0.6 && < 0.12
+    , aeson >= 0.6 && < 1.3
     , attoparsec >= 0.11 && < 0.14
-    , generic-deriving >= 1.6 && < 1.11
+    , generic-deriving >= 1.6 && < 1.12
     , mtl >= 2.0 && < 2.3
     , tagged >= 0.2 && < 0.9
     , text >= 0.11 && < 1.3
     , unordered-containers == 0.2.*
-    , vector >= 0.10 && < 0.12
+    , vector >= 0.10 && < 0.13
   if impl(ghc < 7.6)
     build-depends: ghc-prim
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/generic-aeson-0.2.0.8/src/Generics/Generic/Aeson.hs 
new/generic-aeson-0.2.0.9/src/Generics/Generic/Aeson.hs
--- old/generic-aeson-0.2.0.8/src/Generics/Generic/Aeson.hs     2016-02-29 
21:28:54.000000000 +0100
+++ new/generic-aeson-0.2.0.9/src/Generics/Generic/Aeson.hs     2017-04-23 
13:02:32.000000000 +0200
@@ -10,7 +10,7 @@
 #if __GLASGOW_HASKELL__ < 710
 {-# LANGUAGE OverlappingInstances #-}
 #endif
--- | This module offers generic conversions to an from JSON 'Value's
+-- | This module offers generic conversions to and from JSON 'Value's
 -- for data types with a 'Generic' instance.
 --
 -- The structure of the generated JSON is meant to be close to


Reply via email to