[Python-modules-commits] r3157 - in /packages/pyro/trunk/debian: changelog control patches/ patches/00dpatch.conf patches/usr-bin-env-location.dpatch rules
bzed-guest at users.alioth.debian.org
bzed-guest at users.alioth.debian.org
Sat Sep 1 21:12:43 UTC 2007
Author: bzed-guest
Date: Sat Sep 1 21:12:43 2007
New Revision: 3157
URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=3157
Log:
adding dpatch
Added:
packages/pyro/trunk/debian/patches/
packages/pyro/trunk/debian/patches/00dpatch.conf
packages/pyro/trunk/debian/patches/usr-bin-env-location.dpatch (with props)
Modified:
packages/pyro/trunk/debian/changelog
packages/pyro/trunk/debian/control
packages/pyro/trunk/debian/rules
Modified: packages/pyro/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/pyro/trunk/debian/changelog?rev=3157&op=diff
==============================================================================
--- packages/pyro/trunk/debian/changelog (original)
+++ packages/pyro/trunk/debian/changelog Sat Sep 1 21:12:43 2007
@@ -10,7 +10,8 @@
* debian/control:
- Reflecting maintainer change
- Adding XS-Vcs-Svn and XS-Vcs-Browser fields
- - Moving python, python-central to Build-Depends
+ - Moving python to Build-Depends because it's used in the clean target
+ - Putting pyro-doc into the doc Section
* debian/semantic.cache:
- Removing file, not needed for packaging pyro
* debian/setup.cfg:
Modified: packages/pyro/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/pyro/trunk/debian/control?rev=3157&op=diff
==============================================================================
--- packages/pyro/trunk/debian/control (original)
+++ packages/pyro/trunk/debian/control Sat Sep 1 21:12:43 2007
@@ -3,8 +3,8 @@
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Uploaders: Bernd Zeimetz <bernd at bzed.de>
-Build-Depends: debhelper (>= 5.0.42), python, python-central (>= 0.5)
-Build-Depends-Indep: xsltproc, docbook-xsl
+Build-Depends: debhelper (>= 5.0.42), python
+Build-Depends-Indep: python-central (>= 0.5), xsltproc, docbook-xsl
Standards-Version: 3.7.2
XS-Python-Version: all
XS-Vcs-Svn: svn://svn.debian.org/python-modules/packages/pyro/trunk/
@@ -32,7 +32,7 @@
The documentation is available in the pyro-doc package.
A lot of examples are available in the pyro-examples package.
.
- Homepage: http://pyro.sourceforge.net
+ Homepage: http://pyro.sourceforge.net
Package: pyro-gui
Architecture: all
@@ -48,6 +48,7 @@
Package: pyro-doc
Architecture: all
+Section: doc
Suggests: pyro
Description: documentation for Pyro
Pyro (PYthon Remote Object) is an easy to use and powerful distributed object
Added: packages/pyro/trunk/debian/patches/00dpatch.conf
URL: http://svn.debian.org/wsvn/python-modules/packages/pyro/trunk/debian/patches/00dpatch.conf?rev=3157&op=file
==============================================================================
--- packages/pyro/trunk/debian/patches/00dpatch.conf (added)
+++ packages/pyro/trunk/debian/patches/00dpatch.conf Sat Sep 1 21:12:43 2007
@@ -1,0 +1,2 @@
+conf_debianonly=1
+conf_origtargzpath=../tarballs
Added: packages/pyro/trunk/debian/patches/usr-bin-env-location.dpatch
URL: http://svn.debian.org/wsvn/python-modules/packages/pyro/trunk/debian/patches/usr-bin-env-location.dpatch?rev=3157&op=file
==============================================================================
--- packages/pyro/trunk/debian/patches/usr-bin-env-location.dpatch (added)
+++ packages/pyro/trunk/debian/patches/usr-bin-env-location.dpatch Sat Sep 1 21:12:43 2007
@@ -1,0 +1,798 @@
+#! /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
Propchange: packages/pyro/trunk/debian/patches/usr-bin-env-location.dpatch
------------------------------------------------------------------------------
svn:executable = *
Modified: packages/pyro/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/pyro/trunk/debian/rules?rev=3157&op=diff
==============================================================================
--- packages/pyro/trunk/debian/rules (original)
+++ packages/pyro/trunk/debian/rules Sat Sep 1 21:12:43 2007
@@ -1,9 +1,14 @@
#!/usr/bin/make -f
-# Sample debian/rules that uses debhelper.
+
+# This debian/rules file is based on a
+# sample debian/rules that uses debhelper.
# GNU copyright 1997 to 1999 by Joey Hess.
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
+
+
+include /usr/share/dpatch/dpatch.make
PYTHON = /usr/bin/python
@@ -15,13 +20,14 @@
build: build-stamp
-build-stamp: debian/pyro-gui.1
+build-stamp: patch-stamp debian/pyro-gui.1
dh_testdir
[ -r setup.cfg.upstream ] || cp setup.cfg setup.cfg.upstream
cp debian/setup.cfg .
touch build-stamp
-clean:
+clean: clean-patched unpatch
+clean-patched:
dh_testdir
dh_testroot
rm -f build-stamp
@@ -68,6 +74,7 @@
dh_installinit --noscripts -ppyro --name=pyro-nsd
# some permissions that makes lintian/linda happier
find debian/pyro-examples/usr/share/doc/pyro/examples -exec chmod a-x {} \;
+ chmod 755 $(CURDIR)/debian/pyro-gui/usr/share/pycentral/pyro-gui/site-packages/Pyro/wxnsc.py
dh_link
dh_strip
dh_compress
@@ -83,4 +90,4 @@
binary-arch: build install
binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
+.PHONY: build clean binary-indep binary-arch binary install configure patch unpatch
More information about the Python-modules-commits
mailing list