daily CVS update output

2021-06-07 Thread NetBSD source update


Updating src tree:
P src/build.sh
P src/compat/archdirs.mk
P src/distrib/sets/lists/base/ad.aarch64
P src/distrib/sets/lists/base/ad.arm
P src/distrib/sets/lists/base/md.amd64
P src/distrib/sets/lists/comp/ad.aarch64
P src/distrib/sets/lists/comp/ad.arm
P src/distrib/sets/lists/comp/ad.arm.shl
P src/distrib/sets/lists/debug/ad.aarch64
P src/distrib/sets/lists/debug/ad.arm
P src/distrib/sets/lists/debug/md.amd64
P src/external/gpl2/texinfo/dist/makeinfo/multi.c
P src/external/gpl3/gdb/bin/Makefile
P src/sbin/dump/tape.c
P src/sbin/mount_chfs/mount_chfs.8
P src/sbin/mount_chfs/mount_chfs.c
P src/sbin/ping6/ping6.8
P src/sbin/ping6/ping6.c
P src/share/man/man4/ums.4
P src/sys/dev/wscons/wsemul_vt100.c
P src/tests/lib/csu/h_ifunc_static.c
P src/tests/lib/libc/regex/t_exhaust.c
P src/tests/libexec/ld.elf_so/helper_ifunc_dso/h_helper_ifunc.c
P src/usr.sbin/postinstall/postinstall.in

Updating xsrc tree:


Killing core files:




Updating file list:
-rw-rw-r--  1 srcmastr  netbsd  41354618 Jun  8 03:03 ls-lRA.gz


Re: Blank screen when build packages

2021-06-07 Thread Christos Zoulas
In article ,
David H. Gutteridge  wrote:
>
>This is probably PR 56223.

This is PR56223 from the video and I just committed a change to fix it.

christos



Re: Blank screen when build packages

2021-06-07 Thread Christos Zoulas
In article <1943061623074...@mail.yandex.ru>,
Dmitrii Postolov   wrote:
>Hi! Sorry for my bad English...
>
>NetBSD 9.99.83 GENERIC Sun Jun 6 2021
>
>After install NetBSD 9.99.83 and download and unpack pkgsrc-current, I
>try to build some apps
>from pkgsrc, for example 'editors/nano'. Afrer 'make install clean' the
>app begin to build but
>after some time the screen is blank and build stop. There is no this problem in
>NetBSD 9.2_STABLE and pkgsrc-current.
>
>How can I resolve this problem in NetBSD 9.99.x?

Looks like your build is probably sending some escape char to the console
that makes it blank. Can you redirect stdout and stderr to a file?

christos



Re: Blank screen when build packages

2021-06-07 Thread Chavdar Ivanov
On Mon, 7 Jun 2021 at 18:21, David H. Gutteridge  wrote:
>
>
>
> On Mon, 7 Jun 2021 at 18:15:43 +0200, Roland Illig wrote:
> > Am 07.06.2021 um 16:12 schrieb Dmitrii Postolov:
> > > Hi! Sorry for my bad English...
> > >
> > > NetBSD 9.99.83 GENERIC Sun Jun 6 2021
> > >
> > > After install NetBSD 9.99.83 and download and unpack pkgsrc-current,
> > I try to build some apps
> > > from pkgsrc, for example 'editors/nano'. Afrer 'make install clean'
> > the app begin to build but
> > > after some time the screen is blank and build stop. There is no this
> > problem in
> > > NetBSD 9.2_STABLE and pkgsrc-current.
> > >
> > > How can I resolve this problem in NetBSD 9.99.x?
> > >
> > > Video: https://disk.yandex.ru/i/ruKLubdmfKYpHQ
> >
> > Hi Dimitrii,
> >
> > that video indeed looks interesting.  The most interesting detail is
> > at
> > 00:20.  There, the screen does not become black at once, and the lines
> > do not scroll up with constant speed.
> >
> > My guess is that some program changes the foreground and background
> > colors of the terminal, so that the remaining build commands are still
> > shown, but the colors are "black on black", which of course looks
> > invisible.
> >
> > To verify this assumption, please try this command:
> >
> > make install clean 2>&1 | tr -d '\033'
> >
> > This removes any ANSI escape sequences from the output.  Now all build
> > commands should be visible.
>
> This is probably PR 56223.

I wonder whether this is related to a similar problem I am having when
running wip/neovim-git on the console - whilst vi and vim both work
OK, nvim hangs:

(gdb) thread apply all bt

Thread 2 (LWP 1257 of process 1257 ""):
#0  0x781cc4644b7a in _sys___kevent50 () from /usr/lib/libc.so.12
#1  0x781cc5a07a27 in __kevent50 () from /usr/lib/libpthread.so.1
#2  0x781cc7a1d21f in uv__io_poll (loop=loop@entry=0x950940
, timeout=) at src/unix/kqueue.c:230
#3  0x781cc7a0f58a in uv_run (loop=loop@entry=0x950940
, mode=UV_RUN_ONCE) at src/unix/core.c:385
#4  0x004d46a3 in loop_poll_events (loop=0x950940 ,
ms=ms@entry=-1) at
/usr/pkgsrc/wip/neovim-git/work/neovim/src/nvim/event/loop.c:62
#5  0x0059d34f in inbuf_poll (ms=ms@entry=-1,
events=events@entry=0x781cc897d000) at
/usr/pkgsrc/wip/neovim-git/work/neovim/src/nvim/os/input.c:415
#6  0x0059d7bd in os_inchar (buf=buf@entry=0x0,
maxlen=maxlen@entry=0, ms=ms@entry=-1,
tb_change_cnt=tb_change_cnt@entry=0, events=0x781cc897d000) at
/usr/pkgsrc/wip/neovim-git/work/neovim/src/nvim/os/input.c:128
#7  0x006146fa in state_enter (s=s@entry=0x7f7fff08f940) at
/usr/pkgsrc/wip/neovim-git/work/neovim/src/nvim/state.c:54
#8  0x005748c6 in normal_enter (cmdwin=cmdwin@entry=false,
noexmode=noexmode@entry=false) at
/usr/pkgsrc/wip/neovim-git/work/neovim/src/nvim/normal.c:464
#9  0x0054340c in main (argc=, argv=) at /usr/pkgsrc/wip/neovim-git/work/neovim/src/nvim/main.c:562

Thread 1 (LWP 1259 of process 1257 ""):
#0  0x781cc4644b7a in _sys___kevent50 () from /usr/lib/libc.so.12
#1  0x781cc5a07a27 in __kevent50 () from /usr/lib/libpthread.so.1
#2  0x781cc7a1d21f in uv__io_poll (loop=loop@entry=0x781cc37ff9c0,
timeout=) at src/unix/kqueue.c:230
#3  0x781cc7a0f58a in uv_run (loop=loop@entry=0x781cc37ff9c0,
mode=UV_RUN_ONCE) at src/unix/core.c:385
#4  0x004d46a3 in loop_poll_events
(loop=loop@entry=0x781cc37ff9c0, ms=ms@entry=-1) at
/usr/pkgsrc/wip/neovim-git/work/neovim/src/nvim/event/loop.c:62
#5  0x006312fe in tui_main (bridge=0x781cc888,
ui=0x781cc8939500) at
/usr/pkgsrc/wip/neovim-git/work/neovim/src/nvim/tui/tui.c:463
#6  0x006371da in ui_thread_run (data=) at
/usr/pkgsrc/wip/neovim-git/work/neovim/src/nvim/ui_bridge.c:105
#7  0x781cc5a0c1af in ?? () from /usr/lib/libpthread.so.1
#8  0x781cc4698620 in ?? () from /usr/lib/libc.so.12
#9  0x00010102464c457f in ?? ()
#10 0x in ?? ()https://github.com/tree-sitter/tree-sitter

Chavdar

(in case one wants to build wip/neovim-git, it needs tree-sitter,
which I haven't seen available anywhere in pkgsrc[-wip], but it builds
cleanly from https://github.com/tree-sitter/tree-sitter - more
low-lying fruit to pick up).

>
> Dave
>
>


-- 



Re: Blank screen when build packages

2021-06-07 Thread David H. Gutteridge



On Mon, 7 Jun 2021 at 18:15:43 +0200, Roland Illig wrote:
> Am 07.06.2021 um 16:12 schrieb Dmitrii Postolov:
> > Hi! Sorry for my bad English...
> >
> > NetBSD 9.99.83 GENERIC Sun Jun 6 2021
> >
> > After install NetBSD 9.99.83 and download and unpack pkgsrc-current,
> I try to build some apps
> > from pkgsrc, for example 'editors/nano'. Afrer 'make install clean'
> the app begin to build but
> > after some time the screen is blank and build stop. There is no this
> problem in
> > NetBSD 9.2_STABLE and pkgsrc-current.
> >
> > How can I resolve this problem in NetBSD 9.99.x?
> >
> > Video: https://disk.yandex.ru/i/ruKLubdmfKYpHQ
> 
> Hi Dimitrii,
> 
> that video indeed looks interesting.  The most interesting detail is
> at
> 00:20.  There, the screen does not become black at once, and the lines
> do not scroll up with constant speed.
> 
> My guess is that some program changes the foreground and background
> colors of the terminal, so that the remaining build commands are still
> shown, but the colors are "black on black", which of course looks
> invisible.
> 
> To verify this assumption, please try this command:
> 
> make install clean 2>&1 | tr -d '\033'
> 
> This removes any ANSI escape sequences from the output.  Now all build
> commands should be visible.

This is probably PR 56223.

Dave




Re: Blank screen when build packages

2021-06-07 Thread Roland Illig
Am 07.06.2021 um 16:12 schrieb Dmitrii Postolov:
> Hi! Sorry for my bad English...
>
> NetBSD 9.99.83 GENERIC Sun Jun 6 2021
>
> After install NetBSD 9.99.83 and download and unpack pkgsrc-current, I try to 
> build some apps
> from pkgsrc, for example 'editors/nano'. Afrer 'make install clean' the app 
> begin to build but
> after some time the screen is blank and build stop. There is no this problem 
> in
> NetBSD 9.2_STABLE and pkgsrc-current.
>
> How can I resolve this problem in NetBSD 9.99.x?
>
> Video: https://disk.yandex.ru/i/ruKLubdmfKYpHQ

Hi Dimitrii,

that video indeed looks interesting.  The most interesting detail is at
00:20.  There, the screen does not become black at once, and the lines
do not scroll up with constant speed.

My guess is that some program changes the foreground and background
colors of the terminal, so that the remaining build commands are still
shown, but the colors are "black on black", which of course looks invisible.

To verify this assumption, please try this command:

make install clean 2>&1 | tr -d '\033'

This removes any ANSI escape sequences from the output.  Now all build
commands should be visible.

Roland


Blank screen when build packages

2021-06-07 Thread Dmitrii Postolov
Hi! Sorry for my bad English...

NetBSD 9.99.83 GENERIC Sun Jun 6 2021

After install NetBSD 9.99.83 and download and unpack pkgsrc-current, I try to 
build some apps
from pkgsrc, for example 'editors/nano'. Afrer 'make install clean' the app 
begin to build but
after some time the screen is blank and build stop. There is no this problem in
NetBSD 9.2_STABLE and pkgsrc-current.

How can I resolve this problem in NetBSD 9.99.x?

Video: https://disk.yandex.ru/i/ruKLubdmfKYpHQ

--- 

best regards,
Dmitrii Postolov
dposto...@yandex.ru