Hello community,

here is the log from the commit of package ghc-unix-time for openSUSE:Factory 
checked in at 2019-02-17 12:20:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-unix-time (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-unix-time.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-unix-time"

Sun Feb 17 12:20:37 2019 rev:11 rq:674310 version:0.4.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-unix-time/ghc-unix-time.changes      
2018-12-28 12:35:30.955955342 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-unix-time.new.28833/ghc-unix-time.changes   
2019-02-17 12:20:37.204212455 +0100
@@ -1,0 +2,6 @@
+Wed Jan 23 03:02:22 UTC 2019 - [email protected]
+
+- Update unix-time to version 0.4.5.
+  Upstream does not provide a change log file.
+
+-------------------------------------------------------------------

Old:
----
  unix-time-0.4.4.tar.gz

New:
----
  unix-time-0.4.5.tar.gz

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

Other differences:
------------------
++++++ ghc-unix-time.spec ++++++
--- /var/tmp/diff_new_pack.9MBESr/_old  2019-02-17 12:20:37.756212304 +0100
+++ /var/tmp/diff_new_pack.9MBESr/_new  2019-02-17 12:20:37.756212304 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-unix-time
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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,7 +19,7 @@
 %global pkg_name unix-time
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        0.4.4
+Version:        0.4.5
 Release:        0
 Summary:        Unix time parser/formatter and utilities
 License:        BSD-3-Clause
@@ -29,12 +29,10 @@
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-binary-devel
 BuildRequires:  ghc-bytestring-devel
-BuildRequires:  ghc-cabal-doctest-devel
 BuildRequires:  ghc-old-time-devel
 BuildRequires:  ghc-rpm-macros
 %if %{with tests}
 BuildRequires:  ghc-QuickCheck-devel
-BuildRequires:  ghc-doctest-devel
 BuildRequires:  ghc-hspec-devel
 BuildRequires:  ghc-old-locale-devel
 BuildRequires:  ghc-time-devel

++++++ unix-time-0.4.4.tar.gz -> unix-time-0.4.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unix-time-0.4.4/Setup.hs new/unix-time-0.4.5/Setup.hs
--- old/unix-time-0.4.4/Setup.hs        2018-12-24 06:09:10.000000000 +0100
+++ new/unix-time-0.4.5/Setup.hs        2019-01-22 04:43:00.000000000 +0100
@@ -1,33 +1,6 @@
-{-# LANGUAGE CPP #-}
-{-# OPTIONS_GHC -Wall #-}
 module Main (main) where
 
-#ifndef MIN_VERSION_cabal_doctest
-#define MIN_VERSION_cabal_doctest(x,y,z) 0
-#endif
-
-#if MIN_VERSION_cabal_doctest(1,0,0)
-
-import Distribution.Extra.Doctest ( defaultMainAutoconfWithDoctests )
-main :: IO ()
-main = defaultMainAutoconfWithDoctests "doctests"
-
-#else
-
-#ifdef MIN_VERSION_Cabal
--- If the macro is defined, we have new cabal-install,
--- but for some reason we don't have cabal-doctest in package-db
---
--- Probably we are running cabal sdist, when otherwise using new-build
--- workflow
-#warning You are configuring this package without cabal-doctest installed. \
-         The doctests test-suite will not work as a result. \
-         To fix this, install cabal-doctest before configuring.
-#endif
-
 import Distribution.Simple
 
 main :: IO ()
-main = defaultMain
-
-#endif
+main = defaultMainWithHooks autoconfUserHooks
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unix-time-0.4.4/unix-time.cabal 
new/unix-time-0.4.5/unix-time.cabal
--- old/unix-time-0.4.4/unix-time.cabal 2018-12-24 06:09:10.000000000 +0100
+++ new/unix-time-0.4.5/unix-time.cabal 2019-01-22 04:43:00.000000000 +0100
@@ -1,5 +1,5 @@
 Name:                   unix-time
-Version:                0.4.4
+Version:                0.4.5
 Author:                 Kazu Yamamoto <[email protected]>
 Maintainer:             Kazu Yamamoto <[email protected]>
 License:                BSD3
@@ -7,8 +7,8 @@
 Synopsis:               Unix time parser/formatter and utilities
 Description:            Fast parser\/formatter\/utilities for Unix time
 Category:               Data
-Cabal-Version:          >= 1.10
-Build-Type:             Custom
+Cabal-Version:          1.18
+Build-Type:             Configure
 Extra-Source-Files:     cbits/config.h.in
                         cbits/conv.c
                         cbits/strftime.c
@@ -19,9 +19,6 @@
                         configure.ac
 Extra-Tmp-Files:        config.log config.status autom4te.cache cbits/config.h
 
-Custom-Setup
-  Setup-Depends:        base, Cabal, cabal-doctest >=1.0.6 && <1.1
-
 Library
   Default-Language:     Haskell2010
   GHC-Options:          -Wall
@@ -45,6 +42,7 @@
   include-dirs:         cbits
 
 Test-Suite doctests
+  Buildable:            False
   Type:                 exitcode-stdio-1.0
   Default-Language:     Haskell2010
   HS-Source-Dirs:       test
@@ -61,14 +59,15 @@
   Ghc-Options:          -Wall
   Main-Is:              Spec.hs
   Other-Modules:        UnixTimeSpec
+  Build-Tools:          hspec-discover >= 2.6
   Build-Depends:        base
                       , bytestring
-                      , hspec >= 1.5
                       , old-locale
                       , old-time
                       , QuickCheck
                       , time
                       , unix-time
+                      , hspec >= 2.6
 
 Source-Repository head
   Type:                 git


Reply via email to