[kdesrc-build] [Bug 398235] kdesrc-build-setup dialog does not have access to explicit fd

2022-12-30 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=398235

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

--- Comment #5 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

-- 
You are receiving this mail because:
You are watching all bug changes.

[kdesrc-build] [Bug 398235] kdesrc-build-setup dialog does not have access to explicit fd

2022-12-15 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=398235

--- Comment #4 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

-- 
You are receiving this mail because:
You are watching all bug changes.

[kdesrc-build] [Bug 398235] kdesrc-build-setup dialog does not have access to explicit fd

2022-11-30 Thread Justin Zobel
https://bugs.kde.org/show_bug.cgi?id=398235

Justin Zobel  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #3 from Justin Zobel  ---
Thank you for reporting this issue in KDE software. As it has been a while
since this issue was reported, can we please ask you to see if you can
reproduce the issue with a recent software version?

If you can reproduce the issue, please change the status to "REPORTED" when
replying. Thank you!

-- 
You are receiving this mail because:
You are watching all bug changes.

[kdesrc-build] [Bug 398235] kdesrc-build-setup dialog does not have access to explicit fd

2018-09-28 Thread Michael Pyne
https://bugs.kde.org/show_bug.cgi?id=398235

--- Comment #2 from Michael Pyne  ---
kdesrc-build-setup has used output-fd since I wrote it in 2011, as far as I can
glean from git.

My memory is not *that* good as to say why but the dialog(1) manpage explains
that dialog(1) normally writes to stderr, which might mix with error messages
from dialog(1), if any. Using --output-fd would ensure that any output that is
received is related to the user input.

By default dialog(1) does not write to stdout, but to stderr instead. stdout is
used to drive the TTY after all (though it seems dialog(1) can try to reopen
the TTY even if you ask for output to go to stdout).

You may also try adjusting the value for $^F on line 57 to something higher
than 4 (e.g. 5 or even 10 or 15). The value chosen here is used by Perl to set
which file descriptors should *not* be closed-on-exec. 4 should be sufficient
but if your configuration involves extra file descriptors being open, or
randomizes descriptor values, you may need to adjust this value to be >=
whatever the pipe(2) call would be returning here.

As an alternative, it might be easier to just fallback to a readline-based
interface if dialog(1) fails?

-- 
You are receiving this mail because:
You are watching all bug changes.

[kdesrc-build] [Bug 398235] kdesrc-build-setup dialog does not have access to explicit fd

2018-09-04 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=398235

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

-- 
You are receiving this mail because:
You are watching all bug changes.

[kdesrc-build] [Bug 398235] kdesrc-build-setup dialog does not have access to explicit fd

2018-09-04 Thread Matt Whipple
https://bugs.kde.org/show_bug.cgi?id=398235

--- Comment #1 from Matt Whipple  ---
>From what I gather at a glance this seems to be a problem with dialog trying to
get access to an fd tied to being invoked with a pipe (which it can't due to
some permission restriction on my system) but just leaving it to use the
default stdout works fine. Is there a use case for explicitly specifying the fd
or could stdout be normally used?

-- 
You are receiving this mail because:
You are watching all bug changes.