Mock Version: 1.2.14 ENTER do(['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target armv6hl --nodeps /builddir/build/SPECS/python-markupsafe.spec'], chrootPath='/var/lib/mock/fedora-20-armhfp-pidora-root-11335/root'shell=Falselogger=printOutput=Falsegid=135env={'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOSTNAME': 'mock', 'CCACHE_UMASK': '002', 'SHELL': '/bin/bash', 'LANG': 'en_US.UTF-8', 'CCACHE_DIR': '/tmp/ccache', 'PROMPT_COMMAND': 'printf "\x1b]0;\x07"', 'TERM': 'vt100', 'HOME': '/builddir'}uid=1000timeout=0user='mockbuild') Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target armv6hl --nodeps /builddir/build/SPECS/python-markupsafe.spec'] with env {'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOSTNAME': 'mock', 'CCACHE_UMASK': '002', 'SHELL': '/bin/bash', 'LANG': 'en_US.UTF-8', 'CCACHE_DIR': '/tmp/ccache', 'PROMPT_COMMAND': 'printf "\x1b]0;\x07"', 'TERM': 'vt100', 'HOME': '/builddir'} 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: armbuilder Building target platforms: armv6hl Building for target armv6hl Wrote: /builddir/build/SRPMS/python-markupsafe-0.23-7bs01fc23.src.rpm Child return code was: 0 LEAVE do --> ENTER do(['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target armv6hl --nodeps /builddir/build/SPECS/python-markupsafe.spec '], chrootPath='/var/lib/mock/fedora-20-armhfp-pidora-root-11335/root'shell=Falseprivate_network=Truelogger=printOutput=Falsegid=135env={'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOSTNAME': 'mock', 'CCACHE_UMASK': '002', 'SHELL': '/bin/bash', 'LANG': 'en_US.UTF-8', 'CCACHE_DIR': '/tmp/ccache', 'PROMPT_COMMAND': 'printf "\x1b]0;\x07"', 'TERM': 'vt100', 'HOME': '/builddir'}uid=1000timeout=0user='mockbuild') Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target armv6hl --nodeps /builddir/build/SPECS/python-markupsafe.spec '] with env {'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOSTNAME': 'mock', 'CCACHE_UMASK': '002', 'SHELL': '/bin/bash', 'LANG': 'en_US.UTF-8', 'CCACHE_DIR': '/tmp/ccache', 'PROMPT_COMMAND': 'printf "\x1b]0;\x07"', 'TERM': 'vt100', 'HOME': '/builddir'} and shell False Building target platforms: armv6hl Building for target armv6hl Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.bv4c32 + umask 022 + cd /builddir/build/BUILD + cd /builddir/build/BUILD + rm -rf MarkupSafe-0.23 + /usr/bin/gzip -dc /builddir/build/SOURCES/MarkupSafe-0.23.tar.gz + /usr/bin/tar -xof - + STATUS=0 + '[' 0 -ne 0 ']' + cd MarkupSafe-0.23 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + rm -rf /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23 + cp -a . /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23 + 2to3 --write --nobackups /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23 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.23-7bs01fc23/setup.py RefactoringTool: Refactored /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/__init__.py RefactoringTool: Refactored /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/_compat.py RefactoringTool: No changes to /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/_constants.py RefactoringTool: No changes to /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/_native.py RefactoringTool: Refactored /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/tests.py --- /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/__init__.py (original) +++ /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/__init__.py (refactored) @@ -12,7 +12,7 @@ import string from collections import Mapping from markupsafe._compat import text_type, string_types, int_types, \ - unichr, iteritems, PY2 + chr, iteritems, PY2 __all__ = ['Markup', 'soft_unicode', 'escape', 'escape_silent'] @@ -67,7 +67,7 @@ """ __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: @@ -107,7 +107,7 @@ ) def join(self, seq): - return self.__class__(text_type.join(self, map(self.escape, seq))) + return self.__class__(text_type.join(self, list(map(self.escape, seq)))) join.__doc__ = text_type.join.__doc__ def split(self, *args, **kwargs): @@ -134,15 +134,15 @@ def handle_match(m): name = m.group(1) if name in HTML_ENTITIES: - 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 '' return _entity_re.sub(handle_match, text_type(self)) def striptags(self): @@ -153,7 +153,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 --- /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/_compat.py (original) +++ /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/_compat.py (refactored) @@ -15,12 +15,12 @@ if not PY2: text_type = str string_types = (str,) - unichr = chr + chr = chr int_types = (int,) + iteritems = lambda x: iter(list(x.items())) +else: + text_type = str + string_types = (str, str) + chr = chr + int_types = (int, int) iteritems = lambda x: iter(x.items()) -else: - text_type = unicode - string_types = (str, unicode) - unichr = unichr - int_types = (int, long) - iteritems = lambda x: x.iteritems() --- /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/tests.py (original) +++ /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/tests.py (refactored) @@ -49,16 +49,16 @@ self.assertEqual(Markup('%s:%s') % ( '', '', - ), Markup(u'<foo>:<bar>')) + ), Markup('<foo>:<bar>')) def test_dict_interpol(self): self.assertEqual(Markup('%(foo)s') % { 'foo': '', - }, Markup(u'<foo>')) + }, Markup('<foo>')) self.assertEqual(Markup('%(foo)s:%(bar)s') % { 'foo': '', 'bar': '', - }, Markup(u'<foo>:<bar>')) + }, Markup('<foo>:<bar>')) def test_escaping(self): # escaping and unescaping @@ -128,7 +128,7 @@ 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>') def test_splitting(self): self.assertEqual(Markup('a b').split(), [ @@ -156,8 +156,8 @@ 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.23-7bs01fc23/setup.py RefactoringTool: /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/__init__.py RefactoringTool: /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/_compat.py RefactoringTool: /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/_constants.py RefactoringTool: /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/_native.py RefactoringTool: /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/tests.py + exit 0 Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.h0mSau + umask 022 + cd /builddir/build/BUILD + cd MarkupSafe-0.23 + CFLAGS='-O2 -g -march=armv6 -mfloat-abi=hard -mfpu=vfp' + /usr/bin/python setup.py build running build running build_py creating build creating build/lib.linux-armv7l-2.7 creating build/lib.linux-armv7l-2.7/markupsafe copying markupsafe/_constants.py -> build/lib.linux-armv7l-2.7/markupsafe copying markupsafe/_native.py -> build/lib.linux-armv7l-2.7/markupsafe copying markupsafe/__init__.py -> build/lib.linux-armv7l-2.7/markupsafe copying markupsafe/tests.py -> build/lib.linux-armv7l-2.7/markupsafe copying markupsafe/_compat.py -> build/lib.linux-armv7l-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-armv7l-2.7/markupsafe running build_ext building 'markupsafe._speedups' extension creating build/temp.linux-armv7l-2.7 creating build/temp.linux-armv7l-2.7/markupsafe gcc -pthread -fno-strict-aliasing -O2 -g -march=armv6 -mfloat-abi=hard -mfpu=vfp -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -march=armv6 -mfloat-abi=hard -mfpu=vfp -D_GNU_SOURCE -fPIC -fwrapv -O2 -g -march=armv6 -mfloat-abi=hard -mfpu=vfp -fPIC -I/usr/include/python2.7 -c markupsafe/_speedups.c -o build/temp.linux-armv7l-2.7/markupsafe/_speedups.o gcc -pthread -shared -Wl,-z,relro -O2 -g -march=armv6 -mfloat-abi=hard -mfpu=vfp build/temp.linux-armv7l-2.7/markupsafe/_speedups.o -L/usr/lib -lpython2.7 -o build/lib.linux-armv7l-2.7/markupsafe/_speedups.so + pushd /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23 ~/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23 ~/build/BUILD/MarkupSafe-0.23 + CFLAGS='-O2 -g -march=armv6 -mfloat-abi=hard -mfpu=vfp' + /usr/bin/python3 setup.py build running build running build_py creating build creating build/lib.linux-armv7l-3.4 creating build/lib.linux-armv7l-3.4/markupsafe copying markupsafe/_constants.py -> build/lib.linux-armv7l-3.4/markupsafe copying markupsafe/_native.py -> build/lib.linux-armv7l-3.4/markupsafe copying markupsafe/__init__.py -> build/lib.linux-armv7l-3.4/markupsafe copying markupsafe/tests.py -> build/lib.linux-armv7l-3.4/markupsafe copying markupsafe/_compat.py -> build/lib.linux-armv7l-3.4/markupsafe running egg_info writing MarkupSafe.egg-info/PKG-INFO writing dependency_links to MarkupSafe.egg-info/dependency_links.txt 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' copying markupsafe/_speedups.c -> build/lib.linux-armv7l-3.4/markupsafe running build_ext building 'markupsafe._speedups' extension creating build/temp.linux-armv7l-3.4 creating build/temp.linux-armv7l-3.4/markupsafe gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -march=armv6 -mfloat-abi=hard -mfpu=vfp -D_GNU_SOURCE -fPIC -fwrapv -O2 -g -march=armv6 -mfloat-abi=hard -mfpu=vfp -fPIC -I/usr/include/python3.4m -c markupsafe/_speedups.c -o build/temp.linux-armv7l-3.4/markupsafe/_speedups.o gcc -pthread -shared -Wl,-z,relro -O2 -g -march=armv6 -mfloat-abi=hard -mfpu=vfp build/temp.linux-armv7l-3.4/markupsafe/_speedups.o -L/usr/lib -lpython3.4m -o build/lib.linux-armv7l-3.4/markupsafe/_speedups.cpython-34m.so + popd ~/build/BUILD/MarkupSafe-0.23 + exit 0 Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.zY1OaQ + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm '!=' / ']' + rm -rf /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm ++ dirname /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm + cd MarkupSafe-0.23 + rm -rf /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm + /usr/bin/python setup.py install -O1 --skip-build --root /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm running install running install_lib creating /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm creating /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr creating /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib creating /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7 creating /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7/site-packages creating /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7/site-packages/markupsafe copying build/lib.linux-armv7l-2.7/markupsafe/_constants.py -> /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7/site-packages/markupsafe copying build/lib.linux-armv7l-2.7/markupsafe/_speedups.so -> /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7/site-packages/markupsafe copying build/lib.linux-armv7l-2.7/markupsafe/_native.py -> /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7/site-packages/markupsafe copying build/lib.linux-armv7l-2.7/markupsafe/_speedups.c -> /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7/site-packages/markupsafe copying build/lib.linux-armv7l-2.7/markupsafe/__init__.py -> /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7/site-packages/markupsafe copying build/lib.linux-armv7l-2.7/markupsafe/tests.py -> /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7/site-packages/markupsafe copying build/lib.linux-armv7l-2.7/markupsafe/_compat.py -> /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7/site-packages/markupsafe byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7/site-packages/markupsafe/_constants.py to _constants.pyc byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7/site-packages/markupsafe/_native.py to _native.pyc byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7/site-packages/markupsafe/__init__.py to __init__.pyc byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7/site-packages/markupsafe/tests.py to tests.pyc byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7/site-packages/markupsafe/_compat.py to _compat.pyc writing byte-compilation script '/tmp/tmpdB2ZJ7.py' /usr/bin/python -O /tmp/tmpdB2ZJ7.py removing /tmp/tmpdB2ZJ7.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.23-7bs01fc23.arm/usr/lib/python2.7/site-packages/MarkupSafe-0.23-py2.7.egg-info running install_scripts + rm /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm//usr/lib/python2.7/site-packages/markupsafe/_speedups.c + pushd /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23 ~/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23 ~/build/BUILD/MarkupSafe-0.23 + /usr/bin/python3 setup.py install -O1 --skip-build --root /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm running install running install_lib creating /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4 creating /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages creating /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages/markupsafe copying build/lib.linux-armv7l-3.4/markupsafe/_constants.py -> /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages/markupsafe copying build/lib.linux-armv7l-3.4/markupsafe/_native.py -> /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages/markupsafe copying build/lib.linux-armv7l-3.4/markupsafe/_speedups.c -> /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages/markupsafe copying build/lib.linux-armv7l-3.4/markupsafe/__init__.py -> /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages/markupsafe copying build/lib.linux-armv7l-3.4/markupsafe/tests.py -> /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages/markupsafe copying build/lib.linux-armv7l-3.4/markupsafe/_speedups.cpython-34m.so -> /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages/markupsafe copying build/lib.linux-armv7l-3.4/markupsafe/_compat.py -> /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages/markupsafe byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages/markupsafe/_constants.py to _constants.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages/markupsafe/_native.py to _native.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages/markupsafe/__init__.py to __init__.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages/markupsafe/tests.py to tests.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages/markupsafe/_compat.py to _compat.cpython-34.pyc writing byte-compilation script '/tmp/tmpzfrf5a41.py' /usr/bin/python3 -O /tmp/tmpzfrf5a41.py removing /tmp/tmpzfrf5a41.py running install_egg_info running egg_info writing MarkupSafe.egg-info/PKG-INFO writing dependency_links to MarkupSafe.egg-info/dependency_links.txt 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' Copying MarkupSafe.egg-info to /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg-info running install_scripts + rm /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm//usr/lib/python3.4/site-packages/markupsafe/_speedups.c + popd ~/build/BUILD/MarkupSafe-0.23 + /usr/lib/rpm/find-debuginfo.sh --strict-build-id -m --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 50000000 /builddir/build/BUILD/MarkupSafe-0.23 extracting debug info from /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4/site-packages/markupsafe/_speedups.cpython-34m.so extracting debug info from /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7/site-packages/markupsafe/_speedups.so /usr/lib/rpm/sepdebugcrcfix: Updated 2 CRC32s, 0 CRC32s did match. 24 blocks + /usr/lib/rpm/check-buildroot + /usr/lib/rpm/brp-compress + /usr/lib/rpm/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.23-7bs01fc23.arm/usr/lib/debug/usr/lib/python3.4 using /usr/bin/python3.4 Bytecompiling .py files below /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/debug/usr/lib/python2.7 using /usr/bin/python2.7 Bytecompiling .py files below /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python3.4 using /usr/bin/python3.4 Bytecompiling .py files below /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/lib/python2.7 using /usr/bin/python2.7 + /usr/lib/rpm/brp-python-hardlink + /usr/lib/rpm/redhat/brp-java-repack-jars Executing(%check): /bin/sh -e /var/tmp/rpm-tmp.BEwypa + umask 022 + cd /builddir/build/BUILD + cd MarkupSafe-0.23 + /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 -march=armv6 -mfloat-abi=hard -mfpu=vfp -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -march=armv6 -mfloat-abi=hard -mfpu=vfp -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/python2.7 -c markupsafe/_speedups.c -o build/temp.linux-armv7l-2.7/markupsafe/_speedups.o gcc -pthread -shared -Wl,-z,relro build/temp.linux-armv7l-2.7/markupsafe/_speedups.o -L/usr/lib -lpython2.7 -o /builddir/build/BUILD/MarkupSafe-0.23/markupsafe/_speedups.so test_adding (markupsafe.tests.MarkupTestCase) ... ok test_all_set (markupsafe.tests.MarkupTestCase) ... ok test_complex_custom_formatting (markupsafe.tests.MarkupTestCase) ... ok test_custom_formatting (markupsafe.tests.MarkupTestCase) ... ok test_dict_interpol (markupsafe.tests.MarkupTestCase) ... ok test_escape_silent (markupsafe.tests.MarkupTestCase) ... ok test_escaping (markupsafe.tests.MarkupTestCase) ... ok test_formatting (markupsafe.tests.MarkupTestCase) ... ok test_formatting_empty (markupsafe.tests.MarkupTestCase) ... ok test_html_interop (markupsafe.tests.MarkupTestCase) ... ok test_mul (markupsafe.tests.MarkupTestCase) ... ok test_splitting (markupsafe.tests.MarkupTestCase) ... ok test_string_interpolation (markupsafe.tests.MarkupTestCase) ... ok test_tuple_interpol (markupsafe.tests.MarkupTestCase) ... ok test_type_behavior (markupsafe.tests.MarkupTestCase) ... ok test_markup_leaks (markupsafe.tests.MarkupLeakTestCase) ... ok ---------------------------------------------------------------------- Ran 16 tests in 0.574s OK + pushd /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23 ~/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23 ~/build/BUILD/MarkupSafe-0.23 + /usr/bin/python3 setup.py test running test running egg_info writing MarkupSafe.egg-info/PKG-INFO writing dependency_links to MarkupSafe.egg-info/dependency_links.txt 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 build_ext building 'markupsafe._speedups' extension gcc -pthread -Wno-unused-result -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -march=armv6 -mfloat-abi=hard -mfpu=vfp -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/python3.4m -c markupsafe/_speedups.c -o build/temp.linux-armv7l-3.4/markupsafe/_speedups.o gcc -pthread -shared -Wl,-z,relro build/temp.linux-armv7l-3.4/markupsafe/_speedups.o -L/usr/lib -lpython3.4m -o /builddir/build/BUILD/python3-python-markupsafe-0.23-7bs01fc23/markupsafe/_speedups.cpython-34m.so test_adding (markupsafe.tests.MarkupTestCase) ... ok test_all_set (markupsafe.tests.MarkupTestCase) ... ok test_complex_custom_formatting (markupsafe.tests.MarkupTestCase) ... ok test_custom_formatting (markupsafe.tests.MarkupTestCase) ... ok test_dict_interpol (markupsafe.tests.MarkupTestCase) ... ok test_escape_silent (markupsafe.tests.MarkupTestCase) ... ok test_escaping (markupsafe.tests.MarkupTestCase) ... ok test_formatting (markupsafe.tests.MarkupTestCase) ... ok test_formatting_empty (markupsafe.tests.MarkupTestCase) ... ok test_html_interop (markupsafe.tests.MarkupTestCase) ... ok test_mul (markupsafe.tests.MarkupTestCase) ... ok test_splitting (markupsafe.tests.MarkupTestCase) ... ok test_string_interpolation (markupsafe.tests.MarkupTestCase) ... ok test_tuple_interpol (markupsafe.tests.MarkupTestCase) ... ok test_type_behavior (markupsafe.tests.MarkupTestCase) ... ok test_markup_leaks (markupsafe.tests.MarkupLeakTestCase) ... ok ---------------------------------------------------------------------- Ran 16 tests in 0.632s OK + popd ~/build/BUILD/MarkupSafe-0.23 + exit 0 Processing files: python-markupsafe-0.23-7bs01fc23.armv6hl Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.6wHvQC + umask 022 + cd /builddir/build/BUILD + cd MarkupSafe-0.23 + DOCDIR=/builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/share/doc/python-markupsafe + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/share/doc/python-markupsafe + cp -pr AUTHORS /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/share/doc/python-markupsafe + cp -pr LICENSE /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/share/doc/python-markupsafe + cp -pr README.rst /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/share/doc/python-markupsafe + exit 0 Provides: python-markupsafe = 0.23-7bs01fc23 python-markupsafe(armv6hl-32) = 0.23-7bs01fc23 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 libc.so.6(GLIBC_2.4) libpthread.so.0 libpython2.7.so.1.0 python(abi) = 2.7 rtld(GNU_HASH) Processing files: python3-markupsafe-0.23-7bs01fc23.armv6hl Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.QdIoDD + umask 022 + cd /builddir/build/BUILD + cd MarkupSafe-0.23 + DOCDIR=/builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/share/doc/python3-markupsafe + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/share/doc/python3-markupsafe + cp -pr AUTHORS /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/share/doc/python3-markupsafe + cp -pr LICENSE /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/share/doc/python3-markupsafe + cp -pr README.rst /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm/usr/share/doc/python3-markupsafe + exit 0 Provides: python3-markupsafe = 0.23-7bs01fc23 python3-markupsafe(armv6hl-32) = 0.23-7bs01fc23 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 libc.so.6(GLIBC_2.4) libpthread.so.0 libpython3.4m.so.1.0 python(abi) = 3.4 rtld(GNU_HASH) Processing files: python-markupsafe-debuginfo-0.23-7bs01fc23.armv6hl Provides: python-markupsafe-debuginfo = 0.23-7bs01fc23 python-markupsafe-debuginfo(armv6hl-32) = 0.23-7bs01fc23 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm warning: Could not canonicalize hostname: armbuilder Wrote: /builddir/build/RPMS/python-markupsafe-0.23-7bs01fc23.armv6hl.rpm Wrote: /builddir/build/RPMS/python3-markupsafe-0.23-7bs01fc23.armv6hl.rpm Wrote: /builddir/build/RPMS/python-markupsafe-debuginfo-0.23-7bs01fc23.armv6hl.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.QyBrtC + umask 022 + cd /builddir/build/BUILD + cd MarkupSafe-0.23 + rm -rf /builddir/build/BUILDROOT/python-markupsafe-0.23-7bs01fc23.arm + exit 0 Child return code was: 0 LEAVE do -->