Hello community,

here is the log from the commit of package ghc-HsYAML for openSUSE:Factory 
checked in at 2019-12-27 13:50:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-HsYAML (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-HsYAML.new.6675 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-HsYAML"

Fri Dec 27 13:50:50 2019 rev:6 rq:759318 version:0.2.1.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-HsYAML/ghc-HsYAML.changes    2019-10-18 
14:33:25.428240900 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-HsYAML.new.6675/ghc-HsYAML.changes  
2019-12-27 13:50:58.112556398 +0100
@@ -1,0 +2,14 @@
+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.
+
+-------------------------------------------------------------------

Old:
----
  HsYAML-0.1.2.0.tar.gz
  HsYAML.cabal

New:
----
  HsYAML-0.2.1.0.tar.gz

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

Other differences:
------------------
++++++ ghc-HsYAML.spec ++++++
--- /var/tmp/diff_new_pack.gATRxy/_old  2019-12-27 13:50:58.812556895 +0100
+++ /var/tmp/diff_new_pack.gATRxy/_new  2019-12-27 13:50:58.816556898 +0100
@@ -17,26 +17,31 @@
 
 
 %global pkg_name HsYAML
+%bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        0.1.2.0
+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
-Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 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:
 
@@ -44,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}
@@ -65,7 +77,6 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build
@@ -73,6 +84,9 @@
 %install
 %ghc_lib_install
 
+%check
+%cabal_test
+
 %post devel
 %ghc_pkg_recache
 

++++++ HsYAML-0.1.2.0.tar.gz -> HsYAML-0.2.1.0.tar.gz ++++++
++++ 5508 lines of diff (skipped)


Reply via email to