debian/0000775000000000000000000000000012267476560007207 5ustar debian/migrate0000775000000000000000000000013212255507464010554 0ustar #!/usr/bin/python import sys from migrate.versioning.shell import main sys.exit(main()) debian/preinst0000775000000000000000000000022012255507464010606 0ustar #!/bin/sh set -e if [ "$1" = upgrade ] && dpkg --compare-versions "$2" lt 0.5.3-1; then pycentral pkgremove python-migrate fi #DEBHELPER# debian/README.source0000664000000000000000000000350712255507464011366 0ustar This package uses quilt to manage all modifications to the upstream source. Changes are stored in the source package as diffs in debian/patches and applied during the build. To configure quilt to use debian/patches instead of patches, you want either to export QUILT_PATCHES=debian/patches in your environment or use this snippet in your ~/.quiltrc: for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then export QUILT_PATCHES=debian/patches fi done To get the fully patched source after unpacking the source package, cd to the root level of the source package and run: quilt push -a The last patch listed in debian/patches/series will become the current patch. To add a new set of changes, first run quilt push -a, and then run: quilt new where is a descriptive name for the patch, used as the filename in debian/patches. Then, for every file that will be modified by this patch, run: quilt add before editing those files. You must tell quilt with quilt add what files will be part of the patch before making changes or quilt will not work properly. After editing the files, run: quilt refresh to save the results as a patch. Alternately, if you already have an external patch and you just want to add it to the build system, run quilt push -a and then: quilt import -P /path/to/patch quilt push -a (add -p 0 to quilt import if needed). as above is the filename to use in debian/patches. The last quilt push -a will apply the patch to make sure it works properly. To remove an existing patch from the list of patches that will be applied, run: quilt delete You may need to run quilt pop -a to unapply patches first before running this command. debian/migrate-repository0000664000000000000000000000014712255507464012774 0ustar #!/usr/bin/python import sys from migrate.versioning.migrate_repository import main sys.exit(main()) debian/rules0000775000000000000000000000233512267475153010267 0ustar #!/usr/bin/make -f UPSTREAM_GIT = git://github.com/stackforge/sqlalchemy-migrate.git -include /usr/share/openstack-pkg-tools/pkgos.make export OSLO_PACKAGE_VERSION=$(VERSION) include /usr/share/python/python.mk DEB_UPSTREAM_VERSION=$(shell dpkg-parsechangelog \ | sed -rne 's,^Version: ([^-]+).*,\1,p') DOCS=$(shell find docs/ -name "*.rst" -printf "%p ") PYLIBDIR=$(call py_libdir,$(shell pyversions -d)) %: dh $@ --with python2,sphinxdoc override_dh_auto_clean: rm -rf dist build find . -name '*\.py[co]' -exec rm {} \; rm -f docs/reference.txt debian/install override_dh_auto_install: # install documentation PYTHONPATH=$(CURDIR) sphinx-build -b html -a -E -N \ doc/source \ debian/python-migrate/usr/share/doc/python-migrate/html/ cp debian/install.tmpl debian/install find migrate/versioning/templates -type f ! -name '*.py' | \ while read name; do \ echo "$$name $(PYLIBDIR)/`dirname $$name`" >> debian/install; \ done dh_auto_install override_dh_installchangelogs: dh_installchangelogs -i doc/source/changelog.rst override_dh_compress: dh_compress -i -X.py -X.rst -X.js -Xobjects.inv ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) override_dh_auto_test: python setup.py testr --slowest || true endif debian/source/0000775000000000000000000000000012255507464010502 5ustar debian/source/format0000664000000000000000000000001412255507464011710 0ustar 3.0 (quilt) debian/pycompat0000664000000000000000000000000212255507464010751 0ustar 2 debian/doc-base0000664000000000000000000000047212255507464010605 0ustar Document: python-migrate Title: Python migrate documentation Author: Evan Rosson, Jan Dittberner Abstract: Python migrate brings database schema migration for SQLAlchemy Section: Programming/Python Format: HTML Index: /usr/share/doc/python-migrate/html/index.html Files: /usr/share/doc/python-migrate/html/*.html debian/docs0000664000000000000000000000001312255507464010047 0ustar README.rst debian/compat0000664000000000000000000000000212255507464010400 0ustar 9 debian/copyright0000664000000000000000000000462212255507464011141 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: sqlalchemy-migrate Source: https://github.com/stackforge/sqlalchemy-migrate Files: debian/* Copyright: (c) 2006-2009, Jan Dittberner (c) 2013, Thomas Goirand License: GPL-2 Files: * Copyright: (c) 2013, OpenStack foundation (c) 2006, Evan Rosson (c) 2007-2009, Jan Dittberner (c) 2007-2009, Christian Simms (c) 2007-2009, Domen Kožar License: MIT License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: GPL-2 This program 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 program 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, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the complete text of the GNU General Public License v2 (GPL) can be found in /usr/share/common-licenses/GPL-2. debian/migrate-repository.10000664000000000000000000000146312255507464013135 0ustar .\" Hey, EMACS: -*- nroff -*- .TH MIGRATE-REPOSITORY 1 "2009-02-07" .SH NAME migrate-repository \- Migration of pre 0.4.5 SQLAlchemy migrate repositories .SH SYNOPSIS .B migrate-repository .I repository_directory .SH DESCRIPTION SQLAlchemy migrate uses a new repository format since version 0.4.5. All documentation for .B migrate is available in HTML format under /usr/share/doc/python-migrate/html. .SH SEE ALSO migrate's homepage at .B http://code.google.com/p/sqlalchemy-migrate/ .SH AUTHOR migrate was written by Evan Rosson . The package was taken over by a group of volunteers when Evan had no free time for maintaining it. .PP This manual page was written by Jan Dittberner , for the Debian project (but may be used by others). debian/install.tmpl0000664000000000000000000000007312255507464011546 0ustar debian/migrate /usr/bin debian/migrate-repository /usr/bin debian/control0000664000000000000000000000445112267476002010605 0ustar Source: migrate Section: python Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: PKG OpenStack Uploaders: Julien Danjou , Thomas Goirand , Mehdi Abaakouk , Jan Dittberner Build-Depends: debhelper (>= 9), python (>= 2.6.5~), python-decorator, python-feedparser, python-fixtures (>= 0.3.12), python-mox, python-mysqldb, python-pbr, python-psycopg2, python-scripttest, python-setuptools (>= 0.6b3), python-sphinx (>= 1.0.7+dfsg), openstack-pkg-tools, python-sqlalchemy, python-subunit, python-tempita (>= 0.4), python-testtools, python-tz, testrepository (>= 0.0.13) Standards-Version: 3.9.4 Homepage: https://github.com/stackforge/sqlalchemy-migrate Vcs-Git: git://anonscm.debian.org/openstack/migrate.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/migrate.git;a=summary Package: python-migrate Architecture: all Pre-Depends: dpkg (>= 1.15.6~) Depends: libjs-sphinxdoc, python-decorator, python-pbr, python-pkg-resources, python-sqlalchemy (>= 0.8), python-tempita (>= 0.4), ${misc:Depends}, ${python:Depends}, ${sphinxdoc:Depends} Description: Database schema migration for SQLAlchemy Inspired by Ruby on Rails' migrations, migrate provides a way to deal with database schema changes in SQLAlchemy projects. . SQLAlchemy-migrate is build on top of SQLAlchemy and provides a changeset and a versioning API for database schemas as well as a script utilizing these APIs. The database change sets are managed in a file based repository allowing upgrades and downgrades of database schema versions. The change sets may consist of Python code facilitating the changeset API or SQL scripts. . SQLAlchemy-migrate has support for MySQL, PostgreSQL, SQLite and Oracle databases. The support for Oracle is not as well tested as the support for the other database systems. debian/migrate.10000664000000000000000000000141512255507464010715 0ustar .\" Hey, EMACS: -*- nroff -*- .TH MIGRATE 1 "2006-12-25" .SH NAME migrate \- Database schema migration for SQLAlchemy .SH DESCRIPTION migrate provides database schema migration for SQLAlchemy. The migrate command is used to work with database schema revisions. All documentation for .B migrate is available in HTML format under /usr/share/doc/python-migrate/html. .SH SEE ALSO migrate's homepage at .B http://code.google.com/p/sqlalchemy-migrate/ .SH AUTHOR migrate was written by Evan Rosson . The package was taken over by a group of volunteers when Evan had no free time for maintaining it. .PP This manual page was written by Jan Dittberner , for the Debian project (but may be used by others). debian/watch0000664000000000000000000000015012255507464010227 0ustar version=3 http://pypi.python.org/packages/source/s/sqlalchemy-migrate/ sqlalchemy-migrate-(.*)\.tar\.gz debian/changelog0000664000000000000000000003410612267476550011064 0ustar migrate (0.8.2-3ubuntu1) trusty; urgency=medium * debian/control: Add openstack-pkg-tools as a build dependency. -- Chuck Short Tue, 21 Jan 2014 08:45:06 -0500 migrate (0.8.2-3) unstable; urgency=medium * Do not depend on python-sqlite which is in the Python standard library (Closes: #732795). * Adds export OSLO_PACKAGE_VERSION=$(VERSION) in rules to avoid FTBFS when building without git-buildpackage (Closes: #732794). -- Thomas Goirand Sun, 22 Dec 2013 14:54:09 +0800 migrate (0.8.2-2) unstable; urgency=medium * Removes python3-sphinx as build-depends, to avoid triggers of import warnings (Closes: #681073). * Removes duplicate build-depends: python-sphinx. -- Thomas Goirand Sun, 08 Dec 2013 14:01:14 +0800 migrate (0.8.2-1) unstable; urgency=low * New upstream release: - Now (build-)depends on python-pbr. * Taking over maintainership with previous agreement from Jan Dittberner: - Updated VCS fields to use the OpenStack team repositories. - Changed the Maintainer: and Uploaders: field. - Added a new debian/gbp.conf. - Added (not mandatory) include of pkgos.make. * Added OpenStack foundation as copyright holder. * Ran wrap-and-sort. * Upgraded to debhelper and compat >= 9. * Removed not needed version in build-depends of python-sqlalchemy. * Update path to doc/source/conf.py in Debian patch use-local-intersphinx.patch and disable_issuetracker.patch. * Removes Add_compatibility_with_sqlalchemy_0.8.patch and Fix_dropping_of_indexed_columns_in_sqlite_sa08.patch now applied upstream. * Changed debian/docs to use README.rst instead of just README. * Changed path of docs/changelog.rst to doc/source/ in debian/rules. * Fix section break in debian/copyright. * Added Pre-Depends: dpkg (>= 1.15.6~), because of xz compression. * Added a number of build-dependencies from test-requirements.txt. * Now run tests at build time. -- Thomas Goirand Thu, 28 Nov 2013 12:57:24 +0800 migrate (0.7.2-7) unstable; urgency=low * Adds upstrema patch which fixes dropping of indexed columns in sqlite with SQLAlchemy 08. * Switched control Homepage: and copyright Source: fields to the new upstream homepage. -- Thomas Goirand Fri, 18 Oct 2013 14:32:30 +0000 migrate (0.7.2-6) unstable; urgency=low * Version-Depends on python-sqlalchemy >= 0.8 (since lower versions are incompatible). * debian/copyright in parsable format v1. * Standards-Version: bump to 3.9.4. -- Thomas Goirand Mon, 08 Jul 2013 14:45:17 +0000 migrate (0.7.2-5) unstable; urgency=low * Team upload. [ Jakub Wilk ] * Use canonical URIs for Vcs-* fields. [ Thomas Goirand ] * Adds patch to make python-migrate works with SQLAlchemy >= 0.8. Thanks to Pádraig Brady for advising and providing the patch. (Closes: #715374) -- Thomas Goirand Mon, 08 Jul 2013 14:27:56 +0000 migrate (0.7.2-3) unstable; urgency=low * debian/control: - move dependencies from Build-Depends-Indep to Build-Depends - bump Standards-Version to 3.9.3 (no changes) - fix lintian error for dh_addon sphinxdoc by adding python-sphinx (>= 1.0.7+dfsg) | python3-sphinx to Build-Depends -- Jan Dittberner Thu, 17 May 2012 12:52:03 +0200 migrate (0.7.2-2) unstable; urgency=low * Fix "FTBFS: URLError: " by removing support for python-sphinxcontrib.issuetracker (Closes: #649621) - use debian/patches/disable_issuetracker.patch (thanks to Michael Terry) - debian/control: remove Build-Depends python-sphinxcontrib.issuetracker -- Jan Dittberner Sat, 26 Nov 2011 14:27:30 +0100 migrate (0.7.2-1) unstable; urgency=low * New upstream release. * debian/control: - add python-sphinxcontrib.issuetracker to Build-Depends-Indep - drop X-Python-Version - bump python-sphinx build dependency to >= 1.0.7+dfsg~ (for dh_sphinxdoc) - bump python-sqlalchemy dependency to >= 0.6 (upstream support for older version has been dropped) - add libjs-sphinxdoc and ${sphinxdoc:Depends} to Depends - remove libjs-jquery from Depends (added automatically by dh_sphinxdoc) * debian/rules: - remove treatment for manage.py_tmpl (removed from upstream release) - use dh_sphinxdoc - remove manual sphinx doc installation * add debian/patches/use-local-intersphinx.patch and debian/patches/series to avoid fetching objects.inv from the web -- Jan Dittberner Wed, 02 Nov 2011 00:01:44 +0100 migrate (0.7.1-2) unstable; urgency=low * Fix "please update dependency on python-sqlalchemy", rebuild to fix python-sqlalchemy dependency (Closes: #636900) -- Jan Dittberner Sat, 06 Aug 2011 22:12:49 +0200 migrate (0.7.1-1) unstable; urgency=low * New upstream release (better fix for column creation for columns with foreign keys). -- Jan Dittberner Fri, 27 May 2011 23:05:06 +0200 migrate (0.7-1) unstable; urgency=low * New upstream release. * add compatibility with SQLAlchemy 0.7 * debian/control: remove unneeded Breaks: ${python:Breaks} -- Jan Dittberner Fri, 27 May 2011 15:27:40 +0200 migrate (0.6.1-3) unstable; urgency=low * debian/rules: add --buildsystem=python_distutils, remove override_dh_auto_build * debian/control: bump Standards-Version to 3.9.2 (no changes needed) -- Jan Dittberner Wed, 25 May 2011 13:44:29 +0200 migrate (0.6.1-1) unstable; urgency=low * New upstream release. * debian/control: - remove dependency on python-support - bump python dependency version to 2.6.5~ - drop XS-Python-Version, add X-Python-Version - add Breaks: ${python:Breaks} * debian/rules: - add --with python2 to dh call * remove debian/patches/use-absolute-imports-of-exception- classes.patch that has been applied upstream -- Jan Dittberner Fri, 11 Feb 2011 22:44:42 +0100 migrate (0.6-5) unstable; urgency=low * upload to unstable -- Jan Dittberner Sun, 06 Feb 2011 14:48:44 +0100 migrate (0.6-5~exp1) experimental; urgency=low * Fix "objects.inv should not be compressed" exclude objects.inv from dh_compress in debian/rules, thanks for the report to Michael Fladischer (Closes: #608747) * Fix "AttributeError: 'module' object has no attribute 'MigrateDeprecationWarning'" include patch debian/patches/use-absolute-imports-of-exception-classes.patch by Etienne Millon (Closes: #609259) -- Jan Dittberner Sun, 09 Jan 2011 16:02:32 +0100 migrate (0.6-4) unstable; urgency=low * debian/control: - remove dependency on python-codespeak-lib (Closes: #592102) - remove build dependency on python-codespeak-lib - add build dependency on python-tempita (>= 0.4) - bump Standards-Version to 3.9.1 (no changes needed) -- Jan Dittberner Sat, 07 Aug 2010 18:33:18 +0200 migrate (0.6-3) unstable; urgency=low * Fix "migrate gives ImportError if tempita is not installed" by adding missing dependency on python-tempita (>= 0.4) to debian/control (Closes: #589990) -- Jan Dittberner Thu, 22 Jul 2010 23:10:32 +0200 migrate (0.6-2) unstable; urgency=low * Upload to unstable. -- Jan Dittberner Mon, 12 Jul 2010 00:24:57 +0200 migrate (0.6-1) experimental; urgency=low * New upstream version. -- Jan Dittberner Sun, 11 Jul 2010 21:22:25 +0200 migrate (0.6~hg221-1) experimental; urgency=low * New upstream pre-release version. - add SQLAlchemy 0.6 compatibility * debian/source/format: - set format to 3.0 (quilt) * debian/control: - bump Standards-Version to 3.9.0 (no changes needed) - remove quilt dependency - change debhelper dependency to 7.0.50~ * debian/rules: - install docs/changelog.rst instead of CHANGELOG - remove explicit patching -- Jan Dittberner Sun, 04 Jul 2010 14:32:13 +0200 migrate (0.5.4-3) unstable; urgency=low * switch to dh7 * debian/control: - Build-Depends: increase minimum debhelper version to 7.0.50 - add ${misc:Depends} to python-migrate's Depends - remove XB-Python-Version * add debian/install.tmpl: - used as base for generating debian/install * debian/compat: - 5 -> 7 * debian/rules: - change handling of .egg-info (Closes: #552921) - move all customizations to override_dh_* rules - generate debian/install to install template files -- Jan Dittberner Thu, 29 Oct 2009 12:40:14 +0100 migrate (0.5.4-2) unstable; urgency=low * debian/control: - use Debian email address - bump Standards-Version to 3.8.3 (no changes needed) - add quilt to Build-Depends - add python-decorator to Build-Depends indep to fix documentation build * debian/copyright: - add Domen Kožar to upstream authors - update upstream URL - use Debian email address * add debian/patches/keep_empty_modules.patch to prevent python- support from deleting the required empty __init__.py files in the templates module (Closes: #549488) * add debian/README.source to document quilt usage * debian/rules: add quilt macros -- Jan Dittberner Sat, 03 Oct 2009 21:37:20 +0200 migrate (0.5.4-1) unstable; urgency=low * New upstream version * debian/control: add python-decorator dependency -- Jan Dittberner Sun, 07 Jun 2009 15:50:29 +0200 migrate (0.5.3-1) unstable; urgency=low * New upstream version * don't compress .js files to make search in html docs possible * switch to python-support * debian/copyright: update copyright years of upstream and Debian packaging * debian/control: - update Standards-Version to 3.8.1 (no changes needed) - build depend on python-sphinx >= 0.6.1 - build depends on python (>= 2.5.4-1~), drop python-all-dev dependency, no need to build for all versions - remove python-central dependency - add python-sqlalchemy to build-depends-indep to allow the build of complete API docs - make python-migrate depend on libjs-jquery instead of python-sphinx at installation time * debian/rules: - add --no-compile --install-layout=deb - use py_libdir macro from python.mk instead of hardcoded paths - only build for default Python version - link to jquery.js from libjs-jquery -- Jan Dittberner Fri, 10 Apr 2009 18:01:29 +0200 migrate (0.5.2-1) unstable; urgency=low * New upstream version * debian/rules: adapt to upstream changes (rename .static to _static when building docs) -- Jan Dittberner Wed, 18 Feb 2009 22:54:31 +0100 migrate (0.5.1.2-1) experimental; urgency=low * New upstream version * remove debian/patches/disable_py.dpatch because py is not used by upstream anymore * remove unused debian/patches/00dpatch.conf and debian/patches/00list * debian/rules: - remove dpatch support because it's not needed - build sphinx documentation in html - don't compress .rst files * debian/dirs: - remove docs suffix from /usr/share/doc/python-migrate * debian/control: - remove dpatch from Build-Depends - remove python-docutils from Build-Depends-Indep - add python-sphinx to Build-Depends-Indep and Depends - bump python-sqlalchemy's minimum required version * add debian/migrate-repository repository migration script * add debian/migrate-repository.1 man page for migrate-repository * remove debian/README.source because of dpatch removal -- Jan Dittberner Sat, 07 Feb 2009 23:13:31 +0100 migrate (0.4.5-2) unstable; urgency=low [ Sandro Tosi ] * debian/control - switch Vcs-Browser field to viewsvn [ Jan Dittberner ] * debian/control - improved description - depend on SQLAlchemy << 0.5~ -- Jan Dittberner Fri, 09 Jan 2009 23:35:11 +0100 migrate (0.4.5-1) unstable; urgency=low * New upstream version * debian/control + updated Standards-Version to 3.8.0 + add python-codespeak-lib to Depends to avoid pkg_resources warnings * debian/README.source file added -- Jan Dittberner Wed, 23 Jul 2008 22:12:53 +0200 migrate (0.4.4-1) unstable; urgency=low * New upstream release -- Jan Dittberner Fri, 04 Apr 2008 23:12:39 +0200 migrate (0.4.3-1) unstable; urgency=low * New upstream release * doc-base Section changed to Programming/Python -- Jan Dittberner Fri, 28 Mar 2008 20:10:27 +0100 migrate (0.4.2-2) unstable; urgency=low * Change Depends: in debian/control to use python-pkg-resources at runtime instead of python-setuptools (Closes: #468723) -- Jan Dittberner Sun, 02 Mar 2008 21:16:42 +0100 migrate (0.4.2-1) unstable; urgency=medium [ Jan Dittberner ] * New upstream release * debian/watch changed due to renamed upstream source archive * changed debian/rules to use the new .egg-info name [ Piotr Ożarowski ] * Add disable_py patch to prevent downloading "Py" Egg + python-codespeak-lib and dpatch added to Build-Depends * remove usr/lib *after* calling dh_pycentral * Install ez_install free (i.e. working) /usr/bin/migrate script -- Jan Dittberner Tue, 19 Feb 2008 19:45:35 +0100 migrate (0.4.1-1) unstable; urgency=medium * New upstream release (Closes: #464413) * incorporate upstream copyright changes * add Homepage, Vcs-Browser and Vcs-Svn fields to debian/control * don't depend on fixed revision numbers * update policy version to 3.7.3 * depend on python-sqlalchemy (>= 0.3.10) * add Debian Python Modules Team to Uploaders * use default Python version in /usr/bin/migrate's hashbang * add python-setuptools to Depends -- Jan Dittberner Sat, 16 Feb 2008 12:38:56 +0100 migrate (0.2.2-1) unstable; urgency=low * Initial release (Closes: #400570) -- Jan Dittberner Mon, 25 Dec 2006 13:50:22 +0100 debian/dirs0000664000000000000000000000003612255507464010065 0ustar /usr/share/doc/python-migrate debian/gbp.conf0000664000000000000000000000023712255507464010623 0ustar [DEFAULT] upstream-branch = master debian-branch = debian/unstable upstream-tag = %(version)s compression = xz [git-buildpackage] export-dir = ../build-area/ debian/manpages0000664000000000000000000000005412255507464010717 0ustar debian/migrate.1 debian/migrate-repository.1debian/patches/0000775000000000000000000000000012255507464010631 5ustar debian/patches/use-local-intersphinx.patch0000664000000000000000000000105212255507464016105 0ustar Subject: use local objects.inv for intersphinx configuration Author: Jan Dittberner --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -32,8 +32,7 @@ # link to sqlalchemy docs intersphinx_mapping = { - 'sqlalchemy': ('http://www.sqlalchemy.org/docs/', None), - 'python': ('http://docs.python.org/2.7', None)} + 'sqlalchemy': ('http://www.sqlalchemy.org/docs/', '/usr/share/doc/python-sphinx/html/objects.inv')} # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] debian/patches/keep_empty_modules.patch0000664000000000000000000000125712255507464015551 0ustar Add comments to the empty __init__.py files to keep python-support from removing them --- /dev/null +++ b/migrate/versioning/templates/__init__.py @@ -0,0 +1 @@ +# template module --- /dev/null +++ b/migrate/versioning/templates/repository/__init__.py @@ -0,0 +1 @@ +# template repository module --- /dev/null +++ b/migrate/versioning/templates/repository/default/__init__.py @@ -0,0 +1 @@ +# template repository default module --- /dev/null +++ b/migrate/versioning/templates/repository/default/versions/__init__.py @@ -0,0 +1 @@ +# template repository default versions module --- /dev/null +++ b/migrate/versioning/templates/script/__init__.py @@ -0,0 +1 @@ +# templates script module debian/patches/series0000664000000000000000000000012012255507464012037 0ustar use-local-intersphinx.patch keep_empty_modules.patch disable_issuetracker.patch debian/patches/disable_issuetracker.patch0000664000000000000000000000154312255507464016044 0ustar Description: Don't use issuetracker to avoid hitting the network during build Author: Michael Terry Forwarded: not-needed --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -28,7 +28,7 @@ # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'sphinxcontrib.issuetracker'] +extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx'] # link to sqlalchemy docs intersphinx_mapping = { @@ -96,8 +96,8 @@ # Options for sphinxcontrib.issuetracker # -------------------------------------- -issuetracker = 'google code' -issuetracker_project = 'sqlalchemy-migrate' +#issuetracker = 'google code' +#issuetracker_project = 'sqlalchemy-migrate' # Options for HTML output