[Python-modules-commits] r2068 - in /packages/decorator/trunk: debian/ decorator.egg-info/

malex at users.alioth.debian.org malex at users.alioth.debian.org
Fri Apr 13 20:20:38 UTC 2007


Author: malex
Date: Fri Apr 13 20:20:37 2007
New Revision: 2068

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=2068
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    packages/decorator/trunk/debian/   (with props)
    packages/decorator/trunk/debian/changelog
    packages/decorator/trunk/debian/compat
    packages/decorator/trunk/debian/control
    packages/decorator/trunk/debian/copyright
    packages/decorator/trunk/debian/dirs
    packages/decorator/trunk/debian/docs
    packages/decorator/trunk/debian/rules   (with props)
    packages/decorator/trunk/decorator.egg-info/
    packages/decorator/trunk/decorator.egg-info/PKG-INFO
    packages/decorator/trunk/decorator.egg-info/SOURCES.txt
    packages/decorator/trunk/decorator.egg-info/dependency_links.txt
    packages/decorator/trunk/decorator.egg-info/top_level.txt

Propchange: packages/decorator/trunk/debian/
------------------------------------------------------------------------------
    mergeWithUpstream = 1

Added: packages/decorator/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/decorator/trunk/debian/changelog?rev=2068&op=file
==============================================================================
--- packages/decorator/trunk/debian/changelog (added)
+++ packages/decorator/trunk/debian/changelog Fri Apr 13 20:20:37 2007
@@ -1,0 +1,6 @@
+decorator (2.0.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #419127).
+
+ -- Oleksandr Moskalenko <malex at debian.org>  Fri, 13 Apr 2007 13:10:43 -0600
+

Added: packages/decorator/trunk/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/decorator/trunk/debian/compat?rev=2068&op=file
==============================================================================
--- packages/decorator/trunk/debian/compat (added)
+++ packages/decorator/trunk/debian/compat Fri Apr 13 20:20:37 2007
@@ -1,0 +1,1 @@
+5

Added: packages/decorator/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/decorator/trunk/debian/control?rev=2068&op=file
==============================================================================
--- packages/decorator/trunk/debian/control (added)
+++ packages/decorator/trunk/debian/control Fri Apr 13 20:20:37 2007
@@ -1,0 +1,30 @@
+Source: decorator
+Section: web
+Priority: optional
+Maintainer: Oleksandr Moskalenko <malex at debian.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 5), python (>= 2.4), python-all-dev, python-support (>= 0.4.17), python-setuptools (>= 0.6b3-1)
+Standards-Version: 3.7.2
+XS-Python-Version: all
+XS-Vcs-Svn: svn://svn.debian.org/python-modules/packages/decorator/trunk/
+XS-Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/decorator/trunk/?op=log
+
+Package: python-decorator
+Architecture: all
+Depends: ${python:Depends}, python, python-myghtyutils
+XB-Python-Version: ${python:Versions}
+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 separation of concerns;
+    * decorators enhance readability and maintenability;
+    * 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.

Added: packages/decorator/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/decorator/trunk/debian/copyright?rev=2068&op=file
==============================================================================
--- packages/decorator/trunk/debian/copyright (added)
+++ packages/decorator/trunk/debian/copyright Fri Apr 13 20:20:37 2007
@@ -1,0 +1,20 @@
+This package was debianized by Oleksandr Moskalenko <malex at debian.org> on
+Fri, 13 Apr 2007 13:10:43 -0600.
+
+It was downloaded from
+http://www.phyast.pitt.edu/~micheles/python/documentation.html
+
+Upstream Author: Michele Simionato <michele.simionato at gmail.com>
+
+Copyright: 2007 Michele Simionato <michele.simionato at 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 (C) 2007, Oleksandr Moskalenko <malex at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: packages/decorator/trunk/debian/dirs
URL: http://svn.debian.org/wsvn/python-modules/packages/decorator/trunk/debian/dirs?rev=2068&op=file
==============================================================================
--- packages/decorator/trunk/debian/dirs (added)
+++ packages/decorator/trunk/debian/dirs Fri Apr 13 20:20:37 2007
@@ -1,0 +1,1 @@
+usr/share/python-support/python-decorator

Added: packages/decorator/trunk/debian/docs
URL: http://svn.debian.org/wsvn/python-modules/packages/decorator/trunk/debian/docs?rev=2068&op=file
==============================================================================
--- packages/decorator/trunk/debian/docs (added)
+++ packages/decorator/trunk/debian/docs Fri Apr 13 20:20:37 2007
@@ -1,0 +1,5 @@
+CHANGES.txt
+documentation.html
+documentation.pdf
+documentation.txt
+README.txt

Added: packages/decorator/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/decorator/trunk/debian/rules?rev=2068&op=file
==============================================================================
--- packages/decorator/trunk/debian/rules (added)
+++ packages/decorator/trunk/debian/rules Fri Apr 13 20:20:37 2007
@@ -1,0 +1,61 @@
+#!/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
+	mv debian/$(package)/usr/share/doc/$(package)/CHANGES.txt \
+	    debian/$(package)/usr/share/doc/$(package)/changelog
+	dh_installexamples
+	dh_strip
+	dh_compress -X.py
+	dh_fixperms
+	dh_pysupport
+	mv debian/$(package)/usr/share/python-support/$(package)/decorator-*.egg-info \
+	debian/$(package)/usr/share/python-support/$(package)/decorator-${DEB_UPSTREAM_VERSION}.egg-info
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-arch:
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

Propchange: packages/decorator/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/decorator/trunk/decorator.egg-info/PKG-INFO
URL: http://svn.debian.org/wsvn/python-modules/packages/decorator/trunk/decorator.egg-info/PKG-INFO?rev=2068&op=file
==============================================================================
--- packages/decorator/trunk/decorator.egg-info/PKG-INFO (added)
+++ packages/decorator/trunk/decorator.egg-info/PKG-INFO Fri Apr 13 20:20:37 2007
@@ -1,0 +1,29 @@
+Metadata-Version: 1.0
+Name: decorator
+Version: 2.0.1
+Summary: Better living through Python with decorators.
+Home-page: http://www.phyast.pitt.edu/~micheles/python/documentation.html
+Author: Michele Simionato
+Author-email: michele.simionato at gmail.com
+License: Python License
+Description: As of now, writing custom decorators correctly requires some experience
+        and it 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. Moreover, typical implementations
+        of decorators do not preserve the signature of decorated functions,
+        thus confusing both documentation tools and developers.
+        
+        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.
+Keywords: decorators generic utility
+Platform: UNKNOWN
+Classifier: Development Status :: 1 - Stable
+Classifier: Intended Audience :: Developers
+Classifier: License :: OSI Approved :: Python License
+Classifier: Natural Language :: English
+Classifier: Operating System :: OS Independent
+Classifier: Programming Language :: Python
+Classifier: Topic :: Software Development :: Libraries
+Classifier: Topic :: Utilities

Added: packages/decorator/trunk/decorator.egg-info/SOURCES.txt
URL: http://svn.debian.org/wsvn/python-modules/packages/decorator/trunk/decorator.egg-info/SOURCES.txt?rev=2068&op=file
==============================================================================
--- packages/decorator/trunk/decorator.egg-info/SOURCES.txt (added)
+++ packages/decorator/trunk/decorator.egg-info/SOURCES.txt Fri Apr 13 20:20:37 2007
@@ -1,0 +1,7 @@
+README.txt
+decorator.py
+setup.py
+decorator.egg-info/PKG-INFO
+decorator.egg-info/SOURCES.txt
+decorator.egg-info/dependency_links.txt
+decorator.egg-info/top_level.txt

Added: packages/decorator/trunk/decorator.egg-info/dependency_links.txt
URL: http://svn.debian.org/wsvn/python-modules/packages/decorator/trunk/decorator.egg-info/dependency_links.txt?rev=2068&op=file
==============================================================================
--- packages/decorator/trunk/decorator.egg-info/dependency_links.txt (added)
+++ packages/decorator/trunk/decorator.egg-info/dependency_links.txt Fri Apr 13 20:20:37 2007
@@ -1,0 +1,1 @@
+

Added: packages/decorator/trunk/decorator.egg-info/top_level.txt
URL: http://svn.debian.org/wsvn/python-modules/packages/decorator/trunk/decorator.egg-info/top_level.txt?rev=2068&op=file
==============================================================================
--- packages/decorator/trunk/decorator.egg-info/top_level.txt (added)
+++ packages/decorator/trunk/decorator.egg-info/top_level.txt Fri Apr 13 20:20:37 2007
@@ -1,0 +1,1 @@
+decorator




More information about the Python-modules-commits mailing list