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