D: [iurt_root_command] chroot Building target platforms: noarch Building for target noarch Installing /home/pterjan/rpmbuild/SRPMS/python-gevent-socketio-0.3.6-19.mga10.src.rpm Executing(%mkbuilddir): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.EuMhfF + umask 022 + cd /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + test -d /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + /usr/bin/rm -rf /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + /usr/bin/mkdir -p /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + /usr/bin/mkdir -p /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/SPECPARTS + RPM_EC=0 ++ jobs -p + exit 0 Executing(%prep): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.yY4Mby + umask 022 + cd /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + cd /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + rm -rf gevent-socketio-0.3.6 + /usr/lib/rpm/rpmuncompress -x /home/pterjan/rpmbuild/SOURCES/gevent-socketio-0.3.6.tar.gz + STATUS=0 + '[' 0 -ne 0 ']' + cd gevent-socketio-0.3.6 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + 2to3 -n -w . /usr/bin/2to3:3: DeprecationWarning: lib2to3 package is deprecated and may not be able to parse Python 3.10+ from lib2to3.main import main 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(%generate_buildrequires): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.SUJpWo + umask 022 + cd /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + cd gevent-socketio-0.3.6 + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + : + echo pyproject-rpm-macros + echo python3-devel + echo 'python3dist(pip) >= 19' + echo 'python3dist(packaging)' + '[' -f pyproject.toml ']' + '[' -f setup.py ']' + echo 'python3dist(setuptools) >= 40.8' + echo 'python3dist(wheel)' + for f in pyproject.toml setup.py setup.cfg + '[' -f pyproject.toml ']' + for f in pyproject.toml setup.py setup.cfg + '[' -f setup.py ']' + sed -i -E -e '/^requires/s/(['\''"]\s*flit_core\s*>=\s*[0-9]+(\.[0-9]+)+)\s*,\s*<\s*[0-9]+(\.[0-9]+)*(\s*['\''"])/\1\4/' setup.py + sed -i -E -e '/python_requires/s/(['\''"]?\s*\S*\s*>=\s*[0-9]+(\.[0-9]+)*)\s*(,\s*(<|!=)\s*[0-9]+(\.[0-9]+)*(\.\*)*)+(\s*['\''"]?)/\1\7/' setup.py + sed -i -E -e 's/(['\''"]?\s*\S*\s*>=\s*[0-9]+(\.[0-9a-z]+)*)\s*,\s*(<|!=|<=)\s*[0-9]+(\.[0-9a-z]+)*(-?dev[0-9]*)?(\.\*)*(\s*['\''"]?)/\1\7/g' setup.py + sed -i -E -e 's/(['\''"]\w+\s*)!=(\s*([0-9])+(\.[0-9]+)*\s*['\''"])/\1>\2/g' setup.py + sed -i -E -e 's/(['\''"]\s*>=\s*[0-9]+(\.[0-9]+)*)\s*,\s*(<|!=)\s*[0-9]+(\.[0-9]+)*(\s*['\''"])/\1\5/g' setup.py + sed -i -E -e 's/(['\''"]?\s*\S*\s*>=\s*[0-9]+(\.[0-9]+)*)\s*(,\s*(<|!=)\s*[0-9]+(\.[0-9]+)*(\.\*)*)+(\s*['\''"]?)/\1\7/g' setup.py + sed -i -E -e 's/(['\''"]\s*)\^(\s*[0-9]+(\.[0-9]+)*\s*['\''"])/\1>=\2/g' setup.py + sed -i -e 's/~=/>=/g' setup.py + sed -i -E -e 's/(['\''"]\s*\S*\s*)==(\s*[0-9]+(\.[0-9]+)*)\.\*(\s*['\''"])/\1>=\2\4/g' setup.py + sed -i -E -e 's/(['\''"]?\w*\s*>=\s*[0-9]+(\.[0-9]+)*)\s*,\s*(<|!=)[0-9]+(\.[0-9]+)*\s*(['\''"]?)/\1\5/g' setup.py + for f in pyproject.toml setup.py setup.cfg + '[' -f setup.cfg ']' + sed -i -E -e '/^requires/s/(['\''"]\s*flit_core\s*>=\s*[0-9]+(\.[0-9]+)+)\s*,\s*<\s*[0-9]+(\.[0-9]+)*(\s*['\''"])/\1\4/' setup.cfg + sed -i -E -e '/python_requires/s/(['\''"]?\s*\S*\s*>=\s*[0-9]+(\.[0-9]+)*)\s*(,\s*(<|!=)\s*[0-9]+(\.[0-9]+)*(\.\*)*)+(\s*['\''"]?)/\1\7/' setup.cfg + sed -i -E -e 's/(['\''"]?\s*\S*\s*>=\s*[0-9]+(\.[0-9a-z]+)*)\s*,\s*(<|!=|<=)\s*[0-9]+(\.[0-9a-z]+)*(-?dev[0-9]*)?(\.\*)*(\s*['\''"]?)/\1\7/g' setup.cfg + sed -i -E -e 's/(['\''"]\w+\s*)!=(\s*([0-9])+(\.[0-9]+)*\s*['\''"])/\1>\2/g' setup.cfg + sed -i -E -e 's/(['\''"]\s*>=\s*[0-9]+(\.[0-9]+)*)\s*,\s*(<|!=)\s*[0-9]+(\.[0-9]+)*(\s*['\''"])/\1\5/g' setup.cfg + sed -i -E -e 's/(['\''"]?\s*\S*\s*>=\s*[0-9]+(\.[0-9]+)*)\s*(,\s*(<|!=)\s*[0-9]+(\.[0-9]+)*(\.\*)*)+(\s*['\''"]?)/\1\7/g' setup.cfg + sed -i -E -e 's/(['\''"]\s*)\^(\s*[0-9]+(\.[0-9]+)*\s*['\''"])/\1>=\2/g' setup.cfg + sed -i -e 's/~=/>=/g' setup.cfg + sed -i -E -e 's/(['\''"]\s*\S*\s*)==(\s*[0-9]+(\.[0-9]+)*)\.\*(\s*['\''"])/\1>=\2\4/g' setup.cfg + sed -i -E -e 's/(['\''"]?\w*\s*>=\s*[0-9]+(\.[0-9]+)*)\s*,\s*(<|!=)[0-9]+(\.[0-9]+)*\s*(['\''"]?)/\1\5/g' setup.cfg + rm -rfv '*.dist-info/' + '[' -f /usr/bin/python3 ']' + mkdir -p /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir + echo -n + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + LDFLAGS='-Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-z,now -Wl,-O1 -Wl,--build-id=sha1 -Wl,--enable-new-dtags -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' + TMPDIR=/home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir + RPM_TOXENV=py312 + HOSTNAME=rpmbuild + /usr/bin/python3 -Bs /usr/lib/rpm/redhat/pyproject_buildrequires.py --generate-extras --python3_pkgversion 3 --wheeldir /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/pyproject-wheeldir --output /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/python-gevent-socketio-0.3.6-19.mga10.noarch-pyproject-buildrequires Handling setuptools >= 40.8 from default build backend Requirement satisfied: setuptools >= 40.8 (installed: setuptools 75.6.0) Handling wheel from default build backend Requirement satisfied: wheel (installed: wheel 0.43.0) :3: SetuptoolsDeprecationWarning: The test command is disabled and references to it are deprecated. !! ******************************************************************************** Please remove any references to `setuptools.command.test` in all supported versions of the affected package. This deprecation is overdue, please update your project and remove deprecated calls to avoid build errors in the future. ******************************************************************************** !! Handling versiontools >= 1.7 from get_requires_for_build_wheel Requirement satisfied: versiontools >= 1.7 (installed: versiontools 1.9.1) :3: SetuptoolsDeprecationWarning: The test command is disabled and references to it are deprecated. !! ******************************************************************************** Please remove any references to `setuptools.command.test` in all supported versions of the affected package. This deprecation is overdue, please update your project and remove deprecated calls to avoid build errors in the future. ******************************************************************************** !! /usr/lib/python3.12/site-packages/setuptools/_distutils/dist.py:261: UserWarning: Unknown distribution option: 'tests_require' warnings.warn(msg) running dist_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 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' adding license file 'LICENSE' adding license file 'AUTHORS' writing manifest file 'gevent_socketio.egg-info/SOURCES.txt' creating '/home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/gevent_socketio-0.3.6.dist-info' Handling gevent from hook generated metadata: Requires-Dist (gevent-socketio) Requirement satisfied: gevent (installed: gevent 24.2.1) Handling gevent-websocket from hook generated metadata: Requires-Dist (gevent-socketio) Requirement satisfied: gevent-websocket (installed: gevent-websocket 0.10.1) + cat /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/python-gevent-socketio-0.3.6-19.mga10.noarch-pyproject-buildrequires + rm -rfv gevent_socketio-0.3.6.dist-info/ removed 'gevent_socketio-0.3.6.dist-info/AUTHORS' removed 'gevent_socketio-0.3.6.dist-info/entry_points.txt' removed 'gevent_socketio-0.3.6.dist-info/top_level.txt' removed 'gevent_socketio-0.3.6.dist-info/METADATA' removed 'gevent_socketio-0.3.6.dist-info/LICENSE' removed directory 'gevent_socketio-0.3.6.dist-info/' + RPM_EC=0 ++ jobs -p + exit 0 Executing(%build): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.lazO90 + umask 022 + cd /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + cd gevent-socketio-0.3.6 + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + mkdir -p /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + LDFLAGS='-Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-z,now -Wl,-O1 -Wl,--build-id=sha1 -Wl,--enable-new-dtags -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' + TMPDIR=/home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir + /usr/bin/python3 -Bs /usr/lib/rpm/redhat/pyproject_wheel.py /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/pyproject-wheeldir Processing /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6 Preparing metadata (pyproject.toml): started Running command Preparing metadata (pyproject.toml) :3: SetuptoolsDeprecationWarning: The test command is disabled and references to it are deprecated. !! ******************************************************************************** Please remove any references to `setuptools.command.test` in all supported versions of the affected package. This deprecation is overdue, please update your project and remove deprecated calls to avoid build errors in the future. ******************************************************************************** !! /usr/lib/python3.12/site-packages/setuptools/_distutils/dist.py:261: UserWarning: Unknown distribution option: 'tests_require' warnings.warn(msg) running dist_info creating /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir/pip-modern-metadata-i3heohmv/gevent_socketio.egg-info writing /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir/pip-modern-metadata-i3heohmv/gevent_socketio.egg-info/PKG-INFO writing dependency_links to /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir/pip-modern-metadata-i3heohmv/gevent_socketio.egg-info/dependency_links.txt writing entry points to /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir/pip-modern-metadata-i3heohmv/gevent_socketio.egg-info/entry_points.txt writing requirements to /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir/pip-modern-metadata-i3heohmv/gevent_socketio.egg-info/requires.txt writing top-level names to /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir/pip-modern-metadata-i3heohmv/gevent_socketio.egg-info/top_level.txt writing manifest file '/home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir/pip-modern-metadata-i3heohmv/gevent_socketio.egg-info/SOURCES.txt' reading manifest file '/home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir/pip-modern-metadata-i3heohmv/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' adding license file 'LICENSE' adding license file 'AUTHORS' writing manifest file '/home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir/pip-modern-metadata-i3heohmv/gevent_socketio.egg-info/SOURCES.txt' creating '/home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir/pip-modern-metadata-i3heohmv/gevent_socketio-0.3.6.dist-info' Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: gevent-socketio Building wheel for gevent-socketio (pyproject.toml): started Running command Building wheel for gevent-socketio (pyproject.toml) :3: SetuptoolsDeprecationWarning: The test command is disabled and references to it are deprecated. !! ******************************************************************************** Please remove any references to `setuptools.command.test` in all supported versions of the affected package. This deprecation is overdue, please update your project and remove deprecated calls to avoid build errors in the future. ******************************************************************************** !! /usr/lib/python3.12/site-packages/setuptools/_distutils/dist.py:261: UserWarning: Unknown distribution option: 'tests_require' warnings.warn(msg) running bdist_wheel running build running build_py creating build/lib/socketio copying socketio/storage.py -> build/lib/socketio copying socketio/exceptions.py -> build/lib/socketio copying socketio/namespace.py -> build/lib/socketio copying socketio/sgunicorn.py -> build/lib/socketio copying socketio/mixins.py -> build/lib/socketio copying socketio/handler.py -> build/lib/socketio copying socketio/server.py -> build/lib/socketio copying socketio/transports.py -> build/lib/socketio copying socketio/packet.py -> build/lib/socketio copying socketio/virtsocket.py -> build/lib/socketio copying socketio/defaultjson.py -> build/lib/socketio copying socketio/policyserver.py -> build/lib/socketio copying socketio/__init__.py -> build/lib/socketio copying socketio/sdjango.py -> build/lib/socketio installing to build/bdist.linux-x86_64/wheel running install running install_lib creating build/bdist.linux-x86_64/wheel creating build/bdist.linux-x86_64/wheel/socketio copying build/lib/socketio/storage.py -> build/bdist.linux-x86_64/wheel/./socketio copying build/lib/socketio/exceptions.py -> build/bdist.linux-x86_64/wheel/./socketio copying build/lib/socketio/namespace.py -> build/bdist.linux-x86_64/wheel/./socketio copying build/lib/socketio/sgunicorn.py -> build/bdist.linux-x86_64/wheel/./socketio copying build/lib/socketio/mixins.py -> build/bdist.linux-x86_64/wheel/./socketio copying build/lib/socketio/handler.py -> build/bdist.linux-x86_64/wheel/./socketio copying build/lib/socketio/server.py -> build/bdist.linux-x86_64/wheel/./socketio copying build/lib/socketio/transports.py -> build/bdist.linux-x86_64/wheel/./socketio copying build/lib/socketio/packet.py -> build/bdist.linux-x86_64/wheel/./socketio copying build/lib/socketio/virtsocket.py -> build/bdist.linux-x86_64/wheel/./socketio copying build/lib/socketio/defaultjson.py -> build/bdist.linux-x86_64/wheel/./socketio copying build/lib/socketio/policyserver.py -> build/bdist.linux-x86_64/wheel/./socketio copying build/lib/socketio/__init__.py -> build/bdist.linux-x86_64/wheel/./socketio copying build/lib/socketio/sdjango.py -> build/bdist.linux-x86_64/wheel/./socketio running install_egg_info running 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 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' adding license file 'LICENSE' adding license file 'AUTHORS' writing manifest file 'gevent_socketio.egg-info/SOURCES.txt' Copying gevent_socketio.egg-info to build/bdist.linux-x86_64/wheel/./gevent_socketio-0.3.6-py3.12.egg-info running install_scripts creating build/bdist.linux-x86_64/wheel/gevent_socketio-0.3.6.dist-info/WHEEL creating '/home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir/pip-wheel-6xde0g9n/.tmp-bmbydv83/gevent_socketio-0.3.6-py3-none-any.whl' and adding 'build/bdist.linux-x86_64/wheel' to it adding 'socketio/__init__.py' adding 'socketio/defaultjson.py' adding 'socketio/exceptions.py' adding 'socketio/handler.py' adding 'socketio/mixins.py' adding 'socketio/namespace.py' adding 'socketio/packet.py' adding 'socketio/policyserver.py' adding 'socketio/sdjango.py' adding 'socketio/server.py' adding 'socketio/sgunicorn.py' adding 'socketio/storage.py' adding 'socketio/transports.py' adding 'socketio/virtsocket.py' adding 'gevent_socketio-0.3.6.dist-info/AUTHORS' adding 'gevent_socketio-0.3.6.dist-info/LICENSE' adding 'gevent_socketio-0.3.6.dist-info/METADATA' adding 'gevent_socketio-0.3.6.dist-info/WHEEL' adding 'gevent_socketio-0.3.6.dist-info/entry_points.txt' adding 'gevent_socketio-0.3.6.dist-info/top_level.txt' adding 'gevent_socketio-0.3.6.dist-info/RECORD' removing build/bdist.linux-x86_64/wheel Building wheel for gevent-socketio (pyproject.toml): finished with status 'done' Created wheel for gevent-socketio: filename=gevent_socketio-0.3.6-py3-none-any.whl size=32500 sha256=55dc84b725c46f8536b9a848b40de9babfe9205d7acba8530104c60f2c70bc01 Stored in directory: /home/pterjan/.cache/pip/wheels/34/9c/a3/ff25a3732aad6f45194e5b8bdea1bcaa5edb13b403ac16491b Successfully built gevent-socketio + sphinx-build docs/source html Running Sphinx v7.3.7 making output directory... done WARNING: html_static_path entry '_static' does not exist WARNING: The pre-Sphinx 1.0 'intersphinx_mapping' format is deprecated and will be removed in Sphinx 8. Update to the current format as described in the documentation. Hint: "intersphinx_mapping = {'': ('http://docs.python.org/', None)}".https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html#confval-intersphinx_mapping 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 NameResolutionError(": Failed to resolve 'docs.python.org' ([Errno -2] Name or service not known)")) building [mo]: targets for 0 po files that are out of date writing output... 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... [ 55%] packet reading sources... [ 64%] server reading sources... [ 73%] server_integration reading sources... [ 82%] sgunicorn reading sources... [ 91%] transports reading sources... [100%] virtsocket /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-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/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/docs/source/server_integration.rst:141: ERROR: Unknown target name: "green". looking for now-outdated files... none found pickling environment... done checking consistency... /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/docs/source/handler.rst: WARNING: document isn't included in any toctree /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/docs/source/main.rst: WARNING: document isn't included in any toctree /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/docs/source/mixins.rst: WARNING: document isn't included in any toctree /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/docs/source/namespace.rst: WARNING: document isn't included in any toctree /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/docs/source/packet.rst: WARNING: document isn't included in any toctree /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/docs/source/server.rst: WARNING: document isn't included in any toctree /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/docs/source/server_integration.rst: WARNING: document isn't included in any toctree /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/docs/source/sgunicorn.rst: WARNING: document isn't included in any toctree /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/docs/source/transports.rst: WARNING: document isn't included in any toctree /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/docs/source/virtsocket.rst: WARNING: document isn't included in any toctree done preparing documents... done copying assets... copying static files... done copying extra files... done done writing output... [ 9%] handler writing output... [ 18%] index writing output... [ 27%] main writing output... [ 36%] mixins writing output... [ 45%] namespace writing output... [ 55%] packet writing output... [ 64%] server writing output... [ 73%] server_integration writing output... [ 82%] sgunicorn writing output... [ 91%] transports writing output... [100%] virtsocket /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-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... [ 56%] socketio.packet highlighting module code... [ 67%] socketio.server highlighting module code... [ 78%] socketio.sgunicorn highlighting module code... [ 89%] socketio.transports highlighting module code... [100%] socketio.virtsocket writing additional pages... search done dumping search index in English (code: en)... done dumping object inventory... done build succeeded, 17 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/pterjan/rpmbuild/tmp/rpm-tmp.YiYqos + umask 022 + cd /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + '[' 1 -eq 1 ']' + '[' /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT '!=' / ']' + rm -rf /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT ++ dirname /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT + mkdir -p /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + mkdir /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT + cd gevent-socketio-0.3.6 + '[' 1 -eq 1 ']' ++ ls /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/pyproject-wheeldir/gevent_socketio-0.3.6-py3-none-any.whl ++ xargs basename --multiple ++ sed -E 's/([^-]+)-([^-]+)-.+\.whl/\1==\2/' + specifier=gevent_socketio==0.3.6 + '[' -z gevent_socketio==0.3.6 ']' + TMPDIR=/home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/.pyproject-builddir + /usr/bin/python3 -m pip install --root /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT --prefix /usr --no-deps --disable-pip-version-check --progress-bar off --verbose --ignore-installed --no-warn-script-location --no-index --no-cache-dir --find-links /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/pyproject-wheeldir gevent_socketio==0.3.6 Using pip 24.3.1 from /usr/lib/python3.12/site-packages/pip (python 3.12) Looking in links: /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/pyproject-wheeldir Processing ./pyproject-wheeldir/gevent_socketio-0.3.6-py3-none-any.whl Installing collected packages: gevent_socketio Successfully installed gevent_socketio-0.3.6 + '[' -d /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/bin ']' + rm -f /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/python-gevent-socketio-0.3.6-19.mga10.noarch-pyproject-ghost-distinfo + site_dirs=() + '[' -d /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/lib/python3.12/site-packages ']' + site_dirs+=("/usr/lib/python3.12/site-packages") + '[' /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/lib64/python3.12/site-packages '!=' /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/lib/python3.12/site-packages ']' + '[' -d /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/lib64/python3.12/site-packages ']' + for site_dir in ${site_dirs[@]} + for distinfo in /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT$site_dir/*.dist-info + echo '%ghost /usr/lib/python3.12/site-packages/gevent_socketio-0.3.6.dist-info' + sed -i s/pip/rpm/ /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/lib/python3.12/site-packages/gevent_socketio-0.3.6.dist-info/INSTALLER + PYTHONPATH=/usr/lib/rpm/redhat + /usr/bin/python3 -B /usr/lib/rpm/redhat/pyproject_preprocess_record.py --buildroot /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT --record /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/lib/python3.12/site-packages/gevent_socketio-0.3.6.dist-info/RECORD --output /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/python-gevent-socketio-0.3.6-19.mga10.noarch-pyproject-record + rm -fv /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/lib/python3.12/site-packages/gevent_socketio-0.3.6.dist-info/RECORD removed '/home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/lib/python3.12/site-packages/gevent_socketio-0.3.6.dist-info/RECORD' + rm -fv /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/lib/python3.12/site-packages/gevent_socketio-0.3.6.dist-info/REQUESTED removed '/home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/lib/python3.12/site-packages/gevent_socketio-0.3.6.dist-info/REQUESTED' ++ wc -l /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/python-gevent-socketio-0.3.6-19.mga10.noarch-pyproject-ghost-distinfo ++ cut -f1 '-d ' + lines=1 + '[' 1 -ne 1 ']' + RPM_FILES_ESCAPE=4.19 + /usr/bin/python3 /usr/lib/rpm/redhat/pyproject_save_files.py --output-files /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/python-gevent-socketio-0.3.6-19.mga10.noarch-pyproject-files --output-modules /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/python-gevent-socketio-0.3.6-19.mga10.noarch-pyproject-modules --buildroot /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT --sitelib /usr/lib/python3.12/site-packages --sitearch /usr/lib64/python3.12/site-packages --python-version 3.12 --pyproject-record /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/python-gevent-socketio-0.3.6-19.mga10.noarch-pyproject-record --prefix /usr socketio + /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-strip /usr/bin/strip + /usr/lib/rpm/brp-strip-comment-note /usr/bin/strip /usr/bin/objdump + /usr/lib/rpm/brp-strip-static-archive /usr/bin/strip + /usr/lib/rpm/check-rpaths + /usr/lib/rpm/brp-remove-la-files + /usr/lib/rpm/redhat/brp-mangle-shebangs + env -u SOURCE_DATE_EPOCH /usr/lib/rpm/redhat/brp-python-bytecompile '' 1 0 -j16 Bytecompiling .py files below /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/lib/python3.12 using python3.12 Not clamping source mtimes, $SOURCE_DATE_EPOCH not set + /usr/lib/rpm/redhat/brp-python-hardlink Processing files: python3-gevent-socketio-0.3.6-19.mga10.noarch Executing(%doc): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.2KliTW + umask 022 + cd /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + cd gevent-socketio-0.3.6 + DOCDIR=/home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/share/doc/python3-gevent-socketio + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/share/doc/python3-gevent-socketio + cp -pr /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/html /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/share/doc/python3-gevent-socketio + cp -pr /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/README.rst /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/share/doc/python3-gevent-socketio + cp -pr /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/gevent-socketio-0.3.6/LICENSE /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT/usr/share/doc/python3-gevent-socketio + RPM_EC=0 ++ jobs -p + exit 0 Provides: python-gevent-socketio = 0.3.6-19.mga10 python3-gevent-socketio = 0.3.6-19.mga10 python3.12-gevent-socketio = 0.3.6-19.mga10 python3.12dist(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.12 python3.12dist(gevent) python3.12dist(gevent-websocket) Obsoletes: python-gevent-socketio < 0.3.6-19.mga10 Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build/BUILDROOT Wrote: /home/pterjan/rpmbuild/RPMS/noarch/python3-gevent-socketio-0.3.6-19.mga10.noarch.rpm Executing(rmbuild): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.mONDOv + umask 022 + cd /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + test -d /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + rm -rf /home/pterjan/rpmbuild/BUILD/python-gevent-socketio-0.3.6-build + RPM_EC=0 ++ jobs -p + exit 0 D: [iurt_root_command] Success!