Diff tktable-2.10-r2 with a tktable-2.10.8

/usr/portage/dev-tcltk/tktable/tktable-2.10.8.ebuild 2025-07-29 16:22:14.232454920 +0300
1
# Copyright 1999-2024 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
MY_P="Tktable${PV}"
7

  
8 6
DESCRIPTION="full-featured 2D table widget"
9
HOMEPAGE="http://tktable.sourceforge.net/"
10
SRC_URI="https://downloads.sourceforge.net/tktable/${MY_P}.tar.gz"
7
HOMEPAGE="https://github.com/wjoye/tktable"
8
SRC_URI="https://github.com/wjoye/${PN}/archive/refs/tags/v${PV}.tar.gz
9
	-> ${P}.tar.gz"
11 10

  
12 11
LICENSE="BSD"
13
KEYWORDS="amd64 ppc x86"
14 12
SLOT="0"
13
KEYWORDS="amd64 ~arm64 ppc x86"
14
RESTRICT="test"
15 15

  
16 16
DEPEND=">=dev-lang/tk-8.0:="
17 17
RDEPEND="${DEPEND}"
18 18

  
19
S=${WORKDIR}/${MY_P}
20

  
21 19
HTML_DOCS=( doc/tkTable.html )
22 20
DOCS=( ChangeLog README.txt release.txt )
23 21

  
22
QA_CONFIG_IMPL_DECL_SKIP=(
23
	opendir64 rewinddir64 closedir64 stat64 # used on AIX
24
)
25

  
24 26
PATCHES=(
25
	"${FILESDIR}"/${P}-parallelMake.patch
27
	"${FILESDIR}"/${PN}-2.10-parallelMake.patch
26 28
	"${FILESDIR}"/${P}-clang6.patch
29
	"${FILESDIR}"/${P}-nobool.patch
27 30
)
28 31

  
29 32
src_prepare() {
Thank you!