2024-03-17 19:31:26 +01:00
|
|
|
# Copyright 2020-2024 Gentoo Authors
|
2020-08-18 15:19:58 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2021-07-10 19:09:23 +02:00
|
|
|
EAPI="8"
|
2020-08-18 15:19:58 +02:00
|
|
|
|
2022-11-12 19:53:03 +01:00
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
2024-05-09 22:15:57 +02:00
|
|
|
PYTHON_COMPAT=( python3_{11..12} )
|
2020-08-18 15:19:58 +02:00
|
|
|
|
2023-03-02 23:14:03 +01:00
|
|
|
inherit distutils-r1 pypi
|
2020-08-18 15:19:58 +02:00
|
|
|
|
|
|
|
DESCRIPTION="CLI/TUI mastodon client written in python"
|
2021-05-16 00:00:28 +02:00
|
|
|
HOMEPAGE="https://github.com/ihabunek/toot/ https://pypi.org/project/toot/"
|
2020-08-18 15:19:58 +02:00
|
|
|
|
2021-10-07 22:40:13 +02:00
|
|
|
if [[ "${PV}" == *9999 ]]; then
|
2020-08-18 15:19:58 +02:00
|
|
|
inherit git-r3
|
|
|
|
EGIT_REPO_URI="https://github.com/ihabunek/toot"
|
|
|
|
fi
|
|
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RESTRICT="test"
|
|
|
|
|
|
|
|
DEPEND="
|
2021-10-07 22:40:13 +02:00
|
|
|
dev-python/beautifulsoup4[${PYTHON_USEDEP}]
|
2020-08-18 15:19:58 +02:00
|
|
|
dev-python/requests[${PYTHON_USEDEP}]
|
|
|
|
dev-python/urwid[${PYTHON_USEDEP}]
|
|
|
|
dev-python/wcwidth[${PYTHON_USEDEP}]
|
|
|
|
"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
BDEPEND=""
|