Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-aeson-yaml for openSUSE:Factory 
checked in at 2022-02-11 23:08:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-aeson-yaml (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-aeson-yaml.new.1956 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-aeson-yaml"

Fri Feb 11 23:08:30 2022 rev:5 rq:953429 version:1.1.0.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-aeson-yaml/ghc-aeson-yaml.changes    
2021-12-19 17:34:27.968266191 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-aeson-yaml.new.1956/ghc-aeson-yaml.changes  
2022-02-11 23:10:27.743128683 +0100
@@ -1,0 +2,6 @@
+Thu Jan 20 19:20:56 UTC 2022 - Peter Simons <[email protected]>
+
+- Update aeson-yaml to version 1.1.0.1 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  aeson-yaml.cabal

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

Other differences:
------------------
++++++ ghc-aeson-yaml.spec ++++++
--- /var/tmp/diff_new_pack.MYa2Lx/_old  2022-02-11 23:10:28.143129840 +0100
+++ /var/tmp/diff_new_pack.MYa2Lx/_new  2022-02-11 23:10:28.151129863 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-aeson-yaml
 #
-# 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-aeson-devel
 BuildRequires:  ghc-bytestring-devel
@@ -59,6 +60,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ aeson-yaml.cabal ++++++
cabal-version: 1.12

name:           aeson-yaml
version:        1.1.0.1
x-revision: 1
homepage:       https://github.com/clovyr/aeson-yaml
bug-reports:    https://github.com/clovyr/aeson-yaml/issues
author:         Patrick Nielsen
maintainer:     [email protected]
copyright:      2019 Clovyr LLC
license:        BSD3
license-file:   LICENSE
build-type:     Simple
category:       Text, Web, JSON, YAML
synopsis:       Output any Aeson value as YAML (pure Haskell library)
description:
    This library exposes functions for encoding any Aeson value as YAML. There
    is also support for encoding multiple values into YAML "documents".
    .
    This library is pure Haskell, and does not depend on C FFI with libyaml. It
    is also licensed under the BSD3 license.

extra-source-files:
    README.md
    CHANGELOG.md

source-repository head
  type: git
  location: https://github.com/clovyr/aeson-yaml

flag build-binaries
  description: Build the binaries
  manual: True
  default: False

library
  hs-source-dirs: src
  exposed-modules:
      Data.Aeson.Yaml
  build-depends:
      aeson >= 0.4.0.0 && < 2.1
    , base >= 4.8.2.0 && < 5
    , bytestring >= 0.10.4.0 && < 0.12
    , text >= 0.1 && < 2.1
    , unordered-containers >= 0.1.0.0 && < 0.3
    , vector >= 0.1 && < 0.13
  ghc-options:
      -Wall
  default-language: Haskell2010

test-suite test
  hs-source-dirs: test
  main-is: Driver.hs
  other-modules:
      Test.Data.Aeson.Yaml
  build-depends:
      aeson
    , aeson-yaml
    , base
    , bytestring
    -- , hedgehog
    -- , hedgehog-gen-json
    , string-qq
    , tasty
    , tasty-hunit
    , unordered-containers
    , yaml
  build-tool-depends: tasty-discover:tasty-discover
  type: exitcode-stdio-1.0
  default-language: Haskell2010

executable json-to-yaml
  if !flag(build-binaries)
    buildable: False
  hs-source-dirs: bin
  main-is: JsonToYaml.hs
  build-depends:
      aeson
    , aeson-yaml
    , base
    , bytestring
  ghc-options: -Wall -threaded
  default-language: Haskell2010

Reply via email to