osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-haddock-library revision:6, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-haddock-library?expand=0&rev=35
This commit is contained in:
parent
198b9b2777
commit
4f5e65f851
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 6 06:52:11 UTC 2020 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update haddock-library to version 1.9.0.
|
||||||
|
## Changes in version 1.9.0
|
||||||
|
|
||||||
|
* Fix build-time regression for `base < 4.7` (#1119)
|
||||||
|
|
||||||
|
* Update parsing to strip whitespace from table cells (#1074)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 23 17:45:40 UTC 2019 - psimons@suse.com
|
Mon Dec 23 17:45:40 UTC 2019 - psimons@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ghc-haddock-library
|
# spec file for package ghc-haddock-library
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,13 +19,12 @@
|
|||||||
%global pkg_name haddock-library
|
%global pkg_name haddock-library
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 1.8.0
|
Version: 1.9.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Library exposing some functionality of Haddock
|
Summary: Library exposing some functionality of Haddock
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
URL: https://hackage.haskell.org/package/%{pkg_name}
|
URL: https://hackage.haskell.org/package/%{pkg_name}
|
||||||
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
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-Cabal-devel
|
||||||
BuildRequires: ghc-bytestring-devel
|
BuildRequires: ghc-bytestring-devel
|
||||||
BuildRequires: ghc-containers-devel
|
BuildRequires: ghc-containers-devel
|
||||||
@ -64,7 +63,6 @@ files.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{pkg_name}-%{version}
|
%setup -q -n %{pkg_name}-%{version}
|
||||||
cp -p %{SOURCE1} %{pkg_name}.cabal
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%ghc_lib_build
|
%ghc_lib_build
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:7093a70308a548c1fa46c01fe236bc27125311159ad797304e6b0ee893d8b797
|
|
||||||
size 30918
|
|
3
haddock-library-1.9.0.tar.gz
Normal file
3
haddock-library-1.9.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ac3032d3e2ba87f69c8207b29966e5cda023a30dd25b4d6ae14a93bc2bac6730
|
||||||
|
size 31465
|
@ -1,116 +0,0 @@
|
|||||||
cabal-version: 2.2
|
|
||||||
name: haddock-library
|
|
||||||
version: 1.8.0
|
|
||||||
x-revision: 1
|
|
||||||
synopsis: Library exposing some functionality of Haddock.
|
|
||||||
|
|
||||||
description: Haddock is a documentation-generation tool for Haskell
|
|
||||||
libraries. These modules expose some
|
|
||||||
functionality of it without pulling in the GHC
|
|
||||||
dependency. Please note that the API is likely
|
|
||||||
to change so be sure to specify upper bounds in
|
|
||||||
your projects. For interacting with Haddock
|
|
||||||
itself, see the [haddock package](https://hackage.haskell.org/package/haddock).
|
|
||||||
|
|
||||||
license: BSD-2-Clause
|
|
||||||
license-files: LICENSE
|
|
||||||
maintainer: Alec Theriault <alec.theriault@gmail.com>, Alex Biehl <alexbiehl@gmail.com>, Simon Hengel <sol@typeful.net>, Mateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>
|
|
||||||
homepage: http://www.haskell.org/haddock/
|
|
||||||
bug-reports: https://github.com/haskell/haddock/issues
|
|
||||||
category: Documentation
|
|
||||||
extra-source-files:
|
|
||||||
CHANGES.md
|
|
||||||
fixtures/examples/*.input
|
|
||||||
fixtures/examples/*.parsed
|
|
||||||
|
|
||||||
common lib-defaults
|
|
||||||
default-language: Haskell2010
|
|
||||||
|
|
||||||
build-depends:
|
|
||||||
, base >= 4.7 && < 4.14
|
|
||||||
, bytestring ^>= 0.9.2.1 || ^>= 0.10.0.0
|
|
||||||
, containers ^>= 0.4.2.1 || ^>= 0.5.0.0 || ^>= 0.6.0.1
|
|
||||||
, transformers ^>= 0.3.0.0 || ^>= 0.4.1.0 || ^>= 0.5.0.0
|
|
||||||
, text ^>= 1.2.3.0
|
|
||||||
, parsec ^>= 3.1.13.0
|
|
||||||
|
|
||||||
ghc-options: -funbox-strict-fields -Wall -fwarn-tabs
|
|
||||||
if impl(ghc >= 8.0)
|
|
||||||
ghc-options: -Wcompat -Wnoncanonical-monad-instances
|
|
||||||
|
|
||||||
library
|
|
||||||
import: lib-defaults
|
|
||||||
|
|
||||||
hs-source-dirs: src
|
|
||||||
|
|
||||||
exposed-modules:
|
|
||||||
Documentation.Haddock.Doc
|
|
||||||
Documentation.Haddock.Markup
|
|
||||||
Documentation.Haddock.Parser
|
|
||||||
Documentation.Haddock.Types
|
|
||||||
|
|
||||||
other-modules:
|
|
||||||
Documentation.Haddock.Parser.Util
|
|
||||||
Documentation.Haddock.Parser.Monad
|
|
||||||
Documentation.Haddock.Parser.Identifier
|
|
||||||
|
|
||||||
test-suite spec
|
|
||||||
import: lib-defaults
|
|
||||||
type: exitcode-stdio-1.0
|
|
||||||
main-is: Spec.hs
|
|
||||||
hs-source-dirs:
|
|
||||||
test
|
|
||||||
src
|
|
||||||
|
|
||||||
cpp-options:
|
|
||||||
-DTEST
|
|
||||||
|
|
||||||
other-modules:
|
|
||||||
Documentation.Haddock.Doc
|
|
||||||
Documentation.Haddock.Markup
|
|
||||||
Documentation.Haddock.Parser
|
|
||||||
Documentation.Haddock.Parser.Monad
|
|
||||||
Documentation.Haddock.Parser.Util
|
|
||||||
Documentation.Haddock.Parser.UtilSpec
|
|
||||||
Documentation.Haddock.ParserSpec
|
|
||||||
Documentation.Haddock.Types
|
|
||||||
Documentation.Haddock.Parser.Identifier
|
|
||||||
|
|
||||||
build-depends:
|
|
||||||
, base-compat ^>= 0.9.3 || ^>= 0.11.0
|
|
||||||
, QuickCheck ^>= 2.11 || ^>= 2.13.2
|
|
||||||
, deepseq ^>= 1.3.0.0 || ^>= 1.4.0.0
|
|
||||||
|
|
||||||
-- NB: build-depends & build-tool-depends have independent
|
|
||||||
-- install-plans, so it's best to limit to a single major
|
|
||||||
-- version of `hspec` & `hspec-discover` to ensure
|
|
||||||
-- intercompatibility
|
|
||||||
build-depends:
|
|
||||||
, hspec >= 2.4.4 && < 2.8
|
|
||||||
|
|
||||||
build-tool-depends:
|
|
||||||
, hspec-discover:hspec-discover >= 2.4.4 && < 2.8
|
|
||||||
|
|
||||||
test-suite fixtures
|
|
||||||
type: exitcode-stdio-1.0
|
|
||||||
default-language: Haskell2010
|
|
||||||
main-is: Fixtures.hs
|
|
||||||
ghc-options: -Wall
|
|
||||||
hs-source-dirs: fixtures
|
|
||||||
build-depends:
|
|
||||||
-- intra-package dependency
|
|
||||||
, haddock-library
|
|
||||||
-- constraints inherited via lib:haddock-library component
|
|
||||||
, base
|
|
||||||
|
|
||||||
-- extra dependencies
|
|
||||||
, base-compat ^>= 0.9.3 || ^>= 0.11.0
|
|
||||||
, directory ^>= 1.3.0.2
|
|
||||||
, filepath ^>= 1.4.1.2
|
|
||||||
, optparse-applicative ^>= 0.15
|
|
||||||
, tree-diff ^>= 0.1
|
|
||||||
|
|
||||||
source-repository head
|
|
||||||
type: git
|
|
||||||
subdir: haddock-library
|
|
||||||
location: https://github.com/haskell/haddock.git
|
|
Loading…
x
Reference in New Issue
Block a user