Source: gnocchi
Version: 4.5.0-3
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20230726 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> make[1]: Entering directory '/<<PKGBUILDDIR>>'
> make[1]: pyversions: No such file or directory
> py3versions: no X-Python3-Version in control file, using supported versions
> set -e ; for pyvers in 3.11; do \
>       python$pyvers setup.py install --install-layout=deb --root 
> /<<PKGBUILDDIR>>/debian/tmp; \
> done
> running install
> /usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py:66: 
> SetuptoolsDeprecationWarning: setup.py install is deprecated.
> !!
> 
>         
> ********************************************************************************
>         Please avoid running ``setup.py`` directly.
>         Instead, use pypa/build, pypa/installer or other
>         standards-based tools.
> 
>         See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html 
> for details.
>         
> ********************************************************************************
> 
> !!
>   self.initialize_options()
> running build
> running build_py
> creating build
> creating build/lib
> creating build/lib/gnocchi
> copying gnocchi/calendar.py -> build/lib/gnocchi
> copying gnocchi/utils.py -> build/lib/gnocchi
> copying gnocchi/chef.py -> build/lib/gnocchi
> copying gnocchi/archive_policy.py -> build/lib/gnocchi
> copying gnocchi/__init__.py -> build/lib/gnocchi
> copying gnocchi/amqp1d.py -> build/lib/gnocchi
> copying gnocchi/json.py -> build/lib/gnocchi
> copying gnocchi/gendoc.py -> build/lib/gnocchi
> copying gnocchi/exceptions.py -> build/lib/gnocchi
> copying gnocchi/statsd.py -> build/lib/gnocchi
> copying gnocchi/carbonara.py -> build/lib/gnocchi
> copying gnocchi/service.py -> build/lib/gnocchi
> copying gnocchi/opts.py -> build/lib/gnocchi
> copying gnocchi/resource_type.py -> build/lib/gnocchi
> running egg_info
> creating gnocchi.egg-info
> writing gnocchi.egg-info/PKG-INFO
> writing dependency_links to gnocchi.egg-info/dependency_links.txt
> writing entry points to gnocchi.egg-info/entry_points.txt
> writing requirements to gnocchi.egg-info/requires.txt
> writing top-level names to gnocchi.egg-info/top_level.txt
> writing manifest file 'gnocchi.egg-info/SOURCES.txt'
> reading manifest file 'gnocchi.egg-info/SOURCES.txt'
> reading manifest template 'MANIFEST.in'
> warning: no previously-included files found matching '.gitignore'
> warning: no previously-included files found matching '.github'
> adding license file 'LICENSE'
> writing manifest file 'gnocchi.egg-info/SOURCES.txt'
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.cli' is absent from the `packages` configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.cli' as an importable package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.cli' is explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.cli' to be distributed and are
>         already explicitly excluding 'gnocchi.cli' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.common' is absent from the `packages` configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.common' as an importable package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.common' is explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.common' to be distributed and are
>         already explicitly excluding 'gnocchi.common' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.incoming' is absent from the `packages` configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.incoming' as an importable package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.incoming' is explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.incoming' to be distributed and are
>         already explicitly excluding 'gnocchi.incoming' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.indexer' is absent from the `packages` configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.indexer' as an importable package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.indexer' is explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.indexer' to be distributed and are
>         already explicitly excluding 'gnocchi.indexer' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.indexer.alembic' is absent from the `packages` configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.indexer.alembic' as an importable 
> package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.indexer.alembic' is 
> explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.indexer.alembic' to be distributed and are
>         already explicitly excluding 'gnocchi.indexer.alembic' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.indexer.alembic.versions' is absent from the `packages` 
> configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.indexer.alembic.versions' as an importable 
> package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.indexer.alembic.versions' is 
> explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.indexer.alembic.versions' to be 
> distributed and are
>         already explicitly excluding 'gnocchi.indexer.alembic.versions' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.rest' is absent from the `packages` configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.rest' as an importable package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.rest' is explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.rest' to be distributed and are
>         already explicitly excluding 'gnocchi.rest' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.rest.aggregates' is absent from the `packages` configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.rest.aggregates' as an importable 
> package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.rest.aggregates' is 
> explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.rest.aggregates' to be distributed and are
>         already explicitly excluding 'gnocchi.rest.aggregates' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.rest.prometheus' is absent from the `packages` configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.rest.prometheus' as an importable 
> package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.rest.prometheus' is 
> explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.rest.prometheus' to be distributed and are
>         already explicitly excluding 'gnocchi.rest.prometheus' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.storage' is absent from the `packages` configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.storage' as an importable package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.storage' is explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.storage' to be distributed and are
>         already explicitly excluding 'gnocchi.storage' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.tests' is absent from the `packages` configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.tests' as an importable package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.tests' is explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.tests' to be distributed and are
>         already explicitly excluding 'gnocchi.tests' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.tests.functional' is absent from the `packages` 
> configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.tests.functional' as an importable 
> package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.tests.functional' is 
> explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.tests.functional' to be distributed and are
>         already explicitly excluding 'gnocchi.tests.functional' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.tests.functional.gabbits' is absent from the `packages` 
> configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.tests.functional.gabbits' as an importable 
> package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.tests.functional.gabbits' is 
> explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.tests.functional.gabbits' to be 
> distributed and are
>         already explicitly excluding 'gnocchi.tests.functional.gabbits' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.tests.functional.gabbits.prometheus_fixtures' is absent from 
> the `packages` configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 
> 'gnocchi.tests.functional.gabbits.prometheus_fixtures' as an importable 
> package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 
> 'gnocchi.tests.functional.gabbits.prometheus_fixtures' is explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 
> 'gnocchi.tests.functional.gabbits.prometheus_fixtures' to be distributed and 
> are
>         already explicitly excluding 
> 'gnocchi.tests.functional.gabbits.prometheus_fixtures' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.tests.functional_live' is absent from the `packages` 
> configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.tests.functional_live' as an importable 
> package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.tests.functional_live' is 
> explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.tests.functional_live' to be distributed 
> and are
>         already explicitly excluding 'gnocchi.tests.functional_live' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.tests.functional_live.gabbits' is absent from the `packages` 
> configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.tests.functional_live.gabbits' as an 
> importable package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 
> 'gnocchi.tests.functional_live.gabbits' is explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.tests.functional_live.gabbits' to be 
> distributed and are
>         already explicitly excluding 'gnocchi.tests.functional_live.gabbits' 
> via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.tests.indexer' is absent from the `packages` configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.tests.indexer' as an importable 
> package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.tests.indexer' is explicitly 
> added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.tests.indexer' to be distributed and are
>         already explicitly excluding 'gnocchi.tests.indexer' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> /usr/lib/python3/dist-packages/setuptools/command/build_py.py:201: _Warning: 
> Package 'gnocchi.tests.indexer.sqlalchemy' is absent from the `packages` 
> configuration.
> !!
> 
>         
> ********************************************************************************
>         ############################
>         # Package would be ignored #
>         ############################
>         Python recognizes 'gnocchi.tests.indexer.sqlalchemy' as an importable 
> package[^1],
>         but it is absent from setuptools' `packages` configuration.
> 
>         This leads to an ambiguous overall configuration. If you want to 
> distribute this
>         package, please make sure that 'gnocchi.tests.indexer.sqlalchemy' is 
> explicitly added
>         to the `packages` configuration field.
> 
>         Alternatively, you can also rely on setuptools' discovery methods
>         (for example by using `find_namespace_packages(...)`/`find_namespace:`
>         instead of `find_packages(...)`/`find:`).
> 
>         You can read more about "package discovery" on setuptools 
> documentation page:
> 
>         - 
> https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
> 
>         If you don't want 'gnocchi.tests.indexer.sqlalchemy' to be 
> distributed and are
>         already explicitly excluding 'gnocchi.tests.indexer.sqlalchemy' via
>         `find_namespace_packages(...)/find_namespace` or 
> `find_packages(...)/find`,
>         you can try to use `exclude_package_data`, or 
> `include-package-data=False` in
>         combination with a more fine grained `package-data` configuration.
> 
>         You can read more about "package data files" on setuptools 
> documentation page:
> 
>         - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
> 
> 
>         [^1]: For Python, any directory (with suitable naming) can be 
> imported,
>               even if it does not contain any `.py` files.
>               On the other hand, currently there is no concept of package data
>               directory, all directories are treated like packages.
>         
> ********************************************************************************
> 
> !!
>   check.warn(importable)
> copying gnocchi/gnocchi-config-generator.conf -> build/lib/gnocchi
> copying gnocchi/gnocchi-policy-generator.conf -> build/lib/gnocchi
> creating build/lib/gnocchi/cli
> copying gnocchi/cli/__init__.py -> build/lib/gnocchi/cli
> copying gnocchi/cli/amqp1d.py -> build/lib/gnocchi/cli
> copying gnocchi/cli/api.py -> build/lib/gnocchi/cli
> copying gnocchi/cli/injector.py -> build/lib/gnocchi/cli
> copying gnocchi/cli/manage.py -> build/lib/gnocchi/cli
> copying gnocchi/cli/metricd.py -> build/lib/gnocchi/cli
> copying gnocchi/cli/statsd.py -> build/lib/gnocchi/cli
> creating build/lib/gnocchi/common
> copying gnocchi/common/__init__.py -> build/lib/gnocchi/common
> copying gnocchi/common/ceph.py -> build/lib/gnocchi/common
> copying gnocchi/common/redis.py -> build/lib/gnocchi/common
> copying gnocchi/common/s3.py -> build/lib/gnocchi/common
> copying gnocchi/common/swift.py -> build/lib/gnocchi/common
> creating build/lib/gnocchi/incoming
> copying gnocchi/incoming/__init__.py -> build/lib/gnocchi/incoming
> copying gnocchi/incoming/ceph.py -> build/lib/gnocchi/incoming
> copying gnocchi/incoming/file.py -> build/lib/gnocchi/incoming
> copying gnocchi/incoming/redis.py -> build/lib/gnocchi/incoming
> copying gnocchi/incoming/s3.py -> build/lib/gnocchi/incoming
> copying gnocchi/incoming/swift.py -> build/lib/gnocchi/incoming
> creating build/lib/gnocchi/indexer
> copying gnocchi/indexer/__init__.py -> build/lib/gnocchi/indexer
> copying gnocchi/indexer/sqlalchemy.py -> build/lib/gnocchi/indexer
> copying gnocchi/indexer/sqlalchemy_base.py -> build/lib/gnocchi/indexer
> copying gnocchi/indexer/sqlalchemy_extension.py -> build/lib/gnocchi/indexer
> copying gnocchi/indexer/sqlalchemy_legacy_resources.py -> 
> build/lib/gnocchi/indexer
> copying gnocchi/indexer/sqlalchemy_types.py -> build/lib/gnocchi/indexer
> creating build/lib/gnocchi/indexer/alembic
> copying gnocchi/indexer/alembic/alembic.ini -> 
> build/lib/gnocchi/indexer/alembic
> copying gnocchi/indexer/alembic/env.py -> build/lib/gnocchi/indexer/alembic
> copying gnocchi/indexer/alembic/script.py.mako -> 
> build/lib/gnocchi/indexer/alembic
> creating build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/04eba72e4f90_rename_ck_started_before_ended.py
>  -> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/0718ed97e5b3_add_tablename_to_resource_type.py
>  -> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/1c2c61ac1f4c_add_original_resource_id_column.py
>  -> build/lib/gnocchi/indexer/alembic/versions
> copying gnocchi/indexer/alembic/versions/1c98ac614015_initial_base.py -> 
> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/1e1a63d3d186_original_resource_id_not_null.py
>  -> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/1f21cbdd6bc2_allow_volume_display_name_to_be_null.py
>  -> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/27d2a1d205ff_add_updating_resource_type_states.py
>  -> build/lib/gnocchi/indexer/alembic/versions
> copying gnocchi/indexer/alembic/versions/2e0b912062d1_drop_useless_enum.py -> 
> build/lib/gnocchi/indexer/alembic/versions
> copying gnocchi/indexer/alembic/versions/34c517bcc2dd_shorter_foreign_key.py 
> -> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/3901f5ea2b8e_create_instance_disk_and_instance_.py
>  -> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/397987e38570_no_more_slash_and_reencode.py 
> -> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/39b7d449d46a_create_metric_status_column.py 
> -> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/40c6aae14c3f_ck_started_before_ended.py -> 
> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/42ee7f3e25f8_alter_flavorid_from_int_to_string.py
>  -> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/469b308577a9_allow_image_ref_to_be_null.py 
> -> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/5c4f93e5bb4_mysql_float_to_timestamp.py -> 
> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/62a8dfb139bb_change_uuid_to_string.py -> 
> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/7e6f9d542f8b_resource_type_state_column.py 
> -> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/828c16f70cce_create_resource_type_table.py 
> -> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/8f376189b9eb_migrate_legacy_resources_to_db.py
>  -> build/lib/gnocchi/indexer/alembic/versions
> copying gnocchi/indexer/alembic/versions/9901e5ea4b6e_create_host.py -> 
> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/a54c57ada3f5_removes_useless_indexes.py -> 
> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/aba5a217ca9b_merge_created_in_creator.py -> 
> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/c62df18bf4ee_add_unit_column_for_metric.py 
> -> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/d24877c22ab0_add_attributes_to_resource_type.py
>  -> build/lib/gnocchi/indexer/alembic/versions
> copying gnocchi/indexer/alembic/versions/ed9c6ddc5c35_fix_host_foreign_key.py 
> -> build/lib/gnocchi/indexer/alembic/versions
> copying gnocchi/indexer/alembic/versions/f7d44b47928_uuid_to_binary.py -> 
> build/lib/gnocchi/indexer/alembic/versions
> copying 
> gnocchi/indexer/alembic/versions/ffc7bbeec0b0_migrate_legacy_resources_to_db2.py
>  -> build/lib/gnocchi/indexer/alembic/versions
> creating build/lib/gnocchi/rest
> copying gnocchi/rest/__init__.py -> build/lib/gnocchi/rest
> copying gnocchi/rest/api-paste.ini -> build/lib/gnocchi/rest
> copying gnocchi/rest/api.py -> build/lib/gnocchi/rest
> copying gnocchi/rest/app.py -> build/lib/gnocchi/rest
> copying gnocchi/rest/auth_helper.py -> build/lib/gnocchi/rest
> copying gnocchi/rest/exceptions.py -> build/lib/gnocchi/rest
> copying gnocchi/rest/http_proxy_to_wsgi.py -> build/lib/gnocchi/rest
> copying gnocchi/rest/influxdb.py -> build/lib/gnocchi/rest
> copying gnocchi/rest/policies.py -> build/lib/gnocchi/rest
> copying gnocchi/rest/policy.json -> build/lib/gnocchi/rest
> copying gnocchi/rest/policy.yaml -> build/lib/gnocchi/rest
> copying gnocchi/rest/wsgi.py -> build/lib/gnocchi/rest
> creating build/lib/gnocchi/rest/aggregates
> copying gnocchi/rest/aggregates/__init__.py -> 
> build/lib/gnocchi/rest/aggregates
> copying gnocchi/rest/aggregates/api.py -> build/lib/gnocchi/rest/aggregates
> copying gnocchi/rest/aggregates/exceptions.py -> 
> build/lib/gnocchi/rest/aggregates
> copying gnocchi/rest/aggregates/operations.py -> 
> build/lib/gnocchi/rest/aggregates
> copying gnocchi/rest/aggregates/processor.py -> 
> build/lib/gnocchi/rest/aggregates
> creating build/lib/gnocchi/rest/prometheus
> copying gnocchi/rest/prometheus/README -> build/lib/gnocchi/rest/prometheus
> copying gnocchi/rest/prometheus/__init__.py -> 
> build/lib/gnocchi/rest/prometheus
> copying gnocchi/rest/prometheus/remote.proto -> 
> build/lib/gnocchi/rest/prometheus
> copying gnocchi/rest/prometheus/remote_pb2.py -> 
> build/lib/gnocchi/rest/prometheus
> creating build/lib/gnocchi/storage
> copying gnocchi/storage/__init__.py -> build/lib/gnocchi/storage
> copying gnocchi/storage/ceph.py -> build/lib/gnocchi/storage
> copying gnocchi/storage/file.py -> build/lib/gnocchi/storage
> copying gnocchi/storage/redis.py -> build/lib/gnocchi/storage
> copying gnocchi/storage/s3.py -> build/lib/gnocchi/storage
> copying gnocchi/storage/swift.py -> build/lib/gnocchi/storage
> creating build/lib/gnocchi/tests
> copying gnocchi/tests/__init__.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/base.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_aggregates.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_amqp1d.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_archive_policy.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_bin.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_calendar.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_carbonara.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_chef.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_incoming.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_indexer.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_influxdb.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_injector.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_measures_grouper.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_rest.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_statsd.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_storage.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/test_utils.py -> build/lib/gnocchi/tests
> copying gnocchi/tests/utils.py -> build/lib/gnocchi/tests
> creating build/lib/gnocchi/tests/functional
> copying gnocchi/tests/functional/__init__.py -> 
> build/lib/gnocchi/tests/functional
> copying gnocchi/tests/functional/fixtures.py -> 
> build/lib/gnocchi/tests/functional
> copying gnocchi/tests/functional/test_gabbi.py -> 
> build/lib/gnocchi/tests/functional
> creating build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/.metric-derived.yaml.swp -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/aggregates-with-metric-ids.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/aggregates-with-resources.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/aggregation.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/archive-rule.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/archive.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/async.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/base.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/batch-measures.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/cors.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/create-metric-with-resource-id.yaml 
> -> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/healthcheck.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/history.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/http-proxy-to-wsgi.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/influxdb.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/metric-derived.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/metric-granularity.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/metric-list.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/metric-timestamp-format.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/metric.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/pagination.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/prometheus.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/resample-calendar.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/resource-aggregation.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/resource-type.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/resource.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/search-metric.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/search.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> copying gnocchi/tests/functional/gabbits/transformedids.yaml -> 
> build/lib/gnocchi/tests/functional/gabbits
> creating build/lib/gnocchi/tests/functional/gabbits/prometheus_fixtures
> copying 
> gnocchi/tests/functional/gabbits/prometheus_fixtures/031b586e-ebe1-4737-812e-cf0ddf26f5ad.dump
>  -> build/lib/gnocchi/tests/functional/gabbits/prometheus_fixtures
> copying 
> gnocchi/tests/functional/gabbits/prometheus_fixtures/1ea8f6f7-eebe-49d5-8276-ceb2d56c5ba4.dump
>  -> build/lib/gnocchi/tests/functional/gabbits/prometheus_fixtures
> copying 
> gnocchi/tests/functional/gabbits/prometheus_fixtures/a0c06674-a5ef-4621-883c-e94880a2de02.dump
>  -> build/lib/gnocchi/tests/functional/gabbits/prometheus_fixtures
> creating build/lib/gnocchi/tests/functional_live
> copying gnocchi/tests/functional_live/__init__.py -> 
> build/lib/gnocchi/tests/functional_live
> copying gnocchi/tests/functional_live/test_gabbi_live.py -> 
> build/lib/gnocchi/tests/functional_live
> creating build/lib/gnocchi/tests/functional_live/gabbits
> copying gnocchi/tests/functional_live/gabbits/live.yaml -> 
> build/lib/gnocchi/tests/functional_live/gabbits
> copying gnocchi/tests/functional_live/gabbits/search-resource.yaml -> 
> build/lib/gnocchi/tests/functional_live/gabbits
> creating build/lib/gnocchi/tests/indexer
> copying gnocchi/tests/indexer/__init__.py -> build/lib/gnocchi/tests/indexer
> creating build/lib/gnocchi/tests/indexer/sqlalchemy
> copying gnocchi/tests/indexer/sqlalchemy/__init__.py -> 
> build/lib/gnocchi/tests/indexer/sqlalchemy
> copying gnocchi/tests/indexer/sqlalchemy/test_migrations.py -> 
> build/lib/gnocchi/tests/indexer/sqlalchemy
> copying gnocchi/tests/indexer/sqlalchemy/test_utils.py -> 
> build/lib/gnocchi/tests/indexer/sqlalchemy
> running install_lib
> creating /<<PKGBUILDDIR>>/debian/tmp
> creating /<<PKGBUILDDIR>>/debian/tmp/usr
> creating /<<PKGBUILDDIR>>/debian/tmp/usr/lib
> creating /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3
> creating /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages
> creating /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/incoming
> copying build/lib/gnocchi/incoming/swift.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/incoming
> copying build/lib/gnocchi/incoming/__init__.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/incoming
> copying build/lib/gnocchi/incoming/s3.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/incoming
> copying build/lib/gnocchi/incoming/redis.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/incoming
> copying build/lib/gnocchi/incoming/file.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/incoming
> copying build/lib/gnocchi/incoming/ceph.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/incoming
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/test_amqp1d.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/test_bin.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/test_chef.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/utils.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/test_injector.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/test_rest.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/__init__.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/test_carbonara.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/test_calendar.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/test_archive_policy.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/indexer
> copying build/lib/gnocchi/tests/indexer/__init__.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/indexer
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/indexer/sqlalchemy
> copying build/lib/gnocchi/tests/indexer/sqlalchemy/__init__.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/indexer/sqlalchemy
> copying build/lib/gnocchi/tests/indexer/sqlalchemy/test_utils.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/indexer/sqlalchemy
> copying build/lib/gnocchi/tests/indexer/sqlalchemy/test_migrations.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/indexer/sqlalchemy
> copying build/lib/gnocchi/tests/test_measures_grouper.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/test_incoming.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/base.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/test_utils.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/test_aggregates.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional_live
> copying build/lib/gnocchi/tests/functional_live/test_gabbi_live.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional_live
> copying build/lib/gnocchi/tests/functional_live/__init__.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional_live
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional_live/gabbits
> copying build/lib/gnocchi/tests/functional_live/gabbits/live.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional_live/gabbits
> copying build/lib/gnocchi/tests/functional_live/gabbits/search-resource.yaml 
> -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional_live/gabbits
> copying build/lib/gnocchi/tests/test_statsd.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional
> copying build/lib/gnocchi/tests/functional/fixtures.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional
> copying build/lib/gnocchi/tests/functional/__init__.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/archive.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/.metric-derived.yaml.swp 
> -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/prometheus.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/search-metric.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/async.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/resource.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/transformedids.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/search.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/http-proxy-to-wsgi.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying 
> build/lib/gnocchi/tests/functional/gabbits/aggregates-with-resources.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/batch-measures.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/metric-granularity.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/metric.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/cors.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits/prometheus_fixtures
> copying 
> build/lib/gnocchi/tests/functional/gabbits/prometheus_fixtures/a0c06674-a5ef-4621-883c-e94880a2de02.dump
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits/prometheus_fixtures
> copying 
> build/lib/gnocchi/tests/functional/gabbits/prometheus_fixtures/1ea8f6f7-eebe-49d5-8276-ceb2d56c5ba4.dump
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits/prometheus_fixtures
> copying 
> build/lib/gnocchi/tests/functional/gabbits/prometheus_fixtures/031b586e-ebe1-4737-812e-cf0ddf26f5ad.dump
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits/prometheus_fixtures
> copying 
> build/lib/gnocchi/tests/functional/gabbits/metric-timestamp-format.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/resource-type.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/healthcheck.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/influxdb.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/base.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying 
> build/lib/gnocchi/tests/functional/gabbits/aggregates-with-metric-ids.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/metric-list.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying 
> build/lib/gnocchi/tests/functional/gabbits/create-metric-with-resource-id.yaml
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/history.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/archive-rule.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/metric-derived.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/aggregation.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/resample-calendar.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/resource-aggregation.yaml 
> -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/gabbits/pagination.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/gabbits
> copying build/lib/gnocchi/tests/functional/test_gabbi.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional
> copying build/lib/gnocchi/tests/test_influxdb.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/test_indexer.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/tests/test_storage.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests
> copying build/lib/gnocchi/calendar.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> copying build/lib/gnocchi/utils.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> copying build/lib/gnocchi/chef.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> copying build/lib/gnocchi/archive_policy.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> copying build/lib/gnocchi/__init__.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> copying build/lib/gnocchi/amqp1d.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> copying build/lib/gnocchi/json.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> creating /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/cli
> copying build/lib/gnocchi/cli/metricd.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/cli
> copying build/lib/gnocchi/cli/__init__.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/cli
> copying build/lib/gnocchi/cli/amqp1d.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/cli
> copying build/lib/gnocchi/cli/api.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/cli
> copying build/lib/gnocchi/cli/statsd.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/cli
> copying build/lib/gnocchi/cli/injector.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/cli
> copying build/lib/gnocchi/cli/manage.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/cli
> copying build/lib/gnocchi/gnocchi-config-generator.conf -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/common
> copying build/lib/gnocchi/common/swift.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/common
> copying build/lib/gnocchi/common/__init__.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/common
> copying build/lib/gnocchi/common/s3.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/common
> copying build/lib/gnocchi/common/redis.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/common
> copying build/lib/gnocchi/common/ceph.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/common
> copying build/lib/gnocchi/gendoc.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> copying build/lib/gnocchi/exceptions.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer
> copying build/lib/gnocchi/indexer/sqlalchemy_extension.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer
> copying build/lib/gnocchi/indexer/sqlalchemy_legacy_resources.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer
> copying build/lib/gnocchi/indexer/sqlalchemy_base.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer
> copying build/lib/gnocchi/indexer/__init__.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer
> copying build/lib/gnocchi/indexer/sqlalchemy_types.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic
> copying build/lib/gnocchi/indexer/alembic/script.py.mako -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic
> copying build/lib/gnocchi/indexer/alembic/env.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic
> copying build/lib/gnocchi/indexer/alembic/alembic.ini -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/ffc7bbeec0b0_migrate_legacy_resources_to_db2.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/1e1a63d3d186_original_resource_id_not_null.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/d24877c22ab0_add_attributes_to_resource_type.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/34c517bcc2dd_shorter_foreign_key.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/397987e38570_no_more_slash_and_reencode.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/1f21cbdd6bc2_allow_volume_display_name_to_be_null.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/5c4f93e5bb4_mysql_float_to_timestamp.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/04eba72e4f90_rename_ck_started_before_ended.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/c62df18bf4ee_add_unit_column_for_metric.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/3901f5ea2b8e_create_instance_disk_and_instance_.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/aba5a217ca9b_merge_created_in_creator.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/8f376189b9eb_migrate_legacy_resources_to_db.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/828c16f70cce_create_resource_type_table.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/27d2a1d205ff_add_updating_resource_type_states.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/7e6f9d542f8b_resource_type_state_column.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/0718ed97e5b3_add_tablename_to_resource_type.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/f7d44b47928_uuid_to_binary.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/40c6aae14c3f_ck_started_before_ended.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/62a8dfb139bb_change_uuid_to_string.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/a54c57ada3f5_removes_useless_indexes.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/469b308577a9_allow_image_ref_to_be_null.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/9901e5ea4b6e_create_host.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/1c2c61ac1f4c_add_original_resource_id_column.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/39b7d449d46a_create_metric_status_column.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/42ee7f3e25f8_alter_flavorid_from_int_to_string.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/1c98ac614015_initial_base.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/2e0b912062d1_drop_useless_enum.py 
> -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying 
> build/lib/gnocchi/indexer/alembic/versions/ed9c6ddc5c35_fix_host_foreign_key.py
>  -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions
> copying build/lib/gnocchi/indexer/sqlalchemy.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer
> copying build/lib/gnocchi/statsd.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> copying build/lib/gnocchi/carbonara.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> copying build/lib/gnocchi/service.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> copying build/lib/gnocchi/opts.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> copying build/lib/gnocchi/resource_type.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> copying build/lib/gnocchi/gnocchi-policy-generator.conf -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/storage
> copying build/lib/gnocchi/storage/swift.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/storage
> copying build/lib/gnocchi/storage/__init__.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/storage
> copying build/lib/gnocchi/storage/s3.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/storage
> copying build/lib/gnocchi/storage/redis.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/storage
> copying build/lib/gnocchi/storage/file.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/storage
> copying build/lib/gnocchi/storage/ceph.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/storage
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest
> copying build/lib/gnocchi/rest/app.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest
> copying build/lib/gnocchi/rest/auth_helper.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest
> copying build/lib/gnocchi/rest/policies.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/aggregates
> copying build/lib/gnocchi/rest/aggregates/__init__.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/aggregates
> copying build/lib/gnocchi/rest/aggregates/api.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/aggregates
> copying build/lib/gnocchi/rest/aggregates/operations.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/aggregates
> copying build/lib/gnocchi/rest/aggregates/exceptions.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/aggregates
> copying build/lib/gnocchi/rest/aggregates/processor.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/aggregates
> copying build/lib/gnocchi/rest/policy.yaml -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest
> copying build/lib/gnocchi/rest/influxdb.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest
> copying build/lib/gnocchi/rest/__init__.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest
> copying build/lib/gnocchi/rest/api.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest
> creating 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/prometheus
> copying build/lib/gnocchi/rest/prometheus/__init__.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/prometheus
> copying build/lib/gnocchi/rest/prometheus/README -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/prometheus
> copying build/lib/gnocchi/rest/prometheus/remote_pb2.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/prometheus
> copying build/lib/gnocchi/rest/prometheus/remote.proto -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/prometheus
> copying build/lib/gnocchi/rest/api-paste.ini -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest
> copying build/lib/gnocchi/rest/exceptions.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest
> copying build/lib/gnocchi/rest/policy.json -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest
> copying build/lib/gnocchi/rest/http_proxy_to_wsgi.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest
> copying build/lib/gnocchi/rest/wsgi.py -> 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/incoming/swift.py
>  to swift.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/incoming/__init__.py
>  to __init__.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/incoming/s3.py
>  to s3.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/incoming/redis.py
>  to redis.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/incoming/file.py
>  to file.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/incoming/ceph.py
>  to ceph.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_amqp1d.py
>  to test_amqp1d.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_bin.py
>  to test_bin.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_chef.py
>  to test_chef.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/utils.py
>  to utils.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_injector.py
>  to test_injector.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_rest.py
>  to test_rest.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/__init__.py
>  to __init__.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_carbonara.py
>  to test_carbonara.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_calendar.py
>  to test_calendar.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_archive_policy.py
>  to test_archive_policy.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/indexer/__init__.py
>  to __init__.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/indexer/sqlalchemy/__init__.py
>  to __init__.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/indexer/sqlalchemy/test_utils.py
>  to test_utils.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/indexer/sqlalchemy/test_migrations.py
>  to test_migrations.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_measures_grouper.py
>  to test_measures_grouper.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_incoming.py
>  to test_incoming.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/base.py
>  to base.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_utils.py
>  to test_utils.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_aggregates.py
>  to test_aggregates.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional_live/test_gabbi_live.py
>  to test_gabbi_live.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional_live/__init__.py
>  to __init__.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_statsd.py
>  to test_statsd.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/fixtures.py
>  to fixtures.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/__init__.py
>  to __init__.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/functional/test_gabbi.py
>  to test_gabbi.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_influxdb.py
>  to test_influxdb.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_indexer.py
>  to test_indexer.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/tests/test_storage.py
>  to test_storage.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/calendar.py 
> to calendar.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/utils.py to 
> utils.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/chef.py to 
> chef.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/archive_policy.py
>  to archive_policy.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/__init__.py 
> to __init__.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/amqp1d.py 
> to amqp1d.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/json.py to 
> json.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/cli/metricd.py
>  to metricd.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/cli/__init__.py
>  to __init__.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/cli/amqp1d.py
>  to amqp1d.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/cli/api.py 
> to api.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/cli/statsd.py
>  to statsd.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/cli/injector.py
>  to injector.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/cli/manage.py
>  to manage.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/common/swift.py
>  to swift.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/common/__init__.py
>  to __init__.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/common/s3.py
>  to s3.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/common/redis.py
>  to redis.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/common/ceph.py
>  to ceph.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/gendoc.py 
> to gendoc.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/exceptions.py
>  to exceptions.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/sqlalchemy_extension.py
>  to sqlalchemy_extension.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/sqlalchemy_legacy_resources.py
>  to sqlalchemy_legacy_resources.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/sqlalchemy_base.py
>  to sqlalchemy_base.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/__init__.py
>  to __init__.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/sqlalchemy_types.py
>  to sqlalchemy_types.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/env.py
>  to env.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/ffc7bbeec0b0_migrate_legacy_resources_to_db2.py
>  to ffc7bbeec0b0_migrate_legacy_resources_to_db2.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/1e1a63d3d186_original_resource_id_not_null.py
>  to 1e1a63d3d186_original_resource_id_not_null.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/d24877c22ab0_add_attributes_to_resource_type.py
>  to d24877c22ab0_add_attributes_to_resource_type.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/34c517bcc2dd_shorter_foreign_key.py
>  to 34c517bcc2dd_shorter_foreign_key.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/397987e38570_no_more_slash_and_reencode.py
>  to 397987e38570_no_more_slash_and_reencode.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/1f21cbdd6bc2_allow_volume_display_name_to_be_null.py
>  to 1f21cbdd6bc2_allow_volume_display_name_to_be_null.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/5c4f93e5bb4_mysql_float_to_timestamp.py
>  to 5c4f93e5bb4_mysql_float_to_timestamp.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/04eba72e4f90_rename_ck_started_before_ended.py
>  to 04eba72e4f90_rename_ck_started_before_ended.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/c62df18bf4ee_add_unit_column_for_metric.py
>  to c62df18bf4ee_add_unit_column_for_metric.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/3901f5ea2b8e_create_instance_disk_and_instance_.py
>  to 3901f5ea2b8e_create_instance_disk_and_instance_.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/aba5a217ca9b_merge_created_in_creator.py
>  to aba5a217ca9b_merge_created_in_creator.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/8f376189b9eb_migrate_legacy_resources_to_db.py
>  to 8f376189b9eb_migrate_legacy_resources_to_db.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/828c16f70cce_create_resource_type_table.py
>  to 828c16f70cce_create_resource_type_table.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/27d2a1d205ff_add_updating_resource_type_states.py
>  to 27d2a1d205ff_add_updating_resource_type_states.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/7e6f9d542f8b_resource_type_state_column.py
>  to 7e6f9d542f8b_resource_type_state_column.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/0718ed97e5b3_add_tablename_to_resource_type.py
>  to 0718ed97e5b3_add_tablename_to_resource_type.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/f7d44b47928_uuid_to_binary.py
>  to f7d44b47928_uuid_to_binary.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/40c6aae14c3f_ck_started_before_ended.py
>  to 40c6aae14c3f_ck_started_before_ended.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/62a8dfb139bb_change_uuid_to_string.py
>  to 62a8dfb139bb_change_uuid_to_string.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/a54c57ada3f5_removes_useless_indexes.py
>  to a54c57ada3f5_removes_useless_indexes.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/469b308577a9_allow_image_ref_to_be_null.py
>  to 469b308577a9_allow_image_ref_to_be_null.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/9901e5ea4b6e_create_host.py
>  to 9901e5ea4b6e_create_host.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/1c2c61ac1f4c_add_original_resource_id_column.py
>  to 1c2c61ac1f4c_add_original_resource_id_column.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/39b7d449d46a_create_metric_status_column.py
>  to 39b7d449d46a_create_metric_status_column.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/42ee7f3e25f8_alter_flavorid_from_int_to_string.py
>  to 42ee7f3e25f8_alter_flavorid_from_int_to_string.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/1c98ac614015_initial_base.py
>  to 1c98ac614015_initial_base.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/2e0b912062d1_drop_useless_enum.py
>  to 2e0b912062d1_drop_useless_enum.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/alembic/versions/ed9c6ddc5c35_fix_host_foreign_key.py
>  to ed9c6ddc5c35_fix_host_foreign_key.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/indexer/sqlalchemy.py
>  to sqlalchemy.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/statsd.py 
> to statsd.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/carbonara.py
>  to carbonara.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/service.py 
> to service.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/opts.py to 
> opts.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/resource_type.py
>  to resource_type.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/storage/swift.py
>  to swift.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/storage/__init__.py
>  to __init__.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/storage/s3.py
>  to s3.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/storage/redis.py
>  to redis.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/storage/file.py
>  to file.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/storage/ceph.py
>  to ceph.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/app.py 
> to app.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/auth_helper.py
>  to auth_helper.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/policies.py
>  to policies.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/aggregates/__init__.py
>  to __init__.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/aggregates/api.py
>  to api.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/aggregates/operations.py
>  to operations.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/aggregates/exceptions.py
>  to exceptions.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/aggregates/processor.py
>  to processor.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/influxdb.py
>  to influxdb.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/__init__.py
>  to __init__.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/api.py 
> to api.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/prometheus/__init__.py
>  to __init__.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/prometheus/remote_pb2.py
>  to remote_pb2.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/exceptions.py
>  to exceptions.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/http_proxy_to_wsgi.py
>  to http_proxy_to_wsgi.cpython-311.pyc
> byte-compiling 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi/rest/wsgi.py
>  to wsgi.cpython-311.pyc
> running install_egg_info
> Copying gnocchi.egg-info to 
> /<<PKGBUILDDIR>>/debian/tmp/usr/lib/python3/dist-packages/gnocchi-4.5.0.egg-info
> Skipping SOURCES.txt
> running install_scripts
> Installing gnocchi-amqpd script to /<<PKGBUILDDIR>>/debian/tmp/usr/bin
> Installing gnocchi-change-sack-size script to 
> /<<PKGBUILDDIR>>/debian/tmp/usr/bin
> Installing gnocchi-config-generator script to 
> /<<PKGBUILDDIR>>/debian/tmp/usr/bin
> Installing gnocchi-injector script to /<<PKGBUILDDIR>>/debian/tmp/usr/bin
> Installing gnocchi-metricd script to /<<PKGBUILDDIR>>/debian/tmp/usr/bin
> Installing gnocchi-statsd script to /<<PKGBUILDDIR>>/debian/tmp/usr/bin
> Installing gnocchi-upgrade script to /<<PKGBUILDDIR>>/debian/tmp/usr/bin
> Traceback (most recent call last):
>   File "/<<PKGBUILDDIR>>/setup.py", line 95, in <module>
>     setuptools.setup(
>   File "/usr/lib/python3/dist-packages/setuptools/__init__.py", line 107, in 
> setup
>     return distutils.core.setup(**attrs)
>            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
>   File "/usr/lib/python3/dist-packages/setuptools/_distutils/core.py", line 
> 185, in setup
>     return run_commands(dist)
>            ^^^^^^^^^^^^^^^^^^
>   File "/usr/lib/python3/dist-packages/setuptools/_distutils/core.py", line 
> 201, in run_commands
>     dist.run_commands()
>   File "/usr/lib/python3/dist-packages/setuptools/_distutils/dist.py", line 
> 969, in run_commands
>     self.run_command(cmd)
>   File "/usr/lib/python3/dist-packages/setuptools/dist.py", line 1234, in 
> run_command
>     super().run_command(command)
>   File "/usr/lib/python3/dist-packages/setuptools/_distutils/dist.py", line 
> 988, in run_command
>     cmd_obj.run()
>   File "/usr/lib/python3/dist-packages/setuptools/command/install.py", line 
> 74, in run
>     return orig.install.run(self)
>            ^^^^^^^^^^^^^^^^^^^^^^
>   File 
> "/usr/lib/python3/dist-packages/setuptools/_distutils/command/install.py", 
> line 708, in run
>     self.run_command(cmd_name)
>   File "/usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py", line 
> 318, in run_command
>     self.distribution.run_command(command)
>   File "/usr/lib/python3/dist-packages/setuptools/dist.py", line 1234, in 
> run_command
>     super().run_command(command)
>   File "/usr/lib/python3/dist-packages/setuptools/_distutils/dist.py", line 
> 988, in run_command
>     cmd_obj.run()
>   File "/<<PKGBUILDDIR>>/setup.py", line 66, in run
>     script = easy_install.get_script_header("", executable) + SCRIPT_TMPL
>              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> AttributeError: module 'setuptools.command.easy_install' has no attribute 
> 'get_script_header'
> make[1]: *** [debian/rules:37: override_dh_install] Error 1


The full build log is available from:
http://qa-logs.debian.net/2023/07/26/gnocchi_4.5.0-3_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20230726;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20230726&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.

Reply via email to