debian/0000775000000000000000000000000012316546507007201 5ustar debian/rules0000775000000000000000000000023712202744527010257 0ustar #!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ --with python2 override_dh_auto_test: testr init && testr run debian/source/0000775000000000000000000000000012202744076010474 5ustar debian/source/format0000664000000000000000000000001412202744076011702 0ustar 3.0 (quilt) debian/docs0000664000000000000000000000006212202744076010045 0ustar README.rst requirements.txt test-requirements.txt debian/compat0000664000000000000000000000000212202744076010372 0ustar 8 debian/copyright0000664000000000000000000000342312275232703011130 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: oslo.messaging Source: https://github.com/openstack/oslo.messaging Files: * Copyright: 2011-2012 OpenStack Foundation. 2012 Red Hat, Inc 2013 Hewlett-Packard Development Company, L.P. 2012 Intel Corporation Others (See individual files for more details) License: Apache-2 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. . On Debian-based systems the full text of the Apache version 2.0 license can be found in `/usr/share/common-licenses/Apache-2.0'. Files: debian/* Copyright: 2013 Canoincal Ltd License: Apache-2 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. . On Debian-based systems the full text of the Apache version 2.0 license can be found in `/usr/share/common-licenses/Apache-2.0'. debian/control0000664000000000000000000000227312315054643010602 0ustar Source: oslo.messaging Section: python Priority: optional Maintainer: Chuck Short Build-Depends: debhelper (>= 8.0.0), python-all (>= 2.6.6-3~), python-babel, python-eventlet, python-fixtures, python-iso8601, python-kombu, python-mock, python-mox3, python-oslotest, python-oslo.config, python-oslosphinx, python-pbr, python-setuptools, python-six, python-sphinx, python-stevedore, python-testscenarios, python-testtools, python-yaml, testrepository Standards-Version: 3.9.4 Package: python-oslo.messaging Architecture: all Depends: python-babel, python-eventlet, python-iso8601, python-oslo.config, python-six, python-stevedore, python-yaml, ${misc:Depends}, ${python:Depends} Description: oslo messaging library The oslo messaging API supports RPC and notifications over a number of different messaging transports. debian/watch0000664000000000000000000000021312247651447010231 0ustar version=3 opts="uversionmangle=s/\.([a-zA-Z])/~$1/;s/%7E/~/" \ http://tarballs.openstack.org/oslo.messaging/oslo.messaging-(.*)\.tar\.gz debian/changelog0000664000000000000000000000232512316546507011055 0ustar oslo.messaging (1.3.0-0ubuntu1) trusty; urgency=medium * New upstream release. (LP: #1300804) * debian/patches/skip-qpid-tests.patch: Skip qpid tests if qpid is not installed. -- Chuck Short Tue, 01 Apr 2014 10:09:49 -0400 oslo.messaging (1.3.0~a9-0ubuntu1) trusty; urgency=medium * New upstream release (LP: #1298970) * debian/control: - Add python-oslotest as a build dependency. - Use python-oslosphinx instead of python-oslo.sphinx -- Chuck Short Thu, 27 Mar 2014 13:01:34 -0400 oslo.messaging (1.3.0~a7-0ubuntu1) trusty; urgency=medium * New upstream release. * debian/control: - Add python-yaml, python-babel, python-six, python-mox3, python-mock as build dependency. - Dropped python-d2to1 as a dependency. * wrap and sort. -- Chuck Short Fri, 07 Feb 2014 14:32:19 -0500 oslo.messaging (1.2.0~a11-0ubuntu1) trusty; urgency=low * New upstream release: - debian/watch: Fix typo (LP: #1212684) -- Chuck Short Wed, 04 Dec 2013 10:58:43 -0500 oslo.messaging (1.2.0~a4-0ubuntu1) saucy; urgency=low * Initial release. -- Chuck Short Wed, 14 Aug 2013 14:11:08 -0400 debian/patches/0000775000000000000000000000000012316547755010636 5ustar debian/patches/skip-qpid-tests.patch0000664000000000000000000000222312316547755014717 0ustar Description: Skip qpid if its not installed. Author: Chuck Short Fowarded: No diff -Naurp oslo.messaging-1.3.0.orig/tests/test_qpid.py oslo.messaging-1.3.0/tests/test_qpid.py --- oslo.messaging-1.3.0.orig/tests/test_qpid.py 2014-04-01 08:21:03.000000000 -0400 +++ oslo.messaging-1.3.0/tests/test_qpid.py 2014-04-01 10:36:14.715171885 -0400 @@ -18,7 +18,10 @@ import threading import time import mock -import qpid +try: + import qpid +except ImportError: + qpid = False import testscenarios from oslo import messaging @@ -64,6 +67,8 @@ class _QpidBaseTestCase(test_utils.BaseT def setUp(self): super(_QpidBaseTestCase, self).setUp() + if qpid is False: + self.skipTest('QPID is not installed') self.messaging_conf.transport_driver = 'qpid' self.fake_qpid = not _is_qpidd_service_running() @@ -395,6 +400,9 @@ class TestQpidReconnectOrder(test_utils. """ def test_reconnect_order(self): + if qpid is False: + self.skipTest('qpid is not installed') + brokers = ['host1', 'host2', 'host3', 'host4', 'host5'] brokers_count = len(brokers) debian/patches/series0000664000000000000000000000002612316546343012041 0ustar skip-qpid-tests.patch