Hello community,

here is the log from the commit of package ghc-HsYAML-aeson for 
openSUSE:Leap:15.2 checked in at 2020-05-21 12:58:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/ghc-HsYAML-aeson (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.ghc-HsYAML-aeson.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-HsYAML-aeson"

Thu May 21 12:58:34 2020 rev:2 rq:805487 version:0.2.0.0

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/ghc-HsYAML-aeson/ghc-HsYAML-aeson.changes      
2020-02-19 18:37:15.617798584 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.ghc-HsYAML-aeson.new.2738/ghc-HsYAML-aeson.changes
    2020-05-21 12:58:35.270696853 +0200
@@ -1,0 +2,5 @@
+Thu May  7 08:08:21 UTC 2020 - Peter Simons <psim...@suse.com>
+
+- Update Cabal file to get more accurate dependency information.
+
+-------------------------------------------------------------------

New:
----
  HsYAML-aeson.cabal

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

Other differences:
------------------
++++++ ghc-HsYAML-aeson.spec ++++++
--- /var/tmp/diff_new_pack.Oa5K59/_old  2020-05-21 12:58:35.598697567 +0200
+++ /var/tmp/diff_new_pack.Oa5K59/_new  2020-05-21 12:58:35.602697575 +0200
@@ -24,6 +24,7 @@
 License:        GPL-2.0-or-later
 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-HsYAML-devel
 BuildRequires:  ghc-aeson-devel
@@ -60,8 +61,7 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
-echo > Setup.hs 'import Distribution.Simple'
-echo >>Setup.hs 'main = defaultMain'
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ HsYAML-aeson.cabal ++++++
cabal-version:       2.2
name:                HsYAML-aeson
version:             0.2.0.0
x-revision: 1
license:             GPL-2.0-or-later
license-file:        LICENSE.GPLv2
author:              Herbert Valerio Riedel
maintainer:          h...@gnu.org
copyright:           2018-2019 Herbert Valerio Riedel
category:            Text, Codec, Web, JSON, YAML
synopsis:            JSON to YAML Adapter
description:
  The [YAML 1.2](https://yaml.org/spec/1.2/spec.html) format provides
  a much richer data-model and feature-set
  than the [JavaScript Object Notation 
(JSON)](https://tools.ietf.org/html/rfc7159) format.
  However, sometimes it's desirable to ignore the extra capabilities
  and treat YAML as if it was merely a more convenient markup format
  for humans to write JSON data. To this end this module provides a
  compatibility layer atop [HsYAML](https://hackage.haskell.org/package/HsYAML)
  which allows decoding YAML documents in the more limited JSON data-model 
while also providing
  convenience by reusing [aeson](https://hackage.haskell.org/package/aeson)'s
  'FromJSON' instances for decoding the YAML data into native Haskell data 
types.

extra-source-files:
  CHANGELOG.md

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

library
  exposed-modules: Data.YAML.Aeson
  build-depends:
    , HsYAML      ^>= 0.2.0
    , aeson       ^>= 1.4.0.0
    , base         >= 4.5 && < 4.15
    , bytestring  ^>= 0.9.2.1 || ^>= 0.10.0.2
    , containers   >=0.4.2 && <0.7
    , mtl         ^>= 2.2.1
    , scientific  ^>= 0.3.6.2
    , text        ^>= 1.2.3
    , unordered-containers ^>= 0.2
    , vector      ^>= 0.12.0.2

  hs-source-dirs:      src
  default-language:    Haskell2010
  other-extensions:    RecordWildCards Trustworthy
  ghc-options: -Wall

Reply via email to