D: [iurt_root_command] chroot Installing /home/iurt/rpmbuild/SRPMS/python-gevent-socketio-0.3.6-15.mga8.src.rpm Building target platforms: aarch64 Building for target aarch64 Executing(%prep): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.j9oKKw + umask 022 + cd /home/iurt/rpmbuild/BUILD + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + cd /home/iurt/rpmbuild/BUILD + rm -rf gevent-socketio-0.3.6 + /usr/bin/gzip -dc /home/iurt/rpmbuild/SOURCES/gevent-socketio-0.3.6.tar.gz + /usr/bin/tar -xof - + STATUS=0 + '[' 0 -ne 0 ']' + cd gevent-socketio-0.3.6 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + rm -rf gevent_socketio.egg-info/ + 2to3 -n -w . RefactoringTool: Skipping optional fixer: buffer RefactoringTool: Skipping optional fixer: idioms RefactoringTool: Skipping optional fixer: set_literal RefactoringTool: Skipping optional fixer: ws_comma RefactoringTool: No changes to ./setup.py RefactoringTool: Refactored ./docs/source/conf.py RefactoringTool: No changes to ./socketio/__init__.py RefactoringTool: No changes to ./socketio/defaultjson.py RefactoringTool: No changes to ./socketio/exceptions.py RefactoringTool: Refactored ./socketio/handler.py RefactoringTool: Refactored ./socketio/mixins.py RefactoringTool: Refactored ./socketio/namespace.py RefactoringTool: Refactored ./socketio/packet.py RefactoringTool: No changes to ./socketio/policyserver.py RefactoringTool: No changes to ./socketio/sdjango.py RefactoringTool: Refactored ./socketio/server.py RefactoringTool: No changes to ./socketio/sgunicorn.py RefactoringTool: Refactored ./socketio/storage.py RefactoringTool: Refactored ./socketio/transports.py --- ./docs/source/conf.py (original) +++ ./docs/source/conf.py (refactored) @@ -41,7 +41,7 @@ master_doc = 'index' # General information about the project. -project = u'gevent-socketio' +project = 'gevent-socketio' copyright = '2011-%s, Jeffrey Gelens, Alexandre Bourget, and John Anderson' % datetime.datetime.now().year @@ -185,8 +185,8 @@ # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ - ('index', 'gevent-socketio.tex', u'gevent-socketio Documentation', - u'Jeffrey Gelens,Alex Bourget,John Anderson', 'manual'), + ('index', 'gevent-socketio.tex', 'gevent-socketio Documentation', + 'Jeffrey Gelens,Alex Bourget,John Anderson', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of @@ -215,8 +215,8 @@ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - ('index', 'gevent-socketio', u'gevent-socketio Documentation', - [u'Jeffrey Gelens,Alex Bourget,John Anderson'], 1) + ('index', 'gevent-socketio', 'gevent-socketio Documentation', + ['Jeffrey Gelens,Alex Bourget,John Anderson'], 1) ] # If true, show URL addresses after external links. @@ -229,8 +229,8 @@ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - ('index', 'gevent-socketio', u'gevent-socketio Documentation', - u'Jeffrey Gelens,Alex Bourget,John Anderson', 'gevent-socketio', 'One line description of project.', + ('index', 'gevent-socketio', 'gevent-socketio Documentation', + 'Jeffrey Gelens,Alex Bourget,John Anderson', 'gevent-socketio', 'One line description of project.', 'Miscellaneous'), ] --- ./socketio/handler.py (original) +++ ./socketio/handler.py (refactored) @@ -1,7 +1,7 @@ import sys import re import gevent -import urlparse +import urllib.parse from gevent.pywsgi import WSGIHandler from socketio import transports @@ -45,12 +45,12 @@ super(SocketIOHandler, self).__init__(*args, **kwargs) - self.transports = self.handler_types.keys() + self.transports = list(self.handler_types.keys()) if self.server.transports: self.transports = self.server.transports if not set(self.transports).issubset(set(self.handler_types)): raise ValueError("transports should be elements of: %s" % - (self.handler_types.keys())) + (list(self.handler_types.keys()))) def _do_handshake(self, tokens): if tokens["resource"] != self.server.resource: @@ -80,7 +80,7 @@ self.result = [data] def write_smart(self, data): - args = urlparse.parse_qs(self.environ.get("QUERY_STRING")) + args = urllib.parse.parse_qs(self.environ.get("QUERY_STRING")) if "jsonp" in args: self.write_jsonp_result(data, args["jsonp"][0]) --- ./socketio/mixins.py (original) +++ ./socketio/mixins.py (refactored) @@ -30,7 +30,7 @@ args=args, endpoint=self.ns_name) room_name = self._get_room_name(room) - for sessid, socket in self.socket.server.sockets.iteritems(): + for sessid, socket in self.socket.server.sockets.items(): if 'rooms' not in socket.session: continue if room_name in socket.session['rooms'] and self.socket != socket: @@ -55,7 +55,7 @@ args=args, endpoint=self.ns_name) - for sessid, socket in self.socket.server.sockets.iteritems(): + for sessid, socket in self.socket.server.sockets.items(): socket.send_packet(pkt) def broadcast_event_not_me(self, event, *args): @@ -68,6 +68,6 @@ args=args, endpoint=self.ns_name) - for sessid, socket in self.socket.server.sockets.iteritems(): + for sessid, socket in self.socket.server.sockets.items(): if socket is not self.socket: socket.send_packet(pkt) --- ./socketio/namespace.py (original) +++ ./socketio/namespace.py (refactored) @@ -167,14 +167,14 @@ elif packet_type == 'ack': callback = self.socket._pop_ack_callback(packet['ackId']) if not callback: - print "ERROR: No such callback for ackId %s" % packet['ackId'] + print("ERROR: No such callback for ackId %s" % packet['ackId']) return return callback(*(packet['args'])) elif packet_type == 'disconnect': # Force a disconnect on the namespace. return self.call_method_with_acl('recv_disconnect', packet) else: - print "Unprocessed packet", packet + print("Unprocessed packet", packet) # TODO: manage the other packet types: disconnect def process_event(self, packet): --- ./socketio/packet.py (original) +++ ./socketio/packet.py (refactored) @@ -12,7 +12,7 @@ 'noop': 8, } -MSG_VALUES = dict((v, k) for k, v in MSG_TYPES.iteritems()) +MSG_VALUES = dict((v, k) for k, v in MSG_TYPES.items()) ERROR_REASONS = { 'transport not supported': 0, @@ -20,13 +20,13 @@ 'unauthorized': 2 } -REASONS_VALUES = dict((v, k) for k, v in ERROR_REASONS.iteritems()) +REASONS_VALUES = dict((v, k) for k, v in ERROR_REASONS.items()) ERROR_ADVICES = { 'reconnect': 0, } -ADVICES_VALUES = dict((v, k) for k, v in ERROR_ADVICES.iteritems()) +ADVICES_VALUES = dict((v, k) for k, v in ERROR_ADVICES.items()) socketio_packet_attributes = ['type', 'name', 'data', 'endpoint', 'args', 'ackId', 'reason', 'advice', 'qs', 'id'] @@ -153,8 +153,8 @@ elif msg_type == "5": # event try: data = json_loads(data) - except ValueError, e: - print("Invalid JSON event message", data) + except ValueError as e: + print(("Invalid JSON event message", data)) decoded_msg['args'] = [] else: decoded_msg['name'] = data.pop('name') --- ./socketio/server.py (original) +++ ./socketio/server.py (refactored) @@ -105,7 +105,7 @@ try: if not self.policy_server.started: self.policy_server.start() - except error, ex: + except error as ex: sys.stderr.write( 'FAILED to start flash policy server: %s\n' % (ex, )) except Exception: @@ -170,7 +170,7 @@ policy_server=policy_server, **kw) if not _quiet: - print('serving on http://%s:%s' % (host, port)) + print(('serving on http://%s:%s' % (host, port))) server.serve_forever() --- ./socketio/storage.py (original) +++ ./socketio/storage.py (refactored) @@ -19,7 +19,7 @@ def listener(self): for m in self.conn.listen(): - print("===============NEW MESSAGE!!!====== %s", m) + print(("===============NEW MESSAGE!!!====== %s", m)) def spawn(self, fn, *args, **kwargs): new = gevent.spawn(fn, *args, **kwargs) @@ -27,4 +27,4 @@ return new def new_request(self, environ): - print("===========NEW REQUEST %s===========" % environ) + print(("===========NEW REQUEST %s===========" % environ)) --- ./socketio/transports.py (original) +++ ./socketio/transports.py (refactored) @@ -1,6 +1,6 @@ import gevent -import urllib -import urlparse +import urllib.request, urllib.parse, urllib.error +import urllib.parse from geventwebsocket import WebSocketError from gevent.queue import Empty @@ -104,7 +104,7 @@ if len(messages) == 1: return messages[0].encode('utf-8') - payload = u''.join([(u'\ufffd%d\ufffd%s' % (len(p), p)) + payload = ''.join([('\ufffd%d\ufffd%s' % (len(p), p)) for p in messages if p is not None]) # FIXME: why is it so that we must filter None from here ? How # is it even possible that a None gets in there ?RefactoringTool: Refactored ./socketio/virtsocket.py RefactoringTool: Refactored ./tests/test_namespace.py RefactoringTool: Refactored ./tests/test_packet.py RefactoringTool: No changes to ./tests/test_socket.py RefactoringTool: Refactored ./tests/jstests/jstests.py RefactoringTool: Files that were modified: RefactoringTool: ./setup.py RefactoringTool: ./docs/source/conf.py RefactoringTool: ./socketio/__init__.py RefactoringTool: ./socketio/defaultjson.py RefactoringTool: ./socketio/exceptions.py RefactoringTool: ./socketio/handler.py RefactoringTool: ./socketio/mixins.py RefactoringTool: ./socketio/namespace.py RefactoringTool: ./socketio/packet.py RefactoringTool: ./socketio/policyserver.py RefactoringTool: ./socketio/sdjango.py RefactoringTool: ./socketio/server.py RefactoringTool: ./socketio/sgunicorn.py RefactoringTool: ./socketio/storage.py RefactoringTool: ./socketio/transports.py RefactoringTool: ./socketio/virtsocket.py RefactoringTool: ./tests/test_namespace.py RefactoringTool: ./tests/test_packet.py RefactoringTool: ./tests/test_socket.py RefactoringTool: ./tests/jstests/jstests.py @@ -119,7 +119,7 @@ The semantics are: - \ufffd + [length as a string] + \ufffd + [payload as a unicode string] + \\ufffd + [length as a string] + \\ufffd + [payload as a unicode string] This function returns a list of messages, even though there is only one. @@ -127,10 +127,10 @@ Inspired by socket.io/lib/transports/http.js """ payload = payload.decode('utf-8') - if payload[0] == u"\ufffd": + if payload[0] == "\ufffd": ret = [] while len(payload) != 0: - len_end = payload.find(u"\ufffd", 1) + len_end = payload.find("\ufffd", 1) length = int(payload[1:len_end]) msg_start = len_end + 1 msg_end = length + msg_start @@ -162,7 +162,7 @@ def _request_body(self): data = super(JSONPolling, self)._request_body() # resolve %20%3F's, take out wrapping d="...", etc.. - data = urllib.unquote_plus(data)[3:-1] \ + data = urllib.parse.unquote_plus(data)[3:-1] \ .replace(r'\"', '"') \ .replace(r"\\", "\\") @@ -175,7 +175,7 @@ def write(self, data): """Just quote out stuff before sending it out""" - args = urlparse.parse_qs(self.handler.environ.get("QUERY_STRING")) + args = urllib.parse.parse_qs(self.handler.environ.get("QUERY_STRING")) if "i" in args: i = args["i"] else: --- ./socketio/virtsocket.py (original) +++ ./socketio/virtsocket.py (refactored) @@ -47,7 +47,7 @@ socket.send_packet(pkt) # Log that error somewhere for debugging... - log.error(u"default_error_handler: {}, {} (endpoint={}, msg_id={})".format( + log.error("default_error_handler: {}, {} (endpoint={}, msg_id={})".format( error_name, error_message, endpoint, msg_id )) @@ -311,7 +311,7 @@ :meth:`~socketio.namespace.BaseNamespace.disconnect` calls. """ - for ns_name, ns in list(self.active_ns.iteritems()): + for ns_name, ns in list(self.active_ns.items()): ns.recv_disconnect() def remove_namespace(self, namespace): @@ -362,7 +362,7 @@ continue # or close the connection ? try: pkt = packet.decode(rawdata, self.json_loads) - except (ValueError, KeyError, Exception), e: + except (ValueError, KeyError, Exception) as e: self.error('invalid_packet', "There was a decoding error when dealing with packet " "with event: %s... (%s)" % (rawdata[:20], e)) @@ -436,7 +436,7 @@ while True: gevent.sleep(1.0) if not self.connected: - for ns_name, ns in list(self.active_ns.iteritems()): + for ns_name, ns in list(self.active_ns.items()): ns.recv_disconnect() # Killing Socket-level jobs gevent.killall(self.jobs) --- ./tests/test_namespace.py (original) +++ ./tests/test_namespace.py (refactored) @@ -122,7 +122,7 @@ 'id': 1, 'endpoint': '', 'ack': 'data', - 'data': {u'a': u'b'}} + 'data': {'a': 'b'}} data = self.ns.process_packet(pkt) self.assertEqual(data, pkt['data']) assert not self.environ['socketio'].error.called --- ./tests/test_packet.py (original) +++ ./tests/test_packet.py (refactored) @@ -248,7 +248,7 @@ 'id': 1, 'endpoint': '', 'ack': 'data', - 'data': {u'a': u'b'}}) + 'data': {'a': 'b'}}) def test_decode_event(self): """decoding an event packet """ decoded_message = decode('5:::{"name":"woot", "args": ["foo"]}') @@ -300,7 +300,7 @@ self.assertEqual(decoded_message, {'type': 'ack', 'ackId': 140, 'endpoint': '/chat', - 'args': [u"bob", u"bob2"]}) + 'args': ["bob", "bob2"]}) def test_decode_error(self): """decoding error packet """ --- ./tests/jstests/jstests.py (original) +++ ./tests/jstests/jstests.py (refactored) @@ -71,5 +71,5 @@ if __name__ == '__main__': - print 'Listening on port 8080 and on port 10843 (flash policy server)' + print('Listening on port 8080 and on port 10843 (flash policy server)') SocketIOServer(('0.0.0.0', 8080), Application(), resource="socket.io", policy_server=True).serve_forever() + RPM_EC=0 ++ jobs -p + exit 0 Executing(%build): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.50Nqhu + umask 022 + cd /home/iurt/rpmbuild/BUILD + cd gevent-socketio-0.3.6 + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables' + LDFLAGS=' -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags' + /usr/bin/python3 setup.py build '--executable=/usr/bin/python3 -s' running build running build_py creating build creating build/lib creating build/lib/socketio copying socketio/transports.py -> build/lib/socketio copying socketio/virtsocket.py -> build/lib/socketio copying socketio/mixins.py -> build/lib/socketio copying socketio/__init__.py -> build/lib/socketio copying socketio/server.py -> build/lib/socketio copying socketio/policyserver.py -> build/lib/socketio copying socketio/sdjango.py -> build/lib/socketio copying socketio/packet.py -> build/lib/socketio copying socketio/sgunicorn.py -> build/lib/socketio copying socketio/handler.py -> build/lib/socketio copying socketio/namespace.py -> build/lib/socketio copying socketio/defaultjson.py -> build/lib/socketio copying socketio/storage.py -> build/lib/socketio copying socketio/exceptions.py -> build/lib/socketio + sphinx-build docs/source html Running Sphinx v3.4.1 making output directory... done WARNING: html_static_path entry '_static' does not exist loading intersphinx inventory from http://docs.python.org/objects.inv... WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'http://docs.python.org/objects.inv' not fetchable due to : HTTPConnectionPool(host='docs.python.org', port=80): Max retries exceeded with url: /objects.inv (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known')) building [mo]: targets for 0 po files that are out of date building [html]: targets for 11 source files that are out of date updating environment: [new config] 11 added, 0 changed, 0 removed reading sources... [ 9%] handler reading sources... [ 18%] index reading sources... [ 27%] main reading sources... [ 36%] mixins reading sources... [ 45%] namespace reading sources... [ 54%] packet reading sources... [ 63%] server reading sources... [ 72%] server_integration reading sources... [ 81%] sgunicorn reading sources... [ 90%] transports reading sources... [100%] virtsocket :219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject :219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject :219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject :219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject :219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject :219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject :219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject :219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject :219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject /home/iurt/rpmbuild/BUILD/gevent-socketio-0.3.6/socketio/namespace.py:docstring of socketio.namespace.BaseNamespace.disconnect:5: WARNING: Inline literal start-string without end-string. WARNING: don't know which module to import for autodocumenting 'is_method_allowed' (try placing a "module" or "currentmodule" directive in the document, or giving an explicit module name) /home/iurt/rpmbuild/BUILD/gevent-socketio-0.3.6/docs/source/server_integration.rst:141: WARNING: Unknown target name: "green". looking for now-outdated files... none found pickling environment... done checking consistency... /home/iurt/rpmbuild/BUILD/gevent-socketio-0.3.6/docs/source/handler.rst: WARNING: document isn't included in any toctree /home/iurt/rpmbuild/BUILD/gevent-socketio-0.3.6/docs/source/main.rst: WARNING: document isn't included in any toctree /home/iurt/rpmbuild/BUILD/gevent-socketio-0.3.6/docs/source/mixins.rst: WARNING: document isn't included in any toctree /home/iurt/rpmbuild/BUILD/gevent-socketio-0.3.6/docs/source/namespace.rst: WARNING: document isn't included in any toctree /home/iurt/rpmbuild/BUILD/gevent-socketio-0.3.6/docs/source/packet.rst: WARNING: document isn't included in any toctree /home/iurt/rpmbuild/BUILD/gevent-socketio-0.3.6/docs/source/server.rst: WARNING: document isn't included in any toctree /home/iurt/rpmbuild/BUILD/gevent-socketio-0.3.6/docs/source/server_integration.rst: WARNING: document isn't included in any toctree /home/iurt/rpmbuild/BUILD/gevent-socketio-0.3.6/docs/source/sgunicorn.rst: WARNING: document isn't included in any toctree /home/iurt/rpmbuild/BUILD/gevent-socketio-0.3.6/docs/source/transports.rst: WARNING: document isn't included in any toctree /home/iurt/rpmbuild/BUILD/gevent-socketio-0.3.6/docs/source/virtsocket.rst: WARNING: document isn't included in any toctree done preparing documents... done writing output... [ 9%] handler writing output... [ 18%] index writing output... [ 27%] main writing output... [ 36%] mixins writing output... [ 45%] namespace writing output... [ 54%] packet writing output... [ 63%] server writing output... [ 72%] server_integration writing output... [ 81%] sgunicorn writing output... [ 90%] transports writing output... [100%] virtsocket /home/iurt/rpmbuild/BUILD/gevent-socketio-0.3.6/docs/source/namespace.rst:64: WARNING: term not in glossary: session generating indices... genindex py-modindex done highlighting module code... [ 11%] socketio highlighting module code... [ 22%] socketio.defaultjson highlighting module code... [ 33%] socketio.handler highlighting module code... [ 44%] socketio.namespace highlighting module code... [ 55%] socketio.packet highlighting module code... [ 66%] socketio.server highlighting module code... [ 77%] socketio.sgunicorn highlighting module code... [ 88%] socketio.transports highlighting module code... [100%] socketio.virtsocket writing additional pages... search done copying static files... done copying extra files... done dumping search index in English (code: en)... done dumping object inventory... done build succeeded, 16 warnings. The HTML pages are in html. + rm -rf html/.doctrees html/.buildinfo + RPM_EC=0 ++ jobs -p + exit 0 Executing(%install): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.6fwhwx + umask 022 + cd /home/iurt/rpmbuild/BUILD + '[' 1 -eq 1 ']' + '[' /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64 '!=' / ']' + rm -rf /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64 ++ dirname /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64 + mkdir -p /home/iurt/rpmbuild/BUILDROOT + mkdir /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64 + cd gevent-socketio-0.3.6 + '[' 1 -eq 1 ']' + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables' + LDFLAGS=' -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags' + /usr/bin/python3 setup.py install -O1 --skip-build --root /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64 running install running install_lib creating /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr creating /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib creating /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8 creating /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages creating /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio copying build/lib/socketio/transports.py -> /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio copying build/lib/socketio/virtsocket.py -> /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio copying build/lib/socketio/mixins.py -> /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio copying build/lib/socketio/__init__.py -> /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio copying build/lib/socketio/server.py -> /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio copying build/lib/socketio/policyserver.py -> /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio copying build/lib/socketio/sdjango.py -> /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio copying build/lib/socketio/packet.py -> /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio copying build/lib/socketio/sgunicorn.py -> /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio copying build/lib/socketio/handler.py -> /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio copying build/lib/socketio/namespace.py -> /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio copying build/lib/socketio/defaultjson.py -> /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio copying build/lib/socketio/storage.py -> /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio copying build/lib/socketio/exceptions.py -> /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio byte-compiling /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio/transports.py to transports.cpython-38.pyc byte-compiling /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio/virtsocket.py to virtsocket.cpython-38.pyc byte-compiling /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio/mixins.py to mixins.cpython-38.pyc byte-compiling /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio/__init__.py to __init__.cpython-38.pyc byte-compiling /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio/server.py to server.cpython-38.pyc byte-compiling /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio/policyserver.py to policyserver.cpython-38.pyc byte-compiling /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio/sdjango.py to sdjango.cpython-38.pyc byte-compiling /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio/packet.py to packet.cpython-38.pyc byte-compiling /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio/sgunicorn.py to sgunicorn.cpython-38.pyc byte-compiling /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio/handler.py to handler.cpython-38.pyc byte-compiling /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio/namespace.py to namespace.cpython-38.pyc byte-compiling /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio/defaultjson.py to defaultjson.cpython-38.pyc byte-compiling /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio/storage.py to storage.cpython-38.pyc byte-compiling /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/socketio/exceptions.py to exceptions.cpython-38.pyc writing byte-compilation script '/tmp/tmpgelxb9x1.py' /usr/bin/python3 /tmp/tmpgelxb9x1.py removing /tmp/tmpgelxb9x1.py running install_egg_info running egg_info creating gevent_socketio.egg-info writing gevent_socketio.egg-info/PKG-INFO writing dependency_links to gevent_socketio.egg-info/dependency_links.txt writing entry points to gevent_socketio.egg-info/entry_points.txt writing requirements to gevent_socketio.egg-info/requires.txt writing top-level names to gevent_socketio.egg-info/top_level.txt writing manifest file 'gevent_socketio.egg-info/SOURCES.txt' reading manifest file 'gevent_socketio.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no previously-included files found matching 'socketio/.ropeproject/*' warning: no previously-included files found matching 'socketio/sample_protocol_for_doc.py' writing manifest file 'gevent_socketio.egg-info/SOURCES.txt' Copying gevent_socketio.egg-info to /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8/site-packages/gevent_socketio-0.3.6-py3.8.egg-info running install_scripts + rm -rfv /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/bin/__pycache__ + /usr/lib/rpm/find-debuginfo.sh -j8 --strict-build-id -m -i --build-id-seed 0.3.6-15.mga8 --unique-debug-suffix -0.3.6-15.mga8.aarch64 --unique-debug-src-base python-gevent-socketio-0.3.6-15.mga8.aarch64 --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 50000000 -S debugsourcefiles.list /home/iurt/rpmbuild/BUILD/gevent-socketio-0.3.6 + /usr/lib/rpm/check-buildroot + '[' -n '' ']' + /usr/share/spec-helper/clean_files + '[' -n '' ']' + /usr/share/spec-helper/compress_files .xz + '[' -n '' ']' + /usr/share/spec-helper/relink_symlinks + '[' -n '' ']' + /usr/share/spec-helper/clean_perl + '[' -n '' ']' + /usr/share/spec-helper/lib_symlinks + '[' -n '' ']' + /usr/share/spec-helper/gprintify + '[' -n '' ']' + /usr/share/spec-helper/fix_mo + '[' -n '' ']' + /usr/share/spec-helper/fix_pamd + '[' -n '' ']' + /usr/share/spec-helper/remove_info_dir + '[' -n '' ']' + /usr/share/spec-helper/fix_eol + '[' -n '' ']' + /usr/share/spec-helper/check_desktop_files + '[' -n '' ']' + /usr/share/spec-helper/check_elf_files + /usr/lib/rpm/brp-python-bytecompile /usr/bin/python3 1 1 Bytecompiling .py files below /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/lib/python3.8 using /usr/bin/python3.8 + /usr/lib/rpm/brp-python-hardlink + /usr/lib/rpm/redhat/brp-mangle-shebangs Processing files: python3-gevent-socketio-0.3.6-15.mga8.noarch Executing(%doc): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.wzINHv + umask 022 + cd /home/iurt/rpmbuild/BUILD + cd gevent-socketio-0.3.6 + DOCDIR=/home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/share/doc/python3-gevent-socketio + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/share/doc/python3-gevent-socketio + cp -pr html /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/share/doc/python3-gevent-socketio + cp -pr README.rst /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/share/doc/python3-gevent-socketio + cp -pr LICENSE /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64/usr/share/doc/python3-gevent-socketio + RPM_EC=0 ++ jobs -p + exit 0 Provides: python-gevent-socketio = 0.3.6-15.mga8 python3-gevent-socketio = 0.3.6-15.mga8 python3.8-gevent-socketio = 0.3.6-15.mga8 python3.8dist(gevent-socketio) = 0.3.6 python3dist(gevent-socketio) = 0.3.6 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PartialHardlinkSets) <= 4.0.4-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: python(abi) = 3.8 python3.8dist(gevent) python3.8dist(gevent-websocket) Obsoletes: python-gevent-socketio < 0.3.6-15.mga8 Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64 Wrote: /home/iurt/rpmbuild/RPMS/noarch/python3-gevent-socketio-0.3.6-15.mga8.noarch.rpm Executing(%clean): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.ajn7qx + umask 022 + cd /home/iurt/rpmbuild/BUILD + cd gevent-socketio-0.3.6 + /usr/bin/rm -rf /home/iurt/rpmbuild/BUILDROOT/python-gevent-socketio-0.3.6-15.mga8.aarch64 + RPM_EC=0 ++ jobs -p + exit 0 Executing(--clean): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.HHFH7t + umask 022 + cd /home/iurt/rpmbuild/BUILD + rm -rf gevent-socketio-0.3.6 + RPM_EC=0 ++ jobs -p + exit 0 D: [iurt_root_command] Success!