Please upgrade irssi to version 0.8.16

2014-08-07 Thread Alive
Currently, stable version of irssi is 0.8.16.

Changelog for this version as mentioned on the website.
http://www.irssi.org/news/ChangeLog

> Features:
> 
> Add -noautosendcmd to /SERVER and /CONNECT. Passing this option will force 
> Irssi to not execute the content of the autosendcmd chatnet-setting upon 
> connect.
> Accept names replies with nick!user@host instead of just nick, if they are 
> enabled (see bug #805).
> Set window binds for channel items as sticky when re-creating window binds as 
> part of /layout save. This fixes the bug where previously saved channel 
> windows forgets their window number upon reconnect.
> Add experimental support for DNSSEC DANE validation of certificates.
> Strip the argument for boolean options (see bug #769).
> Freenode have been readded to the list of networks in the default 
> configuration file.
> Disabled support for the insecure SSLv2 protocol.
> Various documentation enhancements.
> Add -ssl_pass to /connect and /server (see bug #305).
> Bugfixes:
> 
> Fix crashing bug that can happen if the terminal height decreases before the 
> first window is created.
> Fixed minor compiler warnings.
> Fixed possible crashing bug when processing an octal escape sequence.
> Fixed the /ignore -network option (see bug #748).
> Fixed signal handling for /exec'd commands. Irssi now sends the signal to the 
> process group id instead of the process id.
> Fixed segfault generated by SSL disconnections (see bug #752).
> Fix compilation when build with -Werror=format-security. Patch by Jaroslav 
> Skarvada.

Please consider packaging the new stable version.
Thanks.

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



[Bug] C-n keybinding doesn't work with GNU texinfo (Windows 6.1.7601 64bit)

2014-09-29 Thread Alive
GNU texinfo normally has emacs keybinding.
I found it strange, because C-n navigation key, which normally moves
cursor down,
doesn't work. C-f, C-b, and C-p works as expected to move cursor one
character
forward, one character backward, and one line backward.
I'm using latest cygwin, from setup-x86_64.exe version 2850, on Windows
6.1.7601
64 bit.

Here is info version
```
info (GNU texinfo) 5.2

Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later

This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
```
Here are steps to reproduce the problem.
1. Open cygwin terminal.
2. Type "info info" to display info page about GNU texinfo.
3. Press C-n (CTRL + n) to move the cursor

Expected result: C-n key combination moves the cursor one line down.

Actual result: An error message about unknown command is displayed.
"Unknown command (C-n)."

This malicious behavior isn't reproducible on Ubuntu version of GNU
texinfo. Tested on 14.04.1 with latest updates.

--
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: [ANNOUNCEMENT] Updated: bash-4.1.14-7

2014-09-30 Thread Alive
On 30/09/2014 4:22, Eric Blake (cygwin) wrote:
> A new release of bash, 4.1.14-7, has been uploaded and will soon reach a
> mirror near you; leaving the previous version at 4.1.13-6.

I've checked for updates several time, but I don't find bash version
4.1.14-7. I get version 4.1.13-7 instead.

I just want to clarify, which version is right? The version downloaded
from mirrors or this version from announcement?

Thanks.

--
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 X86_64 ssh-agent

2014-10-10 Thread Alive
It's fine. Maybe there are old sockets remaining on /tmp/ directory? Try
deleting all files and folders in the /tmp/ dir and relaunch ssh-agent.

I usually launch ssh-agent with this command
```
eval $(ssh-agent)
```

After launching ssh-agent with the above command, there are two
environment variables related to ssh-agent: SSH_AGENT_PID and
SSH_AUTH_SOCK. To verify that those environments are available, run this
command
```
env | grep -E SSH
```

You should see output similar to this
```
env | grep -E ^SSH
SSH_AGENT_PID=4416
SSH_AUTH_SOCK=/tmp/ssh-VRhorGk5KFI0/agent.5000
```

The rest is adding ssh keys to the agent.
```
ssh-add ~/.ssh/id_rsa
```

The added keys should be available for use with ssh in the same terminal
session.

If you intend to use the same ssh-agent instance on multiple terminal
sessions, you have to set the value of SSH_AGENT_PID and SSH_AUTH_SOCKS
according to the first ssh-agent instance.

--
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: fish PATH problem

2014-10-10 Thread Alive
On 08/10/2014 17:08, Dave Kilroy wrote:
> On 08/10/2014 10:57, Andrew Schulman wrote:
>>> On Wednesday, October 08, 2014 05:13:54 AM Andrew Schulman wrote:
 When I try to start fish directly from the Windows shell instead of
 from
 bash, I get a boatload of errors, like this:
>>> I suggest you to read fish manual page, and find how to invoke fish
>>> as login
>>> shell. On bash and zsh, there is '-l' flag so that they behave with
>>> fresh
>>> environment variables.
>> Doh! Right. Thanks.
>>
>>
> Does that work. It seemed to have the same issue as noted in the
> following thread https://cygwin.com/ml/cygwin/2014-04/msg00111.html
> 
> Dave.
I've tested launcing `fish -l -i` from wincmd. A lot of errors shown.
I think `fish` is not yet optimized to be `default shell` for cygwin.
There are still more works to be done to make it usable as cygwin login
shell.

For a quick comparison, `bash -l -i` and `zsh -l -i` works fine, even
when launched via wincmd. The PATH environment is set up correctly with
them, so that there is no problem to use bash and zsh for cygwin login
shell.


--
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: fish PATH problem

2014-10-10 Thread Alive
On 10/10/2014 22:27, Andrew Schulman wrote:
> Please try the updated fish 2.1.1 package I just posted, and see if it fixes 
> those
> problems for you.  Exit all running fish shells, then run:
> 
> wget http://home.comcast.net/~andrex2/cygwin/$(arch)/fish-2.1.1-1.tar.xz
> tar -Jx -C/ -f fish-2.1.1-1.tar.xz
> 
> Then try starting fish as a login shell.

Yeah, it's great that you've packaged a new version. I'm just curious
with `fish` behavior, so that I install it on my cygwin.

I'd rather stay with standardized `bash` and `zsh` for my shells instead
of experiment with the nonstandard `fish` shell.

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



[REQUEST] Please upgrade irssi (0.8.17)

2014-10-25 Thread Alive
Does anyone use irssi on cygwin?

It seems that irssi package is never upgraded.

Latest version is 0.8.17. It released on Oct 11 and still no package
upgrade after two weeks (skipping 0.8.16 which is missed a long way ago).

I don't expect irssi package maintainers to abandon their duty and be
irresponsible after volunteering themselves as package maintainers.

--
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: [REQUEST] Please upgrade irssi (0.8.17)

2014-10-25 Thread Alive
On 10/26/2014 2:23 AM, Marco Atzeri wrote:
> On 10/25/2014 8:35 PM, Alive wrote:
>> Does anyone use irssi on cygwin?
>>
>> It seems that irssi package is never upgraded.
>>
>> Latest version is 0.8.17. It released on Oct 11 and still no package
>> upgrade after two weeks (skipping 0.8.16 which is missed a long way ago).
>>
>> I don't expect irssi package maintainers to abandon their duty and be
>> irresponsible after volunteering themselves as package maintainers.
> 
> cool down, please. "irresponsible" is a strong comment.
> 
> irssi was not upgraded upstream for years so probably
> it is not on top of Kostya's list, assuming he has
> spare time to dedicate and he is still around.
> 
> Regards
> Marco

Apologize for my rudeness.

My point here is for Cygwin packages to catch up with upstream releases,
if possible make it as fast as how Archlinux adopts a new upstream
release, so that Cygwin users will benefit from developments done by
upstream.

I think it's a good idea to keep Cygwin packages in sync with upstream
release.

To achieve it, package maintainers should have a way to know as soon as
a new upstream release is available, such as subscribing to the upstream
mailing list for a new package release announcement.

By doing this, they can make a test package as soon as a new upstream
release is available and release the package after test package has been
free of serious bug.


--
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: Dig output not piping to xargs

2014-10-25 Thread Alive
On 10/26/2014 4:26 AM, Marko Božiković wrote:
> Hi all,
> 
> I have recently noticed that dig +short output is not being properly piped to
> xargs (and it used to work)
> 
> Doing something like:
> echo aaa | xargs -I {} echo {}
> works fine.
> 
> However:
> dig +short www.google.com | xargs -I {} echo {}
> produces no output.
> 
> I'm running Cygwin x64, tried a fresh install and it didn't help. Attached is
> the cygcheck output. Interestingly enough, cygcheck segfaults if I run it from
> bash. I had to run it from TCC to get the output file.
> 
> Thank you,

I can confirm this behavior.
`dig +short` always writes it output to the terminal and cannot be
redirected.
```
$ dig +short google.com
74.125.68.101
74.125.68.138
74.125.68.100
74.125.68.102
74.125.68.139
74.125.68.113

$ dig +short google.com | tee dig.txt

$ cat dig.txt
(no text is shown)

$ dig +short google.com 2>&1 | tee dig.txt

$ cat dig.txt
(no text is shown)

```

I think it's a good idea to package `unbound` as an alternative to
`bind` for dns related tasks.

--
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: [REQUEST] Please upgrade irssi (0.8.17)

2014-11-14 Thread Alive
On 11/14/2014 9:51 PM, Marco Atzeri wrote:
> On 11/14/2014 3:29 PM, Keith Christian wrote:
>> Don't have cygperl5_14.dll but do have cygperl 5_18.dll, what now?
>> Try to reinstall 0.8.17-1 ?
>>
> 
> reinstall perl.
> You installed the experimental version of perl

Thanks for taking care of irssi.
I've updated to cygwin 1.7.33-1 and installed irssi 0.8.17-1

New irssi banner is shown on startup.

So far so good. IRC works, ssl/tls client auth also works - even with
ECDSA certificate. DCC file transfer is also working as expected.

The new irssi is still running with no crash so far.


--
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: [REQUEST] Please upgrade irssi (0.8.17)

2014-11-14 Thread Alive
On 11/13/2014 1:14 AM, Marco Atzeri wrote:
> I uploaded a test version of irssi-0.8.17-1
> for 32 bit and 64 bit.
> 
> If Keith and the other "alive" test it, I will promote to current.
> 
> Regards
> Marco

Since SSL3 has a serious flaw, could you include the changes mentioned
in the commit 8bd575df2ec0d4a17b6f59116d555b64f5bb1312?

You can view the commit on Github
https://github.com/irssi/irssi/commit/8bd575df2ec0d4a17b6f59116d555b64f5bb1312

I am looking forward for disabling SSL3.

Thanks.

--
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: [REQUEST] Please upgrade irssi (0.8.17)

2014-11-16 Thread Alive
On 11/15/2014 5:50 AM, Marco Atzeri wrote:
> uploaded irssi-0.8.17-2 with SSL3 disabled
> 
> Regards
> Marco

Currently running irssi-0.8.17-2 with no problem.
Successfully connected to freenode and oftc through TLS with no problem.

Still no crash so far.


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



[REQUEST] Please upgrade links to version 2.8

2014-11-18 Thread Alive
Links is a text based web browser with frames and nice table rendering.

Version 2.8 has been available for a year. See
http://links.twibright.com/download.php

It would be nice to have Links package upgraded to the latest version to
enjoy the latest improvements.

Thanks.

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