forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
afew-1.3.0.ebuild
39 lines (30 loc) · 871 Bytes
/
afew-1.3.0.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DISTUTILS_SINGLE_IMPL=1
PYTHON_COMPAT=( python{3_4,3_5,3_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}]
dev-python/dkimpy[${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
}