git: bmake: Remove unneeded .PATH from the Makefile.

2021-02-21 Thread Sascha Wildner
commit e46add03c0593941eab6a4962c6f163c3539c883 Author: Sascha Wildner Date: Sun Feb 21 19:05:23 2021 +0100 bmake: Remove unneeded .PATH from the Makefile. Summary of changes: usr.bin/bmake/Makefile | 1 - 1 file changed, 1 deletion(-)

git: libaura: Improve fspred test a bit

2021-02-21 Thread Antonio Huete Jimenez
commit 939d500b9207b711c2e90ccddee92d237cab9f46 Author: Antonio Huete Jimenez Date: Sun Feb 21 16:33:27 2021 +0100 libaura: Improve fspred test a bit Summary of changes: .../usr.sbin/installer/libaura/fspred1/fspred1.c | 138 ++--- 1 file changed, 94 insertions(+), 44

git: DragonFly_RELEASE_5_8 grdc(6): Fix 100% CPU usage and make timeout work again

2021-02-21 Thread Aaron LI
commit 3e77f79f44e10f45b9577c79980287f57928d308 Author: Aaron LI Date: Sun Feb 21 12:02:19 2021 +0800 grdc(6): Fix 100% CPU usage and make timeout work again grdc(6) was passing a timespec with tv_nsec = 100*1000, which is invalid. So every nanosleep() call just returns

git: grdc(6): Add '-t' option to show time in 12-hour format

2021-02-21 Thread Aaron LI
commit ffe1d30b7611d4b27d06edc40cc191b74be21252 Author: Aaron LI Date: Sun Feb 21 16:12:49 2021 +0800 grdc(6): Add '-t' option to show time in 12-hour format Partially based on FreeBSD's implementation (revision 112749). But I moved the AM/PM mark to the upper-left corner

git: ching(6): More minor code cleanups

2021-02-21 Thread Aaron LI
commit d60ecdb4b9cebd874b9a7b12e82f625cce9f614b Author: Aaron LI Date: Sat Feb 20 22:47:08 2021 +0800 ching(6): More minor code cleanups Summary of changes: games/cgram/cgram.c | 43 +++ 1 file changed, 19 insertions(+), 24 deletions(-)

git: ching(6): Fix HOME key to move to the beginning of line

2021-02-21 Thread Aaron LI
commit 359c8e75e0e1fea7155d310959ced55d80fcca14 Author: Aaron LI Date: Sun Feb 21 09:28:25 2021 +0800 ching(6): Fix HOME key to move to the beginning of line Summary of changes: games/cgram/cgram.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

git: grdc(6): Improve handling of long scroll delays

2021-02-21 Thread Aaron LI
commit 9f62ef8c5664703913ebcf1f918e3559ab7806ba Author: Aaron LI Date: Sun Feb 21 13:05:42 2021 +0800 grdc(6): Improve handling of long scroll delays Add the scroll delay to the current time, so that the finally showed time matches the real current time. In

git: grdc(6): Fix 100% CPU usage and make timeout work again

2021-02-21 Thread Aaron LI
commit cf2f35f41de10cbe6d13ea1ae381dba3a5b08a55 Author: Aaron LI Date: Sun Feb 21 12:02:19 2021 +0800 grdc(6): Fix 100% CPU usage and make timeout work again grdc(6) was passing a timespec with tv_nsec = 100*1000, which is invalid. So every nanosleep() call just returns

git: games: Bring in cgram(6) from NetBSD

2021-02-21 Thread Aaron LI
commit 1efcf41be2ab5dc10b26e8830d8ad970f685cc8e Author: Aaron LI Date: Sat Feb 20 18:41:17 2021 +0800 games: Bring in cgram(6) from NetBSD cgram is a curses-based widget for solving Sunday-paper-type cryptograms based on substitution ciphers. A random cleartext is chosen

git: grdc(6): Allow 'q' to quit immediately

2021-02-21 Thread Aaron LI
commit 8f2695f272807c488393d73a919c4affb3b4cf49 Author: Aaron LI Date: Sun Feb 21 15:04:55 2021 +0800 grdc(6): Allow 'q' to quit immediately Add support to allow pressing 'q' to quit immediately. Partially based on OpenBSD's implementation:

git: cgram.6: Mention that cursor keys can also be used

2021-02-21 Thread Aaron LI
commit d835119e4008598f58f315c51f7a601976d9e7d0 Author: Aaron LI Date: Sat Feb 20 22:43:17 2021 +0800 cgram.6: Mention that cursor keys can also be used Summary of changes: games/cgram/cgram.6 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)

git: grdc(6): Improve scrolling timestamp precisions

2021-02-21 Thread Aaron LI
commit 6159ff08e48698c1e9482f2b02adc457b88d4d71 Author: Aaron LI Date: Sun Feb 21 15:48:46 2021 +0800 grdc(6): Improve scrolling timestamp precisions Use clock_gettime() to obtain the current time with higher precision, which is used to improve the scrolling timestamp,

git: grdc(6): Various code cleanups

2021-02-21 Thread Aaron LI
commit 7b8d5f41223d4cefae24cc6968f9663fad01e75b Author: Aaron LI Date: Sun Feb 21 12:23:19 2021 +0800 grdc(6): Various code cleanups * Staticize various variables and functions. * Reduce file-global variables. * Minor style updates. * Add a copyright header (as did

git: cgram(6): Reformat code styles

2021-02-21 Thread Aaron LI
commit a22b106baf921abb02e1ebfd7afbf550e975656a Author: Aaron LI Date: Sat Feb 20 19:03:49 2021 +0800 cgram(6): Reformat code styles Apply indent(1) and then manually adjust a bit. Summary of changes: games/cgram/cgram.c | 560

git: games: Bring in gomoku(6) from NetBSD

2021-02-21 Thread Aaron LI
commit 00b5bfed606f09b3980f2138f99c802b608cb5a5 Author: Aaron LI Date: Sat Feb 20 18:37:34 2021 +0800 games: Bring in gomoku(6) from NetBSD gomoku is a two player game where the object is to get 5 in a row horizontally, vertically or diagonally on a 19 by 19 grid. Summary

git: games: Bring in monop(6) from NetBSD

2021-02-21 Thread Aaron LI
commit 11c3b524747d8c5b8633b938fd0fceb1d5878a2e Author: Aaron LI Date: Sat Feb 20 18:39:42 2021 +0800 games: Bring in monop(6) from NetBSD monop is reminiscent of the Parker Brother's game Monopoly, and monitors a game between 2 to 9 users. It is assumed that the rules of

git: ching(6): Simplify the sed expression

2021-02-21 Thread Aaron LI
commit e95199c5312c3f65c4aa018a18f3b8dd3e58b3d8 Author: Aaron LI Date: Sat Feb 20 14:50:50 2021 +0800 ching(6): Simplify the sed expression No functional/style changes. Summary of changes: games/ching/ching/ching.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

git: ching.6: Mention mandoc(1) together with nroff(1)

2021-02-21 Thread Aaron LI
commit d99c2c2f9395ecc65f9b38063211923263960299 Author: Aaron LI Date: Sat Feb 20 14:51:09 2021 +0800 ching.6: Mention mandoc(1) together with nroff(1) Summary of changes: games/ching/ching/ching.6 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)