2021-06-01 12:26:01 +02:00
|
|
|
# Copyright 1999-2021 Gentoo Authors
|
2020-09-16 01:03:40 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI="7"
|
|
|
|
|
2021-07-27 18:39:08 +02:00
|
|
|
PYTHON_COMPAT=( python3_9 )
|
2020-09-22 00:07:35 +02:00
|
|
|
DISTUTILS_USE_SETUPTOOLS="no"
|
2020-09-16 01:03:40 +02:00
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="asyncio bridge to the standard sqlite3 module"
|
|
|
|
HOMEPAGE="https://github.com/jreese/aiosqlite"
|
2021-06-01 12:26:01 +02:00
|
|
|
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
2020-09-16 01:03:40 +02:00
|
|
|
|
|
|
|
LICENSE="Apache-2.0"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
2020-09-22 00:07:35 +02:00
|
|
|
|
|
|
|
# lacks dev-python/aiounittest
|
|
|
|
RESTRICT="test"
|
|
|
|
|
|
|
|
DOCS=( CHANGELOG.md README.rst )
|
|
|
|
|
2021-07-27 18:39:08 +02:00
|
|
|
PATCHES=(
|
|
|
|
# https://github.com/omnilib/aiosqlite/commit/a157e0b7d126daeeda4e5b7dcf2b6cb9cf9ac274
|
|
|
|
"${FILESDIR}/${P}-typing.patch"
|
|
|
|
)
|
|
|
|
|
2020-09-22 00:07:35 +02:00
|
|
|
distutils_enable_sphinx docs
|