Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-cereal for openSUSE:Factory 
checked in at 2022-08-01 21:29:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-cereal (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-cereal.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-cereal"

Mon Aug  1 21:29:40 2022 rev:19 rq:987028 version:0.5.8.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-cereal/ghc-cereal.changes    2021-11-11 
21:38:18.072970885 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-cereal.new.1533/ghc-cereal.changes  
2022-08-01 21:29:45.625546552 +0200
@@ -1,0 +2,6 @@
+Sat May 28 17:37:51 UTC 2022 - Peter Simons <[email protected]>
+
+- Update cereal to version 0.5.8.2 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  cereal.cabal

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

Other differences:
------------------
++++++ ghc-cereal.spec ++++++
--- /var/tmp/diff_new_pack.wgUV2O/_old  2022-08-01 21:29:46.189548169 +0200
+++ /var/tmp/diff_new_pack.wgUV2O/_new  2022-08-01 21:29:46.197548192 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-cereal
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,6 +25,7 @@
 License:        BSD-3-Clause
 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-bytestring-devel
@@ -53,6 +54,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ cereal.cabal ++++++
name:                   cereal
version:                0.5.8.2
x-revision: 1
license:                BSD3
license-file:           LICENSE
author:                 Lennart Kolmodin <[email protected]>,
                        Galois Inc.,
                        Lemmih <[email protected]>,
                        Bas van Dijk <[email protected]>
maintainer:             Eric Mertens <[email protected]>
category:               Data, Parsing
stability:              provisional
build-type:             Simple
cabal-version:          >= 1.10
synopsis:               A binary serialization library
homepage:               https://github.com/GaloisInc/cereal
tested-with:            GHC == 7.2.2, GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, 
GHC == 7.10.2

description:
  A binary serialization library, similar to binary, that introduces an isolate
  primitive for parser isolation, and labeled blocks for better error messages.

extra-source-files:     CHANGELOG.md

source-repository head
  type:     git
  location: git://github.com/GaloisInc/cereal.git

flag bytestring-builder
  description:
    Decides whether to use an older version of bytestring along with 
bytestring-builder or just a newer version of bytestring.
    .
    This flag normally toggles automatically but you can use 
`-fbytestring-builder` or `-f-bytestring-builder` to explicitly change it.
  default: False
  manual: False

library
        default-language:       Haskell2010

        build-depends:          base >= 4.4 && < 4.17, containers, array,
                                ghc-prim >= 0.2

        if !impl(ghc >= 8.0)
          build-depends:        fail == 4.9.*

        if flag(bytestring-builder)
          build-depends:        bytestring >= 0.9    && < 0.10.4,
                                bytestring-builder >= 0.10.4 && < 1
        else
          build-depends:        bytestring >= 0.10.4 && < 1

        hs-source-dirs:         src

        exposed-modules:        Data.Serialize,
                                Data.Serialize.Put,
                                Data.Serialize.Get,
                                Data.Serialize.IEEE754

        ghc-options:            -Wall -O2 -funbox-strict-fields



test-suite test-cereal
        default-language:       Haskell2010

        type:                   exitcode-stdio-1.0

        build-depends:          base == 4.*,
                                bytestring >= 0.9,
                                QuickCheck,
                                test-framework,
                                test-framework-quickcheck2,
                                cereal

        main-is:                Main.hs
        other-modules:          RoundTrip
                                GetTests

        hs-source-dirs:         tests

Reply via email to