SHA256
1
0
forked from pool/ghc-either

Accepting request 623766 from devel:languages:haskell

- Cosmetic: replace tabs with blanks, strip trailing white space,
  and update copyright headers with spec-cleaner.

- Update either to version 5.0.1.
  5.0.1 [2018.07.03]
  ------------------
  * Make the `Semigroup`, `Apply`, and `Applicative` instances for `Validation`
    lazier.
  * Make `vap` lazier in its second argument.
  * Introduce `vapm`, an even lazier version of `vap` which requires a
    `Monoid` constraint. Also add `apm`, a counterpart for `Validation`.
  * Use `test-framework` and `QuickCheck` in the test suite.

OBS-URL: https://build.opensuse.org/request/show/623766
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-either?expand=0&rev=10
This commit is contained in:
Dominique Leuenberger 2018-07-24 15:18:23 +00:00 committed by Git OBS Bridge
commit 03fe0f19b8
4 changed files with 26 additions and 6 deletions

3
either-5.0.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6cb6eb3f60223f5ffedfcd749589e870a81d272e130cafd1d17fb6d3a8939018
size 9924

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:75cee27641a34f80e6c71f82469a76c7f51d23a522e792e2733269ebf7cbf420
size 8637

View File

@ -1,3 +1,22 @@
-------------------------------------------------------------------
Wed Jul 18 14:26:23 UTC 2018 - psimons@suse.com
- Cosmetic: replace tabs with blanks, strip trailing white space,
and update copyright headers with spec-cleaner.
-------------------------------------------------------------------
Fri Jul 13 14:31:28 UTC 2018 - psimons@suse.com
- Update either to version 5.0.1.
5.0.1 [2018.07.03]
------------------
* Make the `Semigroup`, `Apply`, and `Applicative` instances for `Validation`
lazier.
* Make `vap` lazier in its second argument.
* Introduce `vapm`, an even lazier version of `vap` which requires a
`Monoid` constraint. Also add `apm`, a counterpart for `Validation`.
* Use `test-framework` and `QuickCheck` in the test suite.
-------------------------------------------------------------------
Mon May 14 17:02:11 UTC 2018 - psimons@suse.com
@ -61,4 +80,3 @@ Sun May 17 15:21:44 UTC 2015 - mimi.vx@gmail.com
Sun Apr 26 17:54:38 UTC 2015 - mimi.vx@gmail.com
- initial commit

View File

@ -19,7 +19,7 @@
%global pkg_name either
%bcond_with tests
Name: ghc-%{pkg_name}
Version: 5
Version: 5.0.1
Release: 0
Summary: Combinators for working with sums
License: BSD-3-Clause
@ -34,7 +34,9 @@ BuildRequires: ghc-rpm-macros
BuildRequires: ghc-semigroupoids-devel
BuildRequires: ghc-semigroups-devel
%if %{with tests}
BuildRequires: ghc-hedgehog-devel
BuildRequires: ghc-QuickCheck-devel
BuildRequires: ghc-test-framework-devel
BuildRequires: ghc-test-framework-quickcheck2-devel
%endif
%description