Hello community,

here is the log from the commit of package ghc-hjsonpointer for 
openSUSE:Factory checked in at 2017-08-31 20:47:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-hjsonpointer (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-hjsonpointer.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-hjsonpointer"

Thu Aug 31 20:47:32 2017 rev:3 rq:513381 version:1.2.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-hjsonpointer/ghc-hjsonpointer.changes        
2017-06-04 01:53:48.235273048 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-hjsonpointer.new/ghc-hjsonpointer.changes   
2017-08-31 20:47:33.426459208 +0200
@@ -1,0 +2,5 @@
+Thu Jul 27 14:08:16 UTC 2017 - [email protected]
+
+- Update to version 1.2.0 revision 3.
+
+-------------------------------------------------------------------

Old:
----
  hjsonpointer-1.1.1.tar.gz

New:
----
  hjsonpointer-1.2.0.tar.gz
  hjsonpointer.cabal

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

Other differences:
------------------
++++++ ghc-hjsonpointer.spec ++++++
--- /var/tmp/diff_new_pack.zm8po7/_old  2017-08-31 20:47:34.510307074 +0200
+++ /var/tmp/diff_new_pack.zm8po7/_new  2017-08-31 20:47:34.522305389 +0200
@@ -19,13 +19,14 @@
 %global pkg_name hjsonpointer
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        1.1.1
+Version:        1.2.0
 Release:        0
 Summary:        JSON Pointer library
 License:        MIT
 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-QuickCheck-devel
 BuildRequires:  ghc-aeson-devel
@@ -57,6 +58,7 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ hjsonpointer-1.1.1.tar.gz -> hjsonpointer-1.2.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hjsonpointer-1.1.1/hjsonpointer.cabal 
new/hjsonpointer-1.2.0/hjsonpointer.cabal
--- old/hjsonpointer-1.1.1/hjsonpointer.cabal   2017-04-16 23:06:04.000000000 
+0200
+++ new/hjsonpointer-1.2.0/hjsonpointer.cabal   2017-06-26 23:10:14.000000000 
+0200
@@ -1,5 +1,5 @@
 name:               hjsonpointer
-version:            1.1.1
+version:            1.2.0
 synopsis:           JSON Pointer library
 homepage:           https://github.com/seagreen/hjsonpointer
 license:            MIT
@@ -22,15 +22,15 @@
   exposed-modules:
     JSONPointer
   build-depends:
-      base                 >= 4.6  && < 4.10
-    , aeson                >= 0.7  && < 1.3
-    , hashable             >= 1.2  && < 1.3
-    , QuickCheck           >= 2.8  && < 2.10
-    , unordered-containers >= 0.2  && < 0.3
-    , semigroups           >= 0.18 && < 1.0
+      base                 >= 4.6 && < 4.10
+    , aeson                >= 0.7
+    , hashable             >= 1.2
+    , QuickCheck           >= 2.8
+    , unordered-containers >= 0.2
+    , semigroups           >= 0.18
       -- ^ for GHCs < 8
-    , text                 >= 1.2  && < 1.3
-    , vector               >= 0.10 && < 1.0
+    , text                 >= 1.2
+    , vector               >= 0.10
 
 test-suite unit
   hs-source-dirs:
@@ -48,8 +48,8 @@
       aeson
     , base
     , hjsonpointer
-    , hspec                >= 2.2 && < 3.0
-    , http-types           >= 0.8 && < 1.0
+    , hspec                >= 2.2
+    , http-types           >= 0.8
     , QuickCheck
     , unordered-containers
     , text

++++++ hjsonpointer.cabal ++++++
name: hjsonpointer
version: 1.2.0
cabal-version: >=1.10
build-type: Simple
license: MIT
license-file: MIT-LICENSE.txt
maintainer: [email protected]
homepage: https://github.com/seagreen/hjsonpointer
synopsis: JSON Pointer library
category: Data
author: Ian Grant Jeffries
extra-source-files:
    changelog.md
    README.md
x-revision: 3

source-repository head
    type: git
    location: git://github.com/seagreen/hjsonpointer.git

library
    exposed-modules:
        JSONPointer
    build-depends:
        base >=4.6 && <4.10,
        aeson >=0.7 && <1.3,
        hashable ==1.2.*,
        QuickCheck >=2.8 && <2.11,
        unordered-containers ==0.2.*,
        semigroups ==0.18.*,
        text ==1.2.*,
        vector >=0.10 && <0.13
    default-language: Haskell2010
    hs-source-dirs: src
    ghc-options: -Wall

test-suite unit
    type: exitcode-stdio-1.0
    main-is: Unit.hs
    build-depends:
        aeson <1.3,
        base <4.10,
        hjsonpointer <1.3,
        hspec >=2.2 && <2.5,
        http-types >=0.8 && <0.10,
        QuickCheck <2.11,
        unordered-containers <0.3,
        text <1.3,
        vector <0.13
    default-language: Haskell2010
    default-extensions: OverloadedStrings
    hs-source-dirs: test ./
    other-modules:
        Example
    ghc-options: -Wall

Reply via email to