summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2015-08-08 13:49:04 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2015-08-08 17:38:18 -0700
commit56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch)
tree3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-haskell/equivalence
downloadgentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip
proj/gentoo: Initial commit
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-haskell/equivalence')
-rw-r--r--dev-haskell/equivalence/Manifest3
-rw-r--r--dev-haskell/equivalence/equivalence-0.2.3.ebuild32
-rw-r--r--dev-haskell/equivalence/equivalence-0.2.5.ebuild30
-rw-r--r--dev-haskell/equivalence/equivalence-0.3.1.ebuild32
-rw-r--r--dev-haskell/equivalence/metadata.xml16
5 files changed, 113 insertions, 0 deletions
diff --git a/dev-haskell/equivalence/Manifest b/dev-haskell/equivalence/Manifest
new file mode 100644
index 000000000000..0cfcea78f5cb
--- /dev/null
+++ b/dev-haskell/equivalence/Manifest
@@ -0,0 +1,3 @@
+DIST equivalence-0.2.3.tar.gz 6665 SHA256 831ce6933e0f3e1803ca29697499c44bfb0f7dfad37c9fd57509590dbc41a935 SHA512 379e3a3501463f41de7fa587629ed1e868511bab3a7eb47ac9cb5539e7ab3a21235a27bbeecc5bdd14701ea5767b121a6af34c3b5216f2f0abfb74342e0f6104 WHIRLPOOL c1ee2574d08610594c79558352045c0c9164378ee598091a38bebb53ce7b360579afd95867b386b771cca5c35a3011094510cd549bca4f41f9d9899bf3687b72
+DIST equivalence-0.2.5.tar.gz 8013 SHA256 03969a9a89bc90a4d282b33f37442060425229517c4c67fd2dd29e1cd04e9904 SHA512 6417a8698826458b172fc5556b472f5ae06b29a8d2b54e7ea10d6665eb7a1691dc9d92d56a1b93b43d4ef3f71188b8878f8a43a123c9b6ad3641e4848a20d676 WHIRLPOOL f43a057139e39ff9a915fb91316eb4e13dda33680f55258cf126efce234aca0de722d070b353a0f9a1b570e958638e81a8bbc4ccafe5c181aa77fe7717b8fb01
+DIST equivalence-0.3.1.tar.gz 8350 SHA256 7a0539546e4fc1a00fb190109be45b0cb4af7047d8c2abaf65b8e401e828207e SHA512 5d6f6adc2d31c48520c2120503b4a21e18044dbe75f3dddd5af188213887c714370b09c776c44c2eaabf41226719f6eb6f6bbc04eab558879d61157a67b2549e WHIRLPOOL d30f75a3212d05ecada5f71ab9a9f2510e53948cafb6c5f020aec0ef5b516ee9f7bc4131f4549567f6aa12addefc756f77cceb25f132fa9ce14b71137d29d12e
diff --git a/dev-haskell/equivalence/equivalence-0.2.3.ebuild b/dev-haskell/equivalence/equivalence-0.2.3.ebuild
new file mode 100644
index 000000000000..249b4d3302d1
--- /dev/null
+++ b/dev-haskell/equivalence/equivalence-0.2.3.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.9999
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="Maintaining an equivalence relation implemented as union-find using STT"
+HOMEPAGE="https://bitbucket.org/paba/equivalence/"
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RESTRICT=test # missing files
+
+RDEPEND="dev-haskell/mtl:=[profile?]
+ dev-haskell/stmonadtrans:=[profile?]
+ >=dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+ >=dev-haskell/cabal-1.9.2
+ test? ( >=dev-haskell/quickcheck-2
+ dev-haskell/test-framework
+ dev-haskell/test-framework-quickcheck2 )
+"
diff --git a/dev-haskell/equivalence/equivalence-0.2.5.ebuild b/dev-haskell/equivalence/equivalence-0.2.5.ebuild
new file mode 100644
index 000000000000..384dc78b76f4
--- /dev/null
+++ b/dev-haskell/equivalence/equivalence-0.2.5.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.3.9999
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="Maintaining an equivalence relation implemented as union-find using STT"
+HOMEPAGE="https://bitbucket.org/paba/equivalence/"
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-haskell/mtl:=[profile?]
+ dev-haskell/stmonadtrans:=[profile?]
+ >=dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+ >=dev-haskell/cabal-1.9.2
+ test? ( >=dev-haskell/quickcheck-2
+ dev-haskell/test-framework
+ dev-haskell/test-framework-quickcheck2 )
+"
diff --git a/dev-haskell/equivalence/equivalence-0.3.1.ebuild b/dev-haskell/equivalence/equivalence-0.3.1.ebuild
new file mode 100644
index 000000000000..3d2f8c29d383
--- /dev/null
+++ b/dev-haskell/equivalence/equivalence-0.3.1.ebuild
@@ -0,0 +1,32 @@
+# 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.5.9999
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="Maintaining an equivalence relation implemented as union-find using STT"
+HOMEPAGE="https://bitbucket.org/paba/equivalence/"
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-haskell/mtl-2.0.1:=[profile?]
+ dev-haskell/stmonadtrans:=[profile?]
+ >=dev-haskell/transformers-0.2:=[profile?]
+ >=dev-haskell/transformers-compat-0.3:=[profile?]
+ >=dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+ >=dev-haskell/cabal-1.9.2
+ test? ( >=dev-haskell/quickcheck-2
+ dev-haskell/test-framework
+ dev-haskell/test-framework-quickcheck2 )
+"
diff --git a/dev-haskell/equivalence/metadata.xml b/dev-haskell/equivalence/metadata.xml
new file mode 100644
index 000000000000..a9b99ce8ce81
--- /dev/null
+++ b/dev-haskell/equivalence/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>haskell</herd>
+ <longdescription>
+ This is an implementation of Tarjan's Union-Find algorithm (Robert
+ E. Tarjan. "Efficiency of a Good But Not Linear Set Union
+ Algorithm", JACM 22(2), 1975) in order to maintain an equivalence
+ relation.
+ This implementation is a port of the /union-find/ package using the
+ ST monad transformer (instead of the IO monad).
+ </longdescription>
+ <upstream>
+ <remote-id type="bitbucket">paba/equivalence</remote-id>
+ </upstream>
+</pkgmetadata>