[Python-modules-commits] r8617 - in packages/python-repoze.tm2/trunk/debian (7 files)

zack at users.alioth.debian.org zack at users.alioth.debian.org
Fri May 29 19:35:45 UTC 2009


    Date: Friday, May 29, 2009 @ 19:35:45
  Author: zack
Revision: 8617

packaging skeleton

Added:
  packages/python-repoze.tm2/trunk/debian/changelog
  packages/python-repoze.tm2/trunk/debian/compat
  packages/python-repoze.tm2/trunk/debian/control
  packages/python-repoze.tm2/trunk/debian/copyright
  packages/python-repoze.tm2/trunk/debian/docs
  packages/python-repoze.tm2/trunk/debian/rules
  packages/python-repoze.tm2/trunk/debian/watch

Added: packages/python-repoze.tm2/trunk/debian/changelog
===================================================================
--- packages/python-repoze.tm2/trunk/debian/changelog	                        (rev 0)
+++ packages/python-repoze.tm2/trunk/debian/changelog	2009-05-29 19:35:45 UTC (rev 8617)
@@ -0,0 +1,5 @@
+python-repoze.tm2 (1.0a4-1) UNRELEASED; urgency=low
+
+  * First release (Closes: #531046)
+
+ -- Stefano Zacchiroli <zack at debian.org>  Fri, 29 May 2009 18:45:17 +0200

Added: packages/python-repoze.tm2/trunk/debian/compat
===================================================================
--- packages/python-repoze.tm2/trunk/debian/compat	                        (rev 0)
+++ packages/python-repoze.tm2/trunk/debian/compat	2009-05-29 19:35:45 UTC (rev 8617)
@@ -0,0 +1 @@
+7

Added: packages/python-repoze.tm2/trunk/debian/control
===================================================================
--- packages/python-repoze.tm2/trunk/debian/control	                        (rev 0)
+++ packages/python-repoze.tm2/trunk/debian/control	2009-05-29 19:35:45 UTC (rev 8617)
@@ -0,0 +1,28 @@
+Source: python-repoze.tm2
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders:
+ Stefano Zacchiroli <zack at debian.org>
+Build-Depends:
+ debhelper (>= 7),
+ cdbs,
+ python-dev,
+ python-support,
+ python-setuptools,
+ python-sphinx
+Standards-Version: 3.8.1
+Homepage: http://www.repoze.org/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-repoze.tm2/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-repoze.tm2/trunk/
+
+Package: python-repoze.tm2
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python:Depends},
+ python-transaction
+Description: Zope-like transaction manager via WSGI middleware
+ repoze.tm2 is Python WSGI middleware which uses the ZODB (Zope
+ Object DataBase) package's transaction manager to wrap a call to
+ its pipeline children inside a transaction.

Added: packages/python-repoze.tm2/trunk/debian/copyright
===================================================================
--- packages/python-repoze.tm2/trunk/debian/copyright	                        (rev 0)
+++ packages/python-repoze.tm2/trunk/debian/copyright	2009-05-29 19:35:45 UTC (rev 8617)
@@ -0,0 +1,47 @@
+This package was debianized by Stefano Zacchiroli <zack at debian.org> on
+Fri, 29 May 2009 21:27:29 +0200.
+
+Author: Agendaless Consulting <repoze-dev at lists.repoze.org>
+
+Files: *
+Copyright: Copyright © 2007 Agendaless Consulting and Contributors
+License:
+  A copyright notice accompanies this license document that identifies
+  the copyright holders.
+ 
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions are
+  met:
+ 
+  1.  Redistributions in source code must retain the accompanying
+      copyright notice, this list of conditions, and the following
+      disclaimer.
+ 
+  2.  Redistributions in binary form must reproduce the accompanying
+      copyright notice, this list of conditions, and the following
+      disclaimer in the documentation and/or other materials provided
+      with the distribution.
+ 
+  3.  Names of the copyright holders must not be used to endorse or
+      promote products derived from this software without prior
+      written permission from the copyright holders.
+ 
+  4.  If any files are modified, you must cause the modified files to
+      carry prominent notices stating that you changed the files and
+      the date of any change.
+ 
+  Disclaimer
+ 
+    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND
+    ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+    TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+    PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+    HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
+    TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+    ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
+    TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
+    THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+    SUCH DAMAGE.
+

Added: packages/python-repoze.tm2/trunk/debian/docs
===================================================================
--- packages/python-repoze.tm2/trunk/debian/docs	                        (rev 0)
+++ packages/python-repoze.tm2/trunk/debian/docs	2009-05-29 19:35:45 UTC (rev 8617)
@@ -0,0 +1,3 @@
+README.txt
+TODO.txt
+docs/.build/html/*

Added: packages/python-repoze.tm2/trunk/debian/rules
===================================================================
--- packages/python-repoze.tm2/trunk/debian/rules	                        (rev 0)
+++ packages/python-repoze.tm2/trunk/debian/rules	2009-05-29 19:35:45 UTC (rev 8617)
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+DEB_PYTHON_SYSTEM = pysupport
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/python-distutils.mk
+
+DEB_PYTHON_INSTALL_ARGS_ALL += --single-version-externally-managed
+
+build/python-repoze.tm2:
+	$(MAKE) -C docs/ html


Property changes on: packages/python-repoze.tm2/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-repoze.tm2/trunk/debian/watch
===================================================================
--- packages/python-repoze.tm2/trunk/debian/watch	                        (rev 0)
+++ packages/python-repoze.tm2/trunk/debian/watch	2009-05-29 19:35:45 UTC (rev 8617)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/r/repoze.tm2/repoze.tm2-([0-9a-z.]*)\.tar\.gz




More information about the Python-modules-commits mailing list