2015-03-07 22:23:18 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2012-04-19 09:26:04 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2013-05-20 13:48:07 +04:00
|
|
|
EAPI=5
|
2015-04-08 16:23:29 +03:00
|
|
|
PYTHON_COMPAT=( python2_7 pypy )
|
2012-04-29 23:51:28 +04:00
|
|
|
|
2013-05-20 13:48:07 +04:00
|
|
|
inherit distutils-r1
|
2012-04-19 09:26:04 +04:00
|
|
|
|
|
|
|
DESCRIPTION="A record-then-assert mocking library"
|
2018-04-20 18:04:53 +03:00
|
|
|
HOMEPAGE="https://pypi.org/project/dingus/"
|
2012-04-19 09:26:04 +04:00
|
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="MIT"
|
|
|
|
SLOT="0"
|
2012-04-29 23:51:28 +04:00
|
|
|
IUSE=""
|
2015-03-09 22:56:36 +03:00
|
|
|
KEYWORDS="amd64 x86"
|
2012-04-19 09:26:04 +04:00
|
|
|
|
2013-05-20 13:48:07 +04:00
|
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
2012-04-19 09:26:04 +04:00
|
|
|
RDEPEND=""
|
2012-04-29 23:51:28 +04:00
|
|
|
|
2013-05-20 13:48:07 +04:00
|
|
|
python_prepare_all() {
|
2012-04-29 23:51:28 +04:00
|
|
|
sed -i -e '/data_files/d' setup.py || die #413769
|
2013-05-20 13:48:07 +04:00
|
|
|
distutils-r1_python_prepare_all
|
2012-04-29 23:51:28 +04:00
|
|
|
}
|