Re: Ctrl+C is sometimes ignored on Windows Terminal

2021-11-01 Thread Russell VT via Cygwin
If you're running things from under Windows Terminal, rather than the Cygwin terminal, the behavior is likely going to be inconsistent or unpredictable (and things like interrupts may be handled at a lower level within the terminal, first, before passing to a higher level and received by Cygwin).

Re: A Bug related to ImageTk in Python on Cygwin

2021-10-21 Thread Russell VT via Cygwin
I'll just throw out the obvious "is it plugged in" type question... but, are we to assume you have a fully functional X Server and Client working on your Cygwin install? Any particular desktop/window manager? Have you tried others? Did you compile it yourself, or did you install the package

Re: Terminator 2.0

2021-10-08 Thread Russell VT via Cygwin
This developer seems to have taken on the role as "main distributor," rather than making this a simple Python module that's distributed through the likes of PyPy. Judging from the number of "unsupported" distributions/versions in their list,

Re: cloc: hashbang header has "perl" twice

2021-09-25 Thread Russell VT via Cygwin
Replying to add the package maintainer, as-per Cygwin's source distribution files. This would be something I'd consider installing directly from source, though it looks like the upstream may not make that *quite* as easily as one would like... but, I'll take a better look, after I've slept

Re: cloc: hashbang header has "perl" twice

2021-09-25 Thread Russell VT via Cygwin
Looking at the current Cygwin source, the she-bang is actually: #!/usr/bin/env perl ...which means it's going to pick up the first perl interpreter in your path. You can confirm this in the cloc code, itself, as well.

Re: Missing Python.h

2021-09-25 Thread Russell VT via Cygwin
I am NOT saying there's a problem having "both" versions installed at the same time... I am merely pointing out that, apparently, you have a chicken and egg type issue, likely coming down to "which symlink" is created for /usr/bin/python ... and more specifically, if it points to version 2, or

Re: Missing Python.h

2021-09-22 Thread Russell VT via Cygwin
First off, this *probably* isn't a Cygwin problem ... but it looks like your environment is confused as it's using BOTH Python2 and Python3 modules to try to fulfill the requirements (including resources that have already been cached). For the most part, pip and pip3 can differentiate, but

Re: META: Fix the signup procedure?

2021-08-12 Thread Russell VT via Cygwin
On Thu, Aug 12, 2021 at 12:43 AM Sam Edge via Cygwin wrote: > On 12/08/2021 08:18, Russell VT via Cygwin wrote: > > > I've seen teamseasily > > handle higher traffic lists with a pretty small moderation team. > > Sounds like an offer to me. Thanks Russell. ;-) > LM

Re: META: Fix the signup procedure?

2021-08-12 Thread Russell VT via Cygwin
On Wed, Aug 11, 2021 at 10:24 PM Christopher Faylor < cgf-use-the-mailinglist-ple...@cygwin.com> wrote: > On Wed, Aug 11, 2021 at 04:26:18AM -0700, Russell VT wrote: > >Can one of you powerful folks, please, fix the signup approvals and > >make it a bit more difficult to signup and account that

Re: META: Fix the signup procedure?

2021-08-11 Thread Russell VT via Cygwin
Holy over-quote, batman! On Wed, Aug 11, 2021 at 4:37 AM Brian S. Wilson via Cygwin < cygwin@cygwin.com> wrote: > As a long time user I would oppose an "age" related test to invalidate > emails. Long time users are less likely to be spammers than new email > sign ups. That's kind of... the

META: Fix the signup procedure?

2021-08-11 Thread Russell VT via Cygwin
List Admins - Can one of you powerful folks, please, fix the signup approvals and make it a bit more difficult to signup and account that is "allowed" to post on this list? Generally, it's at least an email verification loop. But, maybe it's time to induce an "age" as well? That said, I will

Re: virtualenv 20.2.2-1 dependencies: filelock and distlib

2021-08-10 Thread Russell VT via Cygwin
Well, it's been a hot minute since I've used virtualenv, by itself... but, generally you're going to want to use "mkvirtualenv" and related tools to create and then access your Python libraries (often under the projects 'venv' directory).Your mileage may vary, trying to invoke it directly from the

Re: Incorrect expansion of a program argument that is a special character?

2021-07-21 Thread Russell VT via Cygwin
Note that Powershell and BASH wildcard (globbing) may be notably different, which includes how items may be "escaped" to prevent such globbing operations. Moreover, in a UN*X shell, it is generally thought that it's the user's responsibility to declare how how file expansion should work,

Re: Debugging PHP with GDB and php-debuginfo

2021-07-20 Thread Russell VT via Cygwin
There's the "Magic Method" in PHP for __debuginfo() . Also see PHP RFC: __debugInfo() . You may have better luck asking the PHP devs how to best use this with GDB, or the GDB folks how to

Re: bug in cygwin tar reading unexpected input(s)...

2021-06-16 Thread Russell VT via Cygwin
Replay by from my phone, so it's a bit brief... Try opening a Cygwin terminal AS administrator, making sure it gives you the "process may modify the system" warning dialog, etc... Then repeat If it works, or complains less, then the problem is permissions at *some* level. Despite Windows having

Re: bug in cygwin tar reading unexpected input(s)...

2021-06-15 Thread Russell VT via Cygwin
I think we need more context, here... as what does Windows versus Cygwin think those permissions are...??? Are you running your terminal, as you... or did you run it as Administrator? Have you run an update, and not rebooted? There should be some "basic shell debugging" done here, first...

Re: problem

2021-06-08 Thread Russell VT via Cygwin
Quick search on find_fast_cwd leads here... https://stackoverflow.com/questions/22821467/cygwin-win-8-1-error-find-fast-cwd-warning-couldnt-compute-fast-cwd-pointer When was the last time you updated Cygwin? What version of Windows are you running? What version of Cygwin? More details would be

Re: Python for Windows reports wrong local time when run under Cygwin on Europe/Moscow TZ

2021-06-07 Thread Russell VT via Cygwin
What version(s) of the timezone files are installed on each? Also, seems one of the Python versions came from Windows, rather than Cygwin? On Mon, Jun 7, 2021 at 12:01 AM Mike Kaganski via Cygwin wrote: > Hello, > > Running Cygwin 3.1.7-1 on Windows 10 Version 21H1 (OS Build 19043.985), > I

Re: Cygwin now on Python 3? What about Mercurial?

2021-03-07 Thread Russell VT via Cygwin
On Thu, Mar 4, 2021 at 8:39 AM Ken Brown via Cygwin wrote: > On 3/4/2021 6:05 AM, marco atzeri via Cygwin wrote: > > On Thu, Mar 4, 2021 at 10:27 AM Russell VT via Cygwin wrote: > >> Cygwin Enthusiasts! > > > > It seems the current package maintainer

Cygwin now on Python 3? What about Mercurial?

2021-03-04 Thread Russell VT via Cygwin
Cygwin Enthusiasts! Well, I was going to hold back on this one, but having now watched the list for a bit, I think this is a fair question (feel free to smack me if I'm feeling too entitled, albeit maybe a bit on the rambling side). TLDR; Cygwin 64 Mercurial (5.5.1) blows chunks with default