diff options
author | 2019-07-28 17:05:36 +0100 | |
---|---|---|
committer | 2019-07-28 17:06:02 +0100 | |
commit | fbd696934a0d4c102e528356bab0a9a160e102b1 (patch) | |
tree | afb62442044c933e0bc044ac504e2c518b8a05c5 /dev-haskell/cmark/cmark-0.6.ebuild | |
parent | sys-kernel/ck-sources: version 5.2.3 (new branch) (diff) | |
download | gentoo-fbd696934a0d4c102e528356bab0a9a160e102b1.tar.gz gentoo-fbd696934a0d4c102e528356bab0a9a160e102b1.tar.bz2 gentoo-fbd696934a0d4c102e528356bab0a9a160e102b1.zip |
dev-haskell/cmark: bump up to 0.6.0, bug #687698
Reported-by: Toralf Förster
Closes: https://bugs.gentoo.org/687698
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-haskell/cmark/cmark-0.6.ebuild')
-rw-r--r-- | dev-haskell/cmark/cmark-0.6.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-haskell/cmark/cmark-0.6.ebuild b/dev-haskell/cmark/cmark-0.6.ebuild new file mode 100644 index 000000000000..3947b5bde229 --- /dev/null +++ b/dev-haskell/cmark/cmark-0.6.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +# ebuild generated by hackport 0.6.9999 +#hackport: flags: pkgconfig:system-cmark + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Fast, accurate CommonMark (Markdown) parser and renderer" +HOMEPAGE="https://github.com/jgm/cmark-hs" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="system-cmark" + +RDEPEND=">=dev-haskell/text-1.0:=[profile?] <dev-haskell/text-1.3:=[profile?] + >=dev-lang/ghc-7.4.1:= + system-cmark? ( app-text/cmark ) +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.14 + test? ( >=dev-haskell/hunit-1.2 <dev-haskell/hunit-1.7 ) + system-cmark? ( virtual/pkgconfig ) +" + +src_configure() { + haskell-cabal_src_configure \ + $(cabal_flag system-cmark pkgconfig) +} |