Mock Version: 1.2.8 Mock Version: 1.2.8 ENTER do(['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target noarch --nodeps /builddir/build/SPECS/python-argcomplete.spec'], chrootPath='/var/lib/mock/f22-build-3427169-488981/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=86400logger=uid=1000) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target noarch --nodeps /builddir/build/SPECS/python-argcomplete.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 sh: /usr/bin/python: No such file or directory sh: /usr/bin/python: No such file or directory sh: /usr/bin/python: No such file or directory warning: Could not canonicalize hostname: buildvm-11.phx2.fedoraproject.org Building target platforms: noarch Building for target noarch Wrote: /builddir/build/SRPMS/python-argcomplete-0.8.9-2.fc22.src.rpm Child return code was: 0 LEAVE do --> ENTER do(['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target noarch --nodeps /builddir/build/SPECS/python-argcomplete.spec '], chrootPath='/var/lib/mock/f22-build-3427169-488981/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=86400logger=uid=1000) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target noarch --nodeps /builddir/build/SPECS/python-argcomplete.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.AZRd3t + umask 022 + cd /builddir/build/BUILD + cd /builddir/build/BUILD + rm -rf argcomplete-0.8.9 + /usr/bin/gzip -dc /builddir/build/SOURCES/argcomplete-0.8.9.tar.gz + /usr/bin/tar -xf - + STATUS=0 + '[' 0 -ne 0 ']' + cd argcomplete-0.8.9 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + rm -rf /builddir/build/BUILD/python3-python-argcomplete-0.8.9-2.fc22 + cp -a . /builddir/build/BUILD/python3-python-argcomplete-0.8.9-2.fc22 + exit 0 Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.IYm8n1 + umask 022 + cd /builddir/build/BUILD + cd argcomplete-0.8.9 + python setup.py build running build running build_py creating build creating build/lib creating build/lib/argcomplete copying argcomplete/__init__.py -> build/lib/argcomplete copying argcomplete/compat.py -> build/lib/argcomplete copying argcomplete/my_argparse.py -> build/lib/argcomplete copying argcomplete/completers.py -> build/lib/argcomplete copying argcomplete/my_shlex.py -> build/lib/argcomplete running egg_info creating argcomplete.egg-info writing argcomplete.egg-info/PKG-INFO writing top-level names to argcomplete.egg-info/top_level.txt writing dependency_links to argcomplete.egg-info/dependency_links.txt writing manifest file 'argcomplete.egg-info/SOURCES.txt' reading manifest file 'argcomplete.egg-info/SOURCES.txt' writing manifest file 'argcomplete.egg-info/SOURCES.txt' creating build/lib/argcomplete/bash_completion.d copying argcomplete/bash_completion.d/python-argcomplete.sh -> build/lib/argcomplete/bash_completion.d running build_scripts creating build/scripts-2.7 copying and adjusting scripts/python-argcomplete-check-easy-install-script -> build/scripts-2.7 copying and adjusting scripts/activate-global-python-argcomplete -> build/scripts-2.7 copying and adjusting scripts/register-python-argcomplete -> build/scripts-2.7 changing mode of build/scripts-2.7/python-argcomplete-check-easy-install-script from 644 to 755 changing mode of build/scripts-2.7/activate-global-python-argcomplete from 644 to 755 changing mode of build/scripts-2.7/register-python-argcomplete from 644 to 755 + pushd /builddir/build/BUILD/python3-python-argcomplete-0.8.9-2.fc22 ~/build/BUILD/python3-python-argcomplete-0.8.9-2.fc22 ~/build/BUILD/argcomplete-0.8.9 + 2to3 --write --nobackups . 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 ./setup.py RefactoringTool: Refactored ./argcomplete/__init__.py RefactoringTool: Refactored ./argcomplete/compat.py RefactoringTool: Refactored ./argcomplete/completers.py RefactoringTool: No changes to ./argcomplete/my_argparse.py RefactoringTool: Refactored ./argcomplete/my_shlex.py --- ./argcomplete/__init__.py (original) +++ ./argcomplete/__init__.py (refactored) @@ -1,12 +1,13 @@ # Copyright 2012-2015, Andrey Kislyuk and argcomplete contributors. # Licensed under the Apache License. See https://github.com/kislyuk/argcomplete for more info. -from __future__ import absolute_import, division, print_function, unicode_literals + import os, sys, argparse, contextlib, subprocess, re from . import my_shlex as shlex from .compat import USING_PYTHON2, str, sys_encoding, ensure_str, ensure_bytes +import collections _DEBUG = "_ARC_DEBUG" in os.environ @@ -309,7 +310,7 @@ if subcmd_with_aliases: self._display_completions[subcmd_with_aliases] = action.help - completions = [subcmd for subcmd in parser.choices.keys() if subcmd.startswith(cword_prefix)] + completions = [subcmd for subcmd in list(parser.choices.keys()) if subcmd.startswith(cword_prefix)] return completions def get_option_completions(parser, cword_prefix): @@ -350,7 +351,7 @@ debug("Resetting completions because", active_action, "is unsatisfied") self._display_completions = {} completions = [] - if callable(completer): + if isinstance(completer, collections.Callable): completions_from_callable = [c for c in completer( prefix=cword_prefix, action=active_action, parsed_args=parsed_args) if self.validator(c, cword_prefix)] --- ./argcomplete/compat.py (original) +++ ./argcomplete/compat.py (refactored) @@ -1,4 +1,4 @@ -from __future__ import absolute_import, division, print_function, unicode_literals + import os, sys, locale @@ -7,7 +7,7 @@ USING_PYTHON2 = True if sys.version_info < (3, 0) else False if USING_PYTHON2: - str = unicode + str = str else: str = str --- ./argcomplete/completers.py (original) +++ ./argcomplete/completers.py (refactored) @@ -1,7 +1,7 @@ # Copyright 2012-2013, Andrey Kislyuk and argcomplete contributors. # Licensed under the Apache License. See https://github.com/kislyuk/argcomplete for more info. -from __future__ import absolute_import, division, print_function, unicode_literals + import os, sys, subprocess from .compat import USING_PYTHON2, str, sys_encoding --- ./argcomplete/my_shlex.py (original) +++ ./argcomplete/my_shlex.py (refactored) @@ -18,14 +18,14 @@ # Note: cStringIO is not compatible with Unicode try: - from StringIO import StringIO + from io import StringIO except ImportError: from io import StringIO try: - basestring + str except NameError: - basestring = str + str = str __all__ = ["shlex", "split"] @@ -42,7 +42,7 @@ class shlex: "A lexical analyzer class for simple shell-like syntaxes." def __init__(self, instream=None, infile=None, posix=False, punctuation_chars=False): - if isinstance(instream, basestring): + if isinstance(instream, str): instream = StringIO(instream) if instream is not None: self.instream = instream @@ -99,7 +99,7 @@ def push_source(self, newstream, newfile=None): "Push an input source onto the lexer's input source stack." - if isinstance(newstream, basestring): + if isinstance(newstream, str): newstream = StringIO(newstream) self.filestack.appendleft((self.infile, self.instream, self.lineno)) self.infile = newfile @@ -271,7 +271,7 @@ if newfile[0] == '"': newfile = newfile[1:-1] # This implements cpp-like semantics for relative-path inclusion. - if isinstance(self.infile, basestring) and not os.path.isabs(newfile): + if isinstance(self.infile, str) and not os.path.isabs(newfile): newfile = os.path.join(os.path.dirname(self.infile), newfile) return (newfile, open(newfile, "r")) @@ -286,7 +286,7 @@ RefactoringTool: Refactored ./test/test.py RefactoringTool: Files that were modified: RefactoringTool: ./setup.py RefactoringTool: ./argcomplete/__init__.py RefactoringTool: ./argcomplete/compat.py RefactoringTool: ./argcomplete/completers.py RefactoringTool: ./argcomplete/my_argparse.py RefactoringTool: ./argcomplete/my_shlex.py RefactoringTool: ./test/test.py def __iter__(self): return self - def next(self): + def __next__(self): token = self.get_token() if token == self.eof: raise StopIteration --- ./test/test.py (original) +++ ./test/test.py (refactored) @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -from __future__ import absolute_import, division, print_function, unicode_literals + import os, sys, shutil + /usr/bin/python3 setup.py build running build running build_py creating build creating build/lib creating build/lib/argcomplete copying argcomplete/__init__.py -> build/lib/argcomplete copying argcomplete/compat.py -> build/lib/argcomplete copying argcomplete/my_argparse.py -> build/lib/argcomplete copying argcomplete/completers.py -> build/lib/argcomplete copying argcomplete/my_shlex.py -> build/lib/argcomplete running egg_info creating argcomplete.egg-info writing argcomplete.egg-info/PKG-INFO writing dependency_links to argcomplete.egg-info/dependency_links.txt writing top-level names to argcomplete.egg-info/top_level.txt writing manifest file 'argcomplete.egg-info/SOURCES.txt' reading manifest file 'argcomplete.egg-info/SOURCES.txt' writing manifest file 'argcomplete.egg-info/SOURCES.txt' creating build/lib/argcomplete/bash_completion.d copying argcomplete/bash_completion.d/python-argcomplete.sh -> build/lib/argcomplete/bash_completion.d running build_scripts creating build/scripts-3.4 copying and adjusting scripts/python-argcomplete-check-easy-install-script -> build/scripts-3.4 copying and adjusting scripts/activate-global-python-argcomplete -> build/scripts-3.4 copying and adjusting scripts/register-python-argcomplete -> build/scripts-3.4 changing mode of build/scripts-3.4/python-argcomplete-check-easy-install-script from 644 to 755 changing mode of build/scripts-3.4/activate-global-python-argcomplete from 644 to 755 changing mode of build/scripts-3.4/register-python-argcomplete from 644 to 755 ~/build/BUILD/argcomplete-0.8.9 + popd + exit 0 Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.HdMKCD + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch '!=' / ']' + rm -rf /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch ++ dirname /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch + cd argcomplete-0.8.9 ~/build/BUILD/python3-python-argcomplete-0.8.9-2.fc22 ~/build/BUILD/argcomplete-0.8.9 + pushd /builddir/build/BUILD/python3-python-argcomplete-0.8.9-2.fc22 + /usr/bin/python3 setup.py install --skip-build --root /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch running install running install_lib creating /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr creating /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib creating /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4 creating /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4/site-packages creating /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4/site-packages/argcomplete copying build/lib/argcomplete/__init__.py -> /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4/site-packages/argcomplete copying build/lib/argcomplete/compat.py -> /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4/site-packages/argcomplete copying build/lib/argcomplete/my_argparse.py -> /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4/site-packages/argcomplete copying build/lib/argcomplete/completers.py -> /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4/site-packages/argcomplete copying build/lib/argcomplete/my_shlex.py -> /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4/site-packages/argcomplete creating /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4/site-packages/argcomplete/bash_completion.d copying build/lib/argcomplete/bash_completion.d/python-argcomplete.sh -> /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4/site-packages/argcomplete/bash_completion.d byte-compiling /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4/site-packages/argcomplete/__init__.py to __init__.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4/site-packages/argcomplete/compat.py to compat.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4/site-packages/argcomplete/my_argparse.py to my_argparse.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4/site-packages/argcomplete/completers.py to completers.cpython-34.pyc byte-compiling /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4/site-packages/argcomplete/my_shlex.py to my_shlex.cpython-34.pyc running install_egg_info running egg_info writing top-level names to argcomplete.egg-info/top_level.txt writing argcomplete.egg-info/PKG-INFO writing dependency_links to argcomplete.egg-info/dependency_links.txt reading manifest file 'argcomplete.egg-info/SOURCES.txt' writing manifest file 'argcomplete.egg-info/SOURCES.txt' Copying argcomplete.egg-info to /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python3.4/site-packages/argcomplete-0.8.9-py3.4.egg-info running install_scripts creating /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/bin copying build/scripts-3.4/python-argcomplete-check-easy-install-script -> /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/bin copying build/scripts-3.4/activate-global-python-argcomplete -> /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/bin copying build/scripts-3.4/register-python-argcomplete -> /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/bin changing mode of /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/bin/python-argcomplete-check-easy-install-script to 755 changing mode of /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/bin/activate-global-python-argcomplete to 755 changing mode of /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/bin/register-python-argcomplete to 755 + popd ~/build/BUILD/argcomplete-0.8.9 + python setup.py install -O1 --skip-build --root /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch running install running install_lib creating /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7 creating /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7/site-packages creating /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7/site-packages/argcomplete copying build/lib/argcomplete/__init__.py -> /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7/site-packages/argcomplete copying build/lib/argcomplete/compat.py -> /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7/site-packages/argcomplete copying build/lib/argcomplete/my_argparse.py -> /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7/site-packages/argcomplete copying build/lib/argcomplete/completers.py -> /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7/site-packages/argcomplete copying build/lib/argcomplete/my_shlex.py -> /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7/site-packages/argcomplete creating /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7/site-packages/argcomplete/bash_completion.d copying build/lib/argcomplete/bash_completion.d/python-argcomplete.sh -> /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7/site-packages/argcomplete/bash_completion.d byte-compiling /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7/site-packages/argcomplete/__init__.py to __init__.pyc byte-compiling /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7/site-packages/argcomplete/compat.py to compat.pyc byte-compiling /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7/site-packages/argcomplete/my_argparse.py to my_argparse.pyc byte-compiling /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7/site-packages/argcomplete/completers.py to completers.pyc byte-compiling /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7/site-packages/argcomplete/my_shlex.py to my_shlex.pyc writing byte-compilation script '/tmp/tmp5XTCGK.py' /usr/bin/python -O /tmp/tmp5XTCGK.py removing /tmp/tmp5XTCGK.py running install_egg_info running egg_info writing argcomplete.egg-info/PKG-INFO writing top-level names to argcomplete.egg-info/top_level.txt writing dependency_links to argcomplete.egg-info/dependency_links.txt reading manifest file 'argcomplete.egg-info/SOURCES.txt' writing manifest file 'argcomplete.egg-info/SOURCES.txt' Copying argcomplete.egg-info to /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7/site-packages/argcomplete-0.8.9-py2.7.egg-info running install_scripts changing mode of /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/bin/python-argcomplete-check-easy-install-script to 755 changing mode of /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/bin/activate-global-python-argcomplete to 755 changing mode of /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/bin/register-python-argcomplete to 755 + /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/argcomplete-0.8.9 /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/python-argcomplete-0.8.9-2.fc22.noarch/usr/lib/python2.7 using /usr/bin/python2.7 Bytecompiling .py files below /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.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: python-argcomplete-0.8.9-2.fc22.noarch Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.858Z3h + umask 022 + cd /builddir/build/BUILD + cd argcomplete-0.8.9 + DOCDIR=/builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/share/doc/python-argcomplete + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/share/doc/python-argcomplete + cp -pr README.rst /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/share/doc/python-argcomplete + cp -pr LICENSE.rst /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/share/doc/python-argcomplete + exit 0 Provides: python-argcomplete = 0.8.9-2.fc22 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: /usr/bin/python3 python(abi) = 2.7 Processing files: python3-argcomplete-0.8.9-2.fc22.noarch Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.wFMaWW + umask 022 + cd /builddir/build/BUILD + cd argcomplete-0.8.9 + DOCDIR=/builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/share/doc/python3-argcomplete + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/share/doc/python3-argcomplete + cp -pr README.rst /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/share/doc/python3-argcomplete + cp -pr LICENSE.rst /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch/usr/share/doc/python3-argcomplete + exit 0 Provides: python3-argcomplete = 0.8.9-2.fc22 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/python-argcomplete-0.8.9-2.fc22.noarch warning: Could not canonicalize hostname: buildvm-11.phx2.fedoraproject.org Wrote: /builddir/build/RPMS/python-argcomplete-0.8.9-2.fc22.noarch.rpm Wrote: /builddir/build/RPMS/python3-argcomplete-0.8.9-2.fc22.noarch.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.NTWUgC + umask 022 + cd /builddir/build/BUILD + cd argcomplete-0.8.9 + rm -rf /builddir/build/BUILDROOT/python-argcomplete-0.8.9-2.fc22.noarch + exit 0 Child return code was: 0 LEAVE do -->