commit python-South for openSUSE:Factory

2014-07-23 Thread h_root
Hello community,

here is the log from the commit of package python-South for openSUSE:Factory 
checked in at 2014-07-24 06:58:53

Comparing /work/SRC/openSUSE:Factory/python-South (Old)
 and  /work/SRC/openSUSE:Factory/.python-South.new (New)


Package is python-South

Changes:

--- /work/SRC/openSUSE:Factory/python-South/python-South.changes
2014-03-15 07:47:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-South.new/python-South.changes   
2014-07-24 06:58:57.0 +0200
@@ -1,0 +2,6 @@
+Wed Jul 23 10:44:04 UTC 2014 - mci...@suse.cz
+
+- Update to version 1.0:
+  + Last release to support migration to Django native migrations
+
+---

Old:

  South-0.8.4.tar.gz

New:

  South-1.0.tar.gz



Other differences:
--
++ python-South.spec ++
--- /var/tmp/diff_new_pack.MdmmjN/_old  2014-07-24 06:58:58.0 +0200
+++ /var/tmp/diff_new_pack.MdmmjN/_new  2014-07-24 06:58:58.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-South
-Version:0.8.4
+Version:1.0
 Release:0
 Url:http://south.aeracode.org/
 Summary:South: Migrations for Django

++ South-0.8.4.tar.gz - South-1.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.8.4/PKG-INFO new/South-1.0/PKG-INFO
--- old/South-0.8.4/PKG-INFO2013-11-21 11:39:01.0 +0100
+++ new/South-1.0/PKG-INFO  2014-07-01 09:01:07.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: South
-Version: 0.8.4
+Version: 1.0
 Summary: South: Migrations for Django
 Home-page: http://south.aeracode.org/
 Author: Andrew Godwin  Andy McCurdy
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.8.4/South.egg-info/PKG-INFO 
new/South-1.0/South.egg-info/PKG-INFO
--- old/South-0.8.4/South.egg-info/PKG-INFO 2013-11-21 11:39:01.0 
+0100
+++ new/South-1.0/South.egg-info/PKG-INFO   2014-07-01 09:01:07.0 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: South
-Version: 0.8.4
+Version: 1.0
 Summary: South: Migrations for Django
 Home-page: http://south.aeracode.org/
 Author: Andrew Godwin  Andy McCurdy
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.8.4/south/__init__.py 
new/South-1.0/south/__init__.py
--- old/South-0.8.4/south/__init__.py   2013-11-21 11:38:28.0 +0100
+++ new/South-1.0/south/__init__.py 2014-07-01 09:00:28.0 +0200
@@ -2,7 +2,7 @@
 South - Useable migrations for Django apps
 
 
-__version__ = 0.8.4
+__version__ = 1.0
 __authors__ = [
 Andrew Godwin and...@aeracode.org,
 Andy McCurdy a...@andymccurdy.com
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.8.4/south/db/__init__.py 
new/South-1.0/south/db/__init__.py
--- old/South-0.8.4/south/db/__init__.py2013-08-09 16:41:11.0 
+0200
+++ new/South-1.0/south/db/__init__.py  2014-01-23 13:50:43.0 +0100
@@ -23,6 +23,7 @@
 'doj.backends.zxjdbc.postgresql': 'postgresql_psycopg2', #django-jython
 'doj.backends.zxjdbc.mysql': 'mysql', #django-jython
 'doj.backends.zxjdbc.oracle': 'oracle', #django-jython
+'mysql.connector.django': 'mysql', # MySQL Connector/Python
 }
 
 # First, work out if we're multi-db or not, and which databases we have
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.8.4/south/migration/base.py 
new/South-1.0/south/migration/base.py
--- old/South-0.8.4/south/migration/base.py 2012-12-08 21:59:20.0 
+0100
+++ new/South-1.0/south/migration/base.py   2014-07-01 08:45:25.0 
+0200
@@ -138,7 +138,15 @@
 if app_label in settings.SOUTH_MIGRATION_MODULES:
 # There's an override.
 return settings.SOUTH_MIGRATION_MODULES[app_label]
-return self._application.__name__ + '.migrations'
+# We see if the south_migrations module exists first, and
+# use that if we find it.
+module_name = self._application.__name__ + '.south_migrations'
+try:
+importlib.import_module(module_name)
+except ImportError:
+return self._application.__name__ + '.migrations'
+else:
+return module_name
 
 def get_application(self):
 return self._application
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.8.4/south/migration/migrators.py 
new/South-1.0/south/migration/migrators.py
--- old/South-0.8.4/south/migration/migrators.py2013-11-21 
11:34:02.0 

commit python-South for openSUSE:Factory

2014-03-15 Thread h_root
Hello community,

here is the log from the commit of package python-South for openSUSE:Factory 
checked in at 2014-03-15 07:47:56

Comparing /work/SRC/openSUSE:Factory/python-South (Old)
 and  /work/SRC/openSUSE:Factory/.python-South.new (New)


Package is python-South

Changes:

--- /work/SRC/openSUSE:Factory/python-South/python-South.changes
2013-10-25 11:32:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-South.new/python-South.changes   
2014-03-15 07:47:57.0 +0100
@@ -1,0 +2,9 @@
+Thu Mar 13 14:07:11 UTC 2014 - mci...@suse.cz
+
+- Update to version 0.8.4
+  + Django 1.6 compatibility
+  + Timezone-aware DateTimeFields no longer issue warnings
+  + Fixture loading issues fixed
+  + Various database backend related issues fixed
+
+---

Old:

  South-0.8.2.tar.gz

New:

  South-0.8.4.tar.gz



Other differences:
--
++ python-South.spec ++
--- /var/tmp/diff_new_pack.cHc5pR/_old  2014-03-15 07:47:57.0 +0100
+++ /var/tmp/diff_new_pack.cHc5pR/_new  2014-03-15 07:47:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-South
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python-South
-Version:0.8.2
+Version:0.8.4
 Release:0
 Url:http://south.aeracode.org/
 Summary:South: Migrations for Django

++ South-0.8.2.tar.gz - South-0.8.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.8.2/PKG-INFO new/South-0.8.4/PKG-INFO
--- old/South-0.8.2/PKG-INFO2013-08-09 16:49:51.0 +0200
+++ new/South-0.8.4/PKG-INFO2013-11-21 11:39:01.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: South
-Version: 0.8.2
+Version: 0.8.4
 Summary: South: Migrations for Django
 Home-page: http://south.aeracode.org/
 Author: Andrew Godwin  Andy McCurdy
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.8.2/South.egg-info/PKG-INFO 
new/South-0.8.4/South.egg-info/PKG-INFO
--- old/South-0.8.2/South.egg-info/PKG-INFO 2013-08-09 16:49:50.0 
+0200
+++ new/South-0.8.4/South.egg-info/PKG-INFO 2013-11-21 11:39:01.0 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: South
-Version: 0.8.2
+Version: 0.8.4
 Summary: South: Migrations for Django
 Home-page: http://south.aeracode.org/
 Author: Andrew Godwin  Andy McCurdy
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.8.2/South.egg-info/SOURCES.txt 
new/South-0.8.4/South.egg-info/SOURCES.txt
--- old/South-0.8.2/South.egg-info/SOURCES.txt  2013-08-09 16:49:51.0 
+0200
+++ new/South-0.8.4/South.egg-info/SOURCES.txt  2013-11-21 11:39:01.0 
+0100
@@ -1,4 +1,5 @@
 README
+setup.cfg
 setup.py
 South.egg-info/PKG-INFO
 South.egg-info/SOURCES.txt
@@ -11,6 +12,7 @@
 south/modelsinspector.py
 south/orm.py
 south/signals.py
+south/test_shim.py
 south/v2.py
 south/creator/__init__.py
 south/creator/actions.py
@@ -54,6 +56,7 @@
 south/tests/__init__.py
 south/tests/autodetection.py
 south/tests/db.py
+south/tests/db_firebird.py
 south/tests/db_mysql.py
 south/tests/freezer.py
 south/tests/inspector.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.8.2/setup.cfg new/South-0.8.4/setup.cfg
--- old/South-0.8.2/setup.cfg   2013-08-09 16:49:51.0 +0200
+++ new/South-0.8.4/setup.cfg   2013-11-21 11:39:01.0 +0100
@@ -1,3 +1,6 @@
+[wheel]
+universal = 1
+
 [egg_info]
 tag_build = 
 tag_date = 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.8.2/south/__init__.py 
new/South-0.8.4/south/__init__.py
--- old/South-0.8.2/south/__init__.py   2013-08-09 16:43:29.0 +0200
+++ new/South-0.8.4/south/__init__.py   2013-11-21 11:38:28.0 +0100
@@ -2,7 +2,7 @@
 South - Useable migrations for Django apps
 
 
-__version__ = 0.8.2
+__version__ = 0.8.4
 __authors__ = [
 Andrew Godwin and...@aeracode.org,
 Andy McCurdy a...@andymccurdy.com
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.8.2/south/db/firebird.py 
new/South-0.8.4/south/db/firebird.py
--- old/South-0.8.2/south/db/firebird.py2013-08-09 16:41:11.0 
+0200
+++ new/South-0.8.4/south/db/firebird.py2013-11-13 13:13:59.0 
+0100
@@ 

commit python-South for openSUSE:Factory

2013-10-25 Thread h_root
Hello community,

here is the log from the commit of package python-South for openSUSE:Factory 
checked in at 2013-10-25 11:32:46

Comparing /work/SRC/openSUSE:Factory/python-South (Old)
 and  /work/SRC/openSUSE:Factory/.python-South.new (New)


Package is python-South

Changes:

--- /work/SRC/openSUSE:Factory/python-South/python-South.changes
2013-10-01 08:34:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-South.new/python-South.changes   
2013-10-25 11:32:47.0 +0200
@@ -1,0 +2,5 @@
+Thu Oct 24 11:14:52 UTC 2013 - speili...@suse.com
+
+- Require python-setuptools instead of distribute (upstreams merged)
+
+---



Other differences:
--
++ python-South.spec ++
--- /var/tmp/diff_new_pack.XjugiJ/_old  2013-10-25 11:32:47.0 +0200
+++ /var/tmp/diff_new_pack.XjugiJ/_new  2013-10-25 11:32:47.0 +0200
@@ -26,7 +26,7 @@
 Source: 
http://pypi.python.org/packages/source/S/South/South-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
-BuildRequires:  python-distribute
+BuildRequires:  python-setuptools
 Requires:   python-django
 Provides:   python-django-south = %{version}
 Obsoletes:  python-django-south  %{version}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-South for openSUSE:Factory

2013-10-01 Thread h_root
Hello community,

here is the log from the commit of package python-South for openSUSE:Factory 
checked in at 2013-10-01 08:34:05

Comparing /work/SRC/openSUSE:Factory/python-South (Old)
 and  /work/SRC/openSUSE:Factory/.python-South.new (New)


Package is python-South

Changes:

--- /work/SRC/openSUSE:Factory/python-South/python-South.changes
2012-08-26 11:34:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-South.new/python-South.changes   
2013-10-01 08:34:07.0 +0200
@@ -1,0 +2,12 @@
+Wed Sep 25 16:11:43 UTC 2013 - p.drou...@gmail.com
+
+- Update to version 0.8.2
+  + An issue with SQLite and default values that caused some migrations
+to fail has been fixed
+  + South now recognises more Django MSSQL backends, and no longer fails
+to alter ForeignKeys that are in composite indexes
+  + A small issue with the app cache on Django 1.6 has been fixed
+  + The schemamigration and datamigration commands can now be properly
+inherited and their templates easily changed
+
+---

Old:

  South-0.7.6.tar.gz

New:

  South-0.8.2.tar.gz



Other differences:
--
++ python-South.spec ++
--- /var/tmp/diff_new_pack.x7yn7f/_old  2013-10-01 08:34:08.0 +0200
+++ /var/tmp/diff_new_pack.x7yn7f/_new  2013-10-01 08:34:08.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-South
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python-South
-Version:0.7.6
+Version:0.8.2
 Release:0
 Url:http://south.aeracode.org/
 Summary:South: Migrations for Django
@@ -37,7 +37,8 @@
 %endif
 
 %description
-South is an intelligent database migrations library for the Django web 
framework. It is database-independent and DVCS-friendly, as well as a whole 
host of other features.
+South is an intelligent database migrations library for the Django web 
framework.
+It is database-independent and DVCS-friendly, as well as a whole host of other 
features.
 
 %prep
 %setup -q -n South-%{version}

++ South-0.7.6.tar.gz - South-0.8.2.tar.gz ++
 3560 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-South for openSUSE:Factory

2012-08-26 Thread h_root
Hello community,

here is the log from the commit of package python-South for openSUSE:Factory 
checked in at 2012-08-26 11:34:10

Comparing /work/SRC/openSUSE:Factory/python-South (Old)
 and  /work/SRC/openSUSE:Factory/.python-South.new (New)


Package is python-South, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-South/python-South.changes
2012-05-29 10:36:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-South.new/python-South.changes   
2012-08-26 11:34:12.0 +0200
@@ -1,0 +2,12 @@
+Sat Aug  4 14:16:39 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 0.7.6:
+  - There is now a new --update switch, which you can use with
+schemamigration to merge updates you've just done into your
+most recent migration and then reverse and re-apply that
+migration to the database.
+  - Note that this will only work with migrations that aren't yet
+committed into a VCS - once that occurs, you should create a
+new migration rather than running --update on the current one.
+
+---

Old:

  South-0.7.5.tar.gz

New:

  South-0.7.6.tar.gz



Other differences:
--
++ python-South.spec ++
--- /var/tmp/diff_new_pack.LTGKLT/_old  2012-08-26 11:34:14.0 +0200
+++ /var/tmp/diff_new_pack.LTGKLT/_new  2012-08-26 11:34:14.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-South
-Version:0.7.5
+Version:0.7.6
 Release:0
 Url:http://south.aeracode.org/
 Summary:South: Migrations for Django

++ South-0.7.5.tar.gz - South-0.7.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.7.5/PKG-INFO new/South-0.7.6/PKG-INFO
--- old/South-0.7.5/PKG-INFO2012-05-08 18:25:01.0 +0200
+++ new/South-0.7.6/PKG-INFO2012-08-02 12:24:54.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: South
-Version: 0.7.5
+Version: 0.7.6
 Summary: South: Migrations for Django
 Home-page: http://south.aeracode.org/
 Author: Andrew Godwin  Andy McCurdy
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.7.5/South.egg-info/PKG-INFO 
new/South-0.7.6/South.egg-info/PKG-INFO
--- old/South-0.7.5/South.egg-info/PKG-INFO 2012-05-08 18:25:01.0 
+0200
+++ new/South-0.7.6/South.egg-info/PKG-INFO 2012-08-02 12:24:52.0 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: South
-Version: 0.7.5
+Version: 0.7.6
 Summary: South: Migrations for Django
 Home-page: http://south.aeracode.org/
 Author: Andrew Godwin  Andy McCurdy
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.7.5/setup.py new/South-0.7.6/setup.py
--- old/South-0.7.5/setup.py2012-05-08 18:24:16.0 +0200
+++ new/South-0.7.6/setup.py2012-07-08 12:02:15.0 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 
 # Use setuptools if we can
 try:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.7.5/south/__init__.py 
new/South-0.7.6/south/__init__.py
--- old/South-0.7.5/south/__init__.py   2012-05-08 12:28:24.0 +0200
+++ new/South-0.7.6/south/__init__.py   2012-08-02 12:14:45.0 +0200
@@ -2,7 +2,7 @@
 South - Useable migrations for Django apps
 
 
-__version__ = 0.7.5
+__version__ = 0.7.6
 __authors__ = [
 Andrew Godwin and...@aeracode.org,
 Andy McCurdy a...@andymccurdy.com
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.7.5/south/db/__init__.py 
new/South-0.7.6/south/db/__init__.py
--- old/South-0.7.5/south/db/__init__.py2012-03-17 13:25:06.0 
+0100
+++ new/South-0.7.6/south/db/__init__.py2012-07-08 12:02:15.0 
+0200
@@ -18,6 +18,9 @@
 'django.contrib.gis.db.backends.spatialite': 'sqlite3',
 'django.contrib.gis.db.backends.mysql': 'mysql',
 'django.contrib.gis.db.backends.oracle': 'oracle',
+'doj.backends.zxjdbc.postgresql': 'postgresql_psycopg2', #django-jython
+'doj.backends.zxjdbc.mysql': 'mysql', #django-jython
+'doj.backends.zxjdbc.oracle': 'oracle', #django-jython
 }
 
 # First, work out if we're multi-db or not, and which databases we have
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/South-0.7.5/south/db/firebird.py 
new/South-0.7.6/south/db/firebird.py
--- old/South-0.7.5/south/db/firebird.py2012-04-13 16:45:45.0 
+0200
+++ new/South-0.7.6/south/db/firebird.py2012-08-02 12:09:04.0 
+0200
@@ -86,6 +86,7 @@
 
 columns.append(col)
 if 

commit python-South for openSUSE:Factory

2012-05-29 Thread h_root
Hello community,

here is the log from the commit of package python-South for openSUSE:Factory 
checked in at 2012-05-29 10:36:02

Comparing /work/SRC/openSUSE:Factory/python-South (Old)
 and  /work/SRC/openSUSE:Factory/.python-South.new (New)


Package is python-South, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-South/python-South.changes
2012-03-29 19:02:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-South.new/python-South.changes   
2012-05-29 10:36:04.0 +0200
@@ -1,0 +2,17 @@
+Wed May 23 13:18:56 UTC 2012 - sasc...@suse.de
+
+- Update to version 0.7.5:
+  + Single-column indexes should now be named the same as if they
+were created using syncdb
+  + UUID default values now work correctly on the PostgreSQL backend.
+  + Transactions now use the correct database in a multi-db setup -
+previously, they were sometimes using the default database instead
+of another configured one.
+  + Deletion of self-referencing ForeignKeys is now possible again.
+  + A bug with ignoring changes to unmanaged models has been fixed,
+so they are now ignored properly.
+  + A few minor fixes, including the ability to change TextFields to 
+CharFields and vice-versa on the Oracle backend.
+  + Other fixes
+
+---

Old:

  South-0.7.4.tar.gz

New:

  South-0.7.5.tar.gz



Other differences:
--
++ python-South.spec ++
--- /var/tmp/diff_new_pack.z3wYjb/_old  2012-05-29 10:36:05.0 +0200
+++ /var/tmp/diff_new_pack.z3wYjb/_new  2012-05-29 10:36:05.0 +0200
@@ -11,12 +11,13 @@
 # case the license is the MIT License). An Open Source License is a
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
-#
+
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   python-South
-Version:0.7.4
+Version:0.7.5
 Release:0
 Url:http://south.aeracode.org/
 Summary:South: Migrations for Django

++ South-0.7.4.tar.gz - South-0.7.5.tar.gz ++
 1942 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org