Hello community, here is the log from the commit of package ghc-HsYAML for openSUSE:Leap:15.2 checked in at 2020-02-19 18:37:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/ghc-HsYAML (Old) and /work/SRC/openSUSE:Leap:15.2/.ghc-HsYAML.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-HsYAML" Wed Feb 19 18:37:12 2020 rev:3 rq:771196 version:0.2.1.0 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/ghc-HsYAML/ghc-HsYAML.changes 2020-01-15 15:00:34.929752417 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.ghc-HsYAML.new.26092/ghc-HsYAML.changes 2020-02-19 18:37:14.933797153 +0100 @@ -1,0 +2,26 @@ +Mon Dec 23 17:45:49 UTC 2019 - [email protected] + +- Update HsYAML to version 0.2.1.0. + Upstream has edited the change log file since the last release in + a non-trivial way, i.e. they did more than just add a new entry + at the top. You can review the file at: + http://hackage.haskell.org/package/HsYAML-0.2.1.0/src/ChangeLog.md + +------------------------------------------------------------------- +Fri Nov 8 16:13:57 UTC 2019 - Peter Simons <[email protected]> + +- Drop obsolete group attributes. + +------------------------------------------------------------------- +Sat May 18 02:01:59 UTC 2019 - [email protected] + +- Update HsYAML to version 0.1.2.0. + + * Add convenience functions `decode1` and `decode1Strict` + expecting exactly one YAML document + ([#5](https://github.com/haskell-hvr/HsYAML/pull/5)) + + * Fix a couple corner-cases in the YAML tokenization + ([#10](https://github.com/haskell-hvr/HsYAML/pull/10)) + +------------------------------------------------------------------- @@ -5 +30,0 @@ - ### 0.1.1.3 @@ -7 +32,3 @@ - * Fix bug in float regexp being too lax in the JSON and Core schema ([#7](https://github.com/hvr/HsYAML/issues/7)) + * Fix bug in float regexp being too lax in the JSON and Core + schema ([#7](https://github.com/hvr/HsYAML/issues/7)) + Old: ---- HsYAML-0.1.1.3.tar.gz New: ---- HsYAML-0.2.1.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-HsYAML.spec ++++++ --- /var/tmp/diff_new_pack.0rEkC8/_old 2020-02-19 18:37:15.305797931 +0100 +++ /var/tmp/diff_new_pack.0rEkC8/_new 2020-02-19 18:37:15.305797931 +0100 @@ -17,25 +17,31 @@ %global pkg_name HsYAML +%bcond_with tests Name: ghc-%{pkg_name} -Version: 0.1.1.3 +Version: 0.2.1.0 Release: 0 -Summary: Pure Haskell YAML 1.2 parser +Summary: Pure Haskell YAML 1.2 processor License: GPL-2.0-or-later -Group: Development/Libraries/Haskell URL: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz BuildRequires: ghc-Cabal-devel BuildRequires: ghc-bytestring-devel BuildRequires: ghc-containers-devel +BuildRequires: ghc-deepseq-devel BuildRequires: ghc-mtl-devel BuildRequires: ghc-parsec-devel BuildRequires: ghc-rpm-macros BuildRequires: ghc-text-devel +%if %{with tests} +BuildRequires: ghc-QuickCheck-devel +BuildRequires: ghc-tasty-devel +BuildRequires: ghc-tasty-quickcheck-devel +%endif %description -'HsYAML' is a [YAML 1.2](http://yaml.org/spec/1.2/spec.html) parser -implementation for Haskell. +'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. Features of 'HsYAML' include: @@ -43,17 +49,24 @@ strict compliance with the [YAML 1.2 specification](http://yaml.org/spec/1.2/spec.html). * Direct decoding to native Haskell types via ('aeson'-inspired) typeclass-based API (see "Data.YAML"). -* Support for constructing custom YAML node graph representation (including -support for cyclic YAML data structures). * Support for the standard (untyped) -/Failsafe/, (strict) /JSON/, and (flexible) /Core/ "schemas" providing implicit -typing rules as defined in the YAML 1.2 specification (including support for -user-defined custom schemas). * Event-based API resembling LibYAML's -Event-based API (see "Data.YAML.Event"). * Low-level API access to lexical -token-based scanner (see "Data.YAML.Token"). . +* Allows round-tripping while preserving ordering, anchors, and comments at +Event-level. * Support for constructing custom YAML node graph representation +(including support for cyclic YAML data structures). * Support for the standard +(untyped) /Failsafe/, (strict) /JSON/, and (flexible) /Core/ "schemas" +providing implicit typing rules as defined in the YAML 1.2 specification +(including support for user-defined custom schemas; see "Data.YAML.Schema"). +* Support for emitting YAML using /Failsafe/, (strict) /JSON/, and (flexible) +/Core/ "schemas" (including support for user-defined custom encoding schemas; +see "Data.YAML.Schema"). * Event-based API resembling LibYAML's Event-based API +(see "Data.YAML.Event"). * Low-level API access to lexical token-based scanner +(see "Data.YAML.Token"). + +See also the <//hackage.haskell.org/package/HsYAML-aeson HsYAML-aeson> package +which allows to decode and encode YAML by leveraging 'aeson''s 'FromJSON' and +'ToJSON' instances. %package devel Summary: Haskell %{pkg_name} library development files -Group: Development/Libraries/Haskell Requires: %{name} = %{version}-%{release} Requires: ghc-compiler = %{ghc_version} Requires(post): ghc-compiler = %{ghc_version} @@ -71,6 +84,9 @@ %install %ghc_lib_install +%check +%cabal_test + %post devel %ghc_pkg_recache ++++++ HsYAML-0.1.1.3.tar.gz -> HsYAML-0.2.1.0.tar.gz ++++++ ++++ 5552 lines of diff (skipped)
