diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2017-05-28 13:54:05 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2017-05-28 18:52:59 +0100 |
commit | 331df81d2208b4026847f6c91582ff52960dd403 (patch) | |
tree | 13fc1ff1e5b04937b6964b79d0e5c7ba6f55e997 /dev-haskell/path | |
parent | dev-haskell/hpack: new package, a depend of dev-haskell/stack (diff) | |
download | gentoo-331df81d2208b4026847f6c91582ff52960dd403.tar.gz gentoo-331df81d2208b4026847f6c91582ff52960dd403.tar.bz2 gentoo-331df81d2208b4026847f6c91582ff52960dd403.zip |
dev-haskell/path: new package, a depend of dev-haskell/stack
Support for well-typed paths
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'dev-haskell/path')
-rw-r--r-- | dev-haskell/path/Manifest | 1 | ||||
-rw-r--r-- | dev-haskell/path/metadata.xml | 11 | ||||
-rw-r--r-- | dev-haskell/path/path-0.5.13.ebuild | 35 |
3 files changed, 47 insertions, 0 deletions
diff --git a/dev-haskell/path/Manifest b/dev-haskell/path/Manifest new file mode 100644 index 000000000000..9c5467fdb337 --- /dev/null +++ b/dev-haskell/path/Manifest @@ -0,0 +1 @@ +DIST path-0.5.13.tar.gz 16988 SHA256 1968303e1632499890c3c760ade68e91e848cb45de552090d86e6c75b93e7d51 SHA512 bf1e4750aa025382735f0b8329daa092501f1bbcb25ca3951be653cc3193d19be4339697e966db7dbff7ea2f78b251259c9f6f4cb36402a51221b077af388284 WHIRLPOOL 16c4d6076e052aef91e3b522c596defe729772f11a5da2e773e974c691d75669006075750725616bc54387639bac84758104a5e00917bbb79e0cf6e8df7ab904 diff --git a/dev-haskell/path/metadata.xml b/dev-haskell/path/metadata.xml new file mode 100644 index 000000000000..e42b1c1a4d04 --- /dev/null +++ b/dev-haskell/path/metadata.xml @@ -0,0 +1,11 @@ +<?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> + Path + </longdescription> +</pkgmetadata> diff --git a/dev-haskell/path/path-0.5.13.ebuild b/dev-haskell/path/path-0.5.13.ebuild new file mode 100644 index 000000000000..cafe98096f2d --- /dev/null +++ b/dev-haskell/path/path-0.5.13.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +# ebuild generated by hackport 0.5.2.9999 +#hackport: flags: -validity + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Support for well-typed paths" +HOMEPAGE="http://hackage.haskell.org/package/path" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-haskell/aeson:=[profile?] + >=dev-haskell/exceptions-0.4:=[profile?] <dev-haskell/exceptions-0.9:=[profile?] + >=dev-haskell/hashable-1.2:=[profile?] <dev-haskell/hashable-1.3:=[profile?] + >=dev-lang/ghc-7.8.2:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.18.1.3 + test? ( >=dev-haskell/hspec-2.0 <dev-haskell/hspec-3 + >=dev-haskell/mtl-2.0 <dev-haskell/mtl-3 ) +" + +src_configure() { + haskell-cabal_src_configure \ + --flag=-validity +} |