Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cgdb/
Date: Sat, 05 Sep 2020 07:54:10
Message-Id: 1599292427.83e6cedff3bc886317d8f4705c8a50534f4118be.juippis@gentoo
1 commit: 83e6cedff3bc886317d8f4705c8a50534f4118be
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Sat Aug 15 13:46:41 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 5 07:53:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83e6cedf
7
8 dev-util/cgdb: remove broken ebuild
9
10 Dropping it due to multiple reported bugs
11
12 Package-Manager: Portage-2.3.99, Repoman-2.3.23
13 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
14 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
15
16 dev-util/cgdb/cgdb-0.7.0-r1.ebuild | 63 --------------------------------------
17 1 file changed, 63 deletions(-)
18
19 diff --git a/dev-util/cgdb/cgdb-0.7.0-r1.ebuild b/dev-util/cgdb/cgdb-0.7.0-r1.ebuild
20 deleted file mode 100644
21 index 5a8f52e6eda..00000000000
22 --- a/dev-util/cgdb/cgdb-0.7.0-r1.ebuild
23 +++ /dev/null
24 @@ -1,63 +0,0 @@
25 -# Copyright 1999-2019 Gentoo Authors
26 -# Distributed under the terms of the GNU General Public License v2
27 -
28 -EAPI=7
29 -
30 -if [[ ${PV} = *9999* ]]; then
31 - inherit git-r3
32 - EGIT_REPO_URI="
33 - https://github.com/cgdb/cgdb.git
34 - git@××××××.com:cgdb/cgdb.git"
35 -else
36 - SRC_URI="https://github.com/cgdb/cgdb/archive/v${PV}.tar.gz -> ${P}.tar.gz"
37 - KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
38 -fi
39 -inherit multilib-minimal
40 -
41 -DESCRIPTION="A curses front-end for GDB, the GNU debugger"
42 -HOMEPAGE="http://cgdb.github.io/"
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -IUSE="test"
46 -RESTRICT="!test? ( test )"
47 -
48 -DEPEND="
49 - sys-libs/ncurses:0=
50 - sys-libs/readline:0="
51 -
52 -BDEPEND="
53 - test? (
54 - dev-util/dejagnu
55 - app-misc/dtach
56 - )"
57 -
58 -RDEPEND="
59 - ${DEPEND}
60 - sys-devel/gdb"
61 -
62 -DOCS=( AUTHORS ChangeLog FAQ INSTALL NEWS README.md )
63 -
64 -src_prepare() {
65 - default
66 - ./autogen.sh || die
67 -}
68 -
69 -multilib_src_test() {
70 - # Tests need an interactive shell, #654986
71 -
72 - # real-time output of the log ;-)
73 - touch "${T}/dtach-test.log" || die
74 - tail -f "${T}/dtach-test.log" &
75 - local tail_pid=${!}
76 -
77 - nonfatal dtach -N "${T}/dtach.sock" \
78 - bash -c 'emake check &> "${T}"/dtach-test.log; echo ${?} > "${T}"/dtach-test.out'
79 -
80 - kill "${tail_pid}"
81 - [[ -f ${T}/dtach-test.out ]] || die "Unable to run tests"
82 - [[ $(<"${T}"/dtach-test.out) == 0 ]] || die "Tests failed"
83 -}
84 -
85 -multilib_src_configure() {
86 - ECONF_SOURCE="${S}" econf
87 -}