Re: Mintty does not close after "exit" command

2017-05-24 Thread Dani Moncayo
> Anything suspicious in logout script?

I don't think so.  Until now, I didn't even know about such a script
(I guess it's "/etc/bash.bash_logout").

Thanks anyway.

-- 
Dani Moncayo

--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple



Mintty does not close after "exit" command

2017-05-24 Thread Dani Moncayo
Hi,

subject line says it all.

I've been experiencing this problem for some months, on windows 10.
But the problem does not appear in another windows 8.1 system I use.

To reproduce the problem, just open the standard cygwin terminal (e.g.
by double-clicking the desktop icon), an then type the "exit" command
in the bash shell.

I see a "logout" message for a fraction of a second, then the terminal
becomes empty (without text), but the mintty window remains visible
but unresponsive, with the title bar showing "~ (Not Responding)".


-- 
Dani Moncayo

--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple



Re: Download without installing

2016-06-06 Thread Dani Moncayo
On Mon, Jun 6, 2016 at 10:59 AM, Achim Gratz  wrote:
> Dani Moncayo  gmail.com> writes:
>> This seems to me like a bug in the installer.  I think that the
>> "Pending" view should be empty the second time I ran the installer
>> (and of course no "extra dependencies" should be advertised to
>> install).
>
> No.  You haven't installed anything yet and the package selection is still
> the same, so you get the same set of packages (and their dependencies)
> shown.  Setup alway shows the list of packages pending vs. the installation
> (again, you have none on both attempts).  That "download only" switch only
> prevents the actual installation, it is not a separate "mode" of operating
> setup that suddenly compares against what is already downloaded.
>
>
> Regards,
> Achim.

Understood.  Thank you!


-- 
Dani Moncayo

--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple



Download without installing

2016-06-06 Thread Dani Moncayo
Hello cygwinners,

I've observed for several weeks something strange, and I'd like to ask
here if it's a bug or my misunderstanding.

I've just tried this:
1. Run setup.exe version 2.874 (32 bit).
2. Select the option "Download Without Installing", to download a
   basic (default) repository to an empty local directory.
3. I see a "Resolving Dependencies" window, showing extra packages
   that supposedly will be intalled to satisfly some dependencies.  I
   accept the default settings.

Well, after the setup program is done downloading all the packages to
my new local repo, I repeat the above process, to verify that this
second time there is no need to download anything.  But to my
surprise, in the "Select Packages" stage, if I select the "Pending"
view, I see again the same list of packages of the first time, and
when I click "next", I see the same "Resolving Dependencies" window
with the same extra packages.  Finally, when I click "next", no
dowloading takes place this time.

This seems to me like a bug in the installer.  I think that the
"Pending" view should be empty the second time I ran the installer
(and of course no "extra dependencies" should be advertised to
install).

Thanks in advance for your help.

--
Dani Moncayo

--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple



Re: Problem with git and file mode changes

2015-09-05 Thread Dani Moncayo
Adam, Ken, thank you for taking time to help me.

(BTW, did you keep my address in CC?  Because I didn't get any of your
replies.  I had to check the mailing list web archive [1]).

BTW(2): For the record, some data points I forgot to give in my initial post:
* The underlying filesystem is NTFS.
* I did not have this problem some weeks ago, with the same
  system, Cygwin installation, and git repo.  Therefore, some
  change/update in my system/environment must have introduced the problem.

Ken's suggestion (setfacl -b test) didn't work, but it did work when I
executed it on individual files (eg. 'test/rmailmm.el' instead of
'test').  So the problem is apparently fixed after doing:

  find . -exec setfacl -b {} \;

Thank you so much.

-- 
Dani Moncayo

Footnotes:
[1] https://cygwin.com/ml/cygwin/2015-09/

--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple



Problem with git and file mode changes

2015-09-04 Thread Dani Moncayo
Hello list,

I have installed an up-to-date version of Cygwin on a Windows 8.1
machine:

  $ uname -a
  CYGWIN_NT-6.3 LEG570 2.2.1(0.289/5/3) 2015-08-20 11:42 x86_64 Cygwin

I have a problem with git.  This is the installed version:

  $ git --version
  git version 2.5.1

After doing a 'git pull', I saw that git didn't make the merge,
because apparently I had some local changes.  But I didn't make
any local change.  For example, this file appears as modified:

  $ git status --short test/rmailmm.el
   M test/rmailmm.el

  $ git diff test/rmailmm.el
  diff --git a/test/rmailmm.el b/test/rmailmm.el
  old mode 100644
  new mode 100755

Mmm strange, I never changed the permissions of any file in my
repo.  And moreover:

  $ ls -o test/rmailmm.el
  -rwxrwxr--+ 1 Dani 3106 Sep 4 16:19 test/rmailmm.el

According to 'ls', the file mode is 774, but according to git is
755.  Which one is wrong?

Well, let's try to revert the misterious change:

  $ git checkout test/rmailmm.el

  $ git status --short test/rmailmm.el
   M test/rmailmm.el

  $ git diff test/rmailmm.el
  diff --git a/test/rmailmm.el b/test/rmailmm.el
  old mode 100644
  new mode 100755

  $ ls -o test/rmailmm.el
  -rwxrwxr--+ 1 Dani 3106 Sep  4 16:28 test/rmailmm.el

Apparently nothing has changed after the 'git checkout'!!

Do you know what's happening here?

TIA

-- 
Dani Moncayo

PS: keep my address CC'd, as I'm not subscribed to this list.

--
Problem reports:   http://cygwin.com/problems.html
FAQ:   http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple