Diff zutty-0.13 with a zutty-0.14

/usr/portage/x11-terms/zutty/zutty-0.14.ebuild 2023-10-09 14:52:35.984368514 +0300
1 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
PYTHON_COMPAT=( python3_{9..11} )
7 7
PYTHON_REQ_USE="threads(+)"
......
9 9
inherit python-any-r1 waf-utils
10 10

  
11 11
DESCRIPTION="X terminal emulator rendering through OpenGL ES Compute Shaders"
12
HOMEPAGE="https://tomscii.sig7.se/zutty/ https://github.com/tomszilagyi/zutty"
13
SRC_URI="
14
	https://github.com/tomszilagyi/zutty/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
15
	https://github.com/tomscii/zutty/raw/8db89ee270f3130d8a2c5c1201d08e7d627278ce/waf -> ${PF}-waf
16
"
12
HOMEPAGE="https://tomscii.sig7.se/zutty/ https://github.com/tomscii/zutty"
13
SRC_URI="https://github.com/tomscii/zutty/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
17 14

  
18 15
LICENSE="GPL-3+"
19 16
SLOT="0"
......
43 40
)
44 41

  
45 42
DOCS=( doc/KEYS.org doc/USAGE.org )
46

  
47
src_unpack() {
48
	unpack ${P}.tar.gz
49
	cp "${DISTDIR}"/${PF}-waf "${S}"/waf || die
50
}
Thank you!