aprsd 3.4.4__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.
Files changed (235) hide show
  1. aprsd-4.0.0/.github/workflows/authors.yml +15 -0
  2. {aprsd-3.4.4 → aprsd-4.0.0}/.github/workflows/manual_build.yml +4 -5
  3. {aprsd-3.4.4 → aprsd-4.0.0}/.github/workflows/master-build.yml +6 -7
  4. {aprsd-3.4.4 → aprsd-4.0.0}/.github/workflows/python.yml +2 -2
  5. aprsd-4.0.0/.mailmap +4 -0
  6. aprsd-4.0.0/.pre-commit-config.yaml +41 -0
  7. aprsd-4.0.0/AUTHORS +1 -0
  8. aprsd-4.0.0/CONTRIBUTING.md +31 -0
  9. {aprsd-3.4.4 → aprsd-4.0.0}/ChangeLog.md +49 -0
  10. {aprsd-3.4.4 → aprsd-4.0.0}/Makefile +4 -4
  11. aprsd-4.0.0/PKG-INFO +293 -0
  12. aprsd-4.0.0/README.md +454 -0
  13. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/cli_helper.py +12 -5
  14. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/client/aprsis.py +31 -9
  15. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/client/base.py +13 -2
  16. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/client/drivers/aprsis.py +6 -3
  17. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/client/drivers/fake.py +15 -20
  18. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/client/factory.py +0 -2
  19. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/client/fake.py +0 -2
  20. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/client/kiss.py +17 -2
  21. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/client/stats.py +1 -3
  22. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/cmds/completion.py +7 -4
  23. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/cmds/dev.py +38 -42
  24. aprsd-4.0.0/aprsd/cmds/fetch_stats.py +308 -0
  25. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/cmds/healthcheck.py +5 -3
  26. aprsd-4.0.0/aprsd/cmds/list_plugins.py +325 -0
  27. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/cmds/listen.py +13 -9
  28. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/cmds/server.py +53 -27
  29. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/conf/__init__.py +1 -2
  30. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/conf/client.py +3 -4
  31. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/conf/common.py +19 -93
  32. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/conf/log.py +2 -4
  33. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/conf/opts.py +5 -4
  34. aprsd-4.0.0/aprsd/conf/plugin_common.py +72 -0
  35. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/exception.py +2 -0
  36. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/log/log.py +7 -46
  37. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/main.py +10 -4
  38. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/packets/__init__.py +14 -4
  39. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/packets/core.py +57 -67
  40. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/packets/log.py +8 -8
  41. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/packets/packet_list.py +9 -6
  42. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/plugin.py +22 -11
  43. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/plugins/notify.py +1 -4
  44. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/plugins/weather.py +10 -8
  45. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/stats/collector.py +5 -2
  46. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/threads/__init__.py +3 -2
  47. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/threads/aprsd.py +12 -7
  48. aprsd-3.4.4/aprsd/threads/keep_alive.py → aprsd-4.0.0/aprsd/threads/keepalive.py +14 -45
  49. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/threads/registry.py +3 -3
  50. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/threads/rx.py +9 -6
  51. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/threads/tx.py +3 -4
  52. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/utils/__init__.py +42 -10
  53. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/utils/json.py +9 -4
  54. aprsd-4.0.0/aprsd/utils/keepalive_collector.py +55 -0
  55. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/utils/trace.py +0 -2
  56. aprsd-4.0.0/aprsd.egg-info/PKG-INFO +293 -0
  57. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd.egg-info/SOURCES.txt +8 -69
  58. aprsd-4.0.0/aprsd.egg-info/requires.txt +91 -0
  59. aprsd-4.0.0/aprsd_logo.png +0 -0
  60. {aprsd-3.4.4 → aprsd-4.0.0}/docker/Dockerfile +40 -30
  61. {aprsd-3.4.4 → aprsd-4.0.0}/docker/bin/admin.sh +7 -3
  62. aprsd-4.0.0/docker/bin/healthcheck.sh +22 -0
  63. {aprsd-3.4.4 → aprsd-4.0.0}/docker/bin/listen.sh +1 -1
  64. {aprsd-3.4.4 → aprsd-4.0.0}/docker/bin/run.sh +5 -3
  65. {aprsd-3.4.4 → aprsd-4.0.0}/docker/bin/setup.sh +4 -2
  66. {aprsd-3.4.4 → aprsd-4.0.0}/docs/apidoc/aprsd.cmds.rst +0 -8
  67. {aprsd-3.4.4 → aprsd-4.0.0}/docs/apidoc/aprsd.conf.rst +0 -8
  68. {aprsd-3.4.4 → aprsd-4.0.0}/docs/apidoc/aprsd.plugins.rst +0 -16
  69. {aprsd-3.4.4 → aprsd-4.0.0}/docs/apidoc/aprsd.rst +0 -17
  70. {aprsd-3.4.4 → aprsd-4.0.0}/docs/apidoc/aprsd.threads.rst +3 -11
  71. {aprsd-3.4.4 → aprsd-4.0.0}/docs/apidoc/aprsd.utils.rst +8 -0
  72. {aprsd-3.4.4 → aprsd-4.0.0}/examples/plugins/example_plugin.py +2 -3
  73. {aprsd-3.4.4 → aprsd-4.0.0}/pyproject.toml +18 -1
  74. {aprsd-3.4.4 → aprsd-4.0.0}/requirements-dev.in +0 -8
  75. aprsd-4.0.0/requirements-dev.txt +49 -0
  76. {aprsd-3.4.4 → aprsd-4.0.0}/requirements.in +1 -12
  77. aprsd-4.0.0/requirements.txt +44 -0
  78. {aprsd-3.4.4 → aprsd-4.0.0}/tests/client/test_aprsis.py +1 -0
  79. {aprsd-3.4.4 → aprsd-4.0.0}/tests/client/test_client_base.py +2 -1
  80. {aprsd-3.4.4 → aprsd-4.0.0}/tests/cmds/test_send_message.py +6 -6
  81. {aprsd-3.4.4 → aprsd-4.0.0}/tests/fake.py +0 -2
  82. {aprsd-3.4.4 → aprsd-4.0.0}/tests/plugins/test_notify.py +8 -6
  83. {aprsd-3.4.4 → aprsd-4.0.0}/tests/plugins/test_time.py +1 -3
  84. {aprsd-3.4.4 → aprsd-4.0.0}/tests/plugins/test_version.py +0 -2
  85. {aprsd-3.4.4 → aprsd-4.0.0}/tests/plugins/test_weather.py +1 -4
  86. {aprsd-3.4.4 → aprsd-4.0.0}/tests/test_packets.py +15 -7
  87. {aprsd-3.4.4 → aprsd-4.0.0}/tests/test_plugin.py +5 -7
  88. {aprsd-3.4.4 → aprsd-4.0.0}/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/PKG-INFO +0 -849
  92. aprsd-3.4.4/README.rst +0 -502
  93. aprsd-3.4.4/aprsd/cmds/admin.py +0 -57
  94. aprsd-3.4.4/aprsd/cmds/fetch_stats.py +0 -311
  95. aprsd-3.4.4/aprsd/cmds/list_plugins.py +0 -319
  96. aprsd-3.4.4/aprsd/cmds/webchat.py +0 -662
  97. aprsd-3.4.4/aprsd/conf/plugin_common.py +0 -182
  98. aprsd-3.4.4/aprsd/conf/plugin_email.py +0 -105
  99. aprsd-3.4.4/aprsd/plugins/email.py +0 -715
  100. aprsd-3.4.4/aprsd/plugins/location.py +0 -181
  101. aprsd-3.4.4/aprsd/threads/log_monitor.py +0 -121
  102. aprsd-3.4.4/aprsd/web/admin/static/css/index.css +0 -84
  103. aprsd-3.4.4/aprsd/web/admin/static/css/prism.css +0 -4
  104. aprsd-3.4.4/aprsd/web/admin/static/css/tabs.css +0 -35
  105. aprsd-3.4.4/aprsd/web/admin/static/images/Untitled.png +0 -0
  106. aprsd-3.4.4/aprsd/web/admin/static/images/aprs-symbols-16-0.png +0 -0
  107. aprsd-3.4.4/aprsd/web/admin/static/images/aprs-symbols-16-1.png +0 -0
  108. aprsd-3.4.4/aprsd/web/admin/static/images/aprs-symbols-64-0.png +0 -0
  109. aprsd-3.4.4/aprsd/web/admin/static/images/aprs-symbols-64-1.png +0 -0
  110. aprsd-3.4.4/aprsd/web/admin/static/images/aprs-symbols-64-2.png +0 -0
  111. aprsd-3.4.4/aprsd/web/admin/static/js/charts.js +0 -235
  112. aprsd-3.4.4/aprsd/web/admin/static/js/echarts.js +0 -465
  113. aprsd-3.4.4/aprsd/web/admin/static/js/logs.js +0 -26
  114. aprsd-3.4.4/aprsd/web/admin/static/js/main.js +0 -231
  115. aprsd-3.4.4/aprsd/web/admin/static/js/prism.js +0 -12
  116. aprsd-3.4.4/aprsd/web/admin/static/js/send-message.js +0 -114
  117. aprsd-3.4.4/aprsd/web/admin/static/js/tabs.js +0 -28
  118. aprsd-3.4.4/aprsd/web/admin/templates/index.html +0 -196
  119. aprsd-3.4.4/aprsd/web/chat/static/css/chat.css +0 -115
  120. aprsd-3.4.4/aprsd/web/chat/static/css/index.css +0 -66
  121. aprsd-3.4.4/aprsd/web/chat/static/css/style.css.map +0 -1
  122. aprsd-3.4.4/aprsd/web/chat/static/css/tabs.css +0 -41
  123. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/bootstrap.min.css +0 -6
  124. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/font.woff2 +0 -0
  125. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/google-fonts.css +0 -23
  126. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/jquery-ui.css +0 -1311
  127. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/jquery.toast.css +0 -28
  128. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff +0 -0
  129. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff2 +0 -0
  130. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff +0 -0
  131. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff2 +0 -0
  132. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff +0 -0
  133. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff2 +0 -0
  134. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff +0 -0
  135. aprsd-3.4.4/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff2 +0 -0
  136. aprsd-3.4.4/aprsd/web/chat/static/images/Untitled.png +0 -0
  137. aprsd-3.4.4/aprsd/web/chat/static/images/aprs-symbols-16-0.png +0 -0
  138. aprsd-3.4.4/aprsd/web/chat/static/images/aprs-symbols-16-1.png +0 -0
  139. aprsd-3.4.4/aprsd/web/chat/static/images/aprs-symbols-64-0.png +0 -0
  140. aprsd-3.4.4/aprsd/web/chat/static/images/aprs-symbols-64-1.png +0 -0
  141. aprsd-3.4.4/aprsd/web/chat/static/images/aprs-symbols-64-2.png +0 -0
  142. aprsd-3.4.4/aprsd/web/chat/static/images/globe.svg +0 -3
  143. aprsd-3.4.4/aprsd/web/chat/static/js/gps.js +0 -84
  144. aprsd-3.4.4/aprsd/web/chat/static/js/main.js +0 -45
  145. aprsd-3.4.4/aprsd/web/chat/static/js/send-message.js +0 -612
  146. aprsd-3.4.4/aprsd/web/chat/static/js/tabs.js +0 -28
  147. aprsd-3.4.4/aprsd/web/chat/static/js/upstream/bootstrap.bundle.min.js +0 -7
  148. aprsd-3.4.4/aprsd/web/chat/static/js/upstream/jquery-3.7.1.min.js +0 -2
  149. aprsd-3.4.4/aprsd/web/chat/static/js/upstream/jquery-ui.min.js +0 -13
  150. aprsd-3.4.4/aprsd/web/chat/static/js/upstream/jquery.toast.js +0 -374
  151. aprsd-3.4.4/aprsd/web/chat/static/js/upstream/semantic.min.js +0 -11
  152. aprsd-3.4.4/aprsd/web/chat/static/js/upstream/socket.io.min.js +0 -7
  153. aprsd-3.4.4/aprsd/web/chat/templates/index.html +0 -139
  154. aprsd-3.4.4/aprsd/wsgi.py +0 -322
  155. aprsd-3.4.4/aprsd.egg-info/PKG-INFO +0 -849
  156. aprsd-3.4.4/aprsd.egg-info/requires.txt +0 -144
  157. aprsd-3.4.4/docs/apidoc/aprsd.web.admin.rst +0 -10
  158. aprsd-3.4.4/docs/apidoc/aprsd.web.rst +0 -18
  159. aprsd-3.4.4/requirements-dev.txt +0 -86
  160. aprsd-3.4.4/requirements.txt +0 -72
  161. aprsd-3.4.4/tests/cmds/__init__.py +0 -0
  162. aprsd-3.4.4/tests/cmds/test_webchat.py +0 -90
  163. aprsd-3.4.4/tests/plugins/__init__.py +0 -0
  164. aprsd-3.4.4/tests/plugins/test_location.py +0 -109
  165. aprsd-3.4.4/tests/test_email.py +0 -32
  166. aprsd-3.4.4/tests/test_main.py +0 -16
  167. {aprsd-3.4.4 → aprsd-4.0.0}/.coveragerc +0 -0
  168. {aprsd-3.4.4 → aprsd-4.0.0}/.github/workflows/codeql.yml +0 -0
  169. {aprsd-3.4.4 → aprsd-4.0.0}/.github/workflows/release_build.yml +0 -0
  170. {aprsd-3.4.4 → aprsd-4.0.0}/.readthedocs.yaml +0 -0
  171. {aprsd-3.4.4 → aprsd-4.0.0}/INSTALL.txt +0 -0
  172. {aprsd-3.4.4 → aprsd-4.0.0}/LICENSE +0 -0
  173. {aprsd-3.4.4 → aprsd-4.0.0}/MANIFEST.in +0 -0
  174. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/__init__.py +0 -0
  175. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/client/__init__.py +0 -0
  176. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/client/drivers/__init__.py +0 -0
  177. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/client/drivers/kiss.py +0 -0
  178. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/cmds/__init__.py +0 -0
  179. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/cmds/send_message.py +0 -0
  180. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/log/__init__.py +0 -0
  181. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/packets/collector.py +0 -0
  182. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/packets/seen_list.py +0 -0
  183. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/packets/tracker.py +0 -0
  184. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/packets/watch_list.py +0 -0
  185. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/plugin_utils.py +0 -0
  186. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/plugins/__init__.py +0 -0
  187. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/plugins/fortune.py +0 -0
  188. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/plugins/ping.py +0 -0
  189. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/plugins/time.py +0 -0
  190. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/plugins/version.py +0 -0
  191. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/stats/__init__.py +0 -0
  192. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/stats/app.py +0 -0
  193. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/threads/stats.py +2 -2
  194. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/utils/counter.py +0 -0
  195. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/utils/fuzzyclock.py +0 -0
  196. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/utils/objectstore.py +0 -0
  197. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd/utils/ring_buffer.py +0 -0
  198. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd-lnav.json +0 -0
  199. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd.egg-info/dependency_links.txt +0 -0
  200. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd.egg-info/entry_points.txt +0 -0
  201. {aprsd-3.4.4 → aprsd-4.0.0}/aprsd.egg-info/top_level.txt +0 -0
  202. {aprsd-3.4.4 → aprsd-4.0.0}/docker/build.sh +0 -0
  203. {aprsd-3.4.4 → aprsd-4.0.0}/docker/docker-compose.yml +0 -0
  204. {aprsd-3.4.4 → aprsd-4.0.0}/docs/_static/.keep +0 -0
  205. {aprsd-3.4.4 → aprsd-4.0.0}/docs/_static/aprsd_overview.png +0 -0
  206. {aprsd-3.4.4 → aprsd-4.0.0}/docs/_static/aprsd_overview.svg +0 -0
  207. {aprsd-3.4.4 → aprsd-4.0.0}/docs/_templates/.keep +0 -0
  208. {aprsd-3.4.4 → aprsd-4.0.0}/docs/apidoc/aprsd.client.drivers.rst +0 -0
  209. {aprsd-3.4.4 → aprsd-4.0.0}/docs/apidoc/aprsd.client.rst +0 -0
  210. {aprsd-3.4.4 → aprsd-4.0.0}/docs/apidoc/aprsd.log.rst +0 -0
  211. {aprsd-3.4.4 → aprsd-4.0.0}/docs/apidoc/aprsd.packets.rst +0 -0
  212. {aprsd-3.4.4 → aprsd-4.0.0}/docs/apidoc/aprsd.stats.rst +0 -0
  213. {aprsd-3.4.4 → aprsd-4.0.0}/docs/apidoc/modules.rst +0 -0
  214. {aprsd-3.4.4 → aprsd-4.0.0}/docs/aprsd.drawio +0 -0
  215. {aprsd-3.4.4 → aprsd-4.0.0}/docs/changelog.rst +0 -0
  216. {aprsd-3.4.4 → aprsd-4.0.0}/docs/clean_docs.py +0 -0
  217. {aprsd-3.4.4 → aprsd-4.0.0}/docs/conf.py +0 -0
  218. {aprsd-3.4.4 → aprsd-4.0.0}/docs/configure.rst +0 -0
  219. {aprsd-3.4.4 → aprsd-4.0.0}/docs/index.rst +0 -0
  220. {aprsd-3.4.4 → aprsd-4.0.0}/docs/install.rst +0 -0
  221. {aprsd-3.4.4 → aprsd-4.0.0}/docs/links.rst +0 -0
  222. {aprsd-3.4.4 → aprsd-4.0.0}/docs/plugin.rst +0 -0
  223. {aprsd-3.4.4 → aprsd-4.0.0}/docs/readme.rst +0 -0
  224. {aprsd-3.4.4 → aprsd-4.0.0}/docs/server.rst +0 -0
  225. {aprsd-3.4.4/aprsd/web → aprsd-4.0.0/examples/plugins}/__init__.py +0 -0
  226. {aprsd-3.4.4 → aprsd-4.0.0}/gray.conf +0 -0
  227. {aprsd-3.4.4 → aprsd-4.0.0}/setup.cfg +0 -0
  228. {aprsd-3.4.4 → aprsd-4.0.0}/setup.py +0 -0
  229. {aprsd-3.4.4/aprsd/web/admin → aprsd-4.0.0/tests}/__init__.py +0 -0
  230. {aprsd-3.4.4 → aprsd-4.0.0}/tests/client/test_factory.py +0 -0
  231. {aprsd-3.4.4/examples/plugins → aprsd-4.0.0/tests/cmds}/__init__.py +0 -0
  232. {aprsd-3.4.4/tests → aprsd-4.0.0/tests/plugins}/__init__.py +0 -0
  233. {aprsd-3.4.4 → aprsd-4.0.0}/tests/plugins/test_fortune.py +0 -0
  234. {aprsd-3.4.4 → aprsd-4.0.0}/tests/plugins/test_ping.py +0 -0
  235. {aprsd-3.4.4 → 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@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.0/.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.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,6 +4,54 @@ 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 -&gt; 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
+
7
55
  #### [3.4.4](https://github.com/craigerl/aprsd/compare/3.4.3...3.4.4)
8
56
 
9
57
  > 6 December 2024
@@ -67,6 +115,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
67
115
  - Update requirements.dev [`0d8a1ac`](https://github.com/craigerl/aprsd/commit/0d8a1ac33441cf85270423b80264110fe9286754)
68
116
  - Added new acked property to the core Packet [`3c058f3`](https://github.com/craigerl/aprsd/commit/3c058f3e7b89227c613234f8ae91687fbdf19ae1)
69
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)
70
119
 
71
120
  #### [3.4.3](https://github.com/craigerl/aprsd/compare/v3.4.3...3.4.3)
72
121
 
@@ -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
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"