1ca073f04b
django-reversion is an extension to the Django web framework that provides comprehensive version control facilities: - Roll back to any point in a model's history - an unlimited undo facility! - Recover deleted models - never lose data again! - Admin integration for maximum usability. - Group related changes into revisions that can be rolled back in a single transaction. - Automatically save a new version whenever your model changes using Django's flexible signalling framework. - Automate your revision management with easy-to-use middleware. django-reversion can be easily added to your existing Django project with an absolute minimum of code changes. WWW: http://pypi.python.org/pypi/django-reversion/ PR: ports/169269 Submitted by: Matthew X. Economou <xenophon+fbsdports@irtnog.org>
27 lines
606 B
Makefile
27 lines
606 B
Makefile
# New ports collection makefile for: py-django-reversion
|
|
# Date created: 19 Jun 2012
|
|
# Whom: Matthew X. Economou <xenophon+fbsdports@irtnog.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= django-reversion
|
|
PORTVERSION= 1.6.1
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= xenophon+fbsdports@irtnog.org
|
|
COMMENT= Provides comprehensive version control facilities to Django apps
|
|
|
|
LICENSE= BSD
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django>=0:${PORTSDIR}/www/py-django
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|