2020-03-12 20:38:09 +01:00
|
|
|
# Copyright 1999-2020 Gentoo Authors
|
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
|
|
PYTHON_COMPAT=( python3_{6,7,8} )
|
|
|
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
|
|
DESCRIPTION="Python wrapper of telegram bots API"
|
2020-03-13 13:33:07 +01:00
|
|
|
HOMEPAGE="https://python-telegram-bot.org https://github.com/python-telegram-bot/python-telegram-bot"
|
2020-03-12 20:38:09 +01:00
|
|
|
|
|
|
|
|
if [[ ${PV} == *9999 ]]; then
|
|
|
|
|
inherit git-r3
|
|
|
|
|
EGIT_REPO_URI="https://github.com/python-telegram-bot/python-telegram-bot"
|
|
|
|
|
else
|
2020-03-13 13:33:07 +01:00
|
|
|
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
2020-03-12 20:38:09 +01:00
|
|
|
|
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
|
SLOT="0"
|
2020-03-13 13:33:07 +01:00
|
|
|
|
|
|
|
|
# No tests because require networking access
|
|
|
|
|
# Commenting out the test deps so we can add py3_8
|
|
|
|
|
RESTRICT="test"
|
2020-03-12 20:38:09 +01:00
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
|
dev-python/certifi[${PYTHON_USEDEP}]
|
|
|
|
|
dev-python/cryptography[${PYTHON_USEDEP}]
|
|
|
|
|
dev-python/decorator[${PYTHON_USEDEP}]
|
|
|
|
|
dev-python/future[${PYTHON_USEDEP}]
|
|
|
|
|
dev-python/PySocks[${PYTHON_USEDEP}]
|
|
|
|
|
dev-python/ujson[${PYTHON_USEDEP}]
|
|
|
|
|
dev-python/urllib3[${PYTHON_USEDEP}]
|
|
|
|
|
www-servers/tornado[${PYTHON_USEDEP}]
|
|
|
|
|
"
|
|
|
|
|
|
2020-03-13 13:33:07 +01:00
|
|
|
#DEPEND="test? (
|
|
|
|
|
# dev-python/attrs[${PYTHON_USEDEP}]
|
|
|
|
|
# dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
|
|
|
|
|
# dev-python/flake8[${PYTHON_USEDEP}]
|
|
|
|
|
# dev-python/flaky[${PYTHON_USEDEP}]
|
|
|
|
|
# dev-python/pylint[${PYTHON_USEDEP}]
|
|
|
|
|
# dev-python/pytest-timeout[${PYTHON_USEDEP}]
|
|
|
|
|
# dev-python/yapf[${PYTHON_USEDEP}]
|
|
|
|
|
#)"
|
2020-03-12 20:38:09 +01:00
|
|
|
|
2020-03-13 13:33:07 +01:00
|
|
|
distutils_enable_tests pytest
|
|
|
|
|
distutils_enable_sphinx docs/source dev-python/sphinx_rtd_theme
|
|
|
|
|
|
|
|
|
|
python_prepare_all() {
|
|
|
|
|
# do not make a test flaky report
|
|
|
|
|
sed -i -e '/addopts/d' setup.cfg || die
|
|
|
|
|
|
|
|
|
|
# this test fails: Unknown pytest.mark.nocoverage
|
|
|
|
|
# likely this requires pytest-cov but that is deprecated
|
|
|
|
|
# so we skip the test
|
|
|
|
|
rm tests/test_meta.py || die
|
|
|
|
|
|
|
|
|
|
# this fails to import urllib3 even though
|
|
|
|
|
# it is installed
|
|
|
|
|
rm tests/test_official.py || die
|
|
|
|
|
|
|
|
|
|
distutils-r1_python_prepare_all
|
|
|
|
|
}
|