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/text/Manifest
Normal file
3
dev-haskell/text/Manifest
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
DIST text-1.2.3.1.tar.gz 157382 BLAKE2B 551012a6b7bfc1b1ad838f977d67981a35b9d13f1cd1b568ce0beed3583c50887cf1ceb1033fbeab215806c5a0d0c5ca39ce2f1aa20fd06365440c3324e8a6bc SHA512 643eb3306761c3e29e05dcd7d64abc505789cd00c60f7a4562e5747f63bcc0ae6f0cc54bb5ed92cc85dbf6406942bf40289baf30aca91bf92ac5215af5eddc98
|
||||
EBUILD text-1.2.3.1.ebuild 1153 BLAKE2B 6108e1d6b3fde779f92a46ac58fb0212d804dc1401d3d61f9239b3eb0d9dbe0fe869237a52b061f14287e6ffeba719f642fa1b560cba19fc1ff9d5b8af296879 SHA512 974b55a681f345b20769def949765f7823eb3904ba6f10029ba3524dfff3132ca3c3c72dd4b07b2434a74e2540b1372ccb8b2bff8a028dac62034b43b589db60
|
||||
MISC metadata.xml 1655 BLAKE2B 6a9a7e34fc116d5297c6f261161703c2aa1cd3f14df94b3baadd5e725bf448ca7b82a9e87369b6a38568433e1373fc5d15054b981c18305e00f73281fd4774c2 SHA512 026770132d577b14a2892c55416dcf96059fcba54fd5afd00c937571b21447066723222175c9df5e08b9d4e01e64379b6db2588306ca25cad423d71eccbfed60
|
||||
39
dev-haskell/text/metadata.xml
Normal file
39
dev-haskell/text/metadata.xml
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
<?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>
|
||||
|
||||
An efficient packed, immutable Unicode text type (both strict and
|
||||
lazy), with a powerful loop fusion optimization framework.
|
||||
|
||||
The 'Text' type represents Unicode character strings, in a time and
|
||||
space-efficient manner. This package provides text processing
|
||||
capabilities that are optimized for performance critical use, both
|
||||
in terms of large data quantities and high speed.
|
||||
|
||||
The 'Text' type provides character-encoding, type-safe case
|
||||
conversion via whole-string case conversion functions (see "Data.Text").
|
||||
It also provides a range of functions for converting 'Text' values to
|
||||
and from 'ByteStrings', using several standard encodings
|
||||
(see "Data.Text.Encoding").
|
||||
|
||||
Efficient locale-sensitive support for text IO is also supported
|
||||
(see "Data.Text.IO").
|
||||
|
||||
These modules are intended to be imported qualified, to avoid name
|
||||
clashes with Prelude functions, e.g.
|
||||
|
||||
> import qualified Data.Text as T
|
||||
|
||||
To use an extended and very rich family of functions for working
|
||||
with Unicode text (including normalization, regular expressions,
|
||||
non-standard encodings, text breaking, and locales), see
|
||||
the [text-icu package](https://hackage.haskell.org/package/text-icu)
|
||||
based on the well-respected and liberally
|
||||
licensed [ICU library](http://site.icu-project.org/).
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
39
dev-haskell/text/text-1.2.3.1.ebuild
Normal file
39
dev-haskell/text/text-1.2.3.1.ebuild
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# 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="An efficient packed Unicode text type"
|
||||
HOMEPAGE="https://github.com/haskell/text"
|
||||
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD-2"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="developer integer-simple"
|
||||
|
||||
RDEPEND=">=dev-haskell/bytestring-builder-0.10.4:=[profile?]
|
||||
>=dev-lang/ghc-7.4.1:=
|
||||
integer-simple? ( >=dev-haskell/integer-simple-0.1:=[profile?] <dev-haskell/integer-simple-0.5:=[profile?] )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-haskell/cabal-1.8
|
||||
test? ( >=dev-haskell/hunit-1.2
|
||||
>=dev-haskell/quickcheck-2.7 <dev-haskell/quickcheck-2.11
|
||||
>=dev-haskell/quickcheck-unicode-1.0.1.0
|
||||
dev-haskell/random
|
||||
>=dev-haskell/test-framework-0.4
|
||||
>=dev-haskell/test-framework-hunit-0.2
|
||||
>=dev-haskell/test-framework-quickcheck2-0.2 )
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
haskell-cabal_src_configure \
|
||||
$(cabal_flag developer developer) \
|
||||
$(cabal_flag integer-simple integer-simple)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue