Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-eventlet for openSUSE:Factory
checked in at 2023-01-29 14:10:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-eventlet (Old)
and /work/SRC/openSUSE:Factory/.python-eventlet.new.32243 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-eventlet"
Sun Jan 29 14:10:31 2023 rev:47 rq:1061734 version:0.33.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-eventlet/python-eventlet.changes
2023-01-18 13:08:40.580076375 +0100
+++
/work/SRC/openSUSE:Factory/.python-eventlet.new.32243/python-eventlet.changes
2023-01-29 14:14:48.972401319 +0100
@@ -1,0 +2,7 @@
+Sat Jan 28 12:30:48 UTC 2023 - Dirk Müller <[email protected]>
+
+- update to 0.33.3:
+ * dnspython 2.3.0 raised AttributeError: module 'dns.rdtypes' has no
+ attribute 'ANY' https://github.com/eventlet/eventlet/issues/781
+
+-------------------------------------------------------------------
Old:
----
eventlet-0.33.2.tar.gz
New:
----
eventlet-0.33.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-eventlet.spec ++++++
--- /var/tmp/diff_new_pack.D2FN9w/_old 2023-01-29 14:14:49.392403603 +0100
+++ /var/tmp/diff_new_pack.D2FN9w/_new 2023-01-29 14:14:49.396403625 +0100
@@ -18,7 +18,7 @@
%bcond_without python2
Name: python-eventlet
-Version: 0.33.2
+Version: 0.33.3
Release: 0
Summary: Concurrent networking library for Python
License: MIT
++++++ eventlet-0.33.2.tar.gz -> eventlet-0.33.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/eventlet-0.33.2/NEWS new/eventlet-0.33.3/NEWS
--- old/eventlet-0.33.2/NEWS 2022-11-17 18:18:48.000000000 +0100
+++ new/eventlet-0.33.3/NEWS 2023-01-17 23:28:03.000000000 +0100
@@ -1,3 +1,7 @@
+0.33.3
+======
+* dnspython 2.3.0 raised AttributeError: module 'dns.rdtypes' has no attribute
'ANY' https://github.com/eventlet/eventlet/issues/781
+
0.33.2
======
* greenio: GreenPipe/fdopen() with 'a' in mode raised io.UnsupportedOperation:
File or stream is not writable https://github.com/eventlet/eventlet/pull/758
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/eventlet-0.33.2/PKG-INFO new/eventlet-0.33.3/PKG-INFO
--- old/eventlet-0.33.2/PKG-INFO 2022-11-17 18:20:10.332933700 +0100
+++ new/eventlet-0.33.3/PKG-INFO 2023-01-17 23:28:41.931769800 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: eventlet
-Version: 0.33.2
+Version: 0.33.3
Summary: Highly concurrent networking library
Home-page: http://eventlet.net
Author: Linden Lab
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/eventlet-0.33.2/eventlet/__init__.py
new/eventlet-0.33.3/eventlet/__init__.py
--- old/eventlet-0.33.2/eventlet/__init__.py 2022-11-17 18:16:57.000000000
+0100
+++ new/eventlet-0.33.3/eventlet/__init__.py 2023-01-17 23:25:20.000000000
+0100
@@ -8,7 +8,7 @@
DeprecationWarning,
)
-version_info = (0, 33, 2)
+version_info = (0, 33, 3)
__version__ = '.'.join(map(str, version_info))
# This is to make Debian packaging easier, it ignores import
# errors of greenlet so that the packager can still at least
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/eventlet-0.33.2/eventlet/support/greendns.py
new/eventlet-0.33.3/eventlet/support/greendns.py
--- old/eventlet-0.33.2/eventlet/support/greendns.py 2022-07-08
01:34:29.000000000 +0200
+++ new/eventlet-0.33.3/eventlet/support/greendns.py 2023-01-17
23:23:35.000000000 +0100
@@ -62,8 +62,9 @@
dns = import_patched('dns')
-for pkg in dns.__all__:
- setattr(dns, pkg, import_patched('dns.' + pkg))
+
+# Handle rdtypes separately; we need fully it available as we patch the rest
+dns.rdtypes = import_patched('dns.rdtypes')
dns.rdtypes.__all__.extend(['dnskeybase', 'dsbase', 'txtbase'])
for pkg in dns.rdtypes.__all__:
setattr(dns.rdtypes, pkg, import_patched('dns.rdtypes.' + pkg))
@@ -71,6 +72,11 @@
setattr(dns.rdtypes.IN, pkg, import_patched('dns.rdtypes.IN.' + pkg))
for pkg in dns.rdtypes.ANY.__all__:
setattr(dns.rdtypes.ANY, pkg, import_patched('dns.rdtypes.ANY.' + pkg))
+
+for pkg in dns.__all__:
+ if pkg == 'rdtypes':
+ continue
+ setattr(dns, pkg, import_patched('dns.' + pkg))
del import_patched
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/eventlet-0.33.2/eventlet.egg-info/PKG-INFO
new/eventlet-0.33.3/eventlet.egg-info/PKG-INFO
--- old/eventlet-0.33.2/eventlet.egg-info/PKG-INFO 2022-11-17
18:20:09.000000000 +0100
+++ new/eventlet-0.33.3/eventlet.egg-info/PKG-INFO 2023-01-17
23:28:40.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: eventlet
-Version: 0.33.2
+Version: 0.33.3
Summary: Highly concurrent networking library
Home-page: http://eventlet.net
Author: Linden Lab