aprsd 3.3.2__tar.gz → 3.3.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {aprsd-3.3.2 → aprsd-3.3.4}/ChangeLog +11 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/PKG-INFO +1 -1
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/conf/common.py +1 -1
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/main.py +16 -1
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd.egg-info/PKG-INFO +1 -1
- aprsd-3.3.4/aprsd.egg-info/pbr.json +1 -0
- aprsd-3.3.2/aprsd.egg-info/pbr.json +0 -1
- {aprsd-3.3.2 → aprsd-3.3.4}/.coveragerc +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/.github/workflows/codeql.yml +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/.github/workflows/manual_build.yml +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/.github/workflows/master-build.yml +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/.github/workflows/python.yml +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/.github/workflows/release_build.yml +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/.pre-commit-config.yaml +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/.readthedocs.yaml +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/AUTHORS +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/INSTALL.txt +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/LICENSE +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/MANIFEST.in +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/Makefile +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/README.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/cli_helper.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/client.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/clients/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/clients/aprsis.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/clients/fake.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/clients/kiss.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/cmds/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/cmds/completion.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/cmds/dev.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/cmds/fetch_stats.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/cmds/healthcheck.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/cmds/list_plugins.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/cmds/listen.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/cmds/send_message.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/cmds/server.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/cmds/webchat.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/conf/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/conf/client.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/conf/log.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/conf/opts.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/conf/plugin_common.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/conf/plugin_email.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/exception.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/log/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/log/log.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/messaging.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/packets/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/packets/core.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/packets/packet_list.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/packets/seen_list.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/packets/tracker.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/packets/watch_list.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/plugin.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/plugin_utils.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/plugins/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/plugins/email.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/plugins/fortune.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/plugins/location.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/plugins/notify.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/plugins/ping.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/plugins/query.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/plugins/time.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/plugins/version.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/plugins/weather.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/rpc/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/rpc/client.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/rpc/server.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/stats.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/threads/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/threads/aprsd.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/threads/keep_alive.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/threads/log_monitor.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/threads/registry.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/threads/rx.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/threads/tx.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/utils/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/utils/counter.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/utils/fuzzyclock.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/utils/json.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/utils/objectstore.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/utils/ring_buffer.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/utils/trace.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/css/index.css +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/css/prism.css +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/css/tabs.css +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/images/Untitled.png +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/images/aprs-symbols-16-0.png +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/images/aprs-symbols-16-1.png +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/images/aprs-symbols-64-0.png +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/images/aprs-symbols-64-1.png +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/images/aprs-symbols-64-2.png +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/js/charts.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/js/echarts.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/js/logs.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/js/main.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/js/prism.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/js/send-message.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/js/tabs.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/json-viewer/jquery.json-viewer.css +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/static/json-viewer/jquery.json-viewer.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/admin/templates/index.html +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/chat.css +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/index.css +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/style.css.map +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/tabs.css +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/upstream/bootstrap.min.css +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/upstream/font.woff2 +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/upstream/google-fonts.css +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/upstream/jquery-ui.css +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/upstream/jquery.toast.css +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff2 +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff2 +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff2 +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff2 +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/images/Untitled.png +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/images/aprs-symbols-16-0.png +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/images/aprs-symbols-16-1.png +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/images/aprs-symbols-64-0.png +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/images/aprs-symbols-64-1.png +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/images/aprs-symbols-64-2.png +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/images/globe.svg +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/js/gps.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/js/main.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/js/send-message.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/js/tabs.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/js/upstream/bootstrap.bundle.min.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/js/upstream/jquery-3.7.1.min.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/js/upstream/jquery-ui.min.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/js/upstream/jquery.toast.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/js/upstream/semantic.min.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/js/upstream/socket.io.min.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/json-viewer/jquery.json-viewer.css +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/static/json-viewer/jquery.json-viewer.js +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/web/chat/templates/index.html +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd/wsgi.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd-lnav.json +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd.egg-info/SOURCES.txt +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd.egg-info/dependency_links.txt +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd.egg-info/entry_points.txt +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd.egg-info/not-zip-safe +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd.egg-info/requires.txt +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/aprsd.egg-info/top_level.txt +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/dev-requirements.in +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/dev-requirements.txt +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docker/Dockerfile +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docker/Dockerfile-dev +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docker/bin/admin.sh +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docker/bin/listen.sh +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docker/bin/run.sh +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docker/build.sh +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docker/docker-compose.yml +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/_static/.keep +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/_static/aprsd_overview.png +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/_static/aprsd_overview.svg +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/_templates/.keep +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/apidoc/aprsd.clients.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/apidoc/aprsd.cmds.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/apidoc/aprsd.conf.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/apidoc/aprsd.packets.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/apidoc/aprsd.plugins.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/apidoc/aprsd.rpc.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/apidoc/aprsd.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/apidoc/aprsd.threads.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/apidoc/aprsd.utils.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/apidoc/aprsd.web.admin.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/apidoc/aprsd.web.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/apidoc/modules.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/aprsd.drawio +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/changelog.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/clean_docs.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/conf.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/configure.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/index.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/install.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/links.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/plugin.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/readme.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/docs/server.rst +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/examples/plugins/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/examples/plugins/example_plugin.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/gray.conf +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/pyproject.toml +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/requirements.in +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/requirements.txt +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/setup.cfg +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/setup.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/cmds/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/cmds/test_send_message.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/cmds/test_webchat.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/fake.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/plugins/__init__.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/plugins/test_fortune.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/plugins/test_location.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/plugins/test_notify.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/plugins/test_ping.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/plugins/test_query.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/plugins/test_time.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/plugins/test_version.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/plugins/test_weather.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/test_email.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/test_main.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/test_packets.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tests/test_plugin.py +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tools/fast8.sh +0 -0
- {aprsd-3.3.2 → aprsd-3.3.4}/tox.ini +0 -0
@@ -122,10 +122,25 @@ def check_version(ctx):
|
|
122
122
|
def sample_config(ctx):
|
123
123
|
"""Generate a sample Config file from aprsd and all installed plugins."""
|
124
124
|
|
125
|
+
def _get_selected_entry_points():
|
126
|
+
import sys
|
127
|
+
if sys.version_info < (3, 10):
|
128
|
+
all = imp.entry_points()
|
129
|
+
selected = []
|
130
|
+
if "oslo.config.opts" in all:
|
131
|
+
for x in all["oslo.config.opts"]:
|
132
|
+
if x.group == "oslo.config.opts":
|
133
|
+
selected.append(x)
|
134
|
+
else:
|
135
|
+
selected = imp.entry_points(group="oslo.config.opts")
|
136
|
+
|
137
|
+
return selected
|
138
|
+
|
125
139
|
def get_namespaces():
|
126
140
|
args = []
|
127
141
|
|
128
|
-
selected = imp.entry_points(group="oslo.config.opts")
|
142
|
+
# selected = imp.entry_points(group="oslo.config.opts")
|
143
|
+
selected = _get_selected_entry_points()
|
129
144
|
for entry in selected:
|
130
145
|
if "aprsd" in entry.name:
|
131
146
|
args.append("--namespace")
|
@@ -0,0 +1 @@
|
|
1
|
+
{"git_version": "e9febbb", "is_release": true}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"git_version": "71cd7e0", "is_release": true}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|