commit: 984ddfca7e5d602988b77377e6539abc20bb8d27 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com> AuthorDate: Tue Apr 18 07:49:49 2017 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Thu Apr 20 16:14:30 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=984ddfca
app-text/cmark: use python-any-r1 instead hardcoded, #615908 Bug: https://bugs.gentoo.org/615908 Closes: https://github.com/gentoo/gentoo/pull/4437 Package-Manager: Portage-2.3.3, Repoman-2.3.1 app-text/cmark/cmark-0.27.1.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app-text/cmark/cmark-0.27.1.ebuild b/app-text/cmark/cmark-0.27.1.ebuild index b7ae5b0f010..a69f2b36f50 100644 --- a/app-text/cmark/cmark-0.27.1.ebuild +++ b/app-text/cmark/cmark-0.27.1.ebuild @@ -3,7 +3,9 @@ EAPI=6 -inherit cmake-utils +PYTHON_COMPAT=( python3_{4,5} ) + +inherit cmake-utils python-any-r1 DESCRIPTION="CommonMark parsing and rendering library and program in C" HOMEPAGE="https://github.com/jgm/cmark" @@ -15,9 +17,13 @@ KEYWORDS="~amd64 ~x86" IUSE="test" DEPEND=" - test? ( || ( dev-lang/python:3.4 dev-lang/python:3.5 ) )" + test? ( ${PYTHON_DEPS} )" RDEPEND="" +pkg_setup() { + use test && python-any-r1_pkg_setup +} + src_prepare() { cmake-utils_src_prepare # Remove static library from installing
