Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-haskell/th-lift-instances/
Date: Sun, 28 May 2017 17:54:24
Message-Id: 1495993993.5d581e3bfb3417b93910f919bb06f1bfdd51008f.slyfox@gentoo
1 commit: 5d581e3bfb3417b93910f919bb06f1bfdd51008f
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 28 13:15:15 2017 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sun May 28 17:53:13 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d581e3b
7
8 dev-haskell/th-lift-instances: new package, a depend of dev-haskell/stack
9
10 Lift instances for template-haskell for common data types
11
12 Package-Manager: Portage-2.3.6, Repoman-2.3.2
13
14 dev-haskell/th-lift-instances/Manifest | 1 +
15 dev-haskell/th-lift-instances/metadata.xml | 12 ++++++++++
16 .../th-lift-instances-0.1.11.ebuild | 28 ++++++++++++++++++++++
17 3 files changed, 41 insertions(+)
18
19 diff --git a/dev-haskell/th-lift-instances/Manifest b/dev-haskell/th-lift-instances/Manifest
20 new file mode 100644
21 index 00000000000..321a9a98565
22 --- /dev/null
23 +++ b/dev-haskell/th-lift-instances/Manifest
24 @@ -0,0 +1 @@
25 +DIST th-lift-instances-0.1.11.tar.gz 4477 SHA256 1da46afabdc73c86f279a0557d5a8f9af1296f9f6043264ba354b1c9cc65a6b8 SHA512 e4e443637c10cd21d9b6159f29ad8eb61a65bda2b625dff48ccbf1310c9abdbb1f48ff0c7e74974b78e0517db6af2889abb3c5cfeaed202c7b3efbe1c83dbc7a WHIRLPOOL 4d73b70d03c4c9a3cc888814fdcf05f1c4ea5b9479155d666a28afa5dcdfb5aec5aa4738d8dbf4274b8d163651d3a979670b26ad78473c133ffabb470765347c
26
27 diff --git a/dev-haskell/th-lift-instances/metadata.xml b/dev-haskell/th-lift-instances/metadata.xml
28 new file mode 100644
29 index 00000000000..0d764dc95ed
30 --- /dev/null
31 +++ b/dev-haskell/th-lift-instances/metadata.xml
32 @@ -0,0 +1,12 @@
33 +<?xml version="1.0" encoding="UTF-8"?>
34 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
35 +<pkgmetadata>
36 + <maintainer type="project">
37 + <email>haskell@g.o</email>
38 + <name>Gentoo Haskell</name>
39 + </maintainer>
40 + <longdescription>
41 + Most data types in haskell platform do not have Lift instances. This package provides orphan instances
42 + for containers, text, bytestring and vector.
43 + </longdescription>
44 +</pkgmetadata>
45
46 diff --git a/dev-haskell/th-lift-instances/th-lift-instances-0.1.11.ebuild b/dev-haskell/th-lift-instances/th-lift-instances-0.1.11.ebuild
47 new file mode 100644
48 index 00000000000..5213fdf2b69
49 --- /dev/null
50 +++ b/dev-haskell/th-lift-instances/th-lift-instances-0.1.11.ebuild
51 @@ -0,0 +1,28 @@
52 +# Copyright 1999-2017 Gentoo Foundation
53 +# Distributed under the terms of the GNU General Public License v2
54 +
55 +EAPI=6
56 +
57 +# ebuild generated by hackport 0.5.1.9999
58 +
59 +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
60 +inherit haskell-cabal
61 +
62 +DESCRIPTION="Lift instances for template-haskell for common data types"
63 +HOMEPAGE="https://github.com/bennofs/th-lift-instances/"
64 +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
65 +
66 +LICENSE="BSD"
67 +SLOT="0/${PV}"
68 +KEYWORDS="~amd64 ~x86"
69 +IUSE=""
70 +
71 +RDEPEND="dev-haskell/text:=[profile?]
72 + dev-haskell/th-lift:=[profile?]
73 + >=dev-haskell/vector-0.4:=[profile?]
74 + >=dev-lang/ghc-7.4.1:=
75 +"
76 +DEPEND="${RDEPEND}
77 + >=dev-haskell/cabal-1.10
78 + test? ( >=dev-haskell/quickcheck-2.6 )
79 +"