app-text/pandoc: huge version bump
This commit is contained in:
parent
36c01efcfe
commit
72b537171f
131 changed files with 2697 additions and 0 deletions
3
dev-haskell/skylighting-core/Manifest
Normal file
3
dev-haskell/skylighting-core/Manifest
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
DIST skylighting-core-0.7.4.tar.gz 584056 BLAKE2B f22353da3b3f3cde9b4214f4ab1e2a6f0211ff6f070b0b78e4761cede6bfc75780608939f81aa9f01fa4dace8e71fe0c7563d34fa7a1d4e591ddfc9c608117aa SHA512 03a42e65a565be78767cbeebf16cfae9ed5328fe999ce17e7161e851d0797d47e5f449fdd6fc8f69bf3247f51690d90edb95130555972dc6c2cfd43a1aceec68
|
||||
EBUILD skylighting-core-0.7.4.ebuild 1475 BLAKE2B 54e9bb7747d798ed44b114359138c84ac78758b7a63936465a3f7bed5ae01d20eba302967c85ec7c847ff6ca272a7110f3b6b91ddc11f5729e8dd5de6decf687 SHA512 fecb6174bb2f287a84a6b72a434ffefb868661270cef260986955218fef081a5adf9b0e53677d99da875ab59399da11302a5508475c3b0385a39d6f46bf2015b
|
||||
MISC metadata.xml 778 BLAKE2B 15a5afbef81e8adc225d40e6cd6e2ab00f464eddad4e3480ebebb1fc26ba43216ddc3b1ea8257a2d08baa008795f1c5a9e6128dcd42a57855f8f83be2a826dc7 SHA512 f31d04f05705753f57242036bf47f57a0452d72da7df6ec543f61a196a94b213e01b663a14ca21d2f5057a6bd10bc62ebd58b203065f975c664b4109d11db5c0
|
||||
22
dev-haskell/skylighting-core/metadata.xml
Normal file
22
dev-haskell/skylighting-core/metadata.xml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>haskell@gentoo.org</email>
|
||||
<name>Gentoo Haskell</name>
|
||||
</maintainer>
|
||||
<longdescription>
|
||||
Skylighting is a syntax highlighting library.
|
||||
It derives its tokenizers from XML syntax
|
||||
definitions used by KDE's KSyntaxHighlighting
|
||||
framework, so any syntax supported by that
|
||||
framework can be added. An optional command-line
|
||||
program is provided.
|
||||
Skylighting is intended to be the successor to
|
||||
highlighting-kate.
|
||||
This package provides the core highlighting
|
||||
functionality under a permissive license. It also
|
||||
bundles XML parser definitions licensed under the
|
||||
GPL.
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
53
dev-haskell/skylighting-core/skylighting-core-0.7.4.ebuild
Normal file
53
dev-haskell/skylighting-core/skylighting-core-0.7.4.ebuild
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
# ebuild generated by hackport 0.5.6
|
||||
|
||||
CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
|
||||
inherit haskell-cabal
|
||||
|
||||
DESCRIPTION="syntax highlighting library"
|
||||
HOMEPAGE="https://github.com/jgm/skylighting"
|
||||
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="executable system-pcre"
|
||||
|
||||
RDEPEND=">=dev-haskell/aeson-1.0:=[profile?]
|
||||
>=dev-haskell/ansi-terminal-0.7:=[profile?]
|
||||
dev-haskell/attoparsec:=[profile?]
|
||||
dev-haskell/base64-bytestring:=[profile?]
|
||||
>=dev-haskell/blaze-html-0.5:=[profile?]
|
||||
dev-haskell/case-insensitive:=[profile?]
|
||||
>=dev-haskell/colour-2.0:=[profile?]
|
||||
dev-haskell/hxt:=[profile?]
|
||||
dev-haskell/mtl:=[profile?]
|
||||
dev-haskell/safe:=[profile?]
|
||||
dev-haskell/text:=[profile?]
|
||||
dev-haskell/utf8-string:=[profile?]
|
||||
>=dev-lang/ghc-8.0.1:=
|
||||
system-pcre? ( dev-haskell/regex-pcre:=[profile?] )
|
||||
!system-pcre? ( dev-haskell/regex-pcre-builtin:=[profile?] )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-haskell/cabal-1.24.0.0
|
||||
test? ( dev-haskell/diff
|
||||
dev-haskell/hunit
|
||||
dev-haskell/pretty-show
|
||||
dev-haskell/quickcheck
|
||||
dev-haskell/random
|
||||
dev-haskell/tasty
|
||||
dev-haskell/tasty-golden
|
||||
dev-haskell/tasty-hunit
|
||||
dev-haskell/tasty-quickcheck )
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
haskell-cabal_src_configure \
|
||||
$(cabal_flag executable executable) \
|
||||
$(cabal_flag system-pcre system-pcre)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue