r1435 - in transaction/trunk (10 files)

Brian Sutherland jinty-guest at alioth.debian.org
Wed Jun 3 17:32:52 UTC 2009


    Date: Wednesday, June 3, 2009 @ 17:32:51
  Author: jinty-guest
Revision: 1435

[svn-inject] Applying Debian modifications to trunk

Added:
  transaction/trunk/debian/
  transaction/trunk/debian/changelog
  transaction/trunk/debian/compat
  transaction/trunk/debian/control
  transaction/trunk/debian/copyright
  transaction/trunk/debian/rules
  transaction/trunk/debian/tests/
  transaction/trunk/debian/tests/all
  transaction/trunk/debian/tests/control
  transaction/trunk/debian/watch


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

Added: transaction/trunk/debian/changelog
===================================================================
--- transaction/trunk/debian/changelog	                        (rev 0)
+++ transaction/trunk/debian/changelog	2009-06-03 17:32:51 UTC (rev 1435)
@@ -0,0 +1,5 @@
+transaction (1.0~a1-1) unstable; urgency=low
+
+  * Inital Release
+
+ -- Brian Sutherland <brian at vanguardistas.net>  Mon, 25 May 2009 22:34:30 +0200

Added: transaction/trunk/debian/compat
===================================================================
--- transaction/trunk/debian/compat	                        (rev 0)
+++ transaction/trunk/debian/compat	2009-06-03 17:32:51 UTC (rev 1435)
@@ -0,0 +1 @@
+7

Added: transaction/trunk/debian/control
===================================================================
--- transaction/trunk/debian/control	                        (rev 0)
+++ transaction/trunk/debian/control	2009-06-03 17:32:51 UTC (rev 1435)
@@ -0,0 +1,17 @@
+Source: transaction
+Section: python
+Priority: extra
+Maintainer: Debian/Ubuntu Zope Team <pkg-zope-developers at lists.alioth.debian.org>
+Uploaders: Brian Sutherland <brian at vanguardistas.net>
+Build-Depends: debhelper (>= 5.0.38), python-all-dev (>= 2.3.5-11), python-central (>= 0.5.6), python-setuptools (>= 0.6b3-1), python-van.pydeb (>= 1.2.0-2)
+Standards-Version: 3.8.1
+XS-Python-Version: all
+
+Package: python-transaction
+Architecture: all
+Depends: ${setuptools:Depends}, ${python:Depends}
+Provides: ${python:Provides}, ${setuptools:Provides}
+Suggests: ${setuptools:Suggests}
+XB-Python-Version: ${python:Versions}
+Description: Transaction management for Python
+ This package contains a generic transaction implementation for Python.

Added: transaction/trunk/debian/copyright
===================================================================
--- transaction/trunk/debian/copyright	                        (rev 0)
+++ transaction/trunk/debian/copyright	2009-06-03 17:32:51 UTC (rev 1435)
@@ -0,0 +1,19 @@
+This package was debianized by Brian Sutherland <brian at vanguardistas.net>
+
+It was downloaded from http://pypi.python.org/pypi/transaction
+
+Copyright:
+
+Upstream Author: Zope Corporation and Contributers <zope3-dev at zope.org>
+
+Files contain this header:
+
+# Copyright (c) 2004 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.

Added: transaction/trunk/debian/rules
===================================================================
--- transaction/trunk/debian/rules	                        (rev 0)
+++ transaction/trunk/debian/rules	2009-06-03 17:32:51 UTC (rev 1435)
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+include /usr/share/python-van.pydeb/rules_templates/rules.1.mk


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

Added: transaction/trunk/debian/tests/all
===================================================================
--- transaction/trunk/debian/tests/all	                        (rev 0)
+++ transaction/trunk/debian/tests/all	2009-06-03 17:32:51 UTC (rev 1435)
@@ -0,0 +1,29 @@
+#!/bin/bash
+
+set -e
+
+PYVERS=$(pyversions -vr debian/control)
+TMPFILE=$(mktemp)
+
+cat > $TMPFILE << EOF
+import sys
+from zope.testing import testrunner
+
+subs = (sys.version_info[0], sys.version_info[1])
+test_path = '/usr/lib/python%s.%s/site-packages/' % subs
+
+
+
+exitcode = testrunner.run([
+                '--tests-pattern', '^f?tests$',
+                '-s', 'transaction',
+                '--test-path', test_path
+                ])
+sys.exit(exitcode)
+EOF
+
+for version in ${PYVERS}; do
+    python${version} ${TMPFILE}
+done
+
+m ${TMPFILE}

Added: transaction/trunk/debian/tests/control
===================================================================
--- transaction/trunk/debian/tests/control	                        (rev 0)
+++ transaction/trunk/debian/tests/control	2009-06-03 17:32:51 UTC (rev 1435)
@@ -0,0 +1,3 @@
+Tests: all
+Features: no-build-needed
+Depends: @, python-zope.testing

Added: transaction/trunk/debian/watch
===================================================================
--- transaction/trunk/debian/watch	                        (rev 0)
+++ transaction/trunk/debian/watch	2009-06-03 17:32:51 UTC (rev 1435)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/t/transaction/transaction-(.*)\.tar\.gz




More information about the pkg-zope-commits mailing list