[Python-modules-commits] r15705 - in packages/python-eventlet/trunk (17 files)

stefanor at users.alioth.debian.org stefanor at users.alioth.debian.org
Mon Feb 14 17:51:35 UTC 2011


    Date: Monday, February 14, 2011 @ 17:51:31
  Author: stefanor
Revision: 15705

[svn-inject] Applying Debian modifications (0.9.14-0ubuntu2) to trunk

Added:
  packages/python-eventlet/trunk/debian/
  packages/python-eventlet/trunk/debian/changelog
  packages/python-eventlet/trunk/debian/compat
  packages/python-eventlet/trunk/debian/control
  packages/python-eventlet/trunk/debian/copyright
  packages/python-eventlet/trunk/debian/docs
  packages/python-eventlet/trunk/debian/patches/
  packages/python-eventlet/trunk/debian/patches/series
  packages/python-eventlet/trunk/debian/patches/wrap-greenpipe.patch
  packages/python-eventlet/trunk/debian/postinst
  packages/python-eventlet/trunk/debian/pycompat
  packages/python-eventlet/trunk/debian/python-eventlet.lintian-overrides
  packages/python-eventlet/trunk/debian/pyversions
  packages/python-eventlet/trunk/debian/rules
  packages/python-eventlet/trunk/debian/source/
  packages/python-eventlet/trunk/debian/source/format
  packages/python-eventlet/trunk/debian/watch


Property changes on: packages/python-eventlet/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-eventlet/trunk/debian/changelog
===================================================================
--- packages/python-eventlet/trunk/debian/changelog	                        (rev 0)
+++ packages/python-eventlet/trunk/debian/changelog	2011-02-14 17:51:31 UTC (rev 15705)
@@ -0,0 +1,39 @@
+python-eventlet (0.9.14-0ubuntu2) natty; urgency=low
+
+  * Clean up left over .pyc files. 
+
+ -- Soren Hansen <soren at ubuntu.com>  Mon, 14 Feb 2011 15:18:58 +0100
+
+python-eventlet (0.9.14-0ubuntu1) natty; urgency=low
+
+  * New upstream release
+  * wrap-greenpipe.patch:
+    - Stop eventlet's subprocess module from attempting wrap GreenPipe
+      instances in another layer of GreenPipe.
+
+ -- Soren Hansen <soren at ubuntu.com>  Mon, 14 Feb 2011 11:36:08 +0100
+
+python-eventlet (0.9.13-0ubuntu1) natty; urgency=low
+
+  * New upstream release
+
+ -- Bhavani Shankar <bhavi at ubuntu.com>  Sun, 31 Oct 2010 20:28:03 +0530
+
+python-eventlet (0.9.12-0ubuntu2) maverick; urgency=low
+
+  * Add dependency on python-greenlet (LP: #657047)
+
+ -- Soren Hansen <soren at ubuntu.com>  Fri, 08 Oct 2010 21:49:53 +0200
+
+python-eventlet (0.9.12-0ubuntu1) maverick; urgency=low
+
+  * New upstream release. (FFe: LP: #645899)
+
+ -- Soren Hansen <soren at ubuntu.com>  Tue, 28 Sep 2010 21:20:32 +0200
+
+python-eventlet (0.9.10-0ubuntu1) maverick; urgency=low
+
+  * Initial upload to Ubuntu. (FFe: LP: #620368)
+
+ -- Soren Hansen <soren at ubuntu.com>  Mon, 23 Aug 2010 08:54:30 +0200
+

Added: packages/python-eventlet/trunk/debian/compat
===================================================================
--- packages/python-eventlet/trunk/debian/compat	                        (rev 0)
+++ packages/python-eventlet/trunk/debian/compat	2011-02-14 17:51:31 UTC (rev 15705)
@@ -0,0 +1 @@
+7

Added: packages/python-eventlet/trunk/debian/control
===================================================================
--- packages/python-eventlet/trunk/debian/control	                        (rev 0)
+++ packages/python-eventlet/trunk/debian/control	2011-02-14 17:51:31 UTC (rev 15705)
@@ -0,0 +1,28 @@
+Source: python-eventlet
+Section: python
+Priority: optional
+Maintainer: Ubuntu Developers <ubuntu-devel-discuss at lists.ubuntu.com>
+XSBC-Original-Maintainer: Monty Taylor <mordred at inaugust.com>
+Build-Depends: debhelper (>= 7),
+ python-all-dev (>= 2.5),
+ python-setuptools,
+ python-support
+Standards-Version: 3.9.1
+Homepage: http://eventlet.net
+
+Package: python-eventlet
+Architecture: any
+Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}, python-greenlet
+Provides: ${python:Provides}
+Description: A concurrent networking library for Python
+ Eventlet allows you to change how you run your code, not how you write it.
+ .
+ It uses epoll or libevent for highly scalable non-blocking I/O.
+ Coroutines ensure that the developer uses a blocking style of programming
+ that is similar to threading, but provide the benefits of non-blocking I/O.
+ The event dispatch is implicit, which means you can easily use Eventlet from
+ the Python interpreter, or as a small part of a larger application.
+ .
+ It's easy to get started using Eventlet, and easy to convert existing
+ applications to use it. Start off by looking at examples, common design
+ patterns, and the list of the basic API primitives.

Added: packages/python-eventlet/trunk/debian/copyright
===================================================================
--- packages/python-eventlet/trunk/debian/copyright	                        (rev 0)
+++ packages/python-eventlet/trunk/debian/copyright	2011-02-14 17:51:31 UTC (rev 15705)
@@ -0,0 +1,70 @@
+Format-Specification: http://dep.debian.net/deps/dep5/
+Debianized-By: Monty Taylor <mordred at inaugust.com>
+Debianized-Date: Tue, 13 Jul 2010 14:21:05 -0500
+Original-Source: http://eventlet.net
+
+Files: eventlet/tpool.py
+Files: tests/tpool_test.py
+Copyright: Copyright (c) 2007-2009, Linden Research, Inc.
+Copyright: Copyright (c) 2007, IBM Corp.
+License: Apache-2.0
+
+Files: eventlet/queue.py
+Copyright: Copyright (c) 2009 Denis Bilenko, denis.bilenko at gmail com
+Copyright: Copyright (c) 2010 Eventlet Contributors (see AUTHORS)
+License: MIT
+  Permission is hereby granted, free of charge, to any person obtaining a copy
+  of this software and associated documentation files (the "Software"), to deal
+  in the Software without restriction, including without limitation the rights
+  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+  copies of the Software, and to permit persons to whom the Software is
+  furnished to do so, subject to the following conditions:
+  .
+  The above copyright notice and this permission notice shall be included in
+  all copies or substantial portions of the Software.
+  .
+  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+  THE SOFTWARE.
+
+Files: eventlet/timeout.py
+Copyright: Copyright (c) 2009-2010 Denis Bilenko, denis.bilenko at gmail com
+Copyright: Copyright (c) 2010 Eventlet Contributors (see AUTHORS)
+License: MIT
+
+Files: eventlet/support/psycopg2_patcher.py
+Copyright: Copyright (C) 2010 Daniele Varrazzo <daniele.varrazzo at gmail.com>
+License: MIT
+
+Files: eventlet/support/greendns.py
+Copyright: Copyright (c) 2005-2010 Slide, Inc.
+License: BSD
+
+Files: eventlet/green/profile.py
+Copyright: Copyright (c) 2010, CCP Games
+License: BSD
+
+Files: tests/mock.py
+Copyright: Copyright (C) 2007-2009 Michael Foord
+License: BSD
+
+Files: debian/*
+Copyright: Copyright (C) 2010, Monty Taylor
+License: BSD
+
+Files: *
+Copyright: Copyright (c) 2005-2006, Bob Ippolito
+Copyright: Copyright (c) 2007-2010, Linden Research, Inc.
+Copyright: Copyright (c) 2008-2010, Eventlet Contributors (see AUTHORS)
+License: MIT
+
+On Debian GNU/Linux systems, the complete text of the Apache License
+v2 can be found in `/usr/share/common-licenses/Apache-2.0'.
+
+On Debian GNU/Linux systems, the complete text of the BSD License
+can be found in `/usr/share/common-licenses/BSD'.
+

Added: packages/python-eventlet/trunk/debian/docs
===================================================================
--- packages/python-eventlet/trunk/debian/docs	                        (rev 0)
+++ packages/python-eventlet/trunk/debian/docs	2011-02-14 17:51:31 UTC (rev 15705)
@@ -0,0 +1 @@
+README

Added: packages/python-eventlet/trunk/debian/patches/series
===================================================================
--- packages/python-eventlet/trunk/debian/patches/series	                        (rev 0)
+++ packages/python-eventlet/trunk/debian/patches/series	2011-02-14 17:51:31 UTC (rev 15705)
@@ -0,0 +1 @@
+wrap-greenpipe.patch

Added: packages/python-eventlet/trunk/debian/patches/wrap-greenpipe.patch
===================================================================
--- packages/python-eventlet/trunk/debian/patches/wrap-greenpipe.patch	                        (rev 0)
+++ packages/python-eventlet/trunk/debian/patches/wrap-greenpipe.patch	2011-02-14 17:51:31 UTC (rev 15705)
@@ -0,0 +1,19 @@
+Description: Prevent subprocess module from rewrapping GreenPipes
+Author: Soren Hansen <soren at linux2go.dk>
+Forwarded: https://bitbucket.org/which_linden/eventlet/issue/77/subprocess-module-fails-if-os-module-is
+Last-Update: 2011-02-14
+
+
+Index: python-eventlet-0.9.14/eventlet/green/subprocess.py
+===================================================================
+--- python-eventlet-0.9.14.orig/eventlet/green/subprocess.py	2011-02-14 11:31:39.917609581 +0100
++++ python-eventlet-0.9.14/eventlet/green/subprocess.py	2011-02-14 11:31:45.767618158 +0100
+@@ -27,7 +27,7 @@
+             # eventlet.processes.Process.run() method.
+             for attr in "stdin", "stdout", "stderr":
+                 pipe = getattr(self, attr)
+-                if pipe is not None:
++                if pipe is not None and not type(pipe) == greenio.GreenPipe:
+                     wrapped_pipe = greenio.GreenPipe(pipe, pipe.mode, bufsize)
+                     setattr(self, attr, wrapped_pipe)
+         __init__.__doc__ = subprocess_orig.Popen.__init__.__doc__

Added: packages/python-eventlet/trunk/debian/postinst
===================================================================
--- packages/python-eventlet/trunk/debian/postinst	                        (rev 0)
+++ packages/python-eventlet/trunk/debian/postinst	2011-02-14 17:51:31 UTC (rev 15705)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+if [ "$1" = "configure" ]
+then
+	# We need a bit of manual cleanup due to toolchain problems around
+    # the time when python2.7 was # made the default
+	if dpkg --compare-versions "$2" le 0.9.14-0ubuntu2~~ && \
+	   dpkg --compare-versions "$2" gt 0.9.13-0ubuntu1~
+	then
+		find /usr/lib/python2.7/dist-packages/eventlet -name '*.pyc' -delete || true
+		find /usr/lib/python2.7/dist-packages/eventlet -type d | sort -r | while read d; do rmdir "$d" || true; done
+	fi
+fi
+
+#DEBHELPER#


Property changes on: packages/python-eventlet/trunk/debian/postinst
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-eventlet/trunk/debian/pycompat
===================================================================
--- packages/python-eventlet/trunk/debian/pycompat	                        (rev 0)
+++ packages/python-eventlet/trunk/debian/pycompat	2011-02-14 17:51:31 UTC (rev 15705)
@@ -0,0 +1 @@
+2

Added: packages/python-eventlet/trunk/debian/python-eventlet.lintian-overrides
===================================================================
--- packages/python-eventlet/trunk/debian/python-eventlet.lintian-overrides	                        (rev 0)
+++ packages/python-eventlet/trunk/debian/python-eventlet.lintian-overrides	2011-02-14 17:51:31 UTC (rev 15705)
@@ -0,0 +1 @@
+python-eventlet: no-upstream-changelog

Added: packages/python-eventlet/trunk/debian/pyversions
===================================================================
--- packages/python-eventlet/trunk/debian/pyversions	                        (rev 0)
+++ packages/python-eventlet/trunk/debian/pyversions	2011-02-14 17:51:31 UTC (rev 15705)
@@ -0,0 +1 @@
+2.5-

Added: packages/python-eventlet/trunk/debian/rules
===================================================================
--- packages/python-eventlet/trunk/debian/rules	                        (rev 0)
+++ packages/python-eventlet/trunk/debian/rules	2011-02-14 17:51:31 UTC (rev 15705)
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@
+
+clean:
+	dh clean
+	find . -name "*\.pyc" -delete


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

Added: packages/python-eventlet/trunk/debian/source/format
===================================================================
--- packages/python-eventlet/trunk/debian/source/format	                        (rev 0)
+++ packages/python-eventlet/trunk/debian/source/format	2011-02-14 17:51:31 UTC (rev 15705)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-eventlet/trunk/debian/watch
===================================================================
--- packages/python-eventlet/trunk/debian/watch	                        (rev 0)
+++ packages/python-eventlet/trunk/debian/watch	2011-02-14 17:51:31 UTC (rev 15705)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/e/eventlet/eventlet-(.*)\.(.*)\.(.*)\.tar\.gz




More information about the Python-modules-commits mailing list