summaryrefslogtreecommitdiff
path: root/dev-haskell/testing-type-modifiers
diff options
context:
space:
mode:
Diffstat (limited to 'dev-haskell/testing-type-modifiers')
-rw-r--r--dev-haskell/testing-type-modifiers/Manifest3
-rw-r--r--dev-haskell/testing-type-modifiers/metadata.xml24
-rw-r--r--dev-haskell/testing-type-modifiers/testing-type-modifiers-0.1.0.1.ebuild24
3 files changed, 0 insertions, 51 deletions
diff --git a/dev-haskell/testing-type-modifiers/Manifest b/dev-haskell/testing-type-modifiers/Manifest
deleted file mode 100644
index 7b617900529c..000000000000
--- a/dev-haskell/testing-type-modifiers/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST testing-type-modifiers-0.1.0.1.tar.gz 2275 BLAKE2B 664760d4655f7c4ae4fea0b52f1687b81a754ec9d24aa940600279e6b029924b9505b29f24d7dfd07f6100e99b263727186ec8b65bd48b3d953be7554448c50b SHA512 21b76e469f2af199593a90579e9e2f0105444f508a3b244872936c95b28574cb8a782d74244249e4cf045d885b6878d8ae237ccd578c755f7314336137da56b8
-EBUILD testing-type-modifiers-0.1.0.1.ebuild 574 BLAKE2B 1d754ed7f47039737f2f74d66a8f55de99f69bbc7e31e6e63d84854823892ee7285f0829126a52be1355d060b552736edacfcb8c15a765c8c0073a14e4bb39cd SHA512 682fe7992bd18900fc4d7279e4fc8481e8a5d6b28ce457ac4ca516e196ca652cf6025be5eb7aaca4d51f8fb9515811a771d61eb132f8f2483edb3fd4dc3326b0
-MISC metadata.xml 933 BLAKE2B bd9802137794340fdea2690662b51345abe4c2e58f812be6c4e24a4cc2551949cfcce5bf39c9488eac753171d03aaeb175568ae0836cc101f717b3b26c37d52f SHA512 961ed40576eb4c9285eae4f588029c3cb7c6ea98699cb696af6ada95460e239d733ba6227b8cf8331cfd1fe14c1fdf519fe3f5e6e7af59ebc095940058f4a96f
diff --git a/dev-haskell/testing-type-modifiers/metadata.xml b/dev-haskell/testing-type-modifiers/metadata.xml
deleted file mode 100644
index 0201345ccba8..000000000000
--- a/dev-haskell/testing-type-modifiers/metadata.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>haskell@gentoo.org</email>
- <name>Gentoo Haskell</name>
- </maintainer>
- <longdescription>
- Property based testing libraries such as QuickCheck tend to include type modifiers. Most of them
- are used to quantify over subsets of a type. For example a property on non-empty lists:
-
- @ prop_tail_length (NonEmpty xs) = length (tail xs) == length xs - 1 @
-
- This library is intended to supply these modifiers to be used by testing libraries, in an effort to make
- properties more portable between testing frameworks.
-
- For every modifier it also provides an access function that converts to the underlying type, which
- enables point-free style properties as such:
-
- @
- prop_tail_length2 = (&gt; 0) . length . nonEmpty
- @
- </longdescription>
-</pkgmetadata>
diff --git a/dev-haskell/testing-type-modifiers/testing-type-modifiers-0.1.0.1.ebuild b/dev-haskell/testing-type-modifiers/testing-type-modifiers-0.1.0.1.ebuild
deleted file mode 100644
index dc256746b820..000000000000
--- a/dev-haskell/testing-type-modifiers/testing-type-modifiers-0.1.0.1.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# ebuild generated by hackport 0.6.1
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour"
-inherit haskell-cabal
-
-DESCRIPTION="Data type modifiers for property based testing"
-HOMEPAGE="https://hackage.haskell.org/package/testing-type-modifiers"
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-lang/ghc-7.4.1:=
-"
-DEPEND="${RDEPEND}
- >=dev-haskell/cabal-1.10
-"