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/parsec/Manifest
Normal file
3
dev-haskell/parsec/Manifest
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
DIST parsec-3.1.13.0.tar.gz 35207 BLAKE2B d5d39122bdc8117aa45b7fc83c15162ac5d366ede01fbf99a94909c0b8ff6a31b6058bbd52ec6aa2366c6e9b1c909acb78c90a697821f8a88b67fa01c7655ff4 SHA512 4efa52bf5f8cdfe81ea97f1ea0bb5522331217976feaf98bb5ebfdf37f4685263f653de091c0ec0ecb0fc26cf6f8525639f9728c9e92afc154e91c6d4239c9b3
|
||||
EBUILD parsec-3.1.13.0.ebuild 1105 BLAKE2B 0b290ec826afed57e00e66eed793dedc4323e592b0ef60aa99275726d0459a1485e51d8abf5c89a0bfd2a3cce17b8a6e6e120f9e6162cad262ad5f04ba48578d SHA512 629f88809e587b1e61888670e656bf4994c843403c57579588437450f5a6847fe6f99b81b25a97c4ea4384e981947de7614d4bbdd007b69d1afc503e025255c8
|
||||
MISC metadata.xml 911 BLAKE2B 34ba96592c53e25231eaa6c72ee932d164059c61785ff687dac2d7580ca56b79ec631ce3200603f298e75aa60ad8da2bfb122ebaf9652987ce4ad4d8dfc05db0 SHA512 f8fea9469cd59e092cd227769e81a3a6847e573d35e9ea4c1db6c03d2b584263f2a391a8270dadf38b521a581d652d64135e02cb16ce245284efe321580db6c8
|
||||
23
dev-haskell/parsec/metadata.xml
Normal file
23
dev-haskell/parsec/metadata.xml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<?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>
|
||||
Parsec is designed from scratch as an industrial-strength parser
|
||||
library. It is simple, safe, well documented (on the package
|
||||
homepage), has extensive libraries, good error messages,
|
||||
and is fast. It is defined as a monad transformer that can be
|
||||
stacked on arbitrary monads, and it is also parametric in the
|
||||
input stream type.
|
||||
|
||||
The main entry point is the "Text.Parsec" module which provides
|
||||
defaults for parsing 'Char'acter data.
|
||||
|
||||
The "Text.ParserCombinators.Parsec" module hierarchy contains
|
||||
the legacy @parsec-2@ API and may be removed at some point in
|
||||
the future.
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
32
dev-haskell/parsec/parsec-3.1.13.0.ebuild
Normal file
32
dev-haskell/parsec/parsec-3.1.13.0.ebuild
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# 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="Monadic parser combinators"
|
||||
HOMEPAGE="https://github.com/hvr/parsec"
|
||||
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=dev-haskell/fail-4.9:=[profile?] <dev-haskell/fail-4.10:=[profile?]
|
||||
>=dev-haskell/mtl-1.1.1:=[profile?] <dev-haskell/mtl-2.3:=[profile?]
|
||||
>=dev-haskell/semigroups-0.18:=[profile?] <dev-haskell/semigroups-0.19:=[profile?]
|
||||
>=dev-haskell/text-0.11.3:=[profile?] <dev-haskell/text-1.3:=[profile?]
|
||||
>=dev-lang/ghc-7.4.1:=
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-haskell/cabal-1.12
|
||||
test? ( >=dev-haskell/test-framework-0.8 <dev-haskell/test-framework-0.9
|
||||
>=dev-haskell/test-framework-hunit-0.3 <dev-haskell/test-framework-hunit-0.4
|
||||
|| ( ( >=dev-haskell/hunit-1.3.1.2 <dev-haskell/hunit-1.4 )
|
||||
( >=dev-haskell/hunit-1.6 <dev-haskell/hunit-1.7 ) ) )
|
||||
"
|
||||
Loading…
Add table
Add a link
Reference in a new issue