debian/0000755000000000000000000000000012204422510007156 5ustar debian/copyright0000644000000000000000000000415612204420566011130 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: pushy Source: http://packages.python.org/pushy/ Files: * Copyright: (C) 2008-2012 Andrew Wilkins License: MIT Files: debian/* Copyright: (C) 2012 Martin Loschwitz License: GPL-2+ 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. License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . On Debian systems, the complete text of the GNU General Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". debian/compat0000644000000000000000000000000212204420566010365 0ustar 9 debian/source/0000755000000000000000000000000012204422510010456 5ustar debian/source/format0000644000000000000000000000001412204420566011675 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000067112204420566010253 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. export DH_VERBOSE=1 %: dh $@ debian/changelog0000644000000000000000000000046712204422506011044 0ustar python-pushy (0.5.3-1) saucy; urgency=low * New upstream point release. -- James Page Mon, 19 Aug 2013 15:01:35 +0100 python-pushy (0.5.1-1) unstable; urgency=low * Initial release (Closes: #693675) -- Martin Loschwitz Mon, 19 Nov 2012 07:37:32 +0000 debian/control0000644000000000000000000000344012204420566010573 0ustar Source: python-pushy Section: python Priority: optional Maintainer: Martin Loschwitz Build-Depends: debhelper (>= 9.0.0), python-all-dev, python-support Standards-Version: 3.9.3 Homepage: http://packages.python.org/pushy XS-Python-Version: >= 2.6 Package: python-pushy Architecture: any Depends: ${python:Depends}, ${misc:Depends} Description: Simple interface for connecting two python interpreters Pushy provides applicaton developers with a simple interface for connecting two Python interpreters, either on the local host, or over a network. Once connected, the interpreters may access objects in each other, as if they were local. Where objects are mutable (i.e. may change over time), then objects are “proxied”. This means that a local object is created that mirrors the remote object, and sends all local function/attribute access calls to the remote object. Special care has been taken to proxy builtin types properly, so that proxied objects may be passed to Python’s various builtin functions. . Pushy contains multiple transports for connecting interpreters, as well as a means for users to provide their own transport modules. Builtin transports are provided for connecting to local interpreters, and to remote interpreters via SSH, named pipes (using SMB) on Microsoft Windows, and over plain old TCP/IP sockets (using daemon). . One of the most useful features of Pushy is that it will take care of starting the target Python interpreter for you, depending on which transport is selected. Of particular note, the SSH transport will start a remote Python interpreter and initialise a Pushy connection, without having Pushy installed on the remote system. Similarly, the local transport will create a new Python interpreter on the local host.