Diff buildbot-3.9.0 with a buildbot-9999

/usr/portage/dev-util/buildbot/buildbot-9999.ebuild 2023-10-09 14:52:30.944368387 +0300
6 6
DISTUTILS_USE_PEP517=setuptools
7 7
PYTHON_REQ_USE="sqlite"
8 8
PYTHON_COMPAT=( python3_{10..11} )
9
inherit readme.gentoo-r1 systemd distutils-r1 pypi
9
EGIT_REPO_URI="https://github.com/buildbot/${PN}.git"
10
inherit readme.gentoo-r1 git-r3 systemd distutils-r1
10 11

  
11 12
DESCRIPTION="BuildBot build automation system"
12 13
HOMEPAGE="https://buildbot.net/
13 14
	https://github.com/buildbot/buildbot
14 15
	https://pypi.org/project/buildbot/"
16
S="${S}/master"
15 17

  
16 18
LICENSE="GPL-2"
17 19
SLOT="0"
18
KEYWORDS="~amd64 ~arm64 ~riscv ~amd64-linux ~x86-linux"
19

  
20 20
IUSE="crypt docker examples irc test"
21 21
RESTRICT="!test? ( test )"
22 22

  
23 23
RDEPEND="
24 24
	acct-user/buildbot
25
	~dev-util/buildbot-worker-${PV}[${PYTHON_USEDEP}]
26 25
	>=dev-python/alembic-1.6.0[${PYTHON_USEDEP}]
27 26
	>=dev-python/autobahn-0.16.0[${PYTHON_USEDEP}]
28 27
	>=dev-python/jinja-2.1[${PYTHON_USEDEP}]
29
	>=dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
28
	dev-python/markdown[${PYTHON_USEDEP}]
30 29
	dev-python/pyjwt[${PYTHON_USEDEP}]
30
	>=dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
31 31
	dev-python/pyyaml[${PYTHON_USEDEP}]
32 32
	>=dev-python/sqlalchemy-1.3.0[${PYTHON_USEDEP}]
33 33
	<dev-python/sqlalchemy-1.5.0[${PYTHON_USEDEP}]
34 34
	>=dev-python/twisted-18.7.0[${PYTHON_USEDEP}]
35 35
	>=dev-python/txaio-2.2.2[${PYTHON_USEDEP}]
36 36
	>=dev-python/zope-interface-4.1.1[${PYTHON_USEDEP}]
37
	dev-util/buildbot-worker[${PYTHON_USEDEP}]
37 38
	crypt? (
38 39
		>=dev-python/pyopenssl-16.0.0[${PYTHON_USEDEP}]
39 40
		dev-python/service-identity[${PYTHON_USEDEP}]
Thank you!