Mock Version: 1.2.12 Mock Version: 1.2.12 ENTER do(['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target noarch --nodeps /builddir/build/SPECS/woffTools.spec'], chrootPath='/var/lib/mock/f23-build-4159255-532920/root'shell=FalseprintOutput=Falseenv={'LANG': 'en_US.UTF-8', 'TERM': 'vt100', 'SHELL': '/bin/bash', 'PROMPT_COMMAND': 'printf "\x1b]0;\x07"', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOME': '/builddir', 'HOSTNAME': 'mock'}gid=425user='mockbuild'timeout=172800logger=uid=1000) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target noarch --nodeps /builddir/build/SPECS/woffTools.spec'] with env {'LANG': 'en_US.UTF-8', 'TERM': 'vt100', 'SHELL': '/bin/bash', 'PROMPT_COMMAND': 'printf "\x1b]0;\x07"', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOME': '/builddir', 'HOSTNAME': 'mock'} and shell False warning: Could not canonicalize hostname: arm02-builder16.arm.fedoraproject.org Building target platforms: noarch Building for target noarch Wrote: /builddir/build/SRPMS/woffTools-0.1-0.11.20151005git.fc23.src.rpm Child return code was: 0 LEAVE do --> ENTER do(['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target noarch --nodeps /builddir/build/SPECS/woffTools.spec '], chrootPath='/var/lib/mock/f23-build-4159255-532920/root'shell=FalseprintOutput=Falseenv={'LANG': 'en_US.UTF-8', 'TERM': 'vt100', 'SHELL': '/bin/bash', 'PROMPT_COMMAND': 'printf "\x1b]0;\x07"', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOME': '/builddir', 'HOSTNAME': 'mock'}gid=425user='mockbuild'timeout=172800logger=uid=1000) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target noarch --nodeps /builddir/build/SPECS/woffTools.spec '] with env {'LANG': 'en_US.UTF-8', 'TERM': 'vt100', 'SHELL': '/bin/bash', 'PROMPT_COMMAND': 'printf "\x1b]0;\x07"', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'HOME': '/builddir', 'HOSTNAME': 'mock'} and shell False Building target platforms: noarch Building for target noarch Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.SUwJuZ + umask 022 + cd /builddir/build/BUILD + cd /builddir/build/BUILD + rm -rf woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + /usr/bin/mkdir -p woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + cd woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + /usr/bin/gzip -dc /builddir/build/SOURCES/woffTools-1e86369.tar.gz + /usr/bin/tar -xof - + STATUS=0 + '[' 0 -ne 0 ']' + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + mv woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c python2 + sed -i -e '/^#! \//, 1d' python2/Lib/woffTools/tools/validate.py + mv python2/License.txt python2/README.txt . + cp -pr python2 python3 + pushd python3 ~/build/BUILD/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c/python3 ~/build/BUILD/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + 2to3 -w . RefactoringTool: Skipping implicit fixer: buffer RefactoringTool: Skipping implicit fixer: idioms RefactoringTool: Skipping implicit fixer: set_literal RefactoringTool: Skipping implicit fixer: ws_comma RefactoringTool: Refactored ./setup.py RefactoringTool: Refactored ./Lib/woffTools/__init__.py RefactoringTool: Refactored ./Lib/woffTools/test/test_validate.py --- ./setup.py (original) +++ ./setup.py (refactored) @@ -6,8 +6,8 @@ try: import fontTools except: - print "*** Warning: woffTools requires FontTools, see:" - print " fonttools.sf.net" + print("*** Warning: woffTools requires FontTools, see:") + print(" fonttools.sf.net") setup( --- ./Lib/woffTools/__init__.py (original) +++ ./Lib/woffTools/__init__.py (refactored) @@ -11,7 +11,7 @@ import zlib import struct import sstruct -from cStringIO import StringIO +from io import StringIO from xml.etree import ElementTree from fontTools.ttLib import TTFont, debugmsg, sortedTagList from fontTools.ttLib.sfnt import getSearchRange, calcChecksum, SFNTDirectoryEntry, \ @@ -68,7 +68,7 @@ self.flavor = self.reader.flavor self.majorVersion = self.reader.majorVersion self.minorVersion = self.reader.minorVersion - self._tableOrder = self.reader.keys() + self._tableOrder = list(self.reader.keys()) else: self._metadata = ElementTree.Element("metadata", version="1.0") self.privateData = None @@ -155,7 +155,7 @@ # if DSIG is to be written, the table order # must be completely specified. otherwise the # DSIG may not be valid after decoding the WOFF. - tags = self.keys() + tags = list(self.keys()) if "GlyphOrder" in tags: tags.remove("GlyphOrder") if "DSIG" in tags: @@ -294,7 +294,7 @@ of each table. """ sorter = [] - for tag, entry in self.tables.items(): + for tag, entry in list(self.tables.items()): sorter.append((entry.offset, tag)) order = [tag for offset, tag in sorted(sorter)] return order @@ -314,8 +314,8 @@ if self.checkChecksums > 1: assert checksum == entry.origChecksum, "bad checksum for '%s' table" % tag elif checksum != entry.origChecksum: - print "bad checksum for '%s' table" % tag - print + print("bad checksum for '%s' table" % tag) + print() return data def getCompressedTableData(self, tag): @@ -683,7 +683,7 @@ sfntEntry.length = entry["length"] directory += sfntEntry.toString() # calculate the checkSumAdjustment - checkSums = [entry["checkSum"] for entry in tables.values()] + checkSums = [entry["checkSum"] for entry in list(tables.values())] checkSums.append(calcChecksum(directory)) checkSumAdjustment = sum(checkSums) checkSumAdjustment = (0xB1B0AFBA - checkSumAdjustment) & 0xffffffff @@ -913,8 +913,8 @@ edges[entry["tag"]] = (start, end) # look for overlaps overlaps = set() - for tag, (start, end) in edges.items(): - for otherTag, (otherStart, otherEnd) in edges.items(): + for tag, (start, end) in list(edges.items()): + for otherTag, (otherStart, otherEnd) in list(edges.items()): tag = tag.strip() otherTag = otherTag.strip() if tag == otherTag: --- ./Lib/woffTools/test/test_validate.py (original) +++ ./Lib/woffTools/test/test_validate.py (refactored) @@ -696,7 +696,7 @@ header, directory, tableData = defaultTestData(header=True, directory=True, tableData=True) origData = testDataTableData compData = zlib.compress(origData) - for tag, (origData, compData) in tableData.items(): + for tag, (origData, compData) in list(tableData.items()): tableData[tag] = (origData, zlib.compress(origData)) updateDirectoryEntries(directory, tableData) return packTestHeader(header) + packTestDirectory(directory) + packTestTableData(directory, tableData) @@ -711,7 +711,7 @@ header, directory, tableData = defaultTestData(header=True, directory=True, tableData=True) origData = testDataTableData compData = zlib.compress(origData) - for tag, (origData, compData) in tableData.items(): + for tag, (origData, compData) in list(tableData.items()): tableData[tag] = (origData, zlib.compress(oRefactoringTool: Refactored ./Lib/woffTools/tools/css.py RefactoringTool: Refactored ./Lib/woffTools/tools/info.py rigData)) updateDirectoryEntries(directory, tableData) for entry in directory: @@ -952,7 +952,7 @@ (False, 'PASS') """ header, directory, tableData = defaultTestData(header=True, directory=True, tableData=True) - for tag, (origData, compData) in tableData.items(): + for tag, (origData, compData) in list(tableData.items()): tableData[tag] = (origData, zlib.compress(compData)) updateDirectoryEntries(directory, tableData) return packTestHeader(header) + packTestDirectory(directory) + packTestTableData(directory, tableData) @@ -965,7 +965,7 @@ (True, 'ERROR') """ header, directory, tableData = defaultTestData(header=True, directory=True, tableData=True) - for tag, (origData, compData) in tableData.items(): + for tag, (origData, compData) in list(tableData.items()): compData = "".join(reversed(zlib.compress(compData))) tableData[tag] = (origData, compData) updateDirectoryEntries(directory, tableData) --- ./Lib/woffTools/tools/css.py (original) +++ ./Lib/woffTools/tools/css.py (refactored) @@ -24,13 +24,13 @@ if importErrors: import sys - print "Could not import needed module(s):", ", ".join(importErrors) + print("Could not import needed module(s):", ", ".join(importErrors)) sys.exit() # import import os -import urllib +import urllib.request, urllib.parse, urllib.error import optparse from woffTools import WOFFFont from woffTools.tools.support import findUniqueFileName @@ -90,7 +90,7 @@ s = "/* " + s + " */" sources.append(s) # file name - s = "url(\"%s\")" % urllib.quote(fileName) # XXX: format(\"woff\") + s = "url(\"%s\")" % urllib.parse.quote(fileName) # XXX: format(\"woff\") sources.append(s) # write sources = "\n\t".join(sources) @@ -194,7 +194,7 @@ text = nameRecord.string nameIDs[nameID, platformID, platEncID, langID] = text for (nameID, platformID, platEncID, langID) in priority: - for (nID, pID, pEID, lID), text in nameIDs.items(): + for (nID, pID, pEID, lID), text in list(nameIDs.items()): if nID != nameID: continue if pID != platformID and platformID is not None: @@ -259,14 +259,14 @@ (options, args) = parser.parse_args() outputDirectory = options.outputDirectory if outputDirectory is not None and not os.path.exists(outputDirectory): - print "Directory does not exist:", outputDirectory + print("Directory does not exist:", outputDirectory) sys.exit() for fontPath in args: if not os.path.exists(fontPath): - print "File does not exist:", fontPath + print("File does not exist:", fontPath) sys.exit() else: - print "Creating CSS: %s..." % fontPath + print("Creating CSS: %s..." % fontPath) fontPath = fontPath.decode("utf-8") font = WOFFFont(fontPath) css = makeFontFaceRule(font, fontPath, doLocalSrc=options.doLocalSrc) --- ./Lib/woffTools/tools/info.py (original) +++ ./Lib/woffTools/tools/info.py (refactored) @@ -23,7 +23,7 @@ if importErrors: import sys - print "Could not import needed module(s):", ", ".join(importErrors) + print("Could not import needed module(s):", ", ".join(importErrors)) sys.exit() # import @@ -175,7 +175,7 @@ src = font.privateData length = 16 result = [] - for i in xrange(0, len(src), length): + for i in range(0, len(src), length): s = src[i:i+length] hexa = [] c = [] @@ -263,14 +263,14 @@ (options, args) = parser.parse_args() outputDirectory = options.outputDirectory if outputDirectory is not None and not os.path.exists(outputDirectory): - print "Directory does not exist:", outputDirectory + print("Directory does not exist:", outputDirectory) sys.exit() for fontPath in args: if not os.path.exists(fontPath): - print "File does not existRefactoringTool: Refactored ./Lib/woffTools/tools/proof.py RefactoringTool: Refactored ./Lib/woffTools/tools/support.py RefactoringTool: Refactored ./Lib/woffTools/tools/validate.py :", fontPath + print("File does not exist:", fontPath) sys.exit() else: - print "Creating Info Report: %s..." % fontPath + print("Creating Info Report: %s..." % fontPath) fontPath = fontPath.decode("utf-8") font = WOFFFont(fontPath) html = reportInfo(font, fontPath) --- ./Lib/woffTools/tools/proof.py (original) +++ ./Lib/woffTools/tools/proof.py (refactored) @@ -24,7 +24,7 @@ if importErrors: import sys - print "Could not import needed module(s):", ", ".join(importErrors) + print("Could not import needed module(s):", ", ".join(importErrors)) sys.exit() # import @@ -103,7 +103,7 @@ categorizedCharacters = {} glyphNameToCharacter = {} for value, glyphName in sorted(mapping.items()): - character = unichr(value) + character = chr(value) # skip whitespace if not character.strip(): continue @@ -115,7 +115,7 @@ for glyphName in font.getGlyphOrder(): if glyphName in glyphNameToCharacter: sortedCharacters += glyphNameToCharacter[glyphName] - return u"".join(sortedCharacters) + return "".join(sortedCharacters) # --------------- # Public Function @@ -169,22 +169,22 @@ (options, args) = parser.parse_args() outputDirectory = options.outputDirectory if outputDirectory is not None and not os.path.exists(outputDirectory): - print "Directory does not exist:", outputDirectory + print("Directory does not exist:", outputDirectory) sys.exit() sampleText = defaultSampleText if options.sampleTextFile: if not os.path.exists(options.sampleTextFile): - print "Sample text file does not exist:", options.sampleTextFile + print("Sample text file does not exist:", options.sampleTextFile) sys.exit() f = open(options.sampleTextFile, "r") sampleText = f.read() f.close() for fontPath in args: if not os.path.exists(fontPath): - print "File does not exist:", fontPath + print("File does not exist:", fontPath) sys.exit() else: - print "Creating Proof: %s..." % fontPath + print("Creating Proof: %s..." % fontPath) fontPath = fontPath.decode("utf-8") font = WOFFFont(fontPath) html = proofFont(font, fontPath, sampleText=sampleText) --- ./Lib/woffTools/tools/support.py (original) +++ ./Lib/woffTools/tools/support.py (refactored) @@ -1,7 +1,7 @@ import os import time from xml.etree import ElementTree -from cStringIO import StringIO +from io import StringIO # ---------------------- # Very Simple XML Writer @@ -361,7 +361,7 @@ # write the css writer.begintag("style", type="text/css") css = defaultCSS - for before, after in cssReplacements.items(): + for before, after in list(cssReplacements.items()): css = css.replace(before, after) writer.write(css) writer.endtag("style") --- ./Lib/woffTools/tools/validate.py (original) +++ ./Lib/woffTools/tools/validate.py (refactored) @@ -16,7 +16,7 @@ import zlib import optparse import codecs -from cStringIO import StringIO +from io import StringIO from xml.etree import ElementTree from xml.parsers.expat import ExpatError @@ -1317,7 +1317,7 @@ haveError = False # unknown attributes knownAttributes = [] - for attrib in spec["requiredAttributes"].keys() + spec["recommendedAttributes"].keys() + spec["optionalAttributes"].keys(): + for attrib in list(spec["requiredAttributes"].keys()) + list(spec["recommendedAttributes"].keys()) + list(spec["optionalAttributes"].keys()): attrib = _parseAttribute(attrib) knownAttributes.append(attrib) for attrib in sorted(element.attrib.keys()): @@ -1352,7 +1352,7 @@ if e: haveError = True # unknown child-elements - knownChildElements = spec["requiredChildElements"].keys() + spec["recommendedChildElements"].keys() + spec["optionalChildElements"].keys() + knownChildElements = list(spec["requiredChildElements"].keys()) + list(spec["recommendedChildElements"].keys()) + list(spec["optionalChildElements"].keys()) for childElement in element: if childElement.tag not in knownChildElements: _logMetadataResult( @@ -1430,7 +1430,7 @@ haveError = False for attrib, valueOptions in sorted(spec.items()): attribs = _parseAttribute(attrib) - if isinstance(attribs, basestring): + if isinstance(attribs, str): attribs = [attribs] found = [] for attrib in attribs: @@ -1485,7 +1485,7 @@ def _validateAttributeValue(element, attrib, valueOptions, reporter, parentTree): haveError = False value = element.attrib[attrib] - if isinstance(valueOptions, basestring): + if isinstance(valueOptions, str): valueOptions = [valueOptions] # no defined value options if valueOptions is None: @@ -1693,7 +1693,7 @@ for tag, sfntEntry in sorted(sfntEntries.items()): sfntData += structPack(sfntDirectoryEntryFormat, sfntEntry) # calculate - checkSums = [entry["checkSum"] for entry in sfntEntries.values()] + checkSums = [entry["checkSum"] for entry in list(sfntEntries.values())] checkSums.append(sumDataULongs(sfntData)) checkSum = sum(checkSums) checkSum = (0xB1B0AFBA - checkSum) & 0xffffffff @@ -2274,7 +2274,7 @@ # write the css writer.begintag("style", type="text/css") css = defaultCSS - for before, after in cssReplacements.items(): + for before, after in list(cssReplacements.items()): css = css.replace(before, after) writer.write(css) writer.endtag("style") @@ -2473,17 +2473,17 @@ options.outputFormat = "html" options.testGroups = None # don't expose this to the commandline. it's for testing only. if outputDirectory is not None and not os.path.exists(outputDirectory): - print "Directory does not exist:", outputDirectory + print("Directory does not exist:", outputDirectory) sys.exit() for fontPath in args: if not os.path.exists(fontPath): - print "File does not exist:", fontPath + print("File does not exist:", fontPath) sys.exit() else: - print "Testing: %s..." % fontPath + print("Testing: %s..." % fontPath) fontPath = fontPath.decode("utf-8") outputPath, report = validateFont(fontPath, options) - print "Wrote report to: %s" % outputPath + print("Wrote report to: %s" % outputPath) if __name__ == "__main__": main() RefactoringTool: Files that were modified: RefactoringTool: ./setup.py RefactoringTool: ./Lib/woffTools/__init__.py RefactoringTool: ./Lib/woffTools/test/test_validate.py RefactoringTool: ./Lib/woffTools/tools/css.py RefactoringTool: ./Lib/woffTools/tools/info.py RefactoringTool: ./Lib/woffTools/tools/proof.py RefactoringTool: ./Lib/woffTools/tools/support.py RefactoringTool: ./Lib/woffTools/tools/validate.py + popd ~/build/BUILD/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + exit 0 Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.p70TFX + umask 022 ~/build/BUILD/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c/python2 ~/build/BUILD/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + cd /builddir/build/BUILD + cd woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + pushd python2 + CFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -march=armv7-a -mfpu=neon -mfloat-abi=hard' + /usr/bin/python2 setup.py build '--executable=/usr/bin/python2 -s' running build running build_py creating build creating build/lib creating build/lib/woffTools copying Lib/woffTools/__init__.py -> build/lib/woffTools creating build/lib/woffTools/tools copying Lib/woffTools/tools/info.py -> build/lib/woffTools/tools copying Lib/woffTools/tools/validate.py -> build/lib/woffTools/tools copying Lib/woffTools/tools/proof.py -> build/lib/woffTools/tools copying Lib/woffTools/tools/__init__.py -> build/lib/woffTools/tools copying Lib/woffTools/tools/support.py -> build/lib/woffTools/tools copying Lib/woffTools/tools/css.py -> build/lib/woffTools/tools creating build/lib/woffTools/test copying Lib/woffTools/test/__init__.py -> build/lib/woffTools/test copying Lib/woffTools/test/test_validate.py -> build/lib/woffTools/test running build_scripts creating build/scripts-2.7 copying and adjusting woff-all -> build/scripts-2.7 copying and adjusting woff-validate -> build/scripts-2.7 copying and adjusting woff-info -> build/scripts-2.7 copying and adjusting woff-proof -> build/scripts-2.7 copying and adjusting woff-css -> build/scripts-2.7 changing mode of build/scripts-2.7/woff-all from 644 to 755 changing mode of build/scripts-2.7/woff-validate from 644 to 755 changing mode of build/scripts-2.7/woff-info from 644 to 755 changing mode of build/scripts-2.7/woff-proof from 644 to 755 changing mode of build/scripts-2.7/woff-css from 644 to 755 + popd ~/build/BUILD/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c ~/build/BUILD/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c/python3 ~/build/BUILD/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + pushd python3 + CFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -march=armv7-a -mfpu=neon -mfloat-abi=hard' + /usr/bin/python3 setup.py build '--executable=/usr/bin/python3 -s' running build running build_py creating build creating build/lib creating build/lib/woffTools copying Lib/woffTools/__init__.py -> build/lib/woffTools creating build/lib/woffTools/tools copying Lib/woffTools/tools/info.py -> build/lib/woffTools/tools copying Lib/woffTools/tools/validate.py -> build/lib/woffTools/tools copying Lib/woffTools/tools/proof.py -> build/lib/woffTools/tools copying Lib/woffTools/tools/__init__.py -> build/lib/woffTools/tools copying Lib/woffTools/tools/support.py -> build/lib/woffTools/tools copying Lib/woffTools/tools/css.py -> build/lib/woffTools/tools creating build/lib/woffTools/test copying Lib/woffTools/test/__init__.py -> build/lib/woffTools/test copying Lib/woffTools/test/test_validate.py -> build/lib/woffTools/test running build_scripts creating build/scripts-3.4 copying and adjusting woff-all -> build/scripts-3.4 copying and adjusting woff-validate -> build/scripts-3.4 copying and adjusting woff-info -> build/scripts-3.4 copying and adjusting woff-proof -> build/scripts-3.4 copying and adjusting woff-css -> build/scripts-3.4 changing mode of build/scripts-3.4/woff-all from 644 to 755 changing mode of build/scripts-3.4/woff-validate from 644 to 755 changing mode of build/scripts-3.4/woff-info from 644 to 755 changing mode of build/scripts-3.4/woff-proof from 644 to 755 changing mode of build/scripts-3.4/woff-css from 644 to 755 + popd ~/build/BUILD/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + exit 0 Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.tB7zhu + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch '!=' / ']' + rm -rf /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch ++ dirname /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch + cd woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c ~/build/BUILD/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c/python2 ~/build/BUILD/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + pushd python2 + CFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -march=armv7-a -mfpu=neon -mfloat-abi=hard' + /usr/bin/python2 setup.py install -O1 --skip-build --root /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch running install running install_lib creating /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr creating /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib creating /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7 creating /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages creating /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools creating /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/tools copying build/lib/woffTools/tools/info.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/tools copying build/lib/woffTools/tools/validate.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/tools copying build/lib/woffTools/tools/proof.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/tools copying build/lib/woffTools/tools/__init__.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/tools copying build/lib/woffTools/tools/support.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/tools copying build/lib/woffTools/tools/css.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/tools creating /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/test copying build/lib/woffTools/test/__init__.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/test copying build/lib/woffTools/test/test_validate.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/test copying build/lib/woffTools/__init__.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/tools/info.py to info.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/tools/validate.py to validate.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/tools/proof.py to proof.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/tools/__init__.py to __init__.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/tools/support.py to support.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/tools/css.py to css.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/test/__init__.py to __init__.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/test/test_validate.py to test_validate.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools/__init__.py to __init__.pyc writing byte-compilation script '/tmp/tmp8sA_Er.py' /usr/bin/python2 -O /tmp/tmp8sA_Er.py removing /tmp/tmp8sA_Er.py running install_scripts creating /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin copying build/scripts-2.7/woff-info -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin copying build/scripts-2.7/woff-all -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin copying build/scripts-2.7/woff-validate -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin copying build/scripts-2.7/woff-proof -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin copying build/scripts-2.7/woff-css -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin changing mode of /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin/woff-info to 755 changing mode of /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin/woff-all to 755 changing mode of /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin/woff-validate to 755 changing mode of /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin/woff-proof to 755 changing mode of /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin/woff-css to 755 running install_egg_info Writing /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7/site-packages/woffTools-0.1beta-py2.7.egg-info + popd ~/build/BUILD/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c ~/build/BUILD/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c/python3 ~/build/BUILD/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + pushd python3 + CFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -march=armv7-a -mfpu=neon -mfloat-abi=hard' + /usr/bin/python3 setup.py install -O1 --skip-build --root /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch running install running install_lib creating /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4 creating /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages creating /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools creating /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/tools copying build/lib/woffTools/tools/info.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/tools copying build/lib/woffTools/tools/validate.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/tools copying build/lib/woffTools/tools/proof.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/tools copying build/lib/woffTools/tools/__init__.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/tools copying build/lib/woffTools/tools/support.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/tools copying build/lib/woffTools/tools/css.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/tools creating /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/test copying build/lib/woffTools/test/__init__.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/test copying build/lib/woffTools/test/test_validate.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/test copying build/lib/woffTools/__init__.py -> /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/tools/info.py to info.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/tools/validate.py to validate.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/tools/proof.py to proof.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/tools/__init__.py to __init__.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/tools/support.py to support.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/tools/css.py to css.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/test/__init__.py to __init__.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/test/test_validate.py to test_validate.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools/__init__.py to __init__.cpython-34.pyc writing byte-compilation script '/tmp/tmpzjsdg5ac.py' /usr/bin/python3 -O /tmp/tmpzjsdg5ac.py removing /tmp/tmpzjsdg5ac.py running install_scripts changing mode of /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin/woff-info to 755 changing mode of /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin/woff-all to 755 changing mode of /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin/woff-validate to 755 changing mode of /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin/woff-proof to 755 changing mode of /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/bin/woff-css to 755 running install_egg_info Writing /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4/site-packages/woffTools-0.1beta-py3.4.egg-info + popd ~/build/BUILD/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + /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/woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c /usr/lib/rpm/sepdebugcrcfix: Updated 0 CRC32s, 0 CRC32s did match. find: 'debug': No such file or directory + /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/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python2.7 using /usr/bin/python2.7 Bytecompiling .py files below /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/lib/python3.4 using /usr/bin/python3.4 + /usr/lib/rpm/brp-python-hardlink + /usr/lib/rpm/redhat/brp-java-repack-jars Processing files: woffTools-0.1-0.11.20151005git.fc23.noarch Provides: woffTools = 0.1-0.11.20151005git.fc23 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: /usr/bin/python2 Processing files: python2-woffTools-0.1-0.11.20151005git.fc23.noarch Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.ZrZPWU + umask 022 + cd /builddir/build/BUILD + cd woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + DOCDIR=/builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/share/doc/python2-woffTools + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/share/doc/python2-woffTools + cp -pr README.txt /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/share/doc/python2-woffTools + exit 0 Executing(%license): /bin/sh -e /var/tmp/rpm-tmp.vqJ5gp + umask 022 + cd /builddir/build/BUILD + cd woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + LICENSEDIR=/builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/share/licenses/python2-woffTools + export LICENSEDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/share/licenses/python2-woffTools + cp -pr License.txt /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/share/licenses/python2-woffTools + exit 0 Provides: python-woffTools = 0.1-0.11.20151005git.fc23 python2-woffTools = 0.1-0.11.20151005git.fc23 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) = 2.7 Obsoletes: python-woffTools < 0.1-0.11.20151005git.fc23 Processing files: python3-woffTools-0.1-0.11.20151005git.fc23.noarch Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.ysETPI + umask 022 + cd /builddir/build/BUILD + cd woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + DOCDIR=/builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/share/doc/python3-woffTools + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/share/doc/python3-woffTools + cp -pr README.txt /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/share/doc/python3-woffTools + exit 0 Executing(%license): /bin/sh -e /var/tmp/rpm-tmp.h6bPk4 + umask 022 + cd /builddir/build/BUILD + cd woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + LICENSEDIR=/builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/share/licenses/python3-woffTools + export LICENSEDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/share/licenses/python3-woffTools + cp -pr License.txt /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch/usr/share/licenses/python3-woffTools + exit 0 Provides: python3-woffTools = 0.1-0.11.20151005git.fc23 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.4 Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch warning: Could not canonicalize hostname: arm02-builder16.arm.fedoraproject.org Wrote: /builddir/build/RPMS/woffTools-0.1-0.11.20151005git.fc23.noarch.rpm Wrote: /builddir/build/RPMS/python2-woffTools-0.1-0.11.20151005git.fc23.noarch.rpm Wrote: /builddir/build/RPMS/python3-woffTools-0.1-0.11.20151005git.fc23.noarch.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.Z5oSTF + umask 022 + cd /builddir/build/BUILD + cd woffTools-1e86369b73aca9f3cfabea04d4862d710a42622c + /usr/bin/rm -rf /builddir/build/BUILDROOT/woffTools-0.1-0.11.20151005git.fc23.noarch + exit 0 Child return code was: 0 LEAVE do -->