diff options
Diffstat (limited to 'dev-haskell/unbounded-delays')
6 files changed, 116 insertions, 0 deletions
diff --git a/dev-haskell/unbounded-delays/Manifest b/dev-haskell/unbounded-delays/Manifest new file mode 100644 index 00000000000..e9ec30468cc --- /dev/null +++ b/dev-haskell/unbounded-delays/Manifest @@ -0,0 +1,4 @@ +DIST unbounded-delays-0.1.0.5.tar.gz 4162 SHA256 936085c467dfb520a64ecb51e17035edabe3c57da33e0e5e71dc8f4dfbe33a81 SHA512 fffa206e6f21fbb996fb878e6c307458f80cff1fbe35ec8d8c92d40550f8bab126ad16ced2f7ec93f950089b55bf8cbf335009f9330307b5c2f2bd32c20f5367 WHIRLPOOL 5144746ff52c34a81b32b4a7fb04d483d4b3981ce5ce64766424cf33228e4e451615b6808c83a48e212247ba2454f1f43b575219793af116047e0af0577f4c18 +DIST unbounded-delays-0.1.0.7.tar.gz 4170 SHA256 e9a049458f215364acfbe557a1f7cafe5fea030b1de9c343a16c3f08520465db SHA512 83b11c08abc736b8371077e86d7efb41600fadfe2947e865fef48badaae55216acc103e2e8e591e98c76afa7e7e321a2bc6c9b28cc7600ff4a1f00c305c2a457 WHIRLPOOL 32c307514cab4e6fcc035a46568ba3d3d6f42f2dd7c67c9f3e10569e392b378a390eafa87561bf6b29f16310bb8ea17c503961cacdf0cdbf86ff9db9d4e3b07d +DIST unbounded-delays-0.1.0.8.tar.gz 4212 SHA256 80ec0bdc09c78cf8a0ed02a59759a67e7b2fb5590ef175d233bfd929d0bbb4c9 SHA512 e43fa39612ffff30c872453ca96ca1ae90ee9748f0214191a89a04b0b78da88b923c75f43085d22f57b2df19aef98df6b0637862d02dee14d1be544f1dd034df WHIRLPOOL 171e4446a19f3422b0fefd193c4603167196b474141074350e3c3f3e36739ecbc2451761627a180b00a7f4b43fbab49be2f9eef3af4c8dbbfc803d25e2bcb279 +DIST unbounded-delays-0.1.0.9.tar.gz 4199 SHA256 4010ca5c4ca800039db259fc7a5180f10fc98f00580c7223ac7ad401ca4190b8 SHA512 808d45b3123cc68ab1021f44b90c8a8f803ff8fa933c8e93cc241ba10e8b960281d96403ccd85b5f9af382becc9a05817c0de12ec483fa3e813c2ca78266b592 WHIRLPOOL ee39f394916c35f7a5011d1fdfea2b3c2e716eae27a93fcc3eea9b2b2d66359a0e05ec169b07f5b0603c63307489a65c47adec318c6afb01a72f93e0f3ab480b diff --git a/dev-haskell/unbounded-delays/metadata.xml b/dev-haskell/unbounded-delays/metadata.xml new file mode 100644 index 00000000000..4ff46e8da1e --- /dev/null +++ b/dev-haskell/unbounded-delays/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>haskell</herd> + <longdescription> + The @threadDelay@ and @timeout@ functions from the @base@ library + use the bounded @Int@ type for specifying the delay or timeout + period. This packages provides alternatives which use the + unbounded @Integer@ type. + </longdescription> + <upstream> + <remote-id type="github">basvandijk/unbounded-delays</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-haskell/unbounded-delays/unbounded-delays-0.1.0.5-r1.ebuild b/dev-haskell/unbounded-delays/unbounded-delays-0.1.0.5-r1.ebuild new file mode 100644 index 00000000000..49285693976 --- /dev/null +++ b/dev-haskell/unbounded-delays/unbounded-delays-0.1.0.5-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# ebuild generated by hackport 0.3.2.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="Unbounded thread delays and timeouts" +HOMEPAGE="https://github.com/basvandijk/unbounded-delays" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-lang/ghc-6.10.4:=" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.6" diff --git a/dev-haskell/unbounded-delays/unbounded-delays-0.1.0.7.ebuild b/dev-haskell/unbounded-delays/unbounded-delays-0.1.0.7.ebuild new file mode 100644 index 00000000000..6e48779e68f --- /dev/null +++ b/dev-haskell/unbounded-delays/unbounded-delays-0.1.0.7.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# ebuild generated by hackport 0.3.6.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="Unbounded thread delays and timeouts" +HOMEPAGE="https://github.com/basvandijk/unbounded-delays" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-lang/ghc-6.10.4:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.6.0.3 +" diff --git a/dev-haskell/unbounded-delays/unbounded-delays-0.1.0.8.ebuild b/dev-haskell/unbounded-delays/unbounded-delays-0.1.0.8.ebuild new file mode 100644 index 00000000000..507a071bf89 --- /dev/null +++ b/dev-haskell/unbounded-delays/unbounded-delays-0.1.0.8.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# ebuild generated by hackport 0.4.3.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="Unbounded thread delays and timeouts" +HOMEPAGE="https://github.com/basvandijk/unbounded-delays" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.6 +" diff --git a/dev-haskell/unbounded-delays/unbounded-delays-0.1.0.9.ebuild b/dev-haskell/unbounded-delays/unbounded-delays-0.1.0.9.ebuild new file mode 100644 index 00000000000..de520be0fa5 --- /dev/null +++ b/dev-haskell/unbounded-delays/unbounded-delays-0.1.0.9.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# ebuild generated by hackport 0.4.4.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="Unbounded thread delays and timeouts" +HOMEPAGE="https://github.com/basvandijk/unbounded-delays" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="amd64 x86" +IUSE="" + +RDEPEND=">=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.6 +" |