Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-http-api-data for 
openSUSE:Factory checked in at 2021-03-10 08:54:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-http-api-data (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-http-api-data.new.2378 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-http-api-data"

Wed Mar 10 08:54:53 2021 rev:22 rq:877631 version:0.4.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-http-api-data/ghc-http-api-data.changes      
2021-01-20 18:25:10.627389449 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-http-api-data.new.2378/ghc-http-api-data.changes
    2021-03-10 08:56:52.906865850 +0100
@@ -1,0 +2,6 @@
+Sun Feb 21 12:47:57 UTC 2021 - psim...@suse.com
+
+- Update http-api-data to version 0.4.3 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  http-api-data.cabal

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

Other differences:
------------------
++++++ ghc-http-api-data.spec ++++++
--- /var/tmp/diff_new_pack.PAuceo/_old  2021-03-10 08:56:53.534866498 +0100
+++ /var/tmp/diff_new_pack.PAuceo/_new  2021-03-10 08:56:53.538866502 +0100
@@ -25,6 +25,7 @@
 License:        BSD-2-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-attoparsec-devel
 BuildRequires:  ghc-attoparsec-iso8601-devel
@@ -67,6 +68,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ http-api-data.cabal ++++++
cabal-version:   >= 1.10
name:            http-api-data
version:         0.4.3
x-revision:      1

synopsis:        Converting to/from HTTP API data like URL pieces, headers and 
query parameters.
category:        Web
description:
  This package defines typeclasses used for converting Haskell data types to 
and from HTTP API data.
  .
  Please see README.md

license:         BSD3
license-file:    LICENSE
author:          Nickolay Kudasov <nickolay.kuda...@gmail.com>
maintainer:      Nickolay Kudasov <nickolay.kuda...@gmail.com>
homepage:        http://github.com/fizruk/http-api-data
stability:       unstable
build-type:      Simple

extra-source-files:
  include/overlapping-compat.h
  test/*.hs
  CHANGELOG.md
  README.md

tested-with:
  GHC==7.8.4,
  GHC==7.10.3,
  GHC==8.0.2,
  GHC==8.2.2,
  GHC==8.4.4,
  GHC==8.6.5,
  GHC==8.8.4,
  GHC==8.10.4,
  GHC==9.0.1

flag use-text-show
  description: Use text-show library for efficient ToHttpApiData 
implementations.
  default: False
  manual: True

library
    hs-source-dirs: src/
    include-dirs:   include/

    -- GHC bundled
    build-depends:   base                  >= 4.7      && < 4.16
                   , bytestring            >= 0.10.4.0 && < 0.12
                   , containers            >= 0.5.5.1  && < 0.7
                   , text                  >= 1.2.3.0  && < 1.3
                   , transformers          >= 0.3      && < 0.6

    -- so Semigroup Builder exists
    if impl(ghc >= 8.0)
      build-depends: bytestring >= 0.10.8.1

    -- other-dependencies
    build-depends:
                     attoparsec            >= 0.13.2.2 && < 0.14
                   , attoparsec-iso8601    >= 1.0.2.0  && < 1.1
                   , base-compat           >= 0.10.5   && < 0.12
                   , cookie                >= 0.4.3    && < 0.5
                   , hashable              >= 1.2.7.0  && < 1.4
                   , http-types            >= 0.12.3   && < 0.13
                   , tagged                >= 0.8.5    && < 0.9
                   , time-compat           >= 1.9.5    && < 1.10
                   , unordered-containers  >= 0.2.10.0 && < 0.3
                   , uuid-types            >= 1.0.3    && < 1.1

    if !impl(ghc >= 7.10)
      build-depends:
        nats >= 1.1.2 && < 1.2,
        void >= 0.7.3 && < 0.8

    if !impl(ghc >= 8.0)
      build-depends: semigroups            >= 0.18.5   && < 0.20

    if flag(use-text-show)
      cpp-options: -DUSE_TEXT_SHOW
      build-depends: text-show        >= 3.8.2 && <3.10

    exposed-modules:
      Web.HttpApiData
      Web.FormUrlEncoded
      Web.Internal.FormUrlEncoded
      Web.Internal.HttpApiData
    ghc-options:     -Wall
    default-language: Haskell2010

test-suite spec
    type:          exitcode-stdio-1.0
    main-is:       Spec.hs
    other-modules:
      Web.Internal.FormUrlEncodedSpec
      Web.Internal.HttpApiDataSpec
      Web.Internal.TestInstances
    hs-source-dirs: test
    ghc-options:   -Wall
    default-language: Haskell2010
    build-tool-depends: hspec-discover:hspec-discover >= 2.7.1 && <2.8
    -- inherited  depndencies
    build-depends:
                     base
                   , base-compat
                   , bytestring
                   , cookie
                   , http-api-data
                   , text
                   , time-compat
                   , unordered-containers
                   , uuid-types

    if !impl(ghc >= 7.10)
      build-depends: nats

    build-depends:   HUnit                >= 1.6.0.0  && <1.7
                   , hspec                >= 2.7.1    && <2.8
                   , QuickCheck           >= 2.13.1   && <2.15
                   , quickcheck-instances >= 0.3.25.2 && <0.4

source-repository head
  type:     git
  location: https://github.com/fizruk/http-api-data

Reply via email to