Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/bashdb/
Date: Fri, 01 May 2020 13:23:06
Message-Id: 1588339369.7ad886520ca5ffee9e1393443cb7e8af0eb1720a.whissi@gentoo
1 commit: 7ad886520ca5ffee9e1393443cb7e8af0eb1720a
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 1 13:04:38 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Fri May 1 13:22:49 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ad88652
7
8 app-shells/bashdb: bump to v5.0.1.1.2
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 app-shells/bashdb/Manifest | 1 +
14 app-shells/bashdb/bashdb-5.0.1.1.2.ebuild | 39 +++++++++++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/app-shells/bashdb/Manifest b/app-shells/bashdb/Manifest
18 index ac0b8fd12c8..1c129dc6a1f 100644
19 --- a/app-shells/bashdb/Manifest
20 +++ b/app-shells/bashdb/Manifest
21 @@ -1,3 +1,4 @@
22 DIST bashdb-4.4-1.0.0-missing-test-files.tar.xz 996 BLAKE2B 7ea67884cceda11559cf49355645cad2cfd485537643ad2fa05398518f498163596b6f591756bedd0e7b7e013fed3c6a031e245d15cd0cf316d42ef4f5c8b3e6 SHA512 e19d41569c2001ce026e4c5f80cc21c81651ff9980be059236c45e215162769ceda266eb46aa4199000e377c0bb53dec98fa1b7c5290459c412f21329b3589a5
23 DIST bashdb-4.4-1.0.1.tar.bz2 701807 BLAKE2B 8d41a39831ce9466f5fcd205cf84e337ca7d876fddaea8b8c013fe4ac93a143c9f5b5e46bcc8edbb50fe4c77e87bd282ff9a244e41df007897d3b37f732bb0a3 SHA512 306fc5a49490fe04828cd6c64b23302e0f48ba8558780c93d45d9c615206e91dac5d8ff3d0660e50bc3204873131d1296492bccc23119d2f58c990bd3603221c
24 DIST bashdb-5.0-1.1.0.tar.bz2 693459 BLAKE2B f8697c0f4a10b57215b0923cfb49c76536cc75de5273e6ed1709aaa56fcced8c5b3f281f15f01b8bd72363ad7c47acbd6d06a3bb3ba58b9a2daae017c101ae46 SHA512 0da69ea426c57d2f2b3f208356ee893b3fa8b96c68bf321446b5747b6bfb2eac502be6a01e3922fa873684a3953c6a3ded4a30f5682e4030680d698ee5062143
25 +DIST bashdb-5.0-1.1.2.tar.bz2 574210 BLAKE2B 6de1cac2cb66022f60ab7f0385361762fedee56c26729f22acb070e24a7bcf317700fb5db314c1592b8f9ccf9f7d07bfc80afd5fc88a753d0ad2954325a7f078 SHA512 32ff6d315e8cf9d59485802d5284fde53fa2d9f40ec238428a479f8a1ed1359e9bea2946b192b78534e7ac835491d5d64d73f536c8dfa93583b4c6d55d4d4545
26
27 diff --git a/app-shells/bashdb/bashdb-5.0.1.1.2.ebuild b/app-shells/bashdb/bashdb-5.0.1.1.2.ebuild
28 new file mode 100644
29 index 00000000000..1716aec06d0
30 --- /dev/null
31 +++ b/app-shells/bashdb/bashdb-5.0.1.1.2.ebuild
32 @@ -0,0 +1,39 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +MY_P="${PN}-${PV:0:3}-${PV:4}"
39 +DESCRIPTION="bash source code debugging"
40 +HOMEPAGE="http://bashdb.sourceforge.net/"
41 +SRC_URI="mirror://sourceforge/bashdb/${MY_P}.tar.bz2
42 + test? ( https://dev.gentoo.org/~whissi/dist/bashdb/bashdb-4.4-1.0.0-missing-test-files.tar.xz )"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
47 +IUSE="test"
48 +RESTRICT="!test? ( test )"
49 +
50 +DEPEND="!>=app-shells/bash-${PV:0:1}.$((${PV:2:1}+1))"
51 +
52 +S="${WORKDIR}/${MY_P}"
53 +
54 +src_prepare() {
55 + if use test ; then
56 + einfo "Copying missing files ..."
57 + # https://sourceforge.net/p/bashdb/bugs/52/
58 + cp -vafn "${WORKDIR}"/missing-files/* "${S}"/test || die
59 + fi
60 +
61 + default
62 +
63 + # We don't install this, so don't bother building it. #468044
64 + sed -i 's:texi2html:true:' doc/Makefile.in || die
65 +}
66 +
67 +src_configure() {
68 + # This path matches the bash sources. If we ever change bash,
69 + # we'll probably have to change this to match. #591994
70 + econf --with-dbg-main='$(PKGDATADIR)/bashdb-main.inc'
71 +}