[Git][NTPsec/ntpsec][master] 5 commits: Correct name of CC-BY License

Eric S. Raymond gitlab at mg.gitlab.com
Sat Jan 23 17:48:04 UTC 2016


Eric S. Raymond pushed to branch master at NTPsec / ntpsec


Commits:
f37b457e by Sanjeev Gupta at 2016-01-23T12:35:48-05:00
Correct name of CC-BY License

- - - - -
719d1c0f by Sanjeev Gupta at 2016-01-23T12:35:48-05:00
Improve asciidoc markup

- - - - -
669098b7 by Sanjeev Gupta at 2016-01-23T12:35:48-05:00
Improve asciidoc markup and minor cleanup

- - - - -
dff6f1e0 by Sanjeev Gupta at 2016-01-23T12:35:48-05:00
Update known successful build targets, and reformat table for archs

- - - - -
fe72fc5f by Eric S. Raymond at 2016-01-23T12:47:30-05:00
Remove unused image files.

- - - - -


11 changed files:

- devel/STATUS
- devel/TODO
- devel/hacking.txt
- − docs/pic/alice31.gif
- − docs/pic/driver43_1.gif
- − docs/pic/driver43_2.jpg
- − docs/pic/freq1211.gif
- − docs/pic/group.gif
- − docs/pic/offset1211.gif
- − docs/pic/pzf509.jpg
- − docs/pic/rabbit.gif


Changes:

=====================================
devel/STATUS
=====================================
--- a/devel/STATUS
+++ b/devel/STATUS
@@ -1,4 +1,4 @@
-Last update, 2015 Dec 17
+Last update, 2016 Jan 21
 
 It builds on the following systems.  In general there should be no warnings,
 but as of the above date, there is one we can't easily work around.  Some
@@ -6,10 +6,11 @@ compilers will complain about
   comparison between signed and unsigned integer expressions
   at ntpd/ntp_io.c:4638
 
-It's known to build cleanly on:
-  Fedora 22 and 23 on i686 and x86_64
-  Debian wheezy and jessie on amd64
-  Ubuntu 14.04.3 LTS and 15.04 on x86_64
+We have reports that it builds cleanly on at least:
+  Fedora 22 and 23 (i686, x86_64)
+  CentOS 5.11 (i386)
+  Debian wheezy (amd64)  and jessie (amd64, i686)
+  Ubuntu 14.04.3 LTS and 15.10 on x86_64
   Raspbian wheezy and jessie on ARM v6 and v7 (Pi and Pi 2)
   Debian wheezy on BeagleBone Black ARM v7
 


=====================================
devel/TODO
=====================================
--- a/devel/TODO
+++ b/devel/TODO
@@ -8,14 +8,14 @@
 
 * Cleanup and separate features in pylib/*
 
-* Add 'snapshot' feature to dump config status into a JSON file for collecting 
+* Add 'snapshot' feature to dump config status into a JSON file for collecting
   build + platform information
 
 * The install production needs to warn of stale ntpdc and ntpdate binaries.
 
 * Add support for enabling all conditional checks to ensure none are broken.
 
-* Add support for disabling specific conditional tests to ensure nothing is 
+* Add support for disabling specific conditional tests to ensure nothing is
   compiled into the base in a surprising fashion, e.g. --undefine=FOO should
   suppress generation of any FOO #define into config.h.
 
@@ -103,16 +103,18 @@
   read-only and solid.  Maybe write a support package that does all the
   work if you call it with the date/time.
 
-Hal:
-> I think there is some interaction between when the ACTS driver calls and the 
-> state of other stuff, like the connection to the net.  This is probably a 
-> good candidate to get cleaned up.
-> 
-> There is another possible tangle in this area.  If you set "noselect" on the 
-> server line in the config file, ntpd goes through all the action of 
-> collecting the data and writing log files, but then drops the clock.  I don't 
-> know things well enough to be sure that this sort of logic won't pick one 
-> back up.
+[quote, Hal]
+__________
+I think there is some interaction between when the ACTS driver calls and the
+state of other stuff, like the connection to the net.  This is probably a
+good candidate to get cleaned up.
+
+There is another possible tangle in this area.  If you set "noselect" on the
+server line in the config file, ntpd goes through all the action of
+collecting the data and writing log files, but then drops the clock.  I don't
+know things well enough to be sure that this sort of logic won't pick one
+back up.
+__________
 
 * Forward-port NTP Classic fix for [Bug 2830] just in case we want to
   revive Autokey someday.


=====================================
devel/hacking.txt
=====================================
--- a/devel/hacking.txt
+++ b/devel/hacking.txt
@@ -49,7 +49,7 @@ cause buffer overruns and (all too often) exploitable security holes:
 * sprintf, vsprintf: use snprintf and vsnprintf instead.
 * In scanf and friends, the %s format without length limit is banned.
 * strtok: use strtok_r() or unroll this into the obvious loop.
-* gets: Use fgets instead. 
+* gets: Use fgets instead.
 * gmtime(), localtime(), asctime(), ctime(): use the reentrant *_r variants.
 * tmpnam() - use mkstemp() or tmpfile() instead.
 * dirname() - the Linux version is re-entrant but this property is not portable.
@@ -84,13 +84,14 @@ Such simplicity is often difficult or impractical for heterogenous
 data that needs to be both grouped and labeled, so we have another
 convention for those cases. Here it is:
 
+[quote]
 Wherever it is reasonable, tools that generate complex reports to
 standard output should be able to emit two formats. The default can be
 relatively unstructured multiline text for human eyeballs. There
 should also be a -j/--json option that emits a self-describing JSON
-object.  You can read about JSON at
+object.
 
-	 http://www.json.org/
+You can read about JSON at http://www.json.org/
 
 Be aware that if you present a tool design with a messy output format
 and no JSON option it is quite likely to be rejected.
@@ -104,8 +105,8 @@ always with full years and timezone offset.
 
 Much of the historic code in this distribution is under the "NTP
 License" resembling BSD-2-clause.  Our favored licenses are
-BSD-2-clause for code and Creative Commons Attribute 4.0 License for
-documentation.
+BSD-2-clause for code and Creative Commons Attribution 4.0 License
+for documentation.
 
 Please do *not* submit code under GPL or other licenses which place
 conditions on derived works; we cannot accept such code.
@@ -250,9 +251,9 @@ The file "dot.emacs" has the emacs C-mode indentation style that Dave likes.
 === Other languages ===
 
 The only scripting languages allowed and supported are POSIX sh and
-Python 2.5. If you find code in the distribution that is in a
-scripting language and not one of these, you would be doing us a
-favor by translating it into Python or sh.
+Python 2.5 or later, but not Python 3. If you find code in the
+distribution that is in a scripting language and not one of these,
+you would be doing us a favor by translating it into Python or sh.
 
 The reason for this policy is not that we hate all other scripting
 languages, it's to reduce the complexity of maintenance and testing


=====================================
docs/pic/alice31.gif deleted
=====================================
Binary files a/docs/pic/alice31.gif and /dev/null differ


=====================================
docs/pic/driver43_1.gif deleted
=====================================
Binary files a/docs/pic/driver43_1.gif and /dev/null differ


=====================================
docs/pic/driver43_2.jpg deleted
=====================================
Binary files a/docs/pic/driver43_2.jpg and /dev/null differ


=====================================
docs/pic/freq1211.gif deleted
=====================================
Binary files a/docs/pic/freq1211.gif and /dev/null differ


=====================================
docs/pic/group.gif deleted
=====================================
Binary files a/docs/pic/group.gif and /dev/null differ


=====================================
docs/pic/offset1211.gif deleted
=====================================
Binary files a/docs/pic/offset1211.gif and /dev/null differ


=====================================
docs/pic/pzf509.jpg deleted
=====================================
Binary files a/docs/pic/pzf509.jpg and /dev/null differ


=====================================
docs/pic/rabbit.gif deleted
=====================================
Binary files a/docs/pic/rabbit.gif and /dev/null differ



View it on GitLab: https://gitlab.com/NTPsec/ntpsec/compare/2b6e2e0413d219ee1f2a22ae1f1a7286f93d7c73...fe72fc5f42fead028d043d6c23564e819800aeb1
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ntpsec.org/pipermail/vc/attachments/20160123/3e824437/attachment.html>


More information about the vc mailing list