diff options
author | 2019-01-28 02:07:06 +0000 | |
---|---|---|
committer | 2019-01-28 02:24:07 +0000 | |
commit | 46d4206f3a6e0eb8385239f290d089676597961e (patch) | |
tree | 4faf8a0fbb344a6456d73fc1355c6d53e5dc37bc /app-misc/khard/khard-0.13.0.ebuild | |
parent | media-plugins/kodi-audiodecoder-timidity: depend on libplatform (diff) | |
download | gentoo-46d4206f3a6e0eb8385239f290d089676597961e.tar.gz gentoo-46d4206f3a6e0eb8385239f290d089676597961e.tar.bz2 gentoo-46d4206f3a6e0eb8385239f290d089676597961e.zip |
app-misc/khard: add new version 0.13.0
Ebuild cloned from 0.12.2 verbatim for further changes.
Package-Manager: Portage-2.3.49, Repoman-2.3.12
Signed-off-by: Andrey Utkin <andrey_utkin@gentoo.org>
Diffstat (limited to 'app-misc/khard/khard-0.13.0.ebuild')
-rw-r--r-- | app-misc/khard/khard-0.13.0.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app-misc/khard/khard-0.13.0.ebuild b/app-misc/khard/khard-0.13.0.ebuild new file mode 100644 index 000000000000..fcba0a4d09b3 --- /dev/null +++ b/app-misc/khard/khard-0.13.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python3_{4,5,6} ) +inherit distutils-r1 +DESCRIPTION="Console CardDAV client" +HOMEPAGE="https://github.com/scheibler/khard" +LICENSE="GPL-3" +SLOT="0" +IUSE="zsh-completion" + +if [ "${PV}" == "9999" ]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/scheibler/khard" +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~arm64" +fi + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND=" + dev-python/atomicwrites[${PYTHON_USEDEP}] + dev-python/configobj[${PYTHON_USEDEP}] + dev-python/ruamel-yaml[${PYTHON_USEDEP}] + dev-python/unidecode[${PYTHON_USEDEP}] + >dev-python/vobject-0.9.3[${PYTHON_USEDEP}] +" +# vobject-0.9.3 breaks khard, see +# https://github.com/scheibler/khard/issues/87 +# https://github.com/eventable/vobject/issues/39 + +DOCS=( AUTHORS CHANGES README.md misc/khard/khard.conf.example ) + +src_install() { + distutils-r1_src_install + + if use zsh-completion; then + insinto /usr/share/zsh/site-functions + doins misc/zsh/_khard + fi +} |