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/bio/
Date: Sun, 03 Apr 2016 13:39:18
Message-Id: 1459690594.dc442cf087be6f1a29c1638be0acf9ef9053c1c5.slyfox@gentoo
1 commit: dc442cf087be6f1a29c1638be0acf9ef9053c1c5
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 3 12:55:01 2016 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 3 13:36:34 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc442cf0
7
8 dev-haskell/bio: drop old
9
10 Package-Manager: portage-2.2.28
11
12 dev-haskell/bio/bio-0.5.3.ebuild | 61 ----------------------------------------
13 1 file changed, 61 deletions(-)
14
15 diff --git a/dev-haskell/bio/bio-0.5.3.ebuild b/dev-haskell/bio/bio-0.5.3.ebuild
16 deleted file mode 100644
17 index 803e8b6..0000000
18 --- a/dev-haskell/bio/bio-0.5.3.ebuild
19 +++ /dev/null
20 @@ -1,61 +0,0 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -
27 -# ebuild generated by hackport 0.3.2.9999
28 -
29 -CABAL_FEATURES="bin lib profile haddock hoogle hscolour"
30 -inherit haskell-cabal
31 -
32 -DESCRIPTION="A bioinformatics library"
33 -HOMEPAGE="http://biohaskell.org/Libraries/Bio"
34 -SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
35 -
36 -LICENSE="LGPL-2.1"
37 -SLOT="0/${PV}"
38 -KEYWORDS="~amd64 ~x86"
39 -IUSE="+examples test"
40 -
41 -RDEPEND=">=dev-haskell/binary-0.4:=[profile?] <dev-haskell/binary-0.8:=[profile?]
42 - dev-haskell/mtl:=[profile?]
43 - dev-haskell/parallel:=[profile?]
44 - dev-haskell/parsec:=[profile?]
45 - >=dev-haskell/quickcheck-2:=[profile?]
46 - dev-haskell/random:=[profile?]
47 - >=dev-haskell/tagsoup-0.8:=[profile?]
48 - >=dev-lang/ghc-6.10.4:="
49 -DEPEND="${RDEPEND}
50 - >=dev-haskell/cabal-1.6"
51 -
52 -src_prepare() {
53 - cabal_chdeps \
54 - 'binary >=0.4 && <0.5' 'binary >=0.4 && <0.8'
55 -}
56 -
57 -src_configure() {
58 - haskell-cabal_src_configure \
59 - $(cabal_flag examples examples) \
60 - $(cabal_flag test test)
61 -}
62 -
63 -src_test() {
64 - dist/build/qc/qc || die
65 -}
66 -
67 -src_install() {
68 - haskell-cabal_src_install
69 -
70 - use test && rm "${ED}"/usr/bin/qc
71 - # many examples collide with dev-haskell/flower
72 - if use examples ; then
73 - pushd "${ED}"/usr/bin
74 - local example
75 - for example in *
76 - do
77 - mv "${example}" "${PN}-example-${example}"
78 - done
79 - popd
80 - fi
81 -}