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/foundation/Manifest
Normal file
3
dev-haskell/foundation/Manifest
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
DIST foundation-0.0.20.tar.gz 122940 BLAKE2B 6ab858d94ac276d419bfb98262aaf0f5ba236d7793cc858d1e55050dc42954af8c03fe0ef4b5996b438bd1dea6f10411358da01707e0412495040df3cd8d3d17 SHA512 283a0e2ce0165d531d17f0c0f14e72b843c67a809d5c7bde4280b23103b30d919c5ddf0cd09918129171ea79d34ad83abfcd3aac9e24d9803595d08cea6aba22
|
||||
EBUILD foundation-0.0.20.ebuild 1073 BLAKE2B ed64c10765572d2868ec78acefe4832f1b680fa93109812d672cc35a55f81d9d5e7a9f23f312855cb74ee37cc08b58dd17fff1e24702e5c1a59ee74108207e7f SHA512 8087d9d5a3c5e72a8812b38abe3fb810cd237754435f467f538df408a215e7f59248a4e4613644eac7aef4712a69ccb51cd4dcd9c5284af5c1d761c0f5da9aa2
|
||||
MISC metadata.xml 961 BLAKE2B cb1e084d1ec1998d46b0193e1c6e2e4e863fa989b1d0fb24cf7b534a7fe0dbd48145ae2083ae4cf389e9e87a41cb2d8eb694f284e8aa8c5e16cb07175a6d8047 SHA512 96df7a14861ca9dc85196b26a464d31f0e7672124ad90dc4c35811f1f8642d826fd83248f3cbfbc47cacea78837be4911f1b5a57abdfe98af8aea30159a29357
|
||||
37
dev-haskell/foundation/foundation-0.0.20.ebuild
Normal file
37
dev-haskell/foundation/foundation-0.0.20.ebuild
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# 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="Alternative prelude with batteries and no dependencies"
|
||||
HOMEPAGE="https://github.com/haskell-foundation/foundation"
|
||||
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="bench-all bounds-check doctest experimental linktest minimal-deps"
|
||||
|
||||
RDEPEND="~dev-haskell/basement-0.0.7:=[profile?]
|
||||
>=dev-lang/ghc-8.0.1:=
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-haskell/cabal-1.24.0.0
|
||||
test? ( dev-haskell/basement
|
||||
doctest? ( !minimal-deps? ( >=dev-haskell/doctest-0.9 ) ) )
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
haskell-cabal_src_configure \
|
||||
$(cabal_flag bench-all bench-all) \
|
||||
$(cabal_flag bounds-check bounds-check) \
|
||||
$(cabal_flag doctest doctest) \
|
||||
$(cabal_flag experimental experimental) \
|
||||
$(cabal_flag linktest linktest) \
|
||||
$(cabal_flag minimal-deps minimal-deps)
|
||||
}
|
||||
27
dev-haskell/foundation/metadata.xml
Normal file
27
dev-haskell/foundation/metadata.xml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<?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>
|
||||
A custom prelude with no dependencies apart from base.
|
||||
|
||||
This package has the following goals:
|
||||
|
||||
* provide a base like sets of modules that provide a consistent set of features and bugfixes across multiple versions of GHC (unlike base).
|
||||
|
||||
* provide a better and more efficient prelude than base's prelude.
|
||||
|
||||
* be self-sufficient: no external dependencies apart from base.
|
||||
|
||||
* provide better data-types: packed unicode string by default, arrays.
|
||||
|
||||
* Better numerical classes that better represent mathematical thing (No more all-in-one Num).
|
||||
|
||||
* Better I/O system with less Lazy IO
|
||||
|
||||
* Usual partial functions distinguished through type system
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
Loading…
Add table
Add a link
Reference in a new issue