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

3
dev-haskell/hxt/Manifest Normal file
View file

@ -0,0 +1,3 @@
DIST hxt-9.3.1.16.tar.gz 223814 BLAKE2B acc0ada43249884c2da06adb8214827b626799d6ba4d4eb9de78dcfb4451c523a48b04e6f7c6cc41b4f6a708527bd824979d902452c77dabd8190d94a521bbb2 SHA512 6cc99a3b9d1ffe33002d35a5c0965919227835e0fb5b0b829b49232443dec175428dab66720a717f8a655e0de9ad4c77c501aa6d3982b43024cb3a866cd12846
EBUILD hxt-9.3.1.16.ebuild 1096 BLAKE2B 8c099add03e79706f0507150be7d5bf52d102387447e724f5c636ccbe6671176149dddc265f43dc8a47f781fbc67487bdae7bc2a00792cdf79216b73ec5a1f90 SHA512 737cf7eba87ed0919e73b27e38543dc9f4d0a731ff4c6f4adaa3460cc9157442caa39c050183a400669e2c0ca4df2ea379b3b023ddc7d9f6b39a2b8413cae652
MISC metadata.xml 2697 BLAKE2B bebd98c390e2fe19cf69287356b65241c4984afb5426c61622e2f0bf04f75a223c63640405d2faac98a4fc593fc8dafb51680067bb2819b2b5f769311294825e SHA512 2ac61cb1a772d8bf089212ed91df6e242e53647573b8d2c92f71325699acf71295b3cab1f690cfceafa0abd573c2aed378b420c953ea39ef2399bfefee4407ef

View file

@ -0,0 +1,36 @@
# 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"
inherit haskell-cabal
DESCRIPTION="A collection of tools for processing XML with Haskell"
HOMEPAGE="https://github.com/UweSchmidt/hxt"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE="network-uri"
RDEPEND=">=dev-haskell/hxt-charproperties-9.1:=[profile?]
>=dev-haskell/hxt-regex-xmlschema-9.2:=[profile?]
>=dev-haskell/hxt-unicode-9.0.1:=[profile?]
>=dev-haskell/mtl-2.0.1:=[profile?] <dev-haskell/mtl-3:=[profile?]
>=dev-haskell/parsec-2.1:=[profile?] <dev-haskell/parsec-4:=[profile?]
>=dev-lang/ghc-7.4.1:=
network-uri? ( >=dev-haskell/network-uri-2.6:=[profile?] )
!network-uri? ( >=dev-haskell/network-2.4:=[profile?] <dev-haskell/network-2.6:=[profile?] )
"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.8
"
src_configure() {
haskell-cabal_src_configure \
$(cabal_flag network-uri network-uri)
}

View file

@ -0,0 +1,67 @@
<?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>
The Haskell XML Toolbox bases on the ideas of HaXml and HXML,
but introduces a more general approach for processing XML with Haskell.
The Haskell XML Toolbox uses a generic data model for representing XML documents,
including the DTD subset and the document subset, in Haskell.
It contains a validating XML parser, a HTML parser, namespace support,
an XPath expression evaluator, an XSLT library, a RelaxNG schema validator
and funtions for serialization and deserialization of user defined data.
The library makes extensive use of the arrow approach for processing XML.
Since version 9 the toolbox is partitioned into various (sub-)packages.
This package contains the core functionality,
hxt-curl, hxt-tagsoup, hxt-relaxng, hxt-xpath, hxt-xslt,
hxt-regex-xmlschema contain the extensions.
hxt-unicode contains encoding and decoding functions,
hxt-charproperties char properties for unicode and XML.
Changes from 9.3.1.15: Bug in quoting PI instructions in showXmlTrees fixed
Changes from 9.3.1.14: For ghc-7.10 network-uri is automatically selected
Changes from 9.3.1.13: ghc-7.10 compatibility
Changes from 9.3.1.12: Bug when unpickling an empty attribute value removed
Changes from 9.3.1.11: Bug fix in haddock comments
Changes from 9.3.1.10: Bug in DTD validation, space and time leak in delta removed
Changes from 9.3.1.9: lower bound of mtl dependency lowered to 2.0.1
Changes from 9.3.1.8: Bug in hread removed
Changes from 9.3.1.7: Foldable and Traversable instances for NTree added
Control.Except used instead of deprecated Control.Error
Changes from 9.3.1.6: canonicalize added in hread and hreadDoc
Changes from 9.3.1.4: conditionally (no default)
dependency from networt changed to network-uri with flag &quot;network-uri&quot;
Changes from 9.3.1.3: warnings from ghc-7.8.1 removed
Changes from 9.3.1.2: https as protocol added
Changes from 9.3.1.1: new parser xreadDoc
Changes from 9.3.1.0: in readString all input decoding switched off
Changes from 9.3.0.1: lower bound for network set to be &gt;= 2.4
Changes from 9.3.0: upper bound for network set to be &lt; 2.4
(URI signatures changed in 2.4)
Changes from 9.2.2: XMLSchema validation integrated
Changes from 9.2.1: user defined mime type handlers added
Changes from 9.2.0: New warnings from ghc-7.4 removed
</longdescription>
</pkgmetadata>