Hello community,

here is the log from the commit of package pointful for openSUSE:Factory 
checked in at 2016-05-29 03:13:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/pointful (Old)
 and      /work/SRC/openSUSE:Factory/.pointful.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "pointful"

Changes:
--------
--- /work/SRC/openSUSE:Factory/pointful/pointful.changes        2016-01-09 
23:13:44.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.pointful.new/pointful.changes   2016-05-29 
03:14:00.000000000 +0200
@@ -1,0 +2,6 @@
+Wed Mar 16 09:21:09 UTC 2016 - mimi...@gmail.com
+
+- update to 1.0.7
+- drop fix-haskell-src-exts.patch , addopted by upstream
+
+-------------------------------------------------------------------

Old:
----
  fix-haskell-src-exts.patch
  pointful-1.0.6.tar.gz

New:
----
  pointful-1.0.7.tar.gz

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

Other differences:
------------------
++++++ pointful.spec ++++++
--- /var/tmp/diff_new_pack.ickPmQ/_old  2016-05-29 03:14:01.000000000 +0200
+++ /var/tmp/diff_new_pack.ickPmQ/_new  2016-05-29 03:14:01.000000000 +0200
@@ -18,7 +18,7 @@
 %global pkg_name pointful
 
 Name:           pointful 
-Version:        1.0.6
+Version:        1.0.7
 Release:        0
 Summary:        Pointful refactoring tool
 Group:          Development/Languages/Other
@@ -26,8 +26,6 @@
 License:        BSD-3-Clause
 Url:            https://hackage.haskell.org/package/%{name}
 Source0:        
https://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM fix-haskell-src-exts.patch -- Sergei Trofimovich 
<siarh...@google.com> 
-Patch0:         fix-haskell-src-exts.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 BuildRequires:  ghc-Cabal-devel
@@ -66,7 +64,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %ghc_lib_build

++++++ pointful-1.0.6.tar.gz -> pointful-1.0.7.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pointful-1.0.6/Lambdabot/Pointful.hs 
new/pointful-1.0.7/Lambdabot/Pointful.hs
--- old/pointful-1.0.6/Lambdabot/Pointful.hs    2015-03-23 20:16:15.000000000 
+0100
+++ new/pointful-1.0.7/Lambdabot/Pointful.hs    2015-12-22 23:47:12.000000000 
+0100
@@ -42,11 +42,11 @@
 
 -- move lambda patterns into LHS
 optimizeD :: Decl -> Decl
-optimizeD (PatBind locat (PVar fname) (UnGuardedRhs (Lambda _ pats rhs)) 
(BDecls []))
-        =  FunBind [Match locat fname pats Nothing (UnGuardedRhs rhs) (BDecls 
[])]
+optimizeD (PatBind locat (PVar fname) (UnGuardedRhs (Lambda _ pats rhs)) 
Nothing)
+        =  FunBind [Match locat fname pats Nothing (UnGuardedRhs rhs) Nothing]
 ---- combine function binding and lambda
-optimizeD (FunBind [Match locat fname pats1 Nothing (UnGuardedRhs (Lambda _ 
pats2 rhs)) (BDecls [])])
-        =  FunBind [Match locat fname (pats1 ++ pats2) Nothing (UnGuardedRhs 
rhs) (BDecls [])]
+optimizeD (FunBind [Match locat fname pats1 Nothing (UnGuardedRhs (Lambda _ 
pats2 rhs)) Nothing])
+        =  FunBind [Match locat fname (pats1 ++ pats2) Nothing (UnGuardedRhs 
rhs) Nothing]
 optimizeD x = x
 
 -- remove parens
@@ -162,7 +162,7 @@
   where defs = case parseModule combinatorModule of
           ParseOk (Hs.Module _ _ _ _ _ _ d) -> d
           f@(ParseFailed _ _) -> error ("Combinator loading: " ++ show f)
-        declToTuple (PatBind _ (PVar fname) (UnGuardedRhs body) (BDecls []))
+        declToTuple (PatBind _ (PVar fname) (UnGuardedRhs body) Nothing)
           = (UnQual fname, Paren body)
         declToTuple _ = error "Pointful Plugin error: can't convert 
declaration to tuple"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pointful-1.0.6/pointful.cabal 
new/pointful-1.0.7/pointful.cabal
--- old/pointful-1.0.6/pointful.cabal   2015-03-23 20:16:15.000000000 +0100
+++ new/pointful-1.0.7/pointful.cabal   2015-12-22 23:47:12.000000000 +0100
@@ -1,5 +1,5 @@
 name:                pointful
-version:             1.0.6
+version:             1.0.7
 
 synopsis:            Pointful refactoring tool
 
@@ -21,7 +21,7 @@
     other-modules:       Lambdabot.Parser
     build-depends:       base >= 4.4 && < 5,
                          containers >= 0.4,
-                         haskell-src-exts >= 1.16.0,
+                         haskell-src-exts >= 1.17.0,
                          mtl >= 2,
                          syb >= 0.3,
                          transformers >= 0.2
@@ -30,7 +30,7 @@
     main-is:             Pointful.hs
     build-depends:       base >= 4.4 && < 5,
                          containers >= 0.4,
-                         haskell-src-exts >= 1.16.0,
+                         haskell-src-exts >= 1.17.0,
                          mtl >= 2,
                          syb >= 0.3,
                          transformers >= 0.2


Reply via email to