From e48531e4dbf18d77b39a433cb774e8cd924edfc3 Mon Sep 17 00:00:00 2001 From: ajacoutot Date: Fri, 15 May 2026 16:18:07 +0000 Subject: [PATCH] Remove hotdoc. It was only used by meson tests (optional) and cannot be updated due to the usage of online npm and bower. --- devel/quirks/Makefile | 2 +- devel/quirks/files/Quirks.pm | 4 +- textproc/Makefile | 1 - textproc/hotdoc/Makefile | 44 -- textproc/hotdoc/distinfo | 2 - .../hotdoc/patches/patch-cmark_CMakeLists_txt | 15 - .../patch-cmark_extensions_CMakeLists_txt | 9 - .../patch-hotdoc_extensions_gi_utils_py | 24 - .../patches/patch-hotdoc_utils_utils_py | 22 - textproc/hotdoc/patches/patch-setup_py | 18 - textproc/hotdoc/pkg/DESCR | 2 - textproc/hotdoc/pkg/PLIST | 715 ------------------ 12 files changed, 4 insertions(+), 854 deletions(-) delete mode 100644 textproc/hotdoc/Makefile delete mode 100644 textproc/hotdoc/distinfo delete mode 100644 textproc/hotdoc/patches/patch-cmark_CMakeLists_txt delete mode 100644 textproc/hotdoc/patches/patch-cmark_extensions_CMakeLists_txt delete mode 100644 textproc/hotdoc/patches/patch-hotdoc_extensions_gi_utils_py delete mode 100644 textproc/hotdoc/patches/patch-hotdoc_utils_utils_py delete mode 100644 textproc/hotdoc/patches/patch-setup_py delete mode 100644 textproc/hotdoc/pkg/DESCR delete mode 100644 textproc/hotdoc/pkg/PLIST diff --git a/devel/quirks/Makefile b/devel/quirks/Makefile index dea1836723f..c2379578196 100644 --- a/devel/quirks/Makefile +++ b/devel/quirks/Makefile @@ -3,7 +3,7 @@ CATEGORIES = devel databases DISTFILES = # API.rev -PKGNAME = quirks-7.194 +PKGNAME = quirks-7.195 PKG_ARCH = * MAINTAINER = Marc Espie diff --git a/devel/quirks/files/Quirks.pm b/devel/quirks/files/Quirks.pm index a92929131a8..5abfcc2aa7c 100644 --- a/devel/quirks/files/Quirks.pm +++ b/devel/quirks/files/Quirks.pm @@ -1,7 +1,7 @@ #! /usr/bin/perl # ex:ts=8 sw=4: -# $OpenBSD: Quirks.pm,v 1.1799 2026/04/15 13:15:55 sthen Exp $ +# $OpenBSD: Quirks.pm,v 1.1800 2026/05/15 16:18:08 ajacoutot Exp $ # # Copyright (c) 2009 Marc Espie # @@ -1066,6 +1066,8 @@ setup_obsolete_reason( 6 => 'nix', 46 => 'exim', 46 => 'exim-eximon', +# 8.0 + 1 => 'hotdoc', ); # these should be pkgnames, there was some hope that pkg_add might later diff --git a/textproc/Makefile b/textproc/Makefile index b323c12ca0c..24662a9202c 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -92,7 +92,6 @@ SUBDIR += hfst SUBDIR += hgrep SUBDIR += highlight - SUBDIR += hotdoc SUBDIR += html SUBDIR += html-xml-utils SUBDIR += htmlq diff --git a/textproc/hotdoc/Makefile b/textproc/hotdoc/Makefile deleted file mode 100644 index 088f9541d0e..00000000000 --- a/textproc/hotdoc/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -COMMENT= documentation tool micro-framework - -MODPY_DISTV= 0.17.4 -DISTNAME= hotdoc-${MODPY_DISTV} -REVISION= 2 - -CATEGORIES= textproc - -HOMEPAGE= https://hotdoc.github.io/ - -MAINTAINER= Antoine Jacoutot - -# LGPLv2.1+ - -PERMIT_PACKAGE= Yes - -WANTLIB += gio-2.0 glib-2.0 gobject-2.0 intl json-glib-1.0 xml2 - -MODULES= lang/python - -MODPY_PI= Yes -MODPY_PYBUILD= setuptools -MODPY_TEST_LINK_SO= Yes - -BUILD_DEPENDS= devel/cmake/core - -LIB_DEPENDS= devel/json-glib \ - textproc/libxml - -RUN_DEPENDS= devel/py-appdirs \ - devel/py-dbus-deviation \ - devel/py-decorator \ - devel/py-pkgconfig \ - devel/py-schema \ - devel/py-toposort \ - devel/py-wheezy.template \ - math/py-networkx>=2.6.2 \ - textproc/py-cchardet \ - textproc/py-lxml \ - textproc/py-yaml - -MODCMAKE_POLICY_VERSION_OVERRIDE = Yes - -.include diff --git a/textproc/hotdoc/distinfo b/textproc/hotdoc/distinfo deleted file mode 100644 index 105cc4149e0..00000000000 --- a/textproc/hotdoc/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (hotdoc-0.17.4.tar.gz) = xNXf9kfwOqh6HS0GA10oGe3QmbkWNeOy7jkIKTV66fw= -SIZE (hotdoc-0.17.4.tar.gz) = 1957809 diff --git a/textproc/hotdoc/patches/patch-cmark_CMakeLists_txt b/textproc/hotdoc/patches/patch-cmark_CMakeLists_txt deleted file mode 100644 index e89621584bf..00000000000 --- a/textproc/hotdoc/patches/patch-cmark_CMakeLists_txt +++ /dev/null @@ -1,15 +0,0 @@ -Index: cmark/CMakeLists.txt ---- cmark/CMakeLists.txt.orig -+++ cmark/CMakeLists.txt -@@ -1,9 +1,9 @@ --cmake_minimum_required(VERSION 2.8.9) -+cmake_minimum_required(VERSION 2.8...3.10) - - # prevent ugly developer warnings because version is set directly, not through project() - # it should be redone properly by using VERSION in project() if on CMake 3.x - if(CMAKE_MAJOR_VERSION GREATER 2) -- cmake_policy(SET CMP0048 OLD) -+ cmake_policy(SET CMP0048 NEW) - endif() - - project(cmark) diff --git a/textproc/hotdoc/patches/patch-cmark_extensions_CMakeLists_txt b/textproc/hotdoc/patches/patch-cmark_extensions_CMakeLists_txt deleted file mode 100644 index 347f90c4ec0..00000000000 --- a/textproc/hotdoc/patches/patch-cmark_extensions_CMakeLists_txt +++ /dev/null @@ -1,9 +0,0 @@ -Index: cmark/extensions/CMakeLists.txt ---- cmark/extensions/CMakeLists.txt.orig -+++ cmark/extensions/CMakeLists.txt -@@ -1,4 +1,4 @@ --cmake_minimum_required(VERSION 2.8) -+cmake_minimum_required(VERSION 2.8...3.10) - set(LIBRARY "cmarkextensions") - set(LIBRARY_SOURCES - core-extensions.c diff --git a/textproc/hotdoc/patches/patch-hotdoc_extensions_gi_utils_py b/textproc/hotdoc/patches/patch-hotdoc_extensions_gi_utils_py deleted file mode 100644 index 00ff7f3b61d..00000000000 --- a/textproc/hotdoc/patches/patch-hotdoc_extensions_gi_utils_py +++ /dev/null @@ -1,24 +0,0 @@ -From 51043c3ef889e36c8232280581598b875073ded7 Mon Sep 17 00:00:00 2001 -From: Eli Schwartz -Date: Mon, 28 Apr 2025 17:40:21 -0400 -Subject: [PATCH] avoid third-party backports dependency on sufficiently new - python - -Index: hotdoc/extensions/gi/utils.py ---- hotdoc/extensions/gi/utils.py.orig -+++ hotdoc/extensions/gi/utils.py -@@ -1,9 +1,13 @@ - import os - from collections import namedtuple - import pathlib -+import sys - import traceback - --from backports.entry_points_selectable import entry_points -+if sys.version_info >= (3, 10): -+ from importlib.metadata import entry_points -+else: -+ from backports.entry_points_selectable import entry_points - - from hotdoc.core.links import Link - from hotdoc.utils.loggable import info, debug diff --git a/textproc/hotdoc/patches/patch-hotdoc_utils_utils_py b/textproc/hotdoc/patches/patch-hotdoc_utils_utils_py deleted file mode 100644 index 8a79ff5f31d..00000000000 --- a/textproc/hotdoc/patches/patch-hotdoc_utils_utils_py +++ /dev/null @@ -1,22 +0,0 @@ -From 51043c3ef889e36c8232280581598b875073ded7 Mon Sep 17 00:00:00 2001 -From: Eli Schwartz -Date: Mon, 28 Apr 2025 17:40:21 -0400 -Subject: [PATCH] avoid third-party backports dependency on sufficiently new - python - -Index: hotdoc/utils/utils.py ---- hotdoc/utils/utils.py.orig -+++ hotdoc/utils/utils.py -@@ -35,7 +35,11 @@ import importlib.util - from urllib.request import urlretrieve - from pathlib import Path - --from backports.entry_points_selectable import entry_points -+if sys.version_info >= (3, 10): -+ from importlib.metadata import entry_points -+else: -+ from backports.entry_points_selectable import entry_points -+ - try: - import importlib.metadata as meta - except ImportError: diff --git a/textproc/hotdoc/patches/patch-setup_py b/textproc/hotdoc/patches/patch-setup_py deleted file mode 100644 index 67760022438..00000000000 --- a/textproc/hotdoc/patches/patch-setup_py +++ /dev/null @@ -1,18 +0,0 @@ -From 51043c3ef889e36c8232280581598b875073ded7 Mon Sep 17 00:00:00 2001 -From: Eli Schwartz -Date: Mon, 28 Apr 2025 17:40:21 -0400 -Subject: [PATCH] avoid third-party backports dependency on sufficiently new - python - -Index: setup.py ---- setup.py.orig -+++ setup.py -@@ -300,7 +300,7 @@ INSTALL_REQUIRES = [ - 'wheezy.template', - 'toposort>=1.4', - 'importlib_metadata; python_version<"3.10"', -- 'backports.entry_points_selectable', -+ 'backports.entry_points_selectable; python_version<"3.10"', - ] - - # dbus-deviation requires sphinx, which requires python 3.5 diff --git a/textproc/hotdoc/pkg/DESCR b/textproc/hotdoc/pkg/DESCR deleted file mode 100644 index 452036622af..00000000000 --- a/textproc/hotdoc/pkg/DESCR +++ /dev/null @@ -1,2 +0,0 @@ -Hotdoc is a documentation micro-framework. It provides an interface for -extensions to plug upon, along with some base objects (formatters, ...). diff --git a/textproc/hotdoc/pkg/PLIST b/textproc/hotdoc/pkg/PLIST deleted file mode 100644 index bd8232986e3..00000000000 --- a/textproc/hotdoc/pkg/PLIST +++ /dev/null @@ -1,715 +0,0 @@ -bin/hotdoc -bin/hotdoc_dep_printer -lib/python${MODPY_VERSION}/site-packages/hotdoc/ -lib/python${MODPY_VERSION}/site-packages/hotdoc-${MODPY_DISTV}.dist-info/ -lib/python${MODPY_VERSION}/site-packages/hotdoc-${MODPY_DISTV}.dist-info/METADATA -lib/python${MODPY_VERSION}/site-packages/hotdoc-${MODPY_DISTV}.dist-info/RECORD -lib/python${MODPY_VERSION}/site-packages/hotdoc-${MODPY_DISTV}.dist-info/WHEEL -lib/python${MODPY_VERSION}/site-packages/hotdoc-${MODPY_DISTV}.dist-info/entry_points.txt -lib/python${MODPY_VERSION}/site-packages/hotdoc-${MODPY_DISTV}.dist-info/licenses/ -lib/python${MODPY_VERSION}/site-packages/hotdoc-${MODPY_DISTV}.dist-info/licenses/COPYING -lib/python${MODPY_VERSION}/site-packages/hotdoc-${MODPY_DISTV}.dist-info/top_level.txt -lib/python${MODPY_VERSION}/site-packages/hotdoc/VERSION.txt -lib/python${MODPY_VERSION}/site-packages/hotdoc/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/${MODPY_PYCACHE}hotdoc_dep_printer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/${MODPY_PYCACHE}hotdoc_dep_printer.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/${MODPY_PYCACHE}run_hotdoc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/${MODPY_PYCACHE}run_hotdoc.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}comment.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}comment.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}config.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}config.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}database.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}database.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}exceptions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}exceptions.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}extension.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}formatter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}formatter.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}inclusions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}inclusions.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}links.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}links.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}project.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}project.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}symbols.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}symbols.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}tree.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/${MODPY_PYCACHE}tree.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/assets/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/assets/API_index.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/assets/c.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/assets/css.escape.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/assets/home.png -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/assets/index.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/assets/js.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/assets/python.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/assets/style.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/comment.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/config.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/database.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/exceptions.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/extension.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/formatter.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/inclusions.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/links.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/project.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/symbols.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/API_index.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/action_prototype.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/alias.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/base_page.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/base_symbol.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/callable.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/callable_prototype.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/class.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/constant.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/enum.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/enum_member.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/field_detail.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/hierarchy.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/inline_code.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/interface.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/link.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/member_list.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/multi_return_value.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/navbar_center.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/page.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/parameter_detail.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/parameters.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/property.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/property_prototype.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/raw_code.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/return_item.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/simple_symbol.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/struct.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/templates/symbol_wrapper.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}test_config_parser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}test_config_parser.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}test_database.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}test_database.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}test_doc_tree.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}test_doc_tree.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}test_inclusions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}test_inclusions.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}test_links.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}test_links.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}test_page.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}test_page.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}test_project.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/${MODPY_PYCACHE}test_project.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/test_config_parser.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/test_database.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/test_doc_tree.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/test_inclusions.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/test_links.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/test_page.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tests/test_project.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/core/tree.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/${MODPY_PYCACHE}c_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/${MODPY_PYCACHE}c_extension.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/c_extension.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/clang/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/clang/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/clang/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/clang/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/clang/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/clang/${MODPY_PYCACHE}cindex.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/clang/${MODPY_PYCACHE}cindex.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/clang/${MODPY_PYCACHE}enumerations.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/clang/${MODPY_PYCACHE}enumerations.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/clang/cindex.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/clang/enumerations.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/c/utils.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/check_since_markers/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/check_since_markers/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/check_since_markers/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/check_since_markers/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/check_since_markers/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/check_since_markers/${MODPY_PYCACHE}check_since_markers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/check_since_markers/${MODPY_PYCACHE}check_since_markers.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/check_since_markers/check_since_markers.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/comment_on_github/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/comment_on_github/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/comment_on_github/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/comment_on_github/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/comment_on_github/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/comment_on_github/${MODPY_PYCACHE}comment_on_github_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/comment_on_github/${MODPY_PYCACHE}comment_on_github_extension.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/comment_on_github/comment_on_github_extension.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/comment_on_github/scripts/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/comment_on_github/scripts/github-comment-loader.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/comment_on_github/templates/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/comment_on_github/templates/github_comments.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/dbus/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/dbus/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/dbus/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/dbus/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/dbus/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/dbus/${MODPY_PYCACHE}dbus_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/dbus/${MODPY_PYCACHE}dbus_extension.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/dbus/dbus_extension.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/devhelp/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/devhelp/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/devhelp/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/devhelp/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/devhelp/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/devhelp/${MODPY_PYCACHE}devhelp_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/devhelp/${MODPY_PYCACHE}devhelp_extension.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/devhelp/devhelp.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/devhelp/devhelp_extension.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/edit_on_github/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/edit_on_github/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/edit_on_github/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/edit_on_github/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/edit_on_github/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/edit_on_github/${MODPY_PYCACHE}edit_on_github_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/edit_on_github/${MODPY_PYCACHE}edit_on_github_extension.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/edit_on_github/edit_on_github_extension.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/feedgen/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/feedgen/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/feedgen/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/feedgen/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/feedgen/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/feedgen/${MODPY_PYCACHE}feedgen_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/feedgen/${MODPY_PYCACHE}feedgen_extension.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/feedgen/feedgen_extension.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}annotation_parser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}annotation_parser.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}flags.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}flags.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}formatter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}formatter.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}gi_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}gi_extension.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}language.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}language.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}node_cache.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}node_cache.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}symbols.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}symbols.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}test_gi_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}test_gi_extension.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/annotation_parser.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/flags.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/formatter.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/gi_extension.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/html_templates/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/html_templates/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/html_templates/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/html_templates/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/html_templates/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/html_templates/gi_annotations.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/html_templates/gi_flags.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/html_templates/javascript_action_prototype.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/html_templates/javascript_prototype.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/html_templates/python_action_prototype.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/html_templates/python_compound.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/html_templates/python_compound_summary.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/html_templates/python_prototype.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/html_templates/symbol_language_wrapper.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/language.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/languages/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/languages/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/languages/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/languages/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/languages/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/languages/${MODPY_PYCACHE}c.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/languages/${MODPY_PYCACHE}c.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/languages/${MODPY_PYCACHE}javascript.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/languages/${MODPY_PYCACHE}javascript.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/languages/${MODPY_PYCACHE}python.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/languages/${MODPY_PYCACHE}python.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/languages/c.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/languages/javascript.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/languages/python.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/node_cache.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/symbols.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/test_gi_extension.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/transition_scripts/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/transition_scripts/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/transition_scripts/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/transition_scripts/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/transition_scripts/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/transition_scripts/translate_sections.sh -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gi/utils.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/git_upload/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/git_upload/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/git_upload/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/git_upload/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/git_upload/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/git_upload/${MODPY_PYCACHE}git_upload_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/git_upload/${MODPY_PYCACHE}git_upload_extension.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/git_upload/git_upload_extension.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gst/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gst/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gst/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gst/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gst/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gst/${MODPY_PYCACHE}gst_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gst/${MODPY_PYCACHE}gst_extension.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/gst/gst_extension.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/${MODPY_PYCACHE}license_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/${MODPY_PYCACHE}license_extension.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/data/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/data/CC-BY-SAv4.0.png -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/data/CC-BY-SAv4.0.txt -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/data/CC0-1.0.png -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/data/CC0-1.0.txt -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/data/GPLv3.txt -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/data/MIT.txt -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/html_templates/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/html_templates/copyrights.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/html_templates/license.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/license/license_extension.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/search/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/search/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/search/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/search/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/search/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/search/${MODPY_PYCACHE}search_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/search/${MODPY_PYCACHE}search_extension.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/search/search.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/search/search_extension.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/search/stopwords.txt -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/search/trie.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/${MODPY_PYCACHE}syntax_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/${MODPY_PYCACHE}syntax_extension.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-abap.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-abap.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-actionscript.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-actionscript.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-apacheconf.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-apacheconf.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-apl.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-apl.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-applescript.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-applescript.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-asciidoc.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-asciidoc.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-aspnet.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-aspnet.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-autohotkey.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-autohotkey.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-autoit.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-autoit.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-bash.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-bash.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-basic.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-basic.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-batch.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-batch.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-bison.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-bison.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-brainfuck.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-brainfuck.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-bro.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-bro.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-c.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-c.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-clike.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-clike.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-coffeescript.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-coffeescript.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-core.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-core.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-cpp.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-cpp.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-crystal.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-crystal.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-csharp.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-csharp.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-css-extras.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-css-extras.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-css.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-css.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-d.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-d.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-dart.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-dart.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-diff.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-diff.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-docker.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-docker.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-eiffel.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-eiffel.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-elixir.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-elixir.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-erlang.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-erlang.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-fortran.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-fortran.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-fsharp.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-fsharp.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-gherkin.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-gherkin.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-git.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-git.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-glsl.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-glsl.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-go.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-go.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-groovy.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-groovy.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-haml.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-haml.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-handlebars.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-handlebars.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-haskell.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-haskell.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-haxe.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-haxe.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-http.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-http.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-icon.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-icon.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-inform7.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-inform7.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-ini.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-ini.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-j.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-j.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-jade.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-jade.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-java.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-java.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-javascript.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-javascript.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-json.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-json.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-jsx.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-jsx.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-julia.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-julia.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-keyman.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-keyman.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-kotlin.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-kotlin.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-latex.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-latex.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-less.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-less.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-lolcode.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-lolcode.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-lua.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-lua.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-makefile.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-makefile.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-markdown.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-markdown.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-markup.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-markup.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-matlab.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-matlab.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-mel.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-mel.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-mizar.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-mizar.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-monkey.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-monkey.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-nasm.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-nasm.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-nginx.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-nginx.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-nim.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-nim.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-nix.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-nix.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-nsis.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-nsis.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-objectivec.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-objectivec.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-ocaml.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-ocaml.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-oz.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-oz.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-parigp.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-parigp.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-parser.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-parser.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-pascal.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-pascal.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-perl.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-perl.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-php-extras.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-php-extras.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-php.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-php.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-powershell.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-powershell.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-processing.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-processing.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-prolog.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-prolog.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-protobuf.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-protobuf.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-puppet.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-puppet.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-pure.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-pure.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-python.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-python.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-q.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-q.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-qore.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-qore.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-r.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-r.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-rest.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-rest.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-rip.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-rip.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-roboconf.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-roboconf.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-ruby.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-ruby.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-rust.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-rust.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-sas.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-sas.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-sass.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-sass.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-scala.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-scala.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-scheme.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-scheme.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-scss.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-scss.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-smalltalk.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-smalltalk.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-smarty.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-smarty.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-sql.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-sql.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-stylus.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-stylus.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-swift.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-swift.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-tcl.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-tcl.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-textile.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-textile.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-twig.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-twig.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-typescript.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-typescript.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-verilog.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-verilog.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-vhdl.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-vhdl.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-vim.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-vim.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-wiki.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-wiki.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-yaml.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/components/prism-yaml.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/plugins/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/plugins/autoloader/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/plugins/autoloader/prism-autoloader.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/plugins/keep-markup/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/plugins/keep-markup/prism-keep-markup.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/themes/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/themes/prism-coy.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/themes/prism-dark.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/themes/prism-funky.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/themes/prism-okaidia.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/themes/prism-solarizedlight.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/themes/prism-tomorrow.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/themes/prism-twilight.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism/themes/prism.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/prism_autoloader_path_override.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/syntax_highlighting/syntax_extension.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/tags/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/tags/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/tags/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/tags/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/tags/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/tags/${MODPY_PYCACHE}tag_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/tags/${MODPY_PYCACHE}tag_extension.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/extensions/tags/tag_extension.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/css/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/css/bootstrap-toc.min.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/css/custom_bootstrap.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/css/dark-frontend.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/css/dark-sitenav.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/css/frontend.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/css/jquery.mCustomScrollbar.min.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/css/light-frontend.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/css/light-sitenav.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/css/sitenav.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/fonts/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/fonts/glyphicons-halflings-regular.eot -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/fonts/glyphicons-halflings-regular.svg -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/fonts/glyphicons-halflings-regular.ttf -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/fonts/glyphicons-halflings-regular.woff -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/fonts/glyphicons-halflings-regular.woff2 -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/images/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/images/home.svg -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/anchor.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/bootstrap-toc.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/bootstrap.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/compare-versions.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/full-width.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/isotope.pkgd.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/jquery.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/jquery.mCustomScrollbar.concat.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/jquery.touchSwipe.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/language_switching.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/lines_around_headings.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/mustache.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/navbar_offset_scroller.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/navigation.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/scrollspy.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/search/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/search.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/search/enable_search.css -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/styleswitcher.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/tag_filtering.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/typeahead.jquery.min.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/js/utils.js -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/base_page.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/brand-logo.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/enum_member.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/extra_head.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/field_detail.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/footer.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/member_list.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/multi_return_value.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/navbar.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/navbar_center.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/navbar_links.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/page_content.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/parameter_detail.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/parameters.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/return_item.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/scripts.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/site_navigation.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/stylesheets.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/templates/subpages.html -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_bootstrap_theme/dist/theme.json -lib/python${MODPY_VERSION}/site-packages/hotdoc/hotdoc_dep_printer.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/${MODPY_PYCACHE}cmark_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/${MODPY_PYCACHE}cmark_utils.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/${MODPY_PYCACHE}gtk_doc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/${MODPY_PYCACHE}gtk_doc.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/${MODPY_PYCACHE}sitemap.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/${MODPY_PYCACHE}sitemap.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/c_comment_scanner/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/c_comment_scanner/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/c_comment_scanner/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/c_comment_scanner/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/c_comment_scanner/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -@so lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/c_comment_scanner/c_comment_scanner.${MODPY_PYC_MAGIC_TAG}so -@so lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/cmark.${MODPY_PYC_MAGIC_TAG}so -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/cmark_utils.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/gtk_doc.py -@so lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/search.${MODPY_PYC_MAGIC_TAG}so -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/sitemap.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/tests/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/tests/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/tests/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/tests/${MODPY_PYCACHE}test_cmark_parser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/tests/${MODPY_PYCACHE}test_cmark_parser.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/tests/${MODPY_PYCACHE}test_standalone_parser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/tests/${MODPY_PYCACHE}test_standalone_parser.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/tests/test_cmark_parser.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/parsers/tests/test_standalone_parser.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/run_hotdoc.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/tests/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/tests/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/tests/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/tests/${MODPY_PYCACHE}fixtures.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/tests/${MODPY_PYCACHE}fixtures.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/tests/${MODPY_PYCACHE}test_hotdoc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/tests/${MODPY_PYCACHE}test_hotdoc.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/tests/fixtures.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/tests/test_hotdoc.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/${MODPY_PYCACHE}configurable.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/${MODPY_PYCACHE}configurable.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/${MODPY_PYCACHE}loggable.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/${MODPY_PYCACHE}loggable.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/${MODPY_PYCACHE}setup_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/${MODPY_PYCACHE}setup_utils.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/${MODPY_PYCACHE}signals.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/${MODPY_PYCACHE}signals.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/configurable.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/hotdoc.m4 -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/hotdoc.mk -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/loggable.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/setup_utils.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/signals.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/tests/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/tests/__init__.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/tests/${MODPY_PYCACHE}/ -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/tests/${MODPY_PYCACHE}test_loggable.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/tests/${MODPY_PYCACHE}test_loggable.${MODPY_PYC_MAGIC_TAG}pyc -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/tests/test_loggable.py -lib/python${MODPY_VERSION}/site-packages/hotdoc/utils/utils.py