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/neat-interpolation/
Date: Sun, 28 May 2017 17:54:22
Message-Id: 1495994003.e2150056f699725693cb326f0935e897b72ecf68.slyfox@gentoo
1 commit: e2150056f699725693cb326f0935e897b72ecf68
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 28 16:22:18 2017 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sun May 28 17:53:23 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2150056
7
8 dev-haskell/neat-interpolation: new package, a depend of dev-haskell/stack
9
10 A quasiquoter for neat and simple multiline text interpolation
11
12 Package-Manager: Portage-2.3.6, Repoman-2.3.2
13
14 dev-haskell/neat-interpolation/Manifest | 1 +
15 dev-haskell/neat-interpolation/metadata.xml | 14 +++++++++++
16 .../neat-interpolation-0.3.2.1.ebuild | 28 ++++++++++++++++++++++
17 3 files changed, 43 insertions(+)
18
19 diff --git a/dev-haskell/neat-interpolation/Manifest b/dev-haskell/neat-interpolation/Manifest
20 new file mode 100644
21 index 00000000000..dbf183bbc22
22 --- /dev/null
23 +++ b/dev-haskell/neat-interpolation/Manifest
24 @@ -0,0 +1 @@
25 +DIST neat-interpolation-0.3.2.1.tar.gz 4339 SHA256 5530e43ca4de09b972d173e522f9dc96265f3afe0df695a25f0141be816fa014 SHA512 aaefc95b85e8546bd20848b3d4da39437b48e5e3c54829f9ae06f8f4021752812a643a638bcc10213db168d3217bd8913b2feec81d90199a14eea8c35fe62245 WHIRLPOOL 972819cc726f6d2db5a17d83d8ebc2130872105888773cb69251df5c8996a9f88800eda85c931d7ec3c4b281cecd9a40af46d95b6664de95c7baaa3632d5618d
26
27 diff --git a/dev-haskell/neat-interpolation/metadata.xml b/dev-haskell/neat-interpolation/metadata.xml
28 new file mode 100644
29 index 00000000000..d8ffb504371
30 --- /dev/null
31 +++ b/dev-haskell/neat-interpolation/metadata.xml
32 @@ -0,0 +1,14 @@
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 + A quasiquoter for producing Text values with support for
42 + a simple interpolation of input values.
43 + It removes the excessive indentation from the input and
44 + accurately manages the indentation of all lines of the interpolated variables.
45 + </longdescription>
46 +</pkgmetadata>
47
48 diff --git a/dev-haskell/neat-interpolation/neat-interpolation-0.3.2.1.ebuild b/dev-haskell/neat-interpolation/neat-interpolation-0.3.2.1.ebuild
49 new file mode 100644
50 index 00000000000..e33689966ee
51 --- /dev/null
52 +++ b/dev-haskell/neat-interpolation/neat-interpolation-0.3.2.1.ebuild
53 @@ -0,0 +1,28 @@
54 +# Copyright 1999-2017 Gentoo Foundation
55 +# Distributed under the terms of the GNU General Public License v2
56 +
57 +EAPI=6
58 +
59 +# ebuild generated by hackport 0.5.1.9999
60 +
61 +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
62 +inherit haskell-cabal
63 +
64 +DESCRIPTION="A quasiquoter for neat and simple multiline text interpolation"
65 +HOMEPAGE="https://github.com/nikita-volkov/neat-interpolation"
66 +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
67 +
68 +LICENSE="MIT"
69 +SLOT="0/${PV}"
70 +KEYWORDS="~amd64 ~x86"
71 +IUSE=""
72 +
73 +RDEPEND="<dev-haskell/base-prelude-2:=[profile?]
74 + >=dev-haskell/parsec-3:=[profile?] <dev-haskell/parsec-4:=[profile?]
75 + >=dev-haskell/text-1:=[profile?] <dev-haskell/text-2:=[profile?]
76 + >=dev-lang/ghc-7.6.1:=
77 +"
78 +DEPEND="${RDEPEND}
79 + >=dev-haskell/cabal-1.16.0
80 + test? ( >=dev-haskell/htf-0.11 <dev-haskell/htf-0.14 )
81 +"