Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-HsYAML for openSUSE:Factory checked in at 2023-10-08 12:18:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-HsYAML (Old) and /work/SRC/openSUSE:Factory/.ghc-HsYAML.new.28202 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-HsYAML" Sun Oct 8 12:18:23 2023 rev:22 rq:1116137 version:0.2.1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-HsYAML/ghc-HsYAML.changes 2023-09-21 22:23:39.066177674 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-HsYAML.new.28202/ghc-HsYAML.changes 2023-10-08 12:21:45.629582775 +0200 @@ -1,0 +2,12 @@ +Fri Sep 29 11:59:37 UTC 2023 - Peter Simons <psim...@suse.com> + +- Update HsYAML to version 0.2.1.2. + ### 0.2.1.2 + + _2023-09-29_ + + * Add `default-extensions: TypeOperators` to silence warning under GHC ⥠9.4. + * Support latest versions of dependencies. + * Tested with GHC 7.10 - 9.8.0 + +------------------------------------------------------------------- Old: ---- HsYAML-0.2.1.1.tar.gz HsYAML.cabal New: ---- HsYAML-0.2.1.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-HsYAML.spec ++++++ --- /var/tmp/diff_new_pack.epVdcf/_old 2023-10-08 12:21:46.649619450 +0200 +++ /var/tmp/diff_new_pack.epVdcf/_new 2023-10-08 12:21:46.653619593 +0200 @@ -20,13 +20,12 @@ %global pkgver %{pkg_name}-%{version} %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.2.1.1 +Version: 0.2.1.2 Release: 0 Summary: Pure Haskell YAML 1.2 processor 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/6.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-base-devel BuildRequires: ghc-base-prof @@ -109,7 +108,6 @@ %prep %autosetup -n %{pkg_name}-%{version} -cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build ++++++ HsYAML-0.2.1.1.tar.gz -> HsYAML-0.2.1.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/HsYAML-0.2.1.1/ChangeLog.md new/HsYAML-0.2.1.2/ChangeLog.md --- old/HsYAML-0.2.1.1/ChangeLog.md 2001-09-09 03:46:40.000000000 +0200 +++ new/HsYAML-0.2.1.2/ChangeLog.md 2001-09-09 03:46:40.000000000 +0200 @@ -1,5 +1,13 @@ See also http://pvp.haskell.org/faq +### 0.2.1.2 + +_2023-09-29_ + +* Add `default-extensions: TypeOperators` to silence warning under GHC ⥠9.4. +* Support latest versions of dependencies. +* Tested with GHC 7.10 - 9.8.0 + ### 0.2.1.1 _2022-05-11_ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/HsYAML-0.2.1.1/HsYAML.cabal new/HsYAML-0.2.1.2/HsYAML.cabal --- old/HsYAML-0.2.1.1/HsYAML.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/HsYAML-0.2.1.2/HsYAML.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -1,6 +1,6 @@ cabal-version: 1.14 name: HsYAML -version: 0.2.1.1 +version: 0.2.1.2 synopsis: Pure Haskell YAML 1.2 processor homepage: https://github.com/haskell-hvr/HsYAML @@ -15,7 +15,10 @@ category: Text build-type: Simple tested-with: - GHC == 9.2.2 + GHC == 9.8.0 + GHC == 9.6.3 + GHC == 9.4.7 + GHC == 9.2.8 GHC == 9.0.2 GHC == 8.10.7 GHC == 8.8.4 @@ -24,9 +27,11 @@ GHC == 8.2.2 GHC == 8.0.2 GHC == 7.10.3 - GHC == 7.8.4 - GHC == 7.6.3 - GHC == 7.4.2 + -- Skip testing on GHC 7.8 as it ships a too old 'transformers' + -- GHC == 7.8.4 + -- Skip testing these legacy GHC versions: + -- GHC == 7.6.3 + -- GHC == 7.4.2 description: @HsYAML@ is a [YAML 1.2](http://yaml.org/spec/1.2/spec.html) processor, i.e. a library for parsing and serializing YAML documents. @@ -75,6 +80,7 @@ , Data.DList default-language: Haskell2010 + default-extensions: TypeOperators other-extensions: DeriveGeneric FlexibleContexts FlexibleInstances @@ -89,11 +95,11 @@ Trustworthy TypeSynonymInstances - build-depends: base >= 4.5 && < 4.17 - , bytestring >= 0.9 && < 0.12 - , containers >= 0.4.2 && < 0.7 - , deepseq >= 1.3.0 && < 1.5 - , text >= 1.2.3 && < 2.1 + build-depends: base >= 4.5 && < 5 + , bytestring >= 0.9 && < 0.13 + , containers >= 0.4.2 && < 0.8 + , deepseq >= 1.3.0 && < 1.6 + , text >= 1.2.3 && < 2.2 , mtl >= 2.2.1 && < 2.4 , parsec >= 3.1.13.0 && < 3.2 , transformers >= 0.4 && < 0.7 @@ -151,6 +157,6 @@ , containers , mtl -- non-inherited - , QuickCheck == 2.14.* - , tasty == 1.4.* + , QuickCheck == 2.14.* + , tasty >= 1.4 && < 1.6 , tasty-quickcheck == 0.10.* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/HsYAML-0.2.1.1/src/Data/YAML.hs new/HsYAML-0.2.1.2/src/Data/YAML.hs --- old/HsYAML-0.2.1.1/src/Data/YAML.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/HsYAML-0.2.1.2/src/Data/YAML.hs 2001-09-09 03:46:40.000000000 +0200 @@ -118,7 +118,7 @@ -- -- The diagram below depicts the standard layers of a [YAML 1.2](http://yaml.org/spec/1.2/spec.html) processor. This module covers the upper /Native/ and /Representation/ layers, whereas the "Data.YAML.Event" and "Data.YAML.Token" modules provide access to the lower /Serialization/ and /Presentation/ layers respectively. -- --- <<http://yaml.org/spec/1.2/overview2.png>> +-- <<https://yaml.org/spec/1.2.2/img/overview2.svg>> -- -- $start --