You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/mail-filter/afew/afew-1.2.0.ebuild

38 lines
819 B

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DISTUTILS_SINGLE_IMPL=1
PYTHON_COMPAT=( python3_6 )
inherit distutils-r1
DESCRIPTION="Initial tagging script for Notmuch"
HOMEPAGE="https://github.com/afewmail/afew"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="dev-python/chardet[${PYTHON_USEDEP}]
net-mail/notmuch[python,${PYTHON_USEDEP}]"
DOCS=( "README.rst" )
src_prepare() {
sed -r \
-e "s/^([[:space:]]+)use_scm_version=.*,$/\1version='${PV}',/" \
-e "/^([[:space:]]+)setup_requires=.*,$/d" \
-i setup.py || die
distutils-r1_src_prepare
}
src_install() {
distutils-r1_src_install
dodoc afew/defaults/afew.config
}