NOTICE: This package has been removed from pkgsrc

./www/py-django-south, Intelligent schema and data migrations for Django projects

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 1.0.1, Package name: py37-django-south-1.0.1, Maintainer: adam

This is South, a Django application to provide migrations in a sane way.
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.


Required to run:
[www/py-django] [devel/py-setuptools] [lang/python37]

Required to build:
[pkgtools/cwrappers]

Master sites:

SHA1: f61d599ed6e5e061775d44ca888910c8ba415410
RMD160: 9417c4109112ba107a52c42b2081dbf15be11aff
Filesize: 95.836 KB

Version history: (Expand)


CVS history: (Expand)


   2021-03-10 20:09:54 by Adam Ciarcinski | Files touched by this commit (4) | Package removed
Log message:
py-django-south: removed
   2020-01-26 18:32:28 by Roland Illig | Files touched by this commit (981)
Log message:
all: migrate homepages from http to https

pkglint -r --network --only "migrate"

As a side-effect of migrating the homepages, pkglint also fixed a few
indentations in unrelated lines. These and the new homepages have been
checked manually.
   2016-06-08 19:43:49 by Thomas Klausner | Files touched by this commit (356)
Log message:
Switch to MASTER_SITES_PYPI.
   2015-11-04 03:47:43 by Alistair G. Crooks | Files touched by this commit (758)
Log message:
Add SHA512 digests for distfiles for www category

Problems found locating distfiles:
	Package haskell-cgi: missing distfile haskell-cgi-20001206.tar.gz
	Package nginx: missing distfile array-var-nginx-module-0.04.tar.gz
	Package nginx: missing distfile encrypted-session-nginx-module-0.04.tar.gz
	Package nginx: missing distfile headers-more-nginx-module-0.261.tar.gz
	Package nginx: missing distfile nginx_http_push_module-0.692.tar.gz
	Package nginx: missing distfile set-misc-nginx-module-0.29.tar.gz
	Package nginx-devel: missing distfile echo-nginx-module-0.58.tar.gz
	Package nginx-devel: missing distfile form-input-nginx-module-0.11.tar.gz
	Package nginx-devel: missing distfile lua-nginx-module-0.9.16.tar.gz
	Package nginx-devel: missing distfile nginx_http_push_module-0.692.tar.gz
	Package nginx-devel: missing distfile set-misc-nginx-module-0.29.tar.gz
	Package php-owncloud: missing distfile owncloud-8.2.0.tar.bz2

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
   2014-12-31 14:57:34 by Thomas Klausner | Files touched by this commit (125)
Log message:
Improve EGG_NAME default to work for packages with '-' in their name.
Remove now unnecessary overrides in various packages.
   2014-11-23 14:31:07 by Adam Ciarcinski | Files touched by this commit (2)
Log message:
Changes 1.0.1:
This is a small bugfix release of South with two changes:
- Python 3 compatability has been fixed (it was broken in 1.0 by an accidental
  introduction of ``iteritems()``)
- South will explicitly error if it detects Django 1.7 or above rather than
  failing with cryptic errors.
   2014-04-12 10:58:03 by Adam Ciarcinski | Files touched by this commit (2)
Log message:
Changed 0.8.4:
Fixture loading issues fixed
A regression in 0.8.3 meant that fixtures referring to models outside of the app \ 
they were in, and some other references to custom user models, were broken. This \ 
should now be fixed.
   2014-02-09 09:16:34 by Adam Ciarcinski | Files touched by this commit (3)
Log message:
Changes 0.8.3:
* A couple of issues with Django 1.6 have been fixed (including bad error \ 
handling and a loaddata incompatability)
* Migrations now import datetime from a special South module which provides the \ 
correct tz-aware or tz-naive version.
* A couple of issues fixed, including double-indexing errors, and correct \ 
persistence of non-unique indexes across ALTERs.
* The new localflavor fields are automatically accepted by the introspector.