Diff cgdb-0.7.1 with a cgdb-0.8.0

/usr/portage/dev-util/cgdb/cgdb-0.8.0.ebuild 2023-10-09 14:52:30.952368387 +0300
1
# Copyright 1999-2020 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
if [[ ${PV} = *9999* ]]; then
7 7
	inherit git-r3
8
	EGIT_REPO_URI="
9
		https://github.com/cgdb/cgdb.git
10
		git@github.com:cgdb/cgdb.git"
8
	EGIT_REPO_URI="https://github.com/cgdb/cgdb.git"
11 9
else
12 10
	SRC_URI="https://github.com/cgdb/cgdb/archive/v${PV}.tar.gz -> ${P}.tar.gz"
13 11
	KEYWORDS="amd64 arm ppc ppc64 x86 ~amd64-linux ~x86-linux"
......
17 15

  
18 16
DESCRIPTION="A curses front-end for GDB, the GNU debugger"
19 17
HOMEPAGE="https://cgdb.github.io/"
18

  
20 19
LICENSE="GPL-2"
21 20
SLOT="0"
22 21
IUSE="test"
23
RESTRICT="!test? ( test )"
22
# Tests are broken, need additional research to figure out the cause
23
# Bug: https://bugs.gentoo.org/831899
24
RESTRICT="test"
24 25

  
25 26
DEPEND="
26 27
	sys-libs/ncurses:0=
......
39 40
DOCS=( AUTHORS ChangeLog FAQ INSTALL NEWS README.md )
40 41

  
41 42
PATCHES=(
42
	# Bugs: #730138, #678006, #630512
43
	"${FILESDIR}/${PN}-test.patch"
44
	# Bug: #724256
45
	"${FILESDIR}/${P}-respect-AR.patch"
43
	"${FILESDIR}"/${P}-ar.patch
46 44
)
47 45

  
48 46
src_prepare() {
49 47
	default
50
	cp configure.{init,ac} || die "cp failed"
51 48
	AT_M4DIR="config" eautoreconf
52 49
}
53 50

  
Thank you!