[Python-modules-commits] r24909 - in packages/stomper/trunk/debian (6 files)

laarmen-guest at users.alioth.debian.org laarmen-guest at users.alioth.debian.org
Sat Jun 22 11:35:36 UTC 2013


    Date: Saturday, June 22, 2013 @ 11:35:34
  Author: laarmen-guest
Revision: 24909

New upstream release

Added:
  packages/stomper/trunk/debian/docs
    (from rev 24680, packages/stomper/trunk/debian/doc)
Modified:
  packages/stomper/trunk/debian/changelog
  packages/stomper/trunk/debian/patches/remove_package_data
  packages/stomper/trunk/debian/patches/series
Deleted:
  packages/stomper/trunk/debian/doc
  packages/stomper/trunk/debian/patches/fix_typos

Modified: packages/stomper/trunk/debian/changelog
===================================================================
--- packages/stomper/trunk/debian/changelog	2013-06-22 10:16:50 UTC (rev 24908)
+++ packages/stomper/trunk/debian/changelog	2013-06-22 11:35:34 UTC (rev 24909)
@@ -1,4 +1,4 @@
-stomper (0.2.5-1) UNRELEASED; urgency=low
+stomper (0.2.7-1) UNRELEASED; urgency=low
 
   [ Simon Chopin ]
   * Initial release. (Closes: #705932)

Deleted: packages/stomper/trunk/debian/doc
===================================================================
--- packages/stomper/trunk/debian/doc	2013-06-22 10:16:50 UTC (rev 24908)
+++ packages/stomper/trunk/debian/doc	2013-06-22 11:35:34 UTC (rev 24909)
@@ -1 +0,0 @@
-lib/stomper/doc/stomper.stx

Copied: packages/stomper/trunk/debian/docs (from rev 24680, packages/stomper/trunk/debian/doc)
===================================================================
--- packages/stomper/trunk/debian/docs	                        (rev 0)
+++ packages/stomper/trunk/debian/docs	2013-06-22 11:35:34 UTC (rev 24909)
@@ -0,0 +1 @@
+README.md

Deleted: packages/stomper/trunk/debian/patches/fix_typos
===================================================================
--- packages/stomper/trunk/debian/patches/fix_typos	2013-06-22 10:16:50 UTC (rev 24908)
+++ packages/stomper/trunk/debian/patches/fix_typos	2013-06-22 11:35:34 UTC (rev 24909)
@@ -1,164 +0,0 @@
-From: Simon Chopin <chopin.simon at gmail.com>
-Date: Thu, 6 Jun 2013 16:53:11 +0200
-Subject: Fix various typos
-Forwarded: https://github.com/oisinmulvihill/stomper/pull/2
-
---- a/lib/stomper/__init__.py
-+++ b/lib/stomper/__init__.py
-@@ -2,7 +2,7 @@
- This is a python client implementation of the STOMP protocol.
- 
- It aims to be transport layer neutral. This module provides functions to
--create and parse STOMP messages in a programatic fashion.
-+create and parse STOMP messages in a programmatic fashion.
- 
- The examples package contains two examples using twisted as the transport
- framework. Other frameworks can be used and I may add other examples as
-@@ -39,7 +39,7 @@
- import utils
- import stompbuffer
- 
--# This is used as a return from message reponses functions.
-+# This is used as a return from message responses functions.
- # It is used more for readability more then anything or reason.
- NO_RESPONSE_NEEDED = ''
- 
-@@ -79,7 +79,7 @@
- 
-     The method unpack() is used to read a STOMP message into
-     a frame instance. It uses the unpack_frame(...) function
--    to do the intial parsing.
-+    to do the initial parsing.
- 
-     The frame has three important member variables:
- 
-@@ -128,12 +128,12 @@
-         headers = ''.join(
-             ['%s:%s\n' % (f, v) for f, v in self.headers.items()]
-         )
--        stomp_mesage = "%s\n%s\n%s%s\n" % (self._cmd, headers, self.body, NULL)
-+        stomp_message = "%s\n%s\n%s%s\n" % (self._cmd, headers, self.body, NULL)
- 
- #        import pprint
--#        print "stomp_mesage: ", pprint.pprint(stomp_mesage)
-+#        print "stomp_message: ", pprint.pprint(stomp_message)
- 
--        return stomp_mesage
-+        return stomp_message
- 
- 
-     def unpack(self, message):
-@@ -287,7 +287,7 @@
-     """STOMP commit command.
- 
-     Do whatever is required to make the series of actions
--    permenant for this transactionid.
-+    permanent for this transactionid.
- 
-     transactionid:
-         This is the id that all actions in this transaction.
-@@ -425,9 +425,9 @@
- 
- 
-     def connected(self, msg):
--        """No reponse is needed to a connected frame.
-+        """No response is needed to a connected frame.
- 
--        This method stores the session id as a the
-+        This method stores the session id as the
-         member sessionId for later use.
- 
-         returned:
-@@ -445,7 +445,7 @@
- 
-         Override this method to handle received messages.
- 
--        This function will generate an acknowlege message
-+        This function will generate an acknowledge message
-         for the given message and transaction (if present).
- 
-         """
---- a/lib/stomper/doc/stomper.stx
-+++ b/lib/stomper/doc/stomper.stx
-@@ -20,7 +20,7 @@
- This is a 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 programatic fashion. The
-+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 STOMP protocol specification can be found here:
- 
-@@ -83,7 +83,7 @@
- 0.2.4
- ~~~~~
- 
--OM: A minor relase fixing the problem whereby uuid would be installed on python2.5+. It
-+OM: A minor release fixing the problem whereby uuid would be installed on python2.5+. It
- is not needed after python2.4 as it comes with python. Arfrever Frehtes Taifersar Arahesis
- contributed the fix for this.
- 
---- a/lib/stomper/examples/sender.py
-+++ b/lib/stomper/examples/sender.py
-@@ -57,7 +57,7 @@
- 
-         # ActiveMQ specific headers:
-         #
--        # prevent the messages we send comming back to us.
-+        # prevent the messages we send coming back to us.
-         f.headers['activemq.noLocal'] = 'true'
-         
-         return f.pack()
---- a/lib/stomper/examples/stompbuffer-tx.py
-+++ b/lib/stomper/examples/stompbuffer-tx.py
-@@ -36,7 +36,7 @@
-         """
-         stomper.Engine.connected(self, msg)
- 
--        self.log.info("Connected: session %s. Begining say hello." % msg['headers']['session'])
-+        self.log.info("Connected: session %s. Beginning say hello." % msg['headers']['session'])
-         
-         def setup_looping_call():
-             lc = LoopingCall(self.send)
---- a/lib/stomper/examples/stomper_usage.py
-+++ b/lib/stomper/examples/stomper_usage.py
-@@ -44,7 +44,7 @@
- # just returns an empty string.
- 
- 
--# After a successfull connect you might want to subscribe
-+# After a successful connect you might want to subscribe
- # for messages from a destination and tell the server you'll
- # acknowledge all messages.
- #
---- a/lib/stomper/tests/teststompbuffer.py
-+++ b/lib/stomper/tests/teststompbuffer.py
-@@ -128,7 +128,7 @@
-         msg1 = self.putAndGetText()
-         msg2 = self.sb.getOneMessage()
-         self.failUnless ( msg2 is None )
--        # Veryify that in fact the buffer is empty.
-+        # Verify that in fact the buffer is empty.
-         self.failUnless ( self.sb.bufferIsEmpty() )
- 
- 
-@@ -141,7 +141,7 @@
-         msg1 = self.putAndGetBinary()
-         msg2 = self.sb.getOneMessage()
-         self.failUnless ( msg2 is None )
--        # Veryify that in fact the buffer is empty.
-+        # Verify that in fact the buffer is empty.
-         self.failUnless ( self.sb.bufferIsEmpty() )
- 
- 
---- a/lib/stomper/tests/teststomper.py
-+++ b/lib/stomper/tests/teststomper.py
-@@ -70,7 +70,7 @@
-         # React to an error:
-         error = stomper.Frame()
-         error.cmd = 'ERROR'
--        error.headers = {'mesage:': 'malformed packet received!'}
-+        error.headers = {'message:': 'malformed packet received!'}
-         error.body = """The message:
- -----
- MESSAGE

Modified: packages/stomper/trunk/debian/patches/remove_package_data
===================================================================
--- packages/stomper/trunk/debian/patches/remove_package_data	2013-06-22 10:16:50 UTC (rev 24908)
+++ packages/stomper/trunk/debian/patches/remove_package_data	2013-06-22 11:35:34 UTC (rev 24909)
@@ -4,20 +4,7 @@
 
 --- a/setup.py
 +++ b/setup.py
-@@ -43,12 +43,6 @@
- 
- ProjectScripts = []
- 
--PackageData = {
--    # If any package contains *.txt or *.rst files, include them:
--    'stomper': ['doc/*.stx'],
--}
--
--
- needed = []
- if sys.version_info < (2, 5):
-     needed += [
-@@ -68,7 +62,6 @@
+@@ -66,7 +66,6 @@
      install_requires=needed,
      test_suite=TestSuite,
      scripts=ProjectScripts,

Modified: packages/stomper/trunk/debian/patches/series
===================================================================
--- packages/stomper/trunk/debian/patches/series	2013-06-22 10:16:50 UTC (rev 24908)
+++ packages/stomper/trunk/debian/patches/series	2013-06-22 11:35:34 UTC (rev 24909)
@@ -1,2 +1 @@
 remove_package_data
-fix_typos




More information about the Python-modules-commits mailing list