53 lines
1.5 KiB
Bash
53 lines
1.5 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/django-compressor/django-compressor-1.3.ebuild,v 1.3 2013/06/30 22:04:47 floppym Exp $
|
|
|
|
EAPI=5
|
|
PYTHON_COMPAT=( python{2_6,2_7} )
|
|
|
|
inherit distutils-r1
|
|
|
|
MY_PN="${PN/-/_}"
|
|
DESCRIPTION="Allows to define regrouped/postcompiled content 'on the fly' inside of django template"
|
|
HOMEPAGE="http://pypi.python.org/pypi/django_compressor/"
|
|
SRC_URI="https://github.com/jezdez/django_compressor/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="doc test"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
|
|
S=${WORKDIR}/${MY_PN}-${PV}
|
|
|
|
RDEPEND=">=dev-python/django-1.1.4[${PYTHON_USEDEP}]
|
|
>=dev-python/django-appconf-0.4[${PYTHON_USEDEP}]"
|
|
DEPEND="${RDEPEND}
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
dev-python/versiontools[${PYTHON_USEDEP}]
|
|
test? (
|
|
dev-python/django-discover-runner[${PYTHON_USEDEP}]
|
|
dev-python/unittest2[${PYTHON_USEDEP}]
|
|
dev-python/beautifulsoup:python-2[${PYTHON_USEDEP}]
|
|
dev-python/html5lib[${PYTHON_USEDEP}]
|
|
dev-python/mock[${PYTHON_USEDEP}]
|
|
dev-python/jinja[${PYTHON_USEDEP}]
|
|
dev-python/lxml[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
python_compile_all() {
|
|
use doc && emake -C docs html
|
|
}
|
|
|
|
python_test() {
|
|
pushd "${BUILD_DIR}/lib" > /dev/null || die
|
|
set -- django-admin.py test compressor --settings=compressor.test_settings
|
|
echo "$@"
|
|
"$@" || die "Tests failed with ${EPYTHON}"
|
|
popd > /dev/null || die
|
|
}
|
|
|
|
python_install_all() {
|
|
use doc && local HTML_DOCS=( docs/_build/html/. )
|
|
distutils-r1_python_install_all
|
|
}
|