diff options
Diffstat (limited to 'app-text/htmlmin/htmlmin-0.1.12.ebuild')
-rw-r--r-- | app-text/htmlmin/htmlmin-0.1.12.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app-text/htmlmin/htmlmin-0.1.12.ebuild b/app-text/htmlmin/htmlmin-0.1.12.ebuild new file mode 100644 index 000000000000..3f036caef84b --- /dev/null +++ b/app-text/htmlmin/htmlmin-0.1.12.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit distutils-r1 + +DESCRIPTION="A configurable HTML Minifier with safety features" +HOMEPAGE="https://github.com/mankyd/htmlmin" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +src_prepare() { + sed '/prune/d' -i MANIFEST.in + default +} |