mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
41 lines
1.0 KiB
Bash
41 lines
1.0 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=poetry
|
|
PYTHON_COMPAT=( python3_{11..13} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A TUI todo manager"
|
|
HOMEPAGE="https://github.com/dooit-org/dooit https://pipy.org/project/dooit"
|
|
SRC_URI="https://github.com/dooit-org/dooit/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
|
|
=dev-python/textual-dev-1*[${PYTHON_USEDEP}]
|
|
>=dev-python/faker-30.8.2[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
RDEPEND="
|
|
=dev-python/pyperclip-1.9*[${PYTHON_USEDEP}]
|
|
=dev-python/python-dateutil-2.9*[${PYTHON_USEDEP}]
|
|
=dev-python/pyyaml-6*[${PYTHON_USEDEP}]
|
|
=dev-python/textual-0.88*[${PYTHON_USEDEP}]
|
|
>=dev-python/tzlocal-5.2[${PYTHON_USEDEP}]
|
|
=dev-python/sqlalchemy-2*[${PYTHON_USEDEP}]
|
|
=dev-python/platformdirs-4*[${PYTHON_USEDEP}]
|
|
<dev-python/click-9.0.0[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
DEPEND="${RDEPEND}"
|
|
|
|
distutils_enable_tests pytest
|