summaryrefslogtreecommitdiff
path: root/devtools
Commit message (Collapse)AuthorAgeFilesLines
* Give up on configure-like options, return to scons-style persistent variables.Eric S. Raymond2011-04-111-33/+33
| | | | | | | There was lots of user demand for *persistent* configuration variables. While it is theoretically possible that I could have made this work with the configure-like options, the code would have beenn a fragile kluge. So, fall back in scons practive for command-line cinfiguration variables.
* Fix bug in handling of numeric config options.Eric S. Raymond2011-04-091-1/+1
|
* Make it possible to build static binaries with --disable-shared.Eric S. Raymond2011-04-091-4/+1
|
* Shoot the autotools build through the head, putting it out of our misery.Eric S. Raymond2011-04-091-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | This diff executes the foollowing steps: 1. Delete from the repo: configure.ac, autogen.sh, Makefile.am, do-tests (2129 lines). 2. Removed the kluge in SConstruct 3. Remove future.html reference to scons. 4. Revise INSTALLATION. 5. Edit the packaging files to warn that they need to use scons. 7. git rm -r libQgpsmm 8. Add a warning to devtools/sizes that it won't work until we add an option to build static. Also, the following were removed from .gitignore and the working directory: configure Makefile.in Makefile config.* aclocal.m4 py-compile ltmain.sh missing autom4te.cache depcomp install-sh stamp-h1 .libs .deps libtool ChangeLog m4. This is 90630 lines of stuff. All regression tests pass.
* The failed attempt at reindenting should be kept for the record.Eric S. Raymond2011-04-042-0/+30
|
* Squeeze out some more code in the fixed-port-speed case.Eric S. Raymond2011-03-291-2/+4
|
* Add the sizes tool for looking at normal and minimal build sizes.Eric S. Raymond2011-03-292-0/+77
|
* Fixup regress-builderJon Schlueter2011-03-221-5/+11
|
* Typo fix.Eric S. Raymond2011-03-021-1/+1
|
* Add tablecheck.py to the repo.Eric S. Raymond2011-02-142-0/+52
|
* GPS week rollover check extends to the rollover equivalent of now.Eric S. Raymond2011-01-151-4/+0
|
* Detect week-counter overruns using the leap second.Eric S. Raymond2011-01-151-211/+0
|
* We can now generate C code for leap-second checking by year.Eric S. Raymond2011-01-151-8/+39
|
* First step towards sanity check by leap second.Eric S. Raymond2011-01-141-2/+20
|
* Add a pointer to the porterboxes.Eric S. Raymond2010-12-261-0/+3
|
* More time computation in leapsecond.py.Eric S. Raymond2010-12-201-12/+35
|
* Add -i utility option to leapsecond.py.Eric S. Raymond2010-12-191-10/+21
|
* Documentain devtools/dchroot-exec.Bernd Zeimetz2010-12-182-1/+9
|
* Guarantee ~ expansion.Eric S. Raymond2010-12-141-1/+1
|
* Typo fixes.Eric S. Raymond2010-12-141-2/+2
|
* Merge branch 'master' of ssh://git.berlios.de/gitroot/gpsdEric S. Raymond2010-12-011-3/+3
|\
| * marking quark and nog as back online for the flocktestJon Schlueter2010-11-051-3/+3
| | | | | | | | | | Due to Network issue was down for a bit but corrected and back up and running
* | Add an identity tag filter so tags won't vanish after the filter-branch op.Eric S. Raymond2010-10-231-3/+3
|/
* Merge branch 'master' of ssh://git.berlios.de/gitroot/gpsdEric S. Raymond2010-10-121-0/+26
|\
| * Add a wrapper around dchroot on Debian porter machines.Bernd Zeimetz2010-10-111-0/+26
| |
* | Most of the flocktest hosts are unusable for various reasons, alas.Eric S. Raymond2010-10-091-3/+3
|/
* Be a bit more verbose and don't fail if a log was not available.Bernd Zeimetz2010-08-311-1/+1
|
* Move gpsd-debian-regressions.sh to devtools.Bernd Zeimetz2010-08-312-0/+26
|
* Fix an error in how AIS rate-of-turn decoding was done.Eric S. Raymond2010-07-011-1/+1
| | | | | This affected only formatted output, so the fix breaks no regression tests. Codebase splints clean.
* Correct some erroneous IS8061 formating.Eric S. Raymond2010-06-131-2/+2
|
* Add JOSM/LiveGPS as a client project.Eric S. Raymond2010-05-271-0/+1
|
* The last change in gpsdecode was not entirely correct. Fixes from Nirgal.Eric S. Raymond2010-05-201-1/+1
|
* Switch the CSV format emitted by gpsdecode(1) to DSV using |.Eric S. Raymond2010-05-191-7/+7
| | | | | | | | | | The problem with CSV is that string fields (such as ship name in type 5) can contain commas. I could have backslash-escaped them, but I think it's better to make old scripts fail in a way that's likely to be noticed than perpetuate a situation in which unescaped commas could cause output to be unpacked wrongly. I changed the Python decoder as well. Required rebuilding one regression test. All regression tests pass.
* Update docs and website.Eric S. Raymond2010-05-141-1/+1
|
* Fix AIS type 15 decoding and add a new test from Kurt Schwehr.Eric S. Raymond2010-05-121-1/+1
|
* Avoid truncating dumps of short-form type 15 and 16 messages.Eric S. Raymond2010-05-121-12/+18
|
* Join Type 21 name extension field to name.Eric S. Raymond2010-05-111-1/+10
|
* Typo fixes.Eric S. Raymond2010-05-111-1/+1
|
* Refactoring step.Eric S. Raymond2010-05-111-4/+9
|
* In AIS message types 6 and 8, split app_id into DAC and FID per ITU-1371.Eric S. Raymond2010-05-101-3/+5
| | | | | | | | | | | | Wire protocol and API minor versions get bumped. All changes are as documented in AIVDM.txt, which now describes known message 6 and 8 subtypes. Involved rebuilding a couple of AIS regression tests. All regression tests pass. Also includes various typo fixes for AIVDM.txt discovered by Baylink while we were reviewing these changes.
* Maintain separate payloads for A and B channels.Eric S. Raymond2010-05-091-4/+5
|
* Document a limitation.Eric S. Raymond2010-05-091-0/+1
|
* Teach ais.py to ignore USCG metadata following a checksum.Eric S. Raymond2010-05-091-2/+5
|
* Typo fixes and documentation tweaks.Eric S. Raymond2010-04-281-1/+1
|
* Document the fact that AISHub requires permission.Eric S. Raymond2010-04-271-3/+4
|
* Document a useful trick so I don't have to keep reiventing it.Eric S. Raymond2010-04-271-0/+6
|
* Add to NEWS, add foxtrot to the client-projects list, and fix website make.Eric S. Raymond2010-04-181-0/+2
|
* Fix path to env used in regress-builder to use #!/usr/bin/env pythonJon Schlueter2010-04-181-1/+1
|
* Expand driver entries in regress-builderJon Schlueter2010-04-181-2/+11
|
* Merge branch 'master' of git://git.berlios.de/gpsdJon Schlueter2010-04-182-10/+10
|\