37 lines
981 B
Bash
37 lines
981 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/ansi2html/ansi2html-0.9.1-r1.ebuild,v 1.2 2013/09/28 13:49:15 sping Exp $
|
|
|
|
EAPI="4"
|
|
|
|
# ordereddict is need for < 2.7, but it's not packaged (yet)
|
|
PYTHON_DEPEND="*:2.7"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
DISTUTILS_SRC_TEST="nosetests"
|
|
RESTRICT_PYTHON_ABIS="2.5 2.5-jython"
|
|
|
|
inherit distutils eutils
|
|
|
|
DESCRIPTION="Convert text with ANSI color codes to HTML"
|
|
HOMEPAGE="http://pypi.python.org/pypi/ansi2html https://github.com/ralphbean/ansi2html"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="test"
|
|
|
|
RDEPEND="dev-python/six"
|
|
DEPEND="${RDEPEND}
|
|
test? (
|
|
dev-python/nose
|
|
dev-python/mock
|
|
)
|
|
dev-python/setuptools"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}/${PN}-0.9.1-fix-0-control-code.patch"
|
|
if use test; then
|
|
epatch "${FILESDIR}/${PN}-0.9.1-fix-sys-argv-in-tests.patch"
|
|
fi
|
|
}
|