[Python-modules-commits] r8230 - in packages/pyro/trunk/debian (5 files)
bzed at users.alioth.debian.org
bzed at users.alioth.debian.org
Sun Apr 12 11:20:36 UTC 2009
Date: Sunday, April 12, 2009 @ 11:20:35
Author: bzed
Revision: 8230
* debian/patches/usr-bin-env-location.dpatch:
- Dropping patch, applied usptream.
Modified:
packages/pyro/trunk/debian/changelog
packages/pyro/trunk/debian/pyro.postinst
packages/pyro/trunk/debian/pyro.postrm
packages/pyro/trunk/debian/pyro.prerm
Deleted:
packages/pyro/trunk/debian/patches/usr-bin-env-location.dpatch
Modified: packages/pyro/trunk/debian/changelog
===================================================================
--- packages/pyro/trunk/debian/changelog 2009-04-12 11:15:03 UTC (rev 8229)
+++ packages/pyro/trunk/debian/changelog 2009-04-12 11:20:35 UTC (rev 8230)
@@ -6,8 +6,10 @@
[ Bernd Zeimetz ]
* New upstream release.
+ * debian/patches/usr-bin-env-location.dpatch:
+ - Dropping patch, applied usptream.
- -- Bernd Zeimetz <bzed at debian.org> Sun, 12 Apr 2009 13:16:21 +0200
+ -- Bernd Zeimetz <bzed at debian.org> Sun, 12 Apr 2009 13:20:22 +0200
pyro (3.7-2) unstable; urgency=medium
Deleted: packages/pyro/trunk/debian/patches/usr-bin-env-location.dpatch
===================================================================
--- packages/pyro/trunk/debian/patches/usr-bin-env-location.dpatch 2009-04-12 11:15:03 UTC (rev 8229)
+++ packages/pyro/trunk/debian/patches/usr-bin-env-location.dpatch 2009-04-12 11:20:35 UTC (rev 8230)
@@ -1,798 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## usr-bin-env-location.dpatch by Bernd Zeimetz <bernd at bzed.de>
-##
-## DP: fixing locations of the 'env' executeable, cleaning up shebangs
-
- at DPATCH@
-diff -urNad pyro~/Pyro/ext/daemonizer.py pyro/Pyro/ext/daemonizer.py
---- pyro~/Pyro/ext/daemonizer.py 2005-01-22 02:05:44.000000000 +0100
-+++ pyro/Pyro/ext/daemonizer.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#!/bin/env python
-+#!/usr/bin/env python
- #############################################################################
- #
- # $Id: daemonizer.py,v 1.3 2005/01/22 01:05:44 irmen Exp $
-diff -urNad pyro~/bin/pyro-esd pyro/bin/pyro-esd
---- pyro~/bin/pyro-esd 2007-04-30 16:25:56.000000000 +0200
-+++ pyro/bin/pyro-esd 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#!/bin/env python
-+#!/usr/bin/env python
-
- #############################################################################
- #
-diff -urNad pyro~/bin/pyro-nsd pyro/bin/pyro-nsd
---- pyro~/bin/pyro-nsd 2007-04-30 16:25:56.000000000 +0200
-+++ pyro/bin/pyro-nsd 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#!/bin/env python
-+#!/usr/bin/env python
-
- #############################################################################
- #
-diff -urNad pyro~/examples/AllInOne/allinone_ownloop.py pyro/examples/AllInOne/allinone_ownloop.py
---- pyro~/examples/AllInOne/allinone_ownloop.py 2006-11-12 01:32:41.000000000 +0100
-+++ pyro/examples/AllInOne/allinone_ownloop.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- #
- # This application creates a Name Server, Event Server,
- # Pyro server, and clients, and uses a custom event loop to keep them
-diff -urNad pyro~/examples/AllInOne/allinone_threads.py pyro/examples/AllInOne/allinone_threads.py
---- pyro~/examples/AllInOne/allinone_threads.py 2006-11-12 01:32:41.000000000 +0100
-+++ pyro/examples/AllInOne/allinone_threads.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- #
- # This application creates a Name Server, Event Server,
- # Pyro server, and clients, and uses threads to keep them
-diff -urNad pyro~/examples/Bank2/BankServer.py pyro/examples/Bank2/BankServer.py
---- pyro~/examples/Bank2/BankServer.py 2002-06-10 02:22:19.000000000 +0200
-+++ pyro/examples/Bank2/BankServer.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # The bank server.
-diff -urNad pyro~/examples/Bank2/client.py pyro/examples/Bank2/client.py
---- pyro~/examples/Bank2/client.py 2004-10-18 16:07:48.000000000 +0200
-+++ pyro/examples/Bank2/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # Bank client.
-diff -urNad pyro~/examples/BankExample/BankServer.py pyro/examples/BankExample/BankServer.py
---- pyro~/examples/BankExample/BankServer.py 2003-03-23 20:42:55.000000000 +0100
-+++ pyro/examples/BankExample/BankServer.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # The banks server
-diff -urNad pyro~/examples/BankExample/client.py pyro/examples/BankExample/client.py
---- pyro~/examples/BankExample/client.py 2005-05-26 23:25:17.000000000 +0200
-+++ pyro/examples/BankExample/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # Bank client.
-diff -urNad pyro~/examples/NS_sec_plugins/NSSecEx.py pyro/examples/NS_sec_plugins/NSSecEx.py
---- pyro~/examples/NS_sec_plugins/NSSecEx.py 2003-03-19 23:40:01.000000000 +0100
-+++ pyro/examples/NS_sec_plugins/NSSecEx.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # Example of Name Server security plugins.
-diff -urNad pyro~/examples/agent2/client.py pyro/examples/agent2/client.py
---- pyro~/examples/agent2/client.py 2007-02-11 22:31:15.000000000 +0100
-+++ pyro/examples/agent2/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, os
-
- from Pyro.errors import *
-diff -urNad pyro~/examples/agent2/serv/server.py pyro/examples/agent2/serv/server.py
---- pyro~/examples/agent2/serv/server.py 2007-02-11 22:26:59.000000000 +0100
-+++ pyro/examples/agent2/serv/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- # This server code is nearly the same as server.py from the agent example.
- # except for the path insert because it has to look 1 dir higher,
-diff -urNad pyro~/examples/agent3/client.py pyro/examples/agent3/client.py
---- pyro~/examples/agent3/client.py 2007-03-04 02:48:17.000000000 +0100
-+++ pyro/examples/agent3/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, os
-
- from Pyro.errors import *
-diff -urNad pyro~/examples/attributes/client.py pyro/examples/attributes/client.py
---- pyro~/examples/attributes/client.py 2006-11-12 01:42:46.000000000 +0100
-+++ pyro/examples/attributes/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, os
- import Pyro.util
-
-diff -urNad pyro~/examples/attributes/server.py pyro/examples/attributes/server.py
---- pyro~/examples/attributes/server.py 2005-05-26 23:25:17.000000000 +0200
-+++ pyro/examples/attributes/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, os
- import Pyro.core
- from Person import Person
-diff -urNad pyro~/examples/authenticate/NSSecEx.py pyro/examples/authenticate/NSSecEx.py
---- pyro~/examples/authenticate/NSSecEx.py 2002-06-26 23:54:48.000000000 +0200
-+++ pyro/examples/authenticate/NSSecEx.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- # Name Server security plugins.
-
-diff -urNad pyro~/examples/authenticate/client.py pyro/examples/authenticate/client.py
---- pyro~/examples/authenticate/client.py 2005-05-26 23:25:17.000000000 +0200
-+++ pyro/examples/authenticate/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import Pyro.naming, Pyro.core
- import Pyro.errors
-diff -urNad pyro~/examples/authenticate/server.py pyro/examples/authenticate/server.py
---- pyro~/examples/authenticate/server.py 2006-11-12 01:42:28.000000000 +0100
-+++ pyro/examples/authenticate/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys
- import Pyro.naming
- import Pyro.core
-diff -urNad pyro~/examples/autoreconnect/client.py pyro/examples/autoreconnect/client.py
---- pyro~/examples/autoreconnect/client.py 2005-05-26 23:25:17.000000000 +0200
-+++ pyro/examples/autoreconnect/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, time
- import Pyro.naming, Pyro.core
- from Pyro.protocol import getHostname
-diff -urNad pyro~/examples/autoreconnect/server.py pyro/examples/autoreconnect/server.py
---- pyro~/examples/autoreconnect/server.py 2006-11-12 02:33:46.000000000 +0100
-+++ pyro/examples/autoreconnect/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, time
- import Pyro.naming
- import Pyro.core
-diff -urNad pyro~/examples/benchmark/server.py pyro/examples/benchmark/server.py
---- pyro~/examples/benchmark/server.py 2002-05-26 21:45:57.000000000 +0200
-+++ pyro/examples/benchmark/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys,os
-
- sys.path.insert(0,os.pardir) # to find testserver.py
-diff -urNad pyro~/examples/callback/b2_client.py pyro/examples/callback/b2_client.py
---- pyro~/examples/callback/b2_client.py 2003-03-23 20:42:55.000000000 +0100
-+++ pyro/examples/callback/b2_client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import time, random
- import Pyro.core
-diff -urNad pyro~/examples/callback/b2_server.py pyro/examples/callback/b2_server.py
---- pyro~/examples/callback/b2_server.py 2003-03-23 20:42:55.000000000 +0100
-+++ pyro/examples/callback/b2_server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- # this is exactly the same server code as "bounce_server.py"
- # but this one uses "bouncer2" as Pyro object.
-diff -urNad pyro~/examples/callback/bounce_client.py pyro/examples/callback/bounce_client.py
---- pyro~/examples/callback/bounce_client.py 2003-01-19 19:49:01.000000000 +0100
-+++ pyro/examples/callback/bounce_client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import time, random
- import Pyro.core
-diff -urNad pyro~/examples/callback/bounce_server.py pyro/examples/callback/bounce_server.py
---- pyro~/examples/callback/bounce_server.py 2002-10-26 18:30:30.000000000 +0200
-+++ pyro/examples/callback/bounce_server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import Pyro.naming
- import Pyro.core
- from Pyro.errors import NamingError
-diff -urNad pyro~/examples/callback/cberror_client.py pyro/examples/callback/cberror_client.py
---- pyro~/examples/callback/cberror_client.py 2003-01-19 19:49:01.000000000 +0100
-+++ pyro/examples/callback/cberror_client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import time, random
- import Pyro.core
-diff -urNad pyro~/examples/callback/shout.py pyro/examples/callback/shout.py
---- pyro~/examples/callback/shout.py 2002-05-17 19:16:28.000000000 +0200
-+++ pyro/examples/callback/shout.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import time
- import Pyro.core
-diff -urNad pyro~/examples/callback/shout_client.py pyro/examples/callback/shout_client.py
---- pyro~/examples/callback/shout_client.py 2006-11-12 12:39:26.000000000 +0100
-+++ pyro/examples/callback/shout_client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import time, random
- import Pyro.core
-diff -urNad pyro~/examples/callback/shout_server.py pyro/examples/callback/shout_server.py
---- pyro~/examples/callback/shout_server.py 2006-11-12 13:15:31.000000000 +0100
-+++ pyro/examples/callback/shout_server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, os
- sys.path.insert(0,os.pardir) # to find testserver.py
-
-diff -urNad pyro~/examples/chatbox-ES/client.py pyro/examples/chatbox-ES/client.py
---- pyro~/examples/chatbox-ES/client.py 2006-11-12 02:18:34.000000000 +0100
-+++ pyro/examples/chatbox-ES/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- from Pyro.EventService.Clients import Publisher, Subscriber
- from server import CHAT_SERVER_NAME
-diff -urNad pyro~/examples/chatbox-ES/server.py pyro/examples/chatbox-ES/server.py
---- pyro~/examples/chatbox-ES/server.py 2003-03-23 20:42:55.000000000 +0100
-+++ pyro/examples/chatbox-ES/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- from Pyro.EventService.Clients import Publisher
- from Pyro.errors import NamingError
-diff -urNad pyro~/examples/chatbox-non-ES/client.py pyro/examples/chatbox-non-ES/client.py
---- pyro~/examples/chatbox-non-ES/client.py 2006-11-12 02:23:26.000000000 +0100
-+++ pyro/examples/chatbox-non-ES/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- from server import CHAT_SERVER_NAME
- from threading import Thread
-diff -urNad pyro~/examples/chatbox-non-ES/server.py pyro/examples/chatbox-non-ES/server.py
---- pyro~/examples/chatbox-non-ES/server.py 2006-11-12 13:15:31.000000000 +0100
-+++ pyro/examples/chatbox-non-ES/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- from threading import Thread, currentThread
- from Pyro.errors import NamingError
-diff -urNad pyro~/examples/circle/client.py pyro/examples/circle/client.py
---- pyro~/examples/circle/client.py 2005-05-26 23:25:17.000000000 +0200
-+++ pyro/examples/circle/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import sys
- import Pyro.core
-diff -urNad pyro~/examples/circle/servA.py pyro/examples/circle/servA.py
---- pyro~/examples/circle/servA.py 2006-11-12 02:37:00.000000000 +0100
-+++ pyro/examples/circle/servA.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import Pyro.naming
- import Pyro.core
- import chain
-diff -urNad pyro~/examples/circle/servB.py pyro/examples/circle/servB.py
---- pyro~/examples/circle/servB.py 2006-11-12 02:37:00.000000000 +0100
-+++ pyro/examples/circle/servB.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import Pyro.naming
- import Pyro.core
- import chain
-diff -urNad pyro~/examples/circle/servC.py pyro/examples/circle/servC.py
---- pyro~/examples/circle/servC.py 2006-11-12 02:37:00.000000000 +0100
-+++ pyro/examples/circle/servC.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import Pyro.naming
- import Pyro.core
- import chain
-diff -urNad pyro~/examples/countingcars/Client.py pyro/examples/countingcars/Client.py
---- pyro~/examples/countingcars/Client.py 2002-11-05 00:18:05.000000000 +0100
-+++ pyro/examples/countingcars/Client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- from Pyro.EventService.Clients import Subscriber
- from Pyro.errors import NamingError
-diff -urNad pyro~/examples/countingcars/Server.py pyro/examples/countingcars/Server.py
---- pyro~/examples/countingcars/Server.py 2002-01-16 02:18:57.000000000 +0100
-+++ pyro/examples/countingcars/Server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- from Pyro.EventService.Clients import Publisher
- from Pyro.errors import NamingError
-diff -urNad pyro~/examples/denyhosts/client.py pyro/examples/denyhosts/client.py
---- pyro~/examples/denyhosts/client.py 2002-05-17 19:16:28.000000000 +0200
-+++ pyro/examples/denyhosts/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # Notice: this client doesn't use the base testclient.py code
-diff -urNad pyro~/examples/denyhosts/server.py pyro/examples/denyhosts/server.py
---- pyro~/examples/denyhosts/server.py 2003-03-23 20:42:55.000000000 +0100
-+++ pyro/examples/denyhosts/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys
- import Pyro.naming, Pyro.core, Pyro.util, Pyro.protocol, Pyro.constants
- from Pyro.errors import PyroError,NamingError
-diff -urNad pyro~/examples/distributed-computing2/client.py pyro/examples/distributed-computing2/client.py
---- pyro~/examples/distributed-computing2/client.py 2006-11-11 17:30:49.000000000 +0100
-+++ pyro/examples/distributed-computing2/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import Pyro.core
- import Pyro.errors
- import Queue
-diff -urNad pyro~/examples/distributed-computing2/dispatcher.py pyro/examples/distributed-computing2/dispatcher.py
---- pyro~/examples/distributed-computing2/dispatcher.py 2006-11-11 17:26:29.000000000 +0100
-+++ pyro/examples/distributed-computing2/dispatcher.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import Pyro.core
- import Pyro.naming
- from Pyro.errors import NamingError
-diff -urNad pyro~/examples/distributed-computing2/worker.py pyro/examples/distributed-computing2/worker.py
---- pyro~/examples/distributed-computing2/worker.py 2006-11-11 17:33:10.000000000 +0100
-+++ pyro/examples/distributed-computing2/worker.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import Pyro.core
- import Pyro.errors
- import Queue
-diff -urNad pyro~/examples/exceptions/client.py pyro/examples/exceptions/client.py
---- pyro~/examples/exceptions/client.py 2005-05-26 23:25:18.000000000 +0200
-+++ pyro/examples/exceptions/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, os
-
- sys.path.insert(0,os.pardir) # to find testclient.py
-diff -urNad pyro~/examples/exceptions/server.py pyro/examples/exceptions/server.py
---- pyro~/examples/exceptions/server.py 2001-10-09 00:35:56.000000000 +0200
-+++ pyro/examples/exceptions/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys,os
-
- sys.path.insert(0,os.pardir) # to find testserver.py
-diff -urNad pyro~/examples/factory/client.py pyro/examples/factory/client.py
---- pyro~/examples/factory/client.py 2005-05-26 23:25:18.000000000 +0200
-+++ pyro/examples/factory/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, os
-
- sys.path.insert(0, os.pardir) # to find testclient.py
-diff -urNad pyro~/examples/factory/server.py pyro/examples/factory/server.py
---- pyro~/examples/factory/server.py 2002-06-10 01:24:46.000000000 +0200
-+++ pyro/examples/factory/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, os
-
- sys.path.insert(0,os.pardir) # to find testserver.py
-diff -urNad pyro~/examples/hugetransfer/client.py pyro/examples/hugetransfer/client.py
---- pyro~/examples/hugetransfer/client.py 2005-05-26 23:25:18.000000000 +0200
-+++ pyro/examples/hugetransfer/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, os
-
- sys.path.insert(0,os.pardir) # to find testclient.py
-diff -urNad pyro~/examples/hugetransfer/server.py pyro/examples/hugetransfer/server.py
---- pyro~/examples/hugetransfer/server.py 2001-12-18 22:59:08.000000000 +0100
-+++ pyro/examples/hugetransfer/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, os
-
- sys.path.insert(0,os.pardir) # to find testserver.py
-diff -urNad pyro~/examples/inheritance/client.py pyro/examples/inheritance/client.py
---- pyro~/examples/inheritance/client.py 2005-05-26 23:25:18.000000000 +0200
-+++ pyro/examples/inheritance/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, os
-
- sys.path.insert(0,os.pardir) # to find testclient.py
-diff -urNad pyro~/examples/inheritance/server.py pyro/examples/inheritance/server.py
---- pyro~/examples/inheritance/server.py 2001-10-09 00:35:56.000000000 +0200
-+++ pyro/examples/inheritance/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, os
-
- sys.path.insert(0,os.pardir) # to find testserver.py
-diff -urNad pyro~/examples/logging/testlogging.py pyro/examples/logging/testlogging.py
---- pyro~/examples/logging/testlogging.py 2003-06-09 19:23:44.000000000 +0200
-+++ pyro/examples/logging/testlogging.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- # Test the logging facilities.
-
-diff -urNad pyro~/examples/maxclients/client.py pyro/examples/maxclients/client.py
---- pyro~/examples/maxclients/client.py 2002-05-17 19:16:28.000000000 +0200
-+++ pyro/examples/maxclients/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # Notice: this client doesn't use the base testclient.py code
-diff -urNad pyro~/examples/maxclients/server.py pyro/examples/maxclients/server.py
---- pyro~/examples/maxclients/server.py 2001-10-09 00:35:56.000000000 +0200
-+++ pyro/examples/maxclients/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, os
-
- sys.path.insert(0,os.pardir) # to find testserver.py
-diff -urNad pyro~/examples/multithread/client.py pyro/examples/multithread/client.py
---- pyro~/examples/multithread/client.py 2007-01-30 21:03:59.000000000 +0100
-+++ pyro/examples/multithread/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, os, random
-
- import time
-diff -urNad pyro~/examples/multithread/server.py pyro/examples/multithread/server.py
---- pyro~/examples/multithread/server.py 2007-02-03 18:22:04.000000000 +0100
-+++ pyro/examples/multithread/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys, os, time
-
- sys.path.insert(0,os.pardir) # to find testserver.py
-diff -urNad pyro~/examples/naming/nametest.py pyro/examples/naming/nametest.py
---- pyro~/examples/naming/nametest.py 2005-01-17 02:07:49.000000000 +0100
-+++ pyro/examples/naming/nametest.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # Naming example. Shows basic name server handling.
-diff -urNad pyro~/examples/noNS/client.py pyro/examples/noNS/client.py
---- pyro~/examples/noNS/client.py 2002-03-20 01:18:49.000000000 +0100
-+++ pyro/examples/noNS/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # Client that doesn't use the Name Server. Uses PYROLOC:// URI.
-diff -urNad pyro~/examples/noNS/client2.py pyro/examples/noNS/client2.py
---- pyro~/examples/noNS/client2.py 2002-03-20 01:22:59.000000000 +0100
-+++ pyro/examples/noNS/client2.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # Client that doesn't use the Name Server. Uses URI directly.
-diff -urNad pyro~/examples/noNS/server.py pyro/examples/noNS/server.py
---- pyro~/examples/noNS/server.py 2002-11-04 23:47:31.000000000 +0100
-+++ pyro/examples/noNS/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # The server that doesn't use the Name Server.
-diff -urNad pyro~/examples/oneway/client.py pyro/examples/oneway/client.py
---- pyro~/examples/oneway/client.py 2005-02-13 01:15:23.000000000 +0100
-+++ pyro/examples/oneway/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import time
- import Pyro.core
-diff -urNad pyro~/examples/oneway/server.py pyro/examples/oneway/server.py
---- pyro~/examples/oneway/server.py 2005-02-13 01:15:23.000000000 +0100
-+++ pyro/examples/oneway/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import Pyro.core
- import Pyro.naming
- import time
-diff -urNad pyro~/examples/quickstart/client.py pyro/examples/quickstart/client.py
---- pyro~/examples/quickstart/client.py 2002-08-06 22:24:22.000000000 +0200
-+++ pyro/examples/quickstart/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- from Pyro.ext import remote
-
-diff -urNad pyro~/examples/quickstart/pyrorun pyro/examples/quickstart/pyrorun
---- pyro~/examples/quickstart/pyrorun 2005-02-13 00:45:31.000000000 +0100
-+++ pyro/examples/quickstart/pyrorun 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- # by John Wiegley <johnw at gnu.org>
- #
-diff -urNad pyro~/examples/quickstart/server.py pyro/examples/quickstart/server.py
---- pyro~/examples/quickstart/server.py 2002-08-06 22:24:22.000000000 +0200
-+++ pyro/examples/quickstart/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import sys
- from Pyro.ext import remote
-diff -urNad pyro~/examples/quickstart-noNS/client.py pyro/examples/quickstart-noNS/client.py
---- pyro~/examples/quickstart-noNS/client.py 2002-08-06 22:24:22.000000000 +0200
-+++ pyro/examples/quickstart-noNS/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- from Pyro.ext import remote_nons
-
-diff -urNad pyro~/examples/quickstart-noNS/server.py pyro/examples/quickstart-noNS/server.py
---- pyro~/examples/quickstart-noNS/server.py 2002-08-06 22:24:22.000000000 +0200
-+++ pyro/examples/quickstart-noNS/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import sys
- from Pyro.ext import remote_nons
-diff -urNad pyro~/examples/simple/client.py pyro/examples/simple/client.py
---- pyro~/examples/simple/client.py 2006-11-12 03:36:11.000000000 +0100
-+++ pyro/examples/simple/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import Pyro.util
- import Pyro.core
-diff -urNad pyro~/examples/simple/client_thread.py pyro/examples/simple/client_thread.py
---- pyro~/examples/simple/client_thread.py 2006-11-25 17:42:16.000000000 +0100
-+++ pyro/examples/simple/client_thread.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import Pyro.util
- import Pyro.core
-diff -urNad pyro~/examples/simple/server.py pyro/examples/simple/server.py
---- pyro~/examples/simple/server.py 2007-04-30 16:43:45.000000000 +0200
-+++ pyro/examples/simple/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import Pyro.core
- import Pyro.naming
- from Pyro.errors import NamingError
-diff -urNad pyro~/examples/ssl/client.py pyro/examples/ssl/client.py
---- pyro~/examples/ssl/client.py 2004-02-01 01:39:05.000000000 +0100
-+++ pyro/examples/ssl/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import Pyro.core
-
- Pyro.core.initClient()
-diff -urNad pyro~/examples/ssl/server.py pyro/examples/ssl/server.py
---- pyro~/examples/ssl/server.py 2004-02-01 01:39:05.000000000 +0100
-+++ pyro/examples/ssl/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
- import sys
- import Pyro.naming, Pyro.core, Pyro.util, Pyro.protocol
- from Pyro.errors import PyroError,NamingError
-diff -urNad pyro~/examples/stockquotes/Client.py pyro/examples/stockquotes/Client.py
---- pyro~/examples/stockquotes/Client.py 2001-10-09 00:34:54.000000000 +0200
-+++ pyro/examples/stockquotes/Client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- from Pyro.EventService.Clients import Subscriber
- from Server import symbols
-diff -urNad pyro~/examples/stockquotes/MClient.py pyro/examples/stockquotes/MClient.py
---- pyro~/examples/stockquotes/MClient.py 2001-10-09 00:34:54.000000000 +0200
-+++ pyro/examples/stockquotes/MClient.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- from Pyro.EventService.Clients import Subscriber
- from Server import symbols
-diff -urNad pyro~/examples/stockquotes/Server.py pyro/examples/stockquotes/Server.py
---- pyro~/examples/stockquotes/Server.py 2001-10-09 00:34:54.000000000 +0200
-+++ pyro/examples/stockquotes/Server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- from Pyro.EventService.Clients import Publisher
- from Pyro.errors import NamingError
-diff -urNad pyro~/examples/stresstest/consumer.py pyro/examples/stresstest/consumer.py
---- pyro~/examples/stresstest/consumer.py 2003-01-19 19:49:01.000000000 +0100
-+++ pyro/examples/stresstest/consumer.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- from Pyro.EventService.Clients import Subscriber
- from Pyro.errors import NamingError
-diff -urNad pyro~/examples/stresstest/naming.py pyro/examples/stresstest/naming.py
---- pyro~/examples/stresstest/naming.py 2003-08-04 00:10:18.000000000 +0200
-+++ pyro/examples/stresstest/naming.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import Pyro.naming
- import random, time
-diff -urNad pyro~/examples/stresstest/producer.py pyro/examples/stresstest/producer.py
---- pyro~/examples/stresstest/producer.py 2002-06-16 02:53:22.000000000 +0200
-+++ pyro/examples/stresstest/producer.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- from Pyro.EventService.Clients import Publisher
- from Pyro.errors import NamingError
-diff -urNad pyro~/examples/testmobile/bothways/server/server.py pyro/examples/testmobile/bothways/server/server.py
---- pyro~/examples/testmobile/bothways/server/server.py 2007-02-12 02:27:58.000000000 +0100
-+++ pyro/examples/testmobile/bothways/server/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # The server that doesn't use the Name Server.
-diff -urNad pyro~/examples/testmobile/client2server/server/server.py pyro/examples/testmobile/client2server/server/server.py
---- pyro~/examples/testmobile/client2server/server/server.py 2007-02-12 02:27:58.000000000 +0100
-+++ pyro/examples/testmobile/client2server/server/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # The server that doesn't use the Name Server.
-diff -urNad pyro~/examples/testmobile/imports/server/server.py pyro/examples/testmobile/imports/server/server.py
---- pyro~/examples/testmobile/imports/server/server.py 2007-02-12 02:27:58.000000000 +0100
-+++ pyro/examples/testmobile/imports/server/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # The server that doesn't use the Name Server.
-diff -urNad pyro~/examples/testmobile/passon/server/server1.py pyro/examples/testmobile/passon/server/server1.py
---- pyro~/examples/testmobile/passon/server/server1.py 2007-02-12 02:27:58.000000000 +0100
-+++ pyro/examples/testmobile/passon/server/server1.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import sys, os
- import Pyro.core
-diff -urNad pyro~/examples/testmobile/passon/server/server2.py pyro/examples/testmobile/passon/server/server2.py
---- pyro~/examples/testmobile/passon/server/server2.py 2007-02-12 02:27:58.000000000 +0100
-+++ pyro/examples/testmobile/passon/server/server2.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import sys, os
- import Pyro.core
-diff -urNad pyro~/examples/testmobile/server2client/server/server.py pyro/examples/testmobile/server2client/server/server.py
---- pyro~/examples/testmobile/server2client/server/server.py 2007-02-12 02:27:58.000000000 +0100
-+++ pyro/examples/testmobile/server2client/server/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # The server that doesn't use the Name Server.
-diff -urNad pyro~/examples/threadmobile/server/server.py pyro/examples/threadmobile/server/server.py
---- pyro~/examples/threadmobile/server/server.py 2007-02-04 19:27:42.000000000 +0100
-+++ pyro/examples/threadmobile/server/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- #
- # The server that doesn't use the Name Server.
-diff -urNad pyro~/examples/user_passwd_auth/client.py pyro/examples/user_passwd_auth/client.py
---- pyro~/examples/user_passwd_auth/client.py 2003-11-20 00:26:14.000000000 +0100
-+++ pyro/examples/user_passwd_auth/client.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import Pyro.core
- import connvalidator
-diff -urNad pyro~/examples/user_passwd_auth/server.py pyro/examples/user_passwd_auth/server.py
---- pyro~/examples/user_passwd_auth/server.py 2003-11-20 00:45:03.000000000 +0100
-+++ pyro/examples/user_passwd_auth/server.py 2007-09-01 23:10:46.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+#!/usr/bin/env python
-
- import Pyro.naming
- import Pyro.core
Modified: packages/pyro/trunk/debian/pyro.postinst
===================================================================
--- packages/pyro/trunk/debian/pyro.postinst 2009-04-12 11:15:03 UTC (rev 8229)
+++ packages/pyro/trunk/debian/pyro.postinst 2009-04-12 11:20:35 UTC (rev 8230)
@@ -1,4 +1,4 @@
-#! /bin/sh
+#!/bin/sh
set -e
Modified: packages/pyro/trunk/debian/pyro.postrm
===================================================================
--- packages/pyro/trunk/debian/pyro.postrm 2009-04-12 11:15:03 UTC (rev 8229)
+++ packages/pyro/trunk/debian/pyro.postrm 2009-04-12 11:20:35 UTC (rev 8230)
@@ -1,4 +1,4 @@
-#! /bin/sh
+#!/bin/sh
set -e
Modified: packages/pyro/trunk/debian/pyro.prerm
===================================================================
--- packages/pyro/trunk/debian/pyro.prerm 2009-04-12 11:15:03 UTC (rev 8229)
+++ packages/pyro/trunk/debian/pyro.prerm 2009-04-12 11:20:35 UTC (rev 8230)
@@ -1,4 +1,4 @@
-#! /bin/sh
+#!/bin/sh
set -e
More information about the Python-modules-commits
mailing list