Add updated gcalcli

This commit is contained in:
2020-09-16 11:29:13 +02:00
parent 3471a1fa41
commit 66dae2abf7
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,2 @@
DIST gcalcli-4.3.0.tar.gz 1702967 BLAKE2B 04623e2140769a56c28a03e315f8ef1e9fe51571f2e46d2529e1fca062c85de251c6adc631057df228494d449b93564e9fe71998f8702ed87dbc5ec5e7803bbd SHA512 ea8680be5351d7b18206ea7b010d49a8c87cbafc9d754cf7f47587a09228c45b29f76d29644770a881cb7c750a1e0e59262b7875eca77aee5bc2476e456b807e
EBUILD gcalcli-4.3.0.ebuild 886 BLAKE2B 90a1a858ff601221c10c98b5148b095a81d842c4394c4c5f65e31934ecf15b07d1ecd462e5786b1aacc613c6319807ce11db4b46986b34e512f55e8d7f811f5b SHA512 e77b0cabd8ab537c19003ff4cdeaf6c76593104b2c46e802cafcb0643cf8c355b687b26386434e237cd19032d8d4ea813b1ef872de2a05e277b6696400284d60

View File

@ -0,0 +1,35 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
# parsedatetime doesn't support pypy
PYTHON_COMPAT=( python{3_6,3_7} )
inherit distutils-r1
MY_PV="4.3.0"
DESCRIPTION="Google Calendar Command Line Interface"
HOMEPAGE="https://github.com/insanum/gcalcli"
SRC_URI="https://github.com/insanum/gcalcli/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
>=dev-python/google-api-python-client-1.5.3[${PYTHON_USEDEP}]
dev-python/parsedatetime[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
dev-python/python-gflags[${PYTHON_USEDEP}]
dev-python/vobject[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}"
S="${WORKDIR}/gcalcli-${PV}"
src_install() {
dodoc -r ChangeLog README.md docs
distutils-r1_src_install
}