Remove debian/

This commit is contained in:
Samuel Sloniker 2023-05-08 16:23:51 -07:00
parent a7b2c1fc4d
commit 3e80f53ed9
4 changed files with 2 additions and 35 deletions

View File

@ -1,17 +0,0 @@
# Systemd unit file for the adsms service
# Generated by ChatGPT
[Unit]
Description=Send SMS notifications based on ADS-B data
After=network.target
Requires=tar1090.service
After=tar1090.service
[Service]
User=adsms
Group=adsms
ExecStart=/usr/local/bin/adsms /etc/adsms.json
Restart=always
[Install]
WantedBy=multi-user.target

17
debian/adsms.service vendored
View File

@ -1,17 +0,0 @@
# Systemd unit file for the adsms service
# Generated by ChatGPT
[Unit]
Description=Send SMS notifications based on ADS-B data
After=network.target
Requires=tar1090.service
After=tar1090.service
[Service]
User=adsms
Group=adsms
ExecStart=/usr/local/bin/adsms /etc/adsms.json
Restart=always
[Install]
WantedBy=multi-user.target

View File

@ -4,6 +4,7 @@ py = import('python').find_installation()
py.install_sources( py.install_sources(
'adsms/__init__.py', 'adsms/__init__.py',
'debian/adsms.service',
) )
install_data('run_adsms.py', install_dir: get_option('bindir'), rename: 'adsms') install_data('run_adsms.py', install_dir: get_option('bindir'), rename: 'adsms')

View File

@ -4,7 +4,7 @@ requires = ['meson-python']
[project] [project]
name = "adsms" name = "adsms"
version = "0.5" version = "0.6"
description = "Send SMS aircraft alerts based on ADS-B data" description = "Send SMS aircraft alerts based on ADS-B data"
readme = "README.md" readme = "README.md"
authors = [{ name = "Samuel Sloniker", email = "sam@kj7rrv.com"}] authors = [{ name = "Samuel Sloniker", email = "sam@kj7rrv.com"}]