dev-haskell/raw-strings-qq: new package, a depend of yaml-0.8.17.1
authorSergei Trofimovich <slyfox@gentoo.org>
Tue, 10 May 2016 21:41:17 +0000 (22:41 +0100)
committerSergei Trofimovich <slyfox@gentoo.org>
Wed, 11 May 2016 08:48:03 +0000 (09:48 +0100)
Package-Manager: portage-2.2.28

dev-haskell/raw-strings-qq/Manifest [new file with mode: 0644]
dev-haskell/raw-strings-qq/metadata.xml [new file with mode: 0644]
dev-haskell/raw-strings-qq/raw-strings-qq-1.1.ebuild [new file with mode: 0644]

diff --git a/dev-haskell/raw-strings-qq/Manifest b/dev-haskell/raw-strings-qq/Manifest
new file mode 100644 (file)
index 0000000..c00a6d7
--- /dev/null
@@ -0,0 +1 @@
+DIST raw-strings-qq-1.1.tar.gz 3505 SHA256 2e011ec26aeaa53ab43c30b7d9b5b0f661f24b4ebef8884c12c571353c0fbed3 SHA512 9daf7acad6619c9d077b49591003f2c42baca060b20202f597c7468da765a59add2b78b90d634bbf785e299fb85d39dba242d070e15ec208391059e64850acbc WHIRLPOOL 2a3711bfba712df9ebae4b4ff3c9c5954c4aa3559f99306ff13c35ae944ed9f01c8ccd22f51448c8a92d8f4bb504e33171bf6a073ab78f6974e10fcbd9531821
diff --git a/dev-haskell/raw-strings-qq/metadata.xml b/dev-haskell/raw-strings-qq/metadata.xml
new file mode 100644 (file)
index 0000000..84bdb84
--- /dev/null
@@ -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>
+               A quasiquoter for raw string literals - that is, string literals that don't
+               recognise the standard escape sequences (such as @\'\\n\'@). Basically, they
+               make your code more readable by freeing you from the responsibility to
+               escape backslashes. They are useful when working with regular expressions,
+               DOS/Windows paths and markup languages (such as XML).
+               
+               See @examples/RawRegex.hs@ for a usage example.
+       </longdescription>
+</pkgmetadata>
diff --git a/dev-haskell/raw-strings-qq/raw-strings-qq-1.1.ebuild b/dev-haskell/raw-strings-qq/raw-strings-qq-1.1.ebuild
new file mode 100644 (file)
index 0000000..eaeb324
--- /dev/null
@@ -0,0 +1,26 @@
+# 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.6.9999
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="Raw string literals for Haskell"
+HOMEPAGE="https://github.com/23Skidoo/raw-strings-qq"
+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.8
+       test? ( dev-haskell/hunit )
+"