[ANNOUNCEMENT] TeX Live collections 20210118-1

2021-01-22 Thread Ken Brown via Cygwin-announce via Cygwin
Cygwin's TeX Live collections have been updated to the latest upstream releases as of 2021-01-18. TeX Live provides a comprehensive, cross-platform TeX system. It includes all the major TeX-related programs, macro packages, and fonts that are free software, including support for many

TeX Live collections 20210118-1

2021-01-22 Thread Ken Brown via Cygwin-announce
Cygwin's TeX Live collections have been updated to the latest upstream releases as of 2021-01-18. TeX Live provides a comprehensive, cross-platform TeX system. It includes all the major TeX-related programs, macro packages, and fonts that are free software, including support for many

Re: [ANNOUNCEMENT] Updated: python packages

2021-01-22 Thread Ken Brown via Cygwin
On 1/22/2021 4:37 PM, Marco Atzeri via Cygwin-announce via Cygwin wrote: Several python packages have been promoted from test to stable Thank you, Marco! Ken -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation:

Re: Random question: plans for Wayland support?

2021-01-22 Thread Brian Inglis
On 2021-01-22 03:02, Hamish McIntyre-Bhatty via Cygwin wrote: Kind of a random question, but are there potential plans to supporting running Wayland under Cygwin as an alternative to X11? I have no idea if it would even be practical/possible to do this, but just curious. The standard answer

[ANNOUNCEMENT] Updated: python packages

2021-01-22 Thread Marco Atzeri via Cygwin-announce via Cygwin
Several python packages have been promoted from test to stable python2 2.7.18-4 python3 3.8.6-1 (almost meta package to pull python38) python363.6.12-2 python373.7.9-2 python383.8.6-2 (as prev) python383.8.7-1 python{36,37,38}-astroid-2.4.2-1

Updated: python packages

2021-01-22 Thread Marco Atzeri via Cygwin-announce
Several python packages have been promoted from test to stable python2 2.7.18-4 python3 3.8.6-1 (almost meta package to pull python38) python363.6.12-2 python373.7.9-2 python383.8.6-2 (as prev) python383.8.7-1 python{36,37,38}-astroid-2.4.2-1

Re: missing perl directories

2021-01-22 Thread Anthony Heading
On Fri, Jan 22, 2021, at 7:35 PM, Achim Gratz wrote: > > For good measure I repeated this with /usr/local not existing at all and > the result stays the same. Achim, that was a helpful test, thankyou. Digging further, the triggering perl code in /usr/share/perl5/5.30/CPAN/FirstTime.pm, so

Re: missing perl directories

2021-01-22 Thread Achim Gratz
Anthony Heading writes: > On Fri, Jan 22, 2021, at 4:36 PM, Marco Atzeri via Cygwin wrote: >> 2020-02-04 19:14 70081 usr/share/perl5/site_perl/5.30/Stow.pm That's a known packaging error caused by the stow configury / Makefile using its own special idea of installsitelib instead of

Re: missing perl directories

2021-01-22 Thread Ken Brown via Cygwin
On 1/22/2021 12:53 PM, Anthony Heading wrote: On Fri, Jan 22, 2021, at 4:36 PM, Marco Atzeri via Cygwin wrote: not on usr/local perl-Stow: Perl library for stow 2020-02-04 19:14 0 usr/share/perl5/ 2020-02-04 19:14 0 usr/share/perl5/site_perl/ 2020-02-04

Re: missing perl directories

2021-01-22 Thread Achim Gratz
Anthony Heading writes: > Whenever I have a new cygwin setup, I get an error/warning when trying to > install perl modules: > > % cpan install Win32::Symlink > Loading internal logger. Log::Log4perl recommended for better logging > [...] > Use of uninitialized value $what in concatenation (.) or

sshd.exe waits repeatedly with SYN_SENT for inaccessible ldap

2021-01-22 Thread Ilya Basin via Cygwin
Hi. The problem first appeared ten days ago. It now takes minutes to login as a domain user. Tcpview shows that sshd.exe is trying to connect an inaccessible server on the port 389 (ldap). If I close the socket using Tcpview, successful login happens sooner. Both password and public key logins

Re: missing perl directories

2021-01-22 Thread Anthony Heading
On Fri, Jan 22, 2021, at 4:36 PM, Marco Atzeri via Cygwin wrote: > > not on usr/local > > perl-Stow: Perl library for stow > > 2020-02-04 19:14 0 usr/share/perl5/ > 2020-02-04 19:14 0 usr/share/perl5/site_perl/ > 2020-02-04 19:14 0

Re: missing perl directories

2021-01-22 Thread Marco Atzeri via Cygwin
On 22.01.2021 17:15, Anthony Heading wrote: Hi Brian! On Fri, Jan 22, 2021, at 7:33 AM, Brian Inglis wrote: either something has not completed correctly, or something is missing in recent installations. I think that's right. Those the directories which are referenced in the binary, I

Re: missing perl directories

2021-01-22 Thread Anthony Heading
Hi Brian! On Fri, Jan 22, 2021, at 7:33 AM, Brian Inglis wrote: > either something has not completed correctly, or something is missing in > recent > installations. I think that's right. Those the directories which are referenced in the binary, I know the generic upstream perl source

Re: Terminal output disappearing after SSH into cygwin

2021-01-22 Thread Thomas Wolff
[somehow my previous response did not go to the list] Am 22.01.2021 um 12:10 schrieb Marco Atzeri via Cygwin: On 22.01.2021 09:16, Brian Inglis wrote: On 2021-01-21 09:02, matthew patton via Cygwin wrote: On Thursday, January 21, 2021, 10:49:14 AM EST, Martyn B wrote: On 2021-01-21 11:13,

[PATCH v3 2/8] syscalls.cc: Deduplicate remove

2021-01-22 Thread Ben Wijen
The remove code is already in the _remove_r function. So, just call the _remove_r function. --- winsup/cygwin/syscalls.cc | 17 - 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc index 8651cfade..e6ff0fd7a 100644

[PATCH v3 1/8] syscalls.cc: unlink_nt: Try FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE

2021-01-22 Thread Ben Wijen
I think we don't need an extra flag as we can utilize: access & FILE_WRITE_ATTRIBUTES What do you think? Ben Wijen (1): syscalls.cc: unlink_nt: Try FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE winsup/cygwin/ntdll.h | 3 ++- winsup/cygwin/syscalls.cc | 22 +++

Re: Terminal output disappearing after SSH into cygwin

2021-01-22 Thread Ken Brown via Cygwin
On 1/22/2021 3:16 AM, Brian Inglis wrote: On 2021-01-21 09:02, matthew patton via Cygwin wrote: On Thursday, January 21, 2021, 10:49:14 AM EST, Martyn B wrote: On 2021-01-21 11:13, Ken Brown via Cygwin wrote: There's also /etc/bash.bash_logout.  The default version of that clears the screen:

(SOLVED) Re: Terminal output disappearing after SSH into cygwin

2021-01-22 Thread Martyn B
On 2021-01-21 11:13, Ken Brown via Cygwin wrote: There's also /etc/bash.bash_logout.  The default version of that clears the screen: ... > # when leaving the console clear the screen to increase privacy > if [ "$SHLVL" = 1 ]; then > [ -x /usr/bin/clear ] && /usr/bin/clear > fi Takashi

Re: [PATCH v2 2/8] syscalls.cc: Deduplicate remove

2021-01-22 Thread Corinna Vinschen via Cygwin-patches
On Jan 20 17:10, Ben Wijen wrote: > The remove code is already in the _remove_r function. > So, just call the _remove_r function. > --- > winsup/cygwin/syscalls.cc | 17 - > 1 file changed, 4 insertions(+), 13 deletions(-) > > diff --git a/winsup/cygwin/syscalls.cc

Re: [PATCH v2 0/4] Improve pseudo console support.

2021-01-22 Thread Corinna Vinschen via Cygwin-patches
Hi Takashi, On Jan 22 05:58, Takashi Yano via Cygwin-patches wrote: > The new implementation of pseudo console support by commit bb428520 > provides the important advantages, while there also has been several > disadvantages compared to the previous implementation. > > These patches overturn

Re: [PATCH v2 0/4] Improve pseudo console support.

2021-01-22 Thread Takashi Yano via Cygwin-patches
On Fri, 22 Jan 2021 10:50:28 +0100 Corinna Vinschen wrote: > On Jan 22 05:58, Takashi Yano via Cygwin-patches wrote: > > The new implementation of pseudo console support by commit bb428520 > > provides the important advantages, while there also has been several > > disadvantages compared to the

Re: Terminal output disappearing after SSH into cygwin

2021-01-22 Thread Marco Atzeri via Cygwin
On 22.01.2021 09:16, Brian Inglis wrote: On 2021-01-21 09:02, matthew patton via Cygwin wrote: On Thursday, January 21, 2021, 10:49:14 AM EST, Martyn B wrote: On 2021-01-21 11:13, Ken Brown via Cygwin wrote: There's also /etc/bash.bash_logout.  The default version of that clears the screen:

Random question: plans for Wayland support?

2021-01-22 Thread Hamish McIntyre-Bhatty via Cygwin
Kind of a random question, but are there potential plans to supporting running Wayland under Cygwin as an alternative to X11? I have no idea if it would even be practical/possible to do this, but just curious. Hamish 0x87B761FE07F548D6.asc Description: application/pgp-keys signature.asc

Re: [PATCH v2 0/4] Improve pseudo console support.

2021-01-22 Thread Corinna Vinschen via Cygwin-patches
On Jan 22 05:58, Takashi Yano via Cygwin-patches wrote: > The new implementation of pseudo console support by commit bb428520 > provides the important advantages, while there also has been several > disadvantages compared to the previous implementation. > > These patches overturn some of them. >

Re: [PATCH] Cygwin: normalize_posix_path: fix error handling when .. is encountered

2021-01-22 Thread Corinna Vinschen via Cygwin-patches
On Jan 20 10:40, Ken Brown via Cygwin-patches wrote: > When .. is in the source path and the path prefix exists but is not a > directory, return ENOTDIR instead of ENOENT. This fixes a failing > gnulib test of realpath(3). > > Addresses:

Re: [PATCH] Cygwin: ptsname_r: always return an error number on failure

2021-01-22 Thread Corinna Vinschen via Cygwin-patches
On Jan 21 17:48, Ken Brown via Cygwin-patches wrote: > On 1/20/2021 1:00 PM, Ken Brown via Cygwin-patches wrote: > > Following Linux, return ENOTTY on a bad file descriptor and also set > > errno to ENOTTY. > > > > Previously 0 was returned and errno was set to EBADF. Returning 0 > > violates

Re: [ANNOUNCEMENT] Test: python packages

2021-01-22 Thread Hamish McIntyre-Bhatty via Cygwin
On 21/01/2021 19:06, Marco Atzeri via Cygwin wrote: > On 21.01.2021 18:06, Hamish McIntyre-Bhatty via Cygwin wrote: > >>> >>> install one and it will remove the other, also as they have >>> the same content in this case >> >> That makes sense, but that's not what happened here - it prompted to >>

Re: Terminal output disappearing after SSH into cygwin

2021-01-22 Thread Brian Inglis
On 2021-01-21 09:02, matthew patton via Cygwin wrote: On Thursday, January 21, 2021, 10:49:14 AM EST, Martyn B wrote: On 2021-01-21 11:13, Ken Brown via Cygwin wrote: There's also /etc/bash.bash_logout. The default version of that clears the screen: $ cat /etc/defaults/etc/bash.bash_logout