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/quickcheck/Manifest
Normal file
3
dev-haskell/quickcheck/Manifest
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
DIST QuickCheck-2.12.6.1.tar.gz 67105 BLAKE2B e6ba203083e3485b83cdc50901c8fe82e1b821e47458e44270ee43362a16e26b0037f1f64874d1c9b91885e01a027970166f093fc0af75158b98bf9a2e6a464f SHA512 bbd11ea7f22af02ad1ab4d59aecc0dc57d3b9d63e42c1a73beff94f645778858fe22d8d8234669c96ce901508b85d3b42b2f7647b81510bcdd9eaada937016c1
|
||||
EBUILD quickcheck-2.12.6.1.ebuild 852 BLAKE2B 72e79caf48becbb363dd296de50f4a0e863e3898bb1b931dee7ac0eaa4d85fc33cc6e76d728f9b09aea26e737c4168ee9c88dba8cbbf5fc7e627c73606ddbe55 SHA512 77c632b17601323aceb9c2a1ef73fa2c40390dae874733e3481cb0f348b1316e9758a6561e45552882fd7b7f8e8dfc7af7f0b666019fb5707c31cdd378667a87
|
||||
MISC metadata.xml 1659 BLAKE2B 8ad2d35df7f911f492bb750ae0909f09315be6413665dd41ace2f6eac25f78eab9bc8c78c2c8c79a510cba4b3b43d3140e2b3392631baf0a2d3dd0cb8d1bfee1 SHA512 649e0fd4dcb2a628002e86c6969477b3153f3d21ae3fb3ee931fefc1ef863df4e9baa33eaa3718a8ecc69b802724ed04d85abb93c6fc2b50a885084d8dea75f3
|
||||
33
dev-haskell/quickcheck/metadata.xml
Normal file
33
dev-haskell/quickcheck/metadata.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<?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>
|
||||
QuickCheck is a library for random testing of program properties.
|
||||
The programmer provides a specification of the program, in the form of
|
||||
properties which functions should satisfy, and QuickCheck then tests that the
|
||||
properties hold in a large number of randomly generated cases.
|
||||
Specifications are expressed in Haskell, using combinators provided by
|
||||
QuickCheck. QuickCheck provides combinators to define properties, observe the
|
||||
distribution of test data, and define test data generators.
|
||||
|
||||
Most of QuickCheck's functionality is exported by the main "Test.QuickCheck"
|
||||
module. The main exception is the monadic property testing library in
|
||||
"Test.QuickCheck.Monadic".
|
||||
|
||||
If you are new to QuickCheck, you can try looking at the following resources:
|
||||
|
||||
* The <http://www.cse.chalmers.se/~rjmh/QuickCheck/manual.html official QuickCheck manual>.
|
||||
It's a bit out-of-date in some details and doesn't cover newer QuickCheck features,
|
||||
but is still full of good advice.
|
||||
* <https://begriffs.com/posts/2017-01-14-design-use-quickcheck.html>,
|
||||
a detailed tutorial written by a user of QuickCheck.
|
||||
|
||||
The <http://hackage.haskell.org/package/quickcheck-instances quickcheck-instances>
|
||||
companion package provides instances for types in Haskell Platform packages
|
||||
at the cost of additional dependencies.
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
37
dev-haskell/quickcheck/quickcheck-2.12.6.1.ebuild
Normal file
37
dev-haskell/quickcheck/quickcheck-2.12.6.1.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
|
||||
|
||||
MY_PN="QuickCheck"
|
||||
MY_P="${MY_PN}-${PV}"
|
||||
|
||||
DESCRIPTION="Automatic testing of Haskell programs"
|
||||
HOMEPAGE="https://github.com/nick8325/quickcheck"
|
||||
SRC_URI="mirror://hackage/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="+templatehaskell"
|
||||
|
||||
RDEPEND=">=dev-haskell/erf-2:=[profile?]
|
||||
dev-haskell/random:=[profile?]
|
||||
>=dev-haskell/tf-random-0.4:=[profile?]
|
||||
>=dev-lang/ghc-7.8.2:=
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-haskell/cabal-1.18.1.3
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
src_configure() {
|
||||
haskell-cabal_src_configure \
|
||||
$(cabal_flag templatehaskell templatehaskell)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue