guru/app-doc/geeknote/geeknote-3.0.6.ebuild
Vitaly Zdanevich 6ba10ec9c2
app-doc/geeknote: add 3.0.6
This update includes only this useful commit vitaly-zdanevich/geeknote@578bfcf

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Closes: https://github.com/gentoo/guru/pull/296
Signed-off-by: David Roman <davidroman96@gmail.com>
2025-03-01 00:41:18 +01:00

40 lines
1.0 KiB
Bash

# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_11 )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Evernote CLI: CRUD for notes in cloud, in markdown"
HOMEPAGE="https://github.com/vitaly-zdanevich/geeknote"
SRC_URI="https://github.com/vitaly-zdanevich/$PN/archive/refs/tags/v$PV.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="test? (
dev-python/mock[${PYTHON_USEDEP}]
)"
RDEPEND="
dev-python/evernote2[${PYTHON_USEDEP}]
dev-python/html2text[${PYTHON_USEDEP}]
dev-python/sqlalchemy[${PYTHON_USEDEP}]
dev-python/markdown2[${PYTHON_USEDEP}]
dev-python/beautifulsoup4[${PYTHON_USEDEP}]
dev-python/thrift[${PYTHON_USEDEP}]
dev-python/lxml[${PYTHON_USEDEP}]
"
distutils_enable_tests pytest
pkg_postinst() {
einfo "Autocompletion plugin is already bundled in oh-my-zsh. To enable just configure plugin definition"
einfo "plugins=( ... geeknote ...)"
einfo "see more at https://github.com/s7anley/zsh-geeknote"
}