Diff github-backup-utils-3.5.0 with a github-backup-utils-3.8.0

/usr/portage/app-admin/github-backup-utils/github-backup-utils-3.8.0.ebuild 2023-10-09 14:52:28.148368316 +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
# Python3 support: https://github.com/github/backup-utils/pull/627
7
PYTHON_COMPAT=( python3_{9..10} )
6
PYTHON_COMPAT=( python3_{10..11} )
8 7
inherit python-any-r1
9 8

  
10 9
DESCRIPTION="Backup and recovery utilities for GitHub Enterprise"
11 10
HOMEPAGE="https://github.com/github/backup-utils"
12 11
SRC_URI="https://github.com/github/backup-utils/archive/v${PV}.tar.gz -> ${P}.tar.gz"
12
S=${WORKDIR}/${PN/#github-/}-${PV}
13 13

  
14 14
LICENSE="MIT"
15 15
SLOT="0"
......
31 31
	${PYTHON_DEPS}
32 32
)"
33 33

  
34
MY_PN="${PN/#github-/}"
35
S="${WORKDIR}/${MY_PN}-${PV}"
36

  
37 34
pkg_setup() {
38 35
	use test && python-any-r1_pkg_setup
39 36
}
Thank you!