public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Re: git 2.8.3 spurious output
@ 2016-06-09  7:52 Cufi, Carles
  2016-06-09 19:37 ` Warren Young
  0 siblings, 1 reply; 13+ messages in thread
From: Cufi, Carles @ 2016-06-09  7:52 UTC (permalink / raw)
  To: cygwin

Hi there,


> On Jun 8, 2016, at 8:19 AM, Cufi, Carles wrote:
> >
> > So what's the better way of fixing this? Making /mingw/bin/gettext.sh
> have UNIX line endings or replacing it with the proper Cygwin gettext.sh
> that I seem to be missing?
> 
> Donât try to mix the Cygwin and MinGW build systems.  Having MinGW in
> the PATH while developing under Cygwin is one way to make such mistakes,
> since anything not found under Cygwin falls back to MinGW.
> 
> Instead, treat MinGW as a special mode separate from normal Cygwin
> operation.  MSYS is one way, but I prefer to use Cygwin most of the
> time, then run a âmingwâ script I wrote to temporarily shift my Cygwin
> environment to MinGW mode:
> 
>     #!/bin/sh
>     PATH=/cygdrive/c/mingw/bin:/cygdrive/c/windows:\
>     /cygdrive /c/windows/system32:/cygdrive/c/cygwin/bin
>     echo "Say 'exit' to leave MinGW shell and restore Cygwin
> environment."
>     /bin/bash --rcfile ~/.mingwrc
> 
> You also need that ~/.mingwrc file:
> 
>     alias make=mingw32-make
>     PS1='MinGW: \W \$ â

This sounds like a very good idea, but the problem is that sometimes I need to run mingw commands from standard Windows Command Prompts. That then forces me to have the MinGW bin folders in Window's PATH, which caused all the trouble in the first place apparently.
Someone else has mentioned that having the MinGW binaries in the system PATH is not a good idea, so I might simply get rid of that.

But I will save this script and try it out for when I want bash + mingw, thanks!


> Thereâs a way to avoid splitting the code between two files, but it
> would require a slightly more complicated command, so I wonât tell you
> how.  (If you figure it out, youâll probably agree that itâs worth
> splitting the code like this.)
> 
> The result is that your PATH temporarily shadows the Cygwin build tools
> with MinGW ones, excepting for make(1) which is named differently under
> MinGW, so we have to use an alias instead.
> 
> Because this creates a subshell, you can just âexitâ to get back out of
> MinGW mode into Cygwin mode, having never left the directory you were in
> when you entered MinGW mode.


This is a really neat trick to be able to run MinGW from within Cygwin and without having to resort to MSYS.
I don't mind having 2 files really, so I don't think I'll try to figure out how to merge them.

Thanks for all the feedback.

Carles


--
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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: git 2.8.3 spurious output
  2016-06-09  7:52 git 2.8.3 spurious output Cufi, Carles
@ 2016-06-09 19:37 ` Warren Young
  2016-06-11 19:20   ` Brian Inglis
  0 siblings, 1 reply; 13+ messages in thread
From: Warren Young @ 2016-06-09 19:37 UTC (permalink / raw)
  To: The Cygwin Mailing List

On Jun 9, 2016, at 1:52 AM, Cufi, Carles <Carles.Cufi@nordicsemi.no> wrote:
> 
>> I prefer to use Cygwin most of the
>> time, then run a âmingwâ script I wrote to temporarily shift my Cygwin
>> environment to MinGW mode:
> 
> This sounds like a very good idea, but the problem is that sometimes I need to run mingw commands from standard Windows Command Prompts.

So write a mingw.bat file that does something similar for cmd.exe.

It won’t be seen from Cygwin even if it’s in Cygwin’s path because Cygwin won’t run it without the “.bat” extension, and Cygwin’s mingw shell script won’t be run by cmd.exe, so the “mingw” command will mean something completely different to each shell.

Incidentally, I see that I forgot to fix a /c -> /cygdrive/c in the script I posted.  (I normally run with cygdrive mounted at the root, and write my scripts accordingly.)
--
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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: git 2.8.3 spurious output
  2016-06-09 19:37 ` Warren Young
@ 2016-06-11 19:20   ` Brian Inglis
  0 siblings, 0 replies; 13+ messages in thread
From: Brian Inglis @ 2016-06-11 19:20 UTC (permalink / raw)
  To: cygwin

Warren Young <wyml <at> etr-usa.com> writes:
> Incidentally, I see that I forgot to fix a /c -> /cygdrive/c in the script 
> I posted.  (I normally run with cygdrive mounted at the root, and write my 
> scripts accordingly.)

reminder - /proc/cygdrive/c/ works on all systems - saves worrying about it





--
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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: git 2.8.3 spurious output
  2016-06-08 14:41 Cufi, Carles
@ 2016-06-08 16:45 ` Achim Gratz
  0 siblings, 0 replies; 13+ messages in thread
From: Achim Gratz @ 2016-06-08 16:45 UTC (permalink / raw)
  To: cygwin

Cufi, Carles writes:
>> In general, however, it seems to me that you're asking for trouble by
>> having MinGW binaries in your path while working in Cygwin.
>
> Yep, I want to do that but the problem is that Cygwin inherits the
> global PATH from Windows and MinGW is present there. I guess I could
> somehow remove it from the path with a script in my .bashrc when bash
> opens.

You quite likely don't want MinGW generally in PATH on Windows either.
But you can already skip the Windows PATH altogether for Cygwin by
defining CYGWIN_NOWINPATH in the Windows environment for all POSIX
compaible shells.


Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

Wavetables for the Terratec KOMPLEXER:
http://Synth.Stromeko.net/Downloads.html#KomplexerWaves

--
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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: git 2.8.3 spurious output
@ 2016-06-08 14:41 Cufi, Carles
  2016-06-08 16:45 ` Achim Gratz
  0 siblings, 1 reply; 13+ messages in thread
From: Cufi, Carles @ 2016-06-08 14:41 UTC (permalink / raw)
  To: kbrown, cygwin

> On 6/8/2016 10:19 AM, Cufi, Carles wrote:
> 
> On 6/8/2016 9:57 AM, Cufi, Carles wrote:
> Hi there,
> 
> On 6/8/2016 5:35 AM, Cufi, Carles wrote:
> Hi,
> 
> When running git 2.8.3 with certain of its commands (submodule for
> example) I get spurious output on the terminal:
> 
> cacu ~/src/nordic/gh/pc-ble-driver-py (master) $ git submodule deinit .
> ': not a valid identifiertext.sh: line 88: export: `displaypath Cleared
> directory ''
> ': not a valid identifiertext.sh: line 88: export: `name
> ': not a valid identifiertext.sh: line 88: export: `url
> ': not a valid identifiertext.sh: line 88: export: `displaypath
> Submodule '' () unregistered for path ''
> 
> The variables referenced above (displaypath, name, url) seem to be part
> of the git-submodule script in /usr/libexec/git-core.
> 
> It looks like output lines are being overwritten, which suggests that
> you have DOS line endings somewhere (maybe in git-submodule?). For
> example, there seems to be a reference to line 88 of gettext.sh,
> partially overwritten by something else. (Notice that git-submodule
> calls eval_gettext many times; the latter is defined in
> /usr/bin/gettext.sh.)
> 
> That's one of the first thing I tried, I ran:
> 
> $ dos2unix /usr/libexec/git-core/git-submodule
> 
> But the spurious output is still there.
> 
> There doesn't seem to be a /usr/bin/gettext.sh in my Cygwin
> installation.
> 
> I see that you have some msys stuff in your path. Do you have gettext.sh
> there? ('which gettext.sh' should find it.)
> 
> Yep, that's it!
> 
> $ which gettext.sh
> /cygdrive/c/mingw/bin/gettext.sh
> 
> So what's the better way of fixing this? Making /mingw/bin/gettext.sh
> have UNIX line endings or replacing it with the proper Cygwin gettext.sh
> that I seem to be missing?
> 
> One solution would be to install Cygwin's gettext package, so that
> Cygwin's gettext.sh precedes MinGW's in your path. (Note that git
> doesn't require gettext; it's not needed because git-sh-i18n provides a
> definition of eval_gettext on systems that don't have it.

This worked like a charm. Installed cygwin's own gettext package and now I get no more spurious output.
Thanks so much for that.


> In general, however, it seems to me that you're asking for trouble by
> having MinGW binaries in your path while working in Cygwin.

Yep, I want to do that but the problem is that Cygwin inherits the global PATH from Windows and MinGW is present there. I guess I could somehow remove it from the path with a script in my .bashrc when bash opens.

Thanks again,

Carles



--
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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: git 2.8.3 spurious output
  2016-06-08 14:19 Cufi, Carles
  2016-06-08 14:27 ` Ken Brown
@ 2016-06-08 14:33 ` Warren Young
  1 sibling, 0 replies; 13+ messages in thread
From: Warren Young @ 2016-06-08 14:33 UTC (permalink / raw)
  To: The Cygwin Mailing List

On Jun 8, 2016, at 8:19 AM, Cufi, Carles wrote:
> 
> So what's the better way of fixing this? Making /mingw/bin/gettext.sh have UNIX line endings or replacing it with the proper Cygwin gettext.sh that I seem to be missing?

Don’t try to mix the Cygwin and MinGW build systems.  Having MinGW in the PATH while developing under Cygwin is one way to make such mistakes, since anything not found under Cygwin falls back to MinGW.

Instead, treat MinGW as a special mode separate from normal Cygwin operation.  MSYS is one way, but I prefer to use Cygwin most of the time, then run a “mingw” script I wrote to temporarily shift my Cygwin environment to MinGW mode:

    #!/bin/sh
    PATH=/cygdrive/c/mingw/bin:/cygdrive/c/windows:\
    /cygdrive /c/windows/system32:/cygdrive/c/cygwin/bin
    echo "Say 'exit' to leave MinGW shell and restore Cygwin environment."
    /bin/bash --rcfile ~/.mingwrc

You also need that ~/.mingwrc file:

    alias make=mingw32-make
    PS1='MinGW: \W \$ ‘

There’s a way to avoid splitting the code between two files, but it would require a slightly more complicated command, so I won’t tell you how.  (If you figure it out, you’ll probably agree that it’s worth splitting the code like this.)

The result is that your PATH temporarily shadows the Cygwin build tools with MinGW ones, excepting for make(1) which is named differently under MinGW, so we have to use an alias instead.

Because this creates a subshell, you can just “exit” to get back out of MinGW mode into Cygwin mode, having never left the directory you were in when you entered MinGW mode.
--
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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: git 2.8.3 spurious output
  2016-06-08 14:19 Cufi, Carles
@ 2016-06-08 14:27 ` Ken Brown
  2016-06-08 14:33 ` Warren Young
  1 sibling, 0 replies; 13+ messages in thread
From: Ken Brown @ 2016-06-08 14:27 UTC (permalink / raw)
  To: cygwin

On 6/8/2016 10:19 AM, Cufi, Carles wrote:
>
>> On 6/8/2016 9:57 AM, Cufi, Carles wrote:
>> Hi there,
>>
>> On 6/8/2016 5:35 AM, Cufi, Carles wrote:
>> Hi,
>>
>> When running git 2.8.3 with certain of its commands (submodule for
>> example) I get spurious output on the terminal:
>>
>> cacu ~/src/nordic/gh/pc-ble-driver-py (master) $ git submodule deinit .
>> ': not a valid identifiertext.sh: line 88: export: `displaypath Cleared
>> directory ''
>> ': not a valid identifiertext.sh: line 88: export: `name
>> ': not a valid identifiertext.sh: line 88: export: `url
>> ': not a valid identifiertext.sh: line 88: export: `displaypath
>> Submodule '' () unregistered for path ''
>>
>> The variables referenced above (displaypath, name, url) seem to be part
>> of the git-submodule script in /usr/libexec/git-core.
>>
>> It looks like output lines are being overwritten, which suggests that
>> you have DOS line endings somewhere (maybe in git-submodule?). For
>> example, there seems to be a reference to line 88 of gettext.sh,
>> partially overwritten by something else. (Notice that git-submodule
>> calls eval_gettext many times; the latter is defined in
>> /usr/bin/gettext.sh.)
>>
>> That's one of the first thing I tried, I ran:
>>
>> $ dos2unix /usr/libexec/git-core/git-submodule
>>
>> But the spurious output is still there.
>>
>> There doesn't seem to be a /usr/bin/gettext.sh in my Cygwin
>> installation.
>>
>> I see that you have some msys stuff in your path. Do you have gettext.sh
>> there? ('which gettext.sh' should find it.)
>
> Yep, that's it!
>
> $ which gettext.sh
> /cygdrive/c/mingw/bin/gettext.sh
>
> So what's the better way of fixing this? Making /mingw/bin/gettext.sh have UNIX line endings or replacing it with the proper Cygwin gettext.sh that I seem to be missing?

One solution would be to install Cygwin's gettext package, so that 
Cygwin's gettext.sh precedes MinGW's in your path.  (Note that git 
doesn't require gettext; it's not needed because git-sh-i18n provides a 
definition of eval_gettext on systems that don't have it.

In general, however, it seems to me that you're asking for trouble by 
having MinGW binaries in your path while working in Cygwin.

Ken

--
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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: git 2.8.3 spurious output
@ 2016-06-08 14:19 Cufi, Carles
  2016-06-08 14:27 ` Ken Brown
  2016-06-08 14:33 ` Warren Young
  0 siblings, 2 replies; 13+ messages in thread
From: Cufi, Carles @ 2016-06-08 14:19 UTC (permalink / raw)
  To: cygwin, kbrown


> On 6/8/2016 9:57 AM, Cufi, Carles wrote:
> Hi there,
> 
> On 6/8/2016 5:35 AM, Cufi, Carles wrote:
> Hi,
> 
> When running git 2.8.3 with certain of its commands (submodule for
> example) I get spurious output on the terminal:
> 
> cacu ~/src/nordic/gh/pc-ble-driver-py (master) $ git submodule deinit .
> ': not a valid identifiertext.sh: line 88: export: `displaypath Cleared
> directory ''
> ': not a valid identifiertext.sh: line 88: export: `name
> ': not a valid identifiertext.sh: line 88: export: `url
> ': not a valid identifiertext.sh: line 88: export: `displaypath
> Submodule '' () unregistered for path ''
> 
> The variables referenced above (displaypath, name, url) seem to be part
> of the git-submodule script in /usr/libexec/git-core.
> 
> It looks like output lines are being overwritten, which suggests that
> you have DOS line endings somewhere (maybe in git-submodule?). For
> example, there seems to be a reference to line 88 of gettext.sh,
> partially overwritten by something else. (Notice that git-submodule
> calls eval_gettext many times; the latter is defined in
> /usr/bin/gettext.sh.)
> 
> That's one of the first thing I tried, I ran:
> 
> $ dos2unix /usr/libexec/git-core/git-submodule
> 
> But the spurious output is still there.
> 
> There doesn't seem to be a /usr/bin/gettext.sh in my Cygwin
> installation.
> 
> I see that you have some msys stuff in your path. Do you have gettext.sh
> there? ('which gettext.sh' should find it.)

Yep, that's it!

$ which gettext.sh
/cygdrive/c/mingw/bin/gettext.sh

So what's the better way of fixing this? Making /mingw/bin/gettext.sh have UNIX line endings or replacing it with the proper Cygwin gettext.sh that I seem to be missing?

Thanks!

Carles



--
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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: git 2.8.3 spurious output
  2016-06-08 13:57 Cufi, Carles
@ 2016-06-08 14:06 ` Ken Brown
  0 siblings, 0 replies; 13+ messages in thread
From: Ken Brown @ 2016-06-08 14:06 UTC (permalink / raw)
  To: cygwin

On 6/8/2016 9:57 AM, Cufi, Carles wrote:
> Hi there,
>
>> On 6/8/2016 5:35 AM, Cufi, Carles wrote:
>> Hi,
>>
>> When running git 2.8.3 with certain of its commands (submodule for
>> example) I get spurious output on the terminal:
>>
>> cacu ~/src/nordic/gh/pc-ble-driver-py (master) $ git submodule deinit .
>> ': not a valid identifiertext.sh: line 88: export: `displaypath Cleared
>> directory ''
>> ': not a valid identifiertext.sh: line 88: export: `name
>> ': not a valid identifiertext.sh: line 88: export: `url
>> ': not a valid identifiertext.sh: line 88: export: `displaypath
>> Submodule '' () unregistered for path ''
>>
>> The variables referenced above (displaypath, name, url) seem to be part
>> of the git-submodule script in /usr/libexec/git-core.
>>
>> It looks like output lines are being overwritten, which suggests that
>> you have DOS line endings somewhere (maybe in git-submodule?). For
>> example, there seems to be a reference to line 88 of gettext.sh,
>> partially overwritten by something else. (Notice that git-submodule
>> calls eval_gettext many times; the latter is defined in
>> /usr/bin/gettext.sh.)
>
> That's one of the first thing I tried, I ran:
>
> $ dos2unix /usr/libexec/git-core/git-submodule
>
> But the spurious output is still there.
>
> There doesn't seem to be a /usr/bin/gettext.sh in my Cygwin installation.

I see that you have some msys stuff in your path.  Do you have 
gettext.sh there?  ('which gettext.sh' should find it.)

Ken


--
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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: git 2.8.3 spurious output
@ 2016-06-08 13:57 Cufi, Carles
  2016-06-08 14:06 ` Ken Brown
  0 siblings, 1 reply; 13+ messages in thread
From: Cufi, Carles @ 2016-06-08 13:57 UTC (permalink / raw)
  To: cygwin, kbrown

Hi there,

> On 6/8/2016 5:35 AM, Cufi, Carles wrote:
> Hi,
> 
> When running git 2.8.3 with certain of its commands (submodule for
> example) I get spurious output on the terminal:
> 
> cacu ~/src/nordic/gh/pc-ble-driver-py (master) $ git submodule deinit .
> ': not a valid identifiertext.sh: line 88: export: `displaypath Cleared
> directory ''
> ': not a valid identifiertext.sh: line 88: export: `name
> ': not a valid identifiertext.sh: line 88: export: `url
> ': not a valid identifiertext.sh: line 88: export: `displaypath
> Submodule '' () unregistered for path ''
> 
> The variables referenced above (displaypath, name, url) seem to be part
> of the git-submodule script in /usr/libexec/git-core.
> 
> It looks like output lines are being overwritten, which suggests that
> you have DOS line endings somewhere (maybe in git-submodule?). For
> example, there seems to be a reference to line 88 of gettext.sh,
> partially overwritten by something else. (Notice that git-submodule
> calls eval_gettext many times; the latter is defined in
> /usr/bin/gettext.sh.)

That's one of the first thing I tried, I ran:

$ dos2unix /usr/libexec/git-core/git-submodule

But the spurious output is still there.

There doesn't seem to be a /usr/bin/gettext.sh in my Cygwin installation.

Thanks,

Carles


--
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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: git 2.8.3 spurious output
  2016-06-08 13:45 ` Ken Brown
@ 2016-06-08 13:56   ` Ken Brown
  0 siblings, 0 replies; 13+ messages in thread
From: Ken Brown @ 2016-06-08 13:56 UTC (permalink / raw)
  To: cygwin

On 6/8/2016 9:45 AM, Ken Brown wrote:
> On 6/8/2016 5:35 AM, Cufi, Carles wrote:
>> Hi,
>>
>> When running git 2.8.3 with certain of its commands (submodule for
>> example) I get spurious output on the terminal:
>>
>> cacu ~/src/nordic/gh/pc-ble-driver-py (master)
>> $ git submodule deinit .
>> ': not a valid identifiertext.sh: line 88: export: `displaypath
>> Cleared directory ''
>> ': not a valid identifiertext.sh: line 88: export: `name
>> ': not a valid identifiertext.sh: line 88: export: `url
>> ': not a valid identifiertext.sh: line 88: export: `displaypath
>> Submodule '' () unregistered for path ''
>>
>> The variables referenced above (displaypath, name, url) seem to be
>> part of the git-submodule script in /usr/libexec/git-core.
>
> It looks like output lines are being overwritten, which suggests that
> you have DOS line endings somewhere (maybe in git-submodule?).  For
> example, there seems to be a reference to line 88 of gettext.sh,
> partially overwritten by something else.  (Notice that git-submodule
> calls eval_gettext many times; the latter is defined in
> /usr/bin/gettext.sh.)
                     ^^ at line 88


--
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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: git 2.8.3 spurious output
  2016-06-08  9:35 Cufi, Carles
@ 2016-06-08 13:45 ` Ken Brown
  2016-06-08 13:56   ` Ken Brown
  0 siblings, 1 reply; 13+ messages in thread
From: Ken Brown @ 2016-06-08 13:45 UTC (permalink / raw)
  To: cygwin

On 6/8/2016 5:35 AM, Cufi, Carles wrote:
> Hi,
>
> When running git 2.8.3 with certain of its commands (submodule for example) I get spurious output on the terminal:
>
> cacu ~/src/nordic/gh/pc-ble-driver-py (master)
> $ git submodule deinit .
> ': not a valid identifiertext.sh: line 88: export: `displaypath
> Cleared directory ''
> ': not a valid identifiertext.sh: line 88: export: `name
> ': not a valid identifiertext.sh: line 88: export: `url
> ': not a valid identifiertext.sh: line 88: export: `displaypath
> Submodule '' () unregistered for path ''
>
> The variables referenced above (displaypath, name, url) seem to be part of the git-submodule script in /usr/libexec/git-core.

It looks like output lines are being overwritten, which suggests that 
you have DOS line endings somewhere (maybe in git-submodule?).  For 
example, there seems to be a reference to line 88 of gettext.sh, 
partially overwritten by something else.  (Notice that git-submodule 
calls eval_gettext many times; the latter is defined in 
/usr/bin/gettext.sh.)

Ken


--
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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* git 2.8.3 spurious output
@ 2016-06-08  9:35 Cufi, Carles
  2016-06-08 13:45 ` Ken Brown
  0 siblings, 1 reply; 13+ messages in thread
From: Cufi, Carles @ 2016-06-08  9:35 UTC (permalink / raw)
  To: cygwin

[-- Attachment #1: Type: text/plain, Size: 662 bytes --]

Hi,

When running git 2.8.3 with certain of its commands (submodule for example) I get spurious output on the terminal:

cacu ~/src/nordic/gh/pc-ble-driver-py (master)
$ git submodule deinit .
': not a valid identifiertext.sh: line 88: export: `displaypath
Cleared directory ''
': not a valid identifiertext.sh: line 88: export: `name
': not a valid identifiertext.sh: line 88: export: `url
': not a valid identifiertext.sh: line 88: export: `displaypath
Submodule '' () unregistered for path ''

The variables referenced above (displaypath, name, url) seem to be part of the git-submodule script in /usr/libexec/git-core.

Thanks,

Carles



[-- Attachment #2: cygcheck.out --]
[-- Type: application/octet-stream, Size: 37380 bytes --]


Cygwin Configuration Diagnostics
Current System Time: Wed Jun 08 10:31:37 2016

Windows 7 Ultimate Ver 6.1 Build 7601 Service Pack 1

Path:	C:\cygwin64\home\cacu\bin
	C:\cygwin64\home\cacu\bin
	C:\cygwin64\usr\local\bin
	C:\cygwin64\bin
	C:\swig\swigwin-3.0.8
	C:\mingw\msys\1.0\bin
	C:\Program Files (x86)\Nordic Semiconductor\TCM
	C:\mingw\bin
	C:\ProgramData\Oracle\Java\javapath
	C:\Ruby22\bin
	C:\Python276-32
	C:\Python276-32\Scripts
	C:\ruby22
	C:\Program Files (x86)\Nordic Semiconductor\nRF5x\bin
	C:\Program Files (x86)\GNU Tools ARM Embedded\4.9 2015q3\bin
	C:\ProgramData\Oracle\Java\javapath
	C:\Program Files (x86)\ninja
	C:\Program Files (x86)\CMake\bin
	C:\PROGRAM FILES (X86)\GRAPHVIZ2.38\BIN
	C:\LINT
	C:\WINDOWS\MICROSOFT.NET\FRAMEWORK64\V4.0.30319
	C:\KEIL_V5
	C:\PROGRAM FILES (X86)\MSBUILD\NORDICTASKS
	C:\PROGRAM FILES\COMMON FILES\MICROSOFT SHARED\WINDOWS LIVE
	C:\PROGRAM FILES (X86)\COMMON FILES\MICROSOFT SHARED\WINDOWS LIVE
	C:\WINDOWS\SYSTEM32
	C:\WINDOWS
	C:\WINDOWS\SYSTEM32\WBEM
	C:\WINDOWS\SYSTEM32\WINDOWSPOWERSHELL\V1.0
	C:\PROGRAM FILES (X86)\NORDIC SEMICONDUCTOR\NRFGO\BIN
	C:\PROGRAM FILES (X86)\MSCGEN
	C:\WINDOWS\MICROSOFT.NET\FRAMEWORK\V4.0.30319
	C:\CYGWIN64\HOME\CACU\BIN
	C:\PROGRAM FILES\DOXYGEN\BIN
	C:\PROGRAM FILES (X86)\WINDOWS LIVE\SHARED
	C:\PROGRAM FILES\COLLABORATOR CLIENT
	C:\PROGRAM FILES\TORTOISESVN\BIN
	C:\Program Files\Microsoft SQL Server\110\Tools\Binn
	C:\Program Files\ConEmu
	C:\Program Files\ConEmu\ConEmu
	C:\Program Files (x86)\Skype\Phone
	C:\Program Files (x86)\QuickTime\QTSystem
	C:\Program Files\TortoiseSVN\bin
	C:\Program Files\Git\cmd
	C:\Program Files\Microsoft SQL Server\120\Tools\Binn
	C:\Program Files\Microsoft SQL Server\130\Tools\Binn
	C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit
	.

Output from C:\cygwin64\bin\id.exe
UID: 1002(cacu)
GID: 513(None)
513(None)
114(Local account and member of Administrators group)
1004(HomeUsers)
0(root)
559(Performance Log Users)
545(Users)
555(Remote Desktop Users)
4(INTERACTIVE)
66049(CONSOLE LOGON)
11(Authenticated Users)
15(This Organization)
113(Local account)
4095(CurrentSession)
66048(LOCAL)
262154(NTLM Authentication)
405504(High Mandatory Level)

SysDir: C:\Windows\system32
WinDir: C:\Windows

USER = 'cacu'
PWD = '/home/cacu/src/nordic/gh/pc-ble-driver-py'
HOME = '/home/cacu'

HOMEPATH = '\Users\cacu'
MANPATH = '/usr/local/man:/usr/share/man:/usr/man'
QT_DEVICE_PIXEL_RATIO = 'auto'
APPDATA = 'C:\Users\cacu\AppData\Roaming'
ProgramW6432 = 'C:\Program Files'
drgn_pca10040_if_id = '682424654'
HOSTNAME = 'CACU1'
DXSDK_DIR = 'C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\'
SHELL = '/bin/bash'
TERM = 'xterm-256color'
PROCESSOR_IDENTIFIER = 'Intel64 Family 6 Model 58 Stepping 9, GenuineIntel'
PROFILEREAD = 'true'
WINDIR = 'C:\Windows'
NRFGOSTUDIOPATH = 'C:\Program Files (x86)\Nordic Semiconductor\nRFgo Studio'
SVNDVPB = 'http://svn.nordicsemi.no/repos/dragoon/verification/branches/products/S110_nRF51822'
PUBLIC = 'C:\Users\Public'
OLDPWD = '/home/cacu/src/nordic/gh/pc-ble-driver-py/pc-ble-driver'
ORIGINAL_PATH = '/cygdrive/c/swig/swigwin-3.0.8:/cygdrive/c/mingw/msys/1.0/bin:/cygdrive/c/Program Files (x86)/Nordic Semiconductor/TCM:/cygdrive/c/mingw/bin:/cygdrive/c/ProgramData/Oracle/Java/javapath:/cygdrive/c/Ruby22/bin:/cygdrive/c/Python276-32:/cygdrive/c/Python276-32/Scripts:/cygdrive/c/ruby22:/cygdrive/c/Program Files (x86)/Nordic Semiconductor/nRF5x/bin:/cygdrive/c/Program Files (x86)/GNU Tools ARM Embedded/4.9 2015q3/bin:/cygdrive/c/ProgramData/Oracle/Java/javapath:/cygdrive/c/Program Files (x86)/ninja:/cygdrive/c/Program Files (x86)/CMake/bin:/cygdrive/c/PROGRAM FILES (X86)/GRAPHVIZ2.38/BIN:/cygdrive/c/LINT:/cygdrive/c/WINDOWS/MICROSOFT.NET/FRAMEWORK64/V4.0.30319:/cygdrive/c/KEIL_V5:/cygdrive/c/PROGRAM FILES (X86)/MSBUILD/NORDICTASKS:/cygdrive/c/PROGRAM FILES/COMMON FILES/MICROSOFT SHARED/WINDOWS LIVE:/cygdrive/c/PROGRAM FILES (X86)/COMMON FILES/MICROSOFT SHARED/WINDOWS LIVE:/cygdrive/c/WINDOWS/SYSTEM32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/SYSTEM32/WBEM:/cygdrive/c/WINDOWS/SYSTEM32/WINDOWSPOWERSHELL/V1.0:/cygdrive/c/PROGRAM FILES (X86)/NORDIC SEMICONDUCTOR/NRFGO/BIN:/cygdrive/c/PROGRAM FILES (X86)/MSCGEN:/cygdrive/c/WINDOWS/MICROSOFT.NET/FRAMEWORK/V4.0.30319:/cygdrive/c/CYGWIN64/HOME/CACU/BIN:/cygdrive/c/PROGRAM FILES/DOXYGEN/BIN:/cygdrive/c/PROGRAM FILES (X86)/WINDOWS LIVE/SHARED:/cygdrive/c/PROGRAM FILES/COLLABORATOR CLIENT:/cygdrive/c/PROGRAM FILES/TORTOISESVN/BIN:/cygdrive/c/Program Files/Microsoft SQL Server/110/Tools/Binn:/cygdrive/c/Program Files/ConEmu:/cygdrive/c/Program Files/ConEmu/ConEmu:/cygdrive/c/Program Files (x86)/Skype/Phone:/cygdrive/c/Program Files (x86)/QuickTime/QTSystem:/cygdrive/c/Program Files/TortoiseSVN/bin:/cygdrive/c/Program Files/Git/cmd:/cygdrive/c/Program Files/Microsoft SQL Server/120/Tools/Binn:/cygdrive/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/cygdrive/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:.'
USERDOMAIN = 'CACU1'
CommonProgramFiles(x86) = 'C:\Program Files (x86)\Common Files'
OS = 'Windows_NT'
ALLUSERSPROFILE = 'C:\ProgramData'
LC_ALL = 'C'
SVNH = 'http://svn.nordicsemi.no/repos/wibree_host'
SVN_EDITOR = 'vim'
!:: = '::\'
drgn_pca10040_serial_port = 'COM33'
COMMONPROGRAMFILES = 'C:\Program Files\Common Files'
drgn_nrf2739_if_id = '0068C0ZQ'
MultiLinkTestSetupID = 'multilink_test_config_2'
drgn_pca10031_serial_port = 'COM20'
drgn_pca10031_if_id = '680078561'
SVNDPB = 'http://svn.nordicsemi.no/repos/dragoon/stack/branches/products/S110_nRF51822'
USERNAME = 'cacu'
SVNC = 'http://svn.nordicsemi.no/repos/wibree_controller'
ARMLMD_LICENSE_FILE = '1714@LICSRV1'
SVNB = 'http://svn.nordicsemi.no/repos'
PROCESSOR_LEVEL = '6'
ProgramFiles(x86) = 'C:\Program Files (x86)'
SVND = 'http://svn.nordicsemi.no/repos/dragoon/stack'
PSModulePath = 'C:\Windows\system32\WindowsPowerShell\v1.0\Modules\'
FP_NO_HOST_CHECK = 'NO'
ESET_OPTIONS = '                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               '
SYSTEMDRIVE = 'C:'
EDITOR = 'vim'
LANG = 'en_EN.UTF8'
USERPROFILE = 'C:\Users\cacu'
SVNDB = 'http://svn.nordicsemi.no/repos/dragoon/stack/branches/'
TZ = 'Europe/Berlin'
ARMNOLICQUEUE = '1'
drgn_upper_type = 'eval'
PS1 = '\[\e]0;\w\a\]\n\[\e[32m\]\u \[\e[33m\]\w \[\e[34m\]$(__git_ps1 "(%s)")\[\e[0m\]\n$ '
LOGONSERVER = '\\CACU1'
CommonProgramW6432 = 'C:\Program Files\Common Files'
PROCESSOR_ARCHITECTURE = 'AMD64'
LOCALAPPDATA = 'C:\Users\cacu\AppData\Local'
TestSetupID = 'multilink_test_config_4'
ProgramData = 'C:\ProgramData'
EXECIGNORE = '*.dll'
SHLVL = '1'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
HOMEDRIVE = 'C:'
SVNDV = 'http://svn.nordicsemi.no/repos/dragoon/verification'
COMSPEC = 'C:\Windows\system32\cmd.exe'
SYSTEMROOT = 'C:\Windows'
PYTHONPATH = 'C:\Python276-32;c:\cygwin64\home\cacu\src\nordic\gh\pc-nrfutil'
PRINTER = 'EPSON022F15 (Epson Stylus SX430)'
PROCESSOR_REVISION = '3a09'
BOOST_ROOT = 'c:\boost\boost_1_61_0'
VS100COMNTOOLS = 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\'
INFOPATH = '/usr/local/info:/usr/share/info:/usr/info'
PROGRAMFILES = 'C:\Program Files'
VS140COMNTOOLS = 'C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\'
drgn_lower_sdsoc_type = 'dongle'
NUMBER_OF_PROCESSORS = '8'
asl.log = 'Destination=file'
drgn_lower_hci_type = 'dongle'
SESSIONNAME = 'Console'
COMPUTERNAME = 'CACU1'
MSBuildExtensionsPath = 'C:\Program Files (x86)\MSBuild'
_ = '/usr/bin/cygcheck'

HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options
HKEY_CURRENT_USER\Software\Cygwin
HKEY_CURRENT_USER\Software\Cygwin\Installations
  (default) = '\??\C:\cygwin'
HKEY_CURRENT_USER\Software\Cygwin\Program Options
HKEY_CURRENT_USER\Software\Cygwin\setup
HKEY_CURRENT_USER\Software\Classes\Directory\Background\Shell\cygwin64_bash
  (default) = '&Bash Prompt Here'
HKEY_CURRENT_USER\Software\Classes\Directory\Background\Shell\cygwin64_bash\command
  (default) = 'C:\cygwin64\bin\mintty.exe -e /bin/xhere /bin/bash.exe "%V"'
HKEY_CURRENT_USER\Software\Classes\Directory\Shell\cygwin64_bash
  (default) = '&Bash Prompt Here'
HKEY_CURRENT_USER\Software\Classes\Directory\Shell\cygwin64_bash\command
  (default) = 'C:\cygwin64\bin\mintty.exe -e /bin/xhere /bin/bash.exe "%L"'
HKEY_CURRENT_USER\Software\Classes\Drive\Background\Shell\cygwin64_bash
  (default) = '&Bash Prompt Here'
HKEY_CURRENT_USER\Software\Classes\Drive\Background\Shell\cygwin64_bash\command
  (default) = 'C:\cygwin64\bin\mintty.exe -e /bin/xhere /bin/bash.exe "%V"'
HKEY_CURRENT_USER\Software\Classes\Drive\Shell\cygwin64_bash
  (default) = '&Bash Prompt Here'
  LegacyDisable = ''
HKEY_CURRENT_USER\Software\Classes\Drive\Shell\cygwin64_bash\command
  (default) = 'C:\cygwin64\bin\mintty.exe -e /bin/xhere /bin/bash.exe "%L"'
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell\cygwin_bash
  (default) = '&Bash Prompt Here'
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell\cygwin_bash\command
  (default) = 'C:\cygwin\bin\bash -c "/bin/xhere /bin/bash.exe '%L'"'
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Drive\shell\cygwin_bash
  (default) = '&Bash Prompt Here'
  LegacyDisable = ''
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Drive\shell\cygwin_bash\command
  (default) = 'C:\cygwin\bin\bash -c "/bin/xhere /bin/bash.exe '%L'"'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Installations
  (default) = '\??\C:\cygwin64'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\setup
  (default) = 'C:\cygwin64'
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\cygwin64_bash
  (default) = 'Cygwin Bash Prompt Here (x86_64)'
  UnInstallString = 'C:\cygwin64\bin\sh -c "PATH=/bin /bin/chere -u -s bash"'
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\Cygwin\mounts v2
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygnus Solutions\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin\Installations
  (default) = '\??\C:\cygwin'
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin\setup
  (default) = 'C:\cygwin'

obcaseinsensitive set to 1

Cygwin installations found in the registry:
  System: Key: e022582115c10879 Path: C:\cygwin64
  User:   Key: c5e39b7a9d22bafb Path: C:\cygwin (ORPHANED)

c:  hd  NTFS    243722Mb  66% CP CS UN PA FC     OSDisk
d:  hd  NTFS    244186Mb  86% CP CS UN PA FC     DataDisk
e:  cd             N/A    N/A                    

C:\cygwin64      /          system  binary,auto
C:\cygwin64\bin  /usr/bin   system  binary,auto
C:\cygwin64\lib  /usr/lib   system  binary,auto
cygdrive prefix  /cygdrive  user    binary,posix=0,auto

Found: C:\cygwin64\bin\awk
Found: C:\mingw\msys\1.0\bin\awk.exe
Warning: C:\cygwin64\bin\awk hides C:\mingw\msys\1.0\bin\awk.exe
 -> C:\cygwin64\bin\gawk.exe
Found: C:\cygwin64\bin\bash.exe
Found: C:\mingw\msys\1.0\bin\bash.exe
Warning: C:\cygwin64\bin\bash.exe hides C:\mingw\msys\1.0\bin\bash.exe
Found: C:\cygwin64\bin\cat.exe
Found: C:\mingw\msys\1.0\bin\cat.exe
Warning: C:\cygwin64\bin\cat.exe hides C:\mingw\msys\1.0\bin\cat.exe
Found: C:\cygwin64\bin\cp.exe
Found: C:\mingw\msys\1.0\bin\cp.exe
Warning: C:\cygwin64\bin\cp.exe hides C:\mingw\msys\1.0\bin\cp.exe
Found: C:\mingw\bin\cpp.exe
Not Found: crontab
Found: C:\cygwin64\bin\find.exe
Found: C:\mingw\msys\1.0\bin\find.exe
Warning: C:\cygwin64\bin\find.exe hides C:\mingw\msys\1.0\bin\find.exe
Found: C:\WINDOWS\SYSTEM32\find.exe
Warning: C:\cygwin64\bin\find.exe hides C:\WINDOWS\SYSTEM32\find.exe
Found: C:\mingw\bin\gcc.exe
Found: C:\mingw\bin\gdb.exe
Found: C:\cygwin64\bin\grep.exe
Found: C:\mingw\msys\1.0\bin\grep.exe
Warning: C:\cygwin64\bin\grep.exe hides C:\mingw\msys\1.0\bin\grep.exe
Found: C:\cygwin64\bin\kill.exe
Found: C:\mingw\msys\1.0\bin\kill.exe
Warning: C:\cygwin64\bin\kill.exe hides C:\mingw\msys\1.0\bin\kill.exe
Found: C:\cygwin64\bin\ld.exe
Found: C:\mingw\msys\1.0\bin\ld.exe
Warning: C:\cygwin64\bin\ld.exe hides C:\mingw\msys\1.0\bin\ld.exe
Found: C:\mingw\bin\ld.exe
Warning: C:\cygwin64\bin\ld.exe hides C:\mingw\bin\ld.exe
Found: C:\cygwin64\bin\ls.exe
Found: C:\mingw\msys\1.0\bin\ls.exe
Warning: C:\cygwin64\bin\ls.exe hides C:\mingw\msys\1.0\bin\ls.exe
Found: C:\cygwin64\bin\make.exe
Found: C:\mingw\msys\1.0\bin\make.exe
Warning: C:\cygwin64\bin\make.exe hides C:\mingw\msys\1.0\bin\make.exe
Found: C:\cygwin64\bin\mv.exe
Found: C:\mingw\msys\1.0\bin\mv.exe
Warning: C:\cygwin64\bin\mv.exe hides C:\mingw\msys\1.0\bin\mv.exe
Found: C:\cygwin64\bin\patch.exe
Found: C:\mingw\msys\1.0\bin\patch.exe
Warning: C:\cygwin64\bin\patch.exe hides C:\mingw\msys\1.0\bin\patch.exe
Found: C:\cygwin64\bin\perl.exe
Found: C:\mingw\msys\1.0\bin\perl.exe
Warning: C:\cygwin64\bin\perl.exe hides C:\mingw\msys\1.0\bin\perl.exe
Found: C:\cygwin64\bin\rm.exe
Found: C:\mingw\msys\1.0\bin\rm.exe
Warning: C:\cygwin64\bin\rm.exe hides C:\mingw\msys\1.0\bin\rm.exe
Found: C:\cygwin64\bin\sed.exe
Found: C:\mingw\msys\1.0\bin\sed.exe
Warning: C:\cygwin64\bin\sed.exe hides C:\mingw\msys\1.0\bin\sed.exe
Found: C:\cygwin64\bin\ssh.exe
Found: C:\mingw\msys\1.0\bin\ssh.exe
Warning: C:\cygwin64\bin\ssh.exe hides C:\mingw\msys\1.0\bin\ssh.exe
Found: C:\cygwin64\bin\sh.exe
Found: C:\mingw\msys\1.0\bin\sh.exe
Warning: C:\cygwin64\bin\sh.exe hides C:\mingw\msys\1.0\bin\sh.exe
Found: C:\cygwin64\bin\tar.exe
Found: C:\mingw\msys\1.0\bin\tar.exe
Warning: C:\cygwin64\bin\tar.exe hides C:\mingw\msys\1.0\bin\tar.exe
Found: C:\cygwin64\bin\test.exe
Found: C:\mingw\msys\1.0\bin\test.exe
Warning: C:\cygwin64\bin\test.exe hides C:\mingw\msys\1.0\bin\test.exe
Found: C:\LINT\test
Warning: C:\cygwin64\bin\test.exe hides C:\LINT\test
Found: C:\cygwin64\bin\vi.exe
Found: C:\cygwin64\bin\vim.exe
Found: C:\mingw\msys\1.0\bin\vim.exe
Warning: C:\cygwin64\bin\vim.exe hides C:\mingw\msys\1.0\bin\vim.exe

   38k 2013/07/19 C:\cygwin64\bin\cygargp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygargp-0.dll" v0.0 ts=2013-07-19 15:07
   88k 2016/04/17 C:\cygwin64\bin\cygatomic-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygatomic-1.dll" v0.0 ts=2016-04-17 14:33
   16k 2013/03/26 C:\cygwin64\bin\cygattr-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygattr-1.dll" v0.0 ts=2013-03-26 18:26
  180k 2015/03/23 C:\cygwin64\bin\cygblkid-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygblkid-1.dll" v0.0 ts=2015-03-23 09:46
   64k 2013/03/07 C:\cygwin64\bin\cygbz2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygbz2-1.dll" v0.0 ts=2013-03-07 02:54
   13k 2013/03/06 C:\cygwin64\bin\cygcatgets1.dll - os=4.0 img=0.0 sys=5.2
                  "cygcatgets1.dll" v0.0 ts=2013-03-06 14:34
  117k 2013/05/05 C:\cygwin64\bin\cygcloog-isl-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygcloog-isl-4.dll" v0.0 ts=2013-05-05 16:41
   13k 2015/03/19 C:\cygwin64\bin\cygcom_err-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygcom_err-2.dll" v0.0 ts=2015-03-19 02:44
   10k 2016/03/18 C:\cygwin64\bin\cygcrypt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypt-0.dll" v0.0 ts=2016-03-18 11:05
 2231k 2016/05/04 C:\cygwin64\bin\cygcrypto-1.0.0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypto-1.0.0.dll" v0.0 ts=2016-05-04 16:07
  462k 2016/05/18 C:\cygwin64\bin\cygcurl-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygcurl-4.dll" v0.0 ts=2016-05-19 00:39
 1526k 2013/03/08 C:\cygwin64\bin\cygdb-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb-5.3.dll" v0.0 ts=2013-03-08 07:55
  111k 2013/03/08 C:\cygwin64\bin\cygdb_cxx-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb_cxx-5.3.dll" v0.0 ts=2013-03-08 07:56
  472k 2013/03/08 C:\cygwin64\bin\cygdb_sql-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb_sql-5.3.dll" v0.0 ts=2013-03-08 07:58
  154k 2013/10/20 C:\cygwin64\bin\cygedit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygedit-0.dll" v0.0 ts=2013-10-20 21:56
  144k 2016/05/16 C:\cygwin64\bin\cygexpat-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygexpat-1.dll" v0.0 ts=2016-05-16 16:27
   27k 2015/11/17 C:\cygwin64\bin\cygffi-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygffi-6.dll" v0.0 ts=2015-11-17 22:14
  242k 2016/06/02 C:\cygwin64\bin\cygfontconfig-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygfontconfig-1.dll" v0.0 ts=2016-06-02 22:15
   55k 2016/05/03 C:\cygwin64\bin\cygformw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygformw-10.dll" v0.0 ts=2016-05-03 14:31
  586k 2015/09/08 C:\cygwin64\bin\cygfreetype-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygfreetype-6.dll" v0.0 ts=2015-09-08 08:51
   70k 2016/04/17 C:\cygwin64\bin\cyggcc_s-seh-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggcc_s-seh-1.dll" v0.0 ts=2016-04-17 13:41
   40k 2014/05/27 C:\cygwin64\bin\cyggdbm-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdbm-4.dll" v0.0 ts=1970-01-01 00:00
   13k 2014/05/27 C:\cygwin64\bin\cyggdbm_compat-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdbm_compat-4.dll" v0.0 ts=1970-01-01 00:00
  528k 2015/12/06 C:\cygwin64\bin\cyggmp-10.dll - os=4.0 img=0.0 sys=5.2
                  "cyggmp-10.dll" v0.0 ts=2015-12-06 08:37
  931k 2015/08/28 C:\cygwin64\bin\cyggnutls-28.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnutls-28.dll" v0.0 ts=2015-08-28 17:05
   24k 2015/08/28 C:\cygwin64\bin\cyggnutls-openssl-27.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnutls-openssl-27.dll" v0.0 ts=2015-08-28 17:06
   41k 2015/08/28 C:\cygwin64\bin\cyggnutlsxx-28.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnutlsxx-28.dll" v0.0 ts=2015-08-28 17:06
  105k 2016/04/17 C:\cygwin64\bin\cyggomp-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggomp-1.dll" v0.0 ts=2016-04-17 13:45
   10k 2016/04/17 C:\cygwin64\bin\cyggomp-plugin-host_nonshm-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggomp-plugin-host_nonshm-1.dll" v0.0 ts=2016-04-17 13:45
  258k 2016/03/21 C:\cygwin64\bin\cyggssapi_krb5-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyggssapi_krb5-2.dll" v0.0 ts=2016-03-21 04:40
  691k 2013/04/22 C:\cygwin64\bin\cygguile-17.dll - os=4.0 img=0.0 sys=5.2
                  "cygguile-17.dll" v0.0 ts=2013-04-22 03:15
   30k 2015/01/27 C:\cygwin64\bin\cyghistory7.dll - os=4.0 img=0.0 sys=5.2
                  "cyghistory7.dll" v0.0 ts=2015-01-27 03:51
  167k 2016/03/13 C:\cygwin64\bin\cyghogweed-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyghogweed-2.dll" v0.0 ts=2016-03-13 14:46
  361k 2015/11/24 C:\cygwin64\bin\cygicons-0.dll - os=4.0 img=1.4 sys=5.2
                  "cygicons-0.dll" v0.0 ts=2015-11-24 07:54
 1009k 2015/02/20 C:\cygwin64\bin\cygiconv-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygiconv-2.dll" v0.0 ts=2015-02-20 17:07
  196k 2014/12/06 C:\cygwin64\bin\cygidn-11.dll - os=4.0 img=0.0 sys=5.2
                  "cygidn-11.dll" v0.0 ts=2014-12-06 13:17
   40k 2016/05/04 C:\cygwin64\bin\cygintl-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygintl-8.dll" v0.0 ts=2016-05-04 16:20
  888k 2013/05/05 C:\cygwin64\bin\cygisl-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygisl-10.dll" v0.0 ts=2013-05-05 16:36
 1039k 2015/09/20 C:\cygwin64\bin\cygisl-13.dll - os=4.0 img=0.0 sys=5.2
                  "cygisl-13.dll" v0.0 ts=2015-09-20 12:39
  177k 2016/03/21 C:\cygwin64\bin\cygk5crypto-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygk5crypto-3.dll" v0.0 ts=2016-03-21 04:40
  721k 2016/03/21 C:\cygwin64\bin\cygkrb5-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5-3.dll" v0.0 ts=2016-03-21 04:40
   35k 2016/03/21 C:\cygwin64\bin\cygkrb5support-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5support-0.dll" v0.0 ts=2016-03-21 04:40
   45k 2015/11/19 C:\cygwin64\bin\cyglber-2-4-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyglber-2-4-2.dll" v0.0 ts=2015-11-19 14:17
  246k 2015/11/19 C:\cygwin64\bin\cygldap-2-4-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygldap-2-4-2.dll" v0.0 ts=2015-11-19 14:18
  262k 2015/11/19 C:\cygwin64\bin\cygldap_r-2-4-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygldap_r-2-4-2.dll" v0.0 ts=2015-11-19 14:19
    6k 2016/04/21 C:\cygwin64\bin\cyglsa64.dll - os=4.0 img=0.0 sys=5.2
                  "cyglsa64.dll" v0.0 ts=2016-04-21 21:13
   35k 2016/02/11 C:\cygwin64\bin\cygltdl-7.dll - os=4.0 img=0.0 sys=5.2
                  "cygltdl-7.dll" v0.0 ts=2016-02-11 23:41
  139k 2015/11/09 C:\cygwin64\bin\cyglzma-5.dll - os=4.0 img=0.0 sys=5.2
                  "cyglzma-5.dll" v0.0 ts=2015-11-09 06:12
  114k 2016/01/11 C:\cygwin64\bin\cygmagic-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygmagic-1.dll" v0.0 ts=2016-01-11 22:19
  168k 2015/10/09 C:\cygwin64\bin\cygman-2-7-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygman-2-7-4.dll" v0.0 ts=2015-10-09 03:12
   22k 2015/10/09 C:\cygwin64\bin\cygmandb-2-7-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygmandb-2-7-4.dll" v0.0 ts=2015-10-09 03:18
   29k 2016/05/03 C:\cygwin64\bin\cygmenuw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygmenuw-10.dll" v0.0 ts=2016-05-03 14:30
   42k 2013/08/12 C:\cygwin64\bin\cygmetalink-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygmetalink-3.dll" v0.0 ts=2013-08-13 00:02
   89k 2015/03/01 C:\cygwin64\bin\cygmpc-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpc-3.dll" v0.0 ts=2015-03-01 20:24
  345k 2016/03/06 C:\cygwin64\bin\cygmpfr-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpfr-4.dll" v0.0 ts=2016-03-06 16:29
   53k 2016/05/03 C:\cygwin64\bin\cygncurses++w-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncurses++w-10.dll" v0.0 ts=2016-05-03 14:36
  279k 2016/05/03 C:\cygwin64\bin\cygncursesw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncursesw-10.dll" v0.0 ts=2016-05-03 14:29
  180k 2016/03/13 C:\cygwin64\bin\cygnettle-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygnettle-4.dll" v0.0 ts=2016-03-13 14:46
  126k 2016/03/02 C:\cygwin64\bin\cygnghttp2-14.dll - os=4.0 img=0.0 sys=5.2
                  "cygnghttp2-14.dll" v0.0 ts=2016-03-02 18:23
  319k 2015/06/01 C:\cygwin64\bin\cygp11-kit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygp11-kit-0.dll" v0.0 ts=2015-06-01 19:02
   14k 2016/05/03 C:\cygwin64\bin\cygpanelw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygpanelw-10.dll" v0.0 ts=2016-05-03 14:30
  465k 2016/03/30 C:\cygwin64\bin\cygpcre-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpcre-1.dll" v0.0 ts=2016-03-30 22:00
 2021k 2016/04/30 C:\cygwin64\bin\cygperl5_22.dll - os=4.0 img=0.0 sys=5.2
                  "cygperl5_22.dll" v0.0 ts=2016-04-30 16:05
   39k 2015/04/09 C:\cygwin64\bin\cygpipeline-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpipeline-1.dll" v0.0 ts=2015-04-09 21:04
  149k 2015/04/13 C:\cygwin64\bin\cygpng15-15.dll - os=4.0 img=0.0 sys=5.2
                  "cygpng15-15.dll" v0.0 ts=2015-04-13 19:37
  175k 2015/12/04 C:\cygwin64\bin\cygpng16-16.dll - os=4.0 img=0.0 sys=5.2
                  "cygpng16-16.dll" v0.0 ts=2015-12-04 04:46
   41k 2013/10/21 C:\cygwin64\bin\cygpopt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpopt-0.dll" v0.0 ts=2013-10-21 21:52
   48k 2016/03/31 C:\cygwin64\bin\cygpsl-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygpsl-5.dll" v0.0 ts=2016-03-31 06:37
  308k 2016/04/17 C:\cygwin64\bin\cygquadmath-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygquadmath-0.dll" v0.0 ts=2016-04-17 14:36
  207k 2015/01/27 C:\cygwin64\bin\cygreadline7.dll - os=4.0 img=0.0 sys=5.2
                  "cygreadline7.dll" v0.0 ts=2015-01-27 03:51
   97k 2014/11/24 C:\cygwin64\bin\cygsasl2-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygsasl2-3.dll" v0.0 ts=2014-11-24 18:22
   11k 2015/07/17 C:\cygwin64\bin\cygsigsegv-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygsigsegv-2.dll" v0.0 ts=2015-07-17 22:35
   89k 2015/03/23 C:\cygwin64\bin\cygsmartcols-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygsmartcols-1.dll" v0.0 ts=2015-03-23 09:46
  928k 2016/04/21 C:\cygwin64\bin\cygsqlite3-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsqlite3-0.dll" v0.0 ts=2016-04-21 09:37
  156k 2016/03/02 C:\cygwin64\bin\cygssh2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygssh2-1.dll" v0.0 ts=2016-03-02 18:03
  397k 2016/05/04 C:\cygwin64\bin\cygssl-1.0.0.dll - os=4.0 img=0.0 sys=5.2
                  "cygssl-1.0.0.dll" v0.0 ts=2016-05-04 16:07
   12k 2016/04/17 C:\cygwin64\bin\cygssp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygssp-0.dll" v0.0 ts=2016-04-17 14:30
 1337k 2016/04/17 C:\cygwin64\bin\cygstdc++-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygstdc++-6.dll" v0.0 ts=2016-04-17 14:01
   66k 2016/02/04 C:\cygwin64\bin\cygtasn1-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygtasn1-6.dll" v0.0 ts=2016-02-04 13:53
   53k 2016/05/03 C:\cygwin64\bin\cygticw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygticw-10.dll" v0.0 ts=2016-05-03 14:29
 1538k 2015/10/16 C:\cygwin64\bin\cygunistring-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygunistring-2.dll" v0.0 ts=2015-10-16 21:40
   15k 2015/03/23 C:\cygwin64\bin\cyguuid-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyguuid-1.dll" v0.0 ts=2015-03-23 09:46
    8k 2016/04/17 C:\cygwin64\bin\cygvtv-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygvtv-0.dll" v0.0 ts=2016-04-17 14:30
    8k 2016/04/17 C:\cygwin64\bin\cygvtv_stubs-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygvtv_stubs-0.dll" v0.0 ts=2016-04-17 14:31
   30k 2013/11/15 C:\cygwin64\bin\cygwrap-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygwrap-0.dll" v0.0 ts=2013-11-15 19:58
 1134k 2015/03/26 C:\cygwin64\bin\cygX11-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygX11-6.dll" v0.0 ts=2015-03-26 15:14
   12k 2013/06/06 C:\cygwin64\bin\cygXau-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXau-6.dll" v0.0 ts=2013-06-06 06:23
  102k 2015/09/07 C:\cygwin64\bin\cygxcb-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-1.dll" v0.0 ts=2015-09-07 05:50
   21k 2015/03/26 C:\cygwin64\bin\cygXdmcp-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXdmcp-6.dll" v0.0 ts=2015-03-26 15:38
   56k 2014/08/10 C:\cygwin64\bin\cygXext-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXext-6.dll" v0.0 ts=1970-01-01 00:00
   73k 2014/08/10 C:\cygwin64\bin\cygXft-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygXft-2.dll" v0.0 ts=1970-01-01 00:00
   36k 2016/01/29 C:\cygwin64\bin\cygXrender-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXrender-1.dll" v0.0 ts=2016-01-29 20:24
   12k 2013/03/14 C:\cygwin64\bin\cygXss-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXss-1.dll" v0.0 ts=2013-03-14 04:07
  121k 2014/12/08 C:\cygwin64\bin\cygyaml-0-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygyaml-0-2.dll" v0.0 ts=2014-12-08 18:19
   80k 2014/11/19 C:\cygwin64\bin\cygz.dll - os=4.0 img=0.0 sys=5.2
                  "cygz.dll" v0.0 ts=2014-11-19 23:08
 3456k 2016/04/21 C:\cygwin64\bin\cygwin1.dll - os=4.0 img=0.0 sys=5.2
                  "cygwin1.dll" v0.0 ts=2016-04-21 21:14
    Cygwin DLL version info:
        DLL version: 2.5.1
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 297
        Shared data: 5
        DLL identifier: cygwin1
        Mount registry: 3
        Cygwin registry name: Cygwin
        Installations name: Installations
        Cygdrive default prefix: 
        Build date: 
        Shared id: cygwin1S5


No Cygwin services found.


Cygwin Package Information
Last downloaded files to: C:\bin\cygwin-64
Last downloaded files from: http://linux.rz.ruhr-uni-bochum.de/download/cygwin/

Package                   Version            Status
_autorebase               001004-1           OK
Empty package _update-info-dir
_update-info-dir          03000-1            OK
alternatives              1.3.30c-10         OK
base-cygwin               3.8-1              OK
base-files                4.2-4              OK
bash                      4.3.42-4           OK
bash-completion           2.3-1              OK
binutils                  2.25-4             OK
bzip2                     1.0.6-2            OK
ca-certificates           2.7-1              OK
chere                     1.4-1              OK
coreutils                 8.25-3             OK
crypt                     1.3-1              OK
csih                      0.9.9-1            OK
curl                      7.49.0-1           OK
cygrunsrv                 1.62-1             OK
cygutils                  1.4.15-2           OK
cygutils-extra            1.4.15-2           OK
cygwin                    2.5.1-1            OK
cygwin-devel              2.5.1-1            OK
cygwin32                  2.5.1-1            OK
cygwin32-binutils         2.25-1             OK
cygwin32-default-manifest 6.4-1              OK
cygwin32-w32api-headers   4.0.4-1            OK
cygwin32-w32api-runtime   4.0.4-1            OK
dash                      0.5.8-3            OK
dejavu-fonts              2.35-2             OK
diffutils                 3.3-3              OK
dos2unix                  7.3.4-1            OK
editrights                1.03-1             OK
file                      5.25-1             OK
findutils                 4.6.0-1            OK
gawk                      4.1.3-1            OK
getent                    2.18.90-4          OK
git                       2.8.3-1            OK
Empty package git-completion
git-completion            2.8.3-1            OK
grep                      2.24-1             OK
groff                     1.22.3-1           OK
gzip                      1.7-2              OK
hostname                  3.13-1             OK
indent                    2.2.11-2           OK
info                      6.1-2              OK
ipc-utils                 1.0-2              OK
less                      481-1              OK
libargp                   20110921-2         OK
libatomic1                5.3.0-5            OK
libattr1                  2.4.46-1           OK
libblkid1                 2.25.2-2           OK
libbz2_1                  1.0.6-2            OK
libcatgets1               1.1-2              OK
libcloog-isl4             0.18.0-2           OK
libcom_err2               1.42.12-2          OK
libcrypt0                 1.3-1              OK
libcurl4                  7.49.0-1           OK
libdb5.3                  5.3.21-1           OK
libedit0                  20130712-1         OK
libexpat1                 2.1.1-2            OK
libffi6                   3.2.1-2            OK
libfontconfig-common      2.11.95-1          OK
libfontconfig1            2.11.95-1          OK
libfreetype6              2.5.5-2            OK
libgcc1                   5.3.0-5            OK
libgdbm4                  1.11-1             OK
libgmp10                  6.1.0-3p1          OK
libgnutls28               3.3.17-1           OK
libgomp1                  5.3.0-5            OK
libgssapi_krb5_2          1.14.1-1           OK
libguile17                1.8.8-1            OK
libhogweed2               2.7.1-1            OK
libiconv                  1.14-3             OK
libiconv2                 1.14-3             OK
libidn11                  1.29-1             OK
libintl8                  0.19.7-1           OK
libisl10                  0.11.1-2           OK
libisl13                  0.14.1-1           OK
libk5crypto3              1.14.1-1           OK
libkrb5_3                 1.14.1-1           OK
libkrb5support0           1.14.1-1           OK
libltdl7                  2.4.6-3            OK
liblzma5                  5.2.2-1            OK
libmetalink3              0.1.2-1            OK
libmpc3                   1.0.3-1            OK
libmpfr4                  3.1.4-1            OK
libncursesw10             6.0-5.20160423     OK
libnettle4                2.7.1-1            OK
libnghttp2_14             1.7.1-1            OK
libopenldap2_4_2          2.4.42-1           OK
libopenssl100             1.0.2h-1           OK
libp11-kit0               0.22.1-1           OK
libpcre1                  8.38-3             OK
libpipeline1              1.4.0-1            OK
Empty package libpng-doc
libpng-doc                1.6.20-1           OK
libpng15                  1.5.22-1           OK
libpng16                  1.6.20-1           OK
Empty package libpopt0
libpopt0                  1.16-1             OK
libpsl5                   0.13.0-1           OK
libquadmath0              5.3.0-5            OK
libreadline7              6.3.8-1            OK
libsasl2_3                2.1.26-9           OK
libsigsegv2               2.10-2             OK
libsmartcols1             2.25.2-2           OK
libsqlite3_0              3.12.2-1           OK
libssh2_1                 1.7.0-1            OK
libssp0                   5.3.0-5            OK
libstdc++6                5.3.0-5            OK
libtasn1_6                4.7-1              OK
libunistring2             0.9.6-1            OK
libuuid-devel             2.25.2-2           OK
libuuid1                  2.25.2-2           OK
libvtv0                   5.3.0-5            OK
libwrap0                  7.6-22             OK
libX11_6                  1.6.3-1            OK
libXau6                   1.0.8-1            OK
libxcb1                   1.11.1-1           OK
libXdmcp6                 1.1.2-1            OK
libXext6                  1.3.3-1            OK
libXft2                   2.3.2-1            OK
libXrender1               0.9.9-1            OK
libXss1                   1.2.2-1            OK
libyaml0_2                0.1.6-2            OK
login                     1.11-1             OK
lynx                      2.8.7-2            OK
make                      4.2-1              OK
Empty package man
man                       2.7.4-1            OK
man-db                    2.7.4-1            OK
mercurial                 3.7.3-1            OK
mintty                    2.3.7-0            OK
nc                        1.107-4            OK
ncurses                   6.0-5.20160423     OK
openssh                   7.2p2-1            OK
openssl                   1.0.2h-1           OK
p11-kit                   0.22.1-1           OK
p11-kit-trust             0.22.1-1           OK
patch                     2.7.4-1            OK
perl                      5.22.2-1           OK
perl-Carp                 1.38-1             OK
perl-Error                0.17024-1          OK
perl-Pod-Simple           3.32-1             OK
perl-TermReadKey          2.33-1             OK
perl-Unicode-Normalize    1.25-1             OK
perl_autorebase           5.22.2-1           OK
perl_base                 5.22.2-1           OK
popt                      1.16-1             OK
python                    2.7.10-1           OK
python-tkinter            2.7.10-1           OK
rebase                    4.4.2-1            OK
rsync                     3.1.2-1            OK
run                       1.3.4-2            OK
sed                       4.2.2-3            OK
tar                       1.28-1             OK
tcl                       8.5.18-1           OK
tcl-tix                   8.4.3-2            OK
tcl-tk                    8.5.18-1           OK
tcsh                      6.19.00-2          OK
terminfo                  6.0-5.20160423     OK
texinfo                   6.1-2              OK
tree                      1.7.0-1            OK
tzcode                    2016d-1            OK
tzdata                    2016d-1            OK
util-linux                2.25.2-2           OK
vim                       7.4.1816-1         OK
vim-common                7.4.1816-1         OK
vim-minimal               7.4.1816-1         OK
w32api-headers            4.0.4-1            OK
w32api-runtime            4.0.4-1            OK
wget                      1.17.1-2           OK
which                     2.20-2             OK
whois                     5.2.10-1           OK
windows-default-manifest  6.4-1              OK
xxd                       7.4.1816-1         OK
xz                        5.2.2-1            OK
zlib0                     1.2.8-3            OK
Use -h to see help about each section

[-- Attachment #3: Type: text/plain, Size: 218 bytes --]

--
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

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2016-06-11 16:40 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-09  7:52 git 2.8.3 spurious output Cufi, Carles
2016-06-09 19:37 ` Warren Young
2016-06-11 19:20   ` Brian Inglis
  -- strict thread matches above, loose matches on Subject: below --
2016-06-08 14:41 Cufi, Carles
2016-06-08 16:45 ` Achim Gratz
2016-06-08 14:19 Cufi, Carles
2016-06-08 14:27 ` Ken Brown
2016-06-08 14:33 ` Warren Young
2016-06-08 13:57 Cufi, Carles
2016-06-08 14:06 ` Ken Brown
2016-06-08  9:35 Cufi, Carles
2016-06-08 13:45 ` Ken Brown
2016-06-08 13:56   ` Ken Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).