update to 0.6.9
This commit is contained in:
parent
0a21f1aaf5
commit
1dfe273177
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,3 +2,4 @@
|
||||
/ansi-wl-pprint-0.6.7.3.tar.gz
|
||||
/ansi-wl-pprint-0.6.8.1.tar.gz
|
||||
/ansi-wl-pprint-0.6.8.2.tar.gz
|
||||
/ansi-wl-pprint-0.6.9.tar.gz
|
||||
|
@ -1,12 +1,14 @@
|
||||
name: ansi-wl-pprint
|
||||
version: 0.6.8.2
|
||||
x-revision: 2
|
||||
cabal-version: >= 1.10
|
||||
name: ansi-wl-pprint
|
||||
version: 0.6.9
|
||||
x-revision: 1
|
||||
|
||||
category: User Interfaces, Text
|
||||
synopsis: The Wadler/Leijen Pretty Printer for colored ANSI terminal output
|
||||
description: {
|
||||
|
||||
This is a pretty printing library based on Wadler's paper ["A Prettier Printer"](https://homepages.inf.ed.ac.uk/wadler/papers/prettier/prettier.pdf). It has been enhanced with support for ANSI terminal colored output using the [ansi-terminal](https://hackage.haskell.org/package/ansi-terminal) package.
|
||||
This is a pretty printing library based on Wadler's paper ["A Prettier Printer"](https://homepages.inf.ed.ac.uk/wadler/papers/prettier/prettier.pdf).
|
||||
It has been enhanced with support for ANSI terminal colored output using the [ansi-terminal](https://hackage.haskell.org/package/ansi-terminal) package.
|
||||
|
||||
}
|
||||
license: BSD3
|
||||
@ -17,7 +19,7 @@ maintainer: Edward Kmett <ekmett@gmail.com>
|
||||
bug-reports: http://github.com/ekmett/ansi-wl-pprint/issues
|
||||
homepage: http://github.com/ekmett/ansi-wl-pprint
|
||||
build-type: Simple
|
||||
tested-with: GHC==7.4.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.3, GHC==8.6.3
|
||||
tested-with: GHC==7.0.2, GHC==7.2.2, GHC==7.4.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.3, GHC==8.6.5, GHC==8.8.1
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
@ -37,13 +39,21 @@ library
|
||||
|
||||
-- See https://ghc.haskell.org/trac/ghc/wiki/Migration/8.0#base-4.9.0.0
|
||||
if impl(ghc >= 8.0)
|
||||
ghc-options: -Wcompat -Wnoncanonical-monad-instances -Wnoncanonical-monadfail-instances
|
||||
ghc-options: -Wcompat -Wnoncanonical-monad-instances
|
||||
if impl(ghc < 8.8)
|
||||
ghc-options: -Wnoncanonical-monadfail-instances
|
||||
else
|
||||
-- see also notes in Text.PrettyPrint.ANSI.Leijen
|
||||
build-depends: semigroups >= 0.1 && < 0.20
|
||||
build-depends: semigroups >= 0.18.5 && < 0.20
|
||||
|
||||
build-depends: ansi-terminal >= 0.4.0 && < 0.10
|
||||
build-depends: base >= 4.5 && < 5
|
||||
build-depends: ansi-terminal >= 0.9.1 && < 0.11
|
||||
build-depends: base >= 4.3 && < 5
|
||||
|
||||
if impl(ghc >= 7.4)
|
||||
default-extensions: Safe
|
||||
else
|
||||
if impl(ghc >= 7.2)
|
||||
default-extensions: Trustworthy
|
||||
|
||||
executable ansi-wl-pprint-example
|
||||
default-language: Haskell2010
|
@ -5,8 +5,8 @@
|
||||
%global pkgver %{pkg_name}-%{version}
|
||||
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 0.6.8.2
|
||||
Release: 6%{?dist}
|
||||
Version: 0.6.9
|
||||
Release: 1%{?dist}
|
||||
Summary: The Wadler/Leijen Pretty Printer for colored ANSI terminal output
|
||||
|
||||
License: BSD
|
||||
@ -116,6 +116,9 @@ sed -i 's/\r$//' README.md
|
||||
|
||||
|
||||
%changelog
|
||||
* Sun Feb 09 2020 Jens Petersen <petersen@redhat.com> - 0.6.9-1
|
||||
- update to 0.6.9
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.8.2-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (ansi-wl-pprint-0.6.8.2.tar.gz) = 00c39dcdd90071011d2db6e196c472fddc61bf3ee4baed0414de1a1ef1e13801fceb647a718018e1a644d2276845af7bc58d5bf72dcb35d193ef6391ba2f8ac3
|
||||
SHA512 (ansi-wl-pprint-0.6.9.tar.gz) = 2a66236f740f0b45b6133555e8b1315dc85ece1c16dd51e4aa7f31d2fee03d66869af5f81e6383aa840f503c2cad46f3655f53b784ebca7b3480efb53eea2a04
|
||||
|
Loading…
Reference in New Issue
Block a user