aprsd 3.4.3__tar.gz → 4.0.0__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-4.0.0/.github/workflows/authors.yml +15 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/.github/workflows/manual_build.yml +4 -5
- {aprsd-3.4.3 → aprsd-4.0.0}/.github/workflows/master-build.yml +6 -7
- {aprsd-3.4.3 → aprsd-4.0.0}/.github/workflows/python.yml +2 -2
- aprsd-4.0.0/.mailmap +4 -0
- aprsd-4.0.0/.pre-commit-config.yaml +41 -0
- aprsd-4.0.0/AUTHORS +1 -0
- aprsd-4.0.0/CONTRIBUTING.md +31 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/ChangeLog.md +118 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/Makefile +4 -4
- aprsd-4.0.0/PKG-INFO +293 -0
- aprsd-4.0.0/README.md +454 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/cli_helper.py +12 -5
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/client/aprsis.py +68 -17
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/client/base.py +60 -12
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/client/drivers/aprsis.py +11 -5
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/client/drivers/fake.py +15 -20
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/client/factory.py +6 -3
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/client/fake.py +5 -4
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/client/kiss.py +43 -7
- aprsd-4.0.0/aprsd/client/stats.py +18 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/cmds/completion.py +7 -4
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/cmds/dev.py +39 -43
- aprsd-4.0.0/aprsd/cmds/fetch_stats.py +308 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/cmds/healthcheck.py +7 -5
- aprsd-4.0.0/aprsd/cmds/list_plugins.py +325 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/cmds/listen.py +102 -11
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/cmds/server.py +71 -37
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/conf/__init__.py +1 -2
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/conf/client.py +3 -4
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/conf/common.py +29 -92
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/conf/log.py +2 -4
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/conf/opts.py +5 -4
- aprsd-4.0.0/aprsd/conf/plugin_common.py +72 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/exception.py +2 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/log/log.py +7 -46
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/main.py +19 -9
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/packets/__init__.py +14 -4
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/packets/core.py +82 -91
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/packets/log.py +8 -8
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/packets/packet_list.py +18 -25
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/plugin.py +33 -15
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/plugins/fortune.py +2 -2
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/plugins/notify.py +1 -4
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/plugins/weather.py +10 -8
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/stats/__init__.py +0 -2
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/stats/collector.py +11 -3
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/threads/__init__.py +3 -2
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/threads/aprsd.py +57 -10
- aprsd-3.4.3/aprsd/threads/keep_alive.py → aprsd-4.0.0/aprsd/threads/keepalive.py +14 -37
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/threads/registry.py +3 -3
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/threads/rx.py +48 -17
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/threads/tx.py +34 -10
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/utils/__init__.py +62 -15
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/utils/counter.py +15 -12
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/utils/json.py +9 -4
- aprsd-4.0.0/aprsd/utils/keepalive_collector.py +55 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/utils/trace.py +4 -4
- aprsd-4.0.0/aprsd.egg-info/PKG-INFO +293 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd.egg-info/SOURCES.txt +11 -68
- aprsd-4.0.0/aprsd.egg-info/requires.txt +91 -0
- aprsd-4.0.0/aprsd_logo.png +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docker/Dockerfile +40 -30
- {aprsd-3.4.3 → aprsd-4.0.0}/docker/bin/admin.sh +7 -3
- aprsd-4.0.0/docker/bin/healthcheck.sh +22 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docker/bin/listen.sh +1 -1
- {aprsd-3.4.3 → aprsd-4.0.0}/docker/bin/run.sh +5 -3
- {aprsd-3.4.3 → aprsd-4.0.0}/docker/bin/setup.sh +4 -2
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/apidoc/aprsd.cmds.rst +0 -8
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/apidoc/aprsd.conf.rst +0 -8
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/apidoc/aprsd.plugins.rst +0 -16
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/apidoc/aprsd.rst +0 -17
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/apidoc/aprsd.threads.rst +3 -11
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/apidoc/aprsd.utils.rst +8 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/examples/plugins/example_plugin.py +2 -3
- {aprsd-3.4.3 → aprsd-4.0.0}/pyproject.toml +18 -1
- {aprsd-3.4.3 → aprsd-4.0.0}/requirements-dev.in +0 -8
- aprsd-4.0.0/requirements-dev.txt +49 -0
- aprsd-4.0.0/requirements.in +18 -0
- aprsd-4.0.0/requirements.txt +44 -0
- aprsd-4.0.0/tests/client/test_aprsis.py +89 -0
- aprsd-4.0.0/tests/client/test_client_base.py +141 -0
- aprsd-4.0.0/tests/client/test_factory.py +75 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/tests/cmds/test_send_message.py +6 -6
- {aprsd-3.4.3 → aprsd-4.0.0}/tests/fake.py +0 -2
- {aprsd-3.4.3 → aprsd-4.0.0}/tests/plugins/test_notify.py +8 -6
- {aprsd-3.4.3 → aprsd-4.0.0}/tests/plugins/test_time.py +1 -3
- {aprsd-3.4.3 → aprsd-4.0.0}/tests/plugins/test_version.py +0 -2
- {aprsd-3.4.3 → aprsd-4.0.0}/tests/plugins/test_weather.py +1 -4
- {aprsd-3.4.3 → aprsd-4.0.0}/tests/test_packets.py +15 -7
- {aprsd-3.4.3 → aprsd-4.0.0}/tests/test_plugin.py +5 -7
- {aprsd-3.4.3 → aprsd-4.0.0}/tox.ini +16 -14
- aprsd-3.4.3/.pre-commit-config.yaml +0 -22
- aprsd-3.4.3/AUTHORS +0 -13
- aprsd-3.4.3/PKG-INFO +0 -793
- aprsd-3.4.3/README.rst +0 -446
- aprsd-3.4.3/aprsd/client/stats.py +0 -38
- aprsd-3.4.3/aprsd/cmds/fetch_stats.py +0 -156
- aprsd-3.4.3/aprsd/cmds/list_plugins.py +0 -319
- aprsd-3.4.3/aprsd/cmds/webchat.py +0 -674
- aprsd-3.4.3/aprsd/conf/plugin_common.py +0 -182
- aprsd-3.4.3/aprsd/conf/plugin_email.py +0 -105
- aprsd-3.4.3/aprsd/plugins/email.py +0 -709
- aprsd-3.4.3/aprsd/plugins/location.py +0 -179
- aprsd-3.4.3/aprsd/threads/log_monitor.py +0 -121
- aprsd-3.4.3/aprsd/web/admin/static/css/index.css +0 -84
- aprsd-3.4.3/aprsd/web/admin/static/css/prism.css +0 -4
- aprsd-3.4.3/aprsd/web/admin/static/css/tabs.css +0 -35
- aprsd-3.4.3/aprsd/web/admin/static/images/Untitled.png +0 -0
- aprsd-3.4.3/aprsd/web/admin/static/images/aprs-symbols-16-0.png +0 -0
- aprsd-3.4.3/aprsd/web/admin/static/images/aprs-symbols-16-1.png +0 -0
- aprsd-3.4.3/aprsd/web/admin/static/images/aprs-symbols-64-0.png +0 -0
- aprsd-3.4.3/aprsd/web/admin/static/images/aprs-symbols-64-1.png +0 -0
- aprsd-3.4.3/aprsd/web/admin/static/images/aprs-symbols-64-2.png +0 -0
- aprsd-3.4.3/aprsd/web/admin/static/js/charts.js +0 -235
- aprsd-3.4.3/aprsd/web/admin/static/js/echarts.js +0 -465
- aprsd-3.4.3/aprsd/web/admin/static/js/logs.js +0 -26
- aprsd-3.4.3/aprsd/web/admin/static/js/main.js +0 -231
- aprsd-3.4.3/aprsd/web/admin/static/js/prism.js +0 -12
- aprsd-3.4.3/aprsd/web/admin/static/js/send-message.js +0 -114
- aprsd-3.4.3/aprsd/web/admin/static/js/tabs.js +0 -28
- aprsd-3.4.3/aprsd/web/admin/templates/index.html +0 -196
- aprsd-3.4.3/aprsd/web/chat/static/css/chat.css +0 -115
- aprsd-3.4.3/aprsd/web/chat/static/css/index.css +0 -66
- aprsd-3.4.3/aprsd/web/chat/static/css/style.css.map +0 -1
- aprsd-3.4.3/aprsd/web/chat/static/css/tabs.css +0 -41
- aprsd-3.4.3/aprsd/web/chat/static/css/upstream/bootstrap.min.css +0 -6
- aprsd-3.4.3/aprsd/web/chat/static/css/upstream/font.woff2 +0 -0
- aprsd-3.4.3/aprsd/web/chat/static/css/upstream/google-fonts.css +0 -23
- aprsd-3.4.3/aprsd/web/chat/static/css/upstream/jquery-ui.css +0 -1311
- aprsd-3.4.3/aprsd/web/chat/static/css/upstream/jquery.toast.css +0 -28
- aprsd-3.4.3/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff +0 -0
- aprsd-3.4.3/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff2 +0 -0
- aprsd-3.4.3/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff +0 -0
- aprsd-3.4.3/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff2 +0 -0
- aprsd-3.4.3/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff +0 -0
- aprsd-3.4.3/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff2 +0 -0
- aprsd-3.4.3/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff +0 -0
- aprsd-3.4.3/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff2 +0 -0
- aprsd-3.4.3/aprsd/web/chat/static/images/Untitled.png +0 -0
- aprsd-3.4.3/aprsd/web/chat/static/images/aprs-symbols-16-0.png +0 -0
- aprsd-3.4.3/aprsd/web/chat/static/images/aprs-symbols-16-1.png +0 -0
- aprsd-3.4.3/aprsd/web/chat/static/images/aprs-symbols-64-0.png +0 -0
- aprsd-3.4.3/aprsd/web/chat/static/images/aprs-symbols-64-1.png +0 -0
- aprsd-3.4.3/aprsd/web/chat/static/images/aprs-symbols-64-2.png +0 -0
- aprsd-3.4.3/aprsd/web/chat/static/images/globe.svg +0 -3
- aprsd-3.4.3/aprsd/web/chat/static/js/gps.js +0 -84
- aprsd-3.4.3/aprsd/web/chat/static/js/main.js +0 -45
- aprsd-3.4.3/aprsd/web/chat/static/js/send-message.js +0 -585
- aprsd-3.4.3/aprsd/web/chat/static/js/tabs.js +0 -28
- aprsd-3.4.3/aprsd/web/chat/static/js/upstream/bootstrap.bundle.min.js +0 -7
- aprsd-3.4.3/aprsd/web/chat/static/js/upstream/jquery-3.7.1.min.js +0 -2
- aprsd-3.4.3/aprsd/web/chat/static/js/upstream/jquery-ui.min.js +0 -13
- aprsd-3.4.3/aprsd/web/chat/static/js/upstream/jquery.toast.js +0 -374
- aprsd-3.4.3/aprsd/web/chat/static/js/upstream/semantic.min.js +0 -11
- aprsd-3.4.3/aprsd/web/chat/static/js/upstream/socket.io.min.js +0 -7
- aprsd-3.4.3/aprsd/web/chat/templates/index.html +0 -139
- aprsd-3.4.3/aprsd/wsgi.py +0 -315
- aprsd-3.4.3/aprsd.egg-info/PKG-INFO +0 -793
- aprsd-3.4.3/aprsd.egg-info/requires.txt +0 -144
- aprsd-3.4.3/docs/apidoc/aprsd.web.admin.rst +0 -10
- aprsd-3.4.3/docs/apidoc/aprsd.web.rst +0 -18
- aprsd-3.4.3/requirements-dev.txt +0 -86
- aprsd-3.4.3/requirements.in +0 -30
- aprsd-3.4.3/requirements.txt +0 -72
- aprsd-3.4.3/tests/cmds/__init__.py +0 -0
- aprsd-3.4.3/tests/cmds/test_webchat.py +0 -86
- aprsd-3.4.3/tests/plugins/__init__.py +0 -0
- aprsd-3.4.3/tests/plugins/test_location.py +0 -109
- aprsd-3.4.3/tests/test_email.py +0 -32
- aprsd-3.4.3/tests/test_main.py +0 -22
- {aprsd-3.4.3 → aprsd-4.0.0}/.coveragerc +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/.github/workflows/codeql.yml +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/.github/workflows/release_build.yml +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/.readthedocs.yaml +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/INSTALL.txt +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/LICENSE +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/MANIFEST.in +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/__init__.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/client/__init__.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/client/drivers/__init__.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/client/drivers/kiss.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/cmds/__init__.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/cmds/send_message.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/log/__init__.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/packets/collector.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/packets/seen_list.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/packets/tracker.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/packets/watch_list.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/plugin_utils.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/plugins/__init__.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/plugins/ping.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/plugins/time.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/plugins/version.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/stats/app.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/threads/stats.py +2 -2
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/utils/fuzzyclock.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/utils/objectstore.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd/utils/ring_buffer.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd-lnav.json +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd.egg-info/dependency_links.txt +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd.egg-info/entry_points.txt +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/aprsd.egg-info/top_level.txt +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docker/build.sh +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docker/docker-compose.yml +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/_static/.keep +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/_static/aprsd_overview.png +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/_static/aprsd_overview.svg +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/_templates/.keep +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/apidoc/aprsd.client.drivers.rst +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/apidoc/aprsd.client.rst +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/apidoc/aprsd.log.rst +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/apidoc/aprsd.packets.rst +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/apidoc/aprsd.stats.rst +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/apidoc/modules.rst +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/aprsd.drawio +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/changelog.rst +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/clean_docs.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/conf.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/configure.rst +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/index.rst +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/install.rst +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/links.rst +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/plugin.rst +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/readme.rst +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/docs/server.rst +0 -0
- {aprsd-3.4.3/aprsd/web → aprsd-4.0.0/examples/plugins}/__init__.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/gray.conf +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/setup.cfg +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/setup.py +0 -0
- {aprsd-3.4.3/aprsd/web/admin → aprsd-4.0.0/tests}/__init__.py +0 -0
- {aprsd-3.4.3/examples/plugins → aprsd-4.0.0/tests/cmds}/__init__.py +0 -0
- {aprsd-3.4.3/tests → aprsd-4.0.0/tests/plugins}/__init__.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/tests/plugins/test_fortune.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/tests/plugins/test_ping.py +0 -0
- {aprsd-3.4.3 → aprsd-4.0.0}/tools/fast8.sh +0 -0
@@ -0,0 +1,15 @@
|
|
1
|
+
name: Update Authors
|
2
|
+
on:
|
3
|
+
push:
|
4
|
+
branches:
|
5
|
+
- master
|
6
|
+
jobs:
|
7
|
+
run:
|
8
|
+
runs-on: ubuntu-latest
|
9
|
+
steps:
|
10
|
+
- uses: actions/checkout@v4
|
11
|
+
- uses: wow-actions/update-authors@v1
|
12
|
+
with:
|
13
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
14
|
+
template: '{{email}} : {{commits}}'
|
15
|
+
path: 'AUTHORS'
|
@@ -18,7 +18,6 @@ jobs:
|
|
18
18
|
build:
|
19
19
|
runs-on: ubuntu-latest
|
20
20
|
steps:
|
21
|
-
- uses: actions/checkout@v3
|
22
21
|
- name: Get Branch Name
|
23
22
|
id: branch-name
|
24
23
|
uses: tj-actions/branch-names@v8
|
@@ -30,16 +29,16 @@ jobs:
|
|
30
29
|
run: |
|
31
30
|
echo "Selected Branch '${{ steps.extract_branch.outputs.branch }}'"
|
32
31
|
- name: Setup QEMU
|
33
|
-
uses: docker/setup-qemu-action@
|
32
|
+
uses: docker/setup-qemu-action@v3
|
34
33
|
- name: Setup Docker Buildx
|
35
|
-
uses: docker/setup-buildx-action@
|
34
|
+
uses: docker/setup-buildx-action@v3
|
36
35
|
- name: Login to Docker HUB
|
37
|
-
uses: docker/login-action@
|
36
|
+
uses: docker/login-action@v3
|
38
37
|
with:
|
39
38
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
40
39
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
41
40
|
- name: Build the Docker image
|
42
|
-
uses: docker/build-push-action@
|
41
|
+
uses: docker/build-push-action@v6
|
43
42
|
with:
|
44
43
|
context: "{{defaultContext}}:docker"
|
45
44
|
platforms: linux/amd64,linux/arm64
|
@@ -7,7 +7,7 @@ on:
|
|
7
7
|
branches:
|
8
8
|
- "**"
|
9
9
|
tags:
|
10
|
-
- "
|
10
|
+
- "*.*.*"
|
11
11
|
pull_request:
|
12
12
|
branches:
|
13
13
|
- "master"
|
@@ -17,7 +17,7 @@ jobs:
|
|
17
17
|
runs-on: ubuntu-latest
|
18
18
|
strategy:
|
19
19
|
matrix:
|
20
|
-
python-version: ["3.10", "3.11"]
|
20
|
+
python-version: ["3.10", "3.11", "3.12"]
|
21
21
|
steps:
|
22
22
|
- uses: actions/checkout@v2
|
23
23
|
- name: Set up Python ${{ matrix.python-version }}
|
@@ -35,21 +35,20 @@ jobs:
|
|
35
35
|
needs: tox
|
36
36
|
runs-on: ubuntu-latest
|
37
37
|
steps:
|
38
|
-
- uses: actions/checkout@v3
|
39
38
|
- name: Get Branch Name
|
40
39
|
id: branch-name
|
41
40
|
uses: tj-actions/branch-names@v8
|
42
41
|
- name: Setup QEMU
|
43
|
-
uses: docker/setup-qemu-action@
|
42
|
+
uses: docker/setup-qemu-action@v3
|
44
43
|
- name: Setup Docker Buildx
|
45
|
-
uses: docker/setup-buildx-action@
|
44
|
+
uses: docker/setup-buildx-action@v3
|
46
45
|
- name: Login to Docker HUB
|
47
|
-
uses: docker/login-action@
|
46
|
+
uses: docker/login-action@v3
|
48
47
|
with:
|
49
48
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
50
49
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
51
50
|
- name: Build the Docker image
|
52
|
-
uses: docker/build-push-action@
|
51
|
+
uses: docker/build-push-action@v6
|
53
52
|
with:
|
54
53
|
context: "{{defaultContext}}:docker"
|
55
54
|
platforms: linux/amd64,linux/arm64
|
@@ -9,9 +9,9 @@ jobs:
|
|
9
9
|
matrix:
|
10
10
|
python-version: ["3.10", "3.11"]
|
11
11
|
steps:
|
12
|
-
- uses: actions/checkout@
|
12
|
+
- uses: actions/checkout@v4
|
13
13
|
- name: Set up Python ${{ matrix.python-version }}
|
14
|
-
uses: actions/setup-python@
|
14
|
+
uses: actions/setup-python@v5
|
15
15
|
with:
|
16
16
|
python-version: ${{ matrix.python-version }}
|
17
17
|
- name: Install dependencies
|
aprsd-4.0.0/.mailmap
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
repos:
|
2
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
3
|
+
rev: v5.0.0
|
4
|
+
hooks:
|
5
|
+
- id: trailing-whitespace
|
6
|
+
- id: end-of-file-fixer
|
7
|
+
- id: check-yaml
|
8
|
+
- id: detect-private-key
|
9
|
+
- id: check-merge-conflict
|
10
|
+
- id: check-case-conflict
|
11
|
+
- id: check-docstring-first
|
12
|
+
- id: check-builtin-literals
|
13
|
+
- id: check-illegal-windows-names
|
14
|
+
|
15
|
+
- repo: https://github.com/asottile/setup-cfg-fmt
|
16
|
+
rev: v2.7.0
|
17
|
+
hooks:
|
18
|
+
- id: setup-cfg-fmt
|
19
|
+
|
20
|
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
21
|
+
rev: v0.9.0
|
22
|
+
hooks:
|
23
|
+
- id: ruff
|
24
|
+
###### Relevant part below ######
|
25
|
+
- id: ruff
|
26
|
+
args: ["check", "--select", "I", "--fix"]
|
27
|
+
###### Relevant part above ######
|
28
|
+
- id: ruff-format
|
29
|
+
|
30
|
+
- repo: https://github.com/astral-sh/uv-pre-commit
|
31
|
+
# uv version.
|
32
|
+
rev: 0.5.16
|
33
|
+
hooks:
|
34
|
+
# Compile requirements
|
35
|
+
- id: pip-compile
|
36
|
+
name: pip-compile requirements.in
|
37
|
+
args: [--resolver, backtracking, --annotation-style=line, requirements.in, -o, requirements.txt]
|
38
|
+
- id: pip-compile
|
39
|
+
name: pip-compile requirements-dev.in
|
40
|
+
args: [--resolver, backtracking, --annotation-style=line, requirements-dev.in, -o, requirements-dev.txt]
|
41
|
+
files: ^requirements-dev\.(in|txt)$
|
aprsd-4.0.0/AUTHORS
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
waboring@hemna.com : 1
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# CONTRIBUTING
|
2
|
+
|
3
|
+
Code contributions are welcomed and appreciated. Just submit a PR!
|
4
|
+
|
5
|
+
The current build environment uses `pre-commit`, and `uv`.
|
6
|
+
|
7
|
+
### Environment setup:
|
8
|
+
|
9
|
+
```console
|
10
|
+
pip install uv
|
11
|
+
uv venv
|
12
|
+
uv pip install pip-tools
|
13
|
+
git clone git@github.com:craigerl/aprsd.git
|
14
|
+
cd aprsd
|
15
|
+
pre-commit install
|
16
|
+
|
17
|
+
# Optionally run the pre-commit scripts at any time
|
18
|
+
pre-commit run --all-files
|
19
|
+
```
|
20
|
+
|
21
|
+
### Running and testing:
|
22
|
+
|
23
|
+
From the aprstastic directory:
|
24
|
+
|
25
|
+
```console
|
26
|
+
cd aprsd
|
27
|
+
uv pip install -e .
|
28
|
+
|
29
|
+
# Running
|
30
|
+
uv run aprsd
|
31
|
+
```
|
@@ -4,12 +4,130 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
4
4
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
6
6
|
|
7
|
+
### [4.0.0](https://github.com/craigerl/aprsd/compare/3.4.4...4.0.0)
|
8
|
+
|
9
|
+
> 24 January 2025
|
10
|
+
|
11
|
+
- Migrate admin web out of aprsd. [`#183`](https://github.com/craigerl/aprsd/pull/183)
|
12
|
+
- Remove webchat as a built in command. [`8f8887f`](https://github.com/craigerl/aprsd/commit/8f8887f0e496d960b0e71275893b75408a40fdb2)
|
13
|
+
- Remove email plugin [`0880a35`](https://github.com/craigerl/aprsd/commit/0880a356e6df1a0924cbf6e815e68cba5f5c6cf1)
|
14
|
+
- Fixed make clean [`ae28dbb`](https://github.com/craigerl/aprsd/commit/ae28dbb0e6bc216bf78c0bd9d7804f57b39091d1)
|
15
|
+
- removed email reference [`fcd1629`](https://github.com/craigerl/aprsd/commit/fcd1629fdebb485fc763e19d73bfdafc10de6251)
|
16
|
+
- Removed more email references. [`f0c0260`](https://github.com/craigerl/aprsd/commit/f0c02606ebfc5170b80b55c73de191d27a8778a0)
|
17
|
+
- Removed LocationPlugin from aprsd core [`3bba8a1`](https://github.com/craigerl/aprsd/commit/3bba8a19da88b0912064cea786bc9f8203038946)
|
18
|
+
- Include haversine library [`bbdbb9a`](https://github.com/craigerl/aprsd/commit/bbdbb9aba189d536497ea3cd7d30911fe3d9d706)
|
19
|
+
- Update Makefile [`caa4bb8`](https://github.com/craigerl/aprsd/commit/caa4bb8bd01cbd2e02024d75e1c8af97acf6c657)
|
20
|
+
- Enable packet stats for listen command in Docker [`e5d8796`](https://github.com/craigerl/aprsd/commit/e5d8796cda1a007aa868c760b96b50b364351519)
|
21
|
+
- Added new KeepAliveCollector [`30d1eb5`](https://github.com/craigerl/aprsd/commit/30d1eb57dd249c609f5b092d8084c40cadda7bd9)
|
22
|
+
- Changed to ruff [`72d068c`](https://github.com/craigerl/aprsd/commit/72d068c0b8944c8c9eed494fc23de8d7179ee09b)
|
23
|
+
- Changed README.rst -> README.md [`b1a830d`](https://github.com/craigerl/aprsd/commit/b1a830d54e9dec473074b34f9566f161bdec0030)
|
24
|
+
- fixed list-plugins [`ec1adf4`](https://github.com/craigerl/aprsd/commit/ec1adf418203fc7d1a8fb175a075c73fa27d772b)
|
25
|
+
- Updated README.md [`fd74405`](https://github.com/craigerl/aprsd/commit/fd74405b5fb2ec3d0b432e95d715a8934d76dcd8)
|
26
|
+
- updated workflow [`df14eb8`](https://github.com/craigerl/aprsd/commit/df14eb8f288aa8cd8cab9b9263ca64093bb63c34)
|
27
|
+
- Some cleanup with list plugins [`5274c5d`](https://github.com/craigerl/aprsd/commit/5274c5dc563b40f87436378558ad843517be6939)
|
28
|
+
- Updated README.md [`275e335`](https://github.com/craigerl/aprsd/commit/275e33538db7f014eeb02deddd76bfbb63516871)
|
29
|
+
- removed BeautifulSoup usage [`a21432f`](https://github.com/craigerl/aprsd/commit/a21432fb249577489795e8a9f5d969b63c2af716)
|
30
|
+
- updated github workflows [`e3a7e7f`](https://github.com/craigerl/aprsd/commit/e3a7e7fb8a8448f7893fbe3f8cf7e876a5e2ff58)
|
31
|
+
- updated requirements-dev [`fbec716`](https://github.com/craigerl/aprsd/commit/fbec7168eb37621c0f3ca54274148704c857f506)
|
32
|
+
- updated requirements [`7f2c1d7`](https://github.com/craigerl/aprsd/commit/7f2c1d712417b55cd3535888d18d41c6a00e4d07)
|
33
|
+
- updated plugin example [`0073865`](https://github.com/craigerl/aprsd/commit/007386505ab539200b8eef438250bc73dac0079f)
|
34
|
+
- updated docs rst files [`3cd9bfa`](https://github.com/craigerl/aprsd/commit/3cd9bfa7bb79fb2ebaad7d921c7d9fd2128392f3)
|
35
|
+
- added authors.yml [`c8735c2`](https://github.com/craigerl/aprsd/commit/c8735c257a32b31974508c2ed9c1cdc8848b5150)
|
36
|
+
- updated action versions [`7702d68`](https://github.com/craigerl/aprsd/commit/7702d68cf722746952b94782ac4ed5cba935d53b)
|
37
|
+
- update to py 3.10 [`3ee422b`](https://github.com/craigerl/aprsd/commit/3ee422b5c9f79e9ee2d757abd1de9b9f2d0fc52e)
|
38
|
+
- Added .mailmap [`8d98546`](https://github.com/craigerl/aprsd/commit/8d9854605584fa35117af888fe219df610fb7cb4)
|
39
|
+
- updated tools in pre-commit [`e4f82d6`](https://github.com/craigerl/aprsd/commit/e4f82d6054d4d859023423bccdd5c402d7a83494)
|
40
|
+
- some cleanup [`e332d7c`](https://github.com/craigerl/aprsd/commit/e332d7c9d046066e2686ea0522ae06b86d2f162d)
|
41
|
+
- Added activity to README [`cdd297c`](https://github.com/craigerl/aprsd/commit/cdd297c5bbc8b93f4739f5850a3e5971ce8baeba)
|
42
|
+
- Added star history to readme [`02e2940`](https://github.com/craigerl/aprsd/commit/02e29405ce2f8310e4f87f68498dfd6575c2e43b)
|
43
|
+
- removed pytest from README [`1cba31f`](https://github.com/craigerl/aprsd/commit/1cba31f0ac9bd5ee532721a909fc752f023f3b06)
|
44
|
+
- Updated Docker for using alpine and uv [`24db814`](https://github.com/craigerl/aprsd/commit/24db814c82c9bb6634566d7428603bf7a9ae37d1)
|
45
|
+
- Update the admin and setup.sh for container [`044ea4c`](https://github.com/craigerl/aprsd/commit/044ea4cc9a0059101851d6e722e986ee236833e8)
|
46
|
+
- added healthcheck.sh [`1054999`](https://github.com/craigerl/aprsd/commit/10549995686b08e4c166f780efdec5bdae496cab)
|
47
|
+
- updated healthcheck.sh [`dabb48c`](https://github.com/craigerl/aprsd/commit/dabb48c6f64062c1fed8f83a4f0b8ffba0c206a5)
|
48
|
+
- try making image for webchat [`ba8acdc`](https://github.com/craigerl/aprsd/commit/ba8acdc5849fc7b2d8a1ee11af6f5e317cf30f45)
|
49
|
+
- Added APRSD logo [`0ed648f`](https://github.com/craigerl/aprsd/commit/0ed648f8f8a961dbbd9e22bcebadcde525ee41ae)
|
50
|
+
- Added plugin and extension links [`447451c`](https://github.com/craigerl/aprsd/commit/447451c6c97e1f2d3d0bf580db21ecd176690258)
|
51
|
+
- reduced logo size 50% [`cf4a29f`](https://github.com/craigerl/aprsd/commit/cf4a29f0cb3ed366b21ec3120a189614e0955180)
|
52
|
+
- Updated README.md TOC [`375a5e5`](https://github.com/craigerl/aprsd/commit/375a5e5b34718cadc6ee8a51484fc91441440a61)
|
53
|
+
- chore: update AUTHORS [skip ci] [`c556f51`](https://github.com/craigerl/aprsd/commit/c556f5126f725904822a75427475d46986f8e9f3)
|
54
|
+
|
55
|
+
#### [3.4.4](https://github.com/craigerl/aprsd/compare/3.4.3...3.4.4)
|
56
|
+
|
57
|
+
> 6 December 2024
|
58
|
+
|
59
|
+
- Update counter.py [`#182`](https://github.com/craigerl/aprsd/pull/182)
|
60
|
+
- Added an option to disable the loading of the help plugin. [`#177`](https://github.com/craigerl/aprsd/pull/177)
|
61
|
+
- Added unit test for client base [`#181`](https://github.com/craigerl/aprsd/pull/181)
|
62
|
+
- Walt listen test [`#180`](https://github.com/craigerl/aprsd/pull/180)
|
63
|
+
- Bump werkzeug from 3.0.4 to 3.0.6 [`#178`](https://github.com/craigerl/aprsd/pull/178)
|
64
|
+
- Added new aprsd admin command [`0271ccd`](https://github.com/craigerl/aprsd/commit/0271ccd14582cf042846e9c65c64fe501538bc5a)
|
65
|
+
- Added some changes to listen [`df0ca04`](https://github.com/craigerl/aprsd/commit/df0ca0448373b1ce5707b01b2acaca9a50340715)
|
66
|
+
- Added some changes to listen [`d863474`](https://github.com/craigerl/aprsd/commit/d863474c133d7650f9c79d1a88f0a4a04a2b056f)
|
67
|
+
- Fix a small issue with packet sending failures [`3fd6069`](https://github.com/craigerl/aprsd/commit/3fd606946db8df368da0cd0e9f6e9a0c18d36525)
|
68
|
+
- Fix a small issue with packet sending failures [`f265e8f`](https://github.com/craigerl/aprsd/commit/f265e8f3541701eeaaba820ed93eb23902b40f05)
|
69
|
+
- Added new dump-stats command [`add18f1`](https://github.com/craigerl/aprsd/commit/add18f1a6f08a8eda6729c82634c0e68f73b48f8)
|
70
|
+
- Update PacketList [`7e8d7cd`](https://github.com/craigerl/aprsd/commit/7e8d7cdf8671fbc559400ef2041d5bbe6fdb8c6d)
|
71
|
+
- Updated APRSClient [`d808e21`](https://github.com/craigerl/aprsd/commit/d808e217a2bdd1cfffa7d69344a0b9a664bf2f6f)
|
72
|
+
- Calculate delta once and reuse it [`0be87d8`](https://github.com/craigerl/aprsd/commit/0be87d8b4f1fa258a5cd32188eccd4aa22b7446e)
|
73
|
+
- Added unit test for ClientFactory [`ab2de86`](https://github.com/craigerl/aprsd/commit/ab2de86726106582c06230ed4e513d78f0bafb03)
|
74
|
+
- Added unit test for APRSISClient [`224686c`](https://github.com/craigerl/aprsd/commit/224686cac5e4cefd559fb9149ccac18069914423)
|
75
|
+
- optimized Packet.get() [`579d0c9`](https://github.com/craigerl/aprsd/commit/579d0c95a085a7cb796ae9476da8c48fca201601)
|
76
|
+
- fixed name for dump-stats output [`563b068`](https://github.com/craigerl/aprsd/commit/563b06876c02eb9193b0c7559765e47d932a5978)
|
77
|
+
- updated README.rst [`229155d`](https://github.com/craigerl/aprsd/commit/229155d0ee63aa80c8bc4ffbdbb5a3eb8a4a6e7c)
|
78
|
+
- Only load EmailStats if email is enabled [`2fdc7b1`](https://github.com/craigerl/aprsd/commit/2fdc7b111d31006b568e820ee7aaa8290f5944b9)
|
79
|
+
- Added rich output for dump-stats [`d0018a8`](https://github.com/craigerl/aprsd/commit/d0018a8cd39d8d9b74b83655083b33be2e2b70a7)
|
80
|
+
- Allow disabling sending all AckPackets [`6e62ac1`](https://github.com/craigerl/aprsd/commit/6e62ac14b8cca193faf6c73464eb47e54efd7abe)
|
81
|
+
- Allow loading a specific list of plugins [`9f3c8f8`](https://github.com/craigerl/aprsd/commit/9f3c8f889f1866a7747bc82c1b3c2c39687dcb1c)
|
82
|
+
- Catch and log exceptions in consumer [`adcf94d`](https://github.com/craigerl/aprsd/commit/adcf94d8c755af7020ac93d7fb3731c637aefc3e)
|
83
|
+
- Fixed the protocol for Stats Collector [`bd0bcc1`](https://github.com/craigerl/aprsd/commit/bd0bcc19244a8a5bf0bf851533eb303e7845c8ca)
|
84
|
+
- Added new features to listen command. [`7d1e739`](https://github.com/craigerl/aprsd/commit/7d1e73950288c721bb5a07224bc4b5bb52bb9164)
|
85
|
+
- Don't break logging aprslib failures [`98a6210`](https://github.com/craigerl/aprsd/commit/98a62102b742960ff7202b0614fc2801dd60ad12)
|
86
|
+
- Change healthcheck email thread check timeout [`03ce5a3`](https://github.com/craigerl/aprsd/commit/03ce5a3d506a1304b93fd11cd2a43661f874d144)
|
87
|
+
- Addressing comments in PR. [`2471492`](https://github.com/craigerl/aprsd/commit/24714923be4c55fdac434a868707e917b6ed21b1)
|
88
|
+
- Update utils.trace [`c3df974`](https://github.com/craigerl/aprsd/commit/c3df97400458d1f3c72a03d0f9ae72addad63d29)
|
89
|
+
- Update requirements [`257fa0d`](https://github.com/craigerl/aprsd/commit/257fa0db7d9f9cef8b3235cacf954adb862a2bfb)
|
90
|
+
- Fixes for webchat UI. [`f0b9956`](https://github.com/craigerl/aprsd/commit/f0b99564d15fedb055c9e2cb1ea9146814024478)
|
91
|
+
- Sending message to new callsign displays in an active tab [`d42638e`](https://github.com/craigerl/aprsd/commit/d42638efe3ebb22d777573d934ed4dd8216ac705)
|
92
|
+
- Update WebChat [`9f7d169`](https://github.com/craigerl/aprsd/commit/9f7d169c18c6ac593d49efd9dde42bc40b28bc70)
|
93
|
+
- Update Client to report login status [`06c1fb9`](https://github.com/craigerl/aprsd/commit/06c1fb985efea1f6697bedbe340557cde7225bf4)
|
94
|
+
- Updated server client checks [`1c50c39`](https://github.com/craigerl/aprsd/commit/1c50c39e6104d6e9462fd9ed5e2deed7f9e6b1fe)
|
95
|
+
- Fixed broken unit tests [`c82e9ba`](https://github.com/craigerl/aprsd/commit/c82e9ba5977424e6f03ddbbfcbd816634ef667ce)
|
96
|
+
- Fixed pep8 failure on counter.py [`1eaa4b8`](https://github.com/craigerl/aprsd/commit/1eaa4b8e10f12ba8fe17b0cee44d6dee4a5689aa)
|
97
|
+
- No reason to create the client in init [`e99c906`](https://github.com/craigerl/aprsd/commit/e99c906fed564fecae0f389fa21f25e624db9088)
|
98
|
+
- Added APRSDThread pause/unpause capability [`95094b8`](https://github.com/craigerl/aprsd/commit/95094b874cc99201497cb7920a0c73c7c332e65a)
|
99
|
+
- Added client_exists() for client factory [`505565d`](https://github.com/craigerl/aprsd/commit/505565d3a6befaba3b57c87c22333b0e965ab347)
|
100
|
+
- Added pause_all, unpause_all in threadlist [`76d275d`](https://github.com/craigerl/aprsd/commit/76d275db9c8968ce5bd9b52e52fa39c9002aaa86)
|
101
|
+
- Make sure to sleep(1) in the main RX thread [`98a96cb`](https://github.com/craigerl/aprsd/commit/98a96cbe34ee50bbd242542c5891768608e586b4)
|
102
|
+
- Put safety checks around the timeago for keepalive [`be6357a`](https://github.com/craigerl/aprsd/commit/be6357a552e8c05b5fd5a94d4fb6318abaf78cfc)
|
103
|
+
- Properly report TCPKISS connection [`3e488db`](https://github.com/craigerl/aprsd/commit/3e488db3d7e864c6b4411ce67d5018648faeac2d)
|
104
|
+
- Fix call in kiss consumer [`aba5bb0`](https://github.com/craigerl/aprsd/commit/aba5bb03a2dd973e545a5f1ec0515c8f500ddadb)
|
105
|
+
- Update RX Packet dupe checking [`8f3da96`](https://github.com/craigerl/aprsd/commit/8f3da961e7802340f9a77d437631c6bbe94e0102)
|
106
|
+
- Webchat: Don't automatically fetch location KISS [`e8ae380`](https://github.com/craigerl/aprsd/commit/e8ae3807db87880ec65923854b07e5cc225a72c3)
|
107
|
+
- Fixed issue not processing null msg ids [`a17b80d`](https://github.com/craigerl/aprsd/commit/a17b80ddd871bfd16c59b29a9a7f7ef34f921f6c)
|
108
|
+
- Updated keepalive thread to report client [`8529f1f`](https://github.com/craigerl/aprsd/commit/8529f1f8d1a4a86a66aecfda6e6075c394bbff56)
|
109
|
+
- Fixed webchat popovers not working. [`3a8b8f2`](https://github.com/craigerl/aprsd/commit/3a8b8f26dda9d7b4099061b2a24a393fb639124c)
|
110
|
+
- Fixed issue with packet object and prepare() [`f66b962`](https://github.com/craigerl/aprsd/commit/f66b96288f7c594bc9775f28ffc93e3bbd3bb46f)
|
111
|
+
- Fixed webchat packets without msgNo [`d4ae726`](https://github.com/craigerl/aprsd/commit/d4ae72608b9d7c2da1b89c20bf58fcae796f552d)
|
112
|
+
- Added __contains__ to threadlist [`d94a3e7`](https://github.com/craigerl/aprsd/commit/d94a3e7b908fd313a8af0c71a4928114ea83cf35)
|
113
|
+
- Update healthcheck [`7fb0c74`](https://github.com/craigerl/aprsd/commit/7fb0c7454ea9fe4cd5886989e9890ef70a789fdf)
|
114
|
+
- Remove dataclasses from requirements [`db73a54`](https://github.com/craigerl/aprsd/commit/db73a540baf0c8d658d1f9efa08ba9f085ce01d4)
|
115
|
+
- Update requirements.dev [`0d8a1ac`](https://github.com/craigerl/aprsd/commit/0d8a1ac33441cf85270423b80264110fe9286754)
|
116
|
+
- Added new acked property to the core Packet [`3c058f3`](https://github.com/craigerl/aprsd/commit/3c058f3e7b89227c613234f8ae91687fbdf19ae1)
|
117
|
+
- Fixed some pep8 failures [`63bcd41`](https://github.com/craigerl/aprsd/commit/63bcd4139bb40718152b66002dfa45f236c54e11)
|
118
|
+
- Update Changelog for 3.4.4 [`bc709b3`](https://github.com/craigerl/aprsd/commit/bc709b377c423412e9093e8ecc78e561031023b8)
|
119
|
+
|
120
|
+
#### [3.4.3](https://github.com/craigerl/aprsd/compare/v3.4.3...3.4.3)
|
121
|
+
|
122
|
+
> 18 November 2024
|
123
|
+
|
7
124
|
#### [v3.4.3](https://github.com/craigerl/aprsd/compare/v3.4.2...v3.4.3)
|
8
125
|
|
9
126
|
> 29 October 2024
|
10
127
|
|
11
128
|
- Change virtual env name to .venv [`882e907`](https://github.com/craigerl/aprsd/commit/882e90767dd967a4d1018c834a074b33ca9dcb06)
|
12
129
|
- Fixed issue in send_message command [`ecf30d3`](https://github.com/craigerl/aprsd/commit/ecf30d33978e26150bf41ff60b97ff00ab5d5f96)
|
130
|
+
- Update Changelog for v3.4.3 [`5780626`](https://github.com/craigerl/aprsd/commit/578062648bb1c188e578c88000852e477a429364)
|
13
131
|
|
14
132
|
#### [v3.4.2](https://github.com/craigerl/aprsd/compare/v3.4.1...v3.4.2)
|
15
133
|
|
@@ -32,18 +32,18 @@ docs: changelog
|
|
32
32
|
mv ChangeLog.rst docs/changelog.rst
|
33
33
|
tox -edocs
|
34
34
|
|
35
|
-
clean: clean-
|
35
|
+
clean: clean-dev clean-test clean-build clean-pyc ## remove all build, test, coverage and Python artifacts
|
36
36
|
|
37
37
|
clean-build: ## remove build artifacts
|
38
38
|
rm -fr build/
|
39
39
|
rm -fr dist/
|
40
40
|
rm -fr .eggs/
|
41
41
|
find . -name '*.egg-info' -exec rm -fr {} +
|
42
|
-
find . -name '*.egg' -exec rm -
|
42
|
+
find . -name '*.egg' -exec rm -fr {} +
|
43
43
|
|
44
44
|
clean-pyc: ## remove Python file artifacts
|
45
|
-
find . -name '*.pyc' -exec rm -
|
46
|
-
find . -name '*.pyo' -exec rm -
|
45
|
+
find . -name '*.pyc' -exec rm -fr {} +
|
46
|
+
find . -name '*.pyo' -exec rm -fr {} +
|
47
47
|
find . -name '__pycache__' -exec rm -fr {} +
|
48
48
|
|
49
49
|
clean-test: ## remove test and coverage artifacts
|
aprsd-4.0.0/PKG-INFO
ADDED
@@ -0,0 +1,293 @@
|
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: aprsd
|
3
|
+
Version: 4.0.0
|
4
|
+
Summary: APRSd is a APRS-IS server that can be used to connect to APRS-IS and send and receive APRS packets.
|
5
|
+
Author-email: Craig Lamparter <craig@craiger.org>, "Walter A. Boring IV" <waboring@hemna.com>, Emre Saglam <emresaglam@gmail.com>, Jason Martin <jhmartin@toger.us>, John <johng42@users.noreply.github.com>, Martiros Shakhzadyan <vrzh@vrzh.net>, Zoe Moore <zoenb@mailbox.org>, ranguli <hello@joshmurphy.ca>
|
6
|
+
Maintainer-email: Craig Lamparter <craig@craiger.org>, "Walter A. Boring IV" <waboring@hemna.com>
|
7
|
+
License:
|
8
|
+
Apache License
|
9
|
+
Version 2.0, January 2004
|
10
|
+
http://www.apache.org/licenses/
|
11
|
+
|
12
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
13
|
+
|
14
|
+
1. Definitions.
|
15
|
+
|
16
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
17
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
18
|
+
|
19
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
20
|
+
the copyright owner that is granting the License.
|
21
|
+
|
22
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
23
|
+
other entities that control, are controlled by, or are under common
|
24
|
+
control with that entity. For the purposes of this definition,
|
25
|
+
"control" means (i) the power, direct or indirect, to cause the
|
26
|
+
direction or management of such entity, whether by contract or
|
27
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
28
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
29
|
+
|
30
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
31
|
+
exercising permissions granted by this License.
|
32
|
+
|
33
|
+
"Source" form shall mean the preferred form for making modifications,
|
34
|
+
including but not limited to software source code, documentation
|
35
|
+
source, and configuration files.
|
36
|
+
|
37
|
+
"Object" form shall mean any form resulting from mechanical
|
38
|
+
transformation or translation of a Source form, including but
|
39
|
+
not limited to compiled object code, generated documentation,
|
40
|
+
and conversions to other media types.
|
41
|
+
|
42
|
+
"Work" shall mean the work of authorship, whether in Source or
|
43
|
+
Object form, made available under the License, as indicated by a
|
44
|
+
copyright notice that is included in or attached to the work
|
45
|
+
(an example is provided in the Appendix below).
|
46
|
+
|
47
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
48
|
+
form, that is based on (or derived from) the Work and for which the
|
49
|
+
editorial revisions, annotations, elaborations, or other modifications
|
50
|
+
represent, as a whole, an original work of authorship. For the purposes
|
51
|
+
of this License, Derivative Works shall not include works that remain
|
52
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
53
|
+
the Work and Derivative Works thereof.
|
54
|
+
|
55
|
+
"Contribution" shall mean any work of authorship, including
|
56
|
+
the original version of the Work and any modifications or additions
|
57
|
+
to that Work or Derivative Works thereof, that is intentionally
|
58
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
59
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
60
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
61
|
+
means any form of electronic, verbal, or written communication sent
|
62
|
+
to the Licensor or its representatives, including but not limited to
|
63
|
+
communication on electronic mailing lists, source code control systems,
|
64
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
65
|
+
Licensor for the purpose of discussing and improving the Work, but
|
66
|
+
excluding communication that is conspicuously marked or otherwise
|
67
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
68
|
+
|
69
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
70
|
+
on behalf of whom a Contribution has been received by Licensor and
|
71
|
+
subsequently incorporated within the Work.
|
72
|
+
|
73
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
copyright license to reproduce, prepare Derivative Works of,
|
77
|
+
publicly display, publicly perform, sublicense, and distribute the
|
78
|
+
Work and such Derivative Works in Source or Object form.
|
79
|
+
|
80
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
81
|
+
this License, each Contributor hereby grants to You a perpetual,
|
82
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
83
|
+
(except as stated in this section) patent license to make, have made,
|
84
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
85
|
+
where such license applies only to those patent claims licensable
|
86
|
+
by such Contributor that are necessarily infringed by their
|
87
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
88
|
+
with the Work to which such Contribution(s) was submitted. If You
|
89
|
+
institute patent litigation against any entity (including a
|
90
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
91
|
+
or a Contribution incorporated within the Work constitutes direct
|
92
|
+
or contributory patent infringement, then any patent licenses
|
93
|
+
granted to You under this License for that Work shall terminate
|
94
|
+
as of the date such litigation is filed.
|
95
|
+
|
96
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
97
|
+
Work or Derivative Works thereof in any medium, with or without
|
98
|
+
modifications, and in Source or Object form, provided that You
|
99
|
+
meet the following conditions:
|
100
|
+
|
101
|
+
(a) You must give any other recipients of the Work or
|
102
|
+
Derivative Works a copy of this License; and
|
103
|
+
|
104
|
+
(b) You must cause any modified files to carry prominent notices
|
105
|
+
stating that You changed the files; and
|
106
|
+
|
107
|
+
(c) You must retain, in the Source form of any Derivative Works
|
108
|
+
that You distribute, all copyright, patent, trademark, and
|
109
|
+
attribution notices from the Source form of the Work,
|
110
|
+
excluding those notices that do not pertain to any part of
|
111
|
+
the Derivative Works; and
|
112
|
+
|
113
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
114
|
+
distribution, then any Derivative Works that You distribute must
|
115
|
+
include a readable copy of the attribution notices contained
|
116
|
+
within such NOTICE file, excluding those notices that do not
|
117
|
+
pertain to any part of the Derivative Works, in at least one
|
118
|
+
of the following places: within a NOTICE text file distributed
|
119
|
+
as part of the Derivative Works; within the Source form or
|
120
|
+
documentation, if provided along with the Derivative Works; or,
|
121
|
+
within a display generated by the Derivative Works, if and
|
122
|
+
wherever such third-party notices normally appear. The contents
|
123
|
+
of the NOTICE file are for informational purposes only and
|
124
|
+
do not modify the License. You may add Your own attribution
|
125
|
+
notices within Derivative Works that You distribute, alongside
|
126
|
+
or as an addendum to the NOTICE text from the Work, provided
|
127
|
+
that such additional attribution notices cannot be construed
|
128
|
+
as modifying the License.
|
129
|
+
|
130
|
+
You may add Your own copyright statement to Your modifications and
|
131
|
+
may provide additional or different license terms and conditions
|
132
|
+
for use, reproduction, or distribution of Your modifications, or
|
133
|
+
for any such Derivative Works as a whole, provided Your use,
|
134
|
+
reproduction, and distribution of the Work otherwise complies with
|
135
|
+
the conditions stated in this License.
|
136
|
+
|
137
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
138
|
+
any Contribution intentionally submitted for inclusion in the Work
|
139
|
+
by You to the Licensor shall be under the terms and conditions of
|
140
|
+
this License, without any additional terms or conditions.
|
141
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
142
|
+
the terms of any separate license agreement you may have executed
|
143
|
+
with Licensor regarding such Contributions.
|
144
|
+
|
145
|
+
6. Trademarks. This License does not grant permission to use the trade
|
146
|
+
names, trademarks, service marks, or product names of the Licensor,
|
147
|
+
except as required for reasonable and customary use in describing the
|
148
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
149
|
+
|
150
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
151
|
+
agreed to in writing, Licensor provides the Work (and each
|
152
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
153
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
154
|
+
implied, including, without limitation, any warranties or conditions
|
155
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
156
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
157
|
+
appropriateness of using or redistributing the Work and assume any
|
158
|
+
risks associated with Your exercise of permissions under this License.
|
159
|
+
|
160
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
161
|
+
whether in tort (including negligence), contract, or otherwise,
|
162
|
+
unless required by applicable law (such as deliberate and grossly
|
163
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
164
|
+
liable to You for damages, including any direct, indirect, special,
|
165
|
+
incidental, or consequential damages of any character arising as a
|
166
|
+
result of this License or out of the use or inability to use the
|
167
|
+
Work (including but not limited to damages for loss of goodwill,
|
168
|
+
work stoppage, computer failure or malfunction, or any and all
|
169
|
+
other commercial damages or losses), even if such Contributor
|
170
|
+
has been advised of the possibility of such damages.
|
171
|
+
|
172
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
173
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
174
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
175
|
+
or other liability obligations and/or rights consistent with this
|
176
|
+
License. However, in accepting such obligations, You may act only
|
177
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
178
|
+
of any other Contributor, and only if You agree to indemnify,
|
179
|
+
defend, and hold each Contributor harmless for any liability
|
180
|
+
incurred by, or claims asserted against, such Contributor by reason
|
181
|
+
of your accepting any such warranty or additional liability.
|
182
|
+
|
183
|
+
Project-URL: Homepage, https://github.com/craigerl/aprsd
|
184
|
+
Project-URL: Bug Reports, https://github.com/craigerl/aprsd/issues
|
185
|
+
Project-URL: Source, https://github.com/craigerl/aprsd
|
186
|
+
Keywords: aprs,aprs-is,aprsd,aprsd-server,aprsd-client,aprsd-socket,aprsd-socket-server,aprsd-socket-client
|
187
|
+
Classifier: Development Status :: 5 - Production/Stable
|
188
|
+
Classifier: Environment :: Console
|
189
|
+
Classifier: Intended Audience :: Developers
|
190
|
+
Classifier: Intended Audience :: End Users/Desktop
|
191
|
+
Classifier: Intended Audience :: Information Technology
|
192
|
+
Classifier: Topic :: Communications :: Ham Radio
|
193
|
+
Classifier: Topic :: Internet
|
194
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
195
|
+
Classifier: Programming Language :: Python :: 3
|
196
|
+
Classifier: Programming Language :: Python :: 3.8
|
197
|
+
Classifier: Programming Language :: Python :: 3.9
|
198
|
+
Classifier: Programming Language :: Python :: 3.10
|
199
|
+
Classifier: Programming Language :: Python :: 3.11
|
200
|
+
Requires-Python: >=3.10
|
201
|
+
Description-Content-Type: text/x-rst
|
202
|
+
License-File: LICENSE
|
203
|
+
License-File: AUTHORS
|
204
|
+
Requires-Dist: aprslib==0.7.2
|
205
|
+
Requires-Dist: attrs==24.3.0
|
206
|
+
Requires-Dist: ax253==0.1.5.post1
|
207
|
+
Requires-Dist: bitarray==3.0.0
|
208
|
+
Requires-Dist: certifi==2024.12.14
|
209
|
+
Requires-Dist: charset-normalizer==3.4.1
|
210
|
+
Requires-Dist: click==8.1.8
|
211
|
+
Requires-Dist: commonmark==0.9.1
|
212
|
+
Requires-Dist: dataclasses-json==0.6.7
|
213
|
+
Requires-Dist: debtcollector==3.0.0
|
214
|
+
Requires-Dist: haversine==2.9.0
|
215
|
+
Requires-Dist: idna==3.10
|
216
|
+
Requires-Dist: importlib-metadata==8.6.1
|
217
|
+
Requires-Dist: kiss3==8.0.0
|
218
|
+
Requires-Dist: loguru==0.7.3
|
219
|
+
Requires-Dist: marshmallow==3.26.0
|
220
|
+
Requires-Dist: mypy-extensions==1.0.0
|
221
|
+
Requires-Dist: netaddr==1.3.0
|
222
|
+
Requires-Dist: oslo-config==9.7.0
|
223
|
+
Requires-Dist: oslo-i18n==6.5.0
|
224
|
+
Requires-Dist: packaging==24.2
|
225
|
+
Requires-Dist: pbr==6.1.0
|
226
|
+
Requires-Dist: pluggy==1.5.0
|
227
|
+
Requires-Dist: pygments==2.19.1
|
228
|
+
Requires-Dist: pyserial==3.5
|
229
|
+
Requires-Dist: pyserial-asyncio==0.6
|
230
|
+
Requires-Dist: pytz==2024.2
|
231
|
+
Requires-Dist: pyyaml==6.0.2
|
232
|
+
Requires-Dist: requests==2.32.3
|
233
|
+
Requires-Dist: rfc3986==2.0.0
|
234
|
+
Requires-Dist: rich==12.6.0
|
235
|
+
Requires-Dist: rush==2021.4.0
|
236
|
+
Requires-Dist: stevedore==5.4.0
|
237
|
+
Requires-Dist: thesmuggler==1.0.1
|
238
|
+
Requires-Dist: timeago==1.0.16
|
239
|
+
Requires-Dist: typing-extensions==4.12.2
|
240
|
+
Requires-Dist: typing-inspect==0.9.0
|
241
|
+
Requires-Dist: tzlocal==5.2
|
242
|
+
Requires-Dist: update-checker==0.18.0
|
243
|
+
Requires-Dist: urllib3==2.3.0
|
244
|
+
Requires-Dist: wrapt==1.17.2
|
245
|
+
Requires-Dist: zipp==3.21.0
|
246
|
+
Provides-Extra: dev
|
247
|
+
Requires-Dist: alabaster==1.0.0; extra == "dev"
|
248
|
+
Requires-Dist: babel==2.16.0; extra == "dev"
|
249
|
+
Requires-Dist: build==1.2.2.post1; extra == "dev"
|
250
|
+
Requires-Dist: cachetools==5.5.1; extra == "dev"
|
251
|
+
Requires-Dist: certifi==2024.12.14; extra == "dev"
|
252
|
+
Requires-Dist: cfgv==3.4.0; extra == "dev"
|
253
|
+
Requires-Dist: chardet==5.2.0; extra == "dev"
|
254
|
+
Requires-Dist: charset-normalizer==3.4.1; extra == "dev"
|
255
|
+
Requires-Dist: click==8.1.8; extra == "dev"
|
256
|
+
Requires-Dist: colorama==0.4.6; extra == "dev"
|
257
|
+
Requires-Dist: distlib==0.3.9; extra == "dev"
|
258
|
+
Requires-Dist: docutils==0.21.2; extra == "dev"
|
259
|
+
Requires-Dist: filelock==3.17.0; extra == "dev"
|
260
|
+
Requires-Dist: identify==2.6.6; extra == "dev"
|
261
|
+
Requires-Dist: idna==3.10; extra == "dev"
|
262
|
+
Requires-Dist: imagesize==1.4.1; extra == "dev"
|
263
|
+
Requires-Dist: jinja2==3.1.5; extra == "dev"
|
264
|
+
Requires-Dist: m2r==0.3.1; extra == "dev"
|
265
|
+
Requires-Dist: markupsafe==3.0.2; extra == "dev"
|
266
|
+
Requires-Dist: mistune==0.8.4; extra == "dev"
|
267
|
+
Requires-Dist: nodeenv==1.9.1; extra == "dev"
|
268
|
+
Requires-Dist: packaging==24.2; extra == "dev"
|
269
|
+
Requires-Dist: pip==24.3.1; extra == "dev"
|
270
|
+
Requires-Dist: pip-tools==7.4.1; extra == "dev"
|
271
|
+
Requires-Dist: platformdirs==4.3.6; extra == "dev"
|
272
|
+
Requires-Dist: pluggy==1.5.0; extra == "dev"
|
273
|
+
Requires-Dist: pre-commit==4.1.0; extra == "dev"
|
274
|
+
Requires-Dist: pygments==2.19.1; extra == "dev"
|
275
|
+
Requires-Dist: pyproject-api==1.9.0; extra == "dev"
|
276
|
+
Requires-Dist: pyproject-hooks==1.2.0; extra == "dev"
|
277
|
+
Requires-Dist: pyyaml==6.0.2; extra == "dev"
|
278
|
+
Requires-Dist: requests==2.32.3; extra == "dev"
|
279
|
+
Requires-Dist: setuptools==75.8.0; extra == "dev"
|
280
|
+
Requires-Dist: snowballstemmer==2.2.0; extra == "dev"
|
281
|
+
Requires-Dist: sphinx==8.1.3; extra == "dev"
|
282
|
+
Requires-Dist: sphinxcontrib-applehelp==2.0.0; extra == "dev"
|
283
|
+
Requires-Dist: sphinxcontrib-devhelp==2.0.0; extra == "dev"
|
284
|
+
Requires-Dist: sphinxcontrib-htmlhelp==2.1.0; extra == "dev"
|
285
|
+
Requires-Dist: sphinxcontrib-jsmath==1.0.1; extra == "dev"
|
286
|
+
Requires-Dist: sphinxcontrib-qthelp==2.0.0; extra == "dev"
|
287
|
+
Requires-Dist: sphinxcontrib-serializinghtml==2.0.0; extra == "dev"
|
288
|
+
Requires-Dist: tomli==2.2.1; extra == "dev"
|
289
|
+
Requires-Dist: tox==4.24.1; extra == "dev"
|
290
|
+
Requires-Dist: typing-extensions==4.12.2; extra == "dev"
|
291
|
+
Requires-Dist: urllib3==2.3.0; extra == "dev"
|
292
|
+
Requires-Dist: virtualenv==20.29.1; extra == "dev"
|
293
|
+
Requires-Dist: wheel==0.45.1; extra == "dev"
|