osc copypac from project:devel:languages:haskell:ghc-8.6.x package:ghc-yaml revision:4, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-yaml?expand=0&rev=76
This commit is contained in:
parent
b9637ba4f8
commit
3a0a164887
@ -1,3 +1,47 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 15 02:01:17 UTC 2018 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update yaml to version 0.11.0.0.
|
||||||
|
## 0.11.0.0
|
||||||
|
|
||||||
|
* Split out the `libyaml` and `Text.Libyaml` code into its own package. [#145](https://github.com/snoyberg/yaml/issues/145)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 11 02:01:05 UTC 2018 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update yaml to version 0.10.4.0.
|
||||||
|
## 0.10.4.0
|
||||||
|
|
||||||
|
* Add `decodeMarked` and `decodeFileMarked` functions to `Text.Libyaml`, and
|
||||||
|
extend native bindings to extract mark information. [#157](https://github.com/snoyberg/yaml/issues/157)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 10 19:23:55 UTC 2018 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update yaml to version 0.10.3.0.
|
||||||
|
## 0.10.3.0
|
||||||
|
|
||||||
|
* Add support for anchors and aliases to Data.Yaml.Builder [#155](https://github.com/snoyberg/yaml/pull/155)
|
||||||
|
* Fix test suite for 32 bit machines [#158](https://github.com/snoyberg/yaml/issues/158)
|
||||||
|
|
||||||
|
## 0.10.2.0
|
||||||
|
|
||||||
|
* Add `EncodeOptions` and `FormatOptions` to control the style of the encoded YAML. [#153](https://github.com/snoyberg/yaml/pull/153)
|
||||||
|
* Default to using literal style for multiline strings [#152](https://github.com/snoyberg/yaml/issues/152)
|
||||||
|
|
||||||
|
## 0.10.1.1
|
||||||
|
|
||||||
|
* Correctly declare libyaml dependency on system-libyaml flag [#151](https://github.com/snoyberg/yaml/pull/151)
|
||||||
|
|
||||||
|
## 0.10.1
|
||||||
|
|
||||||
|
* Avoid incurring a `semigroups` dependency on recent GHCs.
|
||||||
|
* Fix a space leak that was introduced with `0.10.0` [#147](https://github.com/snoyberg/yaml/issues/147)
|
||||||
|
|
||||||
|
## 0.10.0
|
||||||
|
|
||||||
|
* Add `decodeFileWithWarnings` which returns warnings for duplicate fields
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jul 18 14:26:49 UTC 2018 - psimons@suse.com
|
Wed Jul 18 14:26:49 UTC 2018 - psimons@suse.com
|
||||||
|
|
||||||
|
@ -12,14 +12,14 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%global pkg_name yaml
|
%global pkg_name yaml
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 0.9.0
|
Version: 0.11.0.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Support for parsing and rendering YAML documents
|
Summary: Support for parsing and rendering YAML documents
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -34,10 +34,11 @@ BuildRequires: ghc-conduit-devel
|
|||||||
BuildRequires: ghc-containers-devel
|
BuildRequires: ghc-containers-devel
|
||||||
BuildRequires: ghc-directory-devel
|
BuildRequires: ghc-directory-devel
|
||||||
BuildRequires: ghc-filepath-devel
|
BuildRequires: ghc-filepath-devel
|
||||||
|
BuildRequires: ghc-libyaml-devel
|
||||||
|
BuildRequires: ghc-mtl-devel
|
||||||
BuildRequires: ghc-resourcet-devel
|
BuildRequires: ghc-resourcet-devel
|
||||||
BuildRequires: ghc-rpm-macros
|
BuildRequires: ghc-rpm-macros
|
||||||
BuildRequires: ghc-scientific-devel
|
BuildRequires: ghc-scientific-devel
|
||||||
BuildRequires: ghc-semigroups-devel
|
|
||||||
BuildRequires: ghc-template-haskell-devel
|
BuildRequires: ghc-template-haskell-devel
|
||||||
BuildRequires: ghc-text-devel
|
BuildRequires: ghc-text-devel
|
||||||
BuildRequires: ghc-transformers-devel
|
BuildRequires: ghc-transformers-devel
|
||||||
@ -48,6 +49,7 @@ BuildRequires: ghc-HUnit-devel
|
|||||||
BuildRequires: ghc-base-compat-devel
|
BuildRequires: ghc-base-compat-devel
|
||||||
BuildRequires: ghc-hspec-devel
|
BuildRequires: ghc-hspec-devel
|
||||||
BuildRequires: ghc-mockery-devel
|
BuildRequires: ghc-mockery-devel
|
||||||
|
BuildRequires: ghc-raw-strings-qq-devel
|
||||||
BuildRequires: ghc-temporary-devel
|
BuildRequires: ghc-temporary-devel
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
3
yaml-0.11.0.0.tar.gz
Normal file
3
yaml-0.11.0.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e66466cd29a4d256c3dd4dd4ab366033dbc5fa1fb67fdc6f7ac7aa3f161527bf
|
||||||
|
size 26529
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ec4b2f1d1393f80b717821b265aa8fa6133429c4ebc127956e5035314d1bbc16
|
|
||||||
size 84613
|
|
Loading…
Reference in New Issue
Block a user