blob: efb5865bd4a53a8c94e27606fa67017b1f79762d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{8,9} )
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1
DESCRIPTION="Search Quassel logs for matching messages and print them"
HOMEPAGE="https://git.oriole.systems/quarg"
SRC_URI="https://git.oriole.systems/quarg/snapshot/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
RESTRICT="mirror test"
LICENSE="MIT"
SLOT="0"
IUSE="sqlite postgres"
RDEPEND="${PYTHON_DEPS}
dev-python/python-dateutil[${PYTHON_USEDEP}]
postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] )
>=dev-python/sqlalchemy-1.4[${PYTHON_USEDEP},sqlite?]
"
DEPEND="${RDEPEND}"
python_install_all() {
default
doman quarg.1
}
|