osc copypac from project:devel:languages:haskell:lts:10 package:ghc-pandoc-types revision:3, using keep-link

OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-pandoc-types?expand=0&rev=46
This commit is contained in:
Peter Simons 2017-12-21 19:59:01 +00:00 committed by Git OBS Bridge
parent 5a71993d8a
commit 7d765c0ec3
5 changed files with 11 additions and 84 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Dec 21 19:16:27 UTC 2017 - psimons@suse.com
- Update to version 1.17.3.
A more detailed change log is not available.
-------------------------------------------------------------------
Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com

View File

@ -19,14 +19,13 @@
%global pkg_name pandoc-types
%bcond_with tests
Name: ghc-%{pkg_name}
Version: 1.17.0.5
Version: 1.17.3
Release: 0
Summary: Types for representing a structured document
License: GPL-2.0
Group: Development/Libraries/Haskell
URL: https://hackage.haskell.org/package/%{pkg_name}
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/4.cabal#/%{pkg_name}.cabal
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-QuickCheck-devel
BuildRequires: ghc-aeson-devel
@ -35,6 +34,7 @@ BuildRequires: ghc-containers-devel
BuildRequires: ghc-deepseq-devel
BuildRequires: ghc-rpm-macros
BuildRequires: ghc-syb-devel
BuildRequires: ghc-transformers-devel
%if %{with tests}
BuildRequires: ghc-HUnit-devel
BuildRequires: ghc-string-qq-devel
@ -75,7 +75,6 @@ This package provides the Haskell %{pkg_name} library development files.
%prep
%setup -q -n %{pkg_name}-%{version}
cp -p %{SOURCE1} %{pkg_name}.cabal
%build
%ghc_lib_build

View File

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

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:163045ec6dc02c075c960aba3315d61d99fdff91c2ef4b39a9efc4fb7a2cdf4c
size 23846

View File

@ -1,78 +0,0 @@
Name: pandoc-types
Version: 1.17.0.5
x-revision: 4
Synopsis: Types for representing a structured document
Description: @Text.Pandoc.Definition@ defines the 'Pandoc' data
structure, which is used by pandoc to represent
structured documents. This module used to live
in the pandoc package, but starting with pandoc 1.7, it
has been split off, so that other packages can use it
without drawing in all of pandoc's dependencies, and
pandoc itself can depend on packages (like citeproc-hs)
that use them.
.
@Text.Pandoc.Builder@ provides functions for building
up @Pandoc@ structures programmatically.
.
@Text.Pandoc.Generic@ provides generic functions for
manipulating Pandoc documents.
.
@Text.Pandoc.Walk@ provides faster, nongeneric functions
for manipulating Pandoc documents.
.
@Text.Pandoc.JSON@ provides functions for serializing
and deserializing a @Pandoc@ structure to and from JSON.
Homepage: http://johnmacfarlane.net/pandoc
License: BSD3
License-file: LICENSE
Author: John MacFarlane
Maintainer: jgm@berkeley.edu
Bug-Reports: https://github.com/jgm/pandoc-types/issues
Copyright: (c) 2006-2015 John MacFarlane
Category: Text
Build-type: Simple
Cabal-version: >=1.8
Tested-With: GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1
Extra-Source-Files: changelog
Source-repository head
type: git
location: git://github.com/jgm/pandoc-types.git
Library
Exposed-modules: Text.Pandoc.Definition
Text.Pandoc.Generic
Text.Pandoc.Walk
Text.Pandoc.Builder
Text.Pandoc.JSON
Text.Pandoc.Arbitrary
Other-modules: Paths_pandoc_types
Build-depends: base >= 4 && < 5,
containers >= 0.3,
syb >= 0.1 && < 0.8,
ghc-prim >= 0.2,
bytestring >= 0.9 && < 0.11,
aeson >= 0.6.2 && < 1.3,
QuickCheck >= 2
if impl(ghc < 7.10)
Build-depends: deepseq-generics >= 0.1 && < 0.2
else
Build-depends: deepseq >= 1.4.1 && < 1.5
test-suite test-pandoc-types
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: test-pandoc-types.hs
build-depends: base,
pandoc-types,
syb,
aeson >= 0.6.2 && < 1.3,
containers >= 0.3,
bytestring >= 0.9 && < 0.11,
test-framework >= 0.3 && < 0.9,
test-framework-hunit >= 0.2 && < 0.4,
test-framework-quickcheck2 >= 0.2.9 && < 0.4,
QuickCheck >= 2.4 && < 2.11,
HUnit >= 1.2 && < 1.7,
string-qq == 0.0.2
ghc-options: -threaded -rtsopts -with-rtsopts=-N