Re: Tmux crashes on copy

2024-02-13 Thread Yasuhiro Kimura via Cygwin-apps
Hello, From: Jon Turney via Cygwin-apps Subject: Re: Tmux crashes on copy Date: Wed, 31 Jan 2024 13:28:41 + > Thanks. > > Since this is a crash bug, which renders the package more or less > useless, I made an NMU with these changes. > > > Michael, > > Sorry about not pinging you before

Re: Cygwin installer hangs when running post-install scripts

2024-02-13 Thread Kevin Ushey via Cygwin
Here's a bit more information from a debug build of cygwin; here I'm just trying to launch cygpath.exe: (gdb) f 1 #1 0x7ffa0123ba1f in find_fast_cwd_pointer () at ../../../../winsup/cygwin/path.cc:4526 4526 const uint8_t *lock = (const uint8_t *) (gdb) bt #0 memmem (haystack=,

Re: python3-pip obsoleted by python36-pip?

2024-02-13 Thread Marco Atzeri via Cygwin
On 13/02/2024 19:18, Irfan Adilovic via Cygwin wrote: Excerpt from: https://cygwin.com/packages/summary/python3-pip.html depends: python39-pip obsoleted_by: python36-pip This makes no sense -- it selects the full python36 installation at every update attempt, when I want to keep the latest

Re: Suggestion: [setup] Add an option to allow user to add "Open Cygwin Terminal Here" to Right-click menu

2024-02-13 Thread Dan Shelton via Cygwin
On Sat, 10 Feb 2024 at 05:21, Yang Yu Lin via Cygwin wrote: > > It would be convenient for users to open specific folder in terminal by just > right-click it, like Git Bash and Windows Terminal. > > Note: I hope this change would work on Windows 11 right-click menu. (Because > I don't like

Bids Take-off

2024-02-13 Thread genaromoye912--- via Cygwin
Hello, We can assist you if you are a contractor/construction company searching for rapid estimates so that you do not miss any bids. Our estimating and drafting teams are working nonstop to ensure that contractors do not miss their deadlines. Our customized, in-house produced excel sheet

Re: Cygwin installer hangs when running post-install scripts

2024-02-13 Thread Corinna Vinschen via Cygwin
On Feb 13 10:01, Kevin Ushey via Cygwin wrote: > On Tue, Feb 13, 2024 at 8:25 AM Corinna Vinschen wrote: > > On Feb 13 11:09, Corinna Vinschen via Cygwin wrote: > > > Other than that, the only thing you really could do at this point is to > > > check Cygwin's find_fast_cwd_pointer() function and

Re: cygport 0.36.8-1

2024-02-13 Thread Christian Franke via Cygwin
Jon Turney via Cygwin wrote: On 13/02/2024 13:02, Christian Franke via Cygwin wrote: Jon Turney via Cygwin wrote: On 12/02/2024 16:49, ASSI via Cygwin wrote: Christian Franke via Cygwin writes: This requires that always the same build directory is used. Would that be solvable by using

python3-pip obsoleted by python36-pip?

2024-02-13 Thread Irfan Adilovic via Cygwin
Excerpt from: https://cygwin.com/packages/summary/python3-pip.html depends: python39-pip obsoleted_by: python36-pip This makes no sense -- it selects the full python36 installation at every update attempt, when I want to keep the latest python installation only. Am I missing something obvious,

Re: Cygwin installer hangs when running post-install scripts

2024-02-13 Thread Kevin Ushey via Cygwin
Hi Corinna, Thank you for taking a look so quickly -- I can confirm your patch fixes things for me; the installer now runs to completion and the Cygwin64 Terminal + other installed tools all function correctly. Best, Kevin On Tue, Feb 13, 2024 at 8:25 AM Corinna Vinschen wrote: > > On Feb 13

Re: Cygwin installer hangs when running post-install scripts

2024-02-13 Thread Corinna Vinschen via Cygwin
On Feb 13 11:09, Corinna Vinschen via Cygwin wrote: > On Feb 12 14:38, Kevin Ushey via Cygwin wrote: > > For reference, I first bumped into this when using Git Bash as bundled > > with Git for Windows, but it sounds like the underlying issue may be > > in Cygwin. See

Re: cygport 0.36.8-1

2024-02-13 Thread Jon Turney via Cygwin
On 13/02/2024 13:02, Christian Franke via Cygwin wrote: Jon Turney via Cygwin wrote: On 12/02/2024 16:49, ASSI via Cygwin wrote: Christian Franke via Cygwin writes: This requires that always the same build directory is used. Would that be solvable by using -ffile-prefix-map or is there more

Re: Running setup-x86_64.exe from cmd does nothing but works from cygwin itself

2024-02-13 Thread Jon Turney via Cygwin
On 12/02/2024 21:37, matthew patton via Cygwin wrote: If you really suspect some AV problems, it may help to try the> uncompressed setup executable, available from [1] Huh, when did this start? Nobody pays by BW anymore so what was the Firstly, do not send me personal email. I think we

RE: [EXTERNAL] Re: Win32 account SID lookup if user and group have the same name?

2024-02-13 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C] via Cygwin
> It's the same SID and it's your user SID. There can't be a group with > the same name as a user account in the same user DB. Each account in > the local domain or in an AD domain has to have a unique account name. Exactly! Which is why we use "namegrp" (an established convention) for Windows

[PATCH] Cygwin: console: Fix a problem that minor ID is incorrect in ConEmu.

2024-02-13 Thread Takashi Yano
Previously, minor device number of console was not assigned correctly in ConEmu environment. This is because console window of ConEmu is not enumerated by EnumWindows(). This patch fixes the issue. Signed-off-by: Takashi Yano --- winsup/cygwin/autoload.cc | 2 ++

[PATCH] Cygwin: console: Make VMIN and VTIME work.

2024-02-13 Thread Takashi Yano
Previously, VMIN and VTIME did not work at all. This patch fixes that. Signed-off-by: Takashi Yano --- winsup/cygwin/fhandler/console.cc | 26 ++ winsup/cygwin/release/3.5.1 | 2 ++ 2 files changed, 20 insertions(+), 8 deletions(-) diff --git

[PATCH] Cygwin: pty: Fix potential handle leak regarding CallNamedPipe().

2024-02-13 Thread Takashi Yano
In pty master_thread, 6 handles are duplicated when CallNamedPipe() requests that. Though some of them are not used so should be closed, they were not. This causes handle leak potentially. Signed-off-by: Takashi Yano --- winsup/cygwin/fhandler/pty.cc | 20 ++-- 1 file changed,

[PATCH] Cygwin: pty: Fix handle leak in master process.

2024-02-13 Thread Takashi Yano
If non-cygwin process is started in pty, closing from_master_nat pipe handle was missing in fhandler_pty_slave::input_transfer(). This occured because the handle was duplicated but not closed. https://github.com/msys2/msys2-runtime/issues/198 Fixes: 29431fcb5b14 ("Cygwin: pty: Inherit typeahead

Re: cygport 0.36.8-1

2024-02-13 Thread Christian Franke via Cygwin
Jon Turney via Cygwin wrote: On 12/02/2024 16:49, ASSI via Cygwin wrote: Christian Franke via Cygwin writes: This requires that always the same build directory is used. Would that be solvable by using -ffile-prefix-map or is there more to it? That should now be used in 0.36.8, so something

Updated: libuv-1.48.0-1

2024-02-13 Thread Marco Atzeri via Cygwin-announce
version 1.48.0-1 of libuv (source) libuv-devel libuv1 is available in the Cygwin distribution: CHANGES Last upstream release. DESCRIPTION libuv is a multi-platform support library with a focus on asynchronous I/O. It was primarily developed for use by Node.js, but

Updated: expat-2.6.0-1

2024-02-13 Thread Marco Atzeri via Cygwin-announce
Version 2.6.0-1 of expat libexpat-devel libexpat1 are available in the Cygwin distribution: CHANGES Latest upstream release https://github.com/libexpat/libexpat/blob/R_2_6_0/expat/Changes DESCRIPTION Stream-oriented XML parser library written in C. Expat excels with

Re: Win32 account SID lookup if user and group have the same name?

2024-02-13 Thread Corinna Vinschen via Cygwin
On Feb 13 02:12, Dan Shelton via Cygwin wrote: > Hello! > > How can I get the SID for either user XOR group if both have the same > name? Remember Cygwin, as Unix and Linux, allow that a user "danfsh" > can have his own group "danfsh". That works fine there, but on Win32 > there is only

Re: libuv 1.48.0 fixes CVE-2024-24806

2024-02-13 Thread Marco Atzeri via Cygwin-apps
On 13/02/2024 01:47, Brian Inglis via Cygwin-apps wrote: All releases >= 1.24.0 confirmed as affected includes all Cygwin releases https://seclists.org/oss-sec/2024/q1/124 building on scallywag Regards Marco

Re: Cygwin installer hangs when running post-install scripts

2024-02-13 Thread Corinna Vinschen via Cygwin
On Feb 12 14:38, Kevin Ushey via Cygwin wrote: > Hello, > > I'm seeing an issue when attempting to install Cygwin where the > installer hangs while trying to run postinstall scripts (more > specifically, /etc/postinstall/0p_000_autorebase.dash). When the hang > occurs, I see a 'dash.exe' process