Mock Version: 1.1.21 Mock Version: 1.1.21 ENTER do(['bash', '--login', '-c', 'rpmbuild -bs --target x86_64 --nodeps builddir/build/SPECS/python-coverage.spec'], False, '/var/lib/mock/f18-build-1427744-231433/root/', None, 86400, True, False, 500, 425, None, False, {'LANG': 'en_US.UTF-8', 'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOSTNAME': 'mock', 'PROMPT_COMMAND': 'echo -n ""', 'HOME': '/builddir', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin'}, logger=) Executing command: ['bash', '--login', '-c', 'rpmbuild -bs --target x86_64 --nodeps builddir/build/SPECS/python-coverage.spec'] with env {'LANG': 'en_US.UTF-8', 'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOSTNAME': 'mock', 'PROMPT_COMMAND': 'echo -n ""', 'HOME': '/builddir', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin'} Building target platforms: x86_64 Building for target x86_64 Wrote: /builddir/build/SRPMS/python-coverage-3.5.2-0.3.b1.fc18.src.rpm Child return code was: 0 LEAVE do --> ENTER do(['bash', '--login', '-c', 'rpmbuild -bb --target x86_64 --nodeps builddir/build/SPECS/python-coverage.spec'], False, '/var/lib/mock/f18-build-1427744-231433/root/', None, 86400, True, False, 500, 425, None, False, {'LANG': 'en_US.UTF-8', 'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOSTNAME': 'mock', 'PROMPT_COMMAND': 'echo -n ""', 'HOME': '/builddir', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin'}, logger=) Executing command: ['bash', '--login', '-c', 'rpmbuild -bb --target x86_64 --nodeps builddir/build/SPECS/python-coverage.spec'] with env {'LANG': 'en_US.UTF-8', 'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOSTNAME': 'mock', 'PROMPT_COMMAND': 'echo -n ""', 'HOME': '/builddir', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin'} Building target platforms: x86_64 Building for target x86_64 Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.Ru4n9v + umask 022 + cd /builddir/build/BUILD + LANG=C + export LANG + unset DISPLAY + cd /builddir/build/BUILD + rm -rf coverage-3.5.2b1 + /usr/bin/gzip -dc /builddir/build/SOURCES/coverage-3.5.2b1.tar.gz + /usr/bin/tar -xf - + STATUS=0 + '[' 0 -ne 0 ']' + cd coverage-3.5.2b1 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + find . -type f -exec chmod 0644 '{}' ';' + sed -i 's/\r//g' README.txt + rm -rf /builddir/build/BUILD/python3-python-coverage-3.5.2-0.3.b1.fc18 + cp -a . /builddir/build/BUILD/python3-python-coverage-3.5.2-0.3.b1.fc18 ~/build/BUILD/python3-python-coverage-3.5.2-0.3.b1.fc18 ~/build/BUILD/coverage-3.5.2b1 + pushd /builddir/build/BUILD/python3-python-coverage-3.5.2-0.3.b1.fc18 + 2to3 --nobackups --write . RefactoringTool: Skipping implicit fixer: buffer RefactoringTool: Skipping implicit fixer: idioms RefactoringTool: Skipping implicit fixer: set_literal RefactoringTool: Skipping implicit fixer: ws_comma RefactoringTool: Refactored ./distribute_setup.py RefactoringTool: Refactored ./ez_setup.py RefactoringTool: Refactored ./setup.py --- ./distribute_setup.py (original) +++ ./distribute_setup.py (refactored) @@ -182,7 +182,7 @@ try: from urllib.request import urlopen except ImportError: - from urllib2 import urlopen + from urllib.request import urlopen tgz_name = "distribute-%s.tar.gz" % version url = download_base + tgz_name saveto = os.path.join(to_dir, tgz_name) --- ./ez_setup.py (original) +++ ./ez_setup.py (refactored) @@ -62,10 +62,10 @@ if egg_name in md5_data: digest = md5(data).hexdigest() if digest != md5_data[egg_name]: - print >>sys.stderr, ( + print(( "md5 validation of %s failed! (Possible download problem?)" % egg_name - ) + ), file=sys.stderr) sys.exit(2) return data @@ -95,14 +95,14 @@ return do_download() try: pkg_resources.require("setuptools>="+version); return - except pkg_resources.VersionConflict, e: + except pkg_resources.VersionConflict as e: if was_imported: - print >>sys.stderr, ( + print(( "The required version of setuptools (>=%s) is not available, and\n" "can't be installed while this script is running. Please install\n" " a more recent version first, using 'easy_install -U setuptools'." "\n\n(Currently using %r)" - ) % (version, e.args[0]) + ) % (version, e.args[0]), file=sys.stderr) sys.exit(2) else: del pkg_resources, sys.modules['pkg_resources'] # reload ok @@ -121,7 +121,7 @@ with a '/'). `to_dir` is the directory where the egg will be downloaded. `delay` is the number of seconds to pause before an actual download attempt. """ - import urllib2, shutil + import urllib.request, urllib.error, urllib.parse, shutil egg_name = "setuptools-%s-py%s.egg" % (version,sys.version[:3]) url = download_base + egg_name saveto = os.path.join(to_dir, egg_name) @@ -147,7 +147,7 @@ version, download_base, delay, url ); from time import sleep; sleep(delay) log.warn("Downloading %s", url) - src = urllib2.urlopen(url) + src = urllib.request.urlopen(url) # Read/write all in one block, so we don't create a corrupt file # if the download is interrupted. data = _validate_md5(egg_name, src.read()) @@ -208,10 +208,10 @@ os.unlink(egg) else: if setuptools.__version__ == '0.0.1': - print >>sys.stderr, ( + print(( "You have an obsolete version of setuptools installed. Please\n" "remove it from your system entirely before rerunning this script." - ) + ), file=sys.stderr) sys.exit(2) req = "setuptools>="+version @@ -230,8 +230,8 @@ from setuptools.command.easy_install import main main(argv) else: - print "Setuptools version",version,"or greater has been installed." - print '(Run "ez_setup.py -U setuptools" to reinstall or upgrade.)' + print("Setuptools version",version,"or greater has been installed.") + print('(Run "ez_setup.py -U setuptools" to reinstall or upgrade.)') def update_md5(filenames): """Update our built-in md5 registry""" @@ -244,7 +244,7 @@ md5_data[base] = md5(f.read()).hexdigest() f.close() - data = [" %r: %r,\n" % it for it in md5_data.items()] + data = [" %r: %r,\n" % it for it in list(md5_data.items())] data.sort() repl = "".join(data) @@ -254,7 +254,7 @@ match = re.search("\nmd5_data = {\n([^}]+)}", src) if not match: - print >>sys.stderr, "Internal error!" + print("Internal error!", file=sys.stderr) sys.exit(2) src = src[:match.start(1)] + repl + src[match.end(1):] --- ./setup.py (original) +++ ./setup.py (refactored) @@ -135,6 +135,6 @@ raisRefactoringTool: No changes to ./coverage/annotate.py RefactoringTool: Refactored ./coverage/backward.py RefactoringTool: No changes to ./coverage/bytecode.py RefactoringTool: Refactored ./coverage/cmdline.py RefactoringTool: No changes to ./coverage/codeunit.py RefactoringTool: Refactored ./coverage/collector.py e msg = "Couldn't install with extension module, trying without it..." exc_msg = traceback.format_exc(0).split('\n')[-2] - print("**\n** %s\n** %s\n**" % (msg, exc_msg)) + print(("**\n** %s\n** %s\n**" % (msg, exc_msg))) del setup_args['ext_modules'] setup(**setup_args) --- ./coverage/backward.py (original) +++ ./coverage/backward.py (refactored) @@ -26,20 +26,20 @@ # Pythons 2 and 3 differ on where to get StringIO try: - from cStringIO import StringIO + from io import StringIO BytesIO = StringIO except ImportError: from io import StringIO, BytesIO # What's a string called? try: - string_class = basestring + string_class = str except NameError: string_class = str # Where do pickles come from? try: - import cPickle as pickle + import pickle as pickle except ImportError: import pickle @@ -70,7 +70,7 @@ try: import configparser except ImportError: - import ConfigParser as configparser + import configparser as configparser # Reading Python source and interpreting the coding comment is a big deal. if sys.version_info >= (3, 0): --- ./coverage/cmdline.py (original) +++ ./coverage/cmdline.py (refactored) @@ -356,16 +356,16 @@ print(error) print("Use 'coverage help' for help.") elif parser: - print(parser.format_help().strip()) + print((parser.format_help().strip())) else: # Parse out the topic we want from HELP_TOPICS topic_list = re.split("(?m)^=+ (\w+) =+$", HELP_TOPICS) - topics = dict(zip(topic_list[1::2], topic_list[2::2])) + topics = dict(list(zip(topic_list[1::2], topic_list[2::2]))) help_msg = topics.get(topic, '').strip() if help_msg: - print(help_msg % self.covpkg.__dict__) + print((help_msg % self.covpkg.__dict__)) else: - print("Don't know topic %r" % topic) + print(("Don't know topic %r" % topic)) def command_line(self, argv): """The bulk of the command line interface to Coverage. @@ -480,22 +480,22 @@ if info == []: info = "-none-" if isinstance(info, list): - print("%15s:" % label) + print(("%15s:" % label)) for e in info: - print("%15s %s" % ("", e)) + print(("%15s %s" % ("", e))) else: - print("%15s: %s" % (label, info)) + print(("%15s: %s" % (label, info))) elif info == 'data': print("-- data ---------------------------------------") self.coverage.load() - print("path: %s" % self.coverage.data.filename) - print("has_arcs: %r" % self.coverage.data.has_arcs()) + print(("path: %s" % self.coverage.data.filename)) + print(("has_arcs: %r" % self.coverage.data.has_arcs())) summary = self.coverage.data.summary(fullpath=True) if summary: filenames = sorted(summary.keys()) - print("\n%d files:" % len(filenames)) + print(("\n%d files:" % len(filenames))) for f in filenames: - print("%s: %d lines" % (f, summary[f])) + print(("%s: %d lines" % (f, summary[f]))) else: print("No data collected") else: --- ./coverage/collector.py (original) +++ ./coverage/collector.py (refactored) @@ -278,7 +278,7 @@ if stats: print("\nCoverage.py tracer stats:") for k in sorted(stats.keys()): - print("%16s: %s" % (k, stats[k])) + print(("%16s: %s" % (k, staRefactoringTool: Refactored ./coverage/config.py RefactoringTool: Refactored ./coverage/control.py RefactoringTool: Refactored ./coverage/data.py ts[k]))) threading.settrace(None) def resume(self): @@ -297,7 +297,7 @@ # If we were measuring branches, then we have to re-build the dict # to show line data. line_data = {} - for f, arcs in self.data.items(): + for f, arcs in list(self.data.items()): line_data[f] = ldf = {} for l1, _ in list(arcs.keys()): if l1: --- ./coverage/config.py (original) +++ ./coverage/config.py (refactored) @@ -71,7 +71,7 @@ def from_args(self, **kwargs): """Read config values from `kwargs`.""" - for k, v in kwargs.items(): + for k, v in list(kwargs.items()): if v is not None: setattr(self, k, v) @@ -166,5 +166,5 @@ """ value_list = cp.get(section, option) - return list(filter(None, value_list.split('\n'))) + return list([_f for _f in value_list.split('\n') if _f]) --- ./coverage/control.py (original) +++ ./coverage/control.py (refactored) @@ -273,7 +273,7 @@ def _should_trace(self, filename, frame): # pylint: disable=E0102 """A logging decorator around the real _should_trace function.""" ret = self._real_should_trace(filename, frame) - print("should_trace: %r -> %r" % (filename, ret)) + print(("should_trace: %r -> %r" % (filename, ret))) return ret def _warn(self, msg): @@ -468,7 +468,7 @@ aliases = None if self.config.paths: aliases = PathAliases(self.file_locator) - for paths in self.config.paths.values(): + for paths in list(self.config.paths.values()): result = paths[0] for pattern in paths[1:]: aliases.add(pattern, result) @@ -656,7 +656,7 @@ ('cwd', os.getcwd()), ('path', sys.path), ('environment', [ - ("%s = %s" % (k, v)) for k, v in os.environ.items() + ("%s = %s" % (k, v)) for k, v in list(os.environ.items()) if re.search("^COV|^PY", k) ]), ] --- ./coverage/data.py (original) +++ ./coverage/data.py (refactored) @@ -101,13 +101,13 @@ def line_data(self): """Return the map from filenames to lists of line numbers executed.""" return dict( - [(f, self.sorted(lmap.keys())) for f, lmap in self.lines.items()] + [(f, self.sorted(list(lmap.keys()))) for f, lmap in list(self.lines.items())] ) def arc_data(self): """Return the map from filenames to lists of line number pairs.""" return dict( - [(f, self.sorted(amap.keys())) for f, amap in self.arcs.items()] + [(f, self.sorted(list(amap.keys()))) for f, amap in list(self.arcs.items())] ) def write_file(self, filename): @@ -159,12 +159,12 @@ # Unpack the 'lines' item. lines = dict([ (f, dict.fromkeys(linenos, None)) - for f, linenos in data.get('lines', {}).items() + for f, linenos in list(data.get('lines', {}).items()) ]) # Unpack the 'arcs' item. arcs = dict([ (f, dict.fromkeys(arcpairs, None)) - for f, arcpairs in data.get('arcs', {}).items() + for f, arcpairs in list(data.get('arcs', {}).items()) ]) except Exception: pass @@ -187,10 +187,10 @@ if f.startswith(localdot): full_path = os.path.join(data_dir, f) new_lines, new_arcs = self._read_file(full_path) - for filename, file_data in new_lines.items(): + for filename, file_data in list(new_lines.items()): filename = aliases.map(filename) self.lines.setdefault(filename, {}).update(file_data) - for fiRefactoringTool: No changes to ./coverage/execfile.py RefactoringTool: No changes to ./coverage/files.py RefactoringTool: No changes to ./coverage/html.py RefactoringTool: Refactored ./coverage/misc.py RefactoringTool: Refactored ./coverage/parser.py RefactoringTool: Refactored ./coverage/phystokens.py RefactoringTool: No changes to ./coverage/report.py RefactoringTool: Refactored ./coverage/results.py RefactoringTool: No changes to ./coverage/summary.py RefactoringTool: No changes to ./coverage/templite.py RefactoringTool: Refactored ./coverage/xmlreport.py lename, file_data in new_arcs.items(): + for filename, file_data in list(new_arcs.items()): filename = aliases.map(filename) self.arcs.setdefault(filename, {}).update(file_data) if f != local: @@ -202,7 +202,7 @@ `line_data` is { filename: { lineno: None, ... }, ...} """ - for filename, linenos in line_data.items(): + for filename, linenos in list(line_data.items()): self.lines.setdefault(filename, {}).update(linenos) def add_arc_data(self, arc_data): @@ -211,7 +211,7 @@ `arc_data` is { filename: { (l1,l2): None, ... }, ...} """ - for filename, arcs in arc_data.items(): + for filename, arcs in list(arc_data.items()): self.arcs.setdefault(filename, {}).update(arcs) def touch_file(self, filename): @@ -253,7 +253,7 @@ filename_fn = lambda f: f else: filename_fn = self.os.path.basename - for filename, lines in self.lines.items(): + for filename, lines in list(self.lines.items()): summ[filename_fn(filename)] = len(lines) return summ --- ./coverage/misc.py (original) +++ ./coverage/misc.py (refactored) @@ -99,7 +99,7 @@ for e in v: self.update(e) elif isinstance(v, dict): - keys = v.keys() + keys = list(v.keys()) for k in sorted(keys): self.update(k) self.update(v[k]) --- ./coverage/parser.py (original) +++ ./coverage/parser.py (refactored) @@ -105,10 +105,10 @@ tokgen = tokenize.generate_tokens(StringIO(self.text).readline) for toktype, ttext, (slineno, _), (elineno, _), ltext in tokgen: if self.show_tokens: # pragma: no cover - print("%10s %5s %-20r %r" % ( + print(("%10s %5s %-20r %r" % ( tokenize.tok_name.get(toktype, toktype), nice_pair((slineno, elineno)), ttext, ltext - )) + ))) if toktype == token.INDENT: indent += 1 elif toktype == token.DEDENT: --- ./coverage/phystokens.py (original) +++ ./coverage/phystokens.py (refactored) @@ -122,7 +122,7 @@ cookie_re = re.compile("coding[:=]\s*([-\w.]+)") # Do this so the detect_encode code we copied will work. - readline = iter(source.splitlines()).next + readline = iter(source.splitlines()).__next__ def _get_normal_name(orig_enc): """Imitates get_normal_name in tokenizer.c.""" --- ./coverage/results.py (original) +++ ./coverage/results.py (refactored) @@ -42,7 +42,7 @@ n_branches = self.total_branches() mba = self.missing_branch_arcs() n_missing_branches = sum( - [len(v) for k,v in mba.items() if k not in self.missing] + [len(v) for k,v in list(mba.items()) if k not in self.missing] ) else: n_branches = n_missing_branches = 0 @@ -109,12 +109,12 @@ def branch_lines(self): """Returns a list of line numbers that have more than one exit.""" exit_counts = self.parser.exit_counts() - return [l1 for l1,count in exit_counts.items() if count > 1] + return [l1 for l1,count in list(exit_counts.items()) if count > 1] def total_branches(self): """How many total branches are there?""" exit_counts = self.parser.exit_counts() - return sum([count for count in exit_counts.values() if count > 1]) + return sum([count for count in list(exit_counts.values()) if count > 1]) def missing_branch_arcs(self): """Return arcs that weren't executed from branch lines. --- ./coverage/xmlreport.py (original) +++ ./coverage/xmlreport.py (refactored) @@ -129,8 +129,8 @@ class_hits = class_lines - len(analysis.missing) if self.arcs: - class_branches = sum([t for t,k in branch_stats.values()]) - RefactoringTool: Files that were modified: RefactoringTool: ./distribute_setup.py RefactoringTool: ./ez_setup.py RefactoringTool: ./setup.py RefactoringTool: ./coverage/annotate.py RefactoringTool: ./coverage/backward.py RefactoringTool: ./coverage/bytecode.py RefactoringTool: ./coverage/cmdline.py RefactoringTool: ./coverage/codeunit.py RefactoringTool: ./coverage/collector.py RefactoringTool: ./coverage/config.py RefactoringTool: ./coverage/control.py RefactoringTool: ./coverage/data.py RefactoringTool: ./coverage/execfile.py RefactoringTool: ./coverage/files.py RefactoringTool: ./coverage/html.py RefactoringTool: ./coverage/misc.py RefactoringTool: ./coverage/parser.py RefactoringTool: ./coverage/phystokens.py RefactoringTool: ./coverage/report.py RefactoringTool: ./coverage/results.py RefactoringTool: ./coverage/summary.py RefactoringTool: ./coverage/templite.py RefactoringTool: ./coverage/xmlreport.py missing_branches = sum([t-k for t,k in branch_stats.values()]) + class_branches = sum([t for t,k in list(branch_stats.values())]) + missing_branches = sum([t-k for t,k in list(branch_stats.values())]) class_br_hits = class_branches - missing_branches else: class_branches = 0.0 ~/build/BUILD/coverage-3.5.2b1 + popd + exit 0 Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.gfTNeX + umask 022 + cd /builddir/build/BUILD + cd coverage-3.5.2b1 + LANG=C + export LANG + unset DISPLAY + /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/coverage copying coverage/report.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/config.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/files.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/results.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/data.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/phystokens.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/parser.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/codeunit.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/xmlreport.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/backward.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/cmdline.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/misc.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/control.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/annotate.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/__main__.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/bytecode.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/summary.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/execfile.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/html.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/__init__.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/templite.py -> build/lib.linux-x86_64-2.7/coverage copying coverage/collector.py -> build/lib.linux-x86_64-2.7/coverage creating build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/jquery.hotkeys.js -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/keybd_closed.png -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/keybd_open.png -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/jquery-1.4.3.min.js -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/jquery.tablesorter.min.js -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/index.html -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/pyfile.html -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/coverage_html.js -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/jquery.isonscreen.js -> build/lib.linux-x86_64-2.7/coverage/htmlfiles copying coverage/htmlfiles/style.css -> build/lib.linux-x86_64-2.7/coverage/htmlfiles running build_ext building 'coverage.tracer' extension creating build/temp.linux-x86_64-2.7 creating build/temp.linux-x86_64-2.7/coverage gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/python2.7 -c coverage/tracer.c -o build/temp.linux-x86_64-2.7/coverage/tracer.o gcc -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-2.7/coverage/tracer.o -L/usr/lib64 -lpython2.7 -o build/lib.linux-x86_64-2.7/coverage/tracer.so ~/build/BUILD/python3-python-coverage-3.5.2-0.3.b1.fc18 ~/build/BUILD/coverage-3.5.2b1 + pushd /builddir/build/BUILD/python3-python-coverage-3.5.2-0.3.b1.fc18 + /usr/bin/python3 setup.py build running build running build_py creating build creating build/lib.linux-x86_64-3.2 creating build/lib.linux-x86_64-3.2/coverage copying coverage/report.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/config.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/files.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/results.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/data.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/phystokens.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/parser.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/codeunit.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/xmlreport.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/backward.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/cmdline.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/misc.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/control.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/annotate.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/__main__.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/bytecode.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/summary.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/execfile.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/html.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/__init__.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/templite.py -> build/lib.linux-x86_64-3.2/coverage copying coverage/collector.py -> build/lib.linux-x86_64-3.2/coverage creating build/lib.linux-x86_64-3.2/coverage/htmlfiles copying coverage/htmlfiles/jquery.hotkeys.js -> build/lib.linux-x86_64-3.2/coverage/htmlfiles copying coverage/htmlfiles/keybd_closed.png -> build/lib.linux-x86_64-3.2/coverage/htmlfiles copying coverage/htmlfiles/keybd_open.png -> build/lib.linux-x86_64-3.2/coverage/htmlfiles copying coverage/htmlfiles/jquery-1.4.3.min.js -> build/lib.linux-x86_64-3.2/coverage/htmlfiles copying coverage/htmlfiles/jquery.tablesorter.min.js -> build/lib.linux-x86_64-3.2/coverage/htmlfiles copying coverage/htmlfiles/index.html -> build/lib.linux-x86_64-3.2/coverage/htmlfiles copying coverage/htmlfiles/pyfile.html -> build/lib.linux-x86_64-3.2/coverage/htmlfiles copying coverage/htmlfiles/coverage_html.js -> build/lib.linux-x86_64-3.2/coverage/htmlfiles copying coverage/htmlfiles/jquery.isonscreen.js -> build/lib.linux-x86_64-3.2/coverage/htmlfiles copying coverage/htmlfiles/style.css -> build/lib.linux-x86_64-3.2/coverage/htmlfiles running build_ext building 'coverage.tracer' extension creating build/temp.linux-x86_64-3.2 creating build/temp.linux-x86_64-3.2/coverage gcc -pthread -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/python3.2mu -c coverage/tracer.c -o build/temp.linux-x86_64-3.2/coverage/tracer.o gcc -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-3.2/coverage/tracer.o -L/usr/lib64 -lpython3.2mu -o build/lib.linux-x86_64-3.2/coverage/tracer.cpython-32mu.so ~/build/BUILD/coverage-3.5.2b1 + popd + exit 0 Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.1uXqZq + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64 '!=' / ']' + rm -rf /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64 ++ dirname /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64 + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64 + cd coverage-3.5.2b1 + LANG=C + export LANG + unset DISPLAY + pushd /builddir/build/BUILD/python3-python-coverage-3.5.2-0.3.b1.fc18 ~/build/BUILD/python3-python-coverage-3.5.2-0.3.b1.fc18 ~/build/BUILD/coverage-3.5.2b1 + /usr/bin/python3 setup.py install -O1 --skip-build --root /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64 running install running install_lib creating /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr creating /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64 creating /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2 creating /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages creating /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/tracer.cpython-32mu.so -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/report.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/config.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/files.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage creating /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.2/coverage/htmlfiles/jquery.hotkeys.js -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.2/coverage/htmlfiles/keybd_closed.png -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.2/coverage/htmlfiles/keybd_open.png -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.2/coverage/htmlfiles/jquery-1.4.3.min.js -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.2/coverage/htmlfiles/jquery.tablesorter.min.js -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.2/coverage/htmlfiles/index.html -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.2/coverage/htmlfiles/pyfile.html -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.2/coverage/htmlfiles/coverage_html.js -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.2/coverage/htmlfiles/jquery.isonscreen.js -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.2/coverage/htmlfiles/style.css -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-3.2/coverage/results.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/data.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/phystokens.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/parser.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/codeunit.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/xmlreport.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/backward.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/cmdline.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/misc.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/control.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/annotate.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/__main__.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/bytecode.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/summary.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/execfile.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/html.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/__init__.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/templite.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage copying build/lib.linux-x86_64-3.2/coverage/collector.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/report.py to report.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/config.py to config.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/files.py to files.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/results.py to results.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/data.py to data.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/phystokens.py to phystokens.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/parser.py to parser.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/codeunit.py to codeunit.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/xmlreport.py to xmlreport.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/backward.py to backward.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/cmdline.py to cmdline.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/misc.py to misc.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/control.py to control.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/annotate.py to annotate.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/__main__.py to __main__.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/bytecode.py to bytecode.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/summary.py to summary.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/execfile.py to execfile.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/html.py to html.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/__init__.py to __init__.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/templite.py to templite.cpython-32.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/collector.py to collector.cpython-32.pyc writing byte-compilation script '/tmp/tmpy1_drq.py' /usr/bin/python3 -O /tmp/tmpy1_drq.py removing /tmp/tmpy1_drq.py running install_egg_info running egg_info writing coverage.egg-info/PKG-INFO writing top-level names to coverage.egg-info/top_level.txt writing dependency_links to coverage.egg-info/dependency_links.txt writing entry points to coverage.egg-info/entry_points.txt reading manifest file 'coverage.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' no previously-included directories found matching 'test' writing manifest file 'coverage.egg-info/SOURCES.txt' Copying coverage.egg-info to /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage-3.5.2b1-py3.2.egg-info running install_scripts Installing coverage script to /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/bin + mv /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64//usr/bin/coverage /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64//usr/bin/python3-coverage ~/build/BUILD/coverage-3.5.2b1 + popd + /usr/bin/python setup.py install -O1 --skip-build --root /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64 running install running install_lib creating /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7 creating /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages creating /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/report.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/config.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/files.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage creating /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/jquery.hotkeys.js -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/keybd_closed.png -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/keybd_open.png -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/jquery-1.4.3.min.js -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/jquery.tablesorter.min.js -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/index.html -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/pyfile.html -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/coverage_html.js -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/jquery.isonscreen.js -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/htmlfiles/style.css -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/htmlfiles copying build/lib.linux-x86_64-2.7/coverage/results.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/data.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/phystokens.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/parser.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/tracer.so -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/codeunit.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/xmlreport.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/backward.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/cmdline.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/misc.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/control.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/annotate.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/__main__.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/bytecode.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/summary.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/execfile.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/html.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/__init__.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/templite.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage copying build/lib.linux-x86_64-2.7/coverage/collector.py -> /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/report.py to report.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/config.py to config.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/files.py to files.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/results.py to results.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/data.py to data.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/phystokens.py to phystokens.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/parser.py to parser.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/codeunit.py to codeunit.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/xmlreport.py to xmlreport.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/backward.py to backward.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/cmdline.py to cmdline.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/misc.py to misc.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/control.py to control.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/annotate.py to annotate.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/__main__.py to __main__.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/bytecode.py to bytecode.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/summary.py to summary.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/execfile.py to execfile.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/html.py to html.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/__init__.py to __init__.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/templite.py to templite.pyc byte-compiling /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/collector.py to collector.pyc writing byte-compilation script '/tmp/tmp9qVa7F.py' /usr/bin/python -O /tmp/tmp9qVa7F.py removing /tmp/tmp9qVa7F.py running install_egg_info running egg_info writing coverage.egg-info/PKG-INFO writing top-level names to coverage.egg-info/top_level.txt writing dependency_links to coverage.egg-info/dependency_links.txt writing entry points to coverage.egg-info/entry_points.txt reading manifest file 'coverage.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' no previously-included directories found matching 'test' writing manifest file 'coverage.egg-info/SOURCES.txt' Copying coverage.egg-info to /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage-3.5.2b1-py2.7.egg-info running install_scripts Installing coverage script to /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/bin + /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/coverage-3.5.2b1 extracting debug info from /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/site-packages/coverage/tracer.so extracting debug info from /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/site-packages/coverage/tracer.cpython-32mu.so 89 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-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python2.7/ using /usr/bin/python2.7 Bytecompiling .py files below /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/lib64/python3.2/ using /usr/bin/python3.2 + /usr/lib/rpm/redhat/brp-python-hardlink + /usr/lib/rpm/redhat/brp-java-repack-jars Processing files: python-coverage-3.5.2-0.3.b1.fc18.x86_64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.gIbmM0 + umask 022 + cd /builddir/build/BUILD + cd coverage-3.5.2b1 + DOCDIR=/builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/share/doc/python-coverage-3.5.2 + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/share/doc/python-coverage-3.5.2 + cp -pr README.txt /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64/usr/share/doc/python-coverage-3.5.2 + exit 0 Finding Provides: /bin/sh -c "/usr/lib/rpm/find-provides | grep -v -E '(tracer.so)' || /bin/true" Finding Requires(interp): Finding Requires(rpmlib): Finding Requires(verify): Finding Requires(pre): Finding Requires(post): Finding Requires(preun): Finding Requires(postun): Finding Requires: /bin/sh -c "/usr/lib/rpm/find-requires | grep -v -E '(tracer.so)' || /bin/true" Provides: python-coverage = 3.5.2-0.3.b1.fc18 python-coverage(x86-64) = 3.5.2-0.3.b1.fc18 Requires(rpmlib): rpmlib(PartialHardlinkSets) <= 4.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(CompressedFileNames) <= 3.0.4-1 Requires: /usr/bin/python libc.so.6()(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libpthread.so.0()(64bit) libpython2.7.so.1.0()(64bit) Processing files: python3-coverage-3.5.2-0.3.b1.fc18.x86_64 Finding Provides: /bin/sh -c "/usr/lib/rpm/find-provides | grep -v -E '(tracer.so)' || /bin/true" Finding Requires(interp): Finding Requires(rpmlib): Finding Requires(verify): Finding Requires(pre): Finding Requires(post): Finding Requires(preun): Finding Requires(postun): Finding Requires: /bin/sh -c "/usr/lib/rpm/find-requires | grep -v -E '(tracer.so)' || /bin/true" Provides: python3-coverage = 3.5.2-0.3.b1.fc18 python3-coverage(x86-64) = 3.5.2-0.3.b1.fc18 tracer.cpython-32mu.so()(64bit) Requires(rpmlib): rpmlib(PartialHardlinkSets) <= 4.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(CompressedFileNames) <= 3.0.4-1 Requires: /usr/bin/python3 libc.so.6()(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libpthread.so.0()(64bit) libpython3.2mu.so.1.0()(64bit) Processing files: python-coverage-debuginfo-3.5.2-0.3.b1.fc18.x86_64 Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64 Wrote: /builddir/build/RPMS/python-coverage-3.5.2-0.3.b1.fc18.x86_64.rpm Wrote: /builddir/build/RPMS/python3-coverage-3.5.2-0.3.b1.fc18.x86_64.rpm Wrote: /builddir/build/RPMS/python-coverage-debuginfo-3.5.2-0.3.b1.fc18.x86_64.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.Q8zkby + umask 022 + cd /builddir/build/BUILD + cd coverage-3.5.2b1 + /usr/bin/rm -rf /builddir/build/BUILDROOT/python-coverage-3.5.2-0.3.b1.fc18.x86_64 + exit 0 Child return code was: 0 LEAVE do -->