aprsd 3.4.4__tar.gz → 4.0.1__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.
Files changed (233) hide show
  1. aprsd-4.0.1/.github/workflows/authors.yml +15 -0
  2. {aprsd-3.4.4 → aprsd-4.0.1}/.github/workflows/manual_build.yml +4 -5
  3. {aprsd-3.4.4 → aprsd-4.0.1}/.github/workflows/master-build.yml +6 -7
  4. {aprsd-3.4.4 → aprsd-4.0.1}/.github/workflows/python.yml +2 -2
  5. aprsd-4.0.1/.mailmap +4 -0
  6. aprsd-4.0.1/.pre-commit-config.yaml +41 -0
  7. aprsd-4.0.1/AUTHORS +1 -0
  8. aprsd-4.0.1/CONTRIBUTING.md +31 -0
  9. {aprsd-3.4.4 → aprsd-4.0.1}/ChangeLog.md +57 -0
  10. {aprsd-3.4.4 → aprsd-4.0.1}/Makefile +4 -4
  11. {aprsd-3.4.4 → aprsd-4.0.1}/PKG-INFO +307 -408
  12. aprsd-4.0.1/README.md +454 -0
  13. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/cli_helper.py +12 -5
  14. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/client/aprsis.py +31 -9
  15. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/client/base.py +13 -2
  16. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/client/drivers/aprsis.py +6 -3
  17. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/client/drivers/fake.py +15 -20
  18. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/client/factory.py +0 -2
  19. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/client/fake.py +0 -2
  20. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/client/kiss.py +17 -2
  21. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/client/stats.py +1 -3
  22. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/cmds/completion.py +7 -4
  23. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/cmds/dev.py +38 -42
  24. aprsd-4.0.1/aprsd/cmds/fetch_stats.py +308 -0
  25. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/cmds/healthcheck.py +5 -3
  26. aprsd-4.0.1/aprsd/cmds/list_plugins.py +325 -0
  27. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/cmds/listen.py +13 -9
  28. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/cmds/server.py +53 -27
  29. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/conf/__init__.py +1 -2
  30. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/conf/client.py +3 -4
  31. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/conf/common.py +19 -93
  32. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/conf/log.py +2 -4
  33. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/conf/opts.py +5 -4
  34. aprsd-4.0.1/aprsd/conf/plugin_common.py +72 -0
  35. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/exception.py +2 -0
  36. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/log/log.py +7 -46
  37. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/main.py +10 -4
  38. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/packets/__init__.py +14 -4
  39. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/packets/core.py +57 -67
  40. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/packets/log.py +8 -8
  41. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/packets/packet_list.py +9 -6
  42. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/plugin.py +22 -11
  43. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/plugins/notify.py +1 -4
  44. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/plugins/weather.py +10 -8
  45. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/stats/collector.py +5 -2
  46. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/threads/__init__.py +3 -2
  47. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/threads/aprsd.py +12 -7
  48. aprsd-3.4.4/aprsd/threads/keep_alive.py → aprsd-4.0.1/aprsd/threads/keepalive.py +14 -45
  49. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/threads/registry.py +3 -3
  50. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/threads/rx.py +9 -6
  51. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/threads/tx.py +3 -4
  52. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/utils/__init__.py +42 -10
  53. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/utils/json.py +9 -4
  54. aprsd-4.0.1/aprsd/utils/keepalive_collector.py +55 -0
  55. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/utils/trace.py +0 -2
  56. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd.egg-info/PKG-INFO +307 -408
  57. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd.egg-info/SOURCES.txt +8 -69
  58. aprsd-4.0.1/aprsd.egg-info/requires.txt +91 -0
  59. aprsd-4.0.1/aprsd_logo.png +0 -0
  60. {aprsd-3.4.4 → aprsd-4.0.1}/docker/Dockerfile +40 -30
  61. {aprsd-3.4.4 → aprsd-4.0.1}/docker/bin/admin.sh +7 -3
  62. aprsd-4.0.1/docker/bin/healthcheck.sh +22 -0
  63. {aprsd-3.4.4 → aprsd-4.0.1}/docker/bin/listen.sh +1 -1
  64. {aprsd-3.4.4 → aprsd-4.0.1}/docker/bin/run.sh +5 -3
  65. {aprsd-3.4.4 → aprsd-4.0.1}/docker/bin/setup.sh +4 -2
  66. {aprsd-3.4.4 → aprsd-4.0.1}/docs/apidoc/aprsd.cmds.rst +0 -8
  67. {aprsd-3.4.4 → aprsd-4.0.1}/docs/apidoc/aprsd.conf.rst +0 -8
  68. {aprsd-3.4.4 → aprsd-4.0.1}/docs/apidoc/aprsd.plugins.rst +0 -16
  69. {aprsd-3.4.4 → aprsd-4.0.1}/docs/apidoc/aprsd.rst +0 -17
  70. {aprsd-3.4.4 → aprsd-4.0.1}/docs/apidoc/aprsd.threads.rst +3 -11
  71. {aprsd-3.4.4 → aprsd-4.0.1}/docs/apidoc/aprsd.utils.rst +8 -0
  72. {aprsd-3.4.4 → aprsd-4.0.1}/examples/plugins/example_plugin.py +2 -3
  73. {aprsd-3.4.4 → aprsd-4.0.1}/pyproject.toml +19 -2
  74. {aprsd-3.4.4 → aprsd-4.0.1}/requirements-dev.in +0 -8
  75. aprsd-4.0.1/requirements-dev.txt +49 -0
  76. {aprsd-3.4.4 → aprsd-4.0.1}/requirements.in +1 -12
  77. aprsd-4.0.1/requirements.txt +44 -0
  78. {aprsd-3.4.4 → aprsd-4.0.1}/tests/client/test_aprsis.py +1 -0
  79. {aprsd-3.4.4 → aprsd-4.0.1}/tests/client/test_client_base.py +2 -1
  80. {aprsd-3.4.4 → aprsd-4.0.1}/tests/cmds/test_send_message.py +6 -6
  81. {aprsd-3.4.4 → aprsd-4.0.1}/tests/fake.py +0 -2
  82. {aprsd-3.4.4 → aprsd-4.0.1}/tests/plugins/test_notify.py +8 -6
  83. {aprsd-3.4.4 → aprsd-4.0.1}/tests/plugins/test_time.py +1 -3
  84. {aprsd-3.4.4 → aprsd-4.0.1}/tests/plugins/test_version.py +0 -2
  85. {aprsd-3.4.4 → aprsd-4.0.1}/tests/plugins/test_weather.py +1 -4
  86. {aprsd-3.4.4 → aprsd-4.0.1}/tests/test_packets.py +15 -7
  87. {aprsd-3.4.4 → aprsd-4.0.1}/tests/test_plugin.py +5 -7
  88. {aprsd-3.4.4 → aprsd-4.0.1}/tox.ini +16 -14
  89. aprsd-3.4.4/.pre-commit-config.yaml +0 -22
  90. aprsd-3.4.4/AUTHORS +0 -13
  91. aprsd-3.4.4/README.rst +0 -502
  92. aprsd-3.4.4/aprsd/cmds/admin.py +0 -57
  93. aprsd-3.4.4/aprsd/cmds/fetch_stats.py +0 -311
  94. aprsd-3.4.4/aprsd/cmds/list_plugins.py +0 -319
  95. aprsd-3.4.4/aprsd/cmds/webchat.py +0 -662
  96. aprsd-3.4.4/aprsd/conf/plugin_common.py +0 -182
  97. aprsd-3.4.4/aprsd/conf/plugin_email.py +0 -105
  98. aprsd-3.4.4/aprsd/plugins/email.py +0 -715
  99. aprsd-3.4.4/aprsd/plugins/location.py +0 -181
  100. aprsd-3.4.4/aprsd/threads/log_monitor.py +0 -121
  101. aprsd-3.4.4/aprsd/web/admin/static/css/index.css +0 -84
  102. aprsd-3.4.4/aprsd/web/admin/static/css/prism.css +0 -4
  103. aprsd-3.4.4/aprsd/web/admin/static/css/tabs.css +0 -35
  104. aprsd-3.4.4/aprsd/web/admin/static/images/Untitled.png +0 -0
  105. aprsd-3.4.4/aprsd/web/admin/static/images/aprs-symbols-16-0.png +0 -0
  106. aprsd-3.4.4/aprsd/web/admin/static/images/aprs-symbols-16-1.png +0 -0
  107. aprsd-3.4.4/aprsd/web/admin/static/images/aprs-symbols-64-0.png +0 -0
  108. aprsd-3.4.4/aprsd/web/admin/static/images/aprs-symbols-64-1.png +0 -0
  109. aprsd-3.4.4/aprsd/web/admin/static/images/aprs-symbols-64-2.png +0 -0
  110. aprsd-3.4.4/aprsd/web/admin/static/js/charts.js +0 -235
  111. aprsd-3.4.4/aprsd/web/admin/static/js/echarts.js +0 -465
  112. aprsd-3.4.4/aprsd/web/admin/static/js/logs.js +0 -26
  113. aprsd-3.4.4/aprsd/web/admin/static/js/main.js +0 -231
  114. aprsd-3.4.4/aprsd/web/admin/static/js/prism.js +0 -12
  115. aprsd-3.4.4/aprsd/web/admin/static/js/send-message.js +0 -114
  116. aprsd-3.4.4/aprsd/web/admin/static/js/tabs.js +0 -28
  117. aprsd-3.4.4/aprsd/web/admin/templates/index.html +0 -196
  118. aprsd-3.4.4/aprsd/web/chat/static/css/chat.css +0 -115
  119. aprsd-3.4.4/aprsd/web/chat/static/css/index.css +0 -66
  120. aprsd-3.4.4/aprsd/web/chat/static/css/style.css.map +0 -1
  121. aprsd-3.4.4/aprsd/web/chat/static/css/tabs.css +0 -41
  122. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/bootstrap.min.css +0 -6
  123. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/font.woff2 +0 -0
  124. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/google-fonts.css +0 -23
  125. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/jquery-ui.css +0 -1311
  126. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/jquery.toast.css +0 -28
  127. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff +0 -0
  128. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff2 +0 -0
  129. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff +0 -0
  130. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff2 +0 -0
  131. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff +0 -0
  132. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff2 +0 -0
  133. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff +0 -0
  134. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff2 +0 -0
  135. aprsd-3.4.4/aprsd/web/chat/static/images/Untitled.png +0 -0
  136. aprsd-3.4.4/aprsd/web/chat/static/images/aprs-symbols-16-0.png +0 -0
  137. aprsd-3.4.4/aprsd/web/chat/static/images/aprs-symbols-16-1.png +0 -0
  138. aprsd-3.4.4/aprsd/web/chat/static/images/aprs-symbols-64-0.png +0 -0
  139. aprsd-3.4.4/aprsd/web/chat/static/images/aprs-symbols-64-1.png +0 -0
  140. aprsd-3.4.4/aprsd/web/chat/static/images/aprs-symbols-64-2.png +0 -0
  141. aprsd-3.4.4/aprsd/web/chat/static/images/globe.svg +0 -3
  142. aprsd-3.4.4/aprsd/web/chat/static/js/gps.js +0 -84
  143. aprsd-3.4.4/aprsd/web/chat/static/js/main.js +0 -45
  144. aprsd-3.4.4/aprsd/web/chat/static/js/send-message.js +0 -612
  145. aprsd-3.4.4/aprsd/web/chat/static/js/tabs.js +0 -28
  146. aprsd-3.4.4/aprsd/web/chat/static/js/upstream/bootstrap.bundle.min.js +0 -7
  147. aprsd-3.4.4/aprsd/web/chat/static/js/upstream/jquery-3.7.1.min.js +0 -2
  148. aprsd-3.4.4/aprsd/web/chat/static/js/upstream/jquery-ui.min.js +0 -13
  149. aprsd-3.4.4/aprsd/web/chat/static/js/upstream/jquery.toast.js +0 -374
  150. aprsd-3.4.4/aprsd/web/chat/static/js/upstream/semantic.min.js +0 -11
  151. aprsd-3.4.4/aprsd/web/chat/static/js/upstream/socket.io.min.js +0 -7
  152. aprsd-3.4.4/aprsd/web/chat/templates/index.html +0 -139
  153. aprsd-3.4.4/aprsd/wsgi.py +0 -322
  154. aprsd-3.4.4/aprsd.egg-info/requires.txt +0 -144
  155. aprsd-3.4.4/docs/apidoc/aprsd.web.admin.rst +0 -10
  156. aprsd-3.4.4/docs/apidoc/aprsd.web.rst +0 -18
  157. aprsd-3.4.4/requirements-dev.txt +0 -86
  158. aprsd-3.4.4/requirements.txt +0 -72
  159. aprsd-3.4.4/tests/cmds/__init__.py +0 -0
  160. aprsd-3.4.4/tests/cmds/test_webchat.py +0 -90
  161. aprsd-3.4.4/tests/plugins/__init__.py +0 -0
  162. aprsd-3.4.4/tests/plugins/test_location.py +0 -109
  163. aprsd-3.4.4/tests/test_email.py +0 -32
  164. aprsd-3.4.4/tests/test_main.py +0 -16
  165. {aprsd-3.4.4 → aprsd-4.0.1}/.coveragerc +0 -0
  166. {aprsd-3.4.4 → aprsd-4.0.1}/.github/workflows/codeql.yml +0 -0
  167. {aprsd-3.4.4 → aprsd-4.0.1}/.github/workflows/release_build.yml +0 -0
  168. {aprsd-3.4.4 → aprsd-4.0.1}/.readthedocs.yaml +0 -0
  169. {aprsd-3.4.4 → aprsd-4.0.1}/INSTALL.txt +0 -0
  170. {aprsd-3.4.4 → aprsd-4.0.1}/LICENSE +0 -0
  171. {aprsd-3.4.4 → aprsd-4.0.1}/MANIFEST.in +0 -0
  172. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/__init__.py +0 -0
  173. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/client/__init__.py +0 -0
  174. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/client/drivers/__init__.py +0 -0
  175. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/client/drivers/kiss.py +0 -0
  176. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/cmds/__init__.py +0 -0
  177. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/cmds/send_message.py +0 -0
  178. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/log/__init__.py +0 -0
  179. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/packets/collector.py +0 -0
  180. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/packets/seen_list.py +0 -0
  181. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/packets/tracker.py +0 -0
  182. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/packets/watch_list.py +0 -0
  183. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/plugin_utils.py +0 -0
  184. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/plugins/__init__.py +0 -0
  185. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/plugins/fortune.py +0 -0
  186. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/plugins/ping.py +0 -0
  187. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/plugins/time.py +0 -0
  188. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/plugins/version.py +0 -0
  189. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/stats/__init__.py +0 -0
  190. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/stats/app.py +0 -0
  191. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/threads/stats.py +2 -2
  192. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/utils/counter.py +0 -0
  193. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/utils/fuzzyclock.py +0 -0
  194. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/utils/objectstore.py +0 -0
  195. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd/utils/ring_buffer.py +0 -0
  196. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd-lnav.json +0 -0
  197. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd.egg-info/dependency_links.txt +0 -0
  198. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd.egg-info/entry_points.txt +0 -0
  199. {aprsd-3.4.4 → aprsd-4.0.1}/aprsd.egg-info/top_level.txt +0 -0
  200. {aprsd-3.4.4 → aprsd-4.0.1}/docker/build.sh +0 -0
  201. {aprsd-3.4.4 → aprsd-4.0.1}/docker/docker-compose.yml +0 -0
  202. {aprsd-3.4.4 → aprsd-4.0.1}/docs/_static/.keep +0 -0
  203. {aprsd-3.4.4 → aprsd-4.0.1}/docs/_static/aprsd_overview.png +0 -0
  204. {aprsd-3.4.4 → aprsd-4.0.1}/docs/_static/aprsd_overview.svg +0 -0
  205. {aprsd-3.4.4 → aprsd-4.0.1}/docs/_templates/.keep +0 -0
  206. {aprsd-3.4.4 → aprsd-4.0.1}/docs/apidoc/aprsd.client.drivers.rst +0 -0
  207. {aprsd-3.4.4 → aprsd-4.0.1}/docs/apidoc/aprsd.client.rst +0 -0
  208. {aprsd-3.4.4 → aprsd-4.0.1}/docs/apidoc/aprsd.log.rst +0 -0
  209. {aprsd-3.4.4 → aprsd-4.0.1}/docs/apidoc/aprsd.packets.rst +0 -0
  210. {aprsd-3.4.4 → aprsd-4.0.1}/docs/apidoc/aprsd.stats.rst +0 -0
  211. {aprsd-3.4.4 → aprsd-4.0.1}/docs/apidoc/modules.rst +0 -0
  212. {aprsd-3.4.4 → aprsd-4.0.1}/docs/aprsd.drawio +0 -0
  213. {aprsd-3.4.4 → aprsd-4.0.1}/docs/changelog.rst +0 -0
  214. {aprsd-3.4.4 → aprsd-4.0.1}/docs/clean_docs.py +0 -0
  215. {aprsd-3.4.4 → aprsd-4.0.1}/docs/conf.py +0 -0
  216. {aprsd-3.4.4 → aprsd-4.0.1}/docs/configure.rst +0 -0
  217. {aprsd-3.4.4 → aprsd-4.0.1}/docs/index.rst +0 -0
  218. {aprsd-3.4.4 → aprsd-4.0.1}/docs/install.rst +0 -0
  219. {aprsd-3.4.4 → aprsd-4.0.1}/docs/links.rst +0 -0
  220. {aprsd-3.4.4 → aprsd-4.0.1}/docs/plugin.rst +0 -0
  221. {aprsd-3.4.4 → aprsd-4.0.1}/docs/readme.rst +0 -0
  222. {aprsd-3.4.4 → aprsd-4.0.1}/docs/server.rst +0 -0
  223. {aprsd-3.4.4/aprsd/web → aprsd-4.0.1/examples/plugins}/__init__.py +0 -0
  224. {aprsd-3.4.4 → aprsd-4.0.1}/gray.conf +0 -0
  225. {aprsd-3.4.4 → aprsd-4.0.1}/setup.cfg +0 -0
  226. {aprsd-3.4.4 → aprsd-4.0.1}/setup.py +0 -0
  227. {aprsd-3.4.4/aprsd/web/admin → aprsd-4.0.1/tests}/__init__.py +0 -0
  228. {aprsd-3.4.4 → aprsd-4.0.1}/tests/client/test_factory.py +0 -0
  229. {aprsd-3.4.4/examples/plugins → aprsd-4.0.1/tests/cmds}/__init__.py +0 -0
  230. {aprsd-3.4.4/tests → aprsd-4.0.1/tests/plugins}/__init__.py +0 -0
  231. {aprsd-3.4.4 → aprsd-4.0.1}/tests/plugins/test_fortune.py +0 -0
  232. {aprsd-3.4.4 → aprsd-4.0.1}/tests/plugins/test_ping.py +0 -0
  233. {aprsd-3.4.4 → aprsd-4.0.1}/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@v2
32
+ uses: docker/setup-qemu-action@v3
34
33
  - name: Setup Docker Buildx
35
- uses: docker/setup-buildx-action@v2
34
+ uses: docker/setup-buildx-action@v3
36
35
  - name: Login to Docker HUB
37
- uses: docker/login-action@v2
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@v3
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
- - "v*.*.*"
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@v2
42
+ uses: docker/setup-qemu-action@v3
44
43
  - name: Setup Docker Buildx
45
- uses: docker/setup-buildx-action@v2
44
+ uses: docker/setup-buildx-action@v3
46
45
  - name: Login to Docker HUB
47
- uses: docker/login-action@v2
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@v3
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@v2
12
+ - uses: actions/checkout@v4
13
13
  - name: Set up Python ${{ matrix.python-version }}
14
- uses: actions/setup-python@v2
14
+ uses: actions/setup-python@v5
15
15
  with:
16
16
  python-version: ${{ matrix.python-version }}
17
17
  - name: Install dependencies
aprsd-4.0.1/.mailmap ADDED
@@ -0,0 +1,4 @@
1
+ Craig Lamparter <craig@craiger.org> <craiger@hpe.com>
2
+ Craig Lamparter <craig@craiger.org> craigerl <craig@craiger.org>
3
+ Craig Lamparter <craig@craiger.org> craigerl <craiger@hpe.com>
4
+ Walter A. Boring IV <waboring@hemna.com> Hemna <waboring@hemna.com>
@@ -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.1/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,6 +4,62 @@ 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.1](https://github.com/craigerl/aprsd/compare/4.0.0...4.0.1)
8
+
9
+ > 24 January 2025
10
+
11
+ - Update pyproject for README.rst -&gt; md [`e080394`](https://github.com/craigerl/aprsd/commit/e08039431ebde92a162ab422c05391dc55d3d3fa)
12
+
13
+ ### [4.0.0](https://github.com/craigerl/aprsd/compare/3.4.4...4.0.0)
14
+
15
+ > 24 January 2025
16
+
17
+ - Migrate admin web out of aprsd. [`#183`](https://github.com/craigerl/aprsd/pull/183)
18
+ - Remove webchat as a built in command. [`8f8887f`](https://github.com/craigerl/aprsd/commit/8f8887f0e496d960b0e71275893b75408a40fdb2)
19
+ - Remove email plugin [`0880a35`](https://github.com/craigerl/aprsd/commit/0880a356e6df1a0924cbf6e815e68cba5f5c6cf1)
20
+ - Fixed make clean [`ae28dbb`](https://github.com/craigerl/aprsd/commit/ae28dbb0e6bc216bf78c0bd9d7804f57b39091d1)
21
+ - removed email reference [`fcd1629`](https://github.com/craigerl/aprsd/commit/fcd1629fdebb485fc763e19d73bfdafc10de6251)
22
+ - Removed more email references. [`f0c0260`](https://github.com/craigerl/aprsd/commit/f0c02606ebfc5170b80b55c73de191d27a8778a0)
23
+ - Removed LocationPlugin from aprsd core [`3bba8a1`](https://github.com/craigerl/aprsd/commit/3bba8a19da88b0912064cea786bc9f8203038946)
24
+ - Include haversine library [`bbdbb9a`](https://github.com/craigerl/aprsd/commit/bbdbb9aba189d536497ea3cd7d30911fe3d9d706)
25
+ - Update Makefile [`caa4bb8`](https://github.com/craigerl/aprsd/commit/caa4bb8bd01cbd2e02024d75e1c8af97acf6c657)
26
+ - Enable packet stats for listen command in Docker [`e5d8796`](https://github.com/craigerl/aprsd/commit/e5d8796cda1a007aa868c760b96b50b364351519)
27
+ - Added new KeepAliveCollector [`30d1eb5`](https://github.com/craigerl/aprsd/commit/30d1eb57dd249c609f5b092d8084c40cadda7bd9)
28
+ - Changed to ruff [`72d068c`](https://github.com/craigerl/aprsd/commit/72d068c0b8944c8c9eed494fc23de8d7179ee09b)
29
+ - Changed README.rst -&gt; README.md [`b1a830d`](https://github.com/craigerl/aprsd/commit/b1a830d54e9dec473074b34f9566f161bdec0030)
30
+ - fixed list-plugins [`ec1adf4`](https://github.com/craigerl/aprsd/commit/ec1adf418203fc7d1a8fb175a075c73fa27d772b)
31
+ - Updated README.md [`fd74405`](https://github.com/craigerl/aprsd/commit/fd74405b5fb2ec3d0b432e95d715a8934d76dcd8)
32
+ - updated workflow [`df14eb8`](https://github.com/craigerl/aprsd/commit/df14eb8f288aa8cd8cab9b9263ca64093bb63c34)
33
+ - Some cleanup with list plugins [`5274c5d`](https://github.com/craigerl/aprsd/commit/5274c5dc563b40f87436378558ad843517be6939)
34
+ - Updated README.md [`275e335`](https://github.com/craigerl/aprsd/commit/275e33538db7f014eeb02deddd76bfbb63516871)
35
+ - removed BeautifulSoup usage [`a21432f`](https://github.com/craigerl/aprsd/commit/a21432fb249577489795e8a9f5d969b63c2af716)
36
+ - updated github workflows [`e3a7e7f`](https://github.com/craigerl/aprsd/commit/e3a7e7fb8a8448f7893fbe3f8cf7e876a5e2ff58)
37
+ - updated requirements-dev [`fbec716`](https://github.com/craigerl/aprsd/commit/fbec7168eb37621c0f3ca54274148704c857f506)
38
+ - updated requirements [`7f2c1d7`](https://github.com/craigerl/aprsd/commit/7f2c1d712417b55cd3535888d18d41c6a00e4d07)
39
+ - updated plugin example [`0073865`](https://github.com/craigerl/aprsd/commit/007386505ab539200b8eef438250bc73dac0079f)
40
+ - updated docs rst files [`3cd9bfa`](https://github.com/craigerl/aprsd/commit/3cd9bfa7bb79fb2ebaad7d921c7d9fd2128392f3)
41
+ - added authors.yml [`c8735c2`](https://github.com/craigerl/aprsd/commit/c8735c257a32b31974508c2ed9c1cdc8848b5150)
42
+ - updated action versions [`7702d68`](https://github.com/craigerl/aprsd/commit/7702d68cf722746952b94782ac4ed5cba935d53b)
43
+ - update to py 3.10 [`3ee422b`](https://github.com/craigerl/aprsd/commit/3ee422b5c9f79e9ee2d757abd1de9b9f2d0fc52e)
44
+ - Added .mailmap [`8d98546`](https://github.com/craigerl/aprsd/commit/8d9854605584fa35117af888fe219df610fb7cb4)
45
+ - updated tools in pre-commit [`e4f82d6`](https://github.com/craigerl/aprsd/commit/e4f82d6054d4d859023423bccdd5c402d7a83494)
46
+ - some cleanup [`e332d7c`](https://github.com/craigerl/aprsd/commit/e332d7c9d046066e2686ea0522ae06b86d2f162d)
47
+ - Added activity to README [`cdd297c`](https://github.com/craigerl/aprsd/commit/cdd297c5bbc8b93f4739f5850a3e5971ce8baeba)
48
+ - Added star history to readme [`02e2940`](https://github.com/craigerl/aprsd/commit/02e29405ce2f8310e4f87f68498dfd6575c2e43b)
49
+ - removed pytest from README [`1cba31f`](https://github.com/craigerl/aprsd/commit/1cba31f0ac9bd5ee532721a909fc752f023f3b06)
50
+ - Updated Docker for using alpine and uv [`24db814`](https://github.com/craigerl/aprsd/commit/24db814c82c9bb6634566d7428603bf7a9ae37d1)
51
+ - Update the admin and setup.sh for container [`044ea4c`](https://github.com/craigerl/aprsd/commit/044ea4cc9a0059101851d6e722e986ee236833e8)
52
+ - added healthcheck.sh [`1054999`](https://github.com/craigerl/aprsd/commit/10549995686b08e4c166f780efdec5bdae496cab)
53
+ - updated healthcheck.sh [`dabb48c`](https://github.com/craigerl/aprsd/commit/dabb48c6f64062c1fed8f83a4f0b8ffba0c206a5)
54
+ - try making image for webchat [`ba8acdc`](https://github.com/craigerl/aprsd/commit/ba8acdc5849fc7b2d8a1ee11af6f5e317cf30f45)
55
+ - Added APRSD logo [`0ed648f`](https://github.com/craigerl/aprsd/commit/0ed648f8f8a961dbbd9e22bcebadcde525ee41ae)
56
+ - Added plugin and extension links [`447451c`](https://github.com/craigerl/aprsd/commit/447451c6c97e1f2d3d0bf580db21ecd176690258)
57
+ - reduced logo size 50% [`cf4a29f`](https://github.com/craigerl/aprsd/commit/cf4a29f0cb3ed366b21ec3120a189614e0955180)
58
+ - Updated README.md TOC [`375a5e5`](https://github.com/craigerl/aprsd/commit/375a5e5b34718cadc6ee8a51484fc91441440a61)
59
+ - chore: update AUTHORS [skip ci] [`c556f51`](https://github.com/craigerl/aprsd/commit/c556f5126f725904822a75427475d46986f8e9f3)
60
+ - Updated requirements [`4a7a902`](https://github.com/craigerl/aprsd/commit/4a7a902a337759a352560d4d92dc314b1726412a)
61
+ - Updated ChangeLog for 4.0.0 [`934ebd2`](https://github.com/craigerl/aprsd/commit/934ebd236d044625b911dd8ca45293f6c5680a68)
62
+
7
63
  #### [3.4.4](https://github.com/craigerl/aprsd/compare/3.4.3...3.4.4)
8
64
 
9
65
  > 6 December 2024
@@ -67,6 +123,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
67
123
  - Update requirements.dev [`0d8a1ac`](https://github.com/craigerl/aprsd/commit/0d8a1ac33441cf85270423b80264110fe9286754)
68
124
  - Added new acked property to the core Packet [`3c058f3`](https://github.com/craigerl/aprsd/commit/3c058f3e7b89227c613234f8ae91687fbdf19ae1)
69
125
  - Fixed some pep8 failures [`63bcd41`](https://github.com/craigerl/aprsd/commit/63bcd4139bb40718152b66002dfa45f236c54e11)
126
+ - Update Changelog for 3.4.4 [`bc709b3`](https://github.com/craigerl/aprsd/commit/bc709b377c423412e9093e8ecc78e561031023b8)
70
127
 
71
128
  #### [3.4.3](https://github.com/craigerl/aprsd/compare/v3.4.3...3.4.3)
72
129
 
@@ -32,18 +32,18 @@ docs: changelog
32
32
  mv ChangeLog.rst docs/changelog.rst
33
33
  tox -edocs
34
34
 
35
- clean: clean-build clean-pyc clean-test clean-dev ## remove all build, test, coverage and Python artifacts
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 -f {} +
42
+ find . -name '*.egg' -exec rm -fr {} +
43
43
 
44
44
  clean-pyc: ## remove Python file artifacts
45
- find . -name '*.pyc' -exec rm -f {} +
46
- find . -name '*.pyo' -exec rm -f {} +
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