[Python-modules-commits] r21286 - in packages/alembic/trunk (17 files)

matthiask-guest at users.alioth.debian.org matthiask-guest at users.alioth.debian.org
Thu Apr 19 15:41:18 UTC 2012


    Date: Thursday, April 19, 2012 @ 15:41:15
  Author: matthiask-guest
Revision: 21286

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

Added:
  packages/alembic/trunk/debian/
  packages/alembic/trunk/debian/.pc/
  packages/alembic/trunk/debian/.pc/.quilt_patches
  packages/alembic/trunk/debian/.pc/.quilt_series
  packages/alembic/trunk/debian/.pc/.version
  packages/alembic/trunk/debian/.pc/001-remove-argparse-dependency.patch/
  packages/alembic/trunk/debian/.pc/applied-patches
  packages/alembic/trunk/debian/.pc/setup.py
  packages/alembic/trunk/debian/changelog
  packages/alembic/trunk/debian/clean
  packages/alembic/trunk/debian/compat
  packages/alembic/trunk/debian/control
  packages/alembic/trunk/debian/copyright
  packages/alembic/trunk/debian/rules
  packages/alembic/trunk/debian/source/
  packages/alembic/trunk/debian/source/format
  packages/alembic/trunk/debian/watch


Property changes on: packages/alembic/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/alembic/trunk/debian/.pc/.quilt_patches
===================================================================
--- packages/alembic/trunk/debian/.pc/.quilt_patches	                        (rev 0)
+++ packages/alembic/trunk/debian/.pc/.quilt_patches	2012-04-19 15:41:15 UTC (rev 21286)
@@ -0,0 +1 @@
+patches

Added: packages/alembic/trunk/debian/.pc/.quilt_series
===================================================================
--- packages/alembic/trunk/debian/.pc/.quilt_series	                        (rev 0)
+++ packages/alembic/trunk/debian/.pc/.quilt_series	2012-04-19 15:41:15 UTC (rev 21286)
@@ -0,0 +1 @@
+series

Added: packages/alembic/trunk/debian/.pc/.version
===================================================================
--- packages/alembic/trunk/debian/.pc/.version	                        (rev 0)
+++ packages/alembic/trunk/debian/.pc/.version	2012-04-19 15:41:15 UTC (rev 21286)
@@ -0,0 +1 @@
+2

Added: packages/alembic/trunk/debian/.pc/applied-patches
===================================================================
--- packages/alembic/trunk/debian/.pc/applied-patches	                        (rev 0)
+++ packages/alembic/trunk/debian/.pc/applied-patches	2012-04-19 15:41:15 UTC (rev 21286)
@@ -0,0 +1,2 @@
+001-remove-argparse-dependency.patch
+001-remove-argparse-dependency.patch

Added: packages/alembic/trunk/debian/.pc/setup.py
===================================================================
--- packages/alembic/trunk/debian/.pc/setup.py	                        (rev 0)
+++ packages/alembic/trunk/debian/.pc/setup.py	2012-04-19 15:41:15 UTC (rev 21286)
@@ -0,0 +1,55 @@
+from setuptools import setup, find_packages
+import sys
+import os
+import re
+
+extra = {}
+if sys.version_info >= (3, 0):
+    extra.update(
+        use_2to3=True,
+    )
+
+v = open(os.path.join(os.path.dirname(__file__), 'alembic', '__init__.py'))
+VERSION = re.compile(r".*__version__ = '(.*?)'", re.S).match(v.read()).group(1)
+v.close()
+
+readme = os.path.join(os.path.dirname(__file__), 'README.rst')
+
+
+setup(name='alembic',
+      version=VERSION,
+      description="A database migration tool for SQLAlchemy.",
+      long_description=open(readme).read(),
+      classifiers=[
+      'Development Status :: 3 - Alpha',
+      'Environment :: Console',
+      'Intended Audience :: Developers',
+      'Programming Language :: Python',
+      'Programming Language :: Python :: 3',
+      'Programming Language :: Python :: Implementation :: CPython',
+      'Programming Language :: Python :: Implementation :: PyPy',
+      'Topic :: Database :: Front-Ends',
+      ],
+      keywords='SQLAlchemy migrations',
+      author='Mike Bayer',
+      author_email='mike at zzzcomputing.com',
+      url='http://bitbucket.org/zzzeek/alembic',
+      license='MIT',
+      packages=find_packages('.', exclude=['examples*', 'test*']),
+      include_package_data=True,
+      tests_require = ['nose >= 0.11'],
+      test_suite = "nose.collector",
+      zip_safe=False,
+      install_requires=[
+          'SQLAlchemy>=0.6.0',
+          'Mako',
+          # TODO: should this not be here if the env. is 
+          # Python 2.7/3.2 ? not sure how this is supposed 
+          # to be handled
+          'argparse'
+      ],
+      entry_points = {
+        'console_scripts': [ 'alembic = alembic.config:main' ],
+      },
+      **extra
+)

Added: packages/alembic/trunk/debian/changelog
===================================================================
--- packages/alembic/trunk/debian/changelog	                        (rev 0)
+++ packages/alembic/trunk/debian/changelog	2012-04-19 15:41:15 UTC (rev 21286)
@@ -0,0 +1,5 @@
+alembic (0.3.1-1) unstable; urgency=low
+
+  * Initial release. (Closes: #669404)
+
+ -- Matthias Kümmerer <matthias at matthias-k.org>  Thu, 19 Apr 2012 18:32:56 +0200

Added: packages/alembic/trunk/debian/clean
===================================================================
--- packages/alembic/trunk/debian/clean	                        (rev 0)
+++ packages/alembic/trunk/debian/clean	2012-04-19 15:41:15 UTC (rev 21286)
@@ -0,0 +1 @@
+alembic.egg-info/*

Added: packages/alembic/trunk/debian/compat
===================================================================
--- packages/alembic/trunk/debian/compat	                        (rev 0)
+++ packages/alembic/trunk/debian/compat	2012-04-19 15:41:15 UTC (rev 21286)
@@ -0,0 +1 @@
+8

Added: packages/alembic/trunk/debian/control
===================================================================
--- packages/alembic/trunk/debian/control	                        (rev 0)
+++ packages/alembic/trunk/debian/control	2012-04-19 15:41:15 UTC (rev 21286)
@@ -0,0 +1,29 @@
+Source: alembic
+Section: python
+Priority: extra
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Matthias Kümmerer <matthias at matthias-k.org>
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/alembic/trunk/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/alembic/trunk/
+Standards-Version: 3.9.3
+Homepage: http://www.bitbucket.org/zzzeek/alembic
+Build-Depends: debhelper (>= 8), python-all, python-setuptools,
+ python-nose, python-sqlalchemy, python-mako
+
+Package: alembic
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-sqlalchemy,
+ python-mako
+Provides: ${python:Provides}
+Description: lightweight database migration tool for SQLAlchemy
+ Alembic is a new database migration tool, written by the author
+ of SQLAlchemy. A migration tool offers the following functionality:
+ .
+  * Can emit ALTER statements to a database in order to change the
+    structure of tables and other constructs
+  * Provides a system whereby "migration scripts" may be constructed;
+    each script indicates a particular series of steps that can
+    "upgrade" a target database to a new version, and optionally a
+    series of steps that can "downgrade" similarly, doing the same
+    steps in reverse.
+  * Allows the scripts to execute in some sequential manner.

Added: packages/alembic/trunk/debian/copyright
===================================================================
--- packages/alembic/trunk/debian/copyright	                        (rev 0)
+++ packages/alembic/trunk/debian/copyright	2012-04-19 15:41:15 UTC (rev 21286)
@@ -0,0 +1,32 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: alembic
+Upstream-Contact: Mike Bayer
+Source: http://pypi.python.org/pypi/alembic
+
+Files: *
+Copyright: 2009-2012, Michael Bayer
+License: MIT
+
+Files: debian/*
+Copyright: 2012, Matthias Kümmerer <matthias at matthias-k.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/alembic/trunk/debian/rules
===================================================================
--- packages/alembic/trunk/debian/rules	                        (rev 0)
+++ packages/alembic/trunk/debian/rules	2012-04-19 15:41:15 UTC (rev 21286)
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@ --with=python2
+
+override_dh_auto_test:
+	nosetests


Property changes on: packages/alembic/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/alembic/trunk/debian/source/format
===================================================================
--- packages/alembic/trunk/debian/source/format	                        (rev 0)
+++ packages/alembic/trunk/debian/source/format	2012-04-19 15:41:15 UTC (rev 21286)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/alembic/trunk/debian/watch
===================================================================
--- packages/alembic/trunk/debian/watch	                        (rev 0)
+++ packages/alembic/trunk/debian/watch	2012-04-19 15:41:15 UTC (rev 21286)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/a/alembic/alembic-(.+)\.tar\.gz




More information about the Python-modules-commits mailing list