Diff netevent-2.0_p20200217 with a netevent-2.2.1

/usr/portage/net-misc/netevent/netevent-2.2.1.ebuild 2023-10-09 14:52:34.664368481 +0300
1
# Copyright 1999-2021 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
inherit toolchain-funcs
7 7

  
8
COMMIT="c2066fa55db6f51090e00a240889d2f0cbd0ab4d"
9 8
DESCRIPTION="Tool to share Linux event devices with other machines"
10 9
HOMEPAGE="https://github.com/Blub/netevent"
11
SRC_URI="https://github.com/Blub/netevent/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
10
SRC_URI="https://github.com/Blub/netevent/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
12 11
LICENSE="GPL-2+"
13 12
SLOT="0"
14 13
KEYWORDS="~amd64 ~arm ~arm64"
......
18 17
	doc? ( dev-python/docutils )
19 18
"
20 19

  
21
S="${WORKDIR}/${PN}-${COMMIT}"
20
PATCHES=(
21
	"${FILESDIR}"/${PN}-2.2.1-gcc13.patch
22
)
22 23

  
23 24
src_configure() {
24 25
	tc-export CXX
Thank you!