mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=79239b5207c500a5cd0defd9012345fbe97db3ea Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
31 lines
702 B
Bash
31 lines
702 B
Bash
# Copyright 2023-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{11..12} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="toot - Mastodon CLI & TUI"
|
|
HOMEPAGE="https://github.com/ihabunek/toot"
|
|
SRC_URI="https://github.com/ihabunek/toot/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="
|
|
>=dev-python/urwid-2.1.2-r1
|
|
>=dev-python/wcwidth-0.2.6
|
|
media-fonts/ttf-ancient-fonts
|
|
>=dev-python/beautifulsoup4-4.12.2
|
|
>=dev-python/tomlkit-0.11.8
|
|
test? ( dev-python/psycopg:2
|
|
>=dev-python/pytest-7.4.0 )
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
distutils_enable_tests pytest
|