debian/0000755000000000000000000000000011755254361007177 5ustar debian/rules0000755000000000000000000000057611746015560010263 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 PYTHON2=$(shell pyversions -vr) %: dh $@ --with python2 override_dh_auto_clean: dh_auto_clean rm -rf django_evolution.egg-info ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) test-python%: python$* tests/runtests.py override_dh_auto_test: $(PYTHON2:%=test-python%) endif debian/watch0000644000000000000000000000032211744064703010222 0ustar # Compulsory line, this is a version 3 file version=3 # Unfortunately upstream currently don't provide any releases on homepage http://pypi.python.org/pypi/django_evolution/ .*django_evolution-(.*)\.tar\.gz.* debian/patches/0000755000000000000000000000000011746540110010614 5ustar debian/patches/series0000644000000000000000000000004711746537274012053 0ustar exclude_tests evolve_fix_get_mutations debian/patches/evolve_fix_get_mutations0000644000000000000000000000114311746537613015664 0ustar Description: Fix pyflakes error in get_mutations() Author: Dmitry Nezhevenko Bug: http://code.google.com/p/django-evolution/issues/detail?id=121 --- django-evolution-0.6.7.orig/django_evolution/evolve.py +++ django-evolution-0.6.7/django_evolution/evolve.py @@ -69,7 +69,7 @@ def get_mutations(app, evolution_labels, for filename in filenames: if os.path.exists(filename): sql = [] - sql_file = open(sql_file_name) + sql_file = open(filename) for line in sql_file: sql.append(line) debian/patches/exclude_tests0000644000000000000000000000120311744070354013414 0ustar Description: exclude tests from build Author: Dmitry Nezhevenko Index: python-django-evolution-0.6.7/setup.py =================================================================== --- python-django-evolution-0.6.7.orig/setup.py 2012-04-19 23:07:45.000000000 +0300 +++ python-django-evolution-0.6.7/setup.py 2012-04-19 23:07:45.000000000 +0300 @@ -31,7 +31,7 @@ author_email='khoobks@westnet.com.au', maintainer='Christian Hammond', maintainer_email='chipx86@chipx86.com', - packages=find_packages(), + packages=find_packages(exclude=('tests',)), install_requires=[ 'Django>=1.1.1', ], debian/lintian-overrides0000644000000000000000000000025111746511375012557 0ustar # Upstream has no changelog at all. Asked upstream: http://code.google.com/p/django-evolution/issues/detail?id=130 python-django-evolution binary: no-upstream-changelog debian/compat0000644000000000000000000000000211744063735010376 0ustar 8 debian/changelog0000644000000000000000000000024311746507572011055 0ustar django-evolution (0.6.7-1) unstable; urgency=low * Initial release (Closes: #669426) -- Dmitry Nezhevenko Thu, 19 Apr 2012 22:30:34 +0300 debian/control0000644000000000000000000000147611746515754010620 0ustar Source: django-evolution Section: python Priority: optional Maintainer: Dmitry Nezhevenko Build-Depends: debhelper (>= 8), python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), python-django, python-nose Standards-Version: 3.9.3 X-Python-Version: >= 2.6 Homepage: http://code.google.com/p/django-evolution/ Package: python-django-evolution Architecture: all Depends: ${misc:Depends}, ${python:Depends} Suggests: python-nose Description: Implementation of schema evolution for the Django web framework Django Evolution is an extension to Django that allows you to track changes in your models over time, and to update the database to reflect those changes. . Django Evolution is a work in progress; the interfaces are not guaranteed to be stable, and the SQL that is generated may sometimes be in error. debian/copyright0000644000000000000000000000501711744207524011132 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: python-django-evolution Source: Files: * Copyright: 2007 Benjamin Khoo License: BSD Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . 3. Neither the name of Django Evolution nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Files: debian/* Copyright: 2012 Dmitry Nezhevenko License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . On Debian systems, the complete text of the GNU General Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". debian/source/0000755000000000000000000000000011744063735010500 5ustar debian/source/format0000644000000000000000000000001411744063735011706 0ustar 3.0 (quilt) debian/docs0000644000000000000000000000005711744065546010057 0ustar AUTHORS README docs/evolution.txt docs/faq.txt