app-text/pandoc: huge version bump

This commit is contained in:
nemunaire 2018-11-16 04:34:05 +01:00
commit 72b537171f
131 changed files with 2697 additions and 0 deletions

View file

@ -0,0 +1,3 @@
DIST hxt-regex-xmlschema-9.2.0.3.tar.gz 35781 BLAKE2B 0ab5c2042acf032e2709e6781457ec28f2bda3b9778947b08dafd7075c9422e0375574104fd06089f19192bebce3f3f3da5e1b515c8eb62bb7ce5c06c3e8680c SHA512 707ad7a4b5c32785fd89131279dd89a871f134a26ce1f98fd4ac8fec196c8960c2d39d18674967379b40508748fca3a34b9289500173075c54c1d6726191bbd8
EBUILD hxt-regex-xmlschema-9.2.0.3.ebuild 941 BLAKE2B 1e0e063b3fdf5d19379678258a2d59c16cfbd859f90557be63a8e62cf33d5bcef15f0c8098af6b24a342972b7a09865f89e03b6e00683b98072bbdb490fea1de SHA512 a2133e209baa107a26e4e789633e559dc087f685774e7c3ed85619bf501c4b9054d8770dd9f8edc91badfde60d67841e3c735d4cdf19f27cfb606f6fc33a3136
MISC metadata.xml 1031 BLAKE2B efbe01dbf548b63fb816ef07a2c7f90fbed3ad93fc6c4be578a4b2e6a415a6c0f4e1605264047d0e29f57e52a60f4fe08c54f9e930f2eb82ebc2a4e7313584c9 SHA512 2020fdee7c3b2058d2d5f466742cb56d89a5cc5247d8c893aaf1cf7f8041a398aa7463cff302a481c4dcb5d6989850598885c5317397ddf10fb77c85ab175114

View file

@ -0,0 +1,33 @@
# 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="A regular expression library for W3C XML Schema regular expressions"
HOMEPAGE="http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE="profile"
RDEPEND=">=dev-haskell/hxt-charproperties-9:=[profile?] <dev-haskell/hxt-charproperties-10:=[profile?]
>=dev-haskell/parsec-2.1:=[profile?] <dev-haskell/parsec-4:=[profile?]
>=dev-haskell/text-0.10:=[profile?]
>=dev-lang/ghc-7.6.1:=
"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.16.0
test? ( dev-haskell/hunit )
"
src_configure() {
haskell-cabal_src_configure \
$(cabal_flag profile profile)
}

View file

@ -0,0 +1,24 @@
<?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>
This library supports full W3C XML Schema regular expressions
inclusive all Unicode character sets and blocks.
The complete grammar can be found under &lt;http://www.w3.org/TR/xmlschema11-2/#regexs&gt;.
It is implemented by the technique of derivations of regular expressions.
The W3C syntax is extended to support not only union of regular sets,
but also intersection, set difference, exor.
Matching of subexpressions is also supported.
The library can be used for constricting lightweight scanners and tokenizers.
It is a standalone library, no external regex libraries are used.
Extensions in 9.2: The library does nor only support String&#39;s, but also
ByteString&#39;s and Text in strict and lazy variants
</longdescription>
</pkgmetadata>