Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/bashdb/
Date: Wed, 27 Apr 2016 09:03:56
Message-Id: 1461746740.5e1f0a1a9e9925d7bb2dce0bb4645d9593676b92.monsieurp@gentoo
1 commit: 5e1f0a1a9e9925d7bb2dce0bb4645d9593676b92
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 27 07:23:39 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 08:45:40 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e1f0a1a
7
8 app-shells/bashdb: EAPI 6 bump.
9
10 Package-Manager: portage-2.2.26
11
12 app-shells/bashdb/bashdb-4.3.0.91-r2.ebuild | 28 ++++++++++++++++++++++++++++
13 1 file changed, 28 insertions(+)
14
15 diff --git a/app-shells/bashdb/bashdb-4.3.0.91-r2.ebuild b/app-shells/bashdb/bashdb-4.3.0.91-r2.ebuild
16 new file mode 100644
17 index 0000000..7e664c6
18 --- /dev/null
19 +++ b/app-shells/bashdb/bashdb-4.3.0.91-r2.ebuild
20 @@ -0,0 +1,28 @@
21 +# Copyright 1999-2015 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +MY_P="${PN}-${PV:0:3}-${PV:4}"
28 +DESCRIPTION="bash source code debugging"
29 +HOMEPAGE="http://bashdb.sourceforge.net/"
30 +SRC_URI="mirror://sourceforge/bashdb/${MY_P}.tar.bz2"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
35 +IUSE=""
36 +
37 +DEPEND="!>=app-shells/bash-${PV:0:1}.$((${PV:2:1}+1))"
38 +
39 +S="${WORKDIR}/${MY_P}"
40 +
41 +# Unfortunately, not all tests pass.
42 +RESTRICT="test"
43 +
44 +src_prepare() {
45 + default
46 + # We don't install this, so don't bother building it. #468044
47 + sed -i 's:texi2html:true:' doc/Makefile.in || die
48 +}