commit python-amqp for openSUSE:Factory

2020-08-06 Thread root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2020-08-06 17:31:43

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new.3399 (New)


Package is "python-amqp"

Thu Aug  6 17:31:43 2020 rev:33 rq:824326 version:2.6.1

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2020-06-11 
14:44:59.245432392 +0200
+++ /work/SRC/openSUSE:Factory/.python-amqp.new.3399/python-amqp.changes
2020-08-06 17:32:27.097099036 +0200
@@ -1,0 +2,9 @@
+Tue Aug  4 12:09:50 UTC 2020 - Dirk Mueller 
+
+- update to 2.6.1:
+  - Fix buffer overflow in frame_writer after frame_max is increased. 
`frame_writer`
+  allocates a `bytearray` on intialization with a length based on the 
`connection.frame_max`
+  value. If `connection.frame_max` is changed to a larger value, this causes an
+  error like `pack_into requires a buffer of at least 408736 bytes`.
+
+---

Old:

  amqp-2.6.0.tar.gz

New:

  amqp-2.6.1.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.S2us2Y/_old  2020-08-06 17:32:27.813099203 +0200
+++ /var/tmp/diff_new_pack.S2us2Y/_new  2020-08-06 17:32:27.817099204 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-amqp
-Version:2.6.0
+Version:2.6.1
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1-or-later

++ amqp-2.6.0.tar.gz -> amqp-2.6.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.6.0/Changelog new/amqp-2.6.1/Changelog
--- old/amqp-2.6.0/Changelog2020-06-01 07:45:06.0 +0200
+++ new/amqp-2.6.1/Changelog2020-07-31 18:27:12.0 +0200
@@ -7,6 +7,19 @@
 
 .. _version-2.6.0:
 
+2.6.1
+=
+:release-date: 2020-07-31 10.30 P.M UTC+6:00
+:release-by: Asif Saif Uddin
+
+- Fix buffer overflow in frame_writer after frame_max is increased. 
`frame_writer`
+allocates a `bytearray` on intialization with a length based on the 
`connection.frame_max`
+value. If `connection.frame_max` is changed to a larger value, this causes an
+error like `pack_into requires a buffer of at least 408736 bytes`.
+
+
+.. _version-2.6.0:
+
 2.6.0
 =
 :release-date: 20-06-01 12.00 P.M UTC+6:00
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.6.0/PKG-INFO new/amqp-2.6.1/PKG-INFO
--- old/amqp-2.6.0/PKG-INFO 2020-06-01 08:15:08.735072100 +0200
+++ new/amqp-2.6.1/PKG-INFO 2020-07-31 18:31:53.780775300 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: amqp
-Version: 2.6.0
+Version: 2.6.1
 Summary: Low-level AMQP client for Python (fork of amqplib).
 Home-page: http://github.com/celery/py-amqp
 Author: Barry Pederson
@@ -18,6 +18,7 @@
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
+Classifier: Programming Language :: Python :: 3.8
 Classifier: License :: OSI Approved :: BSD License
 Classifier: Intended Audience :: Developers
 Classifier: Operating System :: OS Independent
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.6.0/README.rst new/amqp-2.6.1/README.rst
--- old/amqp-2.6.0/README.rst   2020-06-01 07:47:59.0 +0200
+++ new/amqp-2.6.1/README.rst   2020-07-31 18:29:04.0 +0200
@@ -4,7 +4,7 @@
 
 |build-status| |coverage| |license| |wheel| |pyversion| |pyimp|
 
-:Version: 2.6.0
+:Version: 2.6.1
 :Web: https://amqp.readthedocs.io/
 :Download: https://pypi.org/project/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.6.0/amqp/__init__.py 
new/amqp-2.6.1/amqp/__init__.py
--- old/amqp-2.6.0/amqp/__init__.py 2020-06-01 07:46:47.0 +0200
+++ new/amqp-2.6.1/amqp/__init__.py 2020-07-31 18:28:16.0 +0200
@@ -6,7 +6,7 @@
 
 from collections import namedtuple
 
-__version__ = '2.6.0'
+__version__ = '2.6.1'
 __author__ = 'Barry Pederson'
 __maintainer__ = 'Asif Saif Uddin, Matus Valo'
 __contact__ = 'pya...@celeryproject.org'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.6.0/amqp/method_framing.py 
new/amqp-2.6.1/amqp/method_framing.py
--- old/amqp-2.6.0/amqp/method_framing.py   2019-07-12 07:25:19.0 
+0200
+++ new/amqp-2.6.1/amqp/method_framing.py   2020-07-31 18:31:21.0 
+0200
@@ -85,20 +85,37 @@
 return 

commit python-amqp for openSUSE:Factory

2020-06-11 Thread root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2020-06-11 14:44:37

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new.3606 (New)


Package is "python-amqp"

Thu Jun 11 14:44:37 2020 rev:32 rq:812617 version:2.6.0

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2019-11-04 
17:04:37.920147389 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new.3606/python-amqp.changes
2020-06-11 14:44:59.245432392 +0200
@@ -1,0 +2,14 @@
+Mon Jun  8 13:29:28 UTC 2020 - Dirk Mueller 
+
+- update to 2.6.0:
+  - Implement speedups in cython (#311)
+  - Updated some tests & code improvements
+  - Separate logger for Connection.heartbeat_tick method
+  - Cython generic content (#315)
+  - Improve documentation a_global parameter of basic_qos() method.
+  - Fix saving partial read buffer on windows during socket timeout. (#321)
+  - Fix deserialization of long string field values that are not utf-8.
+  - Added simple cythonization of abstract_channel.py
+  - Speedups of serialization.py are more restrictive
+
+---

Old:

  amqp-2.5.2.tar.gz

New:

  amqp-2.6.0.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.ydMPfL/_old  2020-06-11 14:44:59.705433732 +0200
+++ /var/tmp/diff_new_pack.ydMPfL/_new  2020-06-11 14:44:59.709433744 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-amqp
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-amqp
-Version:2.5.2
+Version:2.6.0
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1-or-later

++ amqp-2.5.2.tar.gz -> amqp-2.6.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.5.2/Changelog new/amqp-2.6.0/Changelog
--- old/amqp-2.5.2/Changelog2019-09-30 14:52:24.0 +0200
+++ new/amqp-2.6.0/Changelog2020-06-01 07:45:06.0 +0200
@@ -5,6 +5,23 @@
 The previous amqplib changelog is here:
 http://code.google.com/p/py-amqplib/source/browse/CHANGES
 
+.. _version-2.6.0:
+
+2.6.0
+=
+:release-date: 20-06-01 12.00 P.M UTC+6:00
+:release-by: Asif Saif Uddin
+
+- Implement speedups in cython (#311) 
+- Updated some tests & code improvements
+- Separate logger for Connection.heartbeat_tick method 
+- Cython generic content (#315)
+- Improve documentation a_global parameter of basic_qos() method.
+- Fix saving partial read buffer on windows during socket timeout. (#321)
+- Fix deserialization of long string field values that are not utf-8.
+- Added simple cythonization of abstract_channel.py
+- Speedups of serialization.py are more restrictive
+
 .. _version-2.5.2:
 
 2.5.2
@@ -12,10 +29,8 @@
 :release-date: 2019-09-30 19.00 P.M UTC+6:00
 :release-by: Asif Saif Uddin
 
-- Ignore all methods except Close and Close-OK when channel/connection is 
closing
-- Fix faulty ssl sni intiation parameters (#283) 
-- Undeprecate auto_delete flag for exchanges. (#287) 
-- Improved tests and testing environments
+- Fixed a channel issue against a connection already closed 
+- Updated some tests & code improvements
 
 
 .. _version-2.5.1:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.5.2/PKG-INFO new/amqp-2.6.0/PKG-INFO
--- old/amqp-2.5.2/PKG-INFO 2019-09-30 15:03:23.0 +0200
+++ new/amqp-2.6.0/PKG-INFO 2020-06-01 08:15:08.735072100 +0200
@@ -1,143 +1,13 @@
 Metadata-Version: 1.2
 Name: amqp
-Version: 2.5.2
+Version: 2.6.0
 Summary: Low-level AMQP client for Python (fork of amqplib).
 Home-page: http://github.com/celery/py-amqp
 Author: Barry Pederson
 Author-email: pya...@celeryproject.org
-Maintainer: Asif Saif Uddin, Omer Katz
+Maintainer: Asif Saif Uddin, Matus Valo
 License: BSD
-Description: 
=
- Python AMQP 0.9.1 client library
-=
-
-|build-status| |coverage| |license| |wheel| |pyversion| |pyimp|
-
-:Version: 2.5.2
-:Web: https://amqp.readthedocs.io/
-:Download: https://pypi.org/project/amqp/
-:Source: http://github.com/celery/py-amqp/
-:Keywords: amqp, 

commit python-amqp for openSUSE:Factory

2019-11-04 Thread root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2019-11-04 17:04:37

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new.2990 (New)


Package is "python-amqp"

Mon Nov  4 17:04:37 2019 rev:31 rq:736422 version:2.5.2

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2019-09-23 
12:08:20.701896110 +0200
+++ /work/SRC/openSUSE:Factory/.python-amqp.new.2990/python-amqp.changes
2019-11-04 17:04:37.920147389 +0100
@@ -1,0 +2,9 @@
+Wed Oct  9 08:40:24 UTC 2019 - Tomáš Chvátal 
+
+- Update to 2.5.2:
+  - Ignore all methods except Close and Close-OK when channel/connection is 
closing
+  - Fix faulty ssl sni intiation parameters (#283) 
+  - Undeprecate auto_delete flag for exchanges. (#287) 
+  - Improved tests and testing environments
+
+---

Old:

  amqp-2.5.1.tar.gz

New:

  amqp-2.5.2.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.YsiCD6/_old  2019-11-04 17:04:38.496148005 +0100
+++ /var/tmp/diff_new_pack.YsiCD6/_new  2019-11-04 17:04:38.496148005 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-amqp
-Version:2.5.1
+Version:2.5.2
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1-or-later

++ amqp-2.5.1.tar.gz -> amqp-2.5.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.5.1/Changelog new/amqp-2.5.2/Changelog
--- old/amqp-2.5.1/Changelog2019-08-14 17:48:25.0 +0200
+++ new/amqp-2.5.2/Changelog2019-09-30 14:52:24.0 +0200
@@ -5,6 +5,19 @@
 The previous amqplib changelog is here:
 http://code.google.com/p/py-amqplib/source/browse/CHANGES
 
+.. _version-2.5.2:
+
+2.5.2
+=
+:release-date: 2019-09-30 19.00 P.M UTC+6:00
+:release-by: Asif Saif Uddin
+
+- Ignore all methods except Close and Close-OK when channel/connection is 
closing
+- Fix faulty ssl sni intiation parameters (#283) 
+- Undeprecate auto_delete flag for exchanges. (#287) 
+- Improved tests and testing environments
+
+
 .. _version-2.5.1:
 
 2.5.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.5.1/PKG-INFO new/amqp-2.5.2/PKG-INFO
--- old/amqp-2.5.1/PKG-INFO 2019-08-14 17:50:13.0 +0200
+++ new/amqp-2.5.2/PKG-INFO 2019-09-30 15:03:23.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: amqp
-Version: 2.5.1
+Version: 2.5.2
 Summary: Low-level AMQP client for Python (fork of amqplib).
 Home-page: http://github.com/celery/py-amqp
 Author: Barry Pederson
@@ -13,7 +13,7 @@
 
 |build-status| |coverage| |license| |wheel| |pyversion| |pyimp|
 
-:Version: 2.5.1
+:Version: 2.5.2
 :Web: https://amqp.readthedocs.io/
 :Download: https://pypi.org/project/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.5.1/README.rst new/amqp-2.5.2/README.rst
--- old/amqp-2.5.1/README.rst   2019-08-14 17:48:25.0 +0200
+++ new/amqp-2.5.2/README.rst   2019-09-30 14:58:55.0 +0200
@@ -4,7 +4,7 @@
 
 |build-status| |coverage| |license| |wheel| |pyversion| |pyimp|
 
-:Version: 2.5.1
+:Version: 2.5.2
 :Web: https://amqp.readthedocs.io/
 :Download: https://pypi.org/project/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.5.1/amqp/__init__.py 
new/amqp-2.5.2/amqp/__init__.py
--- old/amqp-2.5.1/amqp/__init__.py 2019-08-14 17:49:02.0 +0200
+++ new/amqp-2.5.2/amqp/__init__.py 2019-09-30 14:58:17.0 +0200
@@ -6,7 +6,7 @@
 
 from collections import namedtuple
 
-__version__ = '2.5.1'
+__version__ = '2.5.2'
 __author__ = 'Barry Pederson'
 __maintainer__ = 'Asif Saif Uddin, Omer Katz'
 __contact__ = 'pya...@celeryproject.org'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.5.1/amqp/connection.py 
new/amqp-2.5.2/amqp/connection.py
--- old/amqp-2.5.1/amqp/connection.py   2019-07-12 07:25:19.0 +0200
+++ new/amqp-2.5.2/amqp/connection.py   2019-09-30 14:34:47.0 +0200
@@ -487,14 +487,15 @@
 Fetch a Channel object identified by the numeric channel_id, or
 create that object if it doesn't already exist.
 """
-if self.channels is not None:
-try:
-return 

commit python-amqp for openSUSE:Factory

2019-09-23 Thread root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2019-09-23 12:08:20

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new.7948 (New)


Package is "python-amqp"

Mon Sep 23 12:08:20 2019 rev:30 rq:730145 version:2.5.1

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2019-07-30 
13:02:37.882423650 +0200
+++ /work/SRC/openSUSE:Factory/.python-amqp.new.7948/python-amqp.changes
2019-09-23 12:08:20.701896110 +0200
@@ -1,0 +2,9 @@
+Wed Sep 11 13:18:08 UTC 2019 - Tomáš Chvátal 
+
+- Update to 2.5.1:
+  - Ignore all methods except Close and Close-OK when channel/connection is 
closing
+  - Fix faulty ssl sni intiation parameters (#283) 
+  - Undeprecate auto_delete flag for exchanges. (#287) 
+  - Improved tests and testing environments
+
+---

Old:

  amqp-2.5.0.tar.gz

New:

  amqp-2.5.1.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.UpkmsL/_old  2019-09-23 12:08:21.641895955 +0200
+++ /var/tmp/diff_new_pack.UpkmsL/_new  2019-09-23 12:08:21.641895955 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-amqp
-Version:2.5.0
+Version:2.5.1
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1-or-later

++ amqp-2.5.0.tar.gz -> amqp-2.5.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.5.0/Changelog new/amqp-2.5.1/Changelog
--- old/amqp-2.5.0/Changelog2019-05-30 13:07:00.0 +0200
+++ new/amqp-2.5.1/Changelog2019-08-14 17:48:25.0 +0200
@@ -5,6 +5,19 @@
 The previous amqplib changelog is here:
 http://code.google.com/p/py-amqplib/source/browse/CHANGES
 
+.. _version-2.5.1:
+
+2.5.1
+=
+:release-date: 2019-08-14 22.00 P.M UTC+6:00
+:release-by: Asif Saif Uddin
+
+- Ignore all methods except Close and Close-OK when channel/connection is 
closing
+- Fix faulty ssl sni intiation parameters (#283) 
+- Undeprecate auto_delete flag for exchanges. (#287) 
+- Improved tests and testing environments
+
+
 .. _version-2.5.0:
 
 2.5.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.5.0/PKG-INFO new/amqp-2.5.1/PKG-INFO
--- old/amqp-2.5.0/PKG-INFO 2019-05-30 13:08:20.0 +0200
+++ new/amqp-2.5.1/PKG-INFO 2019-08-14 17:50:13.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: amqp
-Version: 2.5.0
+Version: 2.5.1
 Summary: Low-level AMQP client for Python (fork of amqplib).
 Home-page: http://github.com/celery/py-amqp
 Author: Barry Pederson
@@ -13,7 +13,7 @@
 
 |build-status| |coverage| |license| |wheel| |pyversion| |pyimp|
 
-:Version: 2.4.2
+:Version: 2.5.1
 :Web: https://amqp.readthedocs.io/
 :Download: https://pypi.org/project/amqp/
 :Source: http://github.com/celery/py-amqp/
@@ -145,11 +145,10 @@
 Classifier: Programming Language :: Python :: 2
 Classifier: Programming Language :: Python :: 2.7
 Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
 Classifier: License :: OSI Approved :: BSD License
 Classifier: Intended Audience :: Developers
 Classifier: Operating System :: OS Independent
-Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
+Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.5.0/README.rst new/amqp-2.5.1/README.rst
--- old/amqp-2.5.0/README.rst   2019-05-30 13:04:06.0 +0200
+++ new/amqp-2.5.1/README.rst   2019-08-14 17:48:25.0 +0200
@@ -4,7 +4,7 @@
 
 |build-status| |coverage| |license| |wheel| |pyversion| |pyimp|
 
-:Version: 2.4.2
+:Version: 2.5.1
 :Web: https://amqp.readthedocs.io/
 :Download: https://pypi.org/project/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.5.0/amqp/__init__.py 
new/amqp-2.5.1/amqp/__init__.py
--- old/amqp-2.5.0/amqp/__init__.py 2019-05-30 13:05:09.0 +0200
+++ new/amqp-2.5.1/amqp/__init__.py 2019-08-14 17:49:02.0 +0200
@@ -6,7 +6,7 @@
 
 from collections import namedtuple
 
-__version__ = '2.5.0'
+__version__ = '2.5.1'
 __author__ = 'Barry Pederson'
 

commit python-amqp for openSUSE:Factory

2019-07-30 Thread root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2019-07-30 13:02:36

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new.4126 (New)


Package is "python-amqp"

Tue Jul 30 13:02:36 2019 rev:29 rq:717023 version:2.5.0

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2019-06-13 
22:32:51.124390922 +0200
+++ /work/SRC/openSUSE:Factory/.python-amqp.new.4126/python-amqp.changes
2019-07-30 13:02:37.882423650 +0200
@@ -1,0 +2,5 @@
+Fri Jul 19 10:45:30 UTC 2019 - Tomáš Chvátal 
+
+- Do not depend on pytest-sugar, it is just pretty-formatter
+
+---



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.u4ZXbJ/_old  2019-07-30 13:02:38.538423517 +0200
+++ /var/tmp/diff_new_pack.u4ZXbJ/_new  2019-07-30 13:02:38.538423517 +0200
@@ -27,7 +27,6 @@
 Source: 
https://files.pythonhosted.org/packages/source/a/amqp/amqp-%{version}.tar.gz
 BuildRequires:  %{python_module case >= 1.3.1}
 BuildRequires:  %{python_module pytest >= 3.0}
-BuildRequires:  %{python_module pytest-sugar >= 0.9.1}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module vine >= 1.1.3}
 BuildRequires:  fdupes
@@ -55,7 +54,7 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%python_expand py.test-%{$python_bin_suffix} -v
+%pytest
 
 %files %{python_files}
 %license LICENSE




commit python-amqp for openSUSE:Factory

2019-06-13 Thread root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2019-06-13 22:32:49

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new.4811 (New)


Package is "python-amqp"

Thu Jun 13 22:32:49 2019 rev:28 rq:708413 version:2.5.0

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2019-03-06 
15:52:16.980425218 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new.4811/python-amqp.changes
2019-06-13 22:32:51.124390922 +0200
@@ -1,0 +2,8 @@
+Fri Jun  7 14:40:51 UTC 2019 - Marketa Calabkova 
+
+- Update to 2.5.0
+  - Drop Python 3.4
+  - Add new platform
+  - Numerious bug fixes
+
+---

Old:

  amqp-2.4.2.tar.gz

New:

  amqp-2.5.0.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.ALvpdQ/_old  2019-06-13 22:32:51.848390686 +0200
+++ /var/tmp/diff_new_pack.ALvpdQ/_new  2019-06-13 22:32:51.848390686 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-amqp
-Version:2.4.2
+Version:2.5.0
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1-or-later

++ amqp-2.4.2.tar.gz -> amqp-2.5.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.4.2/Changelog new/amqp-2.5.0/Changelog
--- old/amqp-2.4.2/Changelog2019-03-03 21:46:32.0 +0100
+++ new/amqp-2.5.0/Changelog2019-05-30 13:07:00.0 +0200
@@ -5,6 +5,17 @@
 The previous amqplib changelog is here:
 http://code.google.com/p/py-amqplib/source/browse/CHANGES
 
+.. _version-2.5.0:
+
+2.5.0
+=
+:release-date: 2019-05-30 17.30 P.M UTC+6:00
+:release-by: Asif Saif Uddin
+
+- Drop Python 3.4
+- Add new platform
+- Numerious bug fixes
+
 .. _version-2.4.2:
 
 2.4.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.4.2/PKG-INFO new/amqp-2.5.0/PKG-INFO
--- old/amqp-2.4.2/PKG-INFO 2019-03-03 21:48:04.0 +0100
+++ new/amqp-2.5.0/PKG-INFO 2019-05-30 13:08:20.0 +0200
@@ -1,11 +1,11 @@
 Metadata-Version: 1.2
 Name: amqp
-Version: 2.4.2
+Version: 2.5.0
 Summary: Low-level AMQP client for Python (fork of amqplib).
 Home-page: http://github.com/celery/py-amqp
 Author: Barry Pederson
 Author-email: pya...@celeryproject.org
-Maintainer: Ask Solem
+Maintainer: Asif Saif Uddin, Omer Katz
 License: BSD
 Description: 
=
  Python AMQP 0.9.1 client library
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.4.2/amqp/__init__.py 
new/amqp-2.5.0/amqp/__init__.py
--- old/amqp-2.4.2/amqp/__init__.py 2019-03-03 21:47:25.0 +0100
+++ new/amqp-2.5.0/amqp/__init__.py 2019-05-30 13:05:09.0 +0200
@@ -6,9 +6,9 @@
 
 from collections import namedtuple
 
-__version__ = '2.4.2'
+__version__ = '2.5.0'
 __author__ = 'Barry Pederson'
-__maintainer__ = 'Ask Solem'
+__maintainer__ = 'Asif Saif Uddin, Omer Katz'
 __contact__ = 'pya...@celeryproject.org'
 __homepage__ = 'http://github.com/celery/py-amqp'
 __docformat__ = 'restructuredtext'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.4.2/amqp/platform.py 
new/amqp-2.5.0/amqp/platform.py
--- old/amqp-2.4.2/amqp/platform.py 2019-03-02 14:49:57.0 +0100
+++ new/amqp-2.5.0/amqp/platform.py 2019-05-30 13:04:06.0 +0200
@@ -48,6 +48,7 @@
 if platform.release().endswith("Microsoft"):
 KNOWN_TCP_OPTS = {'TCP_NODELAY', 'TCP_KEEPIDLE', 'TCP_KEEPINTVL',
   'TCP_KEEPCNT'}
+
 elif sys.platform.startswith('darwin'):
 KNOWN_TCP_OPTS.remove('TCP_USER_TIMEOUT')
 
@@ -62,6 +63,17 @@
 elif sys.platform.startswith('cygwin'):
 KNOWN_TCP_OPTS = {'TCP_NODELAY'}
 
+# illumos does not allow to set the TCP_MAXSEG socket option,
+# even if the Oracle documentation says otherwise.
+elif sys.platform.startswith('sunos'):
+KNOWN_TCP_OPTS.remove('TCP_MAXSEG')
+
+# aix does not allow to set the TCP_MAXSEG
+# or the TCP_USER_TIMEOUT socket options.
+elif sys.platform.startswith('aix'):
+KNOWN_TCP_OPTS.remove('TCP_MAXSEG')
+KNOWN_TCP_OPTS.remove('TCP_USER_TIMEOUT')
+
 if sys.version_info < (2, 7, 7):  # pragma: no cover
 import functools
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.4.2/amqp/transport.py 
new/amqp-2.5.0/amqp/transport.py
--- old/amqp-2.4.2/amqp/transport.py

commit python-amqp for openSUSE:Factory

2019-03-06 Thread root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2019-03-06 15:52:11

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new.28833 (New)


Package is "python-amqp"

Wed Mar  6 15:52:11 2019 rev:27 rq:682124 version:2.4.2

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2019-02-17 
12:21:11.416203048 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new.28833/python-amqp.changes   
2019-03-06 15:52:16.980425218 +0100
@@ -1,0 +2,8 @@
+Wed Mar  6 11:42:22 UTC 2019 - Tomáš Chvátal 
+
+- Update to 2.4.2:
+  - Added support for the Cygwin platform
+  - Correct offset incrementation when parsing bitmaps.
+  - Consequent bitmaps are now parsed correctly.
+
+---

Old:

  amqp-2.4.1.tar.gz

New:

  amqp-2.4.2.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.WpAZhI/_old  2019-03-06 15:52:18.508424910 +0100
+++ /var/tmp/diff_new_pack.WpAZhI/_new  2019-03-06 15:52:18.512424910 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-amqp
-Version:2.4.1
+Version:2.4.2
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1-or-later
@@ -44,6 +44,8 @@
 
 %prep
 %setup -q -n amqp-%{version}
+# requires internet connection:
+rm t/integration/test_rmq.py
 
 %build
 %python_build
@@ -52,10 +54,8 @@
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
-%if 0%{?suse_version} > 1320
 %check
 %python_expand py.test-%{$python_bin_suffix} -v
-%endif
 
 %files %{python_files}
 %license LICENSE

++ amqp-2.4.1.tar.gz -> amqp-2.4.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.4.1/Changelog new/amqp-2.4.2/Changelog
--- old/amqp-2.4.1/Changelog2019-02-04 07:30:09.0 +0100
+++ new/amqp-2.4.2/Changelog2019-03-03 21:46:32.0 +0100
@@ -5,6 +5,42 @@
 The previous amqplib changelog is here:
 http://code.google.com/p/py-amqplib/source/browse/CHANGES
 
+.. _version-2.4.2:
+
+2.4.2
+=
+:release-date: 2019-03-03 10:45 P.M UTC+2:00
+:release-by: Omer Katz
+
+- Added support for the Cygwin platform
+
+  Contributed by **Matus Valo**
+
+- Correct offset incrementation when parsing bitmaps.
+
+  Contributed by **Allan Simon** & **Omer Katz**
+
+- Consequent bitmaps are now parsed correctly.
+
+  Previously the bit counter was reset with every bit.
+  We now reset it once per 8 bits, when we consume the next byte.
+
+  Contributed by **Omer Katz**
+
+Code Cleanups & Improvements:
+
+  - **Patrick Cloke**
+  - **Matus Valo**
+  - **Jeremiah Cooper**
+  - **Omer Katz**
+
+Test Coverage & CI Improvements:
+
+  - **Matus Valo**
+  - **Omer Katz**
+  - **Jeremiah Cooper**
+  - **Omer Katz**
+
 .. _version-2.4.1:
 
 2.4.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.4.1/PKG-INFO new/amqp-2.4.2/PKG-INFO
--- old/amqp-2.4.1/PKG-INFO 2019-02-04 07:32:49.0 +0100
+++ new/amqp-2.4.2/PKG-INFO 2019-03-03 21:48:04.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: amqp
-Version: 2.4.1
+Version: 2.4.2
 Summary: Low-level AMQP client for Python (fork of amqplib).
 Home-page: http://github.com/celery/py-amqp
 Author: Barry Pederson
@@ -13,7 +13,7 @@
 
 |build-status| |coverage| |license| |wheel| |pyversion| |pyimp|
 
-:Version: 2.4.1
+:Version: 2.4.2
 :Web: https://amqp.readthedocs.io/
 :Download: https://pypi.org/project/amqp/
 :Source: http://github.com/celery/py-amqp/
@@ -148,6 +148,7 @@
 Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
 Classifier: License :: OSI Approved :: BSD License
 Classifier: Intended Audience :: Developers
 Classifier: Operating System :: OS Independent
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.4.1/README.rst new/amqp-2.4.2/README.rst
--- old/amqp-2.4.1/README.rst   2019-02-04 07:32:18.0 +0100
+++ new/amqp-2.4.2/README.rst   2019-03-03 21:47:25.0 +0100
@@ -4,7 +4,7 @@
 
 |build-status| |coverage| |license| |wheel| |pyversion| |pyimp|
 
-:Version: 2.4.1
+:Version: 2.4.2
 :Web: https://amqp.readthedocs.io/
 :Download: https://pypi.org/project/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' 

commit python-amqp for openSUSE:Factory

2019-02-17 Thread root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2019-02-17 12:21:11

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new.28833 (New)


Package is "python-amqp"

Sun Feb 17 12:21:11 2019 rev:26 rq:676524 version:2.4.1

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2018-07-02 
23:33:09.125271449 +0200
+++ /work/SRC/openSUSE:Factory/.python-amqp.new.28833/python-amqp.changes   
2019-02-17 12:21:11.416203048 +0100
@@ -1,0 +2,60 @@
+Fri Feb 15 11:55:34 UTC 2019 - Matej Cepl 
+
+- Better call of py.test
+
+---
+Fri Feb 15 09:32:49 UTC 2019 - John Vandenberg 
+
+- Add versions to dependencies
+- Remove python-sasl from build dependencies
+- Update to version 2.4.1
+  * To avoid breaking the API basic_consume() now returns the consumer tag
+instead of a tuple when nowait is True.
+  * Fix crash in basic_publish when broker does not support connection.blocked
+capability.
+  * read_frame() is now Python 3 compatible for large payloads.
+  * Support float read_timeout/write_timeout.
+  * Always treat SSLError timeouts as socket timeouts.
+  * Treat EWOULDBLOCK as timeout.
+- from 2.4.0
+  * Fix inconsistent frame_handler return value.
+The function returned by frame_handler is meant to return True
+once the complete message is received and the callback is called,
+False otherwise.
+This fixes the return value for messages with a body split across
+multiple frames, and heartbeat frames.
+  * Don't default content_encoding to utf-8 for bytes.
+This is not an acceptable default as the content may not be
+valid utf-8, and even if it is, the producer likely does not
+expect the message to be decoded by the consumer.
+  * Fix encoding of messages with multibyte characters.
+Body length was previously calculated using string length,
+which may be less than the length of the encoded body when
+it contains multibyte sequences. This caused the body of
+the frame to be truncated.
+  * Respect content_encoding when encoding messages.
+Previously the content_encoding was ignored and messages
+were always encoded as utf-8. This caused messages to be
+incorrectly decoded if content_encoding is properly respected
+when decoding.
+  * Fix AMQP protocol header for AMQP 0-9-1.
+Previously it was set to a different value for unknown reasons.
+  * Add support for Python 3.7.
+Change direct SSLSocket instantiation with wrap_socket.
+  * Add support for field type "x" (byte array).
+  * If there is an exception raised on Connection.connect or
+Connection.close, ensure that the underlying transport socket
+is closed.  Adjust exception message on connection errors as well.
+  * TCP_USER_TIMEOUT has to be excluded from KNOWN_TCP_OPTS in BSD platforms.
+  * Handle negative acknowledgments.
+  * Added integration tests.
+  * Fix basic_consume() with no consumer_tag provided.
+  * Improved empty AMQPError string representation.
+  * Drain events before publish.
+This is needed to capture out of memory messages for clients that only
+publish. Otherwise on_blocked is never called.
+  * Don't revive channel when connection is closing.
+When connection is closing don't raise error when Channel.Close
+method is received.
+
+---

Old:

  amqp-2.3.2.tar.gz

New:

  amqp-2.4.1.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.YSfz5i/_old  2019-02-17 12:21:11.848202929 +0100
+++ /var/tmp/diff_new_pack.YSfz5i/_new  2019-02-17 12:21:11.848202929 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-amqp
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,26 +12,24 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-amqp
-Version:2.3.2
+Version:2.4.1
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1-or-later
 Group:  Development/Languages/Python
 URL:

commit python-amqp for openSUSE:Factory

2018-07-02 Thread root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2018-07-02 23:32:53

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is "python-amqp"

Mon Jul  2 23:32:53 2018 rev:25 rq:620010 version:2.3.2

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2018-05-29 
10:49:08.899131254 +0200
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2018-07-02 23:33:09.125271449 +0200
@@ -1,0 +2,21 @@
+Sun Jul  1 02:15:08 UTC 2018 - a...@gmx.de
+
+- specfile:
+  * added dependency pytest-sugar
+
+---
+Sun Jun 24 15:30:55 UTC 2018 - a...@gmx.de
+
+- update to version 2.3.2:
+  * Fix a regression that occurs when running amqp under Python 2.7 on
+OSX.  TCP_USER_TIMEOUT is not available when running on OSX.  We
+now remove it from the set of known TCP options.
+
+- changes from version 2.3.1:
+  * Fix a regression that occurs when running amqp under Python 2.7.
+#182 mistakingly replaced a type check with unicode to string_t
+which is str in Python 2.7. text_t should have been used instead.
+This is now fixed and the tests have been adjusted to ensure this
+never regresses again.
+
+---

Old:

  amqp-2.3.0.tar.gz

New:

  amqp-2.3.2.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.GmA4XJ/_old  2018-07-02 23:33:09.641270809 +0200
+++ /var/tmp/diff_new_pack.GmA4XJ/_new  2018-07-02 23:33:09.649270799 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-amqp
-Version:2.3.0
+Version:2.3.2
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1-or-later
@@ -27,6 +27,7 @@
 Source: 
https://files.pythonhosted.org/packages/source/a/amqp/amqp-%{version}.tar.gz
 Source99:   %{name}.changes
 BuildRequires:  %{python_module case}
+BuildRequires:  %{python_module pytest-sugar}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module sasl}
 BuildRequires:  %{python_module setuptools}

++ amqp-2.3.0.tar.gz -> amqp-2.3.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.3.0/Changelog new/amqp-2.3.2/Changelog
--- old/amqp-2.3.0/Changelog2018-05-27 15:22:50.0 +0200
+++ new/amqp-2.3.2/Changelog2018-05-30 14:35:18.0 +0200
@@ -5,6 +5,36 @@
 The previous amqplib changelog is here:
 http://code.google.com/p/py-amqplib/source/browse/CHANGES
 
+.. _version-2.3.1:
+
+2.3.1
+=
+:release-date: 2018-05-28 16:30 P.M UTC+3
+:release-by: Omer Katz
+
+- Fix a regression that occurs when running amqp under Python 2.7.
+
+  #182 mistakingly replaced a type check with unicode to string_t which is str
+  in Python 2.7. text_t should have been used instead.
+  This is now fixed and the tests have been adjusted to ensure this never 
regresses
+  again.
+
+  Fix contributed by **Omer Katz**
+
+.. _version-2.3.2:
+
+2.3.2
+=
+:release-date: 2018-05-29 15:30 P.M UTC+3
+:release-by: Omer Katz
+
+- Fix a regression that occurs when running amqp under Python 2.7 on OSX.
+
+  TCP_USER_TIMEOUT is not available when running on OSX.
+  We now remove it from the set of known TCP options.
+
+  Fix contributed by **Ofer Horowitz**
+
 .. _version-2.3.0:
 
 2.3.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.3.0/PKG-INFO new/amqp-2.3.2/PKG-INFO
--- old/amqp-2.3.0/PKG-INFO 2018-05-27 15:25:34.0 +0200
+++ new/amqp-2.3.2/PKG-INFO 2018-05-30 14:36:41.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: amqp
-Version: 2.3.0
+Version: 2.3.2
 Summary: Low-level AMQP client for Python (fork of amqplib).
 Home-page: http://github.com/celery/py-amqp
 Author: Barry Pederson
@@ -13,7 +13,7 @@
 
 |build-status| |coverage| |license| |wheel| |pyversion| |pyimp|
 
-:Version: 2.3.0
+:Version: 2.3.2
 :Web: https://amqp.readthedocs.io/
 :Download: https://pypi.org/project/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.3.0/README.rst new/amqp-2.3.2/README.rst
--- old/amqp-2.3.0/README.rst   2018-05-27 15:24:30.0 +0200
+++ new/amqp-2.3.2/README.rst   2018-05-30 14:36:25.0 +0200
@@ -4,7 +4,7 @@
 
 |build-status| |coverage| |license| |wheel| |pyversion| |pyimp|
 

commit python-amqp for openSUSE:Factory

2018-05-29 Thread root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2018-05-29 10:48:53

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is "python-amqp"

Tue May 29 10:48:53 2018 rev:24 rq:612615 version:2.3.0

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2018-01-13 
21:46:54.428145687 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2018-05-29 10:49:08.899131254 +0200
@@ -1,0 +2,19 @@
+Sun May 27 16:31:21 UTC 2018 - a...@gmx.de
+
+- update to version 2.3.0:
+  * Cleanup TCP configurations across platforms and unified defaults.
+Fix contributed by **Dan Chowdhury**
+  * Fix for TypeError when setting socket options.  Fix contributed by
+**Matthias Erll**
+  * Ensure that all call sites for decoding bytes to str allow
+surrogates, as the encoding mechanism now supports.  Fix
+contributed by **Stephen Hatch**
+  * Don't send  DNS request when domain resolved to IPv4 address.
+Fix contributed by **Ihar Hrachyshka & Omer Katz**
+  * Support for EXTERNAL authentication and specific login_method.
+Fix contributed by **Matthias Erll**
+  * If the old python-gssapi library is installed the gssapi module
+will be available.  We now ensure that we only use the new gssapi
+library.  Fix contributed by **Jacopo Notarstefano**
+
+---

Old:

  amqp-2.2.2.tar.gz

New:

  amqp-2.3.0.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.cHEf8z/_old  2018-05-29 10:49:09.675102625 +0200
+++ /var/tmp/diff_new_pack.cHEf8z/_new  2018-05-29 10:49:09.679102478 +0200
@@ -18,13 +18,13 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-amqp
-Version:2.2.2
+Version:2.3.0
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
-License:LGPL-2.1+
+License:LGPL-2.1-or-later
 Group:  Development/Languages/Python
 URL:http://github.com/celery/py-amqp
-Source: https://pypi.io/packages/source/a/amqp/amqp-%{version}.tar.gz
+Source: 
https://files.pythonhosted.org/packages/source/a/amqp/amqp-%{version}.tar.gz
 Source99:   %{name}.changes
 BuildRequires:  %{python_module case}
 BuildRequires:  %{python_module pytest}
@@ -58,9 +58,8 @@
 %python_exec %{_bindir}/py.test
 %endif
 
-%files %python_files
-%defattr(-,root,root,-)
-%doc LICENSE
+%files %{python_files}
+%license LICENSE
 %{python_sitelib}/*
 
 %changelog

++ amqp-2.2.2.tar.gz -> amqp-2.3.0.tar.gz ++
 1659 lines of diff (skipped)




commit python-amqp for openSUSE:Factory

2018-01-13 Thread root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2018-01-13 21:46:41

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is "python-amqp"

Sat Jan 13 21:46:41 2018 rev:23 rq:563284 version:2.2.2

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2017-10-26 
18:46:27.878124936 +0200
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2018-01-13 21:46:54.428145687 +0100
@@ -1,0 +2,11 @@
+Wed Jan 10 12:14:22 UTC 2018 - mplus...@suse.com
+
+- Fix building on pre Factory distros by not running test suite
+  (which fails due to old sasl)
+
+---
+Tue Nov 14 23:22:19 UTC 2017 - dmuel...@suse.com
+
+- fix build by adding sasl as BuildRequires
+
+---



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.dBD4Gm/_old  2018-01-13 21:46:55.144112310 +0100
+++ /var/tmp/diff_new_pack.dBD4Gm/_new  2018-01-13 21:46:55.144112310 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-amqp
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,19 +23,18 @@
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1+
 Group:  Development/Languages/Python
-Url:http://github.com/celery/py-amqp
+URL:http://github.com/celery/py-amqp
 Source: https://pypi.io/packages/source/a/amqp/amqp-%{version}.tar.gz
 Source99:   %{name}.changes
 BuildRequires:  %{python_module case}
 BuildRequires:  %{python_module pytest}
+BuildRequires:  %{python_module sasl}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module vine}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-vine >= 1.1.3
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
-
 %python_subpackages
 
 %description
@@ -54,8 +53,10 @@
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
+%if 0%{?suse_version} > 1320
 %check
 %python_exec %{_bindir}/py.test
+%endif
 
 %files %python_files
 %defattr(-,root,root,-)




commit python-amqp for openSUSE:Factory

2017-10-26 Thread root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2017-10-26 18:46:26

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is "python-amqp"

Thu Oct 26 18:46:26 2017 rev:22 rq:536836 version:2.2.2

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2017-04-12 
18:19:21.311325142 +0200
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2017-10-26 18:46:27.878124936 +0200
@@ -1,0 +2,39 @@
+Sun Oct 15 22:25:08 UTC 2017 - a...@gmx.de
+
+- specfile:
+  * added fdupes
+
+- update to version 2.2.2:
+  * Sending empty messages no longer hangs. Instead an empty message
+is sent correctly.(addresses #151) Fix contributed by **Christian
+Blades**
+  * Fixed compatibility issues in UTF-8 encoding behavior between
+Py2/Py3 (#164) Fix contributed by **Tyler James Harden**
+
+- changes from version 2.2.1:
+  * Fix implicit conversion from bytes to string on the connection
+object. (Issue #155) This issue has caused Celery to crash on
+connection to RabbitMQ.  Fix contributed by **Omer Katz**
+
+- changes from version 2.2.0:
+  * Fix random delays in task execution.  This is a bug that caused
+performance issues due to polling timeouts that occur when
+receiving incomplete AMQP frames. (Issues #3978 #3737 #3814) Fix
+contributed by **Robert Kopaczewski**
+  * Calling "conn.collect()" multiple times will no longer raise an
+"AttributeError" when no channels exist.  Fix contributed by
+**Gord Chung**
+  * Fix compatibility code for Python 2.7.6.  Fix contributed by
+**Jonathan Schuff**
+  * When running in Windows, py-amqp will no longer use the
+unsupported TCP option TCP_MAXSEG.  Fix contributed by **Tony
+Breeds**
+  * Added support for setting the SNI hostname header.  The SSL
+protocol version is now set to SSLv23 Contributed by **Dhananjay
+Sathe**
+  * Authentication mechanisms were refactored to be more
+modular. GSSAPI authentication is now supported.  Contributed by
+**Alexander Dutton**
+  * Do not reconnect on collect.  Fix contributed by **Gord Chung**
+
+---

Old:

  amqp-2.1.4.tar.gz

New:

  amqp-2.2.2.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.72Lo9r/_old  2017-10-26 18:46:28.902077141 +0200
+++ /var/tmp/diff_new_pack.72Lo9r/_new  2017-10-26 18:46:28.906076954 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-amqp
-Version:2.1.4
+Version:2.2.2
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1+
@@ -30,6 +30,7 @@
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module vine}
+BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-vine >= 1.1.3
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -51,6 +52,7 @@
 
 %install
 %python_install
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
 %python_exec %{_bindir}/py.test

++ amqp-2.1.4.tar.gz -> amqp-2.2.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-2.1.4/Changelog new/amqp-2.2.2/Changelog
--- old/amqp-2.1.4/Changelog2016-12-15 00:50:09.0 +0100
+++ new/amqp-2.2.2/Changelog2017-09-14 13:36:47.0 +0200
@@ -5,6 +5,73 @@
 The previous amqplib changelog is here:
 http://code.google.com/p/py-amqplib/source/browse/CHANGES
 
+.. _version-2.2.2:
+
+2.2.2
+=
+:release-date: 2017-09-14 09:00 A.M UTC+2
+:release-by: Omer Katz
+
+- Sending empty messages no longer hangs. Instead an empty message is sent 
correctly.(addresses #151)
+
+  Fix contributed by **Christian Blades**
+
+- Fixed compatibility issues in UTF-8 encoding behavior between Py2/Py3 (#164)
+
+  Fix contributed by **Tyler James Harden**
+
+.. _version-2.2.1:
+
+2.2.1
+=
+:release-date: 2017-07-14 09:00 A.M UTC+2
+:release-by: Omer Katz
+
+- Fix implicit conversion from bytes to string on the connection object. 
(Issue #155)
+
+  This issue has caused Celery to crash on connection to RabbitMQ.
+
+  Fix contributed by **Omer Katz**
+
+.. _version-2.2.0:
+
+2.2.0
+=
+:release-date: 2017-07-12 10:00 A.M UTC+2
+:release-by: Ask Solem
+
+- Fix random delays in task execution.
+
+  This is a bug that caused performance issues due to polling timeouts that 
occur when receiving incomplete AMQP frames. (Issues #3978 #3737 #3814)
+
+  Fix contributed by **Robert 

commit python-amqp for openSUSE:Factory

2017-04-12 Thread root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2017-04-12 17:31:29

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is "python-amqp"

Wed Apr 12 17:31:29 2017 rev:21 rq:480635 version:2.1.4

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2016-01-26 
10:14:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2017-04-12 18:19:21.311325142 +0200
@@ -1,0 +2,49 @@
+Wed Mar 15 09:15:18 UTC 2017 - tbecht...@suse.com
+
+- update to 2.1.4:
+  - Removes byte string comparison warnings when running under ``python -b``.
+  - Linux version parsing broke when the version included a '+' character
+(Issue #119).
+  - Now sets default TCP settings for platforms that support them (e.g. Linux).
+  - Fixes compatibility with Python 2.7.5 and below (Issue #107).
+  - Linux: Now sets the :data:`~socket.TCP_USER_TIMEOUT` flag if available
+for better failed connection detection.
+  - Python compatibility: Fixed compatibility when using the python ``-b`` 
flag.
+  - Frame writer: Account for overhead when calculating frame size.
+  - Frame writer: Account for overhead when calculating frame size.
+  - Datetimes in method frame arguments are now handled properly.
+  - Fixed compatibility with Python <= 2.7.6
+  - Frame_writer is no longer a generator, which should solve
+a rare "generator already executing" error (Issue #103).
+  - SSLTransport: Fixed crash "no attribute sslopts" when ``ssl=True``
+(Issue #100).
+  - Fixed incompatible argument spec for ``Connection.Close`` (Issue #45).
+This caused the RabbitMQ server to raise an exception (INTERNAL ERROR).
+  - Transport: No longer implements `__del__` to make sure gc can collect
+connections.
+  - Python 3: Installation requirements ended up being a generator
+and crashed setup.py.
+  - Python <= 2.7.7: struct.pack arguments cannot be unicode
+  - Python 3.4: Fixed use of `bytes % int`.
+  - Connection/Transport: Fixed handling of default port.
+  - Adds backward compatibility layer for the 1.4 API.
+  - Fixes kombu 3.0/celery 3.1 compatibility (Issue #88).
+  - Fixed compatibility with Python 2.7.3 (Issue #85)
+  - Fixed bug where calling drain_events() with a timeout of 0 would actually
+block until a frame is received.
+  - Documentation moved to http://amqp.readthedocs.io (Issue #89).
+  - No longer supports Python 2.6
+  - You must now call Connection.connect() to establish the connection.
+  - Library rewritten to anticipate async changes.
+  - Connection now exposes underlying socket options.
+  - Additional logging for heartbeats.
+  - SSL: Fixes issue with remote connection hanging
+  - SSL: ``ssl`` dict argument now supports the ``check_hostname`` key
+(Issue #63).
+- Drop tune-keepalive-intervals.diff . Similar solution applied upstream
+- Drop amqp-drop-sphinxcontrib-issuetracker-dependency.patch. No longer
+  needed
+- Switch to singlespec approach
+- Drop doc build
+
+---

Old:

  amqp-1.4.9.tar.gz
  amqp-drop-sphinxcontrib-issuetracker-dependency.patch
  tune-keepalive-intervals.diff

New:

  amqp-2.1.4.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.PMmgyA/_old  2017-04-12 18:19:21.831251622 +0200
+++ /var/tmp/diff_new_pack.PMmgyA/_new  2017-04-12 18:19:21.835251056 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-amqp
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,64 +16,48 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-amqp
-Version:1.4.9
+Version:2.1.4
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1+
 Group:  Development/Languages/Python
 Url:http://github.com/celery/py-amqp
-Source: 
https://pypi.python.org/packages/source/a/amqp/amqp-%{version}.tar.gz
+Source: https://pypi.io/packages/source/a/amqp/amqp-%{version}.tar.gz
 Source99:   %{name}.changes
-# PATCH-FIX-OPENSUSE speili...@suse.com -- Avoid excessive doc dependencies
-Patch0: amqp-drop-sphinxcontrib-issuetracker-dependency.patch
-Patch1: tune-keepalive-intervals.diff
-BuildRequires:  python-devel
-BuildRequires:  python-setuptools
-# Documentation requirements:
-BuildRequires:  

commit python-amqp for openSUSE:Factory

2016-01-26 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2016-01-26 10:14:39

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is "python-amqp"

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2016-01-01 
19:47:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2016-01-26 10:14:40.0 +0100
@@ -1,0 +2,10 @@
+Wed Jan 13 17:10:55 UTC 2016 - antoine.belv...@laposte.net
+
+- Update to 1.4.9:
+  * Fix compatibility with Linux/OS X instances where the
+``ctypes`` module does not exist
+- Changes from 1.4.8:
+  * ``abstract_channel.wait`` now accepts a float `timeout`
+parameter expressed in seconds
+
+---

Old:

  amqp-1.4.7.tar.gz

New:

  amqp-1.4.9.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.G2VEKg/_old  2016-01-26 10:14:41.0 +0100
+++ /var/tmp/diff_new_pack.G2VEKg/_new  2016-01-26 10:14:41.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-amqp
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python-amqp
-Version:1.4.7
+Version:1.4.9
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1+

++ amqp-1.4.7.tar.gz -> amqp-1.4.9.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.7/Changelog new/amqp-1.4.9/Changelog
--- old/amqp-1.4.7/Changelog2015-10-03 02:31:01.0 +0200
+++ new/amqp-1.4.9/Changelog2016-01-09 02:56:03.0 +0100
@@ -5,6 +5,29 @@
 The previous amqplib changelog is here:
 http://code.google.com/p/py-amqplib/source/browse/CHANGES
 
+.. _version-1.4.9:
+
+1.4.9
+=
+:release-date: 2016-01-08 5:50 PM PST
+
+- Fixes compatibility with Linux/OS X instances where the ``ctypes`` module
+  does not exist.
+
+Fix contributed by Jared Lewis.
+
+.. _version-1.4.8:
+
+1.4.8
+=
+:release-date: 2015-12-07 12:25 AM
+:release-by: Ask Solem
+
+- ``abstract_channel.wait`` now accepts a float `timeout` parameter expressed
+in seconds
+
+Contributed by Goir.
+
 .. _version-1.4.7:
 
 1.4.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.7/PKG-INFO new/amqp-1.4.9/PKG-INFO
--- old/amqp-1.4.7/PKG-INFO 2015-10-03 02:33:44.0 +0200
+++ new/amqp-1.4.9/PKG-INFO 2016-01-09 02:58:17.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: amqp
-Version: 1.4.7
+Version: 1.4.9
 Summary: Low-level AMQP client for Python (fork of amqplib)
 Home-page: http://github.com/celery/py-amqp
 Author: Ask Solem
@@ -10,7 +10,7 @@
  Python AMQP 0.9.1 client library
 =
 
-:Version: 1.4.7
+:Version: 1.4.9
 :Web: http://amqp.readthedocs.org/
 :Download: http://pypi.python.org/pypi/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.7/README.rst new/amqp-1.4.9/README.rst
--- old/amqp-1.4.7/README.rst   2015-10-03 00:02:20.0 +0200
+++ new/amqp-1.4.9/README.rst   2016-01-09 02:56:48.0 +0100
@@ -2,7 +2,7 @@
  Python AMQP 0.9.1 client library
 =
 
-:Version: 1.4.7
+:Version: 1.4.9
 :Web: http://amqp.readthedocs.org/
 :Download: http://pypi.python.org/pypi/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.7/amqp/__init__.py 
new/amqp-1.4.9/amqp/__init__.py
--- old/amqp-1.4.7/amqp/__init__.py 2015-10-03 00:02:20.0 +0200
+++ new/amqp-1.4.9/amqp/__init__.py 2016-01-09 02:57:00.0 +0100
@@ -16,7 +16,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
 from __future__ import absolute_import
 
-VERSION = (1, 4, 7)
+VERSION = (1, 4, 9)
 __version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
 __author__ = 'Barry Pederson'
 __maintainer__ = 'Ask Solem'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.7/amqp/abstract_channel.py 

commit python-amqp for openSUSE:Factory

2016-01-01 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2016-01-01 19:47:15

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is "python-amqp"

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2015-10-19 
22:48:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2016-01-01 19:47:55.0 +0100
@@ -1,0 +2,5 @@
+Thu Dec 10 09:43:54 UTC 2015 - seife+...@b1-systems.com
+
+- remove build date from documentation
+
+---



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.fxFjs2/_old  2016-01-01 19:47:56.0 +0100
+++ /var/tmp/diff_new_pack.fxFjs2/_new  2016-01-01 19:47:56.0 +0100
@@ -24,6 +24,7 @@
 Group:  Development/Languages/Python
 Url:http://github.com/celery/py-amqp
 Source: 
https://pypi.python.org/packages/source/a/amqp/amqp-%{version}.tar.gz
+Source99:   %{name}.changes
 # PATCH-FIX-OPENSUSE speili...@suse.com -- Avoid excessive doc dependencies
 Patch0: amqp-drop-sphinxcontrib-issuetracker-dependency.patch
 Patch1: tune-keepalive-intervals.diff
@@ -56,6 +57,10 @@
 %patch0 -p1
 %patch1 -p0
 
+# hack, or sphinx will put today's date into the HTML files
+DOCDATE="`date +"%B %e, %Y" -r %{S:99}`"
+echo "today = '$DOCDATE'" >> docs/conf.py
+
 %build
 python setup.py build
 python setup.py build_sphinx && rm build/sphinx/html/.buildinfo




commit python-amqp for openSUSE:Factory

2015-10-19 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2015-10-19 22:48:41

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is "python-amqp"

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2015-08-11 
08:26:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2015-10-19 22:48:42.0 +0200
@@ -1,0 +2,17 @@
+Mon Oct  5 13:43:48 UTC 2015 - mci...@suse.cz
+
+- Add uniittest2 to BuildRequires for Python 2.6
+
+---
+Sun Oct  4 09:50:25 UTC 2015 - tbecht...@suse.com
+
+- update to 1.4.7:
+  * Fixed libSystem error on OS X 10.11 (El Capitan)
+  * ``channel.basic_publish`` now raises :exc:`amqp.exceptions.NotConfirmed` on
+``basic.nack``.
+  * AMQP timestamps received are now converted from GMT instead of local time
+(Issue #67).
+  * Wheel package installation now supported by both Python 2 and Python3.
+- Add python-mock as BuildRequires. Needed for tests
+
+---

Old:

  amqp-1.4.6.tar.gz

New:

  amqp-1.4.7.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.eXrXRm/_old  2015-10-19 22:48:42.0 +0200
+++ /var/tmp/diff_new_pack.eXrXRm/_new  2015-10-19 22:48:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-amqp
-Version:1.4.6
+Version:1.4.7
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1+
@@ -32,7 +32,11 @@
 # Documentation requirements:
 BuildRequires:  python-Sphinx
 # Test requirements:
+BuildRequires:  python-mock
 BuildRequires:  python-nose
+%if 0%{?suse_version} && 0%{?suse_version} <= 1110
+BuildRequires:  python-unittest2
+%endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version} && 0%{?suse_version} <= 1110
 %{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}

++ amqp-1.4.6.tar.gz -> amqp-1.4.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.6/Changelog new/amqp-1.4.7/Changelog
--- old/amqp-1.4.6/Changelog2014-08-11 19:00:17.0 +0200
+++ new/amqp-1.4.7/Changelog2015-10-03 02:31:01.0 +0200
@@ -5,6 +5,27 @@
 The previous amqplib changelog is here:
 http://code.google.com/p/py-amqplib/source/browse/CHANGES
 
+.. _version-1.4.7:
+
+1.4.7
+=
+:release-date: 2015-10-02 05:30 P.M PDT
+:release-by: Ask Solem
+
+- Fixed libSystem error on OS X 10.11 (El Capitan)
+
+Fix contributed by Eric Wang.
+
+- ``channel.basic_publish`` now raises :exc:`amqp.exceptions.NotConfirmed` on
+``basic.nack``.
+
+- AMQP timestamps received are now converted from GMT instead of local time
+(Issue #67).
+
+- Wheel package installation now supported by both Python 2 and Python3.
+
+Fix contributed by Rémy Greinhofer.
+
 .. _version-1.4.6:
 
 1.4.6
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.6/PKG-INFO new/amqp-1.4.7/PKG-INFO
--- old/amqp-1.4.6/PKG-INFO 2014-08-11 19:02:54.0 +0200
+++ new/amqp-1.4.7/PKG-INFO 2015-10-03 02:33:44.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: amqp
-Version: 1.4.6
+Version: 1.4.7
 Summary: Low-level AMQP client for Python (fork of amqplib)
 Home-page: http://github.com/celery/py-amqp
 Author: Ask Solem
@@ -10,7 +10,7 @@
  Python AMQP 0.9.1 client library
 =
 
-:Version: 1.4.6
+:Version: 1.4.7
 :Web: http://amqp.readthedocs.org/
 :Download: http://pypi.python.org/pypi/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.6/README.rst new/amqp-1.4.7/README.rst
--- old/amqp-1.4.6/README.rst   2014-08-11 19:00:36.0 +0200
+++ new/amqp-1.4.7/README.rst   2015-10-03 00:02:20.0 +0200
@@ -2,7 +2,7 @@
  Python AMQP 0.9.1 client library
 =
 
-:Version: 1.4.6
+:Version: 1.4.7
 :Web: http://amqp.readthedocs.org/
 :Download: http://pypi.python.org/pypi/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.6/amqp/__init__.py 
new/amqp-1.4.7/amqp/__init__.py
--- old/amqp-1.4.6/amqp/__init__.py

commit python-amqp for openSUSE:Factory

2015-08-11 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2015-08-11 08:26:49

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is python-amqp

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2015-02-18 
12:08:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2015-08-11 08:26:51.0 +0200
@@ -1,0 +2,6 @@
+Thu Aug  6 13:20:10 UTC 2015 - cdenic...@suse.com
+
+- license update: LGPL-2.1+
+  LGPL includes or later
+
+---



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.1XJRT2/_old  2015-08-11 08:26:51.0 +0200
+++ /var/tmp/diff_new_pack.1XJRT2/_new  2015-08-11 08:26:51.0 +0200
@@ -20,7 +20,7 @@
 Version:1.4.6
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
-License:LGPL-2.1
+License:LGPL-2.1+
 Group:  Development/Languages/Python
 Url:http://github.com/celery/py-amqp
 Source: 
https://pypi.python.org/packages/source/a/amqp/amqp-%{version}.tar.gz




commit python-amqp for openSUSE:Factory

2015-02-18 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2015-02-18 11:39:30

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is python-amqp

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2014-09-17 
17:25:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2015-02-18 12:08:53.0 +0100
@@ -1,0 +2,6 @@
+Thu Jan 29 16:15:42 UTC 2015 - dmuel...@suse.com
+
+- replace set_socket_TCP_KEEPALIVE_and_TCP_USER_TIMEOUT.patch 
+  with tune-keepalive-intervals.diff (bnc#902207)
+
+---

New:

  tune-keepalive-intervals.diff



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.6RuUkX/_old  2015-02-18 12:08:54.0 +0100
+++ /var/tmp/diff_new_pack.6RuUkX/_new  2015-02-18 12:08:54.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-amqp
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,6 +26,7 @@
 Source: 
https://pypi.python.org/packages/source/a/amqp/amqp-%{version}.tar.gz
 # PATCH-FIX-OPENSUSE speili...@suse.com -- Avoid excessive doc dependencies
 Patch0: amqp-drop-sphinxcontrib-issuetracker-dependency.patch
+Patch1: tune-keepalive-intervals.diff
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
 # Documentation requirements:
@@ -49,6 +50,7 @@
 %prep
 %setup -q -n amqp-%{version}
 %patch0 -p1
+%patch1 -p0
 
 %build
 python setup.py build

++ tune-keepalive-intervals.diff ++
--- amqp/transport.py
+++ amqp/transport.py
@@ -98,6 +98,12 @@
 self.sock.settimeout(None)
 self.sock.setsockopt(SOL_TCP, socket.TCP_NODELAY, 1)
 self.sock.setsockopt(socket.SOL_SOCKET, socket.SO_KEEPALIVE, 1)
+# If connection is idle for more than KEEPIDLE seconds
+# Start sending a probe every KEEPINTVL seconds
+# for KEEPCNT times. If none respond, about the connection
+self.sock.setsockopt(socket.SOL_TCP, socket.TCP_KEEPIDLE, 60)
+self.sock.setsockopt(socket.SOL_TCP, socket.TCP_KEEPINTVL, 10)
+self.sock.setsockopt(socket.SOL_TCP, socket.TCP_KEEPCNT, 9)
 
 self._setup_transport()
 
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-amqp for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2014-09-17 17:25:23

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is python-amqp

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2014-05-17 
21:44:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2014-09-17 17:25:34.0 +0200
@@ -1,0 +2,8 @@
+Mon Sep 15 07:50:41 UTC 2014 - tbecht...@suse.com
+
+- update to 1.4.6:
+  * Now keeps buffer when socket times out.
+  * Adds ``Connection.Transport`` attribute that can be used to specify
+a different transport implementation.
+
+---

Old:

  amqp-1.4.5.tar.gz

New:

  amqp-1.4.6.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.78y0mk/_old  2014-09-17 17:25:35.0 +0200
+++ /var/tmp/diff_new_pack.78y0mk/_new  2014-09-17 17:25:35.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-amqp
-Version:1.4.5
+Version:1.4.6
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1

++ amqp-1.4.5.tar.gz - amqp-1.4.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.5/Changelog new/amqp-1.4.6/Changelog
--- old/amqp-1.4.5/Changelog2014-04-15 23:06:37.0 +0200
+++ new/amqp-1.4.6/Changelog2014-08-11 19:00:17.0 +0200
@@ -5,6 +5,22 @@
 The previous amqplib changelog is here:
 http://code.google.com/p/py-amqplib/source/browse/CHANGES
 
+.. _version-1.4.6:
+
+1.4.6
+=
+:release-date: 2014-08-11 06:00 P.M UTC
+:release-by: Ask Solem
+
+- Now keeps buffer when socket times out.
+
+Fix contributed by Artyom Koval.
+
+- Adds ``Connection.Transport`` attribute that can be used to specify
+  a different transport implementation.
+
+Contributed by Yury Selivanov.
+
 .. _version-1.4.5:
 
 1.4.5
@@ -232,7 +248,7 @@
 
 1.1.0
 =
-:release-date: 2012-11-08 10:36 P.M UTC
+:release-date: 2013-11-08 10:36 P.M UTC
 :release-by: Ask Solem
 
 - No longer supports Python 2.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.5/PKG-INFO new/amqp-1.4.6/PKG-INFO
--- old/amqp-1.4.5/PKG-INFO 2014-04-15 23:08:15.0 +0200
+++ new/amqp-1.4.6/PKG-INFO 2014-08-11 19:02:54.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: amqp
-Version: 1.4.5
+Version: 1.4.6
 Summary: Low-level AMQP client for Python (fork of amqplib)
 Home-page: http://github.com/celery/py-amqp
 Author: Ask Solem
@@ -10,7 +10,7 @@
  Python AMQP 0.9.1 client library
 =
 
-:Version: 1.4.5
+:Version: 1.4.6
 :Web: http://amqp.readthedocs.org/
 :Download: http://pypi.python.org/pypi/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.5/README.rst new/amqp-1.4.6/README.rst
--- old/amqp-1.4.5/README.rst   2014-04-15 23:06:37.0 +0200
+++ new/amqp-1.4.6/README.rst   2014-08-11 19:00:36.0 +0200
@@ -2,7 +2,7 @@
  Python AMQP 0.9.1 client library
 =
 
-:Version: 1.4.5
+:Version: 1.4.6
 :Web: http://amqp.readthedocs.org/
 :Download: http://pypi.python.org/pypi/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.5/amqp/__init__.py 
new/amqp-1.4.6/amqp/__init__.py
--- old/amqp-1.4.5/amqp/__init__.py 2014-04-15 23:06:37.0 +0200
+++ new/amqp-1.4.6/amqp/__init__.py 2014-08-11 19:00:30.0 +0200
@@ -16,7 +16,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
 from __future__ import absolute_import
 
-VERSION = (1, 4, 5)
+VERSION = (1, 4, 6)
 __version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
 __author__ = 'Barry Pederson'
 __maintainer__ = 'Ask Solem'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.5/amqp/connection.py 
new/amqp-1.4.6/amqp/connection.py
--- old/amqp-1.4.5/amqp/connection.py   2014-02-09 15:59:03.0 +0100
+++ new/amqp-1.4.6/amqp/connection.py   2014-08-11 18:56:50.0 +0200
@@ -162,7 +162,7 @@
 # Let the transport.py module setup the actual
 # socket connection to the broker.
 #
-

commit python-amqp for openSUSE:Factory

2014-05-17 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2014-05-17 21:44:04

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is python-amqp

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2014-03-07 
07:05:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2014-05-17 21:44:05.0 +0200
@@ -1,0 +2,10 @@
+Mon May  5 08:07:30 UTC 2014 - dmuel...@suse.com
+
+- update to 1.4.5:
+  - Can now deserialize more AMQP types.
+  - SSL: Workaround for Python SSL bug.
+  - ``Transport.__del_`` now handles errors occurring at late interpreter
+  shutdown (Issue #36).
+ - SSL transport accidentally disconnected after read timeout.
+
+---

Old:

  amqp-1.4.3.tar.gz

New:

  amqp-1.4.5.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.fOyYxQ/_old  2014-05-17 21:44:07.0 +0200
+++ /var/tmp/diff_new_pack.fOyYxQ/_new  2014-05-17 21:44:07.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-amqp
-Version:1.4.3
+Version:1.4.5
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1

++ amqp-1.4.3.tar.gz - amqp-1.4.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.3/Changelog new/amqp-1.4.5/Changelog
--- old/amqp-1.4.3/Changelog2014-02-09 15:59:03.0 +0100
+++ new/amqp-1.4.5/Changelog2014-04-15 23:06:37.0 +0200
@@ -5,11 +5,49 @@
 The previous amqplib changelog is here:
 http://code.google.com/p/py-amqplib/source/browse/CHANGES
 
+.. _version-1.4.5:
+
+1.4.5
+=
+:release-date: 2014-04-15 09:00 P.M UTC
+:release-by: Ask Solem
+
+- Can now deserialize more AMQP types.
+
+Now handles types ``short string``, ``short short int``,
+``short short unsigned int``, ``short int``,  ``short unsigned int``,
+``long unsigned int``,  ``long long int``, ``long long unsigned int``
+and ``float`` which for some reason was missing, even in the original
+amqplib module.
+
+- SSL: Workaround for Python SSL bug.
+
+A bug in the python socket library causes ``ssl.read/write()``
+on a closed socket to raise :exc:`AttributeError` instead of
+:exc:`IOError`.
+
+Fix contributed by Craig Jellick.
+
+- ``Transport.__del_`` now handles errors occurring at late interpreter
+  shutdown (Issue #36).
+
+.. _version-1.4.4:
+
+1.4.4
+=
+:release-date: 2014-03-03 04:00 P.M UTC
+:release-by: Ask Solem
+
+- SSL transport accidentally disconnected after read timeout.
+
+Fix contributed by Craig Jellick.
+
 .. _version-1.4.3:
 
 1.4.3
 =
 :release-date: 2014-02-09 03:00 P.M UTC
+:release-by: Ask Solem
 
 - Fixed bug where more data was requested from the socket
   than was actually needed.
@@ -30,6 +68,7 @@
 1.4.1
 =
 :release-date: 2014-01-14 09:30 P.M UTC
+:release-by: Ask Solem
 
 - Fixed error occurring when heartbeats disabled.
 
@@ -38,6 +77,7 @@
 1.4.0
 =
 :release-date: 2014-01-13 03:00 P.M UTC
+:release-by: Ask Solem
 
 - Heartbeat implementation improved (Issue #6).
 
@@ -69,6 +109,7 @@
 1.3.3
 =
 :release-date: 2013-11-11 03:30 P.M UTC
+:release-by: Ask Solem
 
 - SSLTransport: Now keeps read buffer if an exception is raised
   (Issue #26).
@@ -80,6 +121,7 @@
 1.3.2
 =
 :release-date: 2013-10-29 02:00 P.M UTC
+:release-by: Ask Solem
 
 - Message.channel is now a channel object (not the channel id).
 
@@ -91,6 +133,7 @@
 1.3.1
 =
 :release-date: 2013-10-24 04:00 P.M UTC
+:release-by: Ask Solem
 
 - Now implements Connection.connected (Issue #22).
 
@@ -101,6 +144,7 @@
 1.3.0
 =
 :release-date: 2013-09-04 02:39 P.M UTC
+:release-by: Ask Solem
 
 - Now sets ``Message.channel`` on delivery (Issue #12)
 
@@ -142,6 +186,7 @@
 1.2.1
 =
 :release-date: 2013-08-16 05:30 P.M UTC
+:release-by: Ask Solem
 
 - Adds promise type: :meth:`amqp.utils.promise`
 
@@ -152,6 +197,7 @@
 1.2.0
 =
 :release-date: 2012-11-12 04:00 P.M UTC
+:release-by: Ask Solem
 
 - New exception hierarchy:
 
@@ -187,6 +233,7 @@
 1.1.0
 =
 :release-date: 2012-11-08 10:36 P.M UTC
+:release-by: Ask Solem
 
 - No longer supports Python 2.5
 
@@ -201,6 +248,7 @@
 1.0.13
 ==
 :release-date: 2013-07-31 04:00 P.M BST
+:release-by: Ask Solem
 
 - Fixed problems with the SSL transport (Issue #15).
 
@@ -213,6 +261,7 @@
 1.0.12
 ==
 :release-date: 2013-06-25 02:00 P.M BST
+:release-by: Ask Solem
 
 - Fixed another Python 3 compatibility problem.
 
@@ -221,6 +270,7 @@
 1.0.11
 ==
 

commit python-amqp for openSUSE:Factory

2014-03-06 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2014-03-07 07:05:57

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is python-amqp

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2014-02-21 
20:54:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2014-03-07 07:05:59.0 +0100
@@ -1,0 +2,6 @@
+Thu Mar  6 14:38:33 UTC 2014 - speili...@suse.com
+
+- Add amqp-drop-sphinxcontrib-issuetracker-dependency.patch: Avoid
+  unnesseary build-time dependencies.
+
+---

New:

  amqp-drop-sphinxcontrib-issuetracker-dependency.patch



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.P7DZTN/_old  2014-03-07 07:05:59.0 +0100
+++ /var/tmp/diff_new_pack.P7DZTN/_new  2014-03-07 07:06:00.0 +0100
@@ -24,11 +24,12 @@
 Group:  Development/Languages/Python
 Url:http://github.com/celery/py-amqp
 Source: 
https://pypi.python.org/packages/source/a/amqp/amqp-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE speili...@suse.com -- Avoid excessive doc dependencies
+Patch0: amqp-drop-sphinxcontrib-issuetracker-dependency.patch
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
 # Documentation requirements:
 BuildRequires:  python-Sphinx
-BuildRequires:  python-sphinxcontrib-issuetracker
 # Test requirements:
 BuildRequires:  python-nose
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -47,6 +48,7 @@
 
 %prep
 %setup -q -n amqp-%{version}
+%patch0 -p1
 
 %build
 python setup.py build

++ amqp-drop-sphinxcontrib-issuetracker-dependency.patch ++
diff -ruN a/docs/conf.py b/docs/conf.py
--- a/docs/conf.py  2014-01-22 20:52:51.0 +0100
+++ b/docs/conf.py  2014-03-06 15:35:00.025207871 +0100
@@ -18,8 +18,7 @@
 extensions = ['sphinx.ext.autodoc',
   'sphinx.ext.coverage',
   'sphinx.ext.pngmath',
-  'sphinx.ext.intersphinx',
-  'sphinxcontrib.issuetracker']
+  'sphinx.ext.intersphinx']
 
 html_show_sphinx = False
 
diff -ruN a/requirements/docs.txt b/requirements/docs.txt
--- a/requirements/docs.txt 2014-01-22 20:52:51.0 +0100
+++ b/requirements/docs.txt 2014-03-06 15:35:05.089203433 +0100
@@ -1,2 +1 @@
 Sphinx
-sphinxcontrib-issuetracker=0.9
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-amqp for openSUSE:Factory

2014-02-21 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2014-02-21 20:54:21

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is python-amqp

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2014-01-23 
15:53:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2014-02-21 20:54:23.0 +0100
@@ -1,0 +2,9 @@
+Thu Feb 20 18:31:59 UTC 2014 - dmuel...@suse.com
+
+- update to 1.4.3:
+  - Fixed bug where more data was requested from the socket
+than was actually needed.
+  - Heartbeat negotiation would use heartbeat value from server even
+if heartbeat disabled (Issue #31).
+
+---

Old:

  amqp-1.4.1.tar.gz

New:

  amqp-1.4.3.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.W9lwEf/_old  2014-02-21 20:54:24.0 +0100
+++ /var/tmp/diff_new_pack.W9lwEf/_new  2014-02-21 20:54:24.0 +0100
@@ -17,13 +17,13 @@
 
 
 Name:   python-amqp
-Version:1.4.1
+Version:1.4.3
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1
 Group:  Development/Languages/Python
 Url:http://github.com/celery/py-amqp
-Source: 
http://pypi.python.org/packages/source/a/amqp/amqp-%{version}.tar.gz
+Source: 
https://pypi.python.org/packages/source/a/amqp/amqp-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
 # Documentation requirements:

++ amqp-1.4.1.tar.gz - amqp-1.4.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.1/Changelog new/amqp-1.4.3/Changelog
--- old/amqp-1.4.1/Changelog2014-01-14 22:33:22.0 +0100
+++ new/amqp-1.4.3/Changelog2014-02-09 15:59:03.0 +0100
@@ -5,6 +5,26 @@
 The previous amqplib changelog is here:
 http://code.google.com/p/py-amqplib/source/browse/CHANGES
 
+.. _version-1.4.3:
+
+1.4.3
+=
+:release-date: 2014-02-09 03:00 P.M UTC
+
+- Fixed bug where more data was requested from the socket
+  than was actually needed.
+
+Contributed by Ionel Cristian Mărieș.
+
+.. _version-1.4.2:
+
+1.4.2
+=
+:release-date: 2014-01-23 05:00 P.M UTC
+
+- Heartbeat negotiation would use heartbeat value from server even
+  if heartbeat disabled (Issue #31).
+
 .. _version-1.4.1:
 
 1.4.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.1/PKG-INFO new/amqp-1.4.3/PKG-INFO
--- old/amqp-1.4.1/PKG-INFO 2014-01-14 22:34:58.0 +0100
+++ new/amqp-1.4.3/PKG-INFO 2014-02-09 15:59:44.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: amqp
-Version: 1.4.1
+Version: 1.4.3
 Summary: Low-level AMQP client for Python (fork of amqplib)
 Home-page: http://github.com/celery/py-amqp
 Author: Ask Solem
@@ -10,7 +10,7 @@
  Python AMQP 0.9.1 client library
 =
 
-:Version: 1.4.1
+:Version: 1.4.3
 :Web: http://amqp.readthedocs.org/
 :Download: http://pypi.python.org/pypi/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.1/README.rst new/amqp-1.4.3/README.rst
--- old/amqp-1.4.1/README.rst   2014-01-14 22:33:31.0 +0100
+++ new/amqp-1.4.3/README.rst   2014-02-09 15:59:03.0 +0100
@@ -2,7 +2,7 @@
  Python AMQP 0.9.1 client library
 =
 
-:Version: 1.4.1
+:Version: 1.4.3
 :Web: http://amqp.readthedocs.org/
 :Download: http://pypi.python.org/pypi/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.1/amqp/__init__.py 
new/amqp-1.4.3/amqp/__init__.py
--- old/amqp-1.4.1/amqp/__init__.py 2014-01-14 22:33:27.0 +0100
+++ new/amqp-1.4.3/amqp/__init__.py 2014-02-09 15:59:03.0 +0100
@@ -16,7 +16,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
 from __future__ import absolute_import
 
-VERSION = (1, 4, 1)
+VERSION = (1, 4, 3)
 __version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
 __author__ = 'Barry Pederson'
 __maintainer__ = 'Ask Solem'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.1/amqp/connection.py 
new/amqp-1.4.3/amqp/connection.py
--- 

commit python-amqp for openSUSE:Factory

2014-01-23 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2014-01-22 09:58:56

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is python-amqp

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2014-01-15 
16:26:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2014-01-23 15:53:49.0 +0100
@@ -1,0 +2,6 @@
+Tue Jan 21 13:13:06 UTC 2014 - dmuel...@suse.com
+
+- update to 1.4.1:
+  - Fixed error occurring when heartbeats disabled.
+
+---

Old:

  amqp-1.4.0.tar.gz

New:

  amqp-1.4.1.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.v4UhZm/_old  2014-01-23 15:53:49.0 +0100
+++ /var/tmp/diff_new_pack.v4UhZm/_new  2014-01-23 15:53:49.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python-amqp
-Version:1.4.0
+Version:1.4.1
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1

++ amqp-1.4.0.tar.gz - amqp-1.4.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.0/Changelog new/amqp-1.4.1/Changelog
--- old/amqp-1.4.0/Changelog2014-01-13 15:50:56.0 +0100
+++ new/amqp-1.4.1/Changelog2014-01-14 22:33:22.0 +0100
@@ -5,10 +5,19 @@
 The previous amqplib changelog is here:
 http://code.google.com/p/py-amqplib/source/browse/CHANGES
 
+.. _version-1.4.1:
+
+1.4.1
+=
+:release-date: 2014-01-14 09:30 P.M UTC
+
+- Fixed error occurring when heartbeats disabled.
+
 .. _version-1.4.0:
 
 1.4.0
-:release-date: 2014-01-13 3:00 P.M UTC
+=
+:release-date: 2014-01-13 03:00 P.M UTC
 
 - Heartbeat implementation improved (Issue #6).
 
@@ -39,7 +48,7 @@
 
 1.3.3
 =
-:release-date: 2013-11-11 3:30 P.M UTC
+:release-date: 2013-11-11 03:30 P.M UTC
 
 - SSLTransport: Now keeps read buffer if an exception is raised
   (Issue #26).
@@ -50,7 +59,7 @@
 
 1.3.2
 =
-:release-date: 2013-10-29 2:00 P.M UTC
+:release-date: 2013-10-29 02:00 P.M UTC
 
 - Message.channel is now a channel object (not the channel id).
 
@@ -171,7 +180,7 @@
 
 1.0.13
 ==
-:release-date: 2013-07-31 16:00 P.M BST
+:release-date: 2013-07-31 04:00 P.M BST
 
 - Fixed problems with the SSL transport (Issue #15).
 
@@ -183,7 +192,7 @@
 
 1.0.12
 ==
-:release-date: 2013-06-25 14:00 P.M BST
+:release-date: 2013-06-25 02:00 P.M BST
 
 - Fixed another Python 3 compatibility problem.
 
@@ -191,7 +200,7 @@
 
 1.0.11
 ==
-:release-date: 2013-04-11 18:00 P.M BST
+:release-date: 2013-04-11 06:00 P.M BST
 
 - Fixed Python 3 incompatibility in ``amqp/transport.py``.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.0/PKG-INFO new/amqp-1.4.1/PKG-INFO
--- old/amqp-1.4.0/PKG-INFO 2014-01-13 16:01:08.0 +0100
+++ new/amqp-1.4.1/PKG-INFO 2014-01-14 22:34:58.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: amqp
-Version: 1.4.0
+Version: 1.4.1
 Summary: Low-level AMQP client for Python (fork of amqplib)
 Home-page: http://github.com/celery/py-amqp
 Author: Ask Solem
@@ -10,7 +10,7 @@
  Python AMQP 0.9.1 client library
 =
 
-:Version: 1.4.0
+:Version: 1.4.1
 :Web: http://amqp.readthedocs.org/
 :Download: http://pypi.python.org/pypi/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.0/README.rst new/amqp-1.4.1/README.rst
--- old/amqp-1.4.0/README.rst   2014-01-13 15:51:21.0 +0100
+++ new/amqp-1.4.1/README.rst   2014-01-14 22:33:31.0 +0100
@@ -2,7 +2,7 @@
  Python AMQP 0.9.1 client library
 =
 
-:Version: 1.4.0
+:Version: 1.4.1
 :Web: http://amqp.readthedocs.org/
 :Download: http://pypi.python.org/pypi/amqp/
 :Source: http://github.com/celery/py-amqp/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.4.0/amqp/__init__.py 
new/amqp-1.4.1/amqp/__init__.py
--- old/amqp-1.4.0/amqp/__init__.py 2014-01-13 15:51:11.0 +0100
+++ new/amqp-1.4.1/amqp/__init__.py 2014-01-14 22:33:27.0 +0100
@@ -16,7 +16,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
 from __future__ import absolute_import
 
-VERSION = (1, 4, 0)
+VERSION = (1, 4, 1)
 __version__ = 

commit python-amqp for openSUSE:Factory

2014-01-15 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2014-01-15 16:26:33

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is python-amqp

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2013-12-02 
09:53:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2014-01-15 16:26:34.0 +0100
@@ -1,0 +2,8 @@
+Tue Jan 14 10:56:30 UTC 2014 - dmuel...@suse.com
+
+- update to 1.4.0:
+ - Heartbeat implementation improved (Issue #6).
+ - NoneType is now supported in tables and arrays.
+ - SSLTransport: Now handles ``ENOENT``.
+
+---

Old:

  amqp-1.3.3.tar.gz

New:

  amqp-1.4.0.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.seb3u1/_old  2014-01-15 16:26:34.0 +0100
+++ /var/tmp/diff_new_pack.seb3u1/_new  2014-01-15 16:26:34.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-amqp
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python-amqp
-Version:1.3.3
+Version:1.4.0
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1

++ amqp-1.3.3.tar.gz - amqp-1.4.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.3.3/Changelog new/amqp-1.4.0/Changelog
--- old/amqp-1.3.3/Changelog2013-11-11 16:25:08.0 +0100
+++ new/amqp-1.4.0/Changelog2014-01-13 15:50:56.0 +0100
@@ -5,6 +5,36 @@
 The previous amqplib changelog is here:
 http://code.google.com/p/py-amqplib/source/browse/CHANGES
 
+.. _version-1.4.0:
+
+1.4.0
+:release-date: 2014-01-13 3:00 P.M UTC
+
+- Heartbeat implementation improved (Issue #6).
+
+The new heartbeat behavior is the same approach as taken by the
+RabbitMQ java library.
+
+This also means that clients should preferably call the ``heartbeat_tick``
+method more frequently (like every second) instead of using the old
+``rate`` argument (which is now ignored).
+
+- Heartbeat interval is negotiated with the server.
+- Some delay is allowed if the heartbeat is late.
+- Monotonic time is used to keep track of the heartbeat
+  instead of relying on the caller to call the checking function
+  at the right time.
+
+Contributed by Dustin J. Mitchell.
+
+- NoneType is now supported in tables and arrays.
+
+Contributed by Dominik Fässler.
+
+- SSLTransport: Now handles ``ENOENT``.
+
+Fix contributed by Adrien Guinet.
+
 .. _version-1.3.3:
 
 1.3.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.3.3/PKG-INFO new/amqp-1.4.0/PKG-INFO
--- old/amqp-1.3.3/PKG-INFO 2013-11-11 16:25:52.0 +0100
+++ new/amqp-1.4.0/PKG-INFO 2014-01-13 16:01:08.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: amqp
-Version: 1.3.3
+Version: 1.4.0
 Summary: Low-level AMQP client for Python (fork of amqplib)
 Home-page: http://github.com/celery/py-amqp
 Author: Ask Solem
@@ -10,7 +10,7 @@
  Python AMQP 0.9.1 client library
 =
 
-:Version: 1.3.3
+:Version: 1.4.0
 :Web: http://amqp.readthedocs.org/
 :Download: http://pypi.python.org/pypi/amqp/
 :Source: http://github.com/celery/py-amqp/
@@ -107,6 +107,9 @@
 
 http://www.rabbitmq.com/devtools.html#python-dev
 
+.. image:: 
https://d2weczhvl823v0.cloudfront.net/celery/celery/trend.png
+:alt: Bitdeli badge
+:target: https://bitdeli.com/free
 
 Platform: any
 Classifier: Development Status :: 5 - Production/Stable
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/amqp-1.3.3/README.rst new/amqp-1.4.0/README.rst
--- old/amqp-1.3.3/README.rst   2013-11-11 16:24:04.0 +0100
+++ new/amqp-1.4.0/README.rst   2014-01-13 15:51:21.0 +0100
@@ -2,7 +2,7 @@
  Python AMQP 0.9.1 client library
 =
 
-:Version: 1.3.3
+:Version: 1.4.0
 :Web: http://amqp.readthedocs.org/
 :Download: http://pypi.python.org/pypi/amqp/
 :Source: http://github.com/celery/py-amqp/
@@ 

commit python-amqp for openSUSE:Factory

2013-12-02 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2013-12-02 09:53:04

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is python-amqp

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2013-10-25 
11:11:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2013-12-02 09:53:05.0 +0100
@@ -1,0 +2,12 @@
+Sun Dec  1 15:43:57 UTC 2013 - oliver.be...@opensuse.org
+
+- Update to 1.3.3:
+  - SSLTransport: Now keeps read buffer if an exception is raised
+  - Message.channel is now a channel object (not the channel id)
+  - Now sets ``Message.channel`` on delivery
+  - New option to wait for publish confirmations
+  - ``queue_declare`` now returns named tuple of type
+  - Contents of ``Channel.returned_messages`` is now named tuples.
+  - Sockets now set to close on exec using the ``FD_CLOEXEC`` flag
+
+---

Old:

  amqp-1.2.0.tar.gz

New:

  amqp-1.3.3.tar.gz



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.KnXgdG/_old  2013-12-02 09:53:05.0 +0100
+++ /var/tmp/diff_new_pack.KnXgdG/_new  2013-12-02 09:53:05.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python-amqp
-Version:1.2.0
+Version:1.3.3
 Release:0
 Summary:Low-level AMQP client for Python (fork of amqplib)
 License:LGPL-2.1

++ amqp-1.2.0.tar.gz - amqp-1.3.3.tar.gz ++
 2947 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-amqp for openSUSE:Factory

2013-10-25 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2013-10-25 11:11:00

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is python-amqp

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2013-05-07 
15:32:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2013-10-25 11:11:01.0 +0200
@@ -1,0 +2,5 @@
+Thu Oct 24 10:58:39 UTC 2013 - speili...@suse.com
+
+- Require python-setuptools instead of distribute (upstreams merged)
+
+---



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.wM8OUc/_old  2013-10-25 11:11:02.0 +0200
+++ /var/tmp/diff_new_pack.wM8OUc/_new  2013-10-25 11:11:02.0 +0200
@@ -25,7 +25,7 @@
 Url:http://github.com/celery/py-amqp
 Source: 
http://pypi.python.org/packages/source/a/amqp/amqp-%{version}.tar.gz
 BuildRequires:  python-devel
-BuildRequires:  python-distribute
+BuildRequires:  python-setuptools
 # Documentation requirements:
 BuildRequires:  python-Sphinx
 BuildRequires:  python-sphinxcontrib-issuetracker

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-amqp for openSUSE:Factory

2013-06-19 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2013-06-19 16:25:13

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is python-amqp

Changes:


Old:

  python3-amqp.changes
  python3-amqp.spec



Other differences:
--
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-amqp for openSUSE:Factory

2013-05-07 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2013-05-07 15:21:55

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is python-amqp

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2013-02-11 
15:08:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2013-05-07 15:32:30.0 +0200
@@ -1,0 +2,5 @@
+Tue Apr 30 09:21:42 UTC 2013 - speili...@suse.com
+
+- Run testsuite
+
+---
--- /work/SRC/openSUSE:Factory/python-amqp/python3-amqp.changes 2013-02-11 
15:08:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python3-amqp.changes
2013-05-07 15:32:30.0 +0200
@@ -1,0 +2,5 @@
+Tue Apr 30 09:21:55 UTC 2013 - speili...@suse.com
+
+- Run testsuite
+
+---



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.SWxbEG/_old  2013-05-07 15:32:31.0 +0200
+++ /var/tmp/diff_new_pack.SWxbEG/_new  2013-05-07 15:32:31.0 +0200
@@ -24,10 +24,13 @@
 Group:  Development/Languages/Python
 Url:http://github.com/celery/py-amqp
 Source: 
http://pypi.python.org/packages/source/a/amqp/amqp-%{version}.tar.gz
-BuildRequires:  python-Sphinx
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
+# Documentation requirements:
+BuildRequires:  python-Sphinx
 BuildRequires:  python-sphinxcontrib-issuetracker
+# Test requirements:
+BuildRequires:  python-nose
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}  0%{?suse_version} = 1110
 %{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
@@ -52,6 +55,9 @@
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
+%check
+nosetests
+
 %files
 %defattr(-,root,root,-)
 %doc Changelog LICENSE README.rst demo build/sphinx/html

++ python3-amqp.spec ++
--- /var/tmp/diff_new_pack.SWxbEG/_old  2013-05-07 15:32:31.0 +0200
+++ /var/tmp/diff_new_pack.SWxbEG/_new  2013-05-07 15:32:31.0 +0200
@@ -24,10 +24,13 @@
 Group:  Development/Languages/Python
 Url:http://github.com/celery/py-amqp
 Source: 
http://pypi.python.org/packages/source/a/amqp/amqp-%{version}.tar.gz
-BuildRequires:  python3-Sphinx
 BuildRequires:  python3-devel
 BuildRequires:  python3-distribute
+# Documentation requirements:
+BuildRequires:  python3-Sphinx
 BuildRequires:  python3-sphinxcontrib-issuetracker
+# Test requirements:
+BuildRequires:  python3-nose
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -48,6 +51,9 @@
 %install
 python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
+%check
+nosetests-%{py3_ver}
+
 %files
 %defattr(-,root,root,-)
 %doc Changelog LICENSE README.rst demo build/sphinx/html

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-amqp for openSUSE:Factory

2013-02-11 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2013-02-11 15:08:09

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is python-amqp, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-amqp/python-amqp.changes  2012-12-07 
14:49:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2013-02-11 15:08:10.0 +0100
@@ -1,0 +2,7 @@
+Mon Feb 11 12:43:45 UTC 2013 - sasc...@suse.de
+
+- Add Python3 support
+- Build HTML documentation
+- Install LICENSE, README.rst
+
+---
New Changes file:

--- /dev/null   2013-02-09 11:18:20.872010756 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python3-amqp.changes
2013-02-11 15:08:10.0 +0100
@@ -0,0 +1,5 @@
+---
+Mon Feb 11 12:22:56 UTC 2013 - sasc...@suse.de
+
+- Initial version
+

New:

  python3-amqp.changes
  python3-amqp.spec



Other differences:
--
++ python-amqp.spec ++
--- /var/tmp/diff_new_pack.kbpY5m/_old  2013-02-11 15:08:11.0 +0100
+++ /var/tmp/diff_new_pack.kbpY5m/_new  2013-02-11 15:08:11.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-amqp
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -13,22 +13,24 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
 
 
 Name:   python-amqp
 Version:1.2.0
 Release:0
-License:LGPL-2.1
 Summary:Low-level AMQP client for Python (fork of amqplib)
-Url:http://github.com/celery/py-amqp
+License:LGPL-2.1
 Group:  Development/Languages/Python
+Url:http://github.com/celery/py-amqp
 Source: 
http://pypi.python.org/packages/source/a/amqp/amqp-%{version}.tar.gz
+BuildRequires:  python-Sphinx
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
+BuildRequires:  python-sphinxcontrib-issuetracker
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}  0%{?suse_version} = 1110
 %{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
-%{!?python_sitearch: %global python_sitearch %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib(1))}
 %else
 BuildArch:  noarch
 %endif
@@ -40,21 +42,19 @@
 
 This library should be API compatible with librabbitmq.
 
-- For more information about AMQP, visit
-
-http://www.amqp.org
-
 %prep
 %setup -q -n amqp-%{version}
 
 %build
 python setup.py build
+python setup.py build_sphinx  rm build/sphinx/html/.buildinfo
 
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
 %files
 %defattr(-,root,root,-)
+%doc Changelog LICENSE README.rst demo build/sphinx/html
 %{python_sitelib}/*
 
 %changelog

++ python3-amqp.spec ++
#
# spec file for package python3-amqp
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


Name:   python3-amqp
Version:1.2.0
Release:0
Summary:Low-level AMQP client for Python (fork of amqplib)
License:LGPL-2.1
Group:  Development/Languages/Python
Url:http://github.com/celery/py-amqp
Source: 
http://pypi.python.org/packages/source/a/amqp/amqp-%{version}.tar.gz
BuildRequires:  python3-Sphinx
BuildRequires:  python3-devel
BuildRequires:  python3-distribute
BuildRequires:  python3-sphinxcontrib-issuetracker
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch

%description
This is a fork of amqplib_ which was originally written by Barry Pederson.
It is maintained by the Celery_ project, and used by kombu 

commit python-amqp for openSUSE:Factory

2012-12-07 Thread h_root
Hello community,

here is the log from the commit of package python-amqp for openSUSE:Factory 
checked in at 2012-12-07 14:49:14

Comparing /work/SRC/openSUSE:Factory/python-amqp (Old)
 and  /work/SRC/openSUSE:Factory/.python-amqp.new (New)


Package is python-amqp, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2012-11-30 12:21:47.308011256 +0100
+++ /work/SRC/openSUSE:Factory/.python-amqp.new/python-amqp.changes 
2012-12-07 14:49:19.0 +0100
@@ -0,0 +1,72 @@
+---
+Mon Nov 12 17:55:30 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 1.2.0:
+  - New exception hierarchy:
+- amqp.AMQPError
+- amqp.ConnectionError
+- amqp.RecoverableConnectionError
+- amqp.ConsumerCancelled
+- amqp.ConnectionForced
+- amqp.ResourceError
+- IrrecoverableConnectionError
+- amqp.ChannelNotOpen
+- amqp.FrameError
+- amqp.FrameSyntaxError
+- amqp.InvalidCommand
+- amqp.InvalidPath
+- amqp.NotAllowed
+- amqp.UnexpectedFrame
+- amqp.AMQPNotImplementedError
+- amqp.InternalError
+- amqp.ChannelError
+- RecoverableChannelError
+- amqp.ContentTooLarge
+- amqp.NoConsumers
+- amqp.ResourceLocked
+- IrrecoverableChannelError
+- amqp.AccessRefused
+- amqp.NotFound
+- amqp.PreconditionFailed
+
+---
+Thu Nov  8 23:18:41 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 1.1.0:
+  - No longer supports Pyhton 2.5
+  - Fixed receiving of float table values.
+  - Now Supports Python 3 and Python 2.6+ in the same source code.
+  - Python 3 related fixes.
+
+---
+Tue Nov  6 18:00:08 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 1.0.2:
+  - Now supports float values in headers/tables.
+
+---
+Mon Nov  5 15:34:26 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 1.0.1:
+  - Connection errors does no longer include AttributeError.
+  - Fixed problem with using the SSL transport in a non-blocking
+context.
+Fix contributed by Mher Movsisyan.
+
+---
+Fri Sep 21 19:20:37 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 0.9.4:
+  - Adds support for exchange_bind and exchange_unbind.
+Contributed by Rumyana Neykova
+  - Fixed bugs in funtests and demo scripts.
+Contributed by Rumyana Neykova
+- Aditional changes from version 0.9.3:
+  - Fixed bug that could cause the consumer to crash when reading
+large message payloads asynchronously.
+  - Serialization error messages now include the invalid value.
+
+---
+Fri Aug 24 20:18:48 UTC 2012 - alexan...@exatati.com.br
+
+- Initial package (0.9.2) for openSUSE.

New:

  amqp-1.2.0.tar.gz
  python-amqp.changes
  python-amqp.spec



Other differences:
--
++ python-amqp.spec ++
#
# spec file for package python-amqp
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/


Name:   python-amqp
Version:1.2.0
Release:0
License:LGPL-2.1
Summary:Low-level AMQP client for Python (fork of amqplib)
Url:http://github.com/celery/py-amqp
Group:  Development/Languages/Python
Source: 
http://pypi.python.org/packages/source/a/amqp/amqp-%{version}.tar.gz
BuildRequires:  python-devel
BuildRequires:  python-distribute
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version}  0%{?suse_version} = 1110
%{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
%{!?python_sitearch: %global python_sitearch %(python -c from