Hello community,

here is the log from the commit of package ghc-time-parsers for 
openSUSE:Factory checked in at 2016-07-20 09:24:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-time-parsers (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-time-parsers.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-time-parsers"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-time-parsers/ghc-time-parsers.changes        
2016-01-05 21:54:51.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-time-parsers.new/ghc-time-parsers.changes   
2016-07-20 09:24:54.000000000 +0200
@@ -1,0 +2,5 @@
+Sun Jul 10 17:17:15 UTC 2016 - [email protected]
+
+- Update to version 0.1.0.0 revision 3 with cabal2obs.
+
+-------------------------------------------------------------------

New:
----
  3.cabal

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

Other differences:
------------------
++++++ ghc-time-parsers.spec ++++++
--- /var/tmp/diff_new_pack.6GCetG/_old  2016-07-20 09:24:56.000000000 +0200
+++ /var/tmp/diff_new_pack.6GCetG/_new  2016-07-20 09:24:56.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-time-parsers
 #
-# 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
@@ -15,27 +15,25 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%global pkg_name time-parsers
 
+%global pkg_name time-parsers
 %bcond_with tests
-
-Name:           ghc-time-parsers
+Name:           ghc-%{pkg_name}
 Version:        0.1.0.0
 Release:        0
 Summary:        Parsers for types in `time`
-Group:          System/Libraries
-
 License:        BSD-3-Clause
+Group:          System/Libraries
 Url:            https://hackage.haskell.org/package/%{pkg_name}
 Source0:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-
+Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/3.cabal
 BuildRequires:  ghc-Cabal-devel
-BuildRequires:  ghc-rpm-macros
 # Begin cabal-rpm deps:
 BuildRequires:  ghc-parsers-devel
+BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-template-haskell-devel
 BuildRequires:  ghc-time-devel
+BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-attoparsec-devel
 BuildRequires:  ghc-bifunctors-devel
@@ -49,21 +47,20 @@
 %description
 Parsers for types in `time`.
 
-
 %package devel
 Summary:        Haskell %{pkg_name} library development files
 Group:          Development/Libraries/Other
+Requires:       %{name} = %{version}-%{release}
 Requires:       ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
 Requires(postun): ghc-compiler = %{ghc_version}
-Requires:       %{name} = %{version}-%{release}
 
 %description devel
 This package provides the Haskell %{pkg_name} library development files.
 
-
 %prep
 %setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 
 %build
@@ -76,26 +73,22 @@
 
 %check
 %if %{with tests}
-%cabal test
+%{cabal} test
 %endif
 
 
 %post devel
 %ghc_pkg_recache
 
-
 %postun devel
 %ghc_pkg_recache
 
-
 %files -f %{name}.files
 %defattr(-,root,root,-)
 %doc LICENSE
 
-
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)
 %doc README.md
 
-
 %changelog

++++++ 3.cabal ++++++
-- This file has been generated from package.yaml by hpack version 0.14.0.
--
-- see: https://github.com/sol/hpack

name:           time-parsers
version:        0.1.0.0
x-revision:     3
synopsis:       Parsers for types in `time`.
description:    Parsers for types in `time`.
category:       Web
homepage:       https://github.com/phadej/time-parsers#readme
bug-reports:    https://github.com/phadej/time-parsers/issues
author:         Oleg Grenrus <[email protected]>
maintainer:     Oleg Grenrus <[email protected]>
license:        BSD3
license-file:   LICENSE
tested-with:    GHC==7.6.3, GHC==7.8.4, GHC==7.10.3
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    README.md

source-repository head
  type: git
  location: https://github.com/phadej/time-parsers

library
  hs-source-dirs:
      src
  ghc-options: -Wall
  build-depends:
      base             >=4.6      && <4.10
    , parsers          >=0.12.2.1 && <0.13
    , template-haskell >=2.8.0.0  && <2.12
    , time             >=1.4.2    && <1.7
  exposed-modules:
      Data.Time.Parsers
      Data.Time.TH
  default-language: Haskell2010

test-suite date-parsers-tests
  type: exitcode-stdio-1.0
  main-is: Tests.hs
  hs-source-dirs:
      test
  ghc-options: -Wall
  build-depends:
      base             >=4.6      && <4.10
    , parsers          >=0.12.2.1 && <0.13
    , template-haskell >=2.8.0.0  && <2.12
    , time             >=1.4.2    && <1.7
    , time-parsers
    , attoparsec    >=0.12.1.6 && <0.14
    , bifunctors    >=4.2.1    && <5.4
    , parsec        >=3.1.9    && <3.2
    , parsers       >=0.12.3   && <0.13
    , tasty         >=0.10.1.2 && <0.12
    , tasty-hunit   >=0.9.2    && <0.10
    , text
  default-language: Haskell2010

Reply via email to