debian/0000755000000000000000000000000012161610243007162 5ustar debian/changelog0000644000000000000000000000052112161610170011031 0ustar stomper (0.2.7-1) unstable; urgency=low [ Simon Chopin ] * Initial release. (Closes: #705932) [ Jakub Wilk ] * Use canonical URIs for Vcs-* fields. * Run tests only if DEB_BUILD_OPTIONS=nocheck is not set. * Fix a typo in the package description. -- Simon Chopin Sun, 23 Jun 2013 11:12:54 -0400 debian/docs0000644000000000000000000000001212161306006010025 0ustar README.md debian/rules0000755000000000000000000000051112156325202010241 0ustar #!/usr/bin/make -f %: dh $@ --with python2 override_dh_install: dh_install rm -f debian/python-stomper/usr/lib/python*/dist-packages/stomper-*.egg-info/SOURCES.txt override_dh_auto_test: ifeq "$(filter nocheck,$(DEB_BUILD_OPTIONS))" "" set -e; \ for py in $(shell pyversions -r); do \ $$py setup.py test; \ done endif debian/clean0000644000000000000000000000002712140762603010173 0ustar lib/stomper.egg-info/* debian/watch0000644000000000000000000000012112150456127010214 0ustar version=3 https://pypi.python.org/packages/source/s/stomper/stomper-(.+).tar.gz debian/examples0000644000000000000000000000002712154133243010724 0ustar lib/stomper/examples/* debian/patches/0000755000000000000000000000000012161610243010611 5ustar debian/patches/remove_package_data0000644000000000000000000000066012161306006014476 0ustar Description: Do not ship the doc in the setup.py Author: Simon Chopin Forwarded: not-needed --- a/setup.py +++ b/setup.py @@ -66,7 +66,6 @@ install_requires=needed, test_suite=TestSuite, scripts=ProjectScripts, - packages=find_packages('lib'), - package_data=PackageData, + packages=find_packages('lib', exclude=["*.examples", "*.doc", "*.tests"]), package_dir={'': 'lib'}, ) debian/patches/series0000644000000000000000000000002412161306006012021 0ustar remove_package_data debian/control0000644000000000000000000000220212161111757010567 0ustar Source: stomper Section: python Priority: optional Maintainer: Debian Python Modules Team Uploaders: Simon Chopin Build-Depends: debhelper (>= 9), python-setuptools, python-all (>= 2.6.6-3~) Standards-Version: 3.9.4 X-Python-Version: >= 2.5 Homepage: https://github.com/oisinmulvihill/stomper/ Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/stomper/trunk/ Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/stomper/trunk/ Package: python-stomper Architecture: all Depends: ${misc:Depends}, ${python:Depends} Description: Python client implementation of the STOMP protocol The client is attempting to be transport layer neutral. This module provides functions to create and parse STOMP messages in a programmatic fashion. The messages can be easily generated and parsed, however its up to the user to do the sending and receiving. . The Streaming Text Oriented Messaging Protocol is a text-based protocol vaguely similar to HTTP, intended for message oriented middleware. Its protocol specification can be found at http://stomp.github.io/ debian/source/0000755000000000000000000000000012161610243010462 5ustar debian/source/format0000644000000000000000000000001412140762446011702 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000212156301066010364 0ustar 9 debian/copyright0000644000000000000000000000402512140762446011130 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: stomper Source: https://github.com/oisinmulvihill/stomper/ Files: * Copyright: 2007-2013 Oisin Mulvihill License: Apache Files: lib/stomper/stompbuffer.py Copyright: 2008 Ricky Iacovou License: Apache Files: debian/* Copyright: 2013 Simon Chopin License: Apache License: Apache Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 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. . On Debian systems, a copy of the license should be at /usr/share/common-licenses/Apache-2.0