[Python-modules-commits] r26971 - in packages/flask-migrate/trunk (12 files)

toabctl at users.alioth.debian.org toabctl at users.alioth.debian.org
Fri Jan 3 09:35:44 UTC 2014


    Date: Friday, January 3, 2014 @ 09:35:43
  Author: toabctl
Revision: 26971

[svn-inject] Applying Debian modifications (1.1.0-1) to trunk

Added:
  packages/flask-migrate/trunk/debian/
  packages/flask-migrate/trunk/debian/changelog
  packages/flask-migrate/trunk/debian/clean
  packages/flask-migrate/trunk/debian/compat
  packages/flask-migrate/trunk/debian/control
  packages/flask-migrate/trunk/debian/copyright
  packages/flask-migrate/trunk/debian/docs
  packages/flask-migrate/trunk/debian/py3dist-overrides
  packages/flask-migrate/trunk/debian/rules
  packages/flask-migrate/trunk/debian/source/
  packages/flask-migrate/trunk/debian/source/format
  packages/flask-migrate/trunk/debian/watch


Property changes on: packages/flask-migrate/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/flask-migrate/trunk/debian/changelog
===================================================================
--- packages/flask-migrate/trunk/debian/changelog	                        (rev 0)
+++ packages/flask-migrate/trunk/debian/changelog	2014-01-03 09:35:43 UTC (rev 26971)
@@ -0,0 +1,5 @@
+flask-migrate (1.1.0-1) UNRELEASED; urgency=medium
+
+  * Initial release.
+
+ -- Thomas Bechtold <toabctl at debian.org>  Fri, 03 Jan 2014 06:36:35 +0100

Added: packages/flask-migrate/trunk/debian/clean
===================================================================
--- packages/flask-migrate/trunk/debian/clean	                        (rev 0)
+++ packages/flask-migrate/trunk/debian/clean	2014-01-03 09:35:43 UTC (rev 26971)
@@ -0,0 +1 @@
+Flask_Migrate.egg-info/*

Added: packages/flask-migrate/trunk/debian/compat
===================================================================
--- packages/flask-migrate/trunk/debian/compat	                        (rev 0)
+++ packages/flask-migrate/trunk/debian/compat	2014-01-03 09:35:43 UTC (rev 26971)
@@ -0,0 +1 @@
+9

Added: packages/flask-migrate/trunk/debian/control
===================================================================
--- packages/flask-migrate/trunk/debian/control	                        (rev 0)
+++ packages/flask-migrate/trunk/debian/control	2014-01-03 09:35:43 UTC (rev 26971)
@@ -0,0 +1,42 @@
+Source: flask-migrate
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Thomas Bechtold <toabctl at debian.org>
+Build-Depends:
+ debhelper (>= 9),
+ dh-python,
+ python-all (>= 2.6.6-3),
+ python-setuptools,
+ python3-all,
+ python3-setuptools,
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.2
+Standards-Version: 3.9.5
+Homepage: https://pypi.python.org/pypi/Flask-Migrate
+
+Package: python-flask-migrate
+Architecture: all
+Depends:
+ ${misc:Depends}, 
+ ${python:Depends},
+ alembic (>= 0.6),
+Description: SQLAlchemy database migrations for Flask applications using Alembic
+ Flask-Migrate is an extension that handles SQLAlchemy database migrations for Flask
+ applications using Alembic. The database operations are provided as command line
+ arguments for Flask-Script.
+ .
+ This package contains the python2 module.
+
+Package: python3-flask-migrate
+Architecture: all
+Depends:
+ ${misc:Depends}, 
+ ${python3:Depends},
+ alembic (>= 0.6),
+Description: SQLAlchemy database migrations for Flask applications using Alembic
+  Flask-Migrate is an extension that handles SQLAlchemy database migrations for Flask
+ applications using Alembic. The database operations are provided as command line
+ arguments for Flask-Script.
+ .
+ This package contains the python3 module.

Added: packages/flask-migrate/trunk/debian/copyright
===================================================================
--- packages/flask-migrate/trunk/debian/copyright	                        (rev 0)
+++ packages/flask-migrate/trunk/debian/copyright	2014-01-03 09:35:43 UTC (rev 26971)
@@ -0,0 +1,30 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: flask-migrate
+Source: https://pypi.python.org/pypi/Flask-Migrate
+
+Files: *
+Copyright: 2013 Miguel Grinberg
+License: MIT
+
+Files: debian/*
+Copyright: 2013 Thomas Bechtold <toabctl at debian.org>
+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.

Added: packages/flask-migrate/trunk/debian/docs
===================================================================
--- packages/flask-migrate/trunk/debian/docs	                        (rev 0)
+++ packages/flask-migrate/trunk/debian/docs	2014-01-03 09:35:43 UTC (rev 26971)
@@ -0,0 +1 @@
+README.md

Added: packages/flask-migrate/trunk/debian/py3dist-overrides
===================================================================
--- packages/flask-migrate/trunk/debian/py3dist-overrides	                        (rev 0)
+++ packages/flask-migrate/trunk/debian/py3dist-overrides	2014-01-03 09:35:43 UTC (rev 26971)
@@ -0,0 +1 @@
+alembic alembic

Added: packages/flask-migrate/trunk/debian/rules
===================================================================
--- packages/flask-migrate/trunk/debian/rules	                        (rev 0)
+++ packages/flask-migrate/trunk/debian/rules	2014-01-03 09:35:43 UTC (rev 26971)
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=flask-migrate
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+# disable test suite for now because tests/ dir is not included in tarball
+# see https://github.com/miguelgrinberg/Flask-Migrate/issues/14
+override_dh_auto_test:
+


Property changes on: packages/flask-migrate/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/flask-migrate/trunk/debian/source/format
===================================================================
--- packages/flask-migrate/trunk/debian/source/format	                        (rev 0)
+++ packages/flask-migrate/trunk/debian/source/format	2014-01-03 09:35:43 UTC (rev 26971)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/flask-migrate/trunk/debian/watch
===================================================================
--- packages/flask-migrate/trunk/debian/watch	                        (rev 0)
+++ packages/flask-migrate/trunk/debian/watch	2014-01-03 09:35:43 UTC (rev 26971)
@@ -0,0 +1,2 @@
+version=3
+https://pypi.python.org/packages/source/F/Flask-Migrate/Flask-Migrate-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list