--- python-decorator-3.2.0.orig/debian/copyright
+++ python-decorator-3.2.0/debian/copyright
@@ -0,0 +1,18 @@
+This package was debianized by Oleksandr Moskalenko <malex@debian.org> on
+Fri, 13 Apr 2007 13:10:43 -0600.
+
+It was downloaded from
+http://www.phyast.pitt.edu/~micheles/python/documentation.html
+
+Copyright 2007-2010 Michele Simionato <michele.simionato@gmail.com>
+
+License:
+
+ This software is licensed under the 2-clause BSD license.
+
+ On Debian systems, the complete text of the BSD license can be found in
+ /usr/share/common-licenses/BSD
+
+
+The Debian packaging is copyright 2007-2010, Oleksandr Moskalenko
+<malex@debian.org> and is licensed under the BSD license as above.
--- python-decorator-3.2.0.orig/debian/watch
+++ python-decorator-3.2.0/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/d/decorator/decorator-(.+)\.tar\.gz
--- python-decorator-3.2.0.orig/debian/dirs
+++ python-decorator-3.2.0/debian/dirs
@@ -0,0 +1 @@
+usr/share/python-support/python-decorator
--- python-decorator-3.2.0.orig/debian/python-decorator.doc-base
+++ python-decorator-3.2.0/debian/python-decorator.doc-base
@@ -0,0 +1,13 @@
+Document: python-decorator
+Title: Python Decorator Manual
+Author: Michele Simionato
+Abstract: This manuals describes the need for python-decorator module and its use.
+Section: Programming
+
+Format: HTML
+Index: /usr/share/doc/python-decorator/documentation.html
+Files: /usr/share/doc/python-decorator/documentation.html
+
+Format: PDF
+Files: /usr/share/doc/python-decorator/documentation.pdf.gz
+
--- python-decorator-3.2.0.orig/debian/control
+++ python-decorator-3.2.0/debian/control
@@ -0,0 +1,30 @@
+Source: python-decorator
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
+Uploaders: Oleksandr Moskalenko <malex@debian.org>, Piotr Ożarowski <piotr@debian.org>
+Build-Depends: debhelper (>= 5), python
+Build-Depends-Indep: python-support (>= 0.6.4), python-all, python-setuptools (>= 0.6b3~)
+Standards-Version: 3.8.4
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-decorator/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-decorator/trunk/
+Homepage: http://www.phyast.pitt.edu/~micheles/python/documentation.html
+
+Package: python-decorator
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends},
+Enhances: python-pylons
+Description: simplify usage of python decorators by programmers
+ Python 2.4 decorators have significantly changed the way Python programs are
+ structured.
+ * decorators help reduce boilerplate code;
+ * decorators help the separation of concerns;
+ * decorators enhance readability and maintainability;
+ * decorators are very explicit.
+ Still, as of now, writing custom decorators correctly requires some
+ experience and is not as easy as it could be. For instance, typical
+ implementations of decorators involve nested functions and we all know that
+ flat is better than nested.
+ The aim of the decorator module it to simplify the usage of decorators for
+ the average programmer and to popularize decorators usage giving examples of
+ useful decorators, such as memoize, tracing, redirecting_stdout, locked, etc.
--- python-decorator-3.2.0.orig/debian/docs
+++ python-decorator-3.2.0/debian/docs
@@ -0,0 +1,3 @@
+documentation.html
+documentation.pdf
+README.txt
--- python-decorator-3.2.0.orig/debian/rules
+++ python-decorator-3.2.0/debian/rules
@@ -0,0 +1,55 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+DEB_UPSTREAM_VERSION=$(shell dpkg-parsechangelog \
+ | grep ^Version: | cut -d ' ' -f 2 | cut -d '-' -f 1)
+package=python-decorator
+
+clean:
+ rm -f build-*
+ dh_testdir
+ dh_testroot
+ python setup.py clean
+ rm -rf build
+ find . -name *\.py[co] -exec rm -f {} \;
+ dh_clean
+
+build: build-indep
+
+build-indep:
+ touch $@
+
+build-stamp:
+ dh_testdir
+ python setup.py build
+ touch $@
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+ python setup.py install \
+ --no-compile \
+ --single-version-externally-managed \
+ --root $(CURDIR)/debian/$(package)
+
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_installdocs
+ dh_installexamples
+ dh_pysupport
+ dh_compress -X.py
+ dh_fixperms
+ dh_installdeb
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary-arch:
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
--- python-decorator-3.2.0.orig/debian/changelog
+++ python-decorator-3.2.0/debian/changelog
@@ -0,0 +1,108 @@
+python-decorator (3.2.0-1) unstable; urgency=low
+
+ * New upstream release
+ - changelog no longer available
+ * python added to Build-Depends (clean rule needs it)
+ * debian/watch file points to PyPI now
+
+ -- Piotr Ożarowski <piotr@debian.org> Tue, 25 May 2010 21:55:03 +0200
+
+python-decorator (3.1.2-2) unstable; urgency=low
+
+ * debian/control:
+ - Changed to DPMT group maintenance with Piotr Ożarowski
+ <piotr@debian.org> in uploaders.
+ - Updated Standards-Version to 3.8.4.
+ - Moved python depends to Build-Depends-Indep and updated them.
+ * debian/copyright: Changed packaging license to BSD to sync with upstream.
+ * debian/rules: Removed extraneous dh_strip and dh_shlibdeps.
+
+ -- Oleksandr Moskalenko <malex@debian.org> Thu, 18 Feb 2010 16:36:20 -0600
+
+python-decorator (3.1.2-1) unstable; urgency=low
+
+ * New upstream release.
+ * debian/docs: Removed documentation.txt.
+ * debian/copyright: Changed (C) to copyright and updated copyright years.
+ * debian/doc-base: Added a doc-base control file for registration of the
+ documentation.
+ * debian/control:
+ - Updated Standards-Version to 3.8.3.
+ - Moved python-support build-deps to Build-Depends-Indep.
+ [Sandro Tosi]
+ * debian/control
+ - switch Vcs-Browser field to viewsvn.
+
+ -- Oleksandr Moskalenko <malex@debian.org> Mon, 21 Sep 2009 21:57:40 -0400
+
+python-decorator (2.3.1-1) unstable; urgency=low
+
+ [Oleksandr Moskalenko]
+ * New upstream release.
+ * debian/control:
+ - Removed XS-Python-Version: all - not needed by python-support.
+ - Removed XB-Python-Version: ${python:Versions} - not needed by
+ python-support.
+ - Updated Standards-Version to 3.8.0.
+ - Removed python (>= 2.4) from Build-Depends - not needed by
+ python-support.
+ - Removed python (>=2.4) from Depends - not needed by python-support.
+ - Removed debian revision from python-setuptools Build-Depends version.
+
+ [Carlos Galisteo]
+ * debian/control:
+ - Added Homepage field.
+
+ -- Oleksandr Moskalenko <malex@debian.org> Tue, 30 Sep 2008 13:39:24 -0600
+
+python-decorator (2.2.0-2) unstable; urgency=low
+
+ * debian/control:
+ [Oleksandr Moskalenko]
+ - Fixed a type in the description (Thanks to Reuben Thomas
+ <rrt@sc3d.org>) (Closes: #446694).
+ [Piotr Ożarowski]
+ - Rename XS-Vcs-* fields to Vcs-* (dpkg supports them now).
+
+ -- Oleksandr Moskalenko <malex@debian.org> Thu, 15 Nov 2007 10:12:59 -0700
+
+python-decorator (2.2.0-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Oleksandr Moskalenko <malex@debian.org> Tue, 28 Aug 2007 18:30:22 -0600
+
+python-decorator (2.1.0-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Oleksandr Moskalenko <malex@debian.org> Wed, 18 Jul 2007 15:28:47 -0600
+
+python-decorator (2.0.1-4) unstable; urgency=low
+
+ * New python-support handles egg's directory name correctly:
+ @ Piotr Ożarowski <piotr@debian.org>
+ - bump python-support required version
+ - remove mv part from debian/rules
+
+ -- Oleksandr Moskalenko <malex@debian.org> Fri, 11 May 2007 11:12:01 -0600
+
+python-decorator (2.0.1-3) unstable; urgency=low
+
+ * debian/control: Changed section from web to python (Closes: #422981).
+
+ -- Oleksandr Moskalenko <malex@debian.org> Thu, 10 May 2007 00:23:24 -0600
+
+python-decorator (2.0.1-2) unstable; urgency=low
+
+ * Added debian/watch file
+ * Finished the NEW queue. Upload into unstable.
+
+ -- Oleksandr Moskalenko <malex@debian.org> Mon, 07 May 2007 15:30:30 -0600
+
+python-decorator (2.0.1-1) experimental; urgency=low
+
+ * Initial release (Closes: #419127).
+
+ -- Oleksandr Moskalenko <malex@debian.org> Fri, 13 Apr 2007 13:10:43 -0600
+
--- python-decorator-3.2.0.orig/debian/compat
+++ python-decorator-3.2.0/debian/compat
@@ -0,0 +1 @@
+5
--- python-decorator-3.2.0.orig/debian/source/format
+++ python-decorator-3.2.0/debian/source/format
@@ -0,0 +1 @@
+1.0