Hello community,

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

Package is "ghc-carray"

Thu Aug 31 20:46:33 2017 rev:6 rq:513219 version:0.1.6.8

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-carray/ghc-carray.changes    2017-07-23 
12:14:17.836614221 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-carray.new/ghc-carray.changes       
2017-08-31 20:46:34.634711495 +0200
@@ -1,0 +2,5 @@
+Thu Jul 27 14:06:46 UTC 2017 - psim...@suse.com
+
+- Update to version 0.1.6.8.
+
+-------------------------------------------------------------------

Old:
----
  carray-0.1.6.7.tar.gz
  carray.cabal

New:
----
  carray-0.1.6.8.tar.gz

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

Other differences:
------------------
++++++ ghc-carray.spec ++++++
--- /var/tmp/diff_new_pack.VSzces/_old  2017-08-31 20:46:35.942527924 +0200
+++ /var/tmp/diff_new_pack.VSzces/_new  2017-08-31 20:46:35.966524557 +0200
@@ -19,14 +19,13 @@
 %global pkg_name carray
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        0.1.6.7
+Version:        0.1.6.8
 Release:        0
 Summary:        A C-compatible array library
 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/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-QuickCheck-devel
 BuildRequires:  ghc-array-devel
@@ -57,7 +56,6 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ carray-0.1.6.7.tar.gz -> carray-0.1.6.8.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/carray-0.1.6.7/Makefile new/carray-0.1.6.8/Makefile
--- old/carray-0.1.6.7/Makefile 2017-06-16 12:01:07.000000000 +0200
+++ new/carray-0.1.6.8/Makefile 2017-07-18 20:35:44.000000000 +0200
@@ -2,5 +2,5 @@
        runhaskell Setup configure --user --enable-tests --enable-benchmarks
        runhaskell Setup build
        runhaskell Setup haddock
-       ./dist/build/test/test
+       runhaskell Setup test --show-details=always
        (cd tests; sh runtests.sh)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/carray-0.1.6.7/carray.cabal 
new/carray-0.1.6.8/carray.cabal
--- old/carray-0.1.6.7/carray.cabal     2017-06-16 12:01:07.000000000 +0200
+++ new/carray-0.1.6.8/carray.cabal     2017-07-18 20:35:44.000000000 +0200
@@ -1,5 +1,5 @@
 name:                carray
-version:             0.1.6.7
+version:             0.1.6.8
 synopsis:            A C-compatible array library.
 description:
   A C-compatible array library.
@@ -21,7 +21,7 @@
   Makefile
 
 source-repository this
-  tag:         0.1.6.7
+  tag:         0.1.6.8
   type:        darcs
   location:    http://hub.darcs.net/thielema/carray/
 
@@ -30,36 +30,15 @@
   location:    http://hub.darcs.net/thielema/carray/
 
 
-flag splitBase
-  description: array was in base < 3
-  default: True
-flag bytestringInBase
-  description: bytestring was included in base for 2.0 and 2.1
-  default: False
-flag base4
-  description: syb was split from base >= 4
-  default: True
-
 library
   build-depends:
+    array >=0.1 && <0.6,
     ix-shapable >=0.1 && <0.2,
     binary >=0.5 && <0.9,
-    QuickCheck >=2.4 && <3
-
-  if flag(bytestringInBase)
-    build-depends: base >=2.0 && <2.2
-  else
-    build-depends: base <2.0 || >=3, bytestring >=0.9 && <0.11
-
-  if flag(splitBase)
-    build-depends: base >=3, array >=0.1 && <0.6
-  else
-    build-depends: base <3
-
-  if flag(base4)
-    build-depends: base >=4 && <5, syb >=0.1 && <0.8
-  else
-    build-depends: base <4
+    bytestring >=0.9 && <0.11,
+    QuickCheck >=2.4 && <3,
+    syb >=0.1 && <0.8,
+    base>=4.4 && <5
 
   exposed-modules:
     Data.Array.CArray
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/carray-0.1.6.7/tests/meteor-contest-c.hs 
new/carray-0.1.6.8/tests/meteor-contest-c.hs
--- old/carray-0.1.6.7/tests/meteor-contest-c.hs        2017-06-16 
12:01:07.000000000 +0200
+++ new/carray-0.1.6.8/tests/meteor-contest-c.hs        2017-07-18 
20:35:44.000000000 +0200
@@ -34,6 +34,7 @@
 cellAt :: Int -> Int -> Int
 cellAt x y = x + n_col * y
 
+-- swap
 coordOf :: Int -> (Int, Int)
 coordOf i = snd &&& fst $ i `quotRem` n_col
 


Reply via email to