Hello community,

here is the log from the commit of package ghc-scientific for openSUSE:Factory 
checked in at 2016-07-05 09:52:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-scientific (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-scientific.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-scientific"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-scientific/ghc-scientific.changes    
2016-06-14 23:08:40.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-scientific.new/ghc-scientific.changes       
2016-07-05 09:52:54.000000000 +0200
@@ -1,0 +2,11 @@
+Sun Jul  3 12:33:17 UTC 2016 - [email protected]
+
+- update to 0.3.4.8
+* Make bytestring-builder's installation conditional based on a Cabal flag.
+
+-------------------------------------------------------------------
+Fri Jul  1 17:02:22 UTC 2016 - [email protected]
+
+- Make Group tag consistent with other GHC packages.
+
+-------------------------------------------------------------------

Old:
----
  scientific-0.3.4.7.tar.gz

New:
----
  scientific-0.3.4.8.tar.gz

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

Other differences:
------------------
++++++ ghc-scientific.spec ++++++
--- /var/tmp/diff_new_pack.P9T8pc/_old  2016-07-05 09:52:55.000000000 +0200
+++ /var/tmp/diff_new_pack.P9T8pc/_new  2016-07-05 09:52:55.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-scientific
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,11 +19,11 @@
 %global pkg_name scientific
 
 Name:           ghc-scientific
-Version:        0.3.4.7
+Version:        0.3.4.8
 Release:        0
 Summary:        Numbers represented using scientific notation
 License:        BSD-3-Clause
-Group:          System/Libraries/Other
+Group:          System/Libraries
 
 Url:            http://hackage.haskell.org/package/%{pkg_name}
 Source0:        
http://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz

++++++ scientific-0.3.4.7.tar.gz -> scientific-0.3.4.8.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scientific-0.3.4.7/changelog 
new/scientific-0.3.4.8/changelog
--- old/scientific-0.3.4.7/changelog    2016-06-11 13:45:37.000000000 +0200
+++ new/scientific-0.3.4.8/changelog    2016-07-02 09:14:12.000000000 +0200
@@ -1,3 +1,6 @@
+0.3.4.8
+       * Make bytestring-builder's installation conditional based on a Cabal 
flag.
+
 0.3.4.7
        * Unconditionally export Data.ByteString.Builder.Scientific.
          The bytestring-builder cabal flag has been removed.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scientific-0.3.4.7/scientific.cabal 
new/scientific-0.3.4.8/scientific.cabal
--- old/scientific-0.3.4.7/scientific.cabal     2016-06-11 13:45:37.000000000 
+0200
+++ new/scientific-0.3.4.8/scientific.cabal     2016-07-02 09:14:12.000000000 
+0200
@@ -1,5 +1,5 @@
 name:                scientific
-version:             0.3.4.7
+version:             0.3.4.8
 synopsis:            Numbers represented using scientific notation
 description:
   @Data.Scientific@ provides the number type 'Scientific'. Scientific numbers 
are
@@ -49,6 +49,11 @@
   type:     git
   location: git://github.com/basvandijk/scientific.git
 
+flag bytestring-builder
+  description: Depend on the bytestring-builder package for backwards 
compatibility.
+  default:     False
+  manual:      False
+
 flag integer-simple
   description: Use the integer-simple package instead of integer-gmp
   default:     False
@@ -64,7 +69,6 @@
   other-extensions:    DeriveDataTypeable, BangPatterns
   ghc-options:         -Wall
   build-depends:       base        >= 4.3   && < 4.10
-                     , bytestring  >= 0.9    && < 0.11
                      , ghc-prim
                      , deepseq     >= 1.3   && < 1.5
                      , text        >= 0.8   && < 1.3
@@ -73,8 +77,11 @@
                      , containers  >= 0.1   && < 0.6
                      , binary      >= 0.4.1 && < 0.9
 
-  if !impl(ghc >= 7.8)
-      build-depends: bytestring-builder >= 0.10.4 && < 0.11
+  if flag(bytestring-builder)
+      build-depends: bytestring         >= 0.9    && < 0.10.4
+                   , bytestring-builder >= 0.10.4 && < 0.11
+  else
+      build-depends: bytestring         >= 0.10.4 && < 0.11
 
   if flag(integer-simple)
       build-depends: integer-simple
@@ -94,7 +101,6 @@
 
   build-depends: scientific
                , base             >= 4.3   && < 4.10
-               , bytestring       >= 0.9   && < 0.11
                , binary           >= 0.4.1 && < 0.9
                , tasty            >= 0.5   && < 0.12
                , tasty-ant-xml    >= 1.0   && < 1.1
@@ -105,8 +111,11 @@
                , QuickCheck       >= 2.5   && < 2.9
                , text             >= 0.8   && < 1.3
 
-  if !impl(ghc >= 7.8)
-      build-depends: bytestring-builder >= 0.10.4 && < 0.11
+  if flag(bytestring-builder)
+      build-depends: bytestring         >= 0.9    && < 0.10.4
+                   , bytestring-builder >= 0.10.4 && < 0.11
+  else
+      build-depends: bytestring         >= 0.10.4 && < 0.11
 
 benchmark bench-scientific
   type:             exitcode-stdio-1.0


Reply via email to