Update callsign and email
This commit is contained in:
parent
77a1f9ba81
commit
03245fc373
|
|
@ -2,7 +2,7 @@ Package: noaacap
|
||||||
Version: 0.9.2
|
Version: 0.9.2
|
||||||
Section: hamradio
|
Section: hamradio
|
||||||
Priority: extra
|
Priority: extra
|
||||||
Maintainer: Dan Srebnick <k2dls at k2dls.net>
|
Maintainer: Dan Srebnick <k2ie at k2ie.net>
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: aprx (>=2.9) | direwolf (>=1.3), db-util, python3-lxml, python3-pip, python3-bs4, python3-tz, python3-bsddb3, python3-systemd
|
Depends: aprx (>=2.9) | direwolf (>=1.3), db-util, python3-lxml, python3-pip, python3-bs4, python3-tz, python3-bsddb3, python3-systemd
|
||||||
Description: APRS Weather Alerts beacon exec for aprx & Dire Wolf
|
Description: APRS Weather Alerts beacon exec for aprx & Dire Wolf
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
Copyright: 2017-2018 Daniel L. Srebnick <k2dls@k2dls.net>
|
Copyright: 2017-2019 Daniel L. Srebnick <k2ie@k2ie.net>
|
||||||
License: BSD-2-clause
|
License: BSD-2-clause
|
||||||
Files: *
|
Files: *
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
## Author: Dan Srebnick, K2DLS
|
## Author: Dan Srebnick, K2IE
|
||||||
## License: BSD-2-Clause (/usr/local/share/noaacap/LICENSE)
|
## License: BSD-2-Clause (/usr/local/share/noaacap/LICENSE)
|
||||||
## This program is called from aprx.
|
## This program is called from aprx.
|
||||||
##
|
##
|
||||||
## See /usr/local/share/noaacap/CHANGELOG for change history
|
## See /usr/local/share/noaacap/CHANGELOG for change history
|
||||||
##
|
##
|
||||||
version = "0.9.1"
|
version = "0.9.1a"
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import pytz
|
import pytz
|
||||||
|
|
@ -26,10 +26,10 @@ log = logging.getLogger('noaacap')
|
||||||
log.addHandler(JournalHandler(SYSLOG_IDENTIFIER='noaacap'))
|
log.addHandler(JournalHandler(SYSLOG_IDENTIFIER='noaacap'))
|
||||||
|
|
||||||
if len(sys.argv) == 2 and sys.argv[1] == '-v':
|
if len(sys.argv) == 2 and sys.argv[1] == '-v':
|
||||||
print("noaacap.py by K2DLS, version " + version + "\n")
|
print("noaacap.py by K2IE, version " + version + "\n")
|
||||||
print("A weather alert beacon exec for aprx >= 2.9")
|
print("A weather alert beacon exec for aprx >= 2.9")
|
||||||
print("Licensed under the BSD 2 Clause license")
|
print("Licensed under the BSD 2 Clause license")
|
||||||
print("Copyright 2017-2018 by Daniel L. Srebnick\n")
|
print("Copyright 2017-2019 by Daniel L. Srebnick\n")
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
# We need this function early in execution
|
# We need this function early in execution
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
BSD 2-Clause License
|
BSD 2-Clause License
|
||||||
|
|
||||||
Copyright (c) 2017-2018, Daniel L. Srebnick
|
Copyright (c) 2017-2019, Daniel L. Srebnick
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
||||||
|
|
@ -73,8 +73,8 @@ following command: sudo journalctl -f | grep noaacap.
|
||||||
USE
|
USE
|
||||||
|
|
||||||
It would be good to hear from users of this software. Please email
|
It would be good to hear from users of this software. Please email
|
||||||
k2dls@k2dls.net with the callsign-SSID of your APRS station that is sending
|
k2ie@k2ie.net with the callsign-SSID of your APRS station that is sending
|
||||||
weather alerts via this program.
|
weather alerts via this program.
|
||||||
|
|
||||||
Dan Srebnick, K2DLS
|
Dan Srebnick, K2IE
|
||||||
08/04/18
|
09/23/19
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue