2021-09-24 04:20:43 +02:00
|
|
|
# Copyright 1999-2021 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=8
|
|
|
|
|
|
|
|
PYTHON_COMPAT=( pypy3 python3_{8..10} )
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
MY_PN="keyrings.alt"
|
|
|
|
MY_P="${MY_PN}-${PV}"
|
|
|
|
|
|
|
|
DESCRIPTION="Alternate keyring backend implementations used with dev-python/keyring"
|
|
|
|
HOMEPAGE="https://github.com/jaraco/keyrings.alt/"
|
|
|
|
SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
|
|
|
|
|
|
|
|
SLOT="0"
|
|
|
|
LICENSE="PSF-2"
|
2021-09-27 13:08:01 +02:00
|
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~x86"
|
2021-09-24 04:20:43 +02:00
|
|
|
|
2021-09-27 13:08:01 +02:00
|
|
|
DEPEND=""
|
|
|
|
# there are some deps in setup.cfg for extras testing that might be added.
|
2021-09-24 04:20:43 +02:00
|
|
|
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
distutils_enable_sphinx docs
|