Diff terminaltables-3.1.10-r1 with a terminaltables-9999

/usr/portage/dev-python/terminaltables/terminaltables-9999.ebuild 2023-10-09 14:52:30.388368373 +0300
6 6
DISTUTILS_USE_PEP517=poetry
7 7
PYTHON_COMPAT=( python3_{9..11} )
8 8

  
9
inherit distutils-r1
9
inherit distutils-r1 git-r3
10 10

  
11 11
DESCRIPTION="Generate simple tables in terminals from a nested list of strings"
12 12
HOMEPAGE="https://robpol86.github.io/terminaltables/"
13
SRC_URI="
14
	https://github.com/matthewdeanmartin/terminaltables/archive/v${PV}.tar.gz
15
		-> ${P}.tar.gz"
13
EGIT_REPO_URI="https://github.com/matthewdeanmartin/${PN}.git"
16 14

  
17 15
LICENSE="MIT"
18 16
SLOT="0"
19
KEYWORDS="amd64 x86"
17
KEYWORDS=""
20 18

  
21 19
BDEPEND="
22 20
	test? (
......
27 25

  
28 26
distutils_enable_tests pytest
29 27

  
30
PATCHES=(
31
	"${FILESDIR}"/terminaltables-3.1.0-stdout.patch
32
)
33

  
34 28
src_prepare() {
35 29
	sed -e '/requires/s:poetry:&-core:' \
36 30
		-e '/backend/s:poetry:&.core:' \
Thank you!