67 lines
1.8 KiB
Bash
67 lines
1.8 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/south/south-0.7.5-r1.ebuild,v 1.1 2013/05/18 08:26:04 idella4 Exp $
|
|
|
|
EAPI=5
|
|
|
|
PYTHON_COMPAT=( python{2_6,2_7} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Intelligent schema migrations for Django apps."
|
|
HOMEPAGE="http://south.aeracode.org/"
|
|
SRC_URI="https://bitbucket.org/andrewgodwin/south/get/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="doc test"
|
|
|
|
RDEPEND="dev-python/django[${PYTHON_USEDEP}]"
|
|
DEPEND="${RDEPEND}
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
|
|
dev-python/jinja[${PYTHON_USEDEP}] )"
|
|
|
|
PATCHES=( "${FILESDIR}"/${P}-tests.patch )
|
|
|
|
src_unpack() {
|
|
default
|
|
mv "${WORKDIR}"/*-south-* "${S}"
|
|
}
|
|
|
|
python_compile_all() {
|
|
use doc && emake -C docs html
|
|
}
|
|
|
|
python_install_all() {
|
|
use doc && local HTML_DOCS=( docs/_build/html/. )
|
|
}
|
|
|
|
python_compile_all() {
|
|
if use test; then
|
|
django-admin.py-${EPYTHON} startproject southtest \
|
|
|| die "setting up test env failed"
|
|
cd southtest
|
|
sed -i \
|
|
-e "/^INSTALLED_APPS/a\ 'south'," \
|
|
-e 's/\(django.db.backends.\)/\1sqlite3/' \
|
|
-e "s/\(NAME': '\)/\1test.db/" \
|
|
southtest/settings.py || die "sed failed"
|
|
echo "SKIP_SOUTH_TESTS=False" >> southtest/settings.py
|
|
fi
|
|
}
|
|
|
|
python_test() {
|
|
# http://south.aeracode.org/ticket/1256
|
|
cd "${S}"/southtest
|
|
cp -a ../south/tests/non_managed "${BUILD_DIR}"/lib/${PN}/tests/ || die
|
|
PYTHONPATH="${PYTHONPATH}:${S}"/${PN}/tests/ "${PYTHON}" manage.py test south \
|
|
|| die "tests failed"
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "In order to use the south schema migrations for your Django project,"
|
|
elog "just add 'south' to your INSTALLED_APPS in the settings.py file."
|
|
elog "manage.py will now automagically offer the new functions."
|
|
}
|