diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2017-02-15 23:19:53 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2017-02-16 10:21:52 +0000 |
commit | 7b901d74cb339f4b50379c9d601049255b67af1f (patch) | |
tree | e68539685167a5059a028640d9a438d63b9b2627 /dev-haskell/unexceptionalio | |
parent | dev-haskell/lens: bump up to 4.14 (diff) | |
download | gentoo-7b901d74cb339f4b50379c9d601049255b67af1f.tar.gz gentoo-7b901d74cb339f4b50379c9d601049255b67af1f.tar.bz2 gentoo-7b901d74cb339f4b50379c9d601049255b67af1f.zip |
dev-haskell/unexceptionalio: new package, a depend of dev-haskell/errors-2.1.3
IO without any non-error, synchronous exceptions
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-haskell/unexceptionalio')
-rw-r--r-- | dev-haskell/unexceptionalio/Manifest | 1 | ||||
-rw-r--r-- | dev-haskell/unexceptionalio/metadata.xml | 17 | ||||
-rw-r--r-- | dev-haskell/unexceptionalio/unexceptionalio-0.3.0.ebuild | 25 |
3 files changed, 43 insertions, 0 deletions
diff --git a/dev-haskell/unexceptionalio/Manifest b/dev-haskell/unexceptionalio/Manifest new file mode 100644 index 000000000000..4918e5d059d6 --- /dev/null +++ b/dev-haskell/unexceptionalio/Manifest @@ -0,0 +1 @@ +DIST unexceptionalio-0.3.0.tar.gz 2335 SHA256 927e2be6bb9ced73c1c17d79c981cadef4039d9ee45d2d3d6b4c133ff93ff0b8 SHA512 be6479cfdb39707473e07639b3a35c4e178571ec2b45a356e278c9bb20710775fe26c086239aa65c2d5f201730df223b5ca3e42ea61e1ffb9a285f384e62f4b6 WHIRLPOOL 2f63cd0e673243f0cbe13b756969032b513a288d89c06ea4bda00174d452971878717397da1de270078ee11cf351263be354a2ef3d80c625442524f687496f16 diff --git a/dev-haskell/unexceptionalio/metadata.xml b/dev-haskell/unexceptionalio/metadata.xml new file mode 100644 index 000000000000..86c987b35292 --- /dev/null +++ b/dev-haskell/unexceptionalio/metadata.xml @@ -0,0 +1,17 @@ +<?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> + When you've caught all the exceptions that can be handled safely, + this is what you're left with. + + It is intended that you use qualified imports with this library. + + > import UnexceptionalIO (UIO) + > import qualified UnexceptionalIO as UIO + </longdescription> +</pkgmetadata> diff --git a/dev-haskell/unexceptionalio/unexceptionalio-0.3.0.ebuild b/dev-haskell/unexceptionalio/unexceptionalio-0.3.0.ebuild new file mode 100644 index 000000000000..44f256f2616f --- /dev/null +++ b/dev-haskell/unexceptionalio/unexceptionalio-0.3.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# ebuild generated by hackport 0.4.7.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="IO without any non-error, synchronous exceptions" +HOMEPAGE="https://github.com/singpolyma/unexceptionalio" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 +" |