Hello community,

here is the log from the commit of package ghc-cassava for openSUSE:Factory 
checked in at 2017-03-20 17:06:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-cassava (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-cassava.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-cassava"

Mon Mar 20 17:06:52 2017 rev:3 rq:477445 version:0.4.5.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-cassava/ghc-cassava.changes  2016-12-06 
14:24:15.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-cassava.new/ghc-cassava.changes     
2017-03-20 17:06:53.516497658 +0100
@@ -1,0 +2,5 @@
+Mon Feb 27 10:12:17 UTC 2017 - [email protected]
+
+- Update to version 0.4.5.1 revision 1 with cabal2obs.
+
+-------------------------------------------------------------------

New:
----
  cassava.cabal

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

Other differences:
------------------
++++++ ghc-cassava.spec ++++++
--- /var/tmp/diff_new_pack.sJhD1F/_old  2017-03-20 17:06:54.248394314 +0100
+++ /var/tmp/diff_new_pack.sJhD1F/_new  2017-03-20 17:06:54.252393750 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-cassava
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -26,6 +26,7 @@
 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-array-devel
 BuildRequires:  ghc-attoparsec-devel
@@ -64,6 +65,7 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ cassava.cabal ++++++
Name:                cassava
Version:             0.4.5.1
x-revision: 1
Synopsis:            A CSV parsing and encoding library
Description:
  A CSV parsing and encoding library optimized for ease of use and high
  performance.
Homepage:            https://github.com/hvr/cassava
License:             BSD3
License-file:        LICENSE
Bug-reports:         https://github.com/hvr/cassava/issues
Copyright:           (c) 2012 Johan Tibell
                     (c) 2012 Bryan O'Sullivan
                     (c) 2011 MailRank, Inc.
Author:              Johan Tibell
Maintainer:          [email protected]
Category:            Text, Web, CSV
Build-type:          Simple
Cabal-version:       >=1.10
Extra-source-files:  benchmarks/*.csv,
                     examples/*.hs,
                     CHANGES.md
Tested-with:         GHC ==8.0.1, GHC ==7.10.3, GHC ==7.8.4, GHC ==7.6.3, GHC 
==7.4.2

Library
  default-language: Haskell2010
  other-extensions:
    BangPatterns
    CPP
    DataKinds
    DefaultSignatures
    DeriveFunctor
    FlexibleContexts
    FlexibleInstances
    KindSignatures
    MultiParamTypeClasses
    OverloadedStrings
    PolyKinds
    Rank2Types
    ScopedTypeVariables
    TypeOperators
    UndecidableInstances

  if impl(ghc >= 8.0)
    other-extensions:
      DataKinds
      PolyKinds

  Exposed-modules:
    Data.Csv
    Data.Csv.Builder
    Data.Csv.Incremental
    Data.Csv.Parser
    Data.Csv.Streaming

  Other-modules:
    Data.Csv.Conversion
    Data.Csv.Conversion.Internal
    Data.Csv.Encoding
    Data.Csv.Types
    Data.Csv.Util

  Build-depends:
    array < 0.6,
    attoparsec >= 0.10.2 && < 0.14,
    base >= 4.5 && < 5,
    blaze-builder < 0.5,
    bytestring < 0.11,
    containers < 0.6,
    deepseq >= 1.1 && < 1.5,
    hashable < 1.3,
    text < 1.3,
    unordered-containers < 0.3,
    vector < 0.13

  -- GHC.Generics lived in `ghc-prim` for GHC 7.2 & GHC 7.4 only
  if impl(ghc < 7.6)
    build-depends: ghc-prim == 0.2.*

  ghc-options: -Wall -O2

Test-suite unit-tests
  default-language: Haskell2010

  Type: exitcode-stdio-1.0
  Main-is: UnitTests.hs
  Build-depends:
    attoparsec,
    base >= 4.5,
    bytestring,
    cassava,
    hashable < 1.3,
    HUnit,
    QuickCheck >= 2.0,
    test-framework,
    test-framework-hunit,
    test-framework-quickcheck2,
    text,
    unordered-containers,
    vector

  hs-source-dirs: tests
  ghc-options: -Wall

Benchmark benchmarks
  default-language: Haskell2010

  Type: exitcode-stdio-1.0
  Main-is: Benchmarks.hs

  Other-modules:
    Data.Csv
    Data.Csv.Conversion
    Data.Csv.Conversion.Internal
    Data.Csv.Encoding
    Data.Csv.Incremental
    Data.Csv.Parser
    Data.Csv.Streaming
    Data.Csv.Types
    Data.Csv.Util

  Build-depends:
    array < 0.6,
    attoparsec >= 0.10.2 && < 0.14,
    base >= 4.5 && < 5,
    blaze-builder < 0.5,
    bytestring < 0.11,
    containers < 0.6,
    criterion >= 1.0,
    deepseq < 1.5,
    hashable < 1.3,
    lazy-csv >= 0.5,
    text < 1.3,
    text,
    unordered-containers < 0.3,
    vector < 0.12

  -- GHC.Generics lived in `ghc-prim` for GHC 7.2 & GHC 7.4 only
  if impl(ghc < 7.6)
    build-depends: ghc-prim == 0.2.*

  ghc-options: -Wall -O2

  -- We cannot depend on the library directly as that creates a
  -- dependency cycle.
  hs-source-dirs: . benchmarks

source-repository head
  type:     git
  location: https://github.com/hvr/cassava.git

Reply via email to