Browse Source

New upstream version 3.22

master
Bernd Zeimetz 3 years ago
parent
commit
5afe80fef8
  1. 2
      NEWS
  2. 2
      SConstruct
  3. 52
      clients/gpsprof.py.in
  4. 2
      man/cgps.1
  5. 2
      man/gegps.1
  6. 2
      man/gps.1
  7. 2
      man/gps2udp.1
  8. 2
      man/gpscat.1
  9. 2
      man/gpscsv.1
  10. 2
      man/gpsctl.1
  11. 2
      man/gpsd.8
  12. 2
      man/gpsd_json.5
  13. 2
      man/gpsdctl.8
  14. 2
      man/gpsdecode.1
  15. 2
      man/gpsfake.1
  16. 2
      man/gpsinit.8
  17. 2
      man/gpsmon.1
  18. 2
      man/gpspipe.1
  19. 2
      man/gpsplot.1
  20. 2
      man/gpsprof.1
  21. 2
      man/gpsrinex.1
  22. 2
      man/gpssubframe.1
  23. 2
      man/gpxlogger.1
  24. 2
      man/lcdgps.1
  25. 2
      man/libQgpsmm.3
  26. 2
      man/libgps.3
  27. 2
      man/libgpsmm.3
  28. 2
      man/ntpshmmon.1
  29. 2
      man/ppscheck.8
  30. 2
      man/ubxtool.1
  31. 2
      man/xgps.1
  32. 2
      man/xgpsspeed.1
  33. 2
      man/zerk.1
  34. 2
      maskaudit.py
  35. 2
      packaging/gpsd-setup.py
  36. 2
      packaging/rpm/gpsd.spec

2
NEWS

@ -1,6 +1,6 @@
GPSD project news
3.21.99~rc1: in progress
3.22: 2020-01-08
Added client/gpscsv to convert gpsd JSON to csv.
Added client/gpsplot to dynamically plot gpsd JSON.
Added client/gpssubframe to decode gpsd SUBFRAME JSON.

2
SConstruct

@ -46,7 +46,7 @@ EnsureSConsVersion(2, 3, 0)
EnsurePythonVersion(2, 6)
# package version
gpsd_version = "3.21.99~rc1"
gpsd_version = "3.22"
# name 'build' is already taken, put stuff in gpsd-$VERSION
# it makes tar simple
variantdir = 'gpsd-' + gpsd_version

52
clients/gpsprof.py.in

@ -652,10 +652,10 @@ class spaceplot(plotter):
'%s\\n'
'%s\\n'
'%s"\n'
) % ('{:>15}'.format(latstring),
'{:>15}'.format(lonstring),
'{:>15.3f}'.format(stat_alt.mean),
'{:>15.1f}'.format(stat_used.mean))
) % ('{0:>15}'.format(latstring),
'{0:>15}'.format(lonstring),
'{0:>15.3f}'.format(stat_alt.mean),
'{0:>15.1f}'.format(stat_used.mean))
fmt += ('set label 14 at screen 0.23, screen 0.12 '
'"\\n'
@ -665,24 +665,24 @@ class spaceplot(plotter):
'%s %s %s meters %s %s\\n'
'%s %s %s meters %s %s\\n'
'%12d %12d %s sats"\n'
) % ('{:>10.3f}'.format(lat_min_o),
'{:>10.3f}'.format(lat_max_o),
'{:>10.3f}'.format(stat_lat_r.sigma),
'{:>10.1f}'.format(stat_lat_r.skewness),
'{:>10.1f}'.format(stat_lat_r.kurtosis),
'{:>10.3f}'.format(lon_min_o),
'{:>10.3f}'.format(lon_max_o),
'{:>10.3f}'.format(stat_lon_r.sigma),
'{:>10.1f}'.format(stat_lon_r.skewness),
'{:>10.1f}'.format(stat_lon_r.kurtosis),
'{:>10.3f}'.format(stat_alt_r.min),
'{:>10.3f}'.format(stat_alt_r.max),
'{:>10.3f}'.format(stat_alt_r.sigma),
'{:>10.1f}'.format(stat_alt_r.skewness),
'{:>10.1f}'.format(stat_alt_r.kurtosis),
) % ('{0:>10.3f}'.format(lat_min_o),
'{0:>10.3f}'.format(lat_max_o),
'{0:>10.3f}'.format(stat_lat_r.sigma),
'{0:>10.1f}'.format(stat_lat_r.skewness),
'{0:>10.1f}'.format(stat_lat_r.kurtosis),
'{0:>10.3f}'.format(lon_min_o),
'{0:>10.3f}'.format(lon_max_o),
'{0:>10.3f}'.format(stat_lon_r.sigma),
'{0:>10.1f}'.format(stat_lon_r.skewness),
'{0:>10.1f}'.format(stat_lon_r.kurtosis),
'{0:>10.3f}'.format(stat_alt_r.min),
'{0:>10.3f}'.format(stat_alt_r.max),
'{0:>10.3f}'.format(stat_alt_r.sigma),
'{0:>10.1f}'.format(stat_alt_r.skewness),
'{0:>10.1f}'.format(stat_alt_r.kurtosis),
stat_used.min,
stat_used.max,
'{:>10.1f}'.format(stat_used.sigma))
'{0:>10.1f}'.format(stat_used.sigma))
if 1 < options.debug:
fmt += ('set label 15 at screen 0.6, screen 0.12 '
@ -691,9 +691,9 @@ class spaceplot(plotter):
'%s\\n'
'%s\\n'
'%s"\n'
) % ('{:>15.9f}'.format(stat_lat_r.min),
'{:>15.9f}'.format(stat_lon_r.min),
'{:>15.3f}'.format(stat_alt.min))
) % ('{0:>15.9f}'.format(stat_lat_r.min),
'{0:>15.9f}'.format(stat_lon_r.min),
'{0:>15.3f}'.format(stat_alt.min))
fmt += ('set label 16 at screen 0.75, screen 0.12 '
'"\\n'
@ -701,9 +701,9 @@ class spaceplot(plotter):
'%s\\n'
'%s\\n'
'%s"\n'
) % ('{:>15.9f}'.format(stat_lat_r.max),
'{:>15.9f}'.format(stat_lon_r.max),
'{:>15.3f}'.format(stat_alt.max))
) % ('{0:>15.9f}'.format(stat_lat_r.max),
'{0:>15.9f}'.format(stat_lon_r.max),
'{0:>15.3f}'.format(stat_alt.max))
if len(self.fixes) > 1000:
plot_style = 'dots'

2
man/cgps.1

@ -1,7 +1,7 @@
'\" t
.\" Title: gps
.\" Author: [see the "AUTHORS" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gegps.1

@ -1 +1 @@
.so man1/cgps.1
.so cgps.1

2
man/gps.1

@ -1 +1 @@
.so man1/cgps.1
.so cgps.1

2
man/gps2udp.1

@ -1,7 +1,7 @@
'\" t
.\" Title: gps2udp
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpscat.1

@ -1,7 +1,7 @@
'\" t
.\" Title: gpscat
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpscsv.1

@ -1,7 +1,7 @@
'\" t
.\" Title: gpscsv
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 7 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpsctl.1

@ -1,7 +1,7 @@
'\" t
.\" Title: gpsctl
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpsd.8

@ -1,7 +1,7 @@
'\" t
.\" Title: gpsd
.\" Author: [see the "AUTHORS" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpsd_json.5

@ -1,7 +1,7 @@
'\" t
.\" Title: gpsd_json
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpsdctl.8

@ -1,7 +1,7 @@
'\" t
.\" Title: gpsdctl
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpsdecode.1

@ -1,7 +1,7 @@
'\" t
.\" Title: gpsdecode
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpsfake.1

@ -1,7 +1,7 @@
'\" t
.\" Title: gpsfake
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 10 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpsinit.8

@ -1,7 +1,7 @@
'\" t
.\" Title: gpsinit
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpsmon.1

@ -1,7 +1,7 @@
'\" t
.\" Title: gpsmon
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpspipe.1

@ -1,7 +1,7 @@
'\" t
.\" Title: gpspipe
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 5 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpsplot.1

@ -1,7 +1,7 @@
'\" t
.\" Title: gpsplot
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 7 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpsprof.1

@ -1,7 +1,7 @@
'\" t
.\" Title: gpsprof
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpsrinex.1

@ -1,7 +1,7 @@
'\" t
.\" Title: gpsrinex
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpssubframe.1

@ -1,7 +1,7 @@
'\" t
.\" Title: gpssubframe
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/gpxlogger.1

@ -1,7 +1,7 @@
'\" t
.\" Title: gpxlogger
.\" Author: [see the "AUTHORS" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/lcdgps.1

@ -1 +1 @@
.so man1/cgps.1
.so cgps.1

2
man/libQgpsmm.3

@ -1 +1 @@
.so man3/libgpsmm.3
.so libgpsmm.3

2
man/libgps.3

@ -1,7 +1,7 @@
'\" t
.\" Title: libgps
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/libgpsmm.3

@ -1,7 +1,7 @@
'\" t
.\" Title: libgpsmm
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/ntpshmmon.1

@ -1,7 +1,7 @@
'\" t
.\" Title: ntpshmmon
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 5 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/ppscheck.8

@ -1,7 +1,7 @@
'\" t
.\" Title: ppscheck
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 5 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/ubxtool.1

@ -1,7 +1,7 @@
'\" t
.\" Title: ubxtool
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 5 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/xgps.1

@ -1,7 +1,7 @@
'\" t
.\" Title: xgps
.\" Author: [see the "AUTHORS" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
man/xgpsspeed.1

@ -1 +1 @@
.so man1/xgps.1
.so xgps.1

2
man/zerk.1

@ -1,7 +1,7 @@
'\" t
.\" Title: zerk
.\" Author: [see the "AUTHOR" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 6 December 2020
.\" Manual: GPSD Documentation
.\" Source: The GPSD Project

2
maskaudit.py

@ -78,7 +78,7 @@ class SourceExtractor(object):
if __name__ == '__main__':
description = 'Create dynamic plots from gpsd with matplotlib.'
description = 'Tool for reporting gpsd status masks.'
usage = '%(prog)s [OPTIONS] [host[:port[:device]]]'
epilog = ('BSD terms apply: see the file COPYING in the distribution root'
' for details.')

2
packaging/gpsd-setup.py

@ -13,7 +13,7 @@ except ImportError: # No setuptools in Python 2
setup(
name='gps',
version='3.21.99~rc1',
version='3.22',
description='gpsd Python modules for additional Pythons',
long_description='''# README

2
packaging/rpm/gpsd.spec

@ -1,7 +1,7 @@
%global _hardened_build 1
Name: gpsd
Version: 3.21.99~rc1
Version: 3.22
Release: 0%{?dist}
Summary: Service daemon for mediating access to a GPS

Loading…
Cancel
Save