debian/0000755000000000000000000000000011456143406007172 5ustar debian/rules0000755000000000000000000000040711423623053010246 0ustar #!/usr/bin/make -f %: dh $@ --buildsystem=python_distutils PKGDIR=debian/python-txosc/ install/python-txosc:: ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) $(call python debian/runtrial.py $(PKGDIR) txosc endif find $(PKGDIR) -name dropin.cache -delete debian/manpages0000644000000000000000000000003111456143252010701 0ustar osc-send.1 osc-receive.1 debian/compat0000644000000000000000000000000211410510466010362 0ustar 7 debian/copyright0000644000000000000000000000330111410510466011114 0ustar This work was packaged for Debian by: Alexandre Quessy on Wed, 09 Jun 2010 22:30:26 -0400 The upstream source is available from . Upstream Authors: Arjan Scherpenisse Alexandre Quessy Copyright: Copyright (c) 2009-2010 Arjan Scherpenisse and Alexandre Quessy License: MIT/X Copyright (c) 2009-2010 Arjan Scherpenisse and Alexandre Quessy 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. The Debian packaging is: Copyright (C) 2010 Alexandre Quessy and is licensed under the GPL version 3, see `/usr/share/common-licenses/GPL-3'. debian/pyversions0000644000000000000000000000000511410510466011323 0ustar 2.3- debian/control0000644000000000000000000000220411455665225010602 0ustar Source: python-txosc Section: python Priority: optional Maintainer: Debian Python Modules Team Uploaders: Alexandre Quessy Standards-Version: 3.9.1 Build-Depends: debhelper (>= 7.0.50), python-support, python (>= 2.5), python-twisted-core (>= 8.1.0), python-setuptools, help2man Build-Depends-Indep: python-epydoc Homepage: http://www.bibucket.org/arjan/txosc Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-txosc/trunk/ Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-txosc/trunk/ Package: python-txosc Architecture: all Depends: ${misc:Depends}, ${python:Depends}, python-twisted-core (>= 8.1.0) Description: Open Sound Control (OSC) protocol for Twisted Open Sound Control (OSC) is an open, transport-independent, message-based protocol developed for communication among computers, sound synthesizers, and other multimedia devices. . This library implements OSC version 1.1 over both UDP and TCP for the Twisted Python framework. . Twisted is an event-based framework for internet applications which works on Python 2.3 through 2.6. debian/python-txosc.examples0000644000000000000000000000001311410510466013375 0ustar examples/* debian/runtrial.py0000644000000000000000000000123211410510466011374 0ustar import sys import os from os.path import join from distutils.sysconfig import get_python_lib from site import addsitedir root = sys.argv.pop(1) site_packages = get_python_lib() _path = sys.path[:] sys.path[:] = [] addsitedir(join(root, site_packages[1:])) addsitedir(join(root, site_packages[1:].replace('dist-packages', 'site-packages'))) # cdbs installs python modules in site-packages even for Python 2.6 sys.path.extend(_path) # Some tests need PYTHONPATH. We provide a sensible value for it (although not really correct) if 'PYTHONPATH' not in os.environ: os.environ['PYTHONPATH'] = os.pathsep.join(sys.path) from twisted.scripts.trial import run run() debian/watch0000644000000000000000000000012111410510466010207 0ustar version=3 http://alexandre.quessy.net/static/tarballs/python-txosc-(.*)\.tar\.gz debian/source/0000755000000000000000000000000011410510466010464 5ustar debian/source/format0000644000000000000000000000001411410510466011672 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000024411455361172011045 0ustar python-txosc (0.2.0-1) unstable; urgency=low * Initial packaging (Closes: #585384) -- Alexandre Quessy Tue, 12 Oct 2010 21:40:11 -0400 debian/python-txosc.docs0000644000000000000000000000002411410510466012511 0ustar README RELEASE NEWS