dev-python/locustio: allow usage of renamed msgpack

Package-Manager: Portage-2.3.19, Repoman-2.3.6
This commit is contained in:
Matthew Thode
2018-03-09 11:41:13 -06:00
parent c659513aef
commit 93d697e989

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -28,3 +28,9 @@ RDEPEND=">=dev-python/gevent-1.0.1[${PYTHON_USEDEP}]
python_test() {
esetup.py test
}
python_prepare_all() {
# allow useage of renamed msgpack
sed -i '/^msgpack/d' setup.py || die
distutils-r1_python_prepare_all
}