Mock Version: 1.2.18 ENTER ['do'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target x86_64 --nodeps /builddir/build/SPECS/python-markupsafe.spec'], env={'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOME': '/builddir', 'SHELL': '/bin/bash', 'TERM': 'vt100', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'HOSTNAME': 'mock', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'en_US.UTF-8'}logger=shell=Falsetimeout=0printOutput=Falsegid=135user='mockbuild'uid=1001chrootPath='/var/lib/mock/epel-7-x86_64-mockbuilder-5036/root') Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target x86_64 --nodeps /builddir/build/SPECS/python-markupsafe.spec'] with env {'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOME': '/builddir', 'SHELL': '/bin/bash', 'TERM': 'vt100', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'HOSTNAME': 'mock', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'en_US.UTF-8'} and shell False sh: /usr/bin/python: No such file or directory sh: /usr/bin/python: No such file or directory warning: Could not canonicalize hostname: copr-builder-322318307.novalocal Building target platforms: x86_64 Building for target x86_64 Wrote: /builddir/build/SRPMS/python-markupsafe-0.11-10.el7.centos.src.rpm Child return code was: 0 ENTER ['do'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target x86_64 --nodeps /builddir/build/SPECS/python-markupsafe.spec'], env={'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOME': '/builddir', 'SHELL': '/bin/bash', 'TERM': 'vt100', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'HOSTNAME': 'mock', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'en_US.UTF-8'}logger=shell=Falsetimeout=0printOutput=Falsegid=135private_network=Trueuser='mockbuild'uid=1001chrootPath='/var/lib/mock/epel-7-x86_64-mockbuilder-5036/root') Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target x86_64 --nodeps /builddir/build/SPECS/python-markupsafe.spec'] with env {'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOME': '/builddir', 'SHELL': '/bin/bash', 'TERM': 'vt100', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'HOSTNAME': 'mock', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'en_US.UTF-8'} and shell False Building target platforms: x86_64 Building for target x86_64 Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.yj7XIG + umask 022 + cd /builddir/build/BUILD + cd /builddir/build/BUILD + rm -rf MarkupSafe-0.11 + /usr/bin/gzip -dc /builddir/build/SOURCES/MarkupSafe-0.11.tar.gz + /usr/bin/tar -xf - + STATUS=0 + '[' 0 -ne 0 ']' + cd MarkupSafe-0.11 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + rm -rf /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos + cp -a . /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos + 2to3 --write --nobackups /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos RefactoringTool: Skipping implicit fixer: buffer RefactoringTool: Skipping implicit fixer: idioms RefactoringTool: Skipping implicit fixer: set_literal RefactoringTool: Skipping implicit fixer: ws_comma RefactoringTool: No changes to /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/setup.py RefactoringTool: Refactored /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/markupsafe/__init__.py --- /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/markupsafe/__init__.py (original) +++ /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/markupsafe/__init__.py (refactored) @@ -9,7 +9,7 @@ :license: BSD, see LICENSE for more details. """ import re -from itertools import imap + __all__ = ['Markup', 'soft_unicode', 'escape', 'escape_silent'] @@ -19,7 +19,7 @@ _entity_re = re.compile(r'&([^;]+);') -class Markup(unicode): +class Markup(str): r"""Marks a string as being safe for inclusion in HTML/XML output without needing to be escaped. This implements the `__html__` interface a couple of frameworks and web applications use. :class:`Markup` is a direct @@ -64,60 +64,60 @@ """ __slots__ = () - def __new__(cls, base=u'', encoding=None, errors='strict'): + def __new__(cls, base='', encoding=None, errors='strict'): if hasattr(base, '__html__'): base = base.__html__() if encoding is None: - return unicode.__new__(cls, base) - return unicode.__new__(cls, base, encoding, errors) + return str.__new__(cls, base) + return str.__new__(cls, base, encoding, errors) def __html__(self): return self def __add__(self, other): - if hasattr(other, '__html__') or isinstance(other, basestring): - return self.__class__(unicode(self) + unicode(escape(other))) + if hasattr(other, '__html__') or isinstance(other, str): + return self.__class__(str(self) + str(escape(other))) return NotImplemented def __radd__(self, other): - if hasattr(other, '__html__') or isinstance(other, basestring): - return self.__class__(unicode(escape(other)) + unicode(self)) + if hasattr(other, '__html__') or isinstance(other, str): + return self.__class__(str(escape(other)) + str(self)) return NotImplemented def __mul__(self, num): - if isinstance(num, (int, long)): - return self.__class__(unicode.__mul__(self, num)) + if isinstance(num, int): + return self.__class__(str.__mul__(self, num)) return NotImplemented __rmul__ = __mul__ def __mod__(self, arg): if isinstance(arg, tuple): - arg = tuple(imap(_MarkupEscapeHelper, arg)) + arg = tuple(map(_MarkupEscapeHelper, arg)) else: arg = _MarkupEscapeHelper(arg) - return self.__class__(unicode.__mod__(self, arg)) + return self.__class__(str.__mod__(self, arg)) def __repr__(self): return '%s(%s)' % ( self.__class__.__name__, - unicode.__repr__(self) + str.__repr__(self) ) def join(self, seq): - return self.__class__(unicode.join(self, imap(escape, seq))) - join.__doc__ = unicode.join.__doc__ + return self.__class__(str.join(self, map(escape, seq))) + join.__doc__ = str.join.__doc__ def split(self, *args, **kwargs): - return map(self.__class__, unicode.split(self, *args, **kwargs)) - split.__doc__ = unicode.split.__doc__ + return list(map(self.__class__, str.split(self, *args, **kwargs))) + split.__doc__ = str.split.__doc__ def rsplit(self, *args, **kwargs): - return map(self.__class__, unicode.rsplit(self, *args, **kwargs)) - rsplit.__doc__ = unicode.rsplit.__doc__ + return list(map(self.__class__, str.rsplit(self, *args, **kwargs))) + rsplit.__doc__ = str.rsplit.__doc__ def splitlines(self, *args, **kwargs): - return map(self.__class__, unicode.splitlines(self, *args, **kwargs)) - splitlines.__doc__ = unicode.splitlines.__doc__ + return list(map(self.__class__, str.splitlines(self, *args, **kwargs))) + splitlines.__doc__ = str.splitlines.__doc__ def unescape(self): r"""Unescape markup again into an unicode string. This also resolves @@ -130,16 +130,16 @@ def handle_match(m): name = m.group(1) if name in HTML_ENTIRefactoringTool: Refactored /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/markupsafe/_native.py RefactoringTool: Refactored /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/markupsafe/tests.py TIES: - return unichr(HTML_ENTITIES[name]) + return chr(HTML_ENTITIES[name]) try: if name[:2] in ('#x', '#X'): - return unichr(int(name[2:], 16)) + return chr(int(name[2:], 16)) elif name.startswith('#'): - return unichr(int(name[1:])) + return chr(int(name[1:])) except ValueError: pass - return u'' - return _entity_re.sub(handle_match, unicode(self)) + return '' + return _entity_re.sub(handle_match, str(self)) def striptags(self): r"""Unescape markup into an unicode string and strip all tags. This @@ -149,7 +149,7 @@ >>> Markup("Main » About").striptags() u'Main \xbb About' """ - stripped = u' '.join(_striptags_re.sub('', self).split()) + stripped = ' '.join(_striptags_re.sub('', self).split()) return Markup(stripped).unescape() @classmethod @@ -164,10 +164,10 @@ return rv def make_wrapper(name): - orig = getattr(unicode, name) + orig = getattr(str, name) def func(self, *args, **kwargs): args = _escape_argspec(list(args), enumerate(args)) - _escape_argspec(kwargs, kwargs.iteritems()) + _escape_argspec(kwargs, iter(kwargs.items())) return self.__class__(orig(self, *args, **kwargs)) func.__name__ = orig.__name__ func.__doc__ = orig.__doc__ @@ -180,20 +180,20 @@ locals()[method] = make_wrapper(method) # new in python 2.5 - if hasattr(unicode, 'partition'): + if hasattr(str, 'partition'): def partition(self, sep): return tuple(map(self.__class__, - unicode.partition(self, escape(sep)))) + str.partition(self, escape(sep)))) def rpartition(self, sep): return tuple(map(self.__class__, - unicode.rpartition(self, escape(sep)))) + str.rpartition(self, escape(sep)))) # new in python 2.6 - if hasattr(unicode, 'format'): + if hasattr(str, 'format'): format = make_wrapper('format') # not in python 3 - if hasattr(unicode, '__getslice__'): + if hasattr(str, '__getslice__'): __getslice__ = make_wrapper('__getslice__') del method, make_wrapper @@ -202,7 +202,7 @@ def _escape_argspec(obj, iterable): """Helper for various string-wrapped functions.""" for key, value in iterable: - if hasattr(value, '__html__') or isinstance(value, basestring): + if hasattr(value, '__html__') or isinstance(value, str): obj[key] = escape(value) return obj @@ -215,7 +215,7 @@ __getitem__ = lambda s, x: _MarkupEscapeHelper(s.obj[x]) __str__ = lambda s: str(escape(s.obj)) - __unicode__ = lambda s: unicode(escape(s.obj)) + __unicode__ = lambda s: str(escape(s.obj)) __repr__ = lambda s: str(escape(repr(s.obj))) __int__ = lambda s: int(s.obj) __float__ = lambda s: float(s.obj) --- /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/markupsafe/_native.py (original) +++ /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/markupsafe/_native.py (refactored) @@ -18,7 +18,7 @@ """ if hasattr(s, '__html__'): return s.__html__() - return Markup(unicode(s) + return Markup(str(s) .replace('&', '&') .replace('>', '>') .replace('<', '<') @@ -40,6 +40,6 @@ """Make a string unicode if it isn't already. That way a markup string is not converted back to unicode. """ - if not isinstance(s, unicode): - s = unicode(s) + if not isinstance(s, str): + s = str(s) return s --- /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/markupsafe/tests.py (original) +++ /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/markupsafe/tests.py (refactored) @@ -9,7 +9,7 @@ # adding two strings should escape the unsafe one unsafe = '' safe = Markup('username') - assert unsafe + safe == unicode(escape(unsafe)) + unicode(safe) + assert unsafe + safe == str(escape(unsafe)) + str(safe) # string interpolations are safe to use too assert Markup('%s') % '' == \ @@ -48,19 +48,19 @@ def test_escape_silent(self): assert escape_silent(None) == Markup() assert escape(None) == Markup(None) - assert escape_silent('') == Markup(u'<foo>') + assert escape_silent('') == Markup('<foo>') class MarkupLeakTestCase(unittest.TestCase): def test_markup_leaks(self): counts = set() - for count in xrange(20): - for item in xrange(1000): + for count in range(20): + for item in range(1000): escape("foo") escape("") - escape(u"foo") - escape(u"") + escape("foo") + escape("") counts.add(len(gc.get_objects())) assert len(counts) == 1, 'ouch, c extension seems to leak objects' RefactoringTool: Files that were modified: RefactoringTool: /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/setup.py RefactoringTool: /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/markupsafe/__init__.py RefactoringTool: /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/markupsafe/_native.py RefactoringTool: /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/markupsafe/tests.py + exit 0 Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.WCBr3a + umask 022 + cd /builddir/build/BUILD + cd MarkupSafe-0.11 + CFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic' + /usr/bin/python setup.py build running build running build_py creating build creating build/lib.linux-x86_64-2.7 creating build/lib.linux-x86_64-2.7/markupsafe copying markupsafe/tests.py -> build/lib.linux-x86_64-2.7/markupsafe copying markupsafe/_native.py -> build/lib.linux-x86_64-2.7/markupsafe copying markupsafe/_constants.py -> build/lib.linux-x86_64-2.7/markupsafe copying markupsafe/__init__.py -> build/lib.linux-x86_64-2.7/markupsafe running egg_info writing MarkupSafe.egg-info/PKG-INFO writing top-level names to MarkupSafe.egg-info/top_level.txt writing dependency_links to MarkupSafe.egg-info/dependency_links.txt reading manifest file 'MarkupSafe.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file 'MarkupSafe.egg-info/SOURCES.txt' copying markupsafe/_speedups.c -> build/lib.linux-x86_64-2.7/markupsafe running build_ext building 'markupsafe._speedups' extension creating build/temp.linux-x86_64-2.7 creating build/temp.linux-x86_64-2.7/markupsafe gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC -I/usr/include/python2.7 -c markupsafe/_speedups.c -o build/temp.linux-x86_64-2.7/markupsafe/_speedups.o gcc -pthread -shared -Wl,-z,relro -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic build/temp.linux-x86_64-2.7/markupsafe/_speedups.o -L/usr/lib64 -lpython2.7 -o build/lib.linux-x86_64-2.7/markupsafe/_speedups.so + pushd /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos ~/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos ~/build/BUILD/MarkupSafe-0.11 + CFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic' + /usr/bin/python3 setup.py build running build running build_py creating build creating build/lib.linux-x86_64-3.3 creating build/lib.linux-x86_64-3.3/markupsafe copying markupsafe/__init__.py -> build/lib.linux-x86_64-3.3/markupsafe copying markupsafe/_constants.py -> build/lib.linux-x86_64-3.3/markupsafe copying markupsafe/_native.py -> build/lib.linux-x86_64-3.3/markupsafe copying markupsafe/tests.py -> build/lib.linux-x86_64-3.3/markupsafe running egg_info writing top-level names to MarkupSafe.egg-info/top_level.txt writing MarkupSafe.egg-info/PKG-INFO writing dependency_links to MarkupSafe.egg-info/dependency_links.txt reading manifest file 'MarkupSafe.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file 'MarkupSafe.egg-info/SOURCES.txt' copying markupsafe/_speedups.c -> build/lib.linux-x86_64-3.3/markupsafe Fixing build/lib.linux-x86_64-3.3/markupsafe/__init__.py build/lib.linux-x86_64-3.3/markupsafe/_constants.py build/lib.linux-x86_64-3.3/markupsafe/_native.py build/lib.linux-x86_64-3.3/markupsafe/tests.py Skipping implicit fixer: buffer Skipping implicit fixer: idioms Skipping implicit fixer: set_literal Skipping implicit fixer: ws_comma Fixing build/lib.linux-x86_64-3.3/markupsafe/__init__.py build/lib.linux-x86_64-3.3/markupsafe/_constants.py build/lib.linux-x86_64-3.3/markupsafe/_native.py build/lib.linux-x86_64-3.3/markupsafe/tests.py Skipping implicit fixer: buffer Skipping implicit fixer: idioms Skipping implicit fixer: set_literal Skipping implicit fixer: ws_comma running build_ext building 'markupsafe._speedups' extension creating build/temp.linux-x86_64-3.3 creating build/temp.linux-x86_64-3.3/markupsafe gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC -I/usr/include/python3.3m -c markupsafe/_speedups.c -o build/temp.linux-x86_64-3.3/markupsafe/_speedups.o markupsafe/_speedups.c: In function 'init_constants': markupsafe/_speedups.c:15:81: error: 'PyUnicodeObject' has no member named 'str' #define UNICHR(x) (((PyUnicodeObject*)PyUnicode_DecodeASCII(x, strlen(x), NULL))->str); ^ markupsafe/_speedups.c:33:28: note: in expansion of macro 'UNICHR' escaped_chars_repl['"'] = UNICHR("""); ^ markupsafe/_speedups.c:15:81: error: 'PyUnicodeObject' has no member named 'str' #define UNICHR(x) (((PyUnicodeObject*)PyUnicode_DecodeASCII(x, strlen(x), NULL))->str); ^ markupsafe/_speedups.c:34:29: note: in expansion of macro 'UNICHR' escaped_chars_repl['\''] = UNICHR("'"); ^ markupsafe/_speedups.c:15:81: error: 'PyUnicodeObject' has no member named 'str' #define UNICHR(x) (((PyUnicodeObject*)PyUnicode_DecodeASCII(x, strlen(x), NULL))->str); ^ markupsafe/_speedups.c:35:28: note: in expansion of macro 'UNICHR' escaped_chars_repl['&'] = UNICHR("&"); ^ markupsafe/_speedups.c:15:81: error: 'PyUnicodeObject' has no member named 'str' #define UNICHR(x) (((PyUnicodeObject*)PyUnicode_DecodeASCII(x, strlen(x), NULL))->str); ^ markupsafe/_speedups.c:36:28: note: in expansion of macro 'UNICHR' escaped_chars_repl['<'] = UNICHR("<"); ^ markupsafe/_speedups.c:15:81: error: 'PyUnicodeObject' has no member named 'str' #define UNICHR(x) (((PyUnicodeObject*)PyUnicode_DecodeASCII(x, strlen(x), NULL))->str); ^ markupsafe/_speedups.c:37:28: note: in expansion of macro 'UNICHR' escaped_chars_repl['>'] = UNICHR(">"); ^ markupsafe/_speedups.c: In function 'escape_unicode': markupsafe/_speedups.c:59:22: error: 'PyUnicodeObject' has no member named 'str' Py_UNICODE *inp = in->str; ^ markupsafe/_speedups.c:60:32: error: 'PyUnicodeObject' has no member named 'str' const Py_UNICODE *inp_end = in->str + in->length; ^ markupsafe/_speedups.c:60:42: error: 'PyUnicodeObject' has no member named 'length' const Py_UNICODE *inp_end = in->str + in->length; ^ markupsafe/_speedups.c:80:56: error: 'PyUnicodeObject' has no member named 'length' out = (PyUnicodeObject*)PyUnicode_FromUnicode(NULL, in->length + delta); ^ markupsafe/_speedups.c:84:12: error: 'PyUnicodeObject' has no member named 'str' outp = out->str; ^ markupsafe/_speedups.c:85:10: error: 'PyUnicodeObject' has no member named 'str' inp = in->str; ^ In file included from /usr/include/python3.3m/Python.h:76:0, from markupsafe/_speedups.c:12: markupsafe/_speedups.c:111:32: error: 'PyUnicodeObject' has no member named 'length' Py_UNICODE_COPY(outp, inp, in->length - (inp - in->str)); ^ /usr/include/python3.3m/unicodeobject.h:175:36: note: in definition of macro 'Py_UNICODE_COPY' Py_MEMCPY((target), (source), (length)*sizeof(Py_UNICODE)) ^ markupsafe/_speedups.c:111:52: error: 'PyUnicodeObject' has no member named 'str' Py_UNICODE_COPY(outp, inp, in->length - (inp - in->str)); ^ /usr/include/python3.3m/unicodeobject.h:175:36: note: in definition of macro 'Py_UNICODE_COPY' Py_MEMCPY((target), (source), (length)*sizeof(Py_UNICODE)) ^ ========================================================================== WARNING: The C extension could not be compiled, speedups are not enabled. Failure information, if any, is above. Retrying the build without the C extension now. running build running build_py creating build/lib creating build/lib/markupsafe copying markupsafe/__init__.py -> build/lib/markupsafe copying markupsafe/_constants.py -> build/lib/markupsafe copying markupsafe/_native.py -> build/lib/markupsafe copying markupsafe/tests.py -> build/lib/markupsafe running egg_info writing top-level names to MarkupSafe.egg-info/top_level.txt writing MarkupSafe.egg-info/PKG-INFO writing dependency_links to MarkupSafe.egg-info/dependency_links.txt reading manifest file 'MarkupSafe.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file 'MarkupSafe.egg-info/SOURCES.txt' copying markupsafe/_speedups.c -> build/lib/markupsafe Fixing build/lib/markupsafe/__init__.py build/lib/markupsafe/_constants.py build/lib/markupsafe/_native.py build/lib/markupsafe/tests.py Skipping implicit fixer: buffer Skipping implicit fixer: idioms Skipping implicit fixer: set_literal Skipping implicit fixer: ws_comma Fixing build/lib/markupsafe/__init__.py build/lib/markupsafe/_constants.py build/lib/markupsafe/_native.py build/lib/markupsafe/tests.py Skipping implicit fixer: buffer Skipping implicit fixer: idioms Skipping implicit fixer: set_literal Skipping implicit fixer: ws_comma ========================================================================== WARNING: The C extension could not be compiled, speedups are not enabled. Plain-Python installation succeeded. ========================================================================== ~/build/BUILD/MarkupSafe-0.11 + popd + exit 0 Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.orUwEN + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64 '!=' / ']' + rm -rf /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64 ++ dirname /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64 + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64 + cd MarkupSafe-0.11 + rm -rf /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64 + /usr/bin/python setup.py install -O1 --skip-build --root /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64 running install running install_lib creating /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64 creating /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr creating /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64 creating /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7 creating /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7/site-packages creating /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7/site-packages/markupsafe copying build/lib.linux-x86_64-2.7/markupsafe/_speedups.so -> /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7/site-packages/markupsafe copying build/lib.linux-x86_64-2.7/markupsafe/_speedups.c -> /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7/site-packages/markupsafe copying build/lib.linux-x86_64-2.7/markupsafe/__init__.py -> /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7/site-packages/markupsafe copying build/lib.linux-x86_64-2.7/markupsafe/_constants.py -> /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7/site-packages/markupsafe copying build/lib.linux-x86_64-2.7/markupsafe/_native.py -> /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7/site-packages/markupsafe copying build/lib.linux-x86_64-2.7/markupsafe/tests.py -> /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7/site-packages/markupsafe byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7/site-packages/markupsafe/__init__.py to __init__.pyc byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7/site-packages/markupsafe/_constants.py to _constants.pyc byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7/site-packages/markupsafe/_native.py to _native.pyc byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7/site-packages/markupsafe/tests.py to tests.pyc writing byte-compilation script '/tmp/tmpP4_C4W.py' /usr/bin/python -O /tmp/tmpP4_C4W.py removing /tmp/tmpP4_C4W.py running install_egg_info running egg_info writing MarkupSafe.egg-info/PKG-INFO writing top-level names to MarkupSafe.egg-info/top_level.txt writing dependency_links to MarkupSafe.egg-info/dependency_links.txt reading manifest file 'MarkupSafe.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file 'MarkupSafe.egg-info/SOURCES.txt' Copying MarkupSafe.egg-info to /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7/site-packages/MarkupSafe-0.11-py2.7.egg-info running install_scripts + rm /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64//usr/lib64/python2.7/site-packages/markupsafe/_speedups.c ~/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos ~/build/BUILD/MarkupSafe-0.11 + pushd /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos + /usr/bin/python3 setup.py install -O1 --skip-build --root /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64 running install running install_lib creating /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python3.3 creating /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python3.3/site-packages creating /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python3.3/site-packages/markupsafe copying build/lib.linux-x86_64-3.3/markupsafe/_speedups.c -> /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python3.3/site-packages/markupsafe copying build/lib.linux-x86_64-3.3/markupsafe/tests.py -> /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python3.3/site-packages/markupsafe copying build/lib.linux-x86_64-3.3/markupsafe/_native.py -> /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python3.3/site-packages/markupsafe copying build/lib.linux-x86_64-3.3/markupsafe/_constants.py -> /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python3.3/site-packages/markupsafe copying build/lib.linux-x86_64-3.3/markupsafe/__init__.py -> /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python3.3/site-packages/markupsafe byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python3.3/site-packages/markupsafe/tests.py to tests.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python3.3/site-packages/markupsafe/_native.py to _native.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python3.3/site-packages/markupsafe/_constants.py to _constants.cpython-33.pyc byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python3.3/site-packages/markupsafe/__init__.py to __init__.cpython-33.pyc writing byte-compilation script '/tmp/tmpuqbt2q.py' /usr/bin/python3 -O /tmp/tmpuqbt2q.py removing /tmp/tmpuqbt2q.py running install_egg_info running egg_info writing dependency_links to MarkupSafe.egg-info/dependency_links.txt writing top-level names to MarkupSafe.egg-info/top_level.txt writing MarkupSafe.egg-info/PKG-INFO reading manifest file 'MarkupSafe.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file 'MarkupSafe.egg-info/SOURCES.txt' Copying MarkupSafe.egg-info to /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python3.3/site-packages/MarkupSafe-0.11-py3.3.egg-info running install_scripts + rm /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64//usr/lib64/python3.3/site-packages/markupsafe/_speedups.c ~/build/BUILD/MarkupSafe-0.11 + popd + /usr/lib/rpm/find-debuginfo.sh --strict-build-id -m --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 110000000 /builddir/build/BUILD/MarkupSafe-0.11 extracting debug info from /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7/site-packages/markupsafe/_speedups.so dwz: Too few files for multifile optimization /usr/lib/rpm/sepdebugcrcfix: Updated 1 CRC32s, 0 CRC32s did match. 12 blocks + /usr/lib/rpm/check-buildroot + /usr/lib/rpm/redhat/brp-compress + /usr/lib/rpm/redhat/brp-strip-static-archive /usr/bin/strip + /usr/lib/rpm/brp-python-bytecompile /usr/bin/python 1 Bytecompiling .py files below /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib/debug/usr/lib64/python2.7 using /usr/bin/python2.7 Bytecompiling .py files below /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python3.3 using /usr/bin/python3.3 Bytecompiling .py files below /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/lib64/python2.7 using /usr/bin/python2.7 + /usr/lib/rpm/redhat/brp-python-hardlink + /usr/lib/rpm/redhat/brp-java-repack-jars Executing(%check): /bin/sh -e /var/tmp/rpm-tmp.eq8GQs + umask 022 + cd /builddir/build/BUILD + cd MarkupSafe-0.11 + /usr/bin/python setup.py test running test running egg_info writing MarkupSafe.egg-info/PKG-INFO writing top-level names to MarkupSafe.egg-info/top_level.txt writing dependency_links to MarkupSafe.egg-info/dependency_links.txt reading manifest file 'MarkupSafe.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file 'MarkupSafe.egg-info/SOURCES.txt' running build_ext building 'markupsafe._speedups' extension gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/python2.7 -c markupsafe/_speedups.c -o build/temp.linux-x86_64-2.7/markupsafe/_speedups.o gcc -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-2.7/markupsafe/_speedups.o -L/usr/lib64 -lpython2.7 -o /builddir/build/BUILD/MarkupSafe-0.11/markupsafe/_speedups.so test_all_set (markupsafe.tests.MarkupTestCase) ... ok test_escape_silent (markupsafe.tests.MarkupTestCase) ... ok test_markup_operations (markupsafe.tests.MarkupTestCase) ... ok test_markup_leaks (markupsafe.tests.MarkupLeakTestCase) ... ok ---------------------------------------------------------------------- Ran 4 tests in 0.172s OK + pushd /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos ~/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos ~/build/BUILD/MarkupSafe-0.11 + /usr/bin/python3 setup.py test running test running build_py running egg_info writing dependency_links to MarkupSafe.egg-info/dependency_links.txt writing MarkupSafe.egg-info/PKG-INFO writing top-level names to MarkupSafe.egg-info/top_level.txt reading manifest file 'MarkupSafe.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file 'MarkupSafe.egg-info/SOURCES.txt' running egg_info creating /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/build/lib.linux-x86_64-3.3/MarkupSafe.egg-info writing dependency_links to /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/build/lib.linux-x86_64-3.3/MarkupSafe.egg-info/dependency_links.txt writing /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/build/lib.linux-x86_64-3.3/MarkupSafe.egg-info/PKG-INFO writing top-level names to /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/build/lib.linux-x86_64-3.3/MarkupSafe.egg-info/top_level.txt writing manifest file '/builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/build/lib.linux-x86_64-3.3/MarkupSafe.egg-info/SOURCES.txt' reading manifest file '/builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/build/lib.linux-x86_64-3.3/MarkupSafe.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file '/builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/build/lib.linux-x86_64-3.3/MarkupSafe.egg-info/SOURCES.txt' running build_ext building 'markupsafe._speedups' extension gcc -pthread -Wno-unused-result -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/python3.3m -c markupsafe/_speedups.c -o build/temp.linux-x86_64-3.3/markupsafe/_speedups.o markupsafe/_speedups.c: In function 'init_constants': markupsafe/_speedups.c:15:81: error: 'PyUnicodeObject' has no member named 'str' #define UNICHR(x) (((PyUnicodeObject*)PyUnicode_DecodeASCII(x, strlen(x), NULL))->str); ^ markupsafe/_speedups.c:33:28: note: in expansion of macro 'UNICHR' escaped_chars_repl['"'] = UNICHR("""); ^ markupsafe/_speedups.c:15:81: error: 'PyUnicodeObject' has no member named 'str' #define UNICHR(x) (((PyUnicodeObject*)PyUnicode_DecodeASCII(x, strlen(x), NULL))->str); ^ markupsafe/_speedups.c:34:29: note: in expansion of macro 'UNICHR' escaped_chars_repl['\''] = UNICHR("'"); ^ markupsafe/_speedups.c:15:81: error: 'PyUnicodeObject' has no member named 'str' #define UNICHR(x) (((PyUnicodeObject*)PyUnicode_DecodeASCII(x, strlen(x), NULL))->str); ^ markupsafe/_speedups.c:35:28: note: in expansion of macro 'UNICHR' escaped_chars_repl['&'] = UNICHR("&"); ^ markupsafe/_speedups.c:15:81: error: 'PyUnicodeObject' has no member named 'str' #define UNICHR(x) (((PyUnicodeObject*)PyUnicode_DecodeASCII(x, strlen(x), NULL))->str); ^ markupsafe/_speedups.c:36:28: note: in expansion of macro 'UNICHR' escaped_chars_repl['<'] = UNICHR("<"); ^ markupsafe/_speedups.c:15:81: error: 'PyUnicodeObject' has no member named 'str' #define UNICHR(x) (((PyUnicodeObject*)PyUnicode_DecodeASCII(x, strlen(x), NULL))->str); ^ markupsafe/_speedups.c:37:28: note: in expansion of macro 'UNICHR' escaped_chars_repl['>'] = UNICHR(">"); ^ markupsafe/_speedups.c: In function 'escape_unicode': markupsafe/_speedups.c:59:22: error: 'PyUnicodeObject' has no member named 'str' Py_UNICODE *inp = in->str; ^ markupsafe/_speedups.c:60:32: error: 'PyUnicodeObject' has no member named 'str' const Py_UNICODE *inp_end = in->str + in->length; ^ markupsafe/_speedups.c:60:42: error: 'PyUnicodeObject' has no member named 'length' const Py_UNICODE *inp_end = in->str + in->length; ^ markupsafe/_speedups.c:80:56: error: 'PyUnicodeObject' has no member named 'length' out = (PyUnicodeObject*)PyUnicode_FromUnicode(NULL, in->length + delta); ^ markupsafe/_speedups.c:84:12: error: 'PyUnicodeObject' has no member named 'str' outp = out->str; ^ markupsafe/_speedups.c:85:10: error: 'PyUnicodeObject' has no member named 'str' inp = in->str; ^ In file included from /usr/include/python3.3m/Python.h:76:0, from markupsafe/_speedups.c:12: markupsafe/_speedups.c:111:32: error: 'PyUnicodeObject' has no member named 'length' Py_UNICODE_COPY(outp, inp, in->length - (inp - in->str)); ^ /usr/include/python3.3m/unicodeobject.h:175:36: note: in definition of macro 'Py_UNICODE_COPY' Py_MEMCPY((target), (source), (length)*sizeof(Py_UNICODE)) ^ markupsafe/_speedups.c:111:52: error: 'PyUnicodeObject' has no member named 'str' Py_UNICODE_COPY(outp, inp, in->length - (inp - in->str)); ^ /usr/include/python3.3m/unicodeobject.h:175:36: note: in definition of macro 'Py_UNICODE_COPY' Py_MEMCPY((target), (source), (length)*sizeof(Py_UNICODE)) ^ ========================================================================== WARNING: The C extension could not be compiled, speedups are not enabled. Failure information, if any, is above. Retrying the build without the C extension now. running test running build_py running egg_info writing dependency_links to MarkupSafe.egg-info/dependency_links.txt writing MarkupSafe.egg-info/PKG-INFO writing top-level names to MarkupSafe.egg-info/top_level.txt reading manifest file 'MarkupSafe.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file 'MarkupSafe.egg-info/SOURCES.txt' running egg_info creating /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/build/lib/MarkupSafe.egg-info writing dependency_links to /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/build/lib/MarkupSafe.egg-info/dependency_links.txt writing /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/build/lib/MarkupSafe.egg-info/PKG-INFO writing top-level names to /builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/build/lib/MarkupSafe.egg-info/top_level.txt writing manifest file '/builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/build/lib/MarkupSafe.egg-info/SOURCES.txt' reading manifest file '/builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/build/lib/MarkupSafe.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file '/builddir/build/BUILD/python3-python-markupsafe-0.11-10.el7.centos/build/lib/MarkupSafe.egg-info/SOURCES.txt' running build_ext test_all_set (markupsafe.tests.MarkupTestCase) ... ok test_escape_silent (markupsafe.tests.MarkupTestCase) ... ok test_markup_operations (markupsafe.tests.MarkupTestCase) ... ok test_markup_leaks (markupsafe.tests.MarkupLeakTestCase) ... ok ---------------------------------------------------------------------- Ran 4 tests in 0.391s OK + popd ~/build/BUILD/MarkupSafe-0.11 + exit 0 Processing files: python-markupsafe-0.11-10.el7.centos.x86_64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.enkaUb + umask 022 + cd /builddir/build/BUILD + cd MarkupSafe-0.11 + DOCDIR=/builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/share/doc/python-markupsafe-0.11 + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/share/doc/python-markupsafe-0.11 + cp -pr AUTHORS /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/share/doc/python-markupsafe-0.11 + cp -pr LICENSE /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/share/doc/python-markupsafe-0.11 + cp -pr README.rst /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/share/doc/python-markupsafe-0.11 + exit 0 Provides: python-markupsafe = 0.11-10.el7.centos python-markupsafe(x86-64) = 0.11-10.el7.centos 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: libc.so.6()(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libpthread.so.0()(64bit) libpython2.7.so.1.0()(64bit) python(abi) = 2.7 rtld(GNU_HASH) Processing files: python3-markupsafe-0.11-10.el7.centos.x86_64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.exUQsV + umask 022 + cd /builddir/build/BUILD + cd MarkupSafe-0.11 + DOCDIR=/builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/share/doc/python3-markupsafe-0.11 + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/share/doc/python3-markupsafe-0.11 + cp -pr AUTHORS /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/share/doc/python3-markupsafe-0.11 + cp -pr LICENSE /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/share/doc/python3-markupsafe-0.11 + cp -pr README.rst /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64/usr/share/doc/python3-markupsafe-0.11 + exit 0 Provides: python3-markupsafe = 0.11-10.el7.centos python3-markupsafe(x86-64) = 0.11-10.el7.centos 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.3 Processing files: python-markupsafe-debuginfo-0.11-10.el7.centos.x86_64 Provides: python-markupsafe-debuginfo = 0.11-10.el7.centos python-markupsafe-debuginfo(x86-64) = 0.11-10.el7.centos Requires(rpmlib): rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(CompressedFileNames) <= 3.0.4-1 Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64 warning: Could not canonicalize hostname: copr-builder-322318307.novalocal Wrote: /builddir/build/RPMS/python-markupsafe-0.11-10.el7.centos.x86_64.rpm Wrote: /builddir/build/RPMS/python3-markupsafe-0.11-10.el7.centos.x86_64.rpm Wrote: /builddir/build/RPMS/python-markupsafe-debuginfo-0.11-10.el7.centos.x86_64.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.sooajW + umask 022 + cd /builddir/build/BUILD + cd MarkupSafe-0.11 + rm -rf /builddir/build/BUILDROOT/python-markupsafe-0.11-10.el7.centos.x86_64 + exit 0 Child return code was: 0