Diff certbot-dns-nsone-1.18.0 with a certbot-dns-nsone-1.18.0-r1

/usr/portage/app-crypt/certbot-dns-nsone/certbot-dns-nsone-1.18.0-r1.ebuild 2023-10-09 14:52:28.228368318 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
PYTHON_COMPAT=( python3_10 )
7

  
8
DISTUTILS_USE_SETUPTOOLS=rdepend
9

  
10
SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> ${P}.tar.gz"
11
KEYWORDS="~amd64 ~x86"
12
S=${WORKDIR}/certbot-${PV}/${PN}
6
DISTUTILS_USE_PEP517=setuptools
7
PYTHON_COMPAT=( python3_{10..11} )
13 8

  
14 9
inherit distutils-r1
15 10

  
11
MY_P=certbot-${PV}
16 12
DESCRIPTION="NS1 DNS Authenticator plugin for Certbot (Let's Encrypt Client)"
17
HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
13
HOMEPAGE="
14
	https://github.com/certbot/certbot/
15
	https://letsencrypt.org/
16
"
17
SRC_URI="
18
	https://github.com/certbot/certbot/archive/v${PV}.tar.gz
19
		-> ${MY_P}.gh.tar.gz
20
"
21
S=${WORKDIR}/${MY_P}/${PN}
18 22

  
19 23
LICENSE="Apache-2.0"
20 24
SLOT="0"
25
KEYWORDS="~amd64 ~x86"
21 26

  
22 27
RDEPEND="
23 28
	>=app-crypt/certbot-${PV}[${PYTHON_USEDEP}]
Thank you!