r1496 - in zope.copy/trunk (10 files)

Brian Sutherland jinty-guest at alioth.debian.org
Tue Jun 9 16:15:30 UTC 2009


    Date: Tuesday, June 9, 2009 @ 16:15:29
  Author: jinty-guest
Revision: 1496

[svn-inject] Applying Debian modifications to trunk

Added:
  zope.copy/trunk/debian/
  zope.copy/trunk/debian/changelog
  zope.copy/trunk/debian/compat
  zope.copy/trunk/debian/control
  zope.copy/trunk/debian/copyright
  zope.copy/trunk/debian/rules
  zope.copy/trunk/debian/tests/
  zope.copy/trunk/debian/tests/all
  zope.copy/trunk/debian/tests/control
  zope.copy/trunk/debian/watch


Property changes on: zope.copy/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: zope.copy/trunk/debian/changelog
===================================================================
--- zope.copy/trunk/debian/changelog	                        (rev 0)
+++ zope.copy/trunk/debian/changelog	2009-06-09 16:15:29 UTC (rev 1496)
@@ -0,0 +1,5 @@
+zope.copy (3.5.0-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Brian Sutherland <brian at vanguardistas.net>  Mon, 08 Jun 2009 02:16:44 +0200

Added: zope.copy/trunk/debian/compat
===================================================================
--- zope.copy/trunk/debian/compat	                        (rev 0)
+++ zope.copy/trunk/debian/compat	2009-06-09 16:15:29 UTC (rev 1496)
@@ -0,0 +1 @@
+7

Added: zope.copy/trunk/debian/control
===================================================================
--- zope.copy/trunk/debian/control	                        (rev 0)
+++ zope.copy/trunk/debian/control	2009-06-09 16:15:29 UTC (rev 1496)
@@ -0,0 +1,20 @@
+Source: zope.copy
+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, python-all-dev, python-central, python-setuptools, python-van.pydeb
+Standards-Version: 3.8.1
+XS-Python-Version: all
+
+Package: python-zope.copy
+Architecture: all
+Depends: ${setuptools:Depends}, ${python:Depends}
+Provides: ${setuptools:Provides}, ${python:Provides}
+Suggests: ${setuptools:Suggests}
+XB-Python-Version: ${python:Versions}
+Description: Pluggable object copying mechanism
+ This package provides a pluggable way to copy persistent objects. It
+ was once extracted from the zc.copy package to contain much less
+ dependencies. In fact, we only depend on zope.interface to provide
+ pluggability.

Added: zope.copy/trunk/debian/copyright
===================================================================
--- zope.copy/trunk/debian/copyright	                        (rev 0)
+++ zope.copy/trunk/debian/copyright	2009-06-09 16:15:29 UTC (rev 1496)
@@ -0,0 +1,19 @@
+This package was debianized by Brian Sutherland <brian at vanguardistas.net>
+
+It was downloaded from http://pypi.python.org/pypi/zope.copy
+
+Copyright:
+
+Upstream Author: Zope Corporation and Contributers <zope3-dev at zope.org>
+
+Files contain this header:
+
+# Copyright (c) 2009 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: zope.copy/trunk/debian/rules
===================================================================
--- zope.copy/trunk/debian/rules	                        (rev 0)
+++ zope.copy/trunk/debian/rules	2009-06-09 16:15:29 UTC (rev 1496)
@@ -0,0 +1,3 @@
+#!/usr/bin/make -f
+
+include /usr/share/python-van.pydeb/rules_templates/rules.1.mk


Property changes on: zope.copy/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: zope.copy/trunk/debian/tests/all
===================================================================
--- zope.copy/trunk/debian/tests/all	                        (rev 0)
+++ zope.copy/trunk/debian/tests/all	2009-06-09 16:15:29 UTC (rev 1496)
@@ -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', 'zope.copy',
+                '--test-path', test_path
+                ])
+sys.exit(exitcode)
+EOF
+
+for version in ${PYVERS}; do
+    python${version} ${TMPFILE}
+done
+
+rm $TMPFILE

Added: zope.copy/trunk/debian/tests/control
===================================================================
--- zope.copy/trunk/debian/tests/control	                        (rev 0)
+++ zope.copy/trunk/debian/tests/control	2009-06-09 16:15:29 UTC (rev 1496)
@@ -0,0 +1,3 @@
+Tests: all
+Features: no-build-needed
+Depends: @, python-zope.testing

Added: zope.copy/trunk/debian/watch
===================================================================
--- zope.copy/trunk/debian/watch	                        (rev 0)
+++ zope.copy/trunk/debian/watch	2009-06-09 16:15:29 UTC (rev 1496)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/z/zope.copy/zope.copy-(.*)\.tar\.gz




More information about the pkg-zope-commits mailing list