dev-haskell/patience: add 0.3

Signed-off-by: hololeap <hololeap@protonmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
hololeap 2023-10-02 23:09:05 -06:00 committed by Sam James
parent 19e1da81c8
commit 4cbe486bd5
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
3 changed files with 27 additions and 13 deletions

View File

@ -1 +1,2 @@
DIST patience-0.1.1.tar.gz 4610 BLAKE2B 6ce8e959dec8493990f66c9cb7b5dc8aaef6cb4edc3207f19156ba527fd993112a29a9d39241a39c2d9c4af600cebdfd31f02833779ce6cbf74e14ce6305273a SHA512 dac94580d9b82023841b5406509f8cd0e58148756e4259708c21b78b480fb4fb67b21a82c81e702275f49d90bcd1d2b46d20bb96267131d4ff57334f110e14f7
DIST patience-0.3.tar.gz 6247 BLAKE2B d461e0739a0f03f31bee30f5940e7f3803984643b0a90b65f968ce00b5487efed7b44176d9c603f1fe566966169fd18e188c0c7efb3812ffed6db3cb5569b4e5 SHA512 12bc0005d6ca47ac9954aee8950d00f5c6af133958015fe791d2e100295660bebe967e37ce859abb67ae38bedefa1bd1d81a7770842448485d2f7466652e7ea5

View File

@ -5,17 +5,8 @@
<email>haskell@gentoo.org</email>
<name>Gentoo Haskell</name>
</maintainer>
<longdescription>
This library implements the \"patience diff\" algorithm, as well as the patience
algorithm for the longest increasing subsequence problem.
Patience diff computes the difference between two lists, for example the
lines of two versions of a source file. It provides a good balance of
performance, nice output for humans, and implementation simplicity. For more
information, see &lt;http://alfedenzo.livejournal.com/170301.html&gt; and
&lt;http://bramcohen.livejournal.com/73318.html&gt;.
New in version 0.1.1: relaxed @containers@ dependency, so it should build on
GHC 6.10.
</longdescription>
<upstream>
<remote-id type="hackage">patience</remote-id>
<remote-id type="github">chessai/patience</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,22 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
# ebuild generated by hackport 0.8.4.0.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="Patience diff and longest increasing subsequence"
HOMEPAGE="https://github.com/chessai/patience"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
RDEPEND=">=dev-lang/ghc-8.10.6:=
"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-3.2.1.0
"