21 lines
489 B
Bash
21 lines
489 B
Bash
|
|
# Copyright 2020 Gentoo Authors
|
||
|
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
|
||
|
|
EAPI=7
|
||
|
|
|
||
|
|
PYTHON_COMPAT=( python3_{5,6,7,8} )
|
||
|
|
inherit distutils-r1
|
||
|
|
|
||
|
|
DESCRIPTION="A python library for interacting with taskwarrior databases"
|
||
|
|
HOMEPAGE="https://github.com/robgolding/tasklib"
|
||
|
|
SRC_URI="https://github.com/robgolding/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
|
|
||
|
|
LICENSE="BSD-3"
|
||
|
|
SLOT="0"
|
||
|
|
KEYWORDS="amd64 ~x86"
|
||
|
|
IUSE=""
|
||
|
|
|
||
|
|
DEPEND=">app-misc/task-2.1.0"
|
||
|
|
RDEPEND="${DEPEND}"
|
||
|
|
BDEPEND=""
|