Diff evtest-1.34 with a evtest-1.35

/usr/portage/app-misc/evtest/evtest-1.35.ebuild 2023-10-09 14:52:28.796368333 +0300
1
# Copyright 1999-2022 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 autotools
7 7

  
8 8
DESCRIPTION="test program for capturing input device events"
9 9
HOMEPAGE="https://cgit.freedesktop.org/evtest/"
10
SRC_URI="https://cgit.freedesktop.org/evtest/snapshot/${PN}-${P}.tar.gz -> ${P}.tar.gz"
10
#SRC_URI="https://cgit.freedesktop.org/evtest/snapshot/${PN}-${P}.tar.gz -> ${P}.tar.gz"
11
SRC_URI="https://gitlab.freedesktop.org/libevdev/evtest/-/archive/${P}/${PN}-${P}.tar.bz2"
12
S="${WORKDIR}/${PN}-${P}"
11 13

  
12 14
LICENSE="GPL-2"
13 15
SLOT="0"
14 16
KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
15 17

  
16 18
BDEPEND="app-text/asciidoc
17
	app-text/xmlto
18
	virtual/pkgconfig"
19

  
20
S="${WORKDIR}/${PN}-${P}"
21

  
22
PATCHES=(
23
	"${FILESDIR}"/${P}-musl-include.patch
24
)
19
	app-text/xmlto"
25 20

  
26 21
src_prepare() {
27 22
	default
23

  
28 24
	eautoreconf
29 25
}
Thank you!