osc copypac from project:devel:languages:haskell:ghc-8.6.x package:ghc-haddock-library revision:3, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-haddock-library?expand=0&rev=28
This commit is contained in:
parent
243820d7c6
commit
6eb94d4a8e
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 17 02:01:32 UTC 2018 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update haddock-library to version 1.7.0.
|
||||||
|
## Changes in version 1.7.0
|
||||||
|
|
||||||
|
* Make `Documentation.Haddock.Parser.Monad` an internal module
|
||||||
|
|
||||||
|
## Changes in version 1.6.1
|
||||||
|
|
||||||
|
* Replace `attoparsec` with `parsec` (#799)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jul 18 14:26:26 UTC 2018 - psimons@suse.com
|
Wed Jul 18 14:26:26 UTC 2018 - psimons@suse.com
|
||||||
|
|
||||||
|
@ -12,15 +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 haddock-library
|
%global pkg_name haddock-library
|
||||||
%global has_internal_sub_libraries 1
|
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 1.6.0
|
Version: 1.7.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Library exposing some functionality of Haddock
|
Summary: Library exposing some functionality of Haddock
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -30,25 +29,23 @@ Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg
|
|||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-bytestring-devel
|
BuildRequires: ghc-bytestring-devel
|
||||||
BuildRequires: ghc-containers-devel
|
BuildRequires: ghc-containers-devel
|
||||||
BuildRequires: ghc-deepseq-devel
|
BuildRequires: ghc-parsec-devel
|
||||||
BuildRequires: ghc-rpm-macros
|
BuildRequires: ghc-rpm-macros
|
||||||
|
BuildRequires: ghc-text-devel
|
||||||
BuildRequires: ghc-transformers-devel
|
BuildRequires: ghc-transformers-devel
|
||||||
%if %{with tests}
|
%if %{with tests}
|
||||||
BuildRequires: ghc-QuickCheck-devel
|
BuildRequires: ghc-QuickCheck-devel
|
||||||
BuildRequires: ghc-base-compat-devel
|
BuildRequires: ghc-base-compat-devel
|
||||||
BuildRequires: ghc-directory-devel
|
BuildRequires: ghc-deepseq-devel
|
||||||
BuildRequires: ghc-filepath-devel
|
|
||||||
BuildRequires: ghc-hspec-devel
|
BuildRequires: ghc-hspec-devel
|
||||||
BuildRequires: ghc-optparse-applicative-devel
|
|
||||||
BuildRequires: ghc-tree-diff-devel
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Haddock is a documentation-generation tool for Haskell libraries.
|
Haddock is a documentation-generation tool for Haskell libraries.
|
||||||
These modules expose some functionality of it without pulling in the GHC
|
These modules expose some functionality of it without pulling in the GHC
|
||||||
dependency. Please note that the API is likely to change so specify upper
|
dependency. Please note that the API is likely to change so specify upper
|
||||||
bounds in your project if you can't release often. For interacting with Haddock
|
bounds in your project. For interacting with Haddock itself, see the [haddock
|
||||||
itself, see the ‘haddock’ package.
|
package](https://hackage.haskell.org/package/haddock).
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Haskell %{pkg_name} library development files
|
Summary: Haskell %{pkg_name} library development files
|
||||||
@ -66,7 +63,7 @@ files.
|
|||||||
%setup -q -n %{pkg_name}-%{version}
|
%setup -q -n %{pkg_name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%ghc_lib_build_without_haddock
|
%ghc_lib_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%ghc_lib_install
|
%ghc_lib_install
|
||||||
@ -82,7 +79,6 @@ files.
|
|||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%license vendor/attoparsec-0.13.1.0/LICENSE
|
|
||||||
|
|
||||||
%files devel -f %{name}-devel.files
|
%files devel -f %{name}-devel.files
|
||||||
%doc CHANGES.md
|
%doc CHANGES.md
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:609f096e7b7d2690fc2302d6a77f6a0e0fefb64ae64e90d90e754dc37f10e740
|
|
||||||
size 46993
|
|
3
haddock-library-1.7.0.tar.gz
Normal file
3
haddock-library-1.7.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e7c2794a7eb352824f098cafa07bc0506f2c3633808bfbf4c64aef0ba664d011
|
||||||
|
size 26315
|
Loading…
x
Reference in New Issue
Block a user