This commit is contained in:
parent
00e49fdc5d
commit
a3c11eb2d4
1
.gitignore
vendored
1
.gitignore
vendored
@ -8,3 +8,4 @@
|
||||
/haddock-library-1.8.0.tar.gz
|
||||
/haddock-library-1.9.0.tar.gz
|
||||
/haddock-library-1.10.0.tar.gz
|
||||
/haddock-library-1.11.0.tar.gz
|
||||
|
@ -7,7 +7,7 @@
|
||||
# testsuite missing deps: tree-diff
|
||||
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 1.10.0
|
||||
Version: 1.11.0
|
||||
Release: %autorelease
|
||||
Summary: Library exposing some functionality of Haddock
|
||||
|
||||
@ -23,18 +23,14 @@ BuildRequires: dos2unix
|
||||
BuildRequires: ghc-Cabal-devel
|
||||
BuildRequires: ghc-rpm-macros
|
||||
BuildRequires: ghc-base-devel
|
||||
BuildRequires: ghc-bytestring-devel
|
||||
BuildRequires: ghc-containers-devel
|
||||
BuildRequires: ghc-parsec-devel
|
||||
BuildRequires: ghc-text-devel
|
||||
BuildRequires: ghc-transformers-devel
|
||||
%if %{with ghc_prof}
|
||||
BuildRequires: ghc-base-prof
|
||||
BuildRequires: ghc-bytestring-prof
|
||||
BuildRequires: ghc-containers-prof
|
||||
BuildRequires: ghc-parsec-prof
|
||||
BuildRequires: ghc-text-prof
|
||||
BuildRequires: ghc-transformers-prof
|
||||
%endif
|
||||
# End cabal-rpm deps
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
cabal-version: 2.2
|
||||
cabal-version: 3.0
|
||||
name: haddock-library
|
||||
version: 1.10.0
|
||||
x-revision: 3
|
||||
version: 1.11.0
|
||||
x-revision: 2
|
||||
synopsis: Library exposing some functionality of Haddock.
|
||||
|
||||
description: Haddock is a documentation-generation tool for Haskell
|
||||
@ -18,17 +18,22 @@ maintainer: Alec Theriault <alec.theriault@gmail.com>, Alex Biehl <ale
|
||||
homepage: http://www.haskell.org/haddock/
|
||||
bug-reports: https://github.com/haskell/haddock/issues
|
||||
category: Documentation
|
||||
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.4
|
||||
, GHC == 8.6.5
|
||||
, GHC == 8.8.3
|
||||
, GHC == 8.10.1
|
||||
, GHC == 9.0.1
|
||||
|
||||
tested-with:
|
||||
GHC == 9.6.1
|
||||
GHC == 9.4.4
|
||||
GHC == 9.2.7
|
||||
GHC == 9.0.2
|
||||
GHC == 8.10.7
|
||||
GHC == 8.8.4
|
||||
GHC == 8.6.5
|
||||
GHC == 8.4.4
|
||||
GHC == 8.2.2
|
||||
GHC == 8.0.2
|
||||
GHC == 7.10.3
|
||||
GHC == 7.8.4
|
||||
GHC == 7.6.3
|
||||
GHC == 7.4.2
|
||||
|
||||
extra-source-files:
|
||||
CHANGES.md
|
||||
@ -39,10 +44,8 @@ common lib-defaults
|
||||
default-language: Haskell2010
|
||||
|
||||
build-depends:
|
||||
, base >= 4.5 && < 4.17
|
||||
, bytestring
|
||||
, base >= 4.5 && < 4.19
|
||||
, containers ^>= 0.4.2.1 || ^>= 0.5.0.0 || ^>= 0.6.0.1
|
||||
, transformers
|
||||
, text ^>= 1.2.3.0 || ^>= 2.0
|
||||
, parsec ^>= 3.1.13.0
|
||||
|
||||
@ -88,8 +91,8 @@ test-suite spec
|
||||
Documentation.Haddock.Parser.Identifier
|
||||
|
||||
build-depends:
|
||||
, base-compat ^>= 0.9.3 || ^>= 0.11.0
|
||||
, QuickCheck ^>= 2.11 || ^>= 2.13.2 || ^>= 2.14
|
||||
, base-compat ^>= 0.12.0 || ^>= 0.13.0
|
||||
, QuickCheck ^>= 2.11 || ^>= 2.13.2 || ^>= 2.14
|
||||
, deepseq ^>= 1.3.0.0 || ^>= 1.4.0.0
|
||||
|
||||
-- NB: build-depends & build-tool-depends have independent
|
||||
@ -97,10 +100,10 @@ test-suite spec
|
||||
-- version of `hspec` & `hspec-discover` to ensure
|
||||
-- intercompatibility
|
||||
build-depends:
|
||||
, hspec >= 2.4.4 && < 2.8
|
||||
, hspec >= 2.4.4 && < 2.11
|
||||
|
||||
build-tool-depends:
|
||||
, hspec-discover:hspec-discover >= 2.4.4 && < 2.8
|
||||
, hspec-discover:hspec-discover >= 2.4.4 && < 2.10
|
||||
|
||||
test-suite fixtures
|
||||
type: exitcode-stdio-1.0
|
||||
@ -115,11 +118,11 @@ test-suite fixtures
|
||||
, base
|
||||
|
||||
-- extra dependencies
|
||||
, base-compat ^>= 0.9.3 || ^>= 0.11.0
|
||||
, base-compat ^>= 0.12.0 || ^>= 0.13.0
|
||||
, directory ^>= 1.3.0.2
|
||||
, filepath ^>= 1.4.1.2
|
||||
, optparse-applicative ^>= 0.15
|
||||
, tree-diff ^>= 0.1
|
||||
, optparse-applicative >= 0.15 && < 0.18
|
||||
, tree-diff ^>= 0.2 || ^>= 0.3
|
||||
|
||||
source-repository head
|
||||
type: git
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (haddock-library-1.10.0.tar.gz) = dac536a2b8e2764de1a1b1a16fc328e15455656c2992fb3b3bccdeae2bb6ac81fe94e164aa2a70cff7cea3b97347b8510aadb5fa1c0564bb2429947f0aace0d1
|
||||
SHA512 (haddock-library-1.11.0.tar.gz) = 85d34d60545fb01e9be1c74f47ec8e250337a283406120f7a47cb0f0c2dd339a0ab95bcd88ab86fef1282f019368b826b5f94c5f9d06d97370d1a6e454b6d5d8
|
||||
|
Loading…
Reference in New Issue
Block a user