770cc955a1
By sane, we mean that the status of every migration is tracked individually, rather than just the number of the top migration reached; this means South can detect when you have an unapplied migration that's sitting in the middle of a whole load of applied ones, and will let you apply it straight off, or let you roll back to it, and apply from there forward.
22 lines
610 B
Makefile
22 lines
610 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2011/01/12 08:10:05 adam Exp $
|
|
|
|
DISTNAME= south-0.7.3
|
|
PKGNAME= ${PYPKGPREFIX}-django-${DISTNAME}
|
|
CATEGORIES= www python
|
|
MASTER_SITES= http://www.aeracode.org/releases/south/
|
|
|
|
MAINTAINER= adam@NetBSD.org
|
|
HOMEPAGE= http://south.aeracode.org/
|
|
COMMENT= Intelligent schema and data migrations for Django projects
|
|
LICENSE= apache-2.0
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
WRKSRC= ${WRKDIR}/south
|
|
EGG_NAME= ${DISTNAME:S/south/South/}
|
|
USE_LANGUAGES= # empty
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-django-[0-9]*:../../www/py-django
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|