mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-10 20:18:41 -04:00
Manually went through some entries for `pkgcheck scan -c VariableOrderCheck`. Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
42 lines
981 B
Bash
42 lines
981 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=poetry
|
|
PYTHON_COMPAT=( python3_10 )
|
|
|
|
inherit distutils-r1
|
|
|
|
COMMIT="8aaa35376a4f0b270a1927dff4b4d34caee7707b"
|
|
|
|
DESCRIPTION="Core library for ActivityWatch"
|
|
HOMEPAGE="https://activitywatch.net"
|
|
SRC_URI="https://github.com/ActivityWatch/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
|
|
S="${WORKDIR}/${PN}-${COMMIT}"
|
|
|
|
LICENSE="MPL-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="test"
|
|
|
|
RDEPEND="
|
|
dev-python/appdirs[${PYTHON_USEDEP}]
|
|
dev-python/deprecation[${PYTHON_USEDEP}]
|
|
dev-python/iso8601[${PYTHON_USEDEP}]
|
|
dev-python/jsonschema[${PYTHON_USEDEP}]
|
|
dev-python/peewee[${PYTHON_USEDEP}]
|
|
dev-python/rfc3339-validator[${PYTHON_USEDEP}]
|
|
dev-python/strict-rfc3339[${PYTHON_USEDEP}]
|
|
dev-python/TakeTheTime[${PYTHON_USEDEP}]
|
|
dev-python/timeslot[${PYTHON_USEDEP}]
|
|
dev-python/tomlkit[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
DEPEND="
|
|
${RDEPEND}
|
|
"
|
|
|
|
distutils_enable_tests pytest
|