commit: f8823c40ca830a46fd6d81c179d95a51dae7e6e4 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Mon Dec 2 21:27:28 2019 +0000 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org> CommitDate: Wed Dec 4 16:36:57 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8823c40
app-text/htmlmin: python3_8, add missing || die Closes: https://bugs.gentoo.org/701808 Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> Signed-off-by: Aaron Bauman <bman <AT> gentoo.org> app-text/htmlmin/htmlmin-0.1.12.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-text/htmlmin/htmlmin-0.1.12.ebuild b/app-text/htmlmin/htmlmin-0.1.12.ebuild index a6024e98c9e..69c0412b090 100644 --- a/app-text/htmlmin/htmlmin-0.1.12.ebuild +++ b/app-text/htmlmin/htmlmin-0.1.12.ebuild @@ -3,7 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) +PYTHON_COMPAT=( python2_7 python3_{5,6,7,8} ) inherit distutils-r1 @@ -20,6 +20,6 @@ IUSE="" RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" src_prepare() { - sed '/prune/d' -i MANIFEST.in + sed '/prune/d' -i MANIFEST.in || die default }