diff options
author | 2013-08-26 11:47:06 +0000 | |
---|---|---|
committer | 2013-08-26 11:47:06 +0000 | |
commit | 3f3537d41c183bd44f12fba3f618c53768763339 (patch) | |
tree | 73dadbd8942c3fd883e42904ed20effe899571a2 /dev-haskell/stringsearch | |
parent | Bump (diff) | |
download | gentoo-2-3f3537d41c183bd44f12fba3f618c53768763339.tar.gz gentoo-2-3f3537d41c183bd44f12fba3f618c53768763339.tar.bz2 gentoo-2-3f3537d41c183bd44f12fba3f618c53768763339.zip |
dev-haskell/stringsearch: initial layout
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0xEAD50D64D8D3571A!)
Diffstat (limited to 'dev-haskell/stringsearch')
-rw-r--r-- | dev-haskell/stringsearch/ChangeLog | 9 | ||||
-rw-r--r-- | dev-haskell/stringsearch/metadata.xml | 18 | ||||
-rw-r--r-- | dev-haskell/stringsearch/stringsearch-0.3.6.4.ebuild | 23 |
3 files changed, 50 insertions, 0 deletions
diff --git a/dev-haskell/stringsearch/ChangeLog b/dev-haskell/stringsearch/ChangeLog new file mode 100644 index 000000000000..8bb0c022c65f --- /dev/null +++ b/dev-haskell/stringsearch/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-haskell/stringsearch +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/stringsearch/ChangeLog,v 1.1 2013/08/26 11:47:06 qnikst Exp $ + +*stringsearch-0.3.6.4 (26 Aug 2013) + + 26 Aug 2013; Alexander Vershilov <qnikst@gentoo.org> +metadata.xml, + +stringsearch-0.3.6.4.ebuild: + dev-haskell/stringsearch: initial layout diff --git a/dev-haskell/stringsearch/metadata.xml b/dev-haskell/stringsearch/metadata.xml new file mode 100644 index 000000000000..bfff3ce3978d --- /dev/null +++ b/dev-haskell/stringsearch/metadata.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>haskell</herd> + <maintainer> + <email>haskell@gentoo.org</email> + </maintainer> + <longdescription> + This package provides several functions to quickly + search for substrings in strict or lazy ByteStrings. + It also provides functions for breaking or splitting + on substrings and replacing all occurrences of a + substring (the first in case of overlaps) with another. + GHC before 6.10 are no longer supported, other compilers + only if they support BangPatterns. If you need it to + work with other compilers, send a feature request. + </longdescription> +</pkgmetadata> diff --git a/dev-haskell/stringsearch/stringsearch-0.3.6.4.ebuild b/dev-haskell/stringsearch/stringsearch-0.3.6.4.ebuild new file mode 100644 index 000000000000..552adac50100 --- /dev/null +++ b/dev-haskell/stringsearch/stringsearch-0.3.6.4.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/stringsearch/stringsearch-0.3.6.4.ebuild,v 1.1 2013/08/26 11:47:06 qnikst Exp $ + +EAPI=4 + +# ebuild generated by hackport 0.2.18.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="Fast searching, splitting and replacing of ByteStrings" +HOMEPAGE="https://bitbucket.org/dafis/stringsearch" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-lang/ghc-6.8.2" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.6" |